Skip to content

Latest commit

 

History

History
223 lines (196 loc) · 4.91 KB

playmus.c

File metadata and controls

223 lines (196 loc) · 4.91 KB
 
Oct 21, 1999
Oct 21, 1999
1
2
/*
PLAYMUS: A test application for the SDL mixer library.
Jan 4, 2004
Jan 4, 2004
3
Copyright (C) 1997-2004 Sam Lantinga
Oct 21, 1999
Oct 21, 1999
4
Dec 14, 2001
Dec 14, 2001
5
6
7
8
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.
Oct 21, 1999
Oct 21, 1999
9
Dec 14, 2001
Dec 14, 2001
10
This library is distributed in the hope that it will be useful,
Oct 21, 1999
Oct 21, 1999
11
but WITHOUT ANY WARRANTY; without even the implied warranty of
Dec 14, 2001
Dec 14, 2001
12
13
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
Oct 21, 1999
Oct 21, 1999
14
Dec 14, 2001
Dec 14, 2001
15
16
You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free
Oct 21, 1999
Oct 21, 1999
17
18
19
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Sam Lantinga
Dec 14, 2001
Dec 14, 2001
20
slouken@libsdl.org
Oct 21, 1999
Oct 21, 1999
21
22
*/
Dec 14, 2001
Dec 14, 2001
23
/* $Id$ */
Dec 14, 2001
Dec 14, 2001
24
Oct 21, 1999
Oct 21, 1999
25
26
27
28
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <signal.h>
Feb 11, 2000
Feb 11, 2000
29
#ifdef unix
Oct 21, 1999
Oct 21, 1999
30
31
32
#include <unistd.h>
#endif
Dec 21, 1999
Dec 21, 1999
33
#include "SDL.h"
Jan 14, 2000
Jan 14, 2000
34
#include "SDL_mixer.h"
Oct 21, 1999
Oct 21, 1999
35
36
37
38
static int audio_open = 0;
static Mix_Music *music = NULL;
Jan 2, 2001
Jan 2, 2001
39
static int next_track = 0;
Oct 21, 1999
Oct 21, 1999
40
41
42
void CleanUp(void)
{
Oct 23, 1999
Oct 23, 1999
43
44
45
46
if( Mix_PlayingMusic() ) {
Mix_FadeOutMusic(1500);
SDL_Delay(1500);
}
Oct 21, 1999
Oct 21, 1999
47
48
49
50
if ( music ) {
Mix_FreeMusic(music);
music = NULL;
}
Oct 30, 1999
Oct 30, 1999
51
52
53
54
if ( audio_open ) {
Mix_CloseAudio();
audio_open = 0;
}
Oct 21, 1999
Oct 21, 1999
55
56
57
58
59
SDL_Quit();
}
void Usage(char *argv0)
{
Dec 21, 2004
Dec 21, 2004
60
fprintf(stderr, "Usage: %s [-i] [-l] [-8] [-r rate] [-c channels] [-b buffers] [-v N] [-rwops] <musicfile>\n", argv0);
Oct 21, 1999
Oct 21, 1999
61
}
Nov 1, 1999
Nov 1, 1999
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
void Menu(void)
{
char buf[10];
printf("Available commands: (p)ause (r)esume (h)alt > ");
fflush(stdin);
scanf("%s",buf);
switch(buf[0]){
case 'p': case 'P':
Mix_PauseMusic();
break;
case 'r': case 'R':
Mix_ResumeMusic();
break;
case 'h': case 'H':
Mix_HaltMusic();
break;
}
printf("Music playing: %s Paused: %s\n", Mix_PlayingMusic() ? "yes" : "no",
Mix_PausedMusic() ? "yes" : "no");
}
Jan 2, 2001
Jan 2, 2001
85
86
87
88
89
90
91
92
93
void IntHandler(int sig)
{
switch (sig) {
case SIGINT:
next_track++;
break;
}
}
Dec 18, 2001
Dec 18, 2001
94
int main(int argc, char *argv[])
Oct 21, 1999
Oct 21, 1999
95
{
Dec 21, 2004
Dec 21, 2004
96
SDL_RWops *rwfp;
Feb 11, 2000
Feb 11, 2000
97
int audio_rate;
Oct 21, 1999
Oct 21, 1999
98
99
Uint16 audio_format;
int audio_channels;
Dec 11, 1999
Dec 11, 1999
100
int audio_buffers;
Feb 12, 2003
Feb 12, 2003
101
int audio_volume = MIX_MAX_VOLUME;
Oct 30, 1999
Oct 30, 1999
102
int looping = 0;
Nov 1, 1999
Nov 1, 1999
103
int interactive = 0;
Dec 21, 2004
Dec 21, 2004
104
int rwops = 0;
Oct 21, 1999
Oct 21, 1999
105
106
107
108
109
110
int i;
/* Initialize variables */
audio_rate = 22050;
audio_format = AUDIO_S16;
audio_channels = 2;
Dec 11, 1999
Dec 11, 1999
111
audio_buffers = 4096;
Oct 21, 1999
Oct 21, 1999
112
113
114
115
116
117
118
/* Check command line usage */
for ( i=1; argv[i] && (*argv[i] == '-'); ++i ) {
if ( (strcmp(argv[i], "-r") == 0) && argv[i+1] ) {
++i;
audio_rate = atoi(argv[i]);
} else
Aug 21, 2004
Aug 21, 2004
119
120
121
122
123
124
125
if ( strcmp(argv[i], "-m") == 0 ) {
audio_channels = 1;
} else
if ( (strcmp(argv[i], "-c") == 0) && argv[i+1] ) {
++i;
audio_channels = atoi(argv[i]);
} else
Dec 11, 1999
Dec 11, 1999
126
127
128
129
if ( (strcmp(argv[i], "-b") == 0) && argv[i+1] ) {
++i;
audio_buffers = atoi(argv[i]);
} else
Feb 12, 2003
Feb 12, 2003
130
131
132
133
if ( (strcmp(argv[i], "-v") == 0) && argv[i+1] ) {
++i;
audio_volume = atoi(argv[i]);
} else
Oct 30, 1999
Oct 30, 1999
134
135
136
if ( strcmp(argv[i], "-l") == 0 ) {
looping = -1;
} else
Nov 1, 1999
Nov 1, 1999
137
138
139
if ( strcmp(argv[i], "-i") == 0 ) {
interactive = 1;
} else
Oct 21, 1999
Oct 21, 1999
140
141
if ( strcmp(argv[i], "-8") == 0 ) {
audio_format = AUDIO_U8;
Dec 21, 2004
Dec 21, 2004
142
143
144
} else
if ( strcmp(argv[i], "-rwops") == 0 ) {
rwops = 1;
Oct 21, 1999
Oct 21, 1999
145
146
} else {
Usage(argv[0]);
Apr 5, 2001
Apr 5, 2001
147
return(1);
Oct 21, 1999
Oct 21, 1999
148
149
150
151
}
}
if ( ! argv[i] ) {
Usage(argv[0]);
Apr 5, 2001
Apr 5, 2001
152
return(1);
Oct 21, 1999
Oct 21, 1999
153
154
155
156
157
}
/* Initialize the SDL library */
if ( SDL_Init(SDL_INIT_AUDIO) < 0 ) {
fprintf(stderr, "Couldn't initialize SDL: %s\n",SDL_GetError());
Apr 5, 2001
Apr 5, 2001
158
return(255);
Oct 21, 1999
Oct 21, 1999
159
}
Aug 21, 2004
Aug 21, 2004
160
Oct 21, 1999
Oct 21, 1999
161
atexit(CleanUp);
Jan 2, 2001
Jan 2, 2001
162
signal(SIGINT, IntHandler);
Oct 21, 1999
Oct 21, 1999
163
164
165
signal(SIGTERM, exit);
/* Open the audio device */
Dec 11, 1999
Dec 11, 1999
166
if (Mix_OpenAudio(audio_rate, audio_format, audio_channels, audio_buffers) < 0) {
Oct 21, 1999
Oct 21, 1999
167
fprintf(stderr, "Couldn't open audio: %s\n", SDL_GetError());
Apr 5, 2001
Apr 5, 2001
168
return(2);
Oct 21, 1999
Oct 21, 1999
169
170
} else {
Mix_QuerySpec(&audio_rate, &audio_format, &audio_channels);
May 1, 2006
May 1, 2006
171
printf("Opened audio at %d Hz %d bit %s (%s), %d bytes audio buffer\n", audio_rate,
Oct 21, 1999
Oct 21, 1999
172
(audio_format&0xFF),
Aug 21, 2004
Aug 21, 2004
173
(audio_channels > 2) ? "surround" : (audio_channels > 1) ? "stereo" : "mono",
May 1, 2006
May 1, 2006
174
(audio_format&0x1000) ? "BE" : "LE",
Dec 11, 1999
Dec 11, 1999
175
audio_buffers );
Oct 21, 1999
Oct 21, 1999
176
177
178
}
audio_open = 1;
Feb 12, 2003
Feb 12, 2003
179
180
181
/* Set the music volume */
Mix_VolumeMusic(audio_volume);
Oct 21, 1999
Oct 21, 1999
182
183
184
/* Set the external music player, if any */
Mix_SetMusicCMD(getenv("MUSIC_CMD"));
Jan 2, 2001
Jan 2, 2001
185
186
187
188
while (argv[i]) {
next_track = 0;
/* Load the requested music file */
Dec 21, 2004
Dec 21, 2004
189
190
if ( rwops ) {
rwfp = SDL_RWFromFile(argv[i], "rb");
Dec 27, 2004
Dec 27, 2004
191
music = Mix_LoadMUS_RW(rwfp);
Dec 21, 2004
Dec 21, 2004
192
193
194
} else {
music = Mix_LoadMUS(argv[i]);
}
Jan 2, 2001
Jan 2, 2001
195
196
197
if ( music == NULL ) {
fprintf(stderr, "Couldn't load %s: %s\n",
argv[i], SDL_GetError());
Apr 5, 2001
Apr 5, 2001
198
return(2);
Jan 2, 2001
Jan 2, 2001
199
200
201
202
203
}
/* Play and then exit */
printf("Playing %s\n", argv[i]);
Mix_FadeInMusic(music,looping,2000);
Dec 20, 2001
Dec 20, 2001
204
while ( !next_track && (Mix_PlayingMusic() || Mix_PausedMusic()) ) {
Jan 2, 2001
Jan 2, 2001
205
206
207
208
209
210
if(interactive)
Menu();
else
SDL_Delay(100);
}
Mix_FreeMusic(music);
Dec 21, 2004
Dec 21, 2004
211
212
213
if ( rwops ) {
SDL_FreeRW(rwfp);
}
Dec 18, 2001
Dec 18, 2001
214
music = NULL;
Oct 21, 1999
Oct 21, 1999
215
Jan 2, 2001
Jan 2, 2001
216
217
218
219
220
/* If the user presses Ctrl-C more than once, exit. */
SDL_Delay(500);
if ( next_track > 1 ) break;
i++;
Oct 21, 1999
Oct 21, 1999
221
}
Apr 5, 2001
Apr 5, 2001
222
return(0);
Oct 21, 1999
Oct 21, 1999
223
}