Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 02/08/2013 in all areas

  1. insta

    MapCore Job Census

    You can change me from Avalanche to Valve!
    10 points
  2. The following breakdown is based on my own guesses and how I understand the game from the textures and meshes I have watched. I can't tell you exactly if I'm right or wrong since I'm not a developer of the game. However, I believe I'm rational enough to think that most of what I say is close to what the developers have done. The purpose of this breakdown is educational and the work presented here belongs to its respective authors. Anvil engine The Anvil Engine is a proprietary game engine used by Ubisoft's game projects for a few years now (the first game using it came out in 2007). We can call the Anvil Engine a next-gen engine since games for the previous console generation (like the Playstation 2) were using the Jade Engine at Ubisoft. The first project using this engine was the first Assassin's Creed game. Its initial engine name was Scimitar (before the release of the first game). Today, eight games are using this engine. The engine has since been updated with Assassin's creed III under the name 'AnvilNext'. Mostly to support the new game challenges and configurations that we have today and probably to be ready with the future game consoles coming along. Atlas and batching As with every open world and/or huge city, you have to deal with a very high number of resources. Mostly to keep the player in a fresh world and avoid repetitions. Games over the years have used various techniques to get past this problem. One of them is to reuse any resources that you have created. Creating a texture for only one object in this type of environment can be a problem in term of memory footprint. So reusing a texture will allow you to keep you memory low in size. Pretty obvious, however it's a hard balance that you have to deal with: diversity versus quantity. The size of the memory is not the only problem that you will meet; the number of drawcalls is also very important. As a reminder, a drawcall is a call to the API (the functions of the GPU to draw a set of primitives). For each frame that you render, you have a certain number of drawcalls. Each time you call the API to draw something it takes a given time, regardless of what you want to draw. So you want to be sure to reduce these calls to avoid any loss of performance (taking too much time to draw a frame will reduce your number of frames per second). Each time you change a mesh for a new one you will create a new drawcall, because for the engine it's not the same geometry. This rule applies for the shaders too. If you change the shader, you don't render the same thing, so you have to change the way you render it. This means a new API call. A common solution to this is to batch your calls. 'Batching' means to group some meshes together before calling the API to draw them. This is why it takes less time to render a big mesh than multiple small meshes. How to batch these meshes if chosen by the engine, there is no best rule for this and it depends a lot of what you want to draw. In the case of the Anvil engine, you are focused on drawing large and open spaces. The best way to improve the performance in this case is probably to batch per shader. So each geometry using the same shader will be sent together to be rendered. This way, reusing textures will allow you to batch a lot of things and gain a lot of time. So using atlas textures (multiple textures merged as one) will be a great benefit: you will reduce your memory footprint and you will use only one shader for multiple objects showing different things. Assassin's Creed II uses this system a lot for the environment and the characters. Since we evolve in cities, some houses are often similar, it is logical to find the same design multiple times. Which means that reusing a texture would not shock the player. It will even help for the visual consistency of the level. However, I believe that the engine was not perfect and due to some performance problems (maybe because of the dynamic lighting) they limited the number of textures. In Venice for example, you have an average of 1500/2000 textures in memory (including everything: sky, water, normal maps, shadows, characters and so on). Texture design What do the textures look like exactly? In this game, textures for the walls are often around 512 x 512 pixels. Details, ornaments, water use 256 x 256 pixels most of the time. For example, the roof texture is only 256 x 256, but the tilling is so well made that it doesn't gene at all. However, these textures being very tiny, the developers used vertex painting to blend details and break the repetition. Since there are almost no specular reflections in the game (probably to strengthen the feeling of the walls are made of bricks and dirt) the vertex painting masks are stored in the alpha channel of the diffuse texture. As you can see in the second screenshot below, the alpha mask uses very defined greyscales, probably because they separate each level of grey as a separate filter. The textures are very bright, and we feel that in-game: the overall lighting is itself very luminous. Levels of details Dealing with an open world means dealing with a very long view distance. Therefore, the farther you see, the more you need to draw. Unfortunately you are limited by the hardware (especially on consoles) and you will have to use some LODs (level of detail). The developers have chosen to let the LODs 'pop'; this means no blending transitions between them, which is visually ugly since you notice the change. The environment collisions are dissociated from the visuals mesh. Probably because you can more quickly hide/disable the collisions of the environment since they are not visually displayed on the screen. This explains why forcing the LODs of the environment allows you to... climb the void! On the PC version, you can increase the minimum distance for when the environment starts to blend (which is something like 40/50 meters if you blend at the furthest possible distance). It's also interesting to note that some props like barrels, crates and other little things are independent of the global LOD distance. It seems that some props are linked to the LOD of the building mostly because they are at the roof level, while props in the street have their own blend distance. Characters Pedestrians in Assassin's Creed are based on modular characters. The developers use a set of heads which are combined with hands and different clothes. While the hand and heads have their own details and colours, the clothes are just a totally grey shared texture (except for the letter) and coloured in the shader to add variety in the game. They also add a detail texture to break the linearity of the clothes and bring up some fine details. Characters have also their own LODs. During a presentation at GDC 2008 about the first Assassin's Creed, Francois Levesque (a technical director on the game) explained their pipeline to produce a lot of different characters without losing too much time. They used a base head which blends to fit to the high-res character. This way they automatically get the LOD mesh at the same time since the meshes always shared the same topology. The only update to do was for the position of the bones on the top of the vertex to keep their skin deformation. Since meshes and UVs are similar, it's easier to manage and create a crowd dynamically. So there are maybe 5–10 different clothes and then the game dynamically creates a character to add it in the game scene. In the first Assassin's Creed, characters had 2 LODs, which meant 3 meshes per character. In Assassin's Creed II it's the same thing. However it seems that the clothes and the head don't blend at the same time. Probably because they don't have the same space occupied on the screen. So the heads go to their first LOD mesh sooner. You can see some examples on zBrushCentral with the base mesh topology and also the topology of some bodies used by the game. Lighting The Anvil engine is an engine developed to mostly show open environments. With the development on this second opus, they wanted to add a day-and-night cycle. To achieve this they naturally chose the cascaded shadow maps technique (more exactly, Parallel-Split Shadow Maps as described in a GameDev.net forum thread) which even today is the best way to draw a unified shadow on such big environments. There is no Global illumination at all, it's mostly only a main directional light (the Sun) combined with an ambient colour which evolves during the day. Some interiors like the tombs present localised point lights; there are also some point lights which are enabled during the night. However, regarding the performance, they were obliged to use a very low resolution and a blend distance. This explains why you see a lot of blurred pixels on the ground/walls for the shadow. This is also why you so clearly see the blending of the shadow from one level to another. Some shaders use the Fresnel term to enhance the looking of the character clothes a bit, but most of the time they simply use direct lighting without complex shaders (again, because it was very expensive). There is no fake sub-surface scattering (SSS) for the characters, even during the cinematics. The SSS only comes in with Assassin's Creed: Revelations and will be improved for Assassin's Creed III. Conclusion Assassin's Creed II was a really good improvement compared to the first game, however it looks like the engine faced a lot of new constraints which were not totally well handled. The way the LODs appear and the nice but still limited quality of the lighting are good examples of that. Even on modern computers today the game gets some slow-down in certain places. The engine was improved for the next game iterations and increased the amount of details and the quality of its lighting to finally show beautiful cities as we can see in Assassin's Creed III today.
    3 points
  3. Taylor

    Dead Space 3

    I heard each time you fire a gun it charges your credit card.
    3 points
  4. Now available in the workshop http://steamcommunity.com/sharedfiles/filedetails/?id=125663769&searchtext=
    3 points
  5. Izuno

    Your favourite movies

    Aliens - yep...it was such an inspiration to the games industry we all owe a lot to it. Cameron at his finest Apocalypse Now - best cinematography in a war era movie. It's not the action that makes this movie awesome, but rather the notions it explores. Fight Club - dark humor at its finest. Great soundtrack LotR Trilogy - It captured the essence of fanboy fantasy elves and dwarves and etc. and made it accessible to the masses. Lots of people took this excitement into playing World of Warcraft. I salute you, Peter Jackson. Sweet music too. Inception - Nolan manspooges his snow fort assault in final act all over the screen. Totally unnecessary yet totally necessary all the same. BWWWWWAAAAAHHHH at it's finest, too. This movie forced most people to watch it more than once to understand wtf was going on. Each time you watch it you like it a little more. Otherwise a cool take on the idea around dreams coming alive. The Dark Knight - for one reason only: Heath Ledger's Joker. Worthy of the Oscar the performance received. Carried a movie that otherwise was full of plot holes. Some nice BWWWAHHHH too. Raiders of the Lost Ark - it's at the level of archetype in modern film now The Ice Storm - little known drama set in 1970s stuffy Connecticut suburbia where parents swing and preteens / teens explore drugs and sexuality. Excellent performances and awesome use of subtlety. Buffalo 66 - another small indy film...this movie DEFINES the moment of personal transformation. Amazingly well done E.T. - yeah, kind of a kiddie movie, but it inspired a generation of young boys to just get some balls and go for something in life. Elliot basically took on "the authority" and saved E.T. and found his courage in the process Ghostbusters - the best comedy of all time. It's both hilarious and really really creepy at the same time. Empire Strikes Back - Let's face it, the best Star Wars movie of all. Star Trek: Wrath of Khan - KHAAAAAAAAAN! On so many levels this movie is all sorts of badass. Shatner at his ass kickingly finest. Everything you want in a Star Trek film and no purple bazooka or melting Romulans other crap in the TNG movies which were 89% shit (First Contact was ok) forgot.. Saving Private Ryan - in a way, considered a cliche today but the games industry was clearly inspired by it. Working on DoD and CoD, everyone had seen SPR a bunch of times, poured over footage and had intellectual discussions on what worked/didn't work about the film and how that could serve as inspiration for game design and art direction. Not everyone loves it but it helped spawn a successful wave of WWII gaming. I had never seen a war movie like it before.
    2 points
  6. marketing person 1: how do we market this to the Call of Duty generation? they've probably never even heard of the alien franchise... in fact i myself am only 25 years old and have only seen alien vs predator marketing person 2: hurrrrrrrrrr marketing person 1: good point marketing person 3: duke nukem forever was a great success, let's get the same voice actor and shit out a script all those pathetic video game losers will lap up like the scum they are marketing person 2: durrrrrrrrrrr, that'll be 40 million dollars i was actually in on this meeting, hopefully they won't mind me posting this transcript
    2 points
  7. Izuno

    Your favourite movies

    Excellent choices of your own!
    1 point
  8. Jord

    Bang Your Friends

    With only one woman in my studio this cannot end well.
    1 point
  9. Sentura

    The Witcher 3

    skyrim 2: more skyrim
    1 point
  10. watched wreck it ralph. first half was super awkward, second half was pretty damn sweet. well worth watching
    1 point
  11. FrieChamp

    Dead Space 3

    This goes right into my "Monetization Tips & Tricks" spreadsheet.
    1 point
  12. Puddy

    Your favourite movies

    : OOOOOOOOOOOOO this can only mean one thing... they are... the same movie?! EDIT: or, there's a quantum fluctuation which dictates that both movies are and aren't unmatched! ahmahgadd!
    1 point
  13. Puddy

    I need to KILL HOSTAGES!

    Noooooooo! My hostage sacrifice pit
    1 point
  14. blackdog

    I need to KILL HOSTAGES!

    I haven't played much GO (and when I did was on the new game modes) so maybe Hostages aren't as acrobatic as in the past, but I'd instead see if it's possible to prevent to fall in the pit, I'd be pissed off to see them die and loose points because of the poor AI navigation they're known for. If the pit is along one of the main rescue routes that will influence a lot its use... I don't remember any official map where's possible to get killed by the environment. But that I say without having any idea of what you are doing.
    1 point
  15. nice! I'll try it out next week during lunch !
    1 point
  16. http://blog.counter-strike.net/workshop/ OMG...! Rick's map got featured in the update's page!! congrats Rick and congrats Mapcore!
    1 point
  17. -HP-

    Your favourite movies

    Working on it, sorry. On the other hand, they brought back this good old thread.
    1 point
  18. I'm afraid you're a little late to the party, Michael.
    1 point
×
×
  • Create New...