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

Latest commit

 

History

History
168 lines (140 loc) · 4.51 KB

SDL_diskaudio.c

File metadata and controls

168 lines (140 loc) · 4.51 KB
 
1
2
/*
SDL - Simple DirectMedia Layer
Dec 8, 2008
Dec 8, 2008
3
Copyright (C) 1997-2009 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
#include "../SDL_audiomem.h"
#include "../SDL_audio_c.h"
37
38
39
40
41
42
43
44
45
46
47
#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
Jul 10, 2006
Jul 10, 2006
48
static const char *
Oct 17, 2006
Oct 17, 2006
49
DISKAUD_GetOutputFilename(const char *devname)
Oct 17, 2006
Oct 17, 2006
51
52
53
54
if (devname == NULL) {
devname = SDL_getenv(DISKENVR_OUTFILE);
if (devname == NULL) {
devname = DISKDEFAULT_OUTFILE;
Jul 10, 2006
Jul 10, 2006
55
56
}
}
Oct 17, 2006
Oct 17, 2006
57
return devname;
58
59
60
}
/* This function waits until it is possible to write a full sound buffer */
Jul 10, 2006
Jul 10, 2006
61
static void
Oct 17, 2006
Oct 17, 2006
62
DISKAUD_WaitDevice(_THIS)
Jul 10, 2006
Jul 10, 2006
64
SDL_Delay(this->hidden->write_delay);
Jul 10, 2006
Jul 10, 2006
67
static void
Oct 17, 2006
Oct 17, 2006
68
DISKAUD_PlayDevice(_THIS)
Sep 5, 2009
Sep 5, 2009
70
size_t written;
Jul 10, 2006
Jul 10, 2006
72
73
74
/* Write the audio data */
written = SDL_RWwrite(this->hidden->output,
this->hidden->mixbuf, 1, this->hidden->mixlen);
Jul 10, 2006
Jul 10, 2006
76
/* If we couldn't write, assume fatal error for now */
Sep 5, 2009
Sep 5, 2009
77
if (written != this->hidden->mixlen) {
Jul 10, 2006
Jul 10, 2006
78
79
this->enabled = 0;
}
80
#ifdef DEBUG_AUDIO
Jul 10, 2006
Jul 10, 2006
81
fprintf(stderr, "Wrote %d bytes of audio data\n", written);
82
83
84
#endif
}
Jul 10, 2006
Jul 10, 2006
85
static Uint8 *
Oct 17, 2006
Oct 17, 2006
86
DISKAUD_GetDeviceBuf(_THIS)
Jul 10, 2006
Jul 10, 2006
88
return (this->hidden->mixbuf);
Jul 10, 2006
Jul 10, 2006
91
static void
Oct 17, 2006
Oct 17, 2006
92
DISKAUD_CloseDevice(_THIS)
Oct 17, 2006
Oct 17, 2006
94
95
96
97
98
99
100
101
102
103
104
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
105
}
Jul 10, 2006
Jul 10, 2006
108
static int
Oct 17, 2006
Oct 17, 2006
109
DISKAUD_OpenDevice(_THIS, const char *devname, int iscapture)
Oct 17, 2006
Oct 17, 2006
111
112
113
114
const char *envr = SDL_getenv(DISKENVR_WRITEDELAY);
const char *fname = DISKAUD_GetOutputFilename(devname);
this->hidden = (struct SDL_PrivateAudioData *)
Oct 28, 2006
Oct 28, 2006
115
SDL_malloc(sizeof(*this->hidden));
Oct 17, 2006
Oct 17, 2006
116
117
118
119
if (this->hidden == NULL) {
SDL_OutOfMemory();
return 0;
}
Oct 28, 2006
Oct 28, 2006
120
SDL_memset(this->hidden, 0, sizeof(*this->hidden));
Jul 10, 2006
Jul 10, 2006
122
123
124
/* Open the audio device */
this->hidden->output = SDL_RWFromFile(fname, "wb");
if (this->hidden->output == NULL) {
Oct 17, 2006
Oct 17, 2006
125
126
DISKAUD_CloseDevice(this);
return 0;
Jul 10, 2006
Jul 10, 2006
127
}
Jul 10, 2006
Jul 10, 2006
129
130
131
/* Allocate mixing buffer */
this->hidden->mixbuf = (Uint8 *) SDL_AllocAudioMem(this->hidden->mixlen);
if (this->hidden->mixbuf == NULL) {
Oct 17, 2006
Oct 17, 2006
132
133
DISKAUD_CloseDevice(this);
return 0;
Jul 10, 2006
Jul 10, 2006
134
}
Oct 17, 2006
Oct 17, 2006
135
136
137
138
139
140
141
142
143
144
145
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
147
/* We're ready to rock and roll. :-) */
Oct 17, 2006
Oct 17, 2006
148
149
150
151
return 1;
}
static int
Oct 28, 2006
Oct 28, 2006
152
DISKAUD_Init(SDL_AudioDriverImpl * impl)
Oct 17, 2006
Oct 17, 2006
153
154
155
156
157
158
159
160
161
{
/* Set the function pointers */
impl->OpenDevice = DISKAUD_OpenDevice;
impl->WaitDevice = DISKAUD_WaitDevice;
impl->PlayDevice = DISKAUD_PlayDevice;
impl->GetDeviceBuf = DISKAUD_GetDeviceBuf;
impl->CloseDevice = DISKAUD_CloseDevice;
return 1;
Oct 17, 2006
Oct 17, 2006
164
165
166
167
AudioBootStrap DISKAUD_bootstrap = {
DISKAUD_DRIVER_NAME, "direct-to-disk audio", DISKAUD_Init, 1
};
Jul 10, 2006
Jul 10, 2006
168
/* vi: set ts=4 sw=4 expandtab: */