Skip to content

Latest commit

 

History

History
173 lines (153 loc) · 3.9 KB

playmus.c

File metadata and controls

173 lines (153 loc) · 3.9 KB
 
Oct 21, 1999
Oct 21, 1999
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
/*
PLAYMUS: A test application for the SDL mixer library.
Copyright (C) 1997-1999 Sam Lantinga
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Sam Lantinga
5635-34 Springhouse Dr.
Pleasanton, CA 94588 (USA)
slouken@devolution.com
*/
#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
39
40
41
static int audio_open = 0;
static Mix_Music *music = NULL;
void CleanUp(void)
{
Oct 23, 1999
Oct 23, 1999
42
43
44
45
if( Mix_PlayingMusic() ) {
Mix_FadeOutMusic(1500);
SDL_Delay(1500);
}
Oct 21, 1999
Oct 21, 1999
46
47
48
49
if ( music ) {
Mix_FreeMusic(music);
music = NULL;
}
Oct 30, 1999
Oct 30, 1999
50
51
52
53
if ( audio_open ) {
Mix_CloseAudio();
audio_open = 0;
}
Oct 21, 1999
Oct 21, 1999
54
55
56
57
58
SDL_Quit();
}
void Usage(char *argv0)
{
Dec 11, 1999
Dec 11, 1999
59
fprintf(stderr, "Usage: %s [-i] |-l] [-8] [-r rate] [-b buffers] [-s] <musicfile>\n", argv0);
Oct 21, 1999
Oct 21, 1999
60
}
Nov 1, 1999
Nov 1, 1999
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
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");
}
Oct 21, 1999
Oct 21, 1999
84
85
main(int argc, char *argv[])
{
Feb 11, 2000
Feb 11, 2000
86
int audio_rate;
Oct 21, 1999
Oct 21, 1999
87
88
Uint16 audio_format;
int audio_channels;
Dec 11, 1999
Dec 11, 1999
89
int audio_buffers;
Oct 30, 1999
Oct 30, 1999
90
int looping = 0;
Nov 1, 1999
Nov 1, 1999
91
int interactive = 0;
Oct 21, 1999
Oct 21, 1999
92
93
94
95
96
97
int i;
/* Initialize variables */
audio_rate = 22050;
audio_format = AUDIO_S16;
audio_channels = 2;
Dec 11, 1999
Dec 11, 1999
98
audio_buffers = 4096;
Oct 21, 1999
Oct 21, 1999
99
100
101
102
103
104
105
/* 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
Dec 11, 1999
Dec 11, 1999
106
107
108
109
if ( (strcmp(argv[i], "-b") == 0) && argv[i+1] ) {
++i;
audio_buffers = atoi(argv[i]);
} else
Oct 21, 1999
Oct 21, 1999
110
111
112
if ( strcmp(argv[i], "-m") == 0 ) {
audio_channels = 1;
} else
Oct 30, 1999
Oct 30, 1999
113
114
115
if ( strcmp(argv[i], "-l") == 0 ) {
looping = -1;
} else
Nov 1, 1999
Nov 1, 1999
116
117
118
if ( strcmp(argv[i], "-i") == 0 ) {
interactive = 1;
} else
Oct 21, 1999
Oct 21, 1999
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
if ( strcmp(argv[i], "-8") == 0 ) {
audio_format = AUDIO_U8;
} else {
Usage(argv[0]);
exit(1);
}
}
if ( ! argv[i] ) {
Usage(argv[0]);
exit(1);
}
/* Initialize the SDL library */
if ( SDL_Init(SDL_INIT_AUDIO) < 0 ) {
fprintf(stderr, "Couldn't initialize SDL: %s\n",SDL_GetError());
exit(255);
}
atexit(CleanUp);
signal(SIGINT, exit);
signal(SIGTERM, exit);
/* Open the audio device */
Dec 11, 1999
Dec 11, 1999
141
if (Mix_OpenAudio(audio_rate, audio_format, audio_channels, audio_buffers) < 0) {
Oct 21, 1999
Oct 21, 1999
142
143
144
145
fprintf(stderr, "Couldn't open audio: %s\n", SDL_GetError());
exit(2);
} else {
Mix_QuerySpec(&audio_rate, &audio_format, &audio_channels);
Dec 11, 1999
Dec 11, 1999
146
printf("Opened audio at %d Hz %d bit %s, %d bytes audio buffer\n", audio_rate,
Oct 21, 1999
Oct 21, 1999
147
(audio_format&0xFF),
Dec 11, 1999
Dec 11, 1999
148
149
(audio_channels > 1) ? "stereo" : "mono",
audio_buffers );
Oct 21, 1999
Oct 21, 1999
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
}
audio_open = 1;
/* Set the external music player, if any */
Mix_SetMusicCMD(getenv("MUSIC_CMD"));
/* Load the requested music file */
music = Mix_LoadMUS(argv[i]);
if ( music == NULL ) {
fprintf(stderr, "Couldn't load %s: %s\n",
argv[i], SDL_GetError());
exit(2);
}
/* Play and then exit */
Oct 30, 1999
Oct 30, 1999
165
Mix_FadeInMusic(music,looping,2000);
Nov 1, 1999
Nov 1, 1999
166
167
168
169
170
while ( Mix_PlayingMusic() || Mix_PausedMusic() ) {
if(interactive)
Menu();
else
SDL_Delay(100);
Oct 21, 1999
Oct 21, 1999
171
172
173
}
exit(0);
}