Page 2 of 2

Posted: Mon Jun 07, 2010 2:03 pm
by Tr3nT
hi pera.....
i'm trying to make an editor for my game....
i have a question for you...
how have u done the little preview screen where u can see the rat???
how have u done it????
and how you store the elements??? with an array or a list????

Posted: Mon Jun 21, 2010 12:22 pm
by Tr3nT
no one can help me????

Posted: Mon Jun 21, 2010 12:37 pm
by greenya
Tr3nT,
i guess its own pera's level designer, but you can learn how to make one from the tutorial provided with Irrlicht SDK -- 09.Meshviewer.

Posted: Mon Jun 21, 2010 2:01 pm
by ACE247
Well I believe he used RTT, a second camera and then placed the model somewere else far far away in the scene. :)

Posted: Fri Jun 25, 2010 5:24 am
by nathanf534
-_- too much stupid spam

Posted: Fri Jun 25, 2010 5:58 am
by BlindSide
Chill yo I cleaned it out

Posted: Fri Jun 25, 2010 12:45 pm
by pera
@Tr3nT my level editor is open source, there is a thread somewhere in this forum, you can ask questions there and download it and not spam this thread.

btw, Im trying to finish the level editor monsters these days and use these models to make demo game, kind of 3d remake of fallout2. Unfortunatelly it will lack 2d gui of the game.

Posted: Tue Jun 29, 2010 8:44 am
by pera
greenya, do you have these models in some format other then irr scene?
(check pm)

Posted: Thu Sep 09, 2010 4:28 pm
by pera
I finally managed to get these models and load them in my Level Editor.
I made the monsters working, and I wanted to make a test level with this Fallout 2 Temple of Trials mesh.

In the end, it is far from Fallout2 remake, but I like the ring to it.
If I had time to make the GUI matching original, and player character to replace my dear turtle, it would be pretty good.

Download link: https://docs.google.com/leaf?id=0BzqY8c ... ist&num=50

Video: http://www.youtube.com/watch?v=1_-AOQwczio

Screenshot:
Image

Posted: Thu Sep 09, 2010 6:48 pm
by greenya
Wow, nice to see it. :D

Downloaded, but failed to start, both EXEs gives an error about "unable to find MSVCR100.dll". :?

P.S.: i have WinVista32 and VS2008 installed.

EDIT:
and player character to replace my dear turtle, it would be pretty good.
There is a game called Ragnarock (maybe some other game first used this technology, but i saw it first in that game). They use 3D environment and 2D sprites for characters and mobs. Each 2D sprite has about 6 or 8 images of rotations of each action of each frame of animation, when you rotate view -- 3D world rotates smothly, but characters and mobs -- by fits and starts -- they can draw very many characters on the screen without big performance hit -- which is good. Sceenshot -- http://www.rpgloft.com/uploaded_files/4 ... shot-4.jpg

So you can get original Fallout2 player character 2D sprite, and use it in the same way.

Posted: Fri Sep 10, 2010 8:11 am
by pera
I used XP VS2010.

Maybe it will work if you install VS2010 redistributable package.
http://www.microsoft.com/downloads/en/d ... laylang=en
Im just not sure if 32/64 XP/Vista difference will be problem.

Thats interesting idea, it would feel like that character traveled to the future.

Posted: Fri Sep 10, 2010 8:48 am
by greenya
Now works.
Nice playing and the editor! :wink:

Posted: Fri Sep 10, 2010 9:50 am
by pera
Great. :)

You see, I couldn't use your dungeon models out of the box for this 3rd person view, so I had to parse them. I removed the top (ceiling), and divided dungeon into floor and walls. Flor is marked as terrain so when you click on it the player moves to that point. When there was ceiling and the walls they were taking mouse clicks and turtle was trying to climb them, and got stuck.
I also had to rewrite my bounding box picking cause all items were inside the dungeon box so it was absorbing all clicks, etc... this really helped me to improve LE to match 'real' games.