1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
|
/* libtdemid.h - class KMidSimpleAPI that makes it easy to use libtdemid
and a C wrapper.
This file is part of LibKMid 0.9.5
Copyright (C) 2000 Antonio Larrosa Jimenez
LibKMid's homepage : http://www.arrakis.es/~rlarrosa/libtdemid.html
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
Send comments and bug fixes to Antonio Larrosa <larrosa@kde.org>
***************************************************************************/
#ifndef _LIBTDEMID_H
#define _LIBTDEMID_H
#ifdef __cplusplus
#include <tdelibs_export.h>
/**
* Simple API covering most of the uses of libtdemid.
*
* You can use the members of this class in pure C applications, just by using
* the same name as the corresponding function member.
*
* Suppose you're developing a game and you want to play some background music
* while the user is playing. You only have to call :
*
* @li kMidInit();
* @li kMidLoad("RideOfTheValkyries.mid");
* @li kMidPlay();
*
* When the user decides to quit the game, use
*
* @li kMidStop();
* @li kMidDestruct();
*
* to stop the music and release the memory allocated by libtdemid.
*
* @short A very simple API around the rest of libtdemid.
* @version 0.9.5 17/01/2000
* @author Antonio Larrosa Jimenez <larrosa@kde.org>
*/
class KMID_EXPORT KMidSimpleAPI
{
private:
class KMidSimpleAPIPrivate;
KMidSimpleAPIPrivate *d;
public:
/**
* Initializes libtdemid. Creates the DeviceManager object, and initializes
* some variables that will be used later.
*
* @return 0 if OK, and a positive number when there's any error (for
* example, because the /dev/sequencer device couldn't be opened, be it
* because it was already opened by another application, or because the
* sound card wasn't configured)
*/
static int kMidInit(void);
/**
* Loads a song that will be played with the next call to kMidPlay().
*/
static int kMidLoad(const char *filename);
/**
* Plays the song currently loaded with kMidLoad().
* kMidPlay forks in order to play the song in a different process, it
* exits inmediately, so that the application can follow the normal
* execution flow while the sone is played.
*
* If loop is 0 the song is played once and then the child process
* finishes. If loop is 1, the song is played repeatedly until
* kMidStop() is called. You can call kMidStop() anytime you want
* (also if loop is 0) to stop the song and kill the child process.
*
* @see kMidStop
* @see kMidIsPlaying
*/
static int kMidPlay(int loop=0);
/**
* Stops playing a song inmediatly. It doesn't return until the child
* process that is playing the song is terminated.
*
* @see kMidPlay
*/
static int kMidStop(void);
/**
* Releases the memory allocated by libtdemid. To continue playing, you must
* first make a(nother) call to kMidInit().
*/
static void kMidDestruct(void);
/**
* Returns 1 if the library is playing a song, and 0 if it's not.
* @see kMidPlay
*/
static int kMidIsPlaying(void);
/**
* Returns the number of MIDI devices ( MIDI ports + synthesizers )
* @see DeviceManager::midiPorts
* @see DeviceManager::synthDevices
* @see kMidName
* @see kMidType
*/
static int kMidDevices(void);
/**
* Returns the name of the i-th device . In case libtdemid wasn't yet
* initialized ( see kMidInit() ), the return value is NULL, and in
* case the parameter has a value out of the valid range
* ( see kMidDevices() ) it returns an empty string.
*
* @see kMidDevices
* @see kMidType
*/
static const char *kMidName(int i);
/**
* Returns the type of the i-th device . In case libtdemid wasn't yet
* initialized ( see kMidInit() ), the return value is NULL, and in
* case the parameter has a value out of the valid range
* ( see kMidDevices() ) it returns an empty string.
*
* @see kMidDevices
* @see kMidName
*/
static const char *kMidType(int i);
/**
* Sets the MIDI device to use when playing a song.
* @see kMidDevices
* @see kMidName
* @see DeviceManager
*/
static void kMidSetDevice(int i);
/**
* Sets the Midi Mapper to use. Most of the users won't need a midi mapper,
* but there're still non-General Midi synthesizers out there, and people
* with one of those will get much better sound quality by using a MIDI
* mapper.
*
* Please have a look at KMid's documentation for more information
* about MIDI mappers and how to write a MIDI mapper for your keyboard.
*/
static void kMidSetMidiMapper(const char *mapfilename);
/**
* Returns the version number of libtdemid, i.e. "0.9.5" or "1.0 Beta"
*/
static const char *kMidVersion(void);
/**
* Returns the copyright notice that applications using libtdemid should print
* to the user in an about box or somewhere visible.
* I.e.
*
* "LibKMid 0.9.5 (C) 1997-2000 Antonio Larrosa Jimenez <larrosa@kde.org>. Spain"
*/
static const char *kMidCopyright(void);
};
extern "C" {
#else
#define KMID_EXPORT
#endif
KMID_EXPORT int kMidInit(void);
KMID_EXPORT int kMidLoad(const char *filename);
KMID_EXPORT int kMidPlay(void);
KMID_EXPORT int kMidStop(void);
KMID_EXPORT void kMidDestruct(void);
KMID_EXPORT int kMidIsPlaying(void);
KMID_EXPORT int kMidDevices(void);
KMID_EXPORT const char * kMidName(int i);
KMID_EXPORT const char * kMidType(int i);
KMID_EXPORT void kMidSetDevice(int i);
KMID_EXPORT void kMidSetMidiMapper(const char *mapfilename);
KMID_EXPORT const char * kMidVersion(void);
KMID_EXPORT const char * kMidCopyright(void);
#ifdef __cplusplus
}
/**
* @internal
*/
extern struct kMidData
{
class DeviceManager *midi;
class MidiPlayer *player;
class MidiMapper *map;
struct PlayerController *pctl;
int pctlsmID;
int pid;
} kMid;
#endif
#endif
|