NWN like game engine

If you are a new Irrlicht Engine user, and have a newbie-question, this is the forum for you. You may also post general programming questions here.
Post Reply
darkbard
Posts: 2
Joined: Tue Jan 06, 2004 1:46 pm

NWN like game engine

Post by darkbard »

Hi Guys.

I'm new on 3D game programming. Following some links, I finished here and I dowloaded Irrlicht. I think it's a good 3d engine ...

I'd like to create a game that, graphically, looks like Never Winter Nights. Any one can help me? I think it's a 3d tiled engine, right?? How can I manage this?

tnx a lot, bye
keless
Posts: 805
Joined: Mon Dec 15, 2003 10:37 pm
Location: Los Angeles, California, USA

Post by keless »

if you're new to game programming, you're going to want to start off simpler than that if you ever want to finish your project.

(self plug :twisted: ) Here are some basic game engine tutorials (in win32/OGL, not IrrLicht) that will teach you some good theory:
http://www.skyesurfer.net/keless/vgp/

That being said, if you've already completed a few, and are just looking into getting into the 3D realm: I'd go with a plain flat tile floor and list of model objects for your level format (walls/doors/tables all = model objs). As long as all of your floors are flat, this will work well and be easy to frustrum cull, since your data domain is actually only 2D.

Then of course, you'll want an animated model format for your chars/monsters, which I believe .md2 or .3ds will do best for you in IrrLicht.
a screen cap is worth 0x100000 DWORDS
darkbard
Posts: 2
Joined: Tue Jan 06, 2004 1:46 pm

Post by darkbard »

Ok, I think I'll follow a 2.5D like structure for my game. It seems interesting and not so difficult to implement.
Irrlicht makes it possible to develop a 2.5D-like game?? Ho can I do that in pratice?
Post Reply