aboutsummaryrefslogtreecommitdiff
path: root/scumm/scummvm.cpp
diff options
context:
space:
mode:
authorMax Horn2003-05-01 21:41:31 +0000
committerMax Horn2003-05-01 21:41:31 +0000
commitd7185269b5dcdef3aca0da5dcf24f467a744fbcd (patch)
tree3f615b98e7975e632ba906a5ec19728d421e7b8c /scumm/scummvm.cpp
parent27f094a3b00ba3e23d7bcb7aa76dce403dfc2c65 (diff)
downloadscummvm-rg350-d7185269b5dcdef3aca0da5dcf24f467a744fbcd.tar.gz
scummvm-rg350-d7185269b5dcdef3aca0da5dcf24f467a744fbcd.tar.bz2
scummvm-rg350-d7185269b5dcdef3aca0da5dcf24f467a744fbcd.zip
tweaked music syncing once more. This approach should be much more flexible, and also works with different delta values.
svn-id: r7254
Diffstat (limited to 'scumm/scummvm.cpp')
-rw-r--r--scumm/scummvm.cpp33
1 files changed, 9 insertions, 24 deletions
diff --git a/scumm/scummvm.cpp b/scumm/scummvm.cpp
index 1f19398aec..e12fe32da9 100644
--- a/scumm/scummvm.cpp
+++ b/scumm/scummvm.cpp
@@ -771,30 +771,15 @@ int Scumm::scummLoop(int delta) {
if (_features & GF_AUDIOTRACKS) {
// Covered automatically by the Sound class
- } else if ((_features & GF_OLD256) || (_features & GF_16COLOR) || (_gameId == GID_MONKEY_VGA)) {
- // Original values:
- //const int ITERATIONS = 4;
- //const int INCREMENT = 1;
-
- // This function (scummLoop) is invoked roughly every delta*15 milliseconds.
- // In GID_MONKEY_VGA, delta usually is 5 or 6, hence this function is called
- // every 75-90 ms.
- // With the original values, we incremented VAR_MUSIC_TIMER every fourth
- // iteration by 1. That corresponds to a time interval of 18.75 / 22.5 ms.
- //
- // With the new values, we have a ratio of 3/11 = 0.272727... which makes
- // the GID_MONKEY_VGA intro synced quite perfectly on my system. But I am not sure
- // which impact this might have on other games, or on other parts in MI.
- // However, even with the 4/1 values this seems much better than the old code
- // for handling GID_MONKEY_VGA...
- const int ITERATIONS = 11;
- const int INCREMENT = 3;
-
- if (tempMusic == ITERATIONS-1) {
- tempMusic = 0;
- _vars[VAR_MUSIC_TIMER] += INCREMENT;
- } else {
- tempMusic++;
+ } else if (_features & GF_SMALL_HEADER) {
+ // TODO: The music delay (given in milliseconds) might have to be tuned a little
+ // to get it correct for all games. Without the ability to watch/listen to the
+ // original games, I can't do that myself.
+ const int MUSIC_DELAY = 300;
+ tempMusic += delta * 15; // Convert delta to milliseconds
+ if (tempMusic >= MUSIC_DELAY) {
+ tempMusic %= MUSIC_DELAY;
+ _vars[VAR_MUSIC_TIMER] += 1;
}
}