ScummVM API documentation
audio_mixer.h
1 /* ScummVM - Graphic Adventure Engine
2  *
3  * ScummVM is the legal property of its developers, whose names
4  * are too numerous to list here. Please refer to the COPYRIGHT
5  * file distributed with this source distribution.
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see <http://www.gnu.org/licenses/>.
19  *
20  */
21 
22 #ifndef ULTIMA8_AUDIO_AUDIOMIXER_H
23 #define ULTIMA8_AUDIO_AUDIOMIXER_H
24 
25 #include "audio/mixer.h"
26 #include "audio/mididrv.h"
27 #include "common/array.h"
28 
29 namespace Ultima {
30 namespace Ultima8 {
31 
32 class MidiPlayer;
33 class AudioChannel;
34 class AudioSample;
35 
36 class AudioMixer {
37 private:
38  static AudioMixer *_audioMixer;
39  Audio::Mixer *_mixer;
40  MidiPlayer *_midiPlayer;
42 
43 public:
44  AudioMixer(Audio::Mixer *mixer);
45  ~AudioMixer();
46 
47  MidiPlayer *getMidiPlayer() const {
48  return _midiPlayer;
49  }
50 
51  static AudioMixer *get_instance() {
52  return _audioMixer;
53  }
54 
55  void reset();
56  void createProcesses();
57 
58  int playSample(AudioSample *sample, int loop, int priority, bool isSpeech, uint32 pitch_shift, byte volume, int8 balance, bool ambient);
59  bool isPlaying(int chan);
60  void stopSample(int chan);
61 
62  void setPaused(int chan, bool paused);
63  void setVolume(int chan, byte volume, int8 balance);
64 
65  void openMidiOutput();
66  void closeMidiOutput();
67 };
68 
69 } // End of namespace Ultima8
70 } // End of namespace Ultima
71 
72 #endif
Definition: audio_mixer.h:36
Definition: array.h:52
Definition: detection.h:27
Definition: mixer.h:59
Definition: midi_player.h:32
Definition: audio_sample.h:32