~ubuntu-branches/ubuntu/raring/scummvm/raring

« back to all changes in this revision

Viewing changes to audio/softsynth/fluidsynth.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Moritz Muehlenhoff
  • Date: 2011-05-25 19:02:23 UTC
  • mto: (21.1.2 sid)
  • mto: This revision was merged to the branch mainline in revision 24.
  • Revision ID: james.westby@ubuntu.com-20110525190223-fiqm0oaec714xk31
Tags: upstream-1.3.0
ImportĀ upstreamĀ versionĀ 1.3.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
 
8
 * modify it under the terms of the GNU General Public License
 
9
 * as published by the Free Software Foundation; either version 2
 
10
 * of the License, or (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, write to the Free Software
 
19
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 
20
 *
 
21
 * $URL$
 
22
 * $Id$
 
23
 */
 
24
 
 
25
#include "common/scummsys.h"
 
26
 
 
27
#ifdef USE_FLUIDSYNTH
 
28
 
 
29
#include "common/config-manager.h"
 
30
#include "common/error.h"
 
31
#include "common/system.h"
 
32
#include "common/textconsole.h"
 
33
#include "audio/musicplugin.h"
 
34
#include "audio/mpu401.h"
 
35
#include "audio/softsynth/emumidi.h"
 
36
 
 
37
#include <fluidsynth.h>
 
38
 
 
39
class MidiDriver_FluidSynth : public MidiDriver_Emulated {
 
40
private:
 
41
        MidiChannel_MPU401 _midiChannels[16];
 
42
        fluid_settings_t *_settings;
 
43
        fluid_synth_t *_synth;
 
44
        int _soundFont;
 
45
        int _outputRate;
 
46
 
 
47
protected:
 
48
        // Because GCC complains about casting from const to non-const...
 
49
        void setInt(const char *name, int val);
 
50
        void setNum(const char *name, double num);
 
51
        void setStr(const char *name, const char *str);
 
52
 
 
53
        void generateSamples(int16 *buf, int len);
 
54
 
 
55
public:
 
56
        MidiDriver_FluidSynth(Audio::Mixer *mixer);
 
57
 
 
58
        int open();
 
59
        void close();
 
60
        void send(uint32 b);
 
61
 
 
62
        MidiChannel *allocateChannel();
 
63
        MidiChannel *getPercussionChannel();
 
64
 
 
65
        // AudioStream API
 
66
        bool isStereo() const { return true; }
 
67
        int getRate() const { return _outputRate; }
 
68
};
 
69
 
 
70
// MidiDriver method implementations
 
71
 
 
72
MidiDriver_FluidSynth::MidiDriver_FluidSynth(Audio::Mixer *mixer)
 
73
        : MidiDriver_Emulated(mixer) {
 
74
 
 
75
        for (int i = 0; i < ARRAYSIZE(_midiChannels); i++) {
 
76
                _midiChannels[i].init(this, i);
 
77
        }
 
78
 
 
79
        // It ought to be possible to get FluidSynth to generate samples at
 
80
        // lower
 
81
 
 
82
        _outputRate = _mixer->getOutputRate();
 
83
        if (_outputRate < 22050)
 
84
                _outputRate = 22050;
 
85
        else if (_outputRate > 96000)
 
86
                _outputRate = 96000;
 
87
}
 
88
 
 
89
void MidiDriver_FluidSynth::setInt(const char *name, int val) {
 
90
        char *name2 = strdup(name);
 
91
 
 
92
        fluid_settings_setint(_settings, name2, val);
 
93
        free(name2);
 
94
}
 
95
 
 
96
void MidiDriver_FluidSynth::setNum(const char *name, double val) {
 
97
        char *name2 = strdup(name);
 
98
 
 
99
        fluid_settings_setnum(_settings, name2, val);
 
100
        free(name2);
 
101
}
 
102
 
 
103
void MidiDriver_FluidSynth::setStr(const char *name, const char *val) {
 
104
        char *name2 = strdup(name);
 
105
        char *val2 = strdup(val);
 
106
 
 
107
        fluid_settings_setstr(_settings, name2, val2);
 
108
        free(name2);
 
109
        free(val2);
 
110
}
 
111
 
 
112
int MidiDriver_FluidSynth::open() {
 
113
        if (_isOpen)
 
114
                return MERR_ALREADY_OPEN;
 
115
 
 
116
        if (!ConfMan.hasKey("soundfont"))
 
117
                error("FluidSynth requires a 'soundfont' setting");
 
118
 
 
119
        _settings = new_fluid_settings();
 
120
 
 
121
        // The default gain setting is ridiculously low - at least for me. This
 
122
        // cannot be fixed by ScummVM's volume settings because they can only
 
123
        // soften the sound, not amplify it, so instead we add an option to
 
124
        // adjust the gain of FluidSynth itself.
 
125
 
 
126
        double gain = (double)ConfMan.getInt("midi_gain") / 100.0;
 
127
 
 
128
        setNum("synth.gain", gain);
 
129
        setNum("synth.sample-rate", _outputRate);
 
130
 
 
131
        _synth = new_fluid_synth(_settings);
 
132
 
 
133
        // In theory, this ought to reduce CPU load... but it doesn't make any
 
134
        // noticeable difference for me, so disable it for now.
 
135
 
 
136
        // fluid_synth_set_interp_method(_synth, -1, FLUID_INTERP_LINEAR);
 
137
        // fluid_synth_set_reverb_on(_synth, 0);
 
138
        // fluid_synth_set_chorus_on(_synth, 0);
 
139
 
 
140
        const char *soundfont = ConfMan.get("soundfont").c_str();
 
141
 
 
142
        _soundFont = fluid_synth_sfload(_synth, soundfont, 1);
 
143
        if (_soundFont == -1)
 
144
                error("Failed loading custom sound font '%s'", soundfont);
 
145
 
 
146
        MidiDriver_Emulated::open();
 
147
 
 
148
        // The MT-32 emulator uses kSFXSoundType here. I don't know why.
 
149
        _mixer->playStream(Audio::Mixer::kMusicSoundType, &_mixerSoundHandle, this, -1, Audio::Mixer::kMaxChannelVolume, 0, DisposeAfterUse::NO, true);
 
150
        return 0;
 
151
}
 
152
 
 
153
void MidiDriver_FluidSynth::close() {
 
154
        if (!_isOpen)
 
155
                return;
 
156
        _isOpen = false;
 
157
 
 
158
        _mixer->stopHandle(_mixerSoundHandle);
 
159
 
 
160
        if (_soundFont != -1)
 
161
                fluid_synth_sfunload(_synth, _soundFont, 1);
 
162
 
 
163
        delete_fluid_synth(_synth);
 
164
        delete_fluid_settings(_settings);
 
165
}
 
166
 
 
167
void MidiDriver_FluidSynth::send(uint32 b) {
 
168
        //byte param3 = (byte) ((b >> 24) & 0xFF);
 
169
        uint param2 = (byte) ((b >> 16) & 0xFF);
 
170
        uint param1 = (byte) ((b >>  8) & 0xFF);
 
171
        byte cmd    = (byte) (b & 0xF0);
 
172
        byte chan   = (byte) (b & 0x0F);
 
173
 
 
174
        switch (cmd) {
 
175
        case 0x80:      // Note Off
 
176
                fluid_synth_noteoff(_synth, chan, param1);
 
177
                break;
 
178
        case 0x90:      // Note On
 
179
                fluid_synth_noteon(_synth, chan, param1, param2);
 
180
                break;
 
181
        case 0xA0:      // Aftertouch
 
182
                break;
 
183
        case 0xB0:      // Control Change
 
184
                fluid_synth_cc(_synth, chan, param1, param2);
 
185
                break;
 
186
        case 0xC0:      // Program Change
 
187
                fluid_synth_program_change(_synth, chan, param1);
 
188
                break;
 
189
        case 0xD0:      // Channel Pressure
 
190
                break;
 
191
        case 0xE0:      // Pitch Bend
 
192
                fluid_synth_pitch_bend(_synth, chan, (param2 << 7) | param1);
 
193
                break;
 
194
        case 0xF0:      // SysEx
 
195
                // We should never get here! SysEx information has to be
 
196
                // sent via high-level semantic methods.
 
197
                warning("MidiDriver_FluidSynth: Receiving SysEx command on a send() call");
 
198
                break;
 
199
        default:
 
200
                warning("MidiDriver_FluidSynth: Unknown send() command 0x%02X", cmd);
 
201
                break;
 
202
        }
 
203
}
 
204
 
 
205
MidiChannel *MidiDriver_FluidSynth::allocateChannel() {
 
206
        for (int i = 0; i < ARRAYSIZE(_midiChannels); i++) {
 
207
                if (i != 9 && _midiChannels[i].allocate())
 
208
                        return &_midiChannels[i];
 
209
        }
 
210
        return NULL;
 
211
}
 
212
 
 
213
MidiChannel *MidiDriver_FluidSynth::getPercussionChannel() {
 
214
        return &_midiChannels[9];
 
215
}
 
216
 
 
217
void MidiDriver_FluidSynth::generateSamples(int16 *data, int len) {
 
218
        fluid_synth_write_s16(_synth, len, data, 0, 2, data, 1, 2);
 
219
}
 
220
 
 
221
 
 
222
// Plugin interface
 
223
 
 
224
class FluidSynthMusicPlugin : public MusicPluginObject {
 
225
public:
 
226
        const char *getName() const {
 
227
                return "FluidSynth";
 
228
        }
 
229
 
 
230
        const char *getId() const {
 
231
                return "fluidsynth";
 
232
        }
 
233
 
 
234
        MusicDevices getDevices() const;
 
235
        Common::Error createInstance(MidiDriver **mididriver, MidiDriver::DeviceHandle = 0) const;
 
236
};
 
237
 
 
238
MusicDevices FluidSynthMusicPlugin::getDevices() const {
 
239
        MusicDevices devices;
 
240
        devices.push_back(MusicDevice(this, "", MT_GM));
 
241
        return devices;
 
242
}
 
243
 
 
244
Common::Error FluidSynthMusicPlugin::createInstance(MidiDriver **mididriver, MidiDriver::DeviceHandle) const {
 
245
        *mididriver = new MidiDriver_FluidSynth(g_system->getMixer());
 
246
 
 
247
        return Common::kNoError;
 
248
}
 
249
 
 
250
//#if PLUGIN_ENABLED_DYNAMIC(FLUIDSYNTH)
 
251
        //REGISTER_PLUGIN_DYNAMIC(FLUIDSYNTH, PLUGIN_TYPE_MUSIC, FluidSynthMusicPlugin);
 
252
//#else
 
253
        REGISTER_PLUGIN_STATIC(FLUIDSYNTH, PLUGIN_TYPE_MUSIC, FluidSynthMusicPlugin);
 
254
//#endif
 
255
 
 
256
#endif