Posted By: 3Dfx
Advanced Adventure Game Creation! - 07/12/06 17:25
Hello there, i have used 3D applications several years
but never learned me how to code.
My dream is to someday be able to produce an adventure
game that works the same way as for instance these old classics:
Atlantis 1
The 7th Guest 1
Myst 3
and so on..
What im interested in is creating an anventure game where
you can choose where you want to go like in these ones
but not descessarily in realtime 3D, acually id rather
like it to be Prerendered with those sequences playing
as you go if the player wish.
I have heard that doing prerendered stuff requires
scripting to be done.
My Question to you is it possible to do somthing
close to this with GameStudio A6 ?
How much work can we anticipate today that it is to create
such a game? (i mean for the coding) What cathegories would
be most important to start studying to embark on such a project ?
Is A6 "man enough" for the job ?
Would listen to great interest for some honest realistic
answers from you.
Thanks for your time:
/Joseph (aka 3Dfx)
Posted By: Orange Brat
Re: Advanced Adventure Game Creation! - 07/12/06 19:30
All a Myst style game is a series of 2D, panoramic images tied together. The thing that ties them together are video transitions from one location to the other(in advanced games), and a screen fade in/fade out in less advanced ones. Each of those 2D images is a node, and each node can be accessed via a hotspot on the screen with your onscreen mouse cursor. When you click the node, you are taken from the current node to the next one via that transition.
Of course, you'll need to have your levels modeled out as normal and figure out where you want your nodes to be at in the level and do a prerender from there. I'm not sure how to pull off the panoramic effect when doing this, though. This is the cheat that makes a full, 2D image look like a 3D one and allows you to use the mouse to look in all directions from where you're standing. I'm guessing there are plugins or features for 3d modeling apps that will allow this style of rendering of an image, but I don't know for sure.
Posted By: lostclimate
Re: Advanced Adventure Game Creation! - 07/12/06 21:14
if you can figure out a way to make a cubemap or a sphere map and put this on an iverted sphere/cube with and unlit model, you could put that in the level too to test and see what you levels would look like, that way you dont need an array of images just nodes/positions, you may not even need to build more that one world, if you just dynamically switch out the models.