Looking For Template/Sample Project With Source

Announce new projects or updates of Irrlicht Engine related tools, games, and applications.
Also check the Wiki
Post Reply
dlangdev
Posts: 1324
Joined: Tue Aug 07, 2007 7:28 pm
Location: Beaverton OR
Contact:

Looking For Template/Sample Project With Source

Post by dlangdev »

Hi all,

i just browsed the threads and found nothing similar to what i'm looking for.

basically, maybe someone has written a simple game framework having the following:

1) game menu - player lands here. stats show up here.

2) game map - player then goes to see map.

3) scene level loader - player select a location on the map, level scene loads.

if there's anything close to these features, please let me know as I'm trying to build a game demo. it doesn't have to be a fully working program, i can add code patches to it.

i'll post the entire program code during development up to completion. nothing will be held back.

thanks in advance.
Image
JP
Posts: 4526
Joined: Tue Sep 13, 2005 2:56 pm
Location: UK
Contact:

Post by JP »

The tutorials basically cover most of this stuff and you should be able to piece them together to get the basis of a game. And also one of the tutorials is basically a mini game demo with a menu and everything, so just check them out.

Or if that's really not enough then look through this forum and you'll find some projects have made their source available and you can look at that.

FYI you should have posted this in beginner's help!
Image Image Image
fireside
Posts: 158
Joined: Thu Dec 01, 2005 10:55 pm

Post by fireside »

You'll take a lot of the fun out of it if you do it that way. Start with the main thing and keep adding. Learning to use classes is probably the best way of separating and maintaining your code.
roguelike
Posts: 14
Joined: Tue May 30, 2006 11:03 am

Post by roguelike »

maybe you could look on sourceforge.net
________
Og Kush Seeds
Last edited by roguelike on Tue Feb 22, 2011 10:50 pm, edited 1 time in total.
dlangdev
Posts: 1324
Joined: Tue Aug 07, 2007 7:28 pm
Location: Beaverton OR
Contact:

Post by dlangdev »

thanks for replying.

i have more questions:

1) i would like to maintain several worlds of at least 4 environments. one world tied to a scene manager.

2) the main map is another world in itself, though it contains a small replica of a world level. clicking on the replica will make the camera zoom-in, but actually it will simply switch to that world by changing to that scene.

3) should i be loading all worlds in one go, or should i load() and drop() them depending on what was selected, the main menu doing all the work of dropping and adding scene objects.
Image
Post Reply