Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
187 lines (156 loc) · 5.07 KB

SDL_diskaudio.c

File metadata and controls

187 lines (156 loc) · 5.07 KB
 
1
2
/*
SDL - Simple DirectMedia Layer
Feb 1, 2006
Feb 1, 2006
3
Copyright (C) 1997-2006 Sam Lantinga
4
5
This library is free software; you can redistribute it and/or
Feb 1, 2006
Feb 1, 2006
6
modify it under the terms of the GNU Lesser General Public
7
License as published by the Free Software Foundation; either
Feb 1, 2006
Feb 1, 2006
8
version 2.1 of the License, or (at your option) any later version.
9
10
11
12
This library 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
Feb 1, 2006
Feb 1, 2006
13
Lesser General Public License for more details.
Feb 1, 2006
Feb 1, 2006
15
16
17
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18
19
Sam Lantinga
Dec 14, 2001
Dec 14, 2001
20
slouken@libsdl.org
Mar 23, 2006
Mar 23, 2006
22
This file written by Ryan C. Gordon (icculus@icculus.org)
Feb 21, 2006
Feb 21, 2006
24
#include "SDL_config.h"
25
26
27
/* Output raw audio data to a file. */
Mar 4, 2006
Mar 4, 2006
28
#if HAVE_STDIO_H
29
#include <stdio.h>
Mar 4, 2006
Mar 4, 2006
30
#endif
Mar 4, 2006
Mar 4, 2006
32
#include "SDL_rwops.h"
Feb 10, 2006
Feb 10, 2006
33
#include "SDL_timer.h"
34
#include "SDL_audio.h"
Feb 16, 2006
Feb 16, 2006
35
36
37
#include "../SDL_audiomem.h"
#include "../SDL_audio_c.h"
#include "../SDL_audiodev_c.h"
38
39
40
41
42
43
44
45
46
47
48
49
#include "SDL_diskaudio.h"
/* The tag name used by DISK audio */
#define DISKAUD_DRIVER_NAME "disk"
/* environment variables and defaults. */
#define DISKENVR_OUTFILE "SDL_DISKAUDIOFILE"
#define DISKDEFAULT_OUTFILE "sdlaudio.raw"
#define DISKENVR_WRITEDELAY "SDL_DISKAUDIODELAY"
#define DISKDEFAULT_WRITEDELAY 150
/* Audio driver functions */
Oct 3, 2006
Oct 3, 2006
50
51
52
53
54
static int DISKAUD_OpenDevice(_THIS, const char *devname, int iscapture);
static void DISKAUD_WaitDevice(_THIS);
static void DISKAUD_PlayDevice(_THIS);
static Uint8 *DISKAUD_GetDeviceBuf(_THIS);
static void DISKAUD_CloseDevice(_THIS);
Jul 10, 2006
Jul 10, 2006
56
static const char *
Oct 4, 2006
Oct 4, 2006
57
DISKAUD_GetOutputFilename(const char *devname)
Oct 4, 2006
Oct 4, 2006
59
60
61
62
63
64
65
if (devname == NULL) {
devname = SDL_getenv(DISKENVR_OUTFILE);
if (devname == NULL) {
devname = DISKDEFAULT_OUTFILE;
}
}
return devname;
66
67
68
}
/* Audio driver bootstrap functions */
Jul 10, 2006
Jul 10, 2006
69
70
static int
DISKAUD_Available(void)
Oct 4, 2006
Oct 4, 2006
72
return 1; /* always available. */
Oct 1, 2006
Oct 1, 2006
75
76
static int
DISKAUD_Init(SDL_AudioDriverImpl *impl)
Jul 10, 2006
Jul 10, 2006
78
/* Initialize all variables that we clean on shutdown */
Oct 1, 2006
Oct 1, 2006
79
SDL_memset(impl, '\0', sizeof (SDL_AudioDriverImpl));
Jul 10, 2006
Jul 10, 2006
80
81
/* Set the function pointers */
Oct 3, 2006
Oct 3, 2006
82
83
84
85
86
impl->OpenDevice = DISKAUD_OpenDevice;
impl->WaitDevice = DISKAUD_WaitDevice;
impl->PlayDevice = DISKAUD_PlayDevice;
impl->GetDeviceBuf = DISKAUD_GetDeviceBuf;
impl->CloseDevice = DISKAUD_CloseDevice;
Jul 10, 2006
Jul 10, 2006
87
Oct 1, 2006
Oct 1, 2006
88
return 1;
89
90
91
}
AudioBootStrap DISKAUD_bootstrap = {
Jul 10, 2006
Jul 10, 2006
92
DISKAUD_DRIVER_NAME, "direct-to-disk audio",
Oct 4, 2006
Oct 4, 2006
93
DISKAUD_Available, DISKAUD_Init, 1
94
95
96
};
/* This function waits until it is possible to write a full sound buffer */
Jul 10, 2006
Jul 10, 2006
97
static void
Oct 3, 2006
Oct 3, 2006
98
DISKAUD_WaitDevice(_THIS)
Jul 10, 2006
Jul 10, 2006
100
SDL_Delay(this->hidden->write_delay);
Jul 10, 2006
Jul 10, 2006
103
static void
Oct 3, 2006
Oct 3, 2006
104
DISKAUD_PlayDevice(_THIS)
Jul 10, 2006
Jul 10, 2006
106
int written;
Jul 10, 2006
Jul 10, 2006
108
109
110
/* Write the audio data */
written = SDL_RWwrite(this->hidden->output,
this->hidden->mixbuf, 1, this->hidden->mixlen);
Jul 10, 2006
Jul 10, 2006
112
113
114
115
/* If we couldn't write, assume fatal error for now */
if ((Uint32) written != this->hidden->mixlen) {
this->enabled = 0;
}
116
#ifdef DEBUG_AUDIO
Jul 10, 2006
Jul 10, 2006
117
fprintf(stderr, "Wrote %d bytes of audio data\n", written);
118
119
120
#endif
}
Jul 10, 2006
Jul 10, 2006
121
static Uint8 *
Oct 3, 2006
Oct 3, 2006
122
DISKAUD_GetDeviceBuf(_THIS)
Jul 10, 2006
Jul 10, 2006
124
return (this->hidden->mixbuf);
Jul 10, 2006
Jul 10, 2006
127
static void
Oct 3, 2006
Oct 3, 2006
128
DISKAUD_CloseDevice(_THIS)
Oct 4, 2006
Oct 4, 2006
130
131
132
133
134
135
136
137
138
139
140
if (this->hidden != NULL) {
if (this->hidden->mixbuf != NULL) {
SDL_FreeAudioMem(this->hidden->mixbuf);
this->hidden->mixbuf = NULL;
}
if (this->hidden->output != NULL) {
SDL_RWclose(this->hidden->output);
this->hidden->output = NULL;
}
SDL_free(this->hidden);
this->hidden = NULL;
Jul 10, 2006
Jul 10, 2006
141
}
Jul 10, 2006
Jul 10, 2006
144
static int
Oct 3, 2006
Oct 3, 2006
145
DISKAUD_OpenDevice(_THIS, const char *devname, int iscapture)
Oct 1, 2006
Oct 1, 2006
147
const char *envr = SDL_getenv(DISKENVR_WRITEDELAY);
Oct 4, 2006
Oct 4, 2006
148
const char *fname = DISKAUD_GetOutputFilename(devname);
Oct 1, 2006
Oct 1, 2006
149
150
151
152
153
154
155
156
157
this->hidden = (struct SDL_PrivateAudioData *)
SDL_malloc(sizeof (*this->hidden));
if (this->hidden == NULL) {
SDL_OutOfMemory();
return 0;
}
SDL_memset(this->hidden, 0, sizeof (*this->hidden));
Jul 10, 2006
Jul 10, 2006
158
159
160
/* Open the audio device */
this->hidden->output = SDL_RWFromFile(fname, "wb");
if (this->hidden->output == NULL) {
Oct 3, 2006
Oct 3, 2006
161
DISKAUD_CloseDevice(this);
Oct 1, 2006
Oct 1, 2006
162
return 0;
Jul 10, 2006
Jul 10, 2006
163
}
Jul 10, 2006
Jul 10, 2006
165
166
167
/* Allocate mixing buffer */
this->hidden->mixbuf = (Uint8 *) SDL_AllocAudioMem(this->hidden->mixlen);
if (this->hidden->mixbuf == NULL) {
Oct 3, 2006
Oct 3, 2006
168
DISKAUD_CloseDevice(this);
Oct 1, 2006
Oct 1, 2006
169
return 0;
Jul 10, 2006
Jul 10, 2006
170
}
Oct 1, 2006
Oct 1, 2006
171
172
173
174
175
176
177
178
179
180
181
SDL_memset(this->hidden->mixbuf, this->spec.silence, this->spec.size);
this->hidden->mixlen = this->spec.size;
this->hidden->write_delay =
(envr) ? SDL_atoi(envr) : DISKDEFAULT_WRITEDELAY;
#if HAVE_STDIO_H
fprintf(stderr,
"WARNING: You are using the SDL disk writer audio driver!\n"
" Writing to file [%s].\n", fname);
#endif
Jul 10, 2006
Jul 10, 2006
183
/* We're ready to rock and roll. :-) */
Oct 1, 2006
Oct 1, 2006
184
return 1;
Jul 10, 2006
Jul 10, 2006
187
/* vi: set ts=4 sw=4 expandtab: */