aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/sound
diff options
context:
space:
mode:
authorMartin Kiewitz2010-06-28 22:06:19 +0000
committerMartin Kiewitz2010-06-28 22:06:19 +0000
commit805374ff4eadb42e78dfbda64ad6d308b372fbbc (patch)
treec9fb97e87746ca0f8299effa161ebd0e904c3882 /engines/sci/sound
parent58732b9df1f0451f03c2ca01e0cab48314a360d3 (diff)
downloadscummvm-rg350-805374ff4eadb42e78dfbda64ad6d308b372fbbc.tar.gz
scummvm-rg350-805374ff4eadb42e78dfbda64ad6d308b372fbbc.tar.bz2
scummvm-rg350-805374ff4eadb42e78dfbda64ad6d308b372fbbc.zip
SCI: ignoring set signal on tick 0 directly in parseNextEvent instead of filtering, also now ignoring channel volume changes on tick 0 (fixes lsl5 fading of sound 274, almost at the end), fixing also fading in gk1 and enabling fading in sci32 again
svn-id: r50463
Diffstat (limited to 'engines/sci/sound')
-rw-r--r--engines/sci/sound/midiparser_sci.cpp29
-rw-r--r--engines/sci/sound/music.cpp8
2 files changed, 16 insertions, 21 deletions
diff --git a/engines/sci/sound/midiparser_sci.cpp b/engines/sci/sound/midiparser_sci.cpp
index 3c2c0cb3ce..241405cb1e 100644
--- a/engines/sci/sound/midiparser_sci.cpp
+++ b/engines/sci/sound/midiparser_sci.cpp
@@ -160,15 +160,6 @@ byte *MidiParser_SCI::midiMixChannels() {
ticker += newDelta;
midiCommand = channel->data[channel->curPos++];
- if ((midiCommand == 0xCF) && (!ticker)) {
- // set signal command at tick 0?
- channel->curPos++;
- continue; // filter it
- // at least in kq5/french&mac the first scene in the intro has a song that sets signal to 4 immediately
- // on tick 0. Signal isn't set at that point by sierra sci and it would cause the castle daventry text to
- // get immediately removed, so we currently filter it.
- // TODO: find out what exactly happens in sierra sci
- }
if (midiCommand != kEndOfTrack) {
// Write delta
while (newDelta > 240) {
@@ -480,8 +471,14 @@ void MidiParser_SCI::parseNextEvent(EventInfo &info) {
info.basic.param2 = 0;
if (info.channel() == 0xF) {// SCI special case
if (info.basic.param1 != kSetSignalLoop) {
- _signalSet = true;
- _signalToSet = info.basic.param1;
+ // at least in kq5/french&mac the first scene in the intro has a song that sets signal to 4 immediately
+ // on tick 0. Signal isn't set at that point by sierra sci and it would cause the castle daventry text to
+ // get immediately removed, so we currently filter it.
+ // Sierra SCI ignores them as well at that time
+ if (_position._play_tick) {
+ _signalSet = true;
+ _signalToSet = info.basic.param1;
+ }
} else {
_loopTick = _position._play_tick + info.delta;
}
@@ -556,8 +553,14 @@ void MidiParser_SCI::parseNextEvent(EventInfo &info) {
}
}
switch (info.basic.param1) {
- case 7: // channel volume change -scale it
- info.basic.param2 = info.basic.param2 * _volume / MUSIC_VOLUME_MAX;
+ case 7: // channel volume change
+ if (!_position._play_tick) {
+ // if this is tried on tick 0, ignore the command
+ // this is needed for lsl5 sound resource 274, it sets channel volume to very low at the start
+ // sierra sci ignores those
+ parseNextEvent(_next_event);
+ return;
+ }
break;
}
info.length = 0;
diff --git a/engines/sci/sound/music.cpp b/engines/sci/sound/music.cpp
index f10ff6d09a..ba103ee746 100644
--- a/engines/sci/sound/music.cpp
+++ b/engines/sci/sound/music.cpp
@@ -629,14 +629,6 @@ void MusicEntry::doFade() {
fadeStep = 0;
fadeCompleted = true;
}
-#ifdef ENABLE_SCI32
- // Disable fading for SCI32 - sound drivers have issues when fading in (gabriel knight 1 sierra title)
- if (getSciVersion() >= SCI_VERSION_2) {
- volume = fadeTo;
- fadeStep = 0;
- fadeCompleted = true;
- }
-#endif
// Only process MIDI streams in this thread, not digital sound effects
if (pMidiParser) {