Today we'd like to explain a new graphical feature that we are introducing to our games with update 1.38. The article is very technical - we have asked our programmers to help out, and the explanation is quite complex. However, we felt that it may actually be interesting for at least some of the people in our audience to be exposed to this material - to see that what is happening under the hood of a game engine involves a lot of research and hard work of our programming team. In addition to the technical details, we thought that providing the context and explaining the performance trade-offs may be useful and important for most of the players.
Jaroslav a.k.a. Cim (one of our brave and skilled programmers working on graphics improvements)
The TL;DR summary of the text below is that Screen Space Ambient Occlusion is a cool new but performance-heavy technique to enrich the rendering of our game world. You do not have to use it if you feel it lowers performance too much for your liking, or you may like it and can afford to trade a few frames per second for improved shadow and depth perception. The effect may be subtle, it mostly works on subconsciousness level, but once you get used to it, it may be hard to go back. It is another milestone in our lighting/shadowing improvements plan that we are now executing, to be followed by new HDR light processing and introduction of more normal-mapped surfaces in upcoming updates.
The technique has its limitations and quirks. It has been used by several AAA games in recent years, and even if it's not perfect, it helps the human perception system to understand the scene better, and we hope that adding it to the technology mix of our truck sims is beneficial. We will no doubt want to introduce additional ways of shadowing computation that will improve or even supersede it.
[table][tr]
[td]
[/td]
[td]
[/td]
[/tr][/table]
We are under constant pressure to improve the looks of our game by a vocal subset of our fan base. At the same time, there is always a desire to make the games run faster. On top of these sometimes competing requests coming from the playerbase, our very own art department is ever eager to get hold of new graphical toys to make our game richer and better. Whenever we introduce a new graphical feature into the game, we try to do it in a way that doesn't hurt the performance for players with older computers, we don't want to make the game incompatible for our existing customers. That's why there is an option to switch SSAO off completely, and several settings for its quality/performance.
[table][tr]
[td]
[/td]
[td]
[/td]
[/tr][/table]
The work of our programmers on the new SSAO/HBAO techniques also required changes to our art and art creation pipeline. All the 3D models in our games had to be revisited by the art department, and any instances, where any fake shadows and darkening were already applied to a model by an artist, were changed. For some more complex game models, this was a simplification that actually reduced the number of triangles in them enough to improve rendering performance. To some extent, we have traded a part of tentative future manual effort that would be needed for building individual good-looking 3D models for an algorithmic rendering pass that unifies the shadowing look for the whole scene, helping to "root" objects like buildings, lamp-posts, and vegetation to the terrain.
[table]
[tr]
[td]
[/td]
[td]
[/td]
[/tr][tr]
[td]
[/td]
[td]
[/td]
[/tr][tr]
[td]
[/td]
[td]
[/td]
[/tr][tr]
[td]
[/td]
[td]
[/td]
[/tr]
[/table]
What SSAO stands for and how it works
Before we start - note that SSAO is a general acronym for "screen space ambient occlusion". The name encompasses all of the various ambient occlusion (AO) techniques and their variants that work in screen space (it means that they obtain all information at runtime from data that are rendered on the computer screen and into related memory buffers). There is SSAO (Crytek 2007 tech that basically gave a general name to all techniques), MSSAO, HBAO, HDAO, GTAO, and many more other techniques each using differently tuned approaches, each having its benefits and downsides. We have based our approach on a horizon-based technique called GTAO that was introduced in a 2016 paper by Activision. The ambient occlusion (AO) name part means that we evaluate how much of incoming light (predominantly sky light, but sometimes the computed occlusion gets applied also to other lights) gets occluded at a particular place in the game world. Imagine that you are standing on flat ground - you would see the whole sky above, so there is 0% occlusion, the ground gets fully lit by the sky. Now imagine that you are at the bottom of a well - you would see only a small patch of sky, that means sky gets occluded almost 100% and contributes only a little to the ambient lighting in that well, and naturally it is quite dark at the bottom of the well. A specific level of ambient occlusion at a particular place affects lighting computations and creates shadowed areas in creases, holes, and other 'complex' places. It can get anywhere between 0% and 100% based on their surroundings. [table] [tr] [td]
[/td] [td]
[/td] [/tr][tr] [td]
[/td] [td]
[/td] [/tr] [/table] Computing the occlusion in high detail and precision is resource-intensive; basically, you would need to shoot rays from any evaluated position in all directions and test whether they hit the sky or not, and then average the result. The more rays you shoot, the better information you get but at a greater computation cost. This process could be possibly processed off-line, like when the game map gets saved by its designer. Some games and engines use this approach. But that way you are only able to bake ambient occlusion information about static non-moving objects because there are no vehicles, no animated objects present at that time. So instead of baking static information (which would also take a lot of time and storage space given the scale of our world map), we want to compute it on the fly, in run-time. That way we can compute it also for interaction with vehicles, opening bridges, animated objects, and so on. There is a catch though. For such a computation approach, we only have data that are visible on the screen (recall "screen space"), so once some part of the game world gets out of the visible frame, it can't be used for occlusion evaluation. This limitation creates various artifacts such as disappearing occlusion on a wall originally caused by an object that just got behind the edge of the screen and thus became invisible not just for you but also for the algorithm, so it ceased to contribute to occlusion computation. [table] [tr] [td]
[/td] [td]
[/td] [/tr][tr] [td]
[/td] [td]
[/td] [/tr][/table] Ok, now we know what to evaluate (ambient occlusion) and we know what data we have (what we see on screen). What do we do? Well, for each pixel on the screen (that is 2 million pixels in HD resolution, times four(!) in 400% scaling!) our shader code needs to query the z-buffer value of its surrounding pixels trying to get a notion of the geometric shape of the area surrounding it. We can do only a limited number of these "taps" as there is a steeply increasing performance cost with increasing tap count, this is an operation that is really taxing the 3D accelerator. The limit on the number of taps, in turn, affects the ambient occlusion precision (and in certain situations may create inaccuracies and banding). Imagine that you want to evaluate your surroundings on a 2-meter straight line, and are willing to spend 8 taps to approximate it. You query the line every 25 centimeters, and any detail smaller than that may happen to be totally unnoticed unless you are lucky and hit it spot on (or unlucky, because you may miss it the next frame so the surroundings would suddenly appear to change between frames and cause flickering). The further your algorithm probes, the less precise it is. So you need to limit the size of an area you analyze around each game pixel which in turn limits how far the AO 'sees' - that is why it is not suitable for computing occlusion in large spaces like under bridge arches. [table] [tr] [td]
[/td] [td]
[/td] [/tr][tr] [td]
[/td] [td]
[/td] [/tr][/table] We have mentioned that the technique of our choosing is horizon-based. This means that we are not probing the environment by shooting rays in the 3D world, instead, we analyze a hemisphere above/around each pixel to see how far it opens up until it is blocked, how much light is let in by the surrounding geometry using the z-buffer as our proxy. The hemisphere is actually approximated by several runs along a line rotated around the given pixel. If we can follow along this hemisphere in full, there is no occlusion. If the algorithm taps a value in the z-buffer that would block incoming light, it defines the level of occlusion. The algorithm is optimized for performance but its limitation is that once it hits anything, even possibly a small object, it stops probing any further. This may cause an "over occlusion" problem and may be spotted as a visual artifact when some relatively thin object such as a traffic sign post causes strong occlusion on a nearby wall. You can try to detect such small objects and skip them, which in turn may produce "under occlusion" on thin ledges. We have opted for the former. [table] [tr] [td]
[/td] [td]
[/td] [/tr][tr] [td]
[/td] [td]
[/td] [/tr][/table] There is also another interesting and useful property of horizon based techniques. Depending on how much of a hemisphere above a given pixel is occluded, you can compute the direction that is least occluded. The amount of occlusion can be thought of as an ice cream cone with varying apex angle oriented in that direction. This direction is called a "bent normal" and we use it for various light computations like for occluding a reflection on shiny surfaces. The idea is that if you look at the surface and the mirror-reflected direction gets out of this cone, we consider it (at least partially) occluded, tuning down the reflection intensity. The best way to see that effect is to look at bigger and round chrome parts, like the diesel tanks, with SSAO on and off. [table] [tr] [td]
[/td] [td]
[/td] [/tr][tr] [td]
[/td] [td]
[/td] [/tr][/table] So you see, the idea is not that hard, for an expert graphics programmer anyway ;), but there is a lot of computation involved, putting quite some strain on the 3D accelerator. So we have created several performance profiles, each using a mix of optimization techniques:
- Using less taps per direction - it is faster but lets AO miss bigger objects than with finer sampling.
- Reprojecting AO results from the previous frame - it lets us hide the artifacts from undersampling, but may create ghosting when reprojection fails (when what you see between frames changes a lot).
- Rendering in half-resolution - reduces the number of computations to 1/4 but creates less fine AO - the result may be slightly blurry shadowing
Euro Truck Simulator 2
SCS Software
SCS Software
2013-01-16
Simulation Singleplayer
GameBillet
16.79 /
€
Game News Posts 574
🎹🖱️Keyboard + Mouse
🕹️ Partial Controller Support
Overwhelmingly Positive
(601612 reviews)
https://eurotrucksimulator2.com/
https://store.steampowered.com/app/227300 
The Game includes VR Support
Euro Truck Simulator 2 Linux [40.09 M]
Euro Truck Simulator 2 - Going East!
Euro Truck Simulator 2 - Halloween Paint Jobs Pack
Euro Truck Simulator 2 - Ice Cold Paint Jobs Pack
Euro Truck Simulator 2 - Prehistoric Paint Jobs Pack
Euro Truck Simulator 2 - Force of Nature Paint Jobs Pack
Euro Truck Simulator 2 - Metallic Paint Jobs Pack
Euro Truck Simulator 2 - UK Paint Jobs Pack
Euro Truck Simulator 2 - Irish Paint Jobs Pack
Euro Truck Simulator 2 - Scottish Paint Jobs Pack
Euro Truck Simulator 2 - Flip Paint Designs
Euro Truck Simulator 2 - Polish Paint Jobs Pack
Euro Truck Simulator 2 - Brazilian Paint Jobs Pack
Euro Truck Simulator 2 - Fantasy Paint Jobs Pack
Euro Truck Simulator 2 - USA Paint Jobs Pack
Euro Truck Simulator 2 - Scandinavia
Euro Truck Simulator 2 - Canadian Paint Jobs Pack
Euro Truck Simulator 2 - High Power Cargo Pack
Euro Truck Simulator 2 - German Paint Jobs Pack
Euro Truck Simulator 2 - French Paint Jobs Pack
Euro Truck Simulator 2 - Czech Paint Jobs Pack
Euro Truck Simulator 2 - Christmas Paint Jobs Pack
Euro Truck Simulator 2 - Raven Truck Design Pack
Euro Truck Simulator 2 - Norwegian Paint Jobs Pack
Euro Truck Simulator 2 - Danish Paint Jobs Pack
Euro Truck Simulator 2 - Swedish Paint Jobs Pack
Euro Truck Simulator 2 - Viking Legends
Euro Truck Simulator 2 - Russian Paint Jobs Pack
Euro Truck Simulator 2 - Cabin Accessories
Euro Truck Simulator 2 - Michelin Fan Pack
Euro Truck Simulator 2 - Japanese Paint Jobs Pack
Euro Truck Simulator 2 - Turkish Paint Jobs Pack
Euro Truck Simulator 2 - Wheel Tuning Pack
Euro Truck Simulator 2 - Italian Paint Jobs Pack
Euro Truck Simulator 2 - Schwarzmüller Trailer Pack
Euro Truck Simulator 2 - Hungarian Paint Jobs Pack
Euro Truck Simulator 2 - Slovak Paint Jobs Pack
Euro Truck Simulator 2 - Spanish Paint Jobs Pack
Euro Truck Simulator 2 - Window Flags
Euro Truck Simulator 2 - Austrian Paint Jobs Pack
Euro Truck Simulator 2 - Mighty Griffin Tuning Pack
Euro Truck Simulator 2 - South Korean Paint Jobs Pack
Euro Truck Simulator 2 - Swiss Paint Jobs Pack
Euro Truck Simulator 2 - Chinese Paint Jobs Pack
Euro Truck Simulator 2 - Pirate Paint Jobs Pack
Euro Truck Simulator 2 - XF Tuning Pack
Euro Truck Simulator 2 - Lunar New Year Pack
Euro Truck Simulator 2 - Vive la France !
Euro Truck Simulator 2 - Heavy Cargo Pack
Euro Truck Simulator 2 - Finnish Paint Jobs Pack
Euro Truck Simulator 2 - Belgian Paint Jobs Pack
Euro Truck Simulator 2 - Romanian Paint Jobs Pack
Euro Truck Simulator 2 - Australian Paint Jobs Pack
Euro Truck Simulator 2 - Valentine's Paint Jobs Pack
Euro Truck Simulator 2 - Italia
Euro Truck Simulator 2 - Special Transport
Euro Truck Simulator 2 - Portuguese Paint Jobs Pack
Euro Truck Simulator 2 - Dutch Paint Jobs Pack
Euro Truck Simulator 2 - Beyond the Baltic Sea
Euro Truck Simulator 2 - Space Paint Jobs Pack
Euro Truck Simulator 2 - Krone Trailer Pack
Euro Truck Simulator 2 - Estonian Paint Jobs Pack
Key Features:
- Transport a vast variety of cargo across more than 60 European cities.
- Run your own business which continues to grow even as you complete your freight deliveries.
- Build your own fleet of trucks, buy garages, hire drivers, manage your company for maximum profits.
- A varied amount of truck tuning that range from performance to cosmetic changes.
- Customize your vehicles with optional lights, bars, horns, beacons, smoke exhausts, and more.
- Thousands of miles of real road networks with hundreds of famous landmarks and structures.
World of Trucks
Take advantage of additional features of Euro Truck Simulator 2 by joining our online community on World of Trucks, our center for virtual truckers all around the world interested in Euro Truck Simulator 2 and future SCS Software's truck simulators.
- Use in-game Photo Mode to capture the best moments and share them with thousands of people who love trucks.
- Favorite the images you like the most and return to them anytime in the future.
- Discuss the screenshots with everyone using World of Trucks.
- See the best images hand-picked by the game creators in Editor's Pick updated almost every day. Try to get your own screenshot on this list!
- Upload and use your custom avatar and license plate in the game.
- More features coming soon!
To join World of Trucks, simply sign up with your Steam account on the join page.
World of Trucks is an optional service, registration on World of Trucks isn't required to play the game.
- OS: Linux Ubuntu 12.04
- Processor: Quad core CPU 3.3 GHzMemory: 8 GB RAM
- Memory: 8 GB RAM
- Graphics: Intel HD 630 or similar (2GB VRAM)Hard Drive: 25 GB available space (Euro Truck Simulator 2 base game)Additional Notes: recent binary ATI or NVidia drivers (MESA may not work reliably)
- OS: Linux Ubuntu 12.04
- Processor: Quad core CPU 4.6 GHzMemory: 12 GB RAM
- Memory: 12 GB RAM
- Graphics: NVIDIA GeForce GTX 1660 or similar (2 GB VRAM)Hard Drive: 25 GB available space (Euro Truck Simulator 2 base game)Additional Notes: recent binary ATI or NVidia drivers (MESA may not work reliably)
[ 5922 ]
[ 987 ]