Jump to content

Alpha 19 Dev Diary


madmole

Recommended Posts

...suggesting that we might remove plant life underwater (I know...it was just added) and replace with a river/lake bottom rock texture as an alternative to help with frame rates. It's not like we gain anything by harvesting plants underwater.

Link to comment
Share on other sites

 

I agree 100%, more remnents of freeways (POIs?) and more signs of more dense population (more apartment buildings, Malls...like Hernan's No Hope Mall) could be a thing in the wasteland/radiated biomes.

 

The problem is there is no intelligent placement system, its 100% random. It should have a spline or road trajectory like bridges and put them together for it to look good. Randomly select which ones.

Link to comment
Share on other sites

 

Yeah but in witcher, skyrim etc you have ♥♥♥♥load of them with larger variety and it works fine.

 

Skyrim has 1/4 the trees on screen we do, they intelligently place them near mountain bases where you can't have a lot in view at once or a lot of over draw (trees in front of more trees). We place things procedurally so there is variety, but its not as optimized with that approach. They use a ton of rocks and mountains and winding roads to limit a lot of stuff viewed at once and minimize overdraw and maximize occlusion. Several people worked on that ONE map for 4 years and optimized it, and its all static meshes you can combine all the objects for draw call optimizations. Like a whole building is a single mesh, not 5000 objects like in our game. Then you teleport inside, everything is fake.

 

Our game would run super fast if it was that way, but then you couldn't dig or break anything.

 

You might as well be comparing real life to a video game, the technology for a voxel game is completely different.

Link to comment
Share on other sites

 

What gets me the tree’s still don’t have a base mesh and any tree that falls you see a hollow trunk which I can’t stop thinking on a visual graphical level looks cheap and tacky.

 

Those will get fixed at some point.

Link to comment
Share on other sites

...suggesting that we might remove plant life underwater (I know...it was just added) and replace with a river/lake bottom rock texture as an alternative to help with frame rates. It's not like we gain anything by harvesting plants underwater.

 

That isn't going to help.

Link to comment
Share on other sites

 

That isn't going to help.

 

Yeah the bit of grass under the small bits of water are not really going to do much when removed. Though I recently discovered that To Much grass is a thing and causes the stability calculator to go crazy and throw Stack Overflows causing either a client crash or the ChunkGenerator to exit (which means falling through the world). So they do have an impact on the performance of the game.

Link to comment
Share on other sites

The underwater plants form voxel "cavities", which likely also draw on the performance to an extend (additional polys).

And they make an ugly looking box underwater.

 

I would also make the water less translucent, and have a very heavy muddy fog (only like 20 meters visibility) when the camera is inside the water.

Currently the underwaterscenes look very unrealistic, with much too long range visibility.

Link to comment
Share on other sites

 

Yeah the bit of grass under the small bits of water are not really going to do much when removed. Though I recently discovered that To Much grass is a thing and causes the stability calculator to go crazy and throw Stack Overflows causing either a client crash or the ChunkGenerator to exit (which means falling through the world). So they do have an impact on the performance of the game.

 

That sounds like a separate issue, and did you experience this in a vanilla game?

Link to comment
Share on other sites

The underwater plants form voxel "cavities", which likely also draw on the performance to an extend (additional polys).

And they make an ugly looking box underwater.

 

I would also make the water less translucent, and have a very heavy muddy fog (only like 20 meters visibility) when the camera is inside the water.

Currently the underwaterscenes look very unrealistic, with much too long range visibility.

I haven't really seen it too much. No reason to go underwater yet. Decorations shouldn't change the terrain, maybe it needs the proper xml settings.

 

Link to comment
Share on other sites

I haven't really seen it too much. No reason to go underwater yet. Decorations shouldn't change the terrain, maybe it needs the proper xml settings.

 

My guess is that the procedure that fills the water voxels will leave gaps where there is a plant.

 

I also had the occasional drop-box land in the water, which made it necessary to dive down.

Link to comment
Share on other sites

 

My guess is that the procedure that fills the water voxels will leave gaps where there is a plant.

 

I also had the occasional drop-box land in the water, which made it necessary to dive down.

 

Oh yeah there could definitely be bugs with water yet. That should go away when water is revisited.

Link to comment
Share on other sites

 

That sounds like a separate issue, and did you experience this in a vanilla game?

 

Nope, it was modding related, hence I did not report it as a bug. But I thought you should be aware. I spend 5 hours trying to find the cause of this, it only appeared in one of my biomes and only nearby POIs. I removed all deco and then the issues stopped, when re-added the grass I got the errors again. When I reduced the amount of grass total in the biome the bug also stopped from appearing.

Link to comment
Share on other sites

Faatal

 

I have a layman's compound question. Re: Rendering

 

If you had Sectr Complete stream rendering set at 1024 for area of influence.

So rendering and physics is only 1024 meters within a 70' arc.

Added a culling camera 70' to to first person point of view.

Then set the origin shift point, on the first person camera position

to coincide with the terrain rendering shift. Would that always keep

the 0,0 position for rendering and physics focused on the player point

of view? Or is this too convoluted?

 

For the moving objects ie. animals, entities, other players. Using a

resource pool of objects set at 100 to allow full screen activity without

having to constantly calculate\render everything, only what is in first

person point of view. For moving objects out of point of influence ie.

greater than 1024 meters save x.y.z. position until they are within 90'

or fps focus plus 20.

 

The abstract thought is looking for a hybrid rendering procedure that

combines procedural rendering and culling applied to a pregenerated terrain.

So at any given point the game is only rendering 70' 1024 meters ahead, yet

is still a full 8192 by 8192 or greater sized terrain pregened.

 

Pools: decor,entities,pois increased to amount of pois in prefabs folder, etc.

Link to comment
Share on other sites

 

Oh yeah there could definitely be bugs with water yet. That should go away when water is revisited.

 

Many of us don`t mind them yet, you guys gave us so much cool things to do on ground already and keep adding, have your time.

 

Btw, my personal wish for the water thing is to make us say "I was ♥♥♥♥ing eaten by something down there, again" many times :p

Link to comment
Share on other sites

@4sheetzngeegles The game is not rendering everything anyways.

There is a certain area that is currently active on the client. (the loaded area-chunks)

The distant terrain and low poly POIs (imposters) are used for anything outside that area.

 

Areas (chunks) you have left, will get its changes stored on disk, and then discarded.

 

No need to store the whole map (entities, voxels) in memory. And thus no need to render them.

Whats basically kept in memory are the textures defining the distant terrain / the distant terrain mesh, and the imposters for POIs.

 

The terrain topography is not procedurally generated in real time (thats the world generation before), whats generated is the mesh based on the world files.

And the local terrain mesh based on the voxel-data.

Whats procedurally generated on demand is the decoration (tress, rocks) etc when entering a new chunk.

Link to comment
Share on other sites

 

Nope, it was modding related, hence I did not report it as a bug. But I thought you should be aware. I spend 5 hours trying to find the cause of this, it only appeared in one of my biomes and only nearby POIs. I removed all deco and then the issues stopped, when re-added the grass I got the errors again. When I reduced the amount of grass total in the biome the bug also stopped from appearing.

 

I used to have nearly 100% grass in the plains biome, so maybe its something to do with under water.

Link to comment
Share on other sites

 

Many of us don`t mind them yet, you guys gave us so much cool things to do on ground already and keep adding, have your time.

 

Btw, my personal wish for the water thing is to make us say "I was ♥♥♥♥ing eaten by something down there, again" many times :p

 

I definitely think it needs to be murky and your last resort for travel because of stuff you can't see that lurks in there.

Link to comment
Share on other sites

I think it might have something to do with the creation of the map.... I see concrete, metal beams, and grass under the water...maybe the water gets placed first and the splat gets placed everywhere but where water is...might help maybe.

 

Anyways, great work, keep it up... Love it cant wait till the next big update TFP.

 

Semper Fi

Link to comment
Share on other sites

 

I used to have nearly 100% grass in the plains biome, so maybe its something to do with under water.

 

I have a feeling a recent change might be responsible, I used this amount of grass for a while now without issues either. It happened mostly near POIs, no water nearby at all.

Link to comment
Share on other sites

 

If the subject is that annoying, maybe it's because it was a popular biome that is talked about reminisced about?

 

You did see who I quoted right? Just a joke to poke fun at Madmole.

 

There is no question the biome was popular. There's also no question that it's gone for good. Reminisce about it all you want in places other than the A19 dev diary.

Link to comment
Share on other sites

 

You did see who I quoted right? Just a joke to poke fun at Madmole.

 

There is no question the biome was popular. There's also no question that it's gone for good. Reminisce about it all you want in places other than the A19 dev diary.

 

i'm glad it is gone... could never find the damn birds nests and small stones. small animals were a pia as well. i am still waiting for the snow biome to disappear because of global warming. :)

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...