• Register

The Drag[en]gine is a fully customizable game engine and game development environment designed with modularity and extensibility in mind not requiring expensive licenses.

Post news Report RSS Dragons on a wake-board :O

What have dragons lost on a wake-board? Well... read on if you are curious to know :P

Posted by on

The last couple of weeks had been not in our favor especially not in my favor. I tried a couple of optimization tricks ghosting through my mind but hit a couple of brick walls shattering most of them. Some though stuck which gave at least some progress in these otherwise frustrating weeks. And one of them are dragons on a wake-board and dragon dolls which though I spare for later ( or you crawl over my youtube profile as you can find them there ).


Graphics... again U.=.U

The graphics module is one receiving a lot of work time since it consumes the most performance. It is therefore vital to squeeze as much speed out of this module as possible since graphics are not the only parts of an engine competing for the scarce frame time. I had a couple of ideas to optimize the speed and ended up disappointed with many of them. It seems as if I've hit the speed limit of what my card can junk out without reducing visual fidelity. This should buy us now enough time to push out the engine in a first release and to bother about further optimizations later on. Some stuff though still stuck and will be therefore mentioned here.

  • For transparent faces the color shadow casting ( or transparent shadows ) has been disabled. This gains some speed and it is highly unlikely somebody is going to noticed the lack of colored shadows on transparent objects.
  • Shadow maps for transparent render passes are now batched so they are rendered only once. In the test scene the gain had been barely noticeable but in more complex scenes this can very well gain some speed.
  • In general the shader system has been improved further splitting individual GPU unit source codes from each other to allow reusing them as well as allowing custom shaders later on. Game developers do not touch shaders directly but define them indirectly using skin files. More to come later about this.
  • Another trick had been using render task objects. This allows for more aggressive batching of similar objects than the old code. This is comparable to instancing which though is not much of a topic under OpenGL since it has very little overhead in contrary to DirectX which has a tremendous overhead ( hence why they invented instancing to begin with ).
  • Tried also the occlusion reduction trick on the semi point lights but not much gain there. Semi point lights are therefore operating at their peek limit. Not much to gain from them. A typical room with 2 or 3 semi point lights clocks now in at 60 to 90 fps pure rendering only. That should keep us warm through the night for some time.
  • Fixed the shadow depth offset calculation for semi-point lights and point lights. For spot lights the hardware knows how to do this but for the other light types you have to do this manually. Self shadowing artifacts have vanished now except some extreme cases. Players can mess with the parameters to optimize this for their graphic cards.
  • Eventually fixed the mirror skins. They can now be used on any static or dynamic model. You can even apply it to animated and bone weighted faces as long as the faces are mostly coplanar. For all faces a mirror plane is calculated which fits best the faces. Mirrors are perfect and for flat surfaces. For round surfaces environment reflection mapping is going to implemented later on.
  • Added a new set of shaders to handle height terrains with multiple textures. Up to 4 textures can be processed at once now. Reduces most situations to one or two render calls instead of up to 8 passes. Buys us some more speed until the ultimate texture algorithm is finished: the SWAT system ( keep guessing, I won't reveil more right now ).
  • Modified the old renderables turning them into a dynamic skin object. This makes handling dynamic skins for the game developer a lot easier.
  • Modified the normal mapping shader algorithm to also provide fake lighting for back faces. This way objects are not flat on the back side. The technique is based on the one used in the Source Engine.

The image below shows a comparison of normals on the front and back side.

Backface Normals


Dragons on a wake-board

A couple of videos ago we showed the dragon locomotion system. This contained also tilting the body up and down to align the dragon with the ground below. This though worked only for the up-down case but not sidewards tilting. Furthermore testing such animations had been a chore as you had to walk around in simulation mode all time. This has been now changed.

First left-right tilting has been added to the animation code. This way now the dragon can tilt properly in up and down as well as leaning sidewards while on a left-right aligned slope. The feet have been modified too to align with the ground. This code is rather generic working for all 4-legged creatures where the 4 legs are located under the body like with a dragon. To test the animation better the Animator Editor received a new testing mode, the wake-board mode. If this mode is enabled a plan is placed under the character. This plane can be interactively tilted up and down as well as left and right up to 30 degrees. This way the reaction of the character to different underground slopes can be tested and improved. The first video shows the wakeboard mode in action ( youtube version ).


The results are not yet top notch since the inverse kinematic code is still rough around the edges and still fails at certain situations. Furthermore all the body tilting is done only using procedural animator rules. For optimal results animation sequences for different tilting situations have to be created and blended together. Using procedural animator rules though any kind of 4-legged creature can be quickly animated in a reasonable way without loosing time creating all the animations. Once the animator works properly the individual animations can be created and the result improved. The second video shows the dragon in action on a bumpy terrain ( youtube version ). Important to note is that although the body tilts around a lot the first person view is rock steady. Hence walking around on bumpy terrain your view stays where you want it to be and does not sway around. Yet if you use the chase or movie camera instead you get the results seen here.



Outlook

There is still some work to be done on the graphic module. Not all shaders are changed to GLSL 1.3 yet. This is one of the next goals to modify them all. Another point of work is the sky light source. There are a couple of optimizations possible and required to improve speed. Another problematic point is the transparency. Currently a typical depth peeling approach is used but this is not the fasted solution on earth. I've got a quirky idea on how to deal with this but that requires some preparation work. This aside there is a lot of other work to be done before this engine is ready for a first release. So stay tuned.

Post comment Comments
JustDaveIsFine
JustDaveIsFine - - 1,545 comments

Aww I was hoping for an actual wake board.

Reply Good karma Bad karma+1 vote
Dragonlord Author
Dragonlord - - 1,934 comments

Well... your wish can be granted :P . A couple of minutes and there we are, a dragon on a real wake-board. Have fun with this quick hack-together :D ( Youtube.com )

Reply Good karma+1 vote
Ark_
Ark_ - - 583 comments

Nice, talk about giving the fans what they want :) .

