Cutscene and boss stages animations in old shmups

A place for people with an interest in developing new shmups.
Post Reply
nekitu
Posts: 9
Joined: Wed Feb 12, 2020 1:41 pm

Cutscene and boss stages animations in old shmups

Post by nekitu »

Hi, if anyone knows of any tools/workflows used by the 80s 90s shmups developers to animate the sprite cutscenes and boss stages, that would be great.
I am refusing to accept the idea that it is hardcoded with pixel perfect locations in the code :)), but it might be just that.
For example boss movement, then when the boss stage changes, some parts are animating, decoupling from main body, etc. that sort of stuff.
Also intro animations, animating all of those sprites, it looks like procedural, usually its only linear movement of planes.
Any clue would be appreciated.
PS: I am developing a retro shmup and I want to use the old workflows with some extra help from today's libs of course. I might end up just using json hot-loading for animations, and just modify numbers (keys) until the animation on screen looks right :).
Thanks
Ixmucane2
Posts: 760
Joined: Mon Jan 19, 2009 3:26 pm
Location: stuck at the continue prompt

Re: Cutscene and boss stages animations in old shmups

Post by Ixmucane2 »

You might be overerestimating the difficulty of calculating "pixel perfect" animations: you know the size and the appropriate velocity of everything, you can make paper or virtual diagrams to visualize levels and get things right the first time, and a lot of movement (particularly of guided projectiles and smart boss parts that point themselves at the player) can be procedural and "hardcoded" in the positive sense that after you program animations they adapt automatically to different parameters and situations.

For more scripted content, like cutscenes, and for more fundamental game content (e.g. boss hit points and timers) tools that let you edit or preview animations in the engine (preferably continuing the test game in progress) can also be very helpful.
Editing animation keys and parameters as "numbers" isn't necessarily bad, and you can easily develop better tools: clicking on the screen to choose locations, going back and forward in time, onion skinning, having separate views for previewing animations and for editing the level, and anything else you find useful.
nekitu
Posts: 9
Joined: Wed Feb 12, 2020 1:41 pm

Re: Cutscene and boss stages animations in old shmups

Post by nekitu »

Yes, I have developed game level editors for the past 20 years :D, for personal and game industry use, I am trying to avoid making an editor for the game since I will get into dev hell, been there done that :), but I guess some mouse clicks hints would be ok for some editing operations, to not guess with trial and error. I was just curious how they did it in the old days.
nekitu
Posts: 9
Joined: Wed Feb 12, 2020 1:41 pm

Re: Cutscene and boss stages animations in old shmups

Post by nekitu »

I could have some sort of isolation mode preview for the enemies/items, that only render the unit, with some shortcuts for various preview operations, stage select, etc. along with mouse and some debug info on screen, the hot reload of json data/images should be ok I guess.
Gislason
Posts: 1
Joined: Tue Mar 23, 2021 10:28 am

Re: Cutscene and boss stages animations in old shmups

Post by Gislason »

Hey all!

This is probably a topic with many different answers, and that's cool, I'd love to hear your thoughts. Everyone has different tastes.
What is it exactly that you like about shoot-em-up style games? (And why?) Or, to put the same question differently, what would you like to see in the perfect shmup?
For example, is it a particular mechanic or style that draws you in? Or are you interested in the story/background? Or perhaps some fast-paced action and pumping music?
Turcotte
Posts: 1
Joined: Fri Apr 23, 2021 10:34 am

Re: Cutscene and boss stages animations in old shmups

Post by Turcotte »

Thanks for the update and quick reply. I'll be sure to keep an eye on this thread. Looking for the same issue. Bumped into your thread. Thanks for creating it. Looking forward for solution.
KaceyHruby
Posts: 2
Joined: Fri Apr 30, 2021 7:40 am

Re: Cutscene and boss stages animations in old shmups

Post by KaceyHruby »

One thing i have noticed is that shmups have the image of being really mostly because some people watch videos of people 1CC'ing bullet hells and since you can't even practice a stage until you've reached it in a real run. don't need you to 1CC to get the true boss or ending would be a good idea.
Post Reply