DevMaster.net Forums
[[ Home | Forums | 3D Engines Database | Wiki | Articles/Tutorials | Game Dev Jobs | IRC Chat Network | Contact Us ]]

Go Back   DevMaster.net Forums > General > Personal Announcements
User Name
Password
Register FAQ Members List Search Today's Posts Mark Forums Read

Reply
 
Thread Tools Search this Thread Display Modes
Old 11-30-2008, 02:25 PM   #1
drean
Member
 
Join Date: Aug 2006
Posts: 31
Default Esenthel Engine - Flying Character

Hi,

I'm still working on my engine,

Recently I've implemented the ability to fly for Game::Characters.

Here's a screenie:

(Model by Shames Dean)



Here's a video on YouTube

I'd appreciate any feedback about the engine.
If you haven't yet tried it out, then here's a link to check it out.

Thanks,
Grzegorz Ślaziński
drean is offline   Reply With Quote
Old 11-30-2008, 04:32 PM   #2
Reedbeta
DevMaster Staff
 
Join Date: Oct 2004
Location: Seattle, WA
Posts: 4,015
Default Re: Esenthel Engine - Flying Character

Might just be my monitor settings, but the video looks very dark; I can hardly see the ground at all.

Still, it's cool how the character transitions between running and flying.
___________________________________________
Currently working at Sucker Punch
reedbeta.com - OpenGL demos and other projects
Luabridge - a lightweight, dependency-free C++/Lua binding library.
CD Lite - an unobtrusive, minimal CD player application for Windows.
Reedbeta is offline   Reply With Quote
Old 11-30-2008, 04:45 PM   #3
starstutter
Senior Member
 
Join Date: Dec 2007
Location: charleston, west virginia
Posts: 1,039
Default Re: Esenthel Engine - Flying Character

heh, the graphics are great and the video was impressive but... damn, that hits some new levels of creepiness =/
___________________________________________
(\__/)
(='.'=)
This is Bunny. Copy and paste bunny into
(")_(") your signature to help him gain world domination.
bunny also wants to fight spam: Click Here Bots!
starstutter is offline   Reply With Quote
Old 11-30-2008, 07:10 PM   #4
Reedbeta
DevMaster Staff
 
Join Date: Oct 2004
Location: Seattle, WA
Posts: 4,015
Default Re: Esenthel Engine - Flying Character

Why's it creepy?

BTW, never mind what I posted about the video being dark - my monitor gamma was all messed up. Fixed now.
___________________________________________
Currently working at Sucker Punch
reedbeta.com - OpenGL demos and other projects
Luabridge - a lightweight, dependency-free C++/Lua binding library.
CD Lite - an unobtrusive, minimal CD player application for Windows.

Last edited by Reedbeta : 11-30-2008 at 07:14 PM.
Reedbeta is offline   Reply With Quote
Old 11-30-2008, 09:14 PM   #5
starstutter
Senior Member
 
Join Date: Dec 2007
Location: charleston, west virginia
Posts: 1,039
Default Re: Esenthel Engine - Flying Character

Quote:
Originally Posted by Reedbeta
Why's it creepy?
don't get me wrong... it's good but... it's just the way that the guy looks pretty lifelike (as in physically accurate) and the way he moving (or not moving). Idk, it's hard to describe lol. It's not the engine obviously, just the video.
___________________________________________
(\__/)
(='.'=)
This is Bunny. Copy and paste bunny into
(")_(") your signature to help him gain world domination.
bunny also wants to fight spam: Click Here Bots!
starstutter is offline   Reply With Quote
Old 12-01-2008, 01:11 AM   #6
kariem2k
Valued Member
 
kariem2k's Avatar
 
Join Date: Aug 2004
Location: Alexandria, Egypt
Posts: 207
Default Re: Esenthel Engine - Flying Character

Great work
Really Excellent shadows and lighting.
As starstutter said if you would enable something like semi-controlled rag dolls that would be great as demonstration as physics capabilities of the engine.
Keep the good work.
kariem2k is offline   Reply With Quote
Old 12-01-2008, 02:37 AM   #7
vrnunes
Senior Member
 
Join Date: Aug 2004
Location: Brasil
Posts: 318
Default Re: Esenthel Engine - Flying Character

I liked it very much. Very nice demo, beautiful graphics and all. Excellent!

I am curious about what type of terrain partitioning system you're using on this engine, is it chunked lod or geometry clipmaps? It looks fast rendering. I am about to implement a terrain system on my new (always sucking) engine, and am still not completely sold to geometry clipmaps. Is it really the better at all?

