Skip to content

Latest commit

 

History

History
163 lines (140 loc) · 3.77 KB

playwave.c

File metadata and controls

163 lines (140 loc) · 3.77 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
/*
PLAYWAVE: 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
42
43
44
45
static int audio_open = 0;
static Mix_Chunk *wave = NULL;
void CleanUp(void)
{
if ( wave ) {
Mix_FreeChunk(wave);
wave = NULL;
}
Nov 30, 1999
Nov 30, 1999
46
47
48
49
if ( audio_open ) {
Mix_CloseAudio();
audio_open = 0;
}
Oct 21, 1999
Oct 21, 1999
50
51
52
53
54
SDL_Quit();
}
void Usage(char *argv0)
{
Nov 30, 1999
Nov 30, 1999
55
fprintf(stderr, "Usage: %s [-8] [-r rate] [-l] [-m] <wavefile>\n", argv0);
Oct 21, 1999
Oct 21, 1999
56
}
Jun 10, 2001
Jun 10, 2001
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/*#define TEST_MIX_CHANNELFINISHED*/
#ifdef TEST_MIX_CHANNELFINISHED /* rcg06072001 */
static volatile int channel_is_done = 0;
static void channel_complete_callback(int chan)
{
Mix_Chunk *done_chunk = Mix_GetChunk(chan);
printf("We were just alerted that Mixer channel #%d is done.\n", chan);
printf("Channel's chunk pointer is (%p).\n", done_chunk);
printf(" Which %s correct.\n", (wave == done_chunk) ? "is" : "is NOT");
channel_is_done = 1;
}
#endif
Oct 21, 1999
Oct 21, 1999
73
74
main(int argc, char *argv[])
{
Feb 11, 2000
Feb 11, 2000
75
int audio_rate;
Oct 21, 1999
Oct 21, 1999
76
77
Uint16 audio_format;
int audio_channels;
Nov 30, 1999
Nov 30, 1999
78
int loops = 0;
Oct 21, 1999
Oct 21, 1999
79
80
81
int i;
/* Initialize variables */
Oct 5, 2000
Oct 5, 2000
82
83
audio_rate = MIX_DEFAULT_FREQUENCY;
audio_format = MIX_DEFAULT_FORMAT;
Oct 21, 1999
Oct 21, 1999
84
85
86
87
88
89
90
91
92
93
94
audio_channels = 2;
/* 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
if ( strcmp(argv[i], "-m") == 0 ) {
audio_channels = 1;
} else
Nov 30, 1999
Nov 30, 1999
95
96
97
if ( strcmp(argv[i], "-l") == 0 ) {
loops = -1;
} else
Oct 21, 1999
Oct 21, 1999
98
99
100
101
if ( strcmp(argv[i], "-8") == 0 ) {
audio_format = AUDIO_U8;
} else {
Usage(argv[0]);
Apr 5, 2001
Apr 5, 2001
102
return(1);
Oct 21, 1999
Oct 21, 1999
103
104
105
106
}
}
if ( ! argv[i] ) {
Usage(argv[0]);
Apr 5, 2001
Apr 5, 2001
107
return(1);
Oct 21, 1999
Oct 21, 1999
108
109
110
111
112
}
/* 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
113
return(255);
Oct 21, 1999
Oct 21, 1999
114
115
116
117
118
119
120
121
}
atexit(CleanUp);
signal(SIGINT, exit);
signal(SIGTERM, exit);
/* Open the audio device */
if (Mix_OpenAudio(audio_rate, audio_format, audio_channels, 4096) < 0) {
fprintf(stderr, "Couldn't open audio: %s\n", SDL_GetError());
Apr 5, 2001
Apr 5, 2001
122
return(2);
Oct 21, 1999
Oct 21, 1999
123
124
} else {
Mix_QuerySpec(&audio_rate, &audio_format, &audio_channels);
Nov 30, 1999
Nov 30, 1999
125
printf("Opened audio at %d Hz %d bit %s", audio_rate,
Oct 21, 1999
Oct 21, 1999
126
127
(audio_format&0xFF),
(audio_channels > 1) ? "stereo" : "mono");
Nov 30, 1999
Nov 30, 1999
128
129
130
131
132
if ( loops ) {
printf(" (looping)\n");
} else {
putchar('\n');
}
Oct 21, 1999
Oct 21, 1999
133
134
135
136
137
138
139
140
}
audio_open = 1;
/* Load the requested wave file */
wave = Mix_LoadWAV(argv[i]);
if ( wave == NULL ) {
fprintf(stderr, "Couldn't load %s: %s\n",
argv[i], SDL_GetError());
Apr 5, 2001
Apr 5, 2001
141
return(2);
Oct 21, 1999
Oct 21, 1999
142
143
}
Jun 10, 2001
Jun 10, 2001
144
145
146
147
148
#ifdef TEST_MIX_CHANNELFINISHED /* rcg06072001 */
setbuf(stdout, NULL);
Mix_ChannelFinished(channel_complete_callback);
#endif
Oct 21, 1999
Oct 21, 1999
149
/* Play and then exit */
Nov 30, 1999
Nov 30, 1999
150
Mix_PlayChannel(0, wave, loops);
Jun 10, 2001
Jun 10, 2001
151
152
153
154
155
156
#ifdef TEST_MIX_CHANNELFINISHED /* rcg06072001 */
while (!channel_is_done) {
SDL_Delay(100);
}
#else
Oct 21, 1999
Oct 21, 1999
157
158
159
while ( Mix_Playing(0) ) {
SDL_Delay(100);
}
Jun 10, 2001
Jun 10, 2001
160
161
#endif
Apr 5, 2001
Apr 5, 2001
162
return(0);
Oct 21, 1999
Oct 21, 1999
163
}