This repository was archived by the owner on Mar 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathmusic.h
174 lines (128 loc) · 4.87 KB
/
music.h
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
/*
SDL_mixer: An audio mixer library based on the SDL library
Copyright (C) 1997-2021 Sam Lantinga <[email protected]>
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
#include "SDL_mixer.h"
#ifndef MUSIC_H_
#define MUSIC_H_
/* Supported music APIs, in order of preference */
typedef enum
{
MIX_MUSIC_CMD,
MIX_MUSIC_WAVE,
MIX_MUSIC_MODPLUG,
MIX_MUSIC_MIKMOD,
MIX_MUSIC_FLUIDSYNTH,
MIX_MUSIC_TIMIDITY,
MIX_MUSIC_NATIVEMIDI,
MIX_MUSIC_OGG,
MIX_MUSIC_MPG123,
MIX_MUSIC_MAD,
MIX_MUSIC_FLAC,
MIX_MUSIC_OPUS,
MIX_MUSIC_LIBXMP,
MIX_MUSIC_LAST
} Mix_MusicAPI;
/* Supported meta-tags */
typedef enum
{
MIX_META_TITLE,
MIX_META_ARTIST,
MIX_META_ALBUM,
MIX_META_COPYRIGHT,
MIX_META_LAST
} Mix_MusicMetaTag;
/* MIXER-X: Meta-tags utility structure */
typedef struct {
char *tags[4];
} Mix_MusicMetaTags;
extern void meta_tags_init(Mix_MusicMetaTags *tags);
extern void meta_tags_clear(Mix_MusicMetaTags *tags);
extern void meta_tags_set(Mix_MusicMetaTags *tags, Mix_MusicMetaTag type, const char *value);
extern const char* meta_tags_get(Mix_MusicMetaTags *tags, Mix_MusicMetaTag type);
/* Music API implementation */
typedef struct
{
const char *tag;
Mix_MusicAPI api;
Mix_MusicType type;
SDL_bool loaded;
SDL_bool opened;
/* Load the library */
int (*Load)(void);
/* Initialize for the audio output */
int (*Open)(const SDL_AudioSpec *spec);
/* Create a music object from an SDL_RWops stream
* If the function returns NULL, 'src' will be freed if needed by the caller.
*/
void *(*CreateFromRW)(SDL_RWops *src, int freesrc);
/* Create a music object from a file, if SDL_RWops are not supported */
void *(*CreateFromFile)(const char *file);
/* Set the volume */
void (*SetVolume)(void *music, int volume);
/* Get the volume */
int (*GetVolume)(void *music);
/* Start playing music from the beginning with an optional loop count */
int (*Play)(void *music, int play_count);
/* Returns SDL_TRUE if music is still playing */
SDL_bool (*IsPlaying)(void *music);
/* Get music data, returns the number of bytes left */
int (*GetAudio)(void *music, void *data, int bytes);
/* Jump to a given order in mod music */
int (*Jump)(void *music, int order);
/* Seek to a play position (in seconds) */
int (*Seek)(void *music, double position);
/* Tell a play position (in seconds) */
double (*Tell)(void *music);
/* Get Music duration (in seconds) */
double (*Duration)(void *music);
/* Tell a loop start position (in seconds) */
double (*LoopStart)(void *music);
/* Tell a loop end position (in seconds) */
double (*LoopEnd)(void *music);
/* Tell a loop length position (in seconds) */
double (*LoopLength)(void *music);
/* Get a meta-tag string if available */
const char* (*GetMetaTag)(void *music, Mix_MusicMetaTag tag_type);
/* Pause playing music */
void (*Pause)(void *music);
/* Resume playing music */
void (*Resume)(void *music);
/* Stop playing music */
void (*Stop)(void *music);
/* Delete a music object */
void (*Delete)(void *music);
/* Close the library and clean up */
void (*Close)(void);
/* Unload the library */
void (*Unload)(void);
} Mix_MusicInterface;
extern int get_num_music_interfaces(void);
extern Mix_MusicInterface *get_music_interface(int index);
extern Mix_MusicType detect_music_type(SDL_RWops *src);
extern SDL_bool load_music_type(Mix_MusicType type);
extern SDL_bool open_music_type(Mix_MusicType type);
extern SDL_bool has_music(Mix_MusicType type);
extern void open_music(const SDL_AudioSpec *spec);
extern int music_pcm_getaudio(void *context, void *data, int bytes, int volume,
int (*GetSome)(void *context, void *data, int bytes, SDL_bool *done));
extern void SDLCALL music_mixer(void *udata, Uint8 *stream, int len);
extern void close_music(void);
extern void unload_music(void);
extern char *music_cmd;
extern SDL_AudioSpec music_spec;
#endif /* MUSIC_H_ */
/* vi: set ts=4 sw=4 expandtab: */