GE Demo Videos And Pics
-
Thanks guys, been working on it hard for over a year now. Starting to come together finally
-
LancerSolurus wrote:
Thanks guys, been working on it hard for over a year now. Starting to come together finallyI think it will be worth. You did things nobody here can do, so i think your knowledge will lead you make a big success.
Now get back to hard work until it really happened
-
In honor of the 2 year anniversary of the game’s development cycle, I present a new version of what’s being done in the game.
-
Hehe, the game looks more pretty, and looks you got lot’s of fun in the development. Good job.
BTW: Maybe you can release a Small scale Product level Playable demo. This will gives chance to let player play it and get their special experience themself.
-
Actually this video is in preparation for the next release. I am in the process of adding in the mission related stuff and building the foundation for the empire related items (HQs, miners, living quarters, populations, etc) so it will most likely be at least another 2 weeks to a month before I post it for download. Also it will be a simple ‘play with it’ type of game, there is no save or load features added since the game is constantly evolving. I had that at one point but it no longer works since so much has changed, this includes even the server code. Once the code has stabilized I will go back and revamp that part of the game.
-
That’s a great idea LS
I’m thinking i’ll run it on my spare PC… just sitting there… being a world for a few weeks lol… i’ll look at what available code on my main PC and also look at trying to convert some ships for you
once i get my head out of modding X2… i recon im gonna be able to mod almost anything now, something i’d like to give back m8
I’ll talk to ya latter’s closer to release.
-
Well nice thing is there is plenty of moddability to the game. I didn’t pack away the ini’s in an encrypted format even though that is possible with the script reader. Also I have nearly completed the construction code after 2 days of working on it. Just a few more things to add to it and it will be working the way I want it to.
I am also looking into adding a day/night cycle for the planetary maps. If I do add it then most likely it will be an excellent addition to the weather system. Especially if I go with the procedurally generated skybox method.
I will be offering for download soon a .bip file (Max biped file) for those whom wish to make their own characters. All you will need is a pre-rigged char model to attach it to. This file has all of the in-game char animations in it so you can use the pre-existing charanim.ini settings to add your own chars. Changing which char model the player starts with is as simple as editing the config.ini file.
-
-
-
Perfect! Use antialias - it will be better for showcases
-
Thanks guys, that one was a pain to convert. The UV map didn’t hold properly when converted even though it looked fine in the modeller. Since I already have UV tiling built-in to the engine, it was simply a matter of finding the right values. BTW anti-aliasing is turned on thru the NVidia panel. Since I use render targets it can’t be turned on thru DX. What I see rendered doesn’t have any jaggies but it seems Fraps captures the pics before it’s applied (FXAA)…
For the tool pack, here is one by Alex
http://dl.dropbox.com/u/10971457/Freelancer/Digital Brilliance backup.tar.gz
-
I’m not sure what you mean by that, LS, but RTs don’t preclude the usage of any form of AA. Freeworlds has built-in AA and we saturate the DX9 RT limit.
-
I thought you did it thru the use of a post processing filter? I worked on trying to get MSAA to work but I ran across some info on the MS site that said it doesn’t work with render targets. Once I turned it off the render targets worked properly. Unfortunately this is the main issue with doing deferred rendering. I just haven’t gotten around to adding a smoothing effect since FXAA is working good, the jaggies only show up when its being captured. I may do it once I implement SSAO since I already have a depth and normal render targets implemented. Haven’t decided which type of blur yet, I would use a guassian type but it’s a bandwidth hungry format. It’s what the shadow map uses. It’s based loosely off of this page…
And here is another shot of that cityscape
-
We’ve implemented FXAA directly in DirectX, which lets everyone benefit from it and not just Nvidia users.
There are also more advanced techniques for doing deferred MSAA, or even other, better techniques than FXAA like SMAA.
-
I haven’t really studied the different forms of filtering yet. I had heard the same that SMAA was better though. What other types of effects did you add to your render engine?
-
Had to compile a fairly exhaustive list a few weeks ago, so here you go:
- Deferred shading
- Lambert shading
- Blinn-Phong shading
- Normal and specular mapping
- Cascaded shadow mapping
- Shadow map filtering using temporal reprojection
- Shadow map percentage-closer filtering
- Dynamic lighting with stencil buffer optimizations
- Cube mapping with variable glossiness using pre-filtered environment maps
- Soft particles
- Distortion mapping (heat haze)
- Detail mapping
- FXAA 3.11
- Scene-dependent bloom post-process
- Lens flare post-process
- Color correction post-process