mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-05 20:41:06 +00:00
c1c01f0e0b
DONT_BUILD. git-svn-id: https://svn.eduke32.com/eduke32@4541 1a8010ca-5511-0410-912e-c29ae57300e0
100 lines
3.3 KiB
C
100 lines
3.3 KiB
C
/*
|
|
Copyright (C) 1994-1995 Apogee Software, Ltd.
|
|
|
|
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.
|
|
|
|
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
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
Modifications for JonoF's port by Jonathon Fowler (jf@jonof.id.au)
|
|
*/
|
|
/**********************************************************************
|
|
module: MIDI.H
|
|
|
|
author: James R. Dose
|
|
date: May 25, 1994
|
|
|
|
Public header for MIDI.C. Midi song file playback routines.
|
|
|
|
(c) Copyright 1994 James R. Dose. All Rights Reserved.
|
|
**********************************************************************/
|
|
|
|
#ifndef __MIDI_H
|
|
#define __MIDI_H
|
|
|
|
enum MIDI_Errors
|
|
{
|
|
MIDI_Warning = -2,
|
|
MIDI_Error = -1,
|
|
MIDI_Ok = 0,
|
|
MIDI_NullMidiModule,
|
|
MIDI_InvalidMidiFile,
|
|
MIDI_UnknownMidiFormat,
|
|
MIDI_NoTracks,
|
|
MIDI_InvalidTrack,
|
|
MIDI_NoMemory,
|
|
MIDI_DPMI_Error
|
|
};
|
|
|
|
|
|
#define MIDI_PASS_THROUGH 1
|
|
#define MIDI_DONT_PLAY 0
|
|
|
|
#define MIDI_MaxVolume 255
|
|
|
|
extern char MIDI_PatchMap[ 128 ];
|
|
|
|
typedef struct
|
|
{
|
|
void ( *NoteOff )( int32_t channel, int32_t key, int32_t velocity );
|
|
void ( *NoteOn )( int32_t channel, int32_t key, int32_t velocity );
|
|
void ( *PolyAftertouch )( int32_t channel, int32_t key, int32_t pressure );
|
|
void ( *ControlChange )( int32_t channel, int32_t number, int32_t value );
|
|
void ( *ProgramChange )( int32_t channel, int32_t program );
|
|
void ( *ChannelAftertouch )( int32_t channel, int32_t pressure );
|
|
void ( *PitchBend )( int32_t channel, int32_t lsb, int32_t msb );
|
|
void ( *ReleasePatches )( void );
|
|
void ( *LoadPatch )( int32_t number );
|
|
void ( *SetVolume )( int32_t volume );
|
|
int32_t ( *GetVolume )( void );
|
|
void ( *FinishBuffer )( void );
|
|
} midifuncs;
|
|
|
|
void MIDI_RerouteMidiChannel( int32_t channel, int32_t ( *function )( int32_t event, int32_t c1, int32_t c2 ) );
|
|
int32_t MIDI_AllNotesOff( void );
|
|
void MIDI_SetUserChannelVolume( int32_t channel, int32_t volume );
|
|
void MIDI_ResetUserChannelVolume( void );
|
|
int32_t MIDI_Reset( void );
|
|
int32_t MIDI_SetVolume( int32_t volume );
|
|
int32_t MIDI_GetVolume( void );
|
|
void MIDI_SetMidiFuncs( midifuncs *funcs );
|
|
void MIDI_SetContext( int32_t context );
|
|
int32_t MIDI_GetContext( void );
|
|
void MIDI_SetLoopFlag( int32_t loopflag );
|
|
void MIDI_ContinueSong( void );
|
|
void MIDI_PauseSong( void );
|
|
int32_t MIDI_SongPlaying( void );
|
|
void MIDI_StopSong( void );
|
|
int32_t MIDI_PlaySong( char *song, int32_t loopflag );
|
|
void MIDI_SetTempo( int32_t tempo );
|
|
int32_t MIDI_GetTempo( void );
|
|
void MIDI_SetSongTick( uint32_t PositionInTicks );
|
|
void MIDI_SetSongTime( uint32_t milliseconds );
|
|
void MIDI_SetSongPosition( int32_t measure, int32_t beat, int32_t tick );
|
|
void MIDI_GetSongPosition( songposition *pos );
|
|
void MIDI_GetSongLength( songposition *pos );
|
|
void MIDI_LoadTimbres( void );
|
|
void MIDI_UpdateMusic(void);
|
|
void MIDI_SetDivision( int32_t division );
|
|
|
|
#endif
|