22 #ifndef SCUMM_SOUNDCD_H 23 #define SCUMM_SOUNDCD_H 25 #include "backends/audiocd/audiocd.h" 26 #include "common/scummsys.h" 27 #include "common/serializer.h" 35 #define DEFAULT_LOOM_OVERTURE_TRANSITION 1160 47 bool _hasFileBasedCDAudio =
false;
52 bool _useReplacementAudioTracks =
false;
53 int _loomOvertureTransition = 0;
54 uint32 _replacementTrackStartTime = 0;
57 int16 _currentCDSound = 0;
58 uint32 _cdMusicTimerMod = 0;
59 uint32 _cdMusicTimer = 0;
60 bool _soundsPaused =
false;
65 bool triggerCDSound(
int soundID);
66 void stopCDSound(
int sound);
67 void stopAllCDSounds();
68 void pauseCDSounds(
bool pause);
70 bool useReplacementAudio()
const {
return _useReplacementAudioTracks; }
71 void updateMusicTimer();
72 int getMusicTimer()
const {
return _musicTimer; }
73 int getCDMusicTimer()
const {
return _cdMusicTimer; }
78 int playCDTrackFromSoundID(
int soundId);
79 void playCDTrack(
int track,
int numLoops,
int startFrame,
int duration);
84 int getCurrentCDSound()
const {
return _currentCDSound; }
86 int restoreAfterLoad();
89 bool isRolandLoom()
const;
92 int getReplacementAudioTrack(
int soundID);
93 void playCDTrackInternal(
int track,
int numLoops,
int startFrame,
int duration);
94 int getCDTrackIdFromSoundId(
int soundId,
int &loops,
int &start,
int &end);