gbadev.org forum archive

This is a read-only mirror of the content originally found on forum.gbadev.org (now offline), salvaged from Wayback machine copies. A new forum can be found here.

Game Design > Implementing "this"

#88571 - keldon - Tue Jun 20, 2006 9:59 am

http://www.dkauk.com/klogic/temp/sabinov2.gif

I was just going through my temp directory and found this sketch I made of a game follow up to something I made before. And for the first time I matched up the gameboy with the controls and I think it is an ace system.

The original idea was that it would give the impression of a side scrolling game where he is walking etc, and people appear. But for sketching purposes I just wanted to see how the timing would feel etc.

Now one thing I want is for the player to be very 'animated'; so he will have a string of moves, pulling out weapons and such. And I felt that these were the main ways of implementing them:
- have each set of sequences corrolate to a move so that you are effectively pulling off a move, and when you miss then the object does not break and it damages you
- again the set of sequences corrolate to a move, but errors will alter the move; so each move is a combination of moves accessed in a tree like fashion so that mid way it can turn into something else - this is much more extensible
- sequences do not corrolate to a move, instead the player is controlled by ai; simple as

EDIT: oh yeah, and as you progress the moves will (obviously) get more complex and interesting. Could appear in a stage like manor, or just give the user continious play with occasional breaks etc.

EDIT 2: all that has discouraged me from continuing with this is the animation; I feel like there is no way other than ai or tonnes of frames to get this done. It's more of a factor of having the frames than the engine; the engine is easy.

EDIT 3: also the alternative is to discard the major animation and just have a set action for every combination; there are only going to be 7, although there can be transitions between them, not to mention the transitions between left/right attacks.

#88593 - tepples - Tue Jun 20, 2006 3:14 pm

With the smooth animation, you can sort of fake it if you use a separate rot/scale sprite for each body part or you use a boned 3D model and software render it.
_________________
-- Where is he?
-- Who?
-- You know, the human.
-- I think he moved to Tilwick.

#88679 - gauauu - Tue Jun 20, 2006 10:08 pm

But the coolness of it all WOULD be the major animation. I think it's a great idea if you could come up with the really good animations