View previous topic :: View next topic |
Author |
Message |
Arno Site Admin

Joined: 17 Mar 2007 Posts: 2443 Location: netherlands
|
Posted: Fri Oct 30, 2015 6:39 pm Post subject: Question about timing in Boulder Dash |
|
|
I got the following question from a Java developer, who is currently implementing a Boulder Dash I clone. Could any of you shed some light on this issue?
Quote: | I'm wondering how the "global timing" exactly works. As far as I
understand, there is a time-based CaveDelay (in Boulder Dash I). But
actors are animated at different frame rates. So does the CaveDelay only
affect the game loop and is there an animation loop seperatly? How does
animation and CaveDelay work together? |
_________________ ---- Boulder Dash Fansite ---- |
|
Back to top |
|
 |
subotai Member
Joined: 25 Jan 2009 Posts: 251
|
Posted: Mon Nov 02, 2015 10:39 am Post subject: |
|
|
Animation speed and game speed should be separated. You can find some further informations in this forum. The game speed depends on the engine, if it's PAL or NTSC and on how many "things" are animated. An intermission with rainbow colors for example has a different speed than an intermission without these colors. You can only calculate an approximate value. But the most important thing is an accurate hatching time.
How to animate objects:
http://www.boulder-dash.nl/forum/viewtopic.php?t=259
Calculate game speed
http://www.boulder-dash.nl/forum/viewtopic.php?t=136 |
|
Back to top |
|
 |
|