2017-09-25 04:31:20 -04:00
|
|
|
#include <stdio.h>
|
2017-06-19 06:46:08 +02:00
|
|
|
#include <stdint.h>
|
|
|
|
|
#include <string.h>
|
2017-09-25 04:31:20 -04:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <wchar.h>
|
2017-06-19 06:46:08 +02:00
|
|
|
#include "munt/c_interface/c_interface.h"
|
2017-10-17 01:59:09 -04:00
|
|
|
#include "../86box.h"
|
2017-06-19 06:46:08 +02:00
|
|
|
#include "../device.h"
|
|
|
|
|
#include "../mem.h"
|
|
|
|
|
#include "../rom.h"
|
2017-10-11 05:40:44 -04:00
|
|
|
#include "../plat.h"
|
2017-06-19 06:46:08 +02:00
|
|
|
#include "sound.h"
|
2017-09-25 04:31:20 -04:00
|
|
|
#include "midi.h"
|
|
|
|
|
#include "midi_mt32.h"
|
|
|
|
|
|
2017-06-19 06:46:08 +02:00
|
|
|
|
|
|
|
|
extern void givealbuffer_midi(void *buf, uint32_t size);
|
|
|
|
|
extern void al_set_midi(int freq, int buf_size);
|
|
|
|
|
|
|
|
|
|
static const mt32emu_report_handler_i_v0 handler_v0 = {
|
|
|
|
|
/** Returns the actual interface version ID */
|
|
|
|
|
NULL, //mt32emu_report_handler_version (*getVersionID)(mt32emu_report_handler_i i);
|
|
|
|
|
|
|
|
|
|
/** Callback for debug messages, in vprintf() format */
|
|
|
|
|
NULL, //void (*printDebug)(void *instance_data, const char *fmt, va_list list);
|
|
|
|
|
/** Callbacks for reporting errors */
|
|
|
|
|
NULL, //void (*onErrorControlROM)(void *instance_data);
|
|
|
|
|
NULL, //void (*onErrorPCMROM)(void *instance_data);
|
|
|
|
|
/** Callback for reporting about displaying a new custom message on LCD */
|
2017-07-15 20:07:38 +02:00
|
|
|
NULL, //void (*showLCDMessage)(void *instance_data, const char *message);
|
2017-06-19 06:46:08 +02:00
|
|
|
/** Callback for reporting actual processing of a MIDI message */
|
|
|
|
|
NULL, //void (*onMIDIMessagePlayed)(void *instance_data);
|
|
|
|
|
/**
|
|
|
|
|
* Callback for reporting an overflow of the input MIDI queue.
|
|
|
|
|
* Returns MT32EMU_BOOL_TRUE if a recovery action was taken
|
|
|
|
|
* and yet another attempt to enqueue the MIDI event is desired.
|
|
|
|
|
*/
|
|
|
|
|
NULL, //mt32emu_boolean (*onMIDIQueueOverflow)(void *instance_data);
|
|
|
|
|
/**
|
|
|
|
|
* Callback invoked when a System Realtime MIDI message is detected in functions
|
|
|
|
|
* mt32emu_parse_stream and mt32emu_play_short_message and the likes.
|
|
|
|
|
*/
|
|
|
|
|
NULL, //void (*onMIDISystemRealtime)(void *instance_data, mt32emu_bit8u system_realtime);
|
|
|
|
|
/** Callbacks for reporting system events */
|
|
|
|
|
NULL, //void (*onDeviceReset)(void *instance_data);
|
|
|
|
|
NULL, //void (*onDeviceReconfig)(void *instance_data);
|
|
|
|
|
/** Callbacks for reporting changes of reverb settings */
|
|
|
|
|
NULL, //void (*onNewReverbMode)(void *instance_data, mt32emu_bit8u mode);
|
|
|
|
|
NULL, //void (*onNewReverbTime)(void *instance_data, mt32emu_bit8u time);
|
|
|
|
|
NULL, //void (*onNewReverbLevel)(void *instance_data, mt32emu_bit8u level);
|
|
|
|
|
/** Callbacks for reporting various information */
|
|
|
|
|
NULL, //void (*onPolyStateChanged)(void *instance_data, mt32emu_bit8u part_num);
|
|
|
|
|
NULL, //void (*onProgramChanged)(void *instance_data, mt32emu_bit8u part_num, const char *sound_group_name, const char *patch_name);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static const mt32emu_report_handler_i handler = { &handler_v0 };
|
|
|
|
|
|
2017-07-15 20:07:38 +02:00
|
|
|
static mt32emu_context context = NULL;
|
|
|
|
|
static int roms_present[2] = {-1, -1};
|
2017-06-19 06:46:08 +02:00
|
|
|
|
|
|
|
|
mt32emu_return_code mt32_check(const char* func, mt32emu_return_code ret, mt32emu_return_code expected)
|
|
|
|
|
{
|
|
|
|
|
if (ret != expected)
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int mt32_available()
|
|
|
|
|
{
|
2017-07-15 18:37:06 +02:00
|
|
|
if (roms_present[0] < 0)
|
2017-07-16 15:28:09 +01:00
|
|
|
roms_present[0] = (rom_present(L"roms/sound/mt32/mt32_control.rom") && rom_present(L"roms/sound/mt32/mt32_pcm.rom"));
|
2017-07-15 18:37:06 +02:00
|
|
|
return roms_present[0];
|
2017-06-19 06:46:08 +02:00
|
|
|
}
|
|
|
|
|
|
2017-07-15 18:37:06 +02:00
|
|
|
int cm32l_available()
|
|
|
|
|
{
|
|
|
|
|
if (roms_present[1] < 0)
|
2017-07-16 15:28:09 +01:00
|
|
|
roms_present[1] = (rom_present(L"roms/sound/cm32l/cm32l_control.rom") && rom_present(L"roms/sound/cm32l/cm32l_pcm.rom"));
|
2017-07-15 18:37:06 +02:00
|
|
|
return roms_present[1];
|
|
|
|
|
}
|
2017-06-19 06:46:08 +02:00
|
|
|
|
2017-07-15 20:07:38 +02:00
|
|
|
static thread_t *thread_h = NULL;
|
|
|
|
|
static event_t *event = NULL;
|
|
|
|
|
|
2017-08-14 19:43:08 +02:00
|
|
|
#define RENDER_RATE 100
|
|
|
|
|
#define BUFFER_SEGMENTS 10
|
2017-07-15 20:07:38 +02:00
|
|
|
|
|
|
|
|
static uint32_t samplerate = 44100;
|
|
|
|
|
static int buf_size = 0;
|
|
|
|
|
static float* buffer = NULL;
|
|
|
|
|
static int16_t* buffer_int16 = NULL;
|
|
|
|
|
static int midi_pos = 0;
|
|
|
|
|
|
|
|
|
|
void mt32_stream(float* stream, int len)
|
2017-06-19 06:46:08 +02:00
|
|
|
{
|
|
|
|
|
if (context) mt32emu_render_float(context, stream, len);
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-15 20:07:38 +02:00
|
|
|
void mt32_stream_int16(int16_t* stream, int len)
|
2017-06-19 06:46:08 +02:00
|
|
|
{
|
|
|
|
|
if (context) mt32emu_render_bit16s(context, stream, len);
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-15 20:07:38 +02:00
|
|
|
void mt32_poll()
|
2017-06-19 06:46:08 +02:00
|
|
|
{
|
2017-07-15 20:07:38 +02:00
|
|
|
midi_pos++;
|
|
|
|
|
if (midi_pos == 48000/RENDER_RATE)
|
2017-06-19 06:46:08 +02:00
|
|
|
{
|
2017-07-15 20:07:38 +02:00
|
|
|
midi_pos = 0;
|
|
|
|
|
thread_set_event(event);
|
2017-06-19 06:46:08 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-15 20:07:38 +02:00
|
|
|
extern int soundon;
|
|
|
|
|
|
2017-06-19 06:46:08 +02:00
|
|
|
static void mt32_thread(void *param)
|
|
|
|
|
{
|
2017-08-14 19:43:08 +02:00
|
|
|
int buf_pos = 0;
|
|
|
|
|
int bsize = buf_size / BUFFER_SEGMENTS;
|
2017-06-19 06:46:08 +02:00
|
|
|
while (1)
|
|
|
|
|
{
|
2017-07-15 20:07:38 +02:00
|
|
|
thread_wait_event(event, -1);
|
2017-08-14 19:43:08 +02:00
|
|
|
|
2017-06-19 06:46:08 +02:00
|
|
|
if (sound_is_float)
|
|
|
|
|
{
|
2017-08-14 19:43:08 +02:00
|
|
|
float *buf = (float *) ((uint8_t*)buffer + buf_pos);
|
|
|
|
|
memset(buf, 0, bsize);
|
|
|
|
|
mt32_stream(buf, bsize / (2 * sizeof(float)));
|
|
|
|
|
buf_pos += bsize;
|
|
|
|
|
if (buf_pos >= buf_size)
|
|
|
|
|
{
|
|
|
|
|
if (soundon)
|
|
|
|
|
givealbuffer_midi(buffer, buf_size / sizeof(float));
|
|
|
|
|
buf_pos = 0;
|
|
|
|
|
}
|
2017-06-19 06:46:08 +02:00
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2017-08-14 19:43:08 +02:00
|
|
|
int16_t *buf = (int16_t *) ((uint8_t*)buffer_int16 + buf_pos);
|
|
|
|
|
memset(buf, 0, bsize);
|
|
|
|
|
mt32_stream_int16(buf, bsize / (2 * sizeof(int16_t)));
|
|
|
|
|
buf_pos += bsize;
|
|
|
|
|
if (buf_pos >= buf_size)
|
|
|
|
|
{
|
|
|
|
|
if (soundon)
|
|
|
|
|
givealbuffer_midi(buffer_int16, buf_size / sizeof(int16_t));
|
|
|
|
|
buf_pos = 0;
|
|
|
|
|
}
|
2017-06-19 06:46:08 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-15 20:07:38 +02:00
|
|
|
void mt32_msg(uint8_t* val)
|
2017-06-19 06:46:08 +02:00
|
|
|
{
|
|
|
|
|
if (context) mt32_check("mt32emu_play_msg", mt32emu_play_msg(context, *(uint32_t*)val), MT32EMU_RC_OK);
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-15 20:07:38 +02:00
|
|
|
void mt32_sysex(uint8_t* data, unsigned int len)
|
2017-06-19 06:46:08 +02:00
|
|
|
{
|
|
|
|
|
if (context) mt32_check("mt32emu_play_sysex", mt32emu_play_sysex(context, data, len), MT32EMU_RC_OK);
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-15 20:07:38 +02:00
|
|
|
void* mt32emu_init(wchar_t *control_rom, wchar_t *pcm_rom)
|
2017-07-15 18:37:06 +02:00
|
|
|
{
|
|
|
|
|
wchar_t s[512];
|
2017-07-15 20:07:38 +02:00
|
|
|
char fn[512];
|
|
|
|
|
context = mt32emu_create_context(handler, NULL);
|
|
|
|
|
if (!rom_getfile(control_rom, s, 512)) return 0;
|
|
|
|
|
wcstombs(fn, s, (wcslen(s) << 1) + 2);
|
|
|
|
|
if (!mt32_check("mt32emu_add_rom_file", mt32emu_add_rom_file(context, fn), MT32EMU_RC_ADDED_CONTROL_ROM)) return 0;
|
|
|
|
|
if (!rom_getfile(pcm_rom, s, 512)) return 0;
|
|
|
|
|
wcstombs(fn, s, (wcslen(s) << 1) + 2);
|
|
|
|
|
if (!mt32_check("mt32emu_add_rom_file", mt32emu_add_rom_file(context, fn), MT32EMU_RC_ADDED_PCM_ROM)) return 0;
|
2017-07-15 18:37:06 +02:00
|
|
|
|
2017-07-15 20:07:38 +02:00
|
|
|
if (!mt32_check("mt32emu_open_synth", mt32emu_open_synth(context), MT32EMU_RC_OK)) return 0;
|
2017-06-19 06:46:08 +02:00
|
|
|
|
2017-07-15 20:07:38 +02:00
|
|
|
event = thread_create_event();
|
|
|
|
|
thread_h = thread_create(mt32_thread, 0);
|
|
|
|
|
samplerate = mt32emu_get_actual_stereo_output_samplerate(context);
|
2017-08-14 19:43:08 +02:00
|
|
|
/* buf_size = samplerate/RENDER_RATE*2; */
|
2017-06-19 06:46:08 +02:00
|
|
|
if (sound_is_float)
|
|
|
|
|
{
|
2017-08-14 19:43:08 +02:00
|
|
|
buf_size = (samplerate/RENDER_RATE)*2*BUFFER_SEGMENTS*sizeof(float);
|
|
|
|
|
buffer = malloc(buf_size);
|
2017-07-15 20:07:38 +02:00
|
|
|
buffer_int16 = NULL;
|
2017-06-19 06:46:08 +02:00
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2017-08-14 19:43:08 +02:00
|
|
|
buf_size = (samplerate/RENDER_RATE)*2*BUFFER_SEGMENTS*sizeof(int16_t);
|
2017-07-15 20:07:38 +02:00
|
|
|
buffer = NULL;
|
2017-08-14 19:43:08 +02:00
|
|
|
buffer_int16 = malloc(buf_size);
|
2017-06-19 06:46:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
mt32emu_set_output_gain(context, device_get_config_int("output_gain")/100.0f);
|
|
|
|
|
mt32emu_set_reverb_enabled(context, device_get_config_int("reverb"));
|
|
|
|
|
mt32emu_set_reverb_output_gain(context, device_get_config_int("reverb_output_gain")/100.0f);
|
|
|
|
|
mt32emu_set_reversed_stereo_enabled(context, device_get_config_int("reversed_stereo"));
|
2017-08-10 23:46:06 +02:00
|
|
|
mt32emu_set_nice_amp_ramp_enabled(context, device_get_config_int("nice_ramp"));
|
2017-06-19 06:46:08 +02:00
|
|
|
|
2017-07-15 20:07:38 +02:00
|
|
|
al_set_midi(samplerate, buf_size);
|
2017-07-15 18:37:06 +02:00
|
|
|
|
2017-06-19 06:46:08 +02:00
|
|
|
midi_device_t* dev = malloc(sizeof(midi_device_t));
|
|
|
|
|
memset(dev, 0, sizeof(midi_device_t));
|
|
|
|
|
|
|
|
|
|
dev->play_msg = mt32_msg;
|
|
|
|
|
dev->play_sysex = mt32_sysex;
|
|
|
|
|
dev->poll = mt32_poll;
|
|
|
|
|
|
|
|
|
|
midi_init(dev);
|
|
|
|
|
|
|
|
|
|
return dev;
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-19 01:02:04 +01:00
|
|
|
void *mt32_init(const device_t *info)
|
2017-07-15 18:37:06 +02:00
|
|
|
{
|
2017-07-16 17:14:08 +02:00
|
|
|
return mt32emu_init(L"roms/sound/mt32/mt32_control.rom", L"roms/sound/mt32/mt32_pcm.rom");
|
2017-07-15 18:37:06 +02:00
|
|
|
}
|
|
|
|
|
|
2018-03-19 01:02:04 +01:00
|
|
|
void *cm32l_init(const device_t *info)
|
2017-07-15 18:37:06 +02:00
|
|
|
{
|
2017-07-16 17:14:08 +02:00
|
|
|
return mt32emu_init(L"roms/sound/cm32l/cm32l_control.rom", L"roms/sound/cm32l/cm32l_pcm.rom");
|
2017-07-15 18:37:06 +02:00
|
|
|
}
|
|
|
|
|
|
2017-06-19 06:46:08 +02:00
|
|
|
void mt32_close(void* p)
|
|
|
|
|
{
|
|
|
|
|
if (!p) return;
|
|
|
|
|
|
2017-07-15 20:07:38 +02:00
|
|
|
if (thread_h)
|
|
|
|
|
thread_kill(thread_h);
|
|
|
|
|
if (event)
|
|
|
|
|
thread_destroy_event(event);
|
|
|
|
|
event = NULL;
|
|
|
|
|
thread_h = NULL;
|
2017-06-19 06:46:08 +02:00
|
|
|
|
2017-07-15 20:07:38 +02:00
|
|
|
if (context)
|
2017-06-19 06:46:08 +02:00
|
|
|
{
|
2017-07-15 20:07:38 +02:00
|
|
|
mt32emu_close_synth(context);
|
|
|
|
|
mt32emu_free_context(context);
|
2017-06-19 06:46:08 +02:00
|
|
|
}
|
2017-07-15 20:07:38 +02:00
|
|
|
context = NULL;
|
2017-06-19 06:46:08 +02:00
|
|
|
|
2017-07-15 20:07:38 +02:00
|
|
|
if (buffer)
|
|
|
|
|
free(buffer);
|
|
|
|
|
buffer = NULL;
|
2017-06-19 06:46:08 +02:00
|
|
|
|
2017-07-15 20:07:38 +02:00
|
|
|
if (buffer_int16)
|
|
|
|
|
free(buffer_int16);
|
|
|
|
|
buffer_int16 = NULL;
|
2017-06-19 06:46:08 +02:00
|
|
|
|
|
|
|
|
midi_close();
|
|
|
|
|
|
|
|
|
|
free((midi_device_t*)p);
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-19 01:02:04 +01:00
|
|
|
static const device_config_t mt32_config[] =
|
2017-06-19 06:46:08 +02:00
|
|
|
{
|
|
|
|
|
{
|
|
|
|
|
.name = "output_gain",
|
|
|
|
|
.description = "Output Gain",
|
2017-08-10 23:46:06 +02:00
|
|
|
.type = CONFIG_SPINNER,
|
|
|
|
|
.spinner =
|
2017-06-19 06:46:08 +02:00
|
|
|
{
|
2017-08-10 23:46:06 +02:00
|
|
|
.min = 0,
|
|
|
|
|
.max = 100
|
2017-06-19 06:46:08 +02:00
|
|
|
},
|
|
|
|
|
.default_int = 100
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
.name = "reverb",
|
|
|
|
|
.description = "Reverb",
|
|
|
|
|
.type = CONFIG_BINARY,
|
|
|
|
|
.default_int = 1
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
.name = "reverb_output_gain",
|
|
|
|
|
.description = "Reverb Output Gain",
|
2017-08-10 23:46:06 +02:00
|
|
|
.type = CONFIG_SPINNER,
|
|
|
|
|
.spinner =
|
2017-06-19 06:46:08 +02:00
|
|
|
{
|
2017-08-10 23:46:06 +02:00
|
|
|
.min = 0,
|
|
|
|
|
.max = 100
|
2017-06-19 06:46:08 +02:00
|
|
|
},
|
|
|
|
|
.default_int = 100
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
.name = "reversed_stereo",
|
|
|
|
|
.description = "Reversed stereo",
|
|
|
|
|
.type = CONFIG_BINARY,
|
|
|
|
|
.default_int = 0
|
|
|
|
|
},
|
2017-08-10 23:46:06 +02:00
|
|
|
{
|
|
|
|
|
.name = "nice_ramp",
|
|
|
|
|
.description = "Nice ramp",
|
|
|
|
|
.type = CONFIG_BINARY,
|
|
|
|
|
.default_int = 1
|
|
|
|
|
},
|
2017-06-19 06:46:08 +02:00
|
|
|
{
|
|
|
|
|
.type = -1
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2018-03-19 01:02:04 +01:00
|
|
|
const device_t mt32_device =
|
2017-06-19 06:46:08 +02:00
|
|
|
{
|
|
|
|
|
"Roland MT-32 Emulation",
|
|
|
|
|
0,
|
2017-10-07 00:46:54 -04:00
|
|
|
0,
|
2017-06-19 06:46:08 +02:00
|
|
|
mt32_init,
|
|
|
|
|
mt32_close,
|
2017-10-07 00:46:54 -04:00
|
|
|
NULL,
|
2017-06-19 06:46:08 +02:00
|
|
|
mt32_available,
|
|
|
|
|
NULL,
|
|
|
|
|
NULL,
|
2017-07-15 18:37:06 +02:00
|
|
|
mt32_config
|
|
|
|
|
};
|
|
|
|
|
|
2018-03-19 01:02:04 +01:00
|
|
|
const device_t cm32l_device =
|
2017-07-15 18:37:06 +02:00
|
|
|
{
|
|
|
|
|
"Roland CM-32L Emulation",
|
|
|
|
|
0,
|
2017-10-07 00:46:54 -04:00
|
|
|
0,
|
2017-07-15 18:37:06 +02:00
|
|
|
cm32l_init,
|
|
|
|
|
mt32_close,
|
2017-10-07 00:46:54 -04:00
|
|
|
NULL,
|
2017-07-15 18:37:06 +02:00
|
|
|
cm32l_available,
|
|
|
|
|
NULL,
|
2017-06-19 06:46:08 +02:00
|
|
|
NULL,
|
|
|
|
|
mt32_config
|
|
|
|
|
};
|