making an RPG: ISO, 3D, or both??

Started by
13 comments, last by Seriema 22 years, 9 months ago
I''m going to write a RPG together with a friend, my friend is an artist and I''m the programmer. We both write the story, mostly him but anyway I think it should be Isometric, since (almost...?) all RPG''s are. He prefers fully 3D, since he really hates that he have to make tiles. He wants to draw the whole town in one run, a big image. How is that done? If I could do exactly what I wanted, then I would do a 3D iso. Except I don''t have a clue on how that''s supposed to be. I''ll wait for TANSTAAFL and Dino to finish their project Neither of us have any experience with this so you guys with experience, please give some advice of what''s better/easier. (this is also gonna decide wich book to buy. An ISO, you all know which one , or an 3D) Please help! }+TITANIUM+{
[ ThumbView: Adds thumbnail support for DDS, PCX, TGA and 16 other imagetypes for Windows XP Explorer. ] [ Chocolate peanuts: Brazilian recipe for home made chocolate covered peanuts. Pure coding pleasure. ]
Advertisement
*hmmmmmm*

Making an RPG like GTA (the camera angle in 3D), but rotate it to be like . Would that be very difficult?

It would be like 3D isometric... So what should I buy, an Isometric book, or an 3D one? Need the 3D one more I think.

But how should I start? First make a "normal" Iso engine in DX8, then change some classes/functions here and there so it becomes a 3D one?
Is it possible to devide the engine like that?? All the extra things like fighting, story telling, etc, and all that "fun stuff" are completed and working with the 2D iso. Then just change the graphics part (and maybe the path-finding algorithm to work in 3D) without changing anything else in the program?

Because that would be great! Do a 2D iso game, then change the graphics to 3D. (using DX8 from the start, it''s actually is 3D when it''s 2D. right?)

}+TITANIUM+{
[ ThumbView: Adds thumbnail support for DDS, PCX, TGA and 16 other imagetypes for Windows XP Explorer. ] [ Chocolate peanuts: Brazilian recipe for home made chocolate covered peanuts. Pure coding pleasure. ]
How long have you thought about the design of your game? Makeing a rpg will bring you into GREAT trouble:

Thousends of thousends classes which all relate with each other:
Inventory, Char Stats, Battle System (trust me makeing a little battle system alone is an nearly impossible difficult thing too do), Overword Map, Location Map, Grafix&FX, File I/O, Gamelenght, AI.

If you want to start gamedevelping then i recommend to do something much simpler e.g. trie to make a clone of the FF5 Battle System.
hehe, I know it''s difficult.

I''m writing the game with a friend. And there probably be at least one or two more to help me with the coding. But that''s something I _have to do_, the game MUST have a battle system, inventory, etc...

My question is: Should I write it in complete 2D (Iso), or should I do a 3D (overheadview), or combine the both and do a 3D Iso?
And: How hard is it (with DX8) to go from 2D to 3D?? Do I have to rewrite the whole game? *hope not*

}+TITANIUM+{
[ ThumbView: Adds thumbnail support for DDS, PCX, TGA and 16 other imagetypes for Windows XP Explorer. ] [ Chocolate peanuts: Brazilian recipe for home made chocolate covered peanuts. Pure coding pleasure. ]
Wow, sounds like you are doing the exact same thing as me: writing an rpg with another person to do graphics etc. I started out writing the whole thing with directdraw, and made a 2d isometric graphics engine that worked fairly well.
When I saw Tan''s book I thought, wow, this is exactly what I''ve been doing. I bought it, read through much of it, and decided it was too easy. So I decided to skip to the last 2 chapters where he goes into 3d, fell in love with the idea, and started over with a 3d engine.
Now, about a week later, I am smacking myself for switching to 3d. I didn''t think it would be that much harder. I was wrong, at least I think so right now. Probably the learning curve is just quite steep.
I must say, however, that I find D3D8 much different from anything I''ve done in directdraw. It would therefore not be an easy matter to convert code from dd to d3d. It really depends what you are looking forward to most to code. If you want to write the graphics engine and see pretty pictures on the screen, you should program your engine in d3d. If you want to work more on the ai, inventory, scripting, story developing etc, use dd to jump over the graphics hurdle quickly.
I have found that there is a fine art to keeping your artist happy and thus working for you. If you make too many demands, they sort of give up and you don''t have an artist anymore, or at least not one that produces useable graphics. D3D is a lot easier on your artist because they can just make rectangular textures, rather than isometric tiles. D3D then takes care of the rest.
Alright, I''ll quit before I babble on any further. In the end, it is basically a matter of choice whether to use dd or d3d. Do what you think you can handle. If you have questions or such, you can reach me at jzeppenfeld@excite.com
Good luch, and have fun programming,.
damn... D3D is THAT much harder then DD huh?

But either way, I''ve ordered TANSTAAFLs book. It should be here in a week. I''m gonna read through it. But it uses DX7, I was hoping to the exact same things with DX8. Is that waaaay to hard? *hope not* Ordered Beginning Direct3D Game Programming too, I know it full of typing errors but anyway. Hoping to combine those two books

Because doing it in DXGraphics even when doing 2D iso, I''m hoping that I can jump to 3D iso without having to recode everything else.

Like you said, I want to concentrate on AI and such. When I''ve got that working, I might do the graphics a little prettier. Hope you understod me

}+TITANIUM+{
[ ThumbView: Adds thumbnail support for DDS, PCX, TGA and 16 other imagetypes for Windows XP Explorer. ] [ Chocolate peanuts: Brazilian recipe for home made chocolate covered peanuts. Pure coding pleasure. ]
If you want to use 2d in 3d, check out zero-one''s d3dx sprite library at http://www.angelfire.com/realm/zeroone/2dsprite.htm. I haven''t used it personally, but it looks like a really nice wrapper for the d3dx sprite function.
hey thanx!

stupid question: what is "wrapper"? Is this some kind of graphics? I think my artist friend won''t like it *hehe*

}+TITANIUM+{
[ ThumbView: Adds thumbnail support for DDS, PCX, TGA and 16 other imagetypes for Windows XP Explorer. ] [ Chocolate peanuts: Brazilian recipe for home made chocolate covered peanuts. Pure coding pleasure. ]
A wrapper is simply a set of functions that make it easier to work with something. The zero-one spritelib is a wrapper for the d3d sprite object. It really doesn''t add any functionality, it just makes it more user-friendly.
One thing about wrappers: They generally have some overhead associated with them. If you need your code to run faster, you should usually use the most low-level functions you can get your hands on.
Hope that helps.
oh I get it! thanx!

Didn''t understand one thing though. Are Wrappers "more lowlevel"/faster than using the actual DX functions?

}+TITANIUM+{
[ ThumbView: Adds thumbnail support for DDS, PCX, TGA and 16 other imagetypes for Windows XP Explorer. ] [ Chocolate peanuts: Brazilian recipe for home made chocolate covered peanuts. Pure coding pleasure. ]

This topic is closed to new replies.

Advertisement