2007-05-30 21:56:52 +00:00
|
|
|
/* ScummVM - Graphic Adventure Engine
|
|
|
|
*
|
|
|
|
* ScummVM is the legal property of its developers, whose names
|
|
|
|
* are too numerous to list here. Please refer to the COPYRIGHT
|
|
|
|
* file distributed with this source distribution.
|
2002-12-08 20:19:01 +00:00
|
|
|
*
|
2021-12-26 17:47:58 +00:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
2002-12-08 20:19:01 +00:00
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2021-12-26 17:47:58 +00:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2014-02-18 01:34:18 +00:00
|
|
|
*
|
2002-12-08 20:19:01 +00:00
|
|
|
*/
|
|
|
|
|
2010-10-30 21:27:42 +00:00
|
|
|
// Disable symbol overrides so that we can use system headers.
|
|
|
|
#define FORBIDDEN_SYMBOL_ALLOW_ALL
|
|
|
|
|
2010-11-29 16:18:43 +00:00
|
|
|
#include "common/scummsys.h"
|
|
|
|
|
|
|
|
#ifdef MACOSX
|
|
|
|
|
2022-11-05 09:31:15 +00:00
|
|
|
#include "backends/platform/sdl/macosx/macosx-compat.h"
|
2011-12-12 15:43:17 +00:00
|
|
|
|
2011-12-28 22:13:39 +00:00
|
|
|
// With the release of Mac OS X 10.5 in October 2007, Apple deprecated the
|
2011-12-12 15:43:17 +00:00
|
|
|
// AUGraphNewNode & AUGraphGetNodeInfo APIs in favor of the new AUGraphAddNode &
|
|
|
|
// AUGraphNodeInfo APIs. While it is easy to switch to those, it breaks
|
2022-11-05 09:31:15 +00:00
|
|
|
// compatibility with 10.4, for which we need to use the older APIs.
|
|
|
|
#if MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_5
|
|
|
|
#define USE_DEPRECATED_COREAUDIO_API 1
|
2011-12-28 22:13:39 +00:00
|
|
|
// Try to silence warnings about use of deprecated APIs
|
|
|
|
#undef DEPRECATED_ATTRIBUTE
|
|
|
|
#define DEPRECATED_ATTRIBUTE
|
2022-11-05 09:31:15 +00:00
|
|
|
#else
|
|
|
|
#define USE_DEPRECATED_COREAUDIO_API 0
|
2011-12-12 15:43:17 +00:00
|
|
|
#endif
|
2008-05-18 17:20:59 +00:00
|
|
|
|
2003-12-25 17:23:49 +00:00
|
|
|
#include "common/config-manager.h"
|
2011-04-28 13:55:41 +00:00
|
|
|
#include "common/error.h"
|
|
|
|
#include "common/textconsole.h"
|
2005-01-10 22:35:43 +00:00
|
|
|
#include "common/util.h"
|
2011-02-09 01:09:01 +00:00
|
|
|
#include "audio/musicplugin.h"
|
|
|
|
#include "audio/mpu401.h"
|
2002-12-08 20:19:01 +00:00
|
|
|
|
2009-09-27 22:42:51 +00:00
|
|
|
#include <CoreServices/CoreServices.h>
|
2005-12-26 20:54:24 +00:00
|
|
|
#include <AudioToolbox/AUGraph.h>
|
2005-12-26 11:18:25 +00:00
|
|
|
|
2002-12-08 20:19:01 +00:00
|
|
|
|
2005-04-18 18:02:07 +00:00
|
|
|
// Activating the following switch disables reverb support in the CoreAudio
|
|
|
|
// midi backend. Reverb will suck away a *lot* of CPU time, so on slower
|
|
|
|
// systems, you may want to turn it off completely.
|
|
|
|
// TODO: Maybe make this a config option?
|
|
|
|
//#define COREAUDIO_DISABLE_REVERB
|
2002-12-08 20:19:01 +00:00
|
|
|
|
2005-12-26 11:18:25 +00:00
|
|
|
|
2005-12-26 20:54:24 +00:00
|
|
|
// A macro to simplify error handling a bit.
|
|
|
|
#define RequireNoErr(error) \
|
|
|
|
do { \
|
2006-04-14 23:21:59 +00:00
|
|
|
err = error; \
|
|
|
|
if (err != noErr) \
|
|
|
|
goto bail; \
|
2005-12-26 20:54:24 +00:00
|
|
|
} while (false)
|
2002-12-08 20:19:01 +00:00
|
|
|
|
2005-07-02 12:52:30 +00:00
|
|
|
|
2002-12-08 20:19:01 +00:00
|
|
|
/* CoreAudio MIDI driver
|
2005-12-26 20:54:24 +00:00
|
|
|
* By Max Horn / Fingolfin
|
2002-12-08 20:19:01 +00:00
|
|
|
* Based on code by Benjamin W. Zale
|
|
|
|
*/
|
|
|
|
class MidiDriver_CORE : public MidiDriver_MPU401 {
|
|
|
|
public:
|
2005-07-02 12:52:30 +00:00
|
|
|
MidiDriver_CORE();
|
2011-03-21 14:42:17 +00:00
|
|
|
~MidiDriver_CORE();
|
2020-03-09 15:08:19 +00:00
|
|
|
int open() override;
|
|
|
|
bool isOpen() const override { return _auGraph != 0; }
|
|
|
|
void close() override;
|
2020-02-19 17:51:53 +00:00
|
|
|
void send(uint32 b) override;
|
2020-03-09 15:08:19 +00:00
|
|
|
void sysEx(const byte *msg, uint16 length) override;
|
2002-12-08 20:19:01 +00:00
|
|
|
|
|
|
|
private:
|
2013-02-01 19:13:24 +00:00
|
|
|
void loadSoundFont(const char *soundfont);
|
2005-12-26 20:54:24 +00:00
|
|
|
AUGraph _auGraph;
|
|
|
|
AudioUnit _synth;
|
2002-12-08 20:19:01 +00:00
|
|
|
};
|
|
|
|
|
2005-07-02 12:52:30 +00:00
|
|
|
MidiDriver_CORE::MidiDriver_CORE()
|
2005-12-26 20:54:24 +00:00
|
|
|
: _auGraph(0) {
|
2005-07-02 12:52:30 +00:00
|
|
|
}
|
2002-12-08 20:19:01 +00:00
|
|
|
|
2011-03-21 14:42:17 +00:00
|
|
|
MidiDriver_CORE::~MidiDriver_CORE() {
|
|
|
|
if (_auGraph) {
|
|
|
|
AUGraphStop(_auGraph);
|
|
|
|
DisposeAUGraph(_auGraph);
|
|
|
|
_auGraph = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-03-06 18:30:44 +00:00
|
|
|
int MidiDriver_CORE::open() {
|
2006-04-14 23:21:59 +00:00
|
|
|
OSStatus err = 0;
|
|
|
|
|
2011-03-21 14:42:17 +00:00
|
|
|
if (isOpen())
|
2002-12-08 20:19:01 +00:00
|
|
|
return MERR_ALREADY_OPEN;
|
|
|
|
|
2005-12-26 11:18:25 +00:00
|
|
|
// Open the Music Device.
|
2006-04-14 23:21:59 +00:00
|
|
|
RequireNoErr(NewAUGraph(&_auGraph));
|
|
|
|
|
|
|
|
AUNode outputNode, synthNode;
|
2022-11-05 09:31:15 +00:00
|
|
|
#if MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_6
|
2006-04-14 23:21:59 +00:00
|
|
|
ComponentDescription desc;
|
2011-12-12 15:43:17 +00:00
|
|
|
#else
|
|
|
|
AudioComponentDescription desc;
|
|
|
|
#endif
|
2006-04-14 23:21:59 +00:00
|
|
|
|
|
|
|
// The default output device
|
2008-03-12 18:38:03 +00:00
|
|
|
desc.componentType = kAudioUnitType_Output;
|
|
|
|
desc.componentSubType = kAudioUnitSubType_DefaultOutput;
|
|
|
|
desc.componentManufacturer = kAudioUnitManufacturer_Apple;
|
2006-04-14 23:21:59 +00:00
|
|
|
desc.componentFlags = 0;
|
|
|
|
desc.componentFlagsMask = 0;
|
2011-12-28 22:13:39 +00:00
|
|
|
#if USE_DEPRECATED_COREAUDIO_API
|
2006-04-14 23:21:59 +00:00
|
|
|
RequireNoErr(AUGraphNewNode(_auGraph, &desc, 0, NULL, &outputNode));
|
2011-12-12 15:43:17 +00:00
|
|
|
#else
|
|
|
|
RequireNoErr(AUGraphAddNode(_auGraph, &desc, &outputNode));
|
|
|
|
#endif
|
2006-04-14 23:21:59 +00:00
|
|
|
|
|
|
|
// The built-in default (softsynth) music device
|
2008-03-12 18:38:03 +00:00
|
|
|
desc.componentType = kAudioUnitType_MusicDevice;
|
|
|
|
desc.componentSubType = kAudioUnitSubType_DLSSynth;
|
|
|
|
desc.componentManufacturer = kAudioUnitManufacturer_Apple;
|
2011-12-28 22:13:39 +00:00
|
|
|
#if USE_DEPRECATED_COREAUDIO_API
|
2006-04-14 23:21:59 +00:00
|
|
|
RequireNoErr(AUGraphNewNode(_auGraph, &desc, 0, NULL, &synthNode));
|
2011-12-12 15:43:17 +00:00
|
|
|
#else
|
|
|
|
RequireNoErr(AUGraphAddNode(_auGraph, &desc, &synthNode));
|
|
|
|
#endif
|
2006-04-14 23:21:59 +00:00
|
|
|
|
|
|
|
// Connect the softsynth to the default output
|
|
|
|
RequireNoErr(AUGraphConnectNodeInput(_auGraph, synthNode, 0, outputNode, 0));
|
|
|
|
|
|
|
|
// Open and initialize the whole graph
|
|
|
|
RequireNoErr(AUGraphOpen(_auGraph));
|
|
|
|
RequireNoErr(AUGraphInitialize(_auGraph));
|
|
|
|
|
|
|
|
// Get the music device from the graph.
|
2011-12-28 22:13:39 +00:00
|
|
|
#if USE_DEPRECATED_COREAUDIO_API
|
2006-04-14 23:21:59 +00:00
|
|
|
RequireNoErr(AUGraphGetNodeInfo(_auGraph, synthNode, NULL, NULL, NULL, &_synth));
|
2011-12-12 15:43:17 +00:00
|
|
|
#else
|
|
|
|
RequireNoErr(AUGraphNodeInfo(_auGraph, synthNode, NULL, &_synth));
|
|
|
|
#endif
|
2006-04-14 23:21:59 +00:00
|
|
|
|
|
|
|
// Load custom soundfont, if specified
|
2013-02-01 19:13:24 +00:00
|
|
|
if (ConfMan.hasKey("soundfont"))
|
|
|
|
loadSoundFont(ConfMan.get("soundfont").c_str());
|
2006-04-14 23:21:59 +00:00
|
|
|
|
2005-12-26 11:18:25 +00:00
|
|
|
#ifdef COREAUDIO_DISABLE_REVERB
|
2006-04-14 23:21:59 +00:00
|
|
|
// Disable reverb mode, as that sucks up a lot of CPU power, which can
|
|
|
|
// be painful on low end machines.
|
|
|
|
// TODO: Make this customizable via a config key?
|
|
|
|
UInt32 usesReverb = 0;
|
|
|
|
AudioUnitSetProperty (_synth, kMusicDeviceProperty_UsesInternalReverb,
|
|
|
|
kAudioUnitScope_Global, 0, &usesReverb, sizeof (usesReverb));
|
2005-12-26 11:18:25 +00:00
|
|
|
#endif
|
2005-07-30 21:11:48 +00:00
|
|
|
|
|
|
|
|
2006-04-14 23:21:59 +00:00
|
|
|
// Finally: Start the graph!
|
|
|
|
RequireNoErr(AUGraphStart(_auGraph));
|
2002-12-08 20:19:01 +00:00
|
|
|
|
|
|
|
return 0;
|
2006-04-14 23:21:59 +00:00
|
|
|
|
|
|
|
bail:
|
|
|
|
if (_auGraph) {
|
|
|
|
AUGraphStop(_auGraph);
|
|
|
|
DisposeAUGraph(_auGraph);
|
|
|
|
_auGraph = 0;
|
|
|
|
}
|
|
|
|
return MERR_CANNOT_CONNECT;
|
2002-12-08 20:19:01 +00:00
|
|
|
}
|
|
|
|
|
2013-02-01 19:13:24 +00:00
|
|
|
void MidiDriver_CORE::loadSoundFont(const char *soundfont) {
|
|
|
|
// TODO: We should really check whether the file contains an
|
|
|
|
// actual soundfont...
|
|
|
|
|
|
|
|
OSStatus err = 0;
|
|
|
|
|
|
|
|
#if USE_DEPRECATED_COREAUDIO_API
|
|
|
|
FSRef fsref;
|
|
|
|
err = FSPathMakeRef((const byte *)soundfont, &fsref, NULL);
|
|
|
|
|
|
|
|
if (err == noErr) {
|
2022-05-17 21:56:49 +00:00
|
|
|
err = AudioUnitSetProperty(
|
|
|
|
_synth,
|
|
|
|
kMusicDeviceProperty_SoundBankFSRef, kAudioUnitScope_Global,
|
|
|
|
0,
|
|
|
|
&fsref, sizeof(fsref)
|
|
|
|
);
|
2013-02-01 19:13:24 +00:00
|
|
|
}
|
|
|
|
#else
|
|
|
|
// kMusicDeviceProperty_SoundBankURL was added in 10.5 as a replacement
|
|
|
|
// In addition, the File Manager API became deprecated starting in 10.8
|
|
|
|
CFURLRef url = CFURLCreateFromFileSystemRepresentation(kCFAllocatorDefault, (const UInt8 *)soundfont, strlen(soundfont), false);
|
|
|
|
|
|
|
|
if (url) {
|
|
|
|
err = AudioUnitSetProperty(
|
|
|
|
_synth,
|
|
|
|
kMusicDeviceProperty_SoundBankURL, kAudioUnitScope_Global,
|
|
|
|
0,
|
|
|
|
&url, sizeof(url)
|
|
|
|
);
|
|
|
|
|
|
|
|
CFRelease(url);
|
|
|
|
} else {
|
|
|
|
warning("Failed to allocate CFURLRef from '%s'", soundfont);
|
|
|
|
}
|
|
|
|
#endif // USE_DEPRECATED_COREAUDIO_API
|
|
|
|
|
|
|
|
if (err != noErr)
|
2020-08-31 15:35:56 +00:00
|
|
|
error("Failed loading custom SoundFont '%s' (error %ld)", soundfont, (long)err);
|
2013-02-01 19:13:24 +00:00
|
|
|
}
|
|
|
|
|
2003-03-06 18:30:44 +00:00
|
|
|
void MidiDriver_CORE::close() {
|
2003-06-11 05:54:46 +00:00
|
|
|
MidiDriver_MPU401::close();
|
2005-12-26 20:54:24 +00:00
|
|
|
if (_auGraph) {
|
|
|
|
AUGraphStop(_auGraph);
|
|
|
|
DisposeAUGraph(_auGraph);
|
|
|
|
_auGraph = 0;
|
|
|
|
}
|
2002-12-08 20:19:01 +00:00
|
|
|
}
|
|
|
|
|
2003-03-06 18:30:44 +00:00
|
|
|
void MidiDriver_CORE::send(uint32 b) {
|
2011-03-21 14:42:17 +00:00
|
|
|
assert(isOpen());
|
2005-12-26 11:18:25 +00:00
|
|
|
|
2020-02-19 17:51:53 +00:00
|
|
|
midiDriverCommonSend(b);
|
|
|
|
|
2005-07-02 12:52:30 +00:00
|
|
|
byte status_byte = (b & 0x000000FF);
|
|
|
|
byte first_byte = (b & 0x0000FF00) >> 8;
|
|
|
|
byte second_byte = (b & 0x00FF0000) >> 16;
|
|
|
|
|
2005-12-26 20:54:24 +00:00
|
|
|
MusicDeviceMIDIEvent(_synth, status_byte, first_byte, second_byte, 0);
|
2002-12-08 20:19:01 +00:00
|
|
|
}
|
|
|
|
|
2006-02-27 01:59:07 +00:00
|
|
|
void MidiDriver_CORE::sysEx(const byte *msg, uint16 length) {
|
2008-11-30 04:42:30 +00:00
|
|
|
unsigned char buf[266];
|
2005-12-26 11:18:25 +00:00
|
|
|
|
2008-11-30 04:42:30 +00:00
|
|
|
assert(length + 2 <= ARRAYSIZE(buf));
|
2011-03-21 14:42:17 +00:00
|
|
|
assert(isOpen());
|
2005-07-30 21:11:48 +00:00
|
|
|
|
2007-02-16 13:30:41 +00:00
|
|
|
// Add SysEx frame
|
|
|
|
buf[0] = 0xF0;
|
|
|
|
memcpy(buf + 1, msg, length);
|
|
|
|
buf[length + 1] = 0xF7;
|
2005-07-02 12:52:30 +00:00
|
|
|
|
2007-02-16 13:30:41 +00:00
|
|
|
// Send it
|
|
|
|
MusicDeviceSysEx(_synth, buf, length+2);
|
2003-03-03 22:39:04 +00:00
|
|
|
}
|
|
|
|
|
2008-05-11 02:10:05 +00:00
|
|
|
|
|
|
|
// Plugin interface
|
|
|
|
|
2008-06-13 14:30:47 +00:00
|
|
|
class CoreAudioMusicPlugin : public MusicPluginObject {
|
2008-05-11 02:10:05 +00:00
|
|
|
public:
|
2008-06-13 16:04:43 +00:00
|
|
|
const char *getName() const {
|
2017-10-04 19:43:01 +00:00
|
|
|
return "Apple DLS Software Synthesizer";
|
2008-05-11 02:10:05 +00:00
|
|
|
}
|
|
|
|
|
2008-06-13 16:04:43 +00:00
|
|
|
const char *getId() const {
|
2008-05-14 14:56:29 +00:00
|
|
|
return "core";
|
|
|
|
}
|
|
|
|
|
2008-06-13 16:04:43 +00:00
|
|
|
MusicDevices getDevices() const;
|
2010-06-21 21:36:36 +00:00
|
|
|
Common::Error createInstance(MidiDriver **mididriver, MidiDriver::DeviceHandle = 0) const;
|
2008-05-11 02:10:05 +00:00
|
|
|
};
|
|
|
|
|
2008-06-13 16:04:43 +00:00
|
|
|
MusicDevices CoreAudioMusicPlugin::getDevices() const {
|
|
|
|
MusicDevices devices;
|
|
|
|
devices.push_back(MusicDevice(this, "", MT_GM));
|
|
|
|
return devices;
|
|
|
|
}
|
|
|
|
|
2010-06-21 21:36:36 +00:00
|
|
|
Common::Error CoreAudioMusicPlugin::createInstance(MidiDriver **mididriver, MidiDriver::DeviceHandle) const {
|
2008-05-11 02:10:05 +00:00
|
|
|
*mididriver = new MidiDriver_CORE();
|
|
|
|
|
2008-11-05 17:24:56 +00:00
|
|
|
return Common::kNoError;
|
2008-05-11 02:10:05 +00:00
|
|
|
}
|
|
|
|
|
2008-05-14 14:56:29 +00:00
|
|
|
//#if PLUGIN_ENABLED_DYNAMIC(COREAUDIO)
|
2008-06-13 14:30:47 +00:00
|
|
|
//REGISTER_PLUGIN_DYNAMIC(COREAUDIO, PLUGIN_TYPE_MUSIC, CoreAudioMusicPlugin);
|
2008-05-14 14:56:29 +00:00
|
|
|
//#else
|
2008-06-13 14:30:47 +00:00
|
|
|
REGISTER_PLUGIN_STATIC(COREAUDIO, PLUGIN_TYPE_MUSIC, CoreAudioMusicPlugin);
|
2008-05-14 14:56:29 +00:00
|
|
|
//#endif
|
|
|
|
|
2002-12-08 20:19:01 +00:00
|
|
|
#endif // MACOSX
|