Build A World - new massive game, using Irrlicht
Build A World - new massive game, using Irrlicht
Hi all
We are now in final stage of preparing version 1.0 of our new game. For 3D it uses Irrlicht, with a lot of modifications.... to mention a few:
3d textures, tessellation shaders, pointers to user data in materials, optimized occlusion queries, hardware particles, custom vertex formats and render target blitting.
We plan to 'give back', some of these functions, to Irrlicht
The game also has multiplayer servers in the cloud, so all users instantly have access to online gameplay, in addition to LAN servers.
We will add screenies here in a week, stay tuned !
sincerely,
Søren
We are now in final stage of preparing version 1.0 of our new game. For 3D it uses Irrlicht, with a lot of modifications.... to mention a few:
3d textures, tessellation shaders, pointers to user data in materials, optimized occlusion queries, hardware particles, custom vertex formats and render target blitting.
We plan to 'give back', some of these functions, to Irrlicht
The game also has multiplayer servers in the cloud, so all users instantly have access to online gameplay, in addition to LAN servers.
We will add screenies here in a week, stay tuned !
sincerely,
Søren
Build A World -> http://www.buildaworld.net/
Build A World EDU -> http://edu.buildaworld.net/
BAW on Facebook -> http://www.facebook.com/BuildAWorld.net
BAW on YouTube -> http://www.youtube.com/user/wwwbuildaworldnet/videos
Build A World EDU -> http://edu.buildaworld.net/
BAW on Facebook -> http://www.facebook.com/BuildAWorld.net
BAW on YouTube -> http://www.youtube.com/user/wwwbuildaworldnet/videos
Re: Build A World - new massive game, using Irrlicht
not to mention one preliminary form of order independent transparency
Re: Build A World - new massive game, using Irrlicht
a teaser picture
Build A World -> http://www.buildaworld.net/
Build A World EDU -> http://edu.buildaworld.net/
BAW on Facebook -> http://www.facebook.com/BuildAWorld.net
BAW on YouTube -> http://www.youtube.com/user/wwwbuildaworldnet/videos
Build A World EDU -> http://edu.buildaworld.net/
BAW on Facebook -> http://www.facebook.com/BuildAWorld.net
BAW on YouTube -> http://www.youtube.com/user/wwwbuildaworldnet/videos
Re: Build A World - new massive game, using Irrlicht
Build A World -> http://www.buildaworld.net/
Build A World EDU -> http://edu.buildaworld.net/
BAW on Facebook -> http://www.facebook.com/BuildAWorld.net
BAW on YouTube -> http://www.youtube.com/user/wwwbuildaworldnet/videos
Build A World EDU -> http://edu.buildaworld.net/
BAW on Facebook -> http://www.facebook.com/BuildAWorld.net
BAW on YouTube -> http://www.youtube.com/user/wwwbuildaworldnet/videos
-
- Competition winner
- Posts: 688
- Joined: Mon Sep 10, 2012 8:51 am
Re: Build A World - new massive game, using Irrlicht
I like your GUI. Is that a custom skin for irrlicht or did you use something else?
Re: Build A World - new massive game, using Irrlicht
its our own gui system with custom graphics ...
Build A World -> http://www.buildaworld.net/
Build A World EDU -> http://edu.buildaworld.net/
BAW on Facebook -> http://www.facebook.com/BuildAWorld.net
BAW on YouTube -> http://www.youtube.com/user/wwwbuildaworldnet/videos
Build A World EDU -> http://edu.buildaworld.net/
BAW on Facebook -> http://www.facebook.com/BuildAWorld.net
BAW on YouTube -> http://www.youtube.com/user/wwwbuildaworldnet/videos
Re: Build A World - new massive game, using Irrlicht
reflections of a modern world...
depth based rendering water with refraction and Tessendorf 2001 FFT based water running the FFT in a SM 3.0 pixel shader
depth based rendering water with refraction and Tessendorf 2001 FFT based water running the FFT in a SM 3.0 pixel shader
Build A World -> http://www.buildaworld.net/
Build A World EDU -> http://edu.buildaworld.net/
BAW on Facebook -> http://www.facebook.com/BuildAWorld.net
BAW on YouTube -> http://www.youtube.com/user/wwwbuildaworldnet/videos
Build A World EDU -> http://edu.buildaworld.net/
BAW on Facebook -> http://www.facebook.com/BuildAWorld.net
BAW on YouTube -> http://www.youtube.com/user/wwwbuildaworldnet/videos
-
- Posts: 1010
- Joined: Mon Oct 24, 2011 10:03 pm
- Location: 0x45 61 72 74 68 2c 20 69 6e 20 74 68 65 20 73 6f 6c 20 73 79 73 74 65 6d
Re: Build A World - new massive game, using Irrlicht
I LOVE THAT SCREENSHOT!
Also, this project is looking awesome.
Also, this project is looking awesome.
"this is not the bottleneck you are looking for"
Re: Build A World - new massive game, using Irrlicht
Certainly pretty, but what are the performance numbers on your FFT?
Re: Build A World - new massive game, using Irrlicht
performance is very good... soon you will be able to download the entire game and try it out for free
version 1.0 will be out end of March.
version 1.0 will be out end of March.
Build A World -> http://www.buildaworld.net/
Build A World EDU -> http://edu.buildaworld.net/
BAW on Facebook -> http://www.facebook.com/BuildAWorld.net
BAW on YouTube -> http://www.youtube.com/user/wwwbuildaworldnet/videos
Build A World EDU -> http://edu.buildaworld.net/
BAW on Facebook -> http://www.facebook.com/BuildAWorld.net
BAW on YouTube -> http://www.youtube.com/user/wwwbuildaworldnet/videos
Re: Build A World - new massive game, using Irrlicht
Build A World -> http://www.buildaworld.net/
Build A World EDU -> http://edu.buildaworld.net/
BAW on Facebook -> http://www.facebook.com/BuildAWorld.net
BAW on YouTube -> http://www.youtube.com/user/wwwbuildaworldnet/videos
Build A World EDU -> http://edu.buildaworld.net/
BAW on Facebook -> http://www.facebook.com/BuildAWorld.net
BAW on YouTube -> http://www.youtube.com/user/wwwbuildaworldnet/videos
Re: Build A World - new massive game, using Irrlicht
The FFT performance is good, renders at 800fps on my mobile radeon card (taking into account that the mesh of the test scene took 1400fps to render without FFT)
FFT is 128x128 (4x the size in Crysis)
its radix 2
0.53ms on a mobile radeon
when we get onto the optimization stage ( I predict at least a 2x the framerate as our GPU load is 50% ) I hope to swap it to radix-4 (less draw calls, texture cache will still manage) and do texeloffset instructions and other cache optimizations (hoping to get the FFT down to 0.3ms or 0.2ms)
Also I sample textures to get pixel offsets to gather from and to get cosine and sine functions ( I think texture sampling is slower than sin() and cos() )
Also I havent had the time to plug in OpenCL or Compute Shaders into the equation, so on dx10 level NVIDIA and ATI I'll do the FFT in OpenCL and dx11 class cards using Compute Shader
(SM 3.0 FFT radix requires me to sample 2ce per output pixel - compute allows to sample 1ce and output to 2 arbitrary pixels, with radix 4 FFT this is bound to raise the oversampling)
FFT is 128x128 (4x the size in Crysis)
its radix 2
0.53ms on a mobile radeon
when we get onto the optimization stage ( I predict at least a 2x the framerate as our GPU load is 50% ) I hope to swap it to radix-4 (less draw calls, texture cache will still manage) and do texeloffset instructions and other cache optimizations (hoping to get the FFT down to 0.3ms or 0.2ms)
Also I sample textures to get pixel offsets to gather from and to get cosine and sine functions ( I think texture sampling is slower than sin() and cos() )
Also I havent had the time to plug in OpenCL or Compute Shaders into the equation, so on dx10 level NVIDIA and ATI I'll do the FFT in OpenCL and dx11 class cards using Compute Shader
(SM 3.0 FFT radix requires me to sample 2ce per output pixel - compute allows to sample 1ce and output to 2 arbitrary pixels, with radix 4 FFT this is bound to raise the oversampling)
-
- Competition winner
- Posts: 688
- Joined: Mon Sep 10, 2012 8:51 am
Re: Build A World - new massive game, using Irrlicht
Agreeing with aaammmsterdddam, your water looks AWESOME!!!!!!
The shark looks alittle jagged, but the texture is good.
The shark looks alittle jagged, but the texture is good.
Re: Build A World - new massive game, using Irrlicht
we blew some stuff up, it fell to the seafloor... still glowing blue electricity ...
Build A World -> http://www.buildaworld.net/
Build A World EDU -> http://edu.buildaworld.net/
BAW on Facebook -> http://www.facebook.com/BuildAWorld.net
BAW on YouTube -> http://www.youtube.com/user/wwwbuildaworldnet/videos
Build A World EDU -> http://edu.buildaworld.net/
BAW on Facebook -> http://www.facebook.com/BuildAWorld.net
BAW on YouTube -> http://www.youtube.com/user/wwwbuildaworldnet/videos