2007-09-24 15:57:32 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2005 Stepan Moskovchenko
|
|
|
|
*
|
2008-06-28 18:10:04 +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 2
|
|
|
|
* of the License, or (at your option) any later version.
|
2007-09-24 15:57:32 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2007-11-17 06:39:02 +00:00
|
|
|
#define FRACTSIZE 12
|
2007-09-24 15:57:32 +00:00
|
|
|
|
2010-05-06 21:04:40 +00:00
|
|
|
#include "lib/pluginlib_exit.h"
|
|
|
|
|
2008-11-24 21:32:08 +00:00
|
|
|
#define BUF_SIZE 16384 /* 64 kB output buffers */
|
2007-09-24 15:57:32 +00:00
|
|
|
#define NBUF 2
|
|
|
|
|
|
|
|
#ifndef SIMULATOR
|
|
|
|
|
2007-10-04 21:01:40 +00:00
|
|
|
#if (HW_SAMPR_CAPS & SAMPR_CAP_22) /* use 22050Hz if we can */
|
|
|
|
#define SAMPLE_RATE SAMPR_22 /* 22050 */
|
2007-09-24 15:57:32 +00:00
|
|
|
#else
|
2007-10-04 21:01:40 +00:00
|
|
|
#define SAMPLE_RATE SAMPR_44 /* 44100 */
|
2007-09-24 15:57:32 +00:00
|
|
|
#endif
|
|
|
|
|
2009-03-28 11:27:56 +00:00
|
|
|
/* Some of the pp based targets can't handle too many voices
|
|
|
|
mainly because they have to use 44100Hz sample rate, this could be
|
|
|
|
improved to increase MAX_VOICES for targets that can do 22kHz */
|
|
|
|
#ifdef CPU_PP
|
2007-10-04 21:01:40 +00:00
|
|
|
#define MAX_VOICES 16
|
2010-06-21 16:53:00 +00:00
|
|
|
#elif (CONFIG_PLATFORM & PLATFORM_HOSTED)
|
|
|
|
#define MAX_VOICES 48
|
2007-10-04 21:01:40 +00:00
|
|
|
#else
|
2007-10-17 03:48:24 +00:00
|
|
|
#define MAX_VOICES 24 /* Note: 24 midi channels is the minimum general midi spec implementation */
|
2007-10-04 21:01:40 +00:00
|
|
|
#endif /* CPU_PP */
|
2007-09-24 15:57:32 +00:00
|
|
|
|
2010-02-07 17:50:24 +00:00
|
|
|
#else /* Simulator requires 44100Hz, and we can afford to use more voices */
|
2007-09-24 15:57:32 +00:00
|
|
|
|
|
|
|
#define SAMPLE_RATE SAMPR_44
|
|
|
|
#define MAX_VOICES 48
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define BYTE unsigned char
|
|
|
|
|
2007-10-04 21:01:40 +00:00
|
|
|
/* Data chunk ID types, returned by readID() */
|
2007-09-24 15:57:32 +00:00
|
|
|
#define ID_UNKNOWN -1
|
|
|
|
#define ID_MTHD 1
|
|
|
|
#define ID_MTRK 2
|
|
|
|
#define ID_EOF 3
|
|
|
|
#define ID_RIFF 4
|
|
|
|
|
2007-10-04 21:01:40 +00:00
|
|
|
/* MIDI Commands */
|
2007-09-24 15:57:32 +00:00
|
|
|
#define MIDI_NOTE_OFF 128
|
|
|
|
#define MIDI_NOTE_ON 144
|
|
|
|
#define MIDI_AFTERTOUCH 160
|
|
|
|
#define MIDI_CONTROL 176
|
|
|
|
#define MIDI_PRGM 192
|
|
|
|
#define MIDI_PITCHW 224
|
|
|
|
|
2007-10-04 21:01:40 +00:00
|
|
|
/* MIDI Controllers */
|
2007-10-21 19:47:33 +00:00
|
|
|
#define CTRL_DATAENT_MSB 6
|
2007-10-15 05:11:37 +00:00
|
|
|
#define CTRL_VOLUME 7
|
2007-09-24 15:57:32 +00:00
|
|
|
#define CTRL_BALANCE 8
|
|
|
|
#define CTRL_PANNING 10
|
2007-10-21 19:47:33 +00:00
|
|
|
#define CTRL_NONREG_LSB 98
|
|
|
|
#define CTRL_NONREG_MSB 99
|
|
|
|
#define CTRL_REG_LSB 100
|
|
|
|
#define CTRL_REG_MSB 101
|
|
|
|
|
|
|
|
#define REG_PITCHBEND_MSB 0
|
|
|
|
#define REG_PITCHBEND_LSB 0
|
|
|
|
|
|
|
|
|
2007-09-24 15:57:32 +00:00
|
|
|
#define CHANNEL 1
|
|
|
|
|
2007-10-04 21:01:40 +00:00
|
|
|
/* Most of these are deprecated.. rampdown is used, maybe one other one too */
|
2007-09-24 15:57:32 +00:00
|
|
|
#define STATE_ATTACK 1
|
|
|
|
#define STATE_DECAY 2
|
|
|
|
#define STATE_SUSTAIN 3
|
|
|
|
#define STATE_RELEASE 4
|
|
|
|
#define STATE_RAMPDOWN 5
|
|
|
|
|
2007-10-04 21:01:40 +00:00
|
|
|
/* Loop states */
|
2007-09-24 15:57:32 +00:00
|
|
|
#define STATE_LOOPING 7
|
|
|
|
#define STATE_NONLOOPING 8
|
|
|
|
|
2007-10-04 21:01:40 +00:00
|
|
|
/* Various bits in the GUS mode byte */
|
2007-09-24 15:57:32 +00:00
|
|
|
#define LOOP_ENABLED 4
|
|
|
|
#define LOOP_PINGPONG 8
|
|
|
|
#define LOOP_REVERSE 16
|
|
|
|
|
|
|
|
struct MIDIfile
|
|
|
|
{
|
|
|
|
int Length;
|
|
|
|
unsigned short numTracks;
|
|
|
|
unsigned short div; /* Time division, X ticks per millisecond */
|
|
|
|
struct Track * tracks[48];
|
|
|
|
unsigned char patches[128];
|
|
|
|
int numPatches;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct SynthObject
|
|
|
|
{
|
|
|
|
struct GWaveform * wf;
|
|
|
|
int delta;
|
|
|
|
int decay;
|
|
|
|
unsigned int cp; /* unsigned int */
|
2007-11-15 21:20:29 +00:00
|
|
|
int state, loopState;
|
2007-11-11 01:02:45 +00:00
|
|
|
int note, vol, ch;
|
2007-09-24 15:57:32 +00:00
|
|
|
int curRate, curOffset, targetOffset;
|
|
|
|
int curPoint;
|
|
|
|
signed short int volscale;
|
2007-11-11 01:02:45 +00:00
|
|
|
bool isUsed;
|
2007-09-24 15:57:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct Event
|
|
|
|
{
|
|
|
|
unsigned int delta;
|
|
|
|
unsigned char status, d1, d2;
|
|
|
|
unsigned int len;
|
|
|
|
unsigned char * evData;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Track
|
|
|
|
{
|
|
|
|
unsigned int size;
|
|
|
|
unsigned int numEvents;
|
|
|
|
unsigned int delta; /* For sequencing */
|
|
|
|
unsigned int pos; /* For sequencing */
|
|
|
|
void * dataBlock;
|
|
|
|
};
|
|
|
|
|
2010-07-25 19:35:19 +00:00
|
|
|
int midi_debug(const char *fmt, ...);
|
2007-09-24 15:57:32 +00:00
|
|
|
unsigned char readChar(int file);
|
|
|
|
int readTwoBytes(int file);
|
|
|
|
int readFourBytes(int file);
|
|
|
|
int readVarData(int file);
|
|
|
|
int eof(int fd);
|
2011-09-06 10:34:20 +00:00
|
|
|
void * readData(int file, int len);
|
2007-09-24 15:57:32 +00:00
|
|
|
|
|
|
|
#define malloc(n) my_malloc(n)
|
|
|
|
void * my_malloc(int size);
|
|
|
|
|
|
|
|
extern struct SynthObject voices[MAX_VOICES];
|
|
|
|
|
|
|
|
extern int chVol[16]; /* Channel volume */
|
2007-10-04 19:36:42 +00:00
|
|
|
extern int chPan[16]; /* Channel panning */
|
2007-09-24 15:57:32 +00:00
|
|
|
extern int chPat[16]; /* Channel patch */
|
|
|
|
extern int chPW[16]; /* Channel pitch wheel, MSB only */
|
2007-10-15 05:11:37 +00:00
|
|
|
extern int chPBDepth[16]; /* Channel pitch bend depth (Controller 6 */
|
2007-10-17 03:48:24 +00:00
|
|
|
extern int chPBNoteOffset[16] IBSS_ATTR; /* Pre-computed whole semitone offset */
|
|
|
|
extern int chPBFractBend[16] IBSS_ATTR; /* Fractional bend applied to delta */
|
2007-10-21 19:47:33 +00:00
|
|
|
extern unsigned char chLastCtrlMSB[16]; /* MIDI regs, used for Controller 6. */
|
|
|
|
extern unsigned char chLastCtrlLSB[16]; /* The non-registered ones are ignored */
|
2007-09-24 15:57:32 +00:00
|
|
|
|
|
|
|
extern struct GPatch * gusload(char *);
|
|
|
|
extern struct GPatch * patchSet[128];
|
|
|
|
extern struct GPatch * drumSet[128];
|
|
|
|
|
|
|
|
extern struct MIDIfile * mf;
|
|
|
|
|
2009-03-28 11:27:56 +00:00
|
|
|
extern int number_of_samples;
|
|
|
|
extern int playing_time IBSS_ATTR;
|
|
|
|
extern int samples_this_second IBSS_ATTR;
|
2007-09-24 15:57:32 +00:00
|
|
|
extern long bpm;
|
|
|
|
|