Reply Good karma Bad karma+2 votes
formerlyknownasMrCP
formerlyknownasMrCP - - 892 comments

Omg that was epic man.. so funny.. great job DL ;)

Reply Good karma Bad karma+1 vote
Ark_
Ark_ - - 583 comments

Same, you should add a mini wake boarding game :) .
Nice work as always, I cant say much more than good luck.

Reply Good karma Bad karma+1 vote
Dragonlord Author
Dragonlord - - 1,934 comments

I would definitely not be astonished if somebody mods one into the game. Would be easy to do and a nice learning experience for modders.

Reply Good karma+1 vote
vfn4i83
vfn4i83 - - 692 comments

Since you're working with OGL, I expect nothing less than awesome graphics; and could study the use of tesselation and more of the OGL 2.5/3 features

Reply Good karma Bad karma+1 vote
Kamikazi[Uk]
Kamikazi[Uk] - - 1,412 comments

Nice features once again. Love the idea of wake board better then seeing characters slide down terrain.

Reply Good karma Bad karma+1 vote
FullMetalFox
FullMetalFox - - 199 comments

Awesome =)
Since ill have to work with many 4-legged creature in the future, this will be very helpfull :D

Reply Good karma Bad karma+1 vote
Lt_Veron
Lt_Veron - - 209 comments

wow:3 thats realy awansome

Reply Good karma Bad karma+1 vote
Wiweeyum
Wiweeyum - - 347 comments

Your wakeboard could be like Wolfire's Whale-Man thing. Just put it everywhere you can!

Reply Good karma Bad karma0 votes
Dragonlord Author
Dragonlord - - 1,934 comments

No thanks. I'm for quality not PR-drama. A different preview image maybe but nothing more. I'm all about the content not putting tons of Christmas gift paper all around it.

Reply Good karma+1 vote
awesomepossum
awesomepossum - - 997 comments

Very impressive, besides the stiff body and tail, the walk motion looks very natural and realistic.

Reply Good karma Bad karma+1 vote
Dragonlord Author
Dragonlord - - 1,934 comments

The tail is not animated yet hence it's stiff. What goes for the body this is on purpose. I'm orienting myself on wild cats there since they have a very smooth body motion and the dragons are supposed to be agile and swift. I could add more swaying motion but then it looks like a lizard and dragons are not lizards. But nothing is final yet though so maybe there can be a change. Most probably not though since a swaying body tends to create nausea for players if using the ego-camera and we don't want this to happen.

Reply Good karma+1 vote
AniCator
AniCator - - 178 comments

Nice work once again, Dragonlord! ;) (ps. Blender FTW!)

Reply Good karma Bad karma+1 vote
Post a comment

Your comment will be anonymous unless you join the community. Or sign in with your social account: