Skip to content

Latest commit

 

History

History
277 lines (243 loc) · 7.02 KB

playmus.c

File metadata and controls

277 lines (243 loc) · 7.02 KB
 
Oct 21, 1999
Oct 21, 1999
1
/*
Dec 31, 2011
Dec 31, 2011
2
PLAYMUS: A test application for the SDL mixer library.
Jan 5, 2019
Jan 5, 2019
3
Copyright (C) 1997-2019 Sam Lantinga <slouken@libsdl.org>
Dec 31, 2011
Dec 31, 2011
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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.
Oct 21, 1999
Oct 21, 1999
20
21
*/
Jun 12, 2013
Jun 12, 2013
22
/* Quiet windows compiler warnings */
Oct 17, 2017
Oct 17, 2017
23
#define _CRT_SECURE_NO_WARNINGS
Jun 12, 2013
Jun 12, 2013
24
Dec 14, 2001
Dec 14, 2001
25
/* $Id$ */
Dec 14, 2001
Dec 14, 2001
26
Oct 21, 1999
Oct 21, 1999
27
28
29
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
Apr 14, 2010
Apr 14, 2010
30
Feb 11, 2000
Feb 11, 2000
31
#ifdef unix
Oct 21, 1999
Oct 21, 1999
32
33
34
#include <unistd.h>
#endif
Dec 21, 1999
Dec 21, 1999
35
#include "SDL.h"
Jan 14, 2000
Jan 14, 2000
36
#include "SDL_mixer.h"
Oct 21, 1999
Oct 21, 1999
37
Feb 17, 2011
Feb 17, 2011
38
39
40
41
#ifdef HAVE_SIGNAL_H
#include <signal.h>
#endif
Oct 21, 1999
Oct 21, 1999
42
43
44
static int audio_open = 0;
static Mix_Music *music = NULL;
Jan 2, 2001
Jan 2, 2001
45
static int next_track = 0;
Oct 21, 1999
Oct 21, 1999
46
May 14, 2006
May 14, 2006
47
void CleanUp(int exitcode)
Oct 21, 1999
Oct 21, 1999
48
{
Oct 17, 2017
Oct 17, 2017
49
if(Mix_PlayingMusic()) {
May 22, 2013
May 22, 2013
50
51
52
Mix_FadeOutMusic(1500);
SDL_Delay(1500);
}
Oct 17, 2017
Oct 17, 2017
53
if (music) {
May 22, 2013
May 22, 2013
54
55
56
Mix_FreeMusic(music);
music = NULL;
}
Oct 17, 2017
Oct 17, 2017
57
if (audio_open) {
May 22, 2013
May 22, 2013
58
59
60
61
62
Mix_CloseAudio();
audio_open = 0;
}
SDL_Quit();
exit(exitcode);
Oct 21, 1999
Oct 21, 1999
63
64
65
66
}
void Usage(char *argv0)
{
Oct 21, 2017
Oct 21, 2017
67
SDL_Log("Usage: %s [-i] [-l] [-8] [-f32] [-r rate] [-c channels] [-b buffers] [-v N] [-rwops] <musicfile>\n", argv0);
Oct 21, 1999
Oct 21, 1999
68
}
Nov 1, 1999
Nov 1, 1999
69
70
71
void Menu(void)
{
May 22, 2013
May 22, 2013
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
char buf[10];
printf("Available commands: (p)ause (r)esume (h)alt volume(v#) > ");
fflush(stdin);
if (scanf("%s",buf) == 1) {
switch(buf[0]){
case 'p': case 'P':
Mix_PauseMusic();
break;
case 'r': case 'R':
Mix_ResumeMusic();
break;
case 'h': case 'H':
Mix_HaltMusic();
break;
case 'v': case 'V':
Mix_VolumeMusic(atoi(buf+1));
break;
}
}
printf("Music playing: %s Paused: %s\n", Mix_PlayingMusic() ? "yes" : "no",
Mix_PausedMusic() ? "yes" : "no");
Nov 1, 1999
Nov 1, 1999
94
95
}
Apr 14, 2010
Apr 14, 2010
96
97
#ifdef HAVE_SIGNAL_H
Jan 2, 2001
Jan 2, 2001
98
99
void IntHandler(int sig)
{
May 22, 2013
May 22, 2013
100
101
102
103
104
switch (sig) {
case SIGINT:
next_track++;
break;
}
Jan 2, 2001
Jan 2, 2001
105
106
}
Apr 14, 2010
Apr 14, 2010
107
108
#endif
Dec 18, 2001
Dec 18, 2001
109
int main(int argc, char *argv[])
Oct 21, 1999
Oct 21, 1999
110
{
May 22, 2013
May 22, 2013
111
112
113
114
115
116
117
118
119
int audio_rate;
Uint16 audio_format;
int audio_channels;
int audio_buffers;
int audio_volume = MIX_MAX_VOLUME;
int looping = 0;
int interactive = 0;
int rwops = 0;
int i;
Nov 26, 2019
Nov 26, 2019
120
const char *typ;
May 22, 2013
May 22, 2013
121
122
/* Initialize variables */
Nov 26, 2019
Nov 26, 2019
123
124
125
audio_rate = MIX_DEFAULT_FREQUENCY;
audio_format = MIX_DEFAULT_FORMAT;
audio_channels = MIX_DEFAULT_CHANNELS;
May 22, 2013
May 22, 2013
126
127
128
audio_buffers = 4096;
/* Check command line usage */
Oct 17, 2017
Oct 17, 2017
129
130
for (i=1; argv[i] && (*argv[i] == '-'); ++i) {
if ((strcmp(argv[i], "-r") == 0) && argv[i+1]) {
May 22, 2013
May 22, 2013
131
132
133
++i;
audio_rate = atoi(argv[i]);
} else
Oct 17, 2017
Oct 17, 2017
134
if (strcmp(argv[i], "-m") == 0) {
May 22, 2013
May 22, 2013
135
136
audio_channels = 1;
} else
Oct 17, 2017
Oct 17, 2017
137
if ((strcmp(argv[i], "-c") == 0) && argv[i+1]) {
May 22, 2013
May 22, 2013
138
139
140
++i;
audio_channels = atoi(argv[i]);
} else
Oct 17, 2017
Oct 17, 2017
141
if ((strcmp(argv[i], "-b") == 0) && argv[i+1]) {
May 22, 2013
May 22, 2013
142
143
144
++i;
audio_buffers = atoi(argv[i]);
} else
Oct 17, 2017
Oct 17, 2017
145
if ((strcmp(argv[i], "-v") == 0) && argv[i+1]) {
May 22, 2013
May 22, 2013
146
147
148
++i;
audio_volume = atoi(argv[i]);
} else
Oct 17, 2017
Oct 17, 2017
149
if (strcmp(argv[i], "-l") == 0) {
May 22, 2013
May 22, 2013
150
151
looping = -1;
} else
Oct 17, 2017
Oct 17, 2017
152
if (strcmp(argv[i], "-i") == 0) {
May 22, 2013
May 22, 2013
153
154
interactive = 1;
} else
Oct 17, 2017
Oct 17, 2017
155
if (strcmp(argv[i], "-8") == 0) {
May 22, 2013
May 22, 2013
156
157
audio_format = AUDIO_U8;
} else
Oct 21, 2017
Oct 21, 2017
158
159
160
if (strcmp(argv[i], "-f32") == 0) {
audio_format = AUDIO_F32;
} else
Oct 17, 2017
Oct 17, 2017
161
if (strcmp(argv[i], "-rwops") == 0) {
May 22, 2013
May 22, 2013
162
163
164
165
166
167
rwops = 1;
} else {
Usage(argv[0]);
return(1);
}
}
Oct 17, 2017
Oct 17, 2017
168
if (! argv[i]) {
May 22, 2013
May 22, 2013
169
170
171
172
173
Usage(argv[0]);
return(1);
}
/* Initialize the SDL library */
Oct 17, 2017
Oct 17, 2017
174
175
if (SDL_Init(SDL_INIT_AUDIO) < 0) {
SDL_Log("Couldn't initialize SDL: %s\n",SDL_GetError());
May 22, 2013
May 22, 2013
176
177
return(255);
}
Aug 21, 2004
Aug 21, 2004
178
Apr 14, 2010
Apr 14, 2010
179
#ifdef HAVE_SIGNAL_H
May 22, 2013
May 22, 2013
180
181
signal(SIGINT, IntHandler);
signal(SIGTERM, CleanUp);
Apr 14, 2010
Apr 14, 2010
182
#endif
Oct 21, 1999
Oct 21, 1999
183
May 22, 2013
May 22, 2013
184
185
/* Open the audio device */
if (Mix_OpenAudio(audio_rate, audio_format, audio_channels, audio_buffers) < 0) {
Oct 17, 2017
Oct 17, 2017
186
SDL_Log("Couldn't open audio: %s\n", SDL_GetError());
May 22, 2013
May 22, 2013
187
188
189
return(2);
} else {
Mix_QuerySpec(&audio_rate, &audio_format, &audio_channels);
Oct 21, 2017
Oct 21, 2017
190
SDL_Log("Opened audio at %d Hz %d bit%s %s %d bytes audio buffer\n", audio_rate,
May 22, 2013
May 22, 2013
191
(audio_format&0xFF),
Oct 21, 2017
Oct 21, 2017
192
(SDL_AUDIO_ISFLOAT(audio_format) ? " (float)" : ""),
May 22, 2013
May 22, 2013
193
(audio_channels > 2) ? "surround" : (audio_channels > 1) ? "stereo" : "mono",
Oct 17, 2017
Oct 17, 2017
194
audio_buffers);
May 22, 2013
May 22, 2013
195
196
197
198
199
200
201
202
203
204
205
206
207
}
audio_open = 1;
/* Set the music volume */
Mix_VolumeMusic(audio_volume);
/* Set the external music player, if any */
Mix_SetMusicCMD(SDL_getenv("MUSIC_CMD"));
while (argv[i]) {
next_track = 0;
/* Load the requested music file */
Oct 17, 2017
Oct 17, 2017
208
if (rwops) {
Jun 2, 2013
Jun 2, 2013
209
music = Mix_LoadMUS_RW(SDL_RWFromFile(argv[i], "rb"), SDL_TRUE);
May 22, 2013
May 22, 2013
210
211
212
} else {
music = Mix_LoadMUS(argv[i]);
}
Oct 17, 2017
Oct 17, 2017
213
214
if (music == NULL) {
SDL_Log("Couldn't load %s: %s\n",
May 22, 2013
May 22, 2013
215
216
217
218
argv[i], SDL_GetError());
CleanUp(2);
}
Nov 26, 2019
Nov 26, 2019
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
switch (Mix_GetMusicType(music)) {
case MUS_CMD:
typ = "CMD";
break;
case MUS_WAV:
typ = "WAV";
break;
case MUS_MOD:
case MUS_MODPLUG_UNUSED:
typ = "MOD";
break;
case MUS_FLAC:
typ = "FLAC";
break;
case MUS_MID:
typ = "MIDI";
break;
case MUS_OGG:
typ = "OGG Vorbis";
break;
case MUS_MP3:
case MUS_MP3_MAD_UNUSED:
typ = "MP3";
break;
case MUS_OPUS:
typ = "OPUS";
break;
case MUS_NONE:
default:
typ = "NONE";
break;
}
SDL_Log("Detected music type: %s", typ);
May 22, 2013
May 22, 2013
253
/* Play and then exit */
Oct 17, 2017
Oct 17, 2017
254
SDL_Log("Playing %s\n", argv[i]);
May 22, 2013
May 22, 2013
255
Mix_FadeInMusic(music,looping,2000);
Oct 17, 2017
Oct 17, 2017
256
while (!next_track && (Mix_PlayingMusic() || Mix_PausedMusic())) {
May 22, 2013
May 22, 2013
257
258
259
260
261
262
263
264
265
266
if(interactive)
Menu();
else
SDL_Delay(100);
}
Mix_FreeMusic(music);
music = NULL;
/* If the user presses Ctrl-C more than once, exit. */
SDL_Delay(500);
Oct 17, 2017
Oct 17, 2017
267
if (next_track > 1) break;
May 22, 2013
May 22, 2013
268
269
270
271
272
273
274
i++;
}
CleanUp(0);
/* Not reached, but fixes compiler warnings */
return 0;
Oct 21, 1999
Oct 21, 1999
275
}
Oct 17, 2017
Oct 17, 2017
276
277
/* vi: set ts=4 sw=4 expandtab: */