This time I am going to implement spherical terrains, so I was thinking about trying something like F. Brebion is using on Infinity -- that is, a cube of chunked lod patches.

Opinions, please?
vrnunes is offline   Reply With Quote
Old 12-01-2008, 03:51 AM   #8
drean
Member
 
Join Date: Aug 2006
Posts: 31
Default Re: Esenthel Engine - Flying Character

Hi thanks for your comments,

For now I'm not using any physics/ragdoll for flying, just simple animations, and manual (in code) bone rotations, it's a lot faster then simulating it in physics, however I'll play with it a little more - try to polish the non-physics version, and then I'll try the physics version.

As for the terrains:
I've did a quick check on geometry clipmaps but they don't seem interesting to me. First of all from the demo I see that the meshes need to be updated when the camera position changes, the best thing to do is to avoid that. Second of all I expect problems when using multitexturing with clipmaps - multiple materials blended on the terrain. I haven't checked the clipmaps too good, but from the first impressions I'd just skip it.

I've implemented something simpler:
the terrain is built out ot const sized chunks (square 25 meter x 25 meter), each chunk has multiple level of details, and they're all stored in a custom container, something like a quadtree but different.
This way I can have infinite sized terrains, multiple materials blending is simple as a peanut - I'm not limited to number of materials used, just check my World Editor tool inside the SDK package, you'll get the idea what's going on inside there.

Flavien is doing a great job with his Infinity project, I'm observing his progress from time to time.

Maybe before doing a spherical terrains you should start with the flat version?
drean is offline   Reply With Quote
Old 12-01-2008, 07:42 AM   #9
vrnunes
Senior Member
 
Join Date: Aug 2004
Location: Brasil
Posts: 318
Default Re: Esenthel Engine - Flying Character

I did some terrains before, using quadtree and software-rendering. Obviously, they look extremely ugly compared to what can be done today. Anyway, I'll accept your suggestion, and make a flat, chunked-lod based terrain first.

Again, congratulations, your demo looks awesome.
vrnunes is offline   Reply With Quote
Old 12-01-2008, 09:43 AM   #10
drean
Member
 
Join Date: Aug 2006
Posts: 31
Default Re: Esenthel Engine - Flying Character

Thanks,

Oh yeah, I remember the times of software rendering, tried some of that too in the past

When doing lods remember about edge "skirting" to avoid empty spaces between sectors.

Oh, and about my engine, if somebody is interested in it, I've created a special Christmas Promotion for licensing http://www.esenthel.com/en/engine_license.html
drean is offline   Reply With Quote
Old 12-17-2008, 01:59 PM   #11
drean
Member
 
Join Date: Aug 2006
Posts: 31
Default Re: Esenthel Engine - Flying Character

Important message for Radeon x1000 card users:
If you have experienced problems when running Esenthel Engine (reboots), please check the newest version as it's now working on those cards.

The problem was that Radeon x1000 cards for unknown reason crash when attempting to load engine's SM3.0 shaders using DirectX function D3DXCreateEffect.
I've forced SM2.0 usage on those cards and now it works ok.

Oh and another important message:
Esenthel Engine has got its first client

Last edited by drean : 12-17-2008 at 02:10 PM.
drean is offline   Reply With Quote
Old 12-21-2008, 06:21 AM   #12
drean
Member
 
Join Date: Aug 2006
Posts: 31
Default Re: Esenthel Engine - Flying Character

I've created another effect - Sun Rays

As before, here's YouTube - http://www.youtube.com/watch?v=HSDYir_3AxQ&fmt=18

and here's a Screen -
drean is offline   Reply With Quote
Old 12-21-2008, 09:48 AM   #13
Kenneth Gorking
Senior Member
 
Kenneth Gorking's Avatar
 
Join Date: Aug 2004
Location: Århus, Denmark
Posts: 752
Default Re: Esenthel Engine - Flying Character

Looks real nice! Well done.
___________________________________________
"Stupid bug! You go squish now!!" - Homer Simpson
Kenneth Gorking is offline   Reply With Quote
Old 01-06-2009, 10:07 AM   #14
drean
Member
 
Join Date: Aug 2006
Posts: 31
Default Re: Esenthel Engine - Flying Character

drean is offline   Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Forum Jump


All times are GMT -7. The time now is 04:37 AM.


Powered by vBulletin
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.