annotate music2/music.cc @ 52:15a18fbe6f21

* Known bugs added to the README * Code cleaning (0 -> NULL when needed, indentation, spaces, ...)
author thib
date Sat, 18 Apr 2009 18:35:39 +0000
parents 01aa5ddf7dc8
children ddbcbd000206
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
223b71206888 Initial import
thib
parents:
diff changeset
1 /*
223b71206888 Initial import
thib
parents:
diff changeset
2 * Copyright (c) 2004-2006 Kazunori "jagarl" Ueno
223b71206888 Initial import
thib
parents:
diff changeset
3 * All rights reserved.
223b71206888 Initial import
thib
parents:
diff changeset
4 *
223b71206888 Initial import
thib
parents:
diff changeset
5 * Redistribution and use in source and binary forms, with or without
223b71206888 Initial import
thib
parents:
diff changeset
6 * modification, are permitted provided that the following conditions
223b71206888 Initial import
thib
parents:
diff changeset
7 * are met:
223b71206888 Initial import
thib
parents:
diff changeset
8 * 1. Redistributions of source code must retain the above copyright
223b71206888 Initial import
thib
parents:
diff changeset
9 * notice, this list of conditions and the following disclaimer.
223b71206888 Initial import
thib
parents:
diff changeset
10 * 2. Redistributions in binary form must reproduce the above copyright
223b71206888 Initial import
thib
parents:
diff changeset
11 * notice, this list of conditions and the following disclaimer in the
223b71206888 Initial import
thib
parents:
diff changeset
12 * documentation and/or other materials provided with the distribution.
223b71206888 Initial import
thib
parents:
diff changeset
13 * 3. The name of the author may not be used to endorse or promote products
223b71206888 Initial import
thib
parents:
diff changeset
14 * derived from this software without specific prior written permission.
223b71206888 Initial import
thib
parents:
diff changeset
15 *
223b71206888 Initial import
thib
parents:
diff changeset
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
223b71206888 Initial import
thib
parents:
diff changeset
17 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
223b71206888 Initial import
thib
parents:
diff changeset
18 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
223b71206888 Initial import
thib
parents:
diff changeset
19 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
223b71206888 Initial import
thib
parents:
diff changeset
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
223b71206888 Initial import
thib
parents:
diff changeset
21 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
223b71206888 Initial import
thib
parents:
diff changeset
22 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
223b71206888 Initial import
thib
parents:
diff changeset
23 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
223b71206888 Initial import
thib
parents:
diff changeset
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
223b71206888 Initial import
thib
parents:
diff changeset
25 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
223b71206888 Initial import
thib
parents:
diff changeset
26 */
223b71206888 Initial import
thib
parents:
diff changeset
27
223b71206888 Initial import
thib
parents:
diff changeset
28 /* music.cc SDL_mixer を用いた音楽再生ルーチン */
223b71206888 Initial import
thib
parents:
diff changeset
29
223b71206888 Initial import
thib
parents:
diff changeset
30
223b71206888 Initial import
thib
parents:
diff changeset
31 #include <string.h>
223b71206888 Initial import
thib
parents:
diff changeset
32 #include <stdio.h>
223b71206888 Initial import
thib
parents:
diff changeset
33 #include <unistd.h>
223b71206888 Initial import
thib
parents:
diff changeset
34 #include <fcntl.h>
223b71206888 Initial import
thib
parents:
diff changeset
35 #include <ctype.h>
223b71206888 Initial import
thib
parents:
diff changeset
36 #include <signal.h>
223b71206888 Initial import
thib
parents:
diff changeset
37 #include"system/system_config.h"
223b71206888 Initial import
thib
parents:
diff changeset
38 #include"system/file.h"
223b71206888 Initial import
thib
parents:
diff changeset
39 #include "music.h"
52
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
40 #include <SDL.h>
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
41 #include <SDL_mixer.h>
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
42 #include "wavfile.h"
0
223b71206888 Initial import
thib
parents:
diff changeset
43
223b71206888 Initial import
thib
parents:
diff changeset
44 using namespace std;
223b71206888 Initial import
thib
parents:
diff changeset
45
52
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
46 int pcm_enable = 0;
0
223b71206888 Initial import
thib
parents:
diff changeset
47 Mix_Chunk *play_chunk[MIX_PCM_SIZE];
223b71206888 Initial import
thib
parents:
diff changeset
48
223b71206888 Initial import
thib
parents:
diff changeset
49 MuSys::MuSys(AyuSysConfig& _config) : config(_config), movie_id(-1), music_enable(1) {
223b71206888 Initial import
thib
parents:
diff changeset
50 int i;
223b71206888 Initial import
thib
parents:
diff changeset
51 for (i=0; i<MIX_PCM_SIZE; i++)
223b71206888 Initial import
thib
parents:
diff changeset
52 play_chunk[i] = 0;
223b71206888 Initial import
thib
parents:
diff changeset
53 cdrom_track[0] = 0;
223b71206888 Initial import
thib
parents:
diff changeset
54 effec_track[0] = 0;
223b71206888 Initial import
thib
parents:
diff changeset
55 }
223b71206888 Initial import
thib
parents:
diff changeset
56
223b71206888 Initial import
thib
parents:
diff changeset
57
223b71206888 Initial import
thib
parents:
diff changeset
58 // #define delete fprintf(stderr,"smus.cc: %d.",__LINE__), delete
223b71206888 Initial import
thib
parents:
diff changeset
59
26
f45da03ca631 * Corrected --disable-vorbis in configure.ac
thib
parents: 18
diff changeset
60 void bgm_start(const char* path, int loop_pt, int * volmod);
f45da03ca631 * Corrected --disable-vorbis in configure.ac
thib
parents: 18
diff changeset
61 void effec_start(int chn, const char* path, int loop, int fadein_time, int * volmod);
0
223b71206888 Initial import
thib
parents:
diff changeset
62 void bgm_fadeout(int time);
223b71206888 Initial import
thib
parents:
diff changeset
63
223b71206888 Initial import
thib
parents:
diff changeset
64 void MuSys::PlayCDROM(char* name, int play_count) {
26
f45da03ca631 * Corrected --disable-vorbis in configure.ac
thib
parents: 18
diff changeset
65 config.GetParam("#VOLMOD", 4, &volmod[0], &volmod[1], &volmod[2], &volmod[3]);
52
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
66
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
67 char wave[128];
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
68 wave[127] = '\0';
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
69 wave[0] = '\0';
0
223b71206888 Initial import
thib
parents:
diff changeset
70
223b71206888 Initial import
thib
parents:
diff changeset
71 strcpy(cdrom_track, name);
223b71206888 Initial import
thib
parents:
diff changeset
72
223b71206888 Initial import
thib
parents:
diff changeset
73 StopCDROM(0);
223b71206888 Initial import
thib
parents:
diff changeset
74 strcpy(cdrom_track, name);
223b71206888 Initial import
thib
parents:
diff changeset
75
223b71206888 Initial import
thib
parents:
diff changeset
76 /* name -> track */
223b71206888 Initial import
thib
parents:
diff changeset
77 int track =config.track_name.CDTrack(name);
223b71206888 Initial import
thib
parents:
diff changeset
78 if (track == -1) track = atoi(name);
52
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
79 if (config.track_name.WaveTrack(name) != NULL) strncpy(wave, config.track_name.WaveTrack(name), 127);
0
223b71206888 Initial import
thib
parents:
diff changeset
80 if (wave[0] == 0 && track != 0) { /* DSTRACK が見つからない場合、CDTRACKを使用する */
52
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
81 sprintf(wave, "audio_%02d", track);
0
223b71206888 Initial import
thib
parents:
diff changeset
82 }
223b71206888 Initial import
thib
parents:
diff changeset
83 if (wave == 0) return;
223b71206888 Initial import
thib
parents:
diff changeset
84 // BGM 再生
223b71206888 Initial import
thib
parents:
diff changeset
85 if (!pcm_enable) return;
223b71206888 Initial import
thib
parents:
diff changeset
86 if (play_count == 0)
26
f45da03ca631 * Corrected --disable-vorbis in configure.ac
thib
parents: 18
diff changeset
87 bgm_start(wave, -1, volmod);
0
223b71206888 Initial import
thib
parents:
diff changeset
88 else
26
f45da03ca631 * Corrected --disable-vorbis in configure.ac
thib
parents: 18
diff changeset
89 bgm_start(wave, config.track_name.TrackStart(name), volmod);
0
223b71206888 Initial import
thib
parents:
diff changeset
90 return;
223b71206888 Initial import
thib
parents:
diff changeset
91 }
223b71206888 Initial import
thib
parents:
diff changeset
92
223b71206888 Initial import
thib
parents:
diff changeset
93 void MuSys::StopCDROM(int time)
223b71206888 Initial import
thib
parents:
diff changeset
94 {
223b71206888 Initial import
thib
parents:
diff changeset
95 cdrom_track[0] = '\0';
223b71206888 Initial import
thib
parents:
diff changeset
96 if (!pcm_enable) return;
223b71206888 Initial import
thib
parents:
diff changeset
97 bgm_fadeout(time);
223b71206888 Initial import
thib
parents:
diff changeset
98 }
223b71206888 Initial import
thib
parents:
diff changeset
99
223b71206888 Initial import
thib
parents:
diff changeset
100 void MuSys::PlaySE(const char* se, int loop_flag, int channel) {
52
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
101 if (!pcm_enable) return;
0
223b71206888 Initial import
thib
parents:
diff changeset
102 if (loop_flag)
26
f45da03ca631 * Corrected --disable-vorbis in configure.ac
thib
parents: 18
diff changeset
103 effec_start(MIX_PCM_EFFEC, se, 10000, 0, volmod);
0
223b71206888 Initial import
thib
parents:
diff changeset
104 else
26
f45da03ca631 * Corrected --disable-vorbis in configure.ac
thib
parents: 18
diff changeset
105 effec_start(MIX_PCM_EFFEC, se, 0, 0, volmod);
0
223b71206888 Initial import
thib
parents:
diff changeset
106 return;
223b71206888 Initial import
thib
parents:
diff changeset
107 }
223b71206888 Initial import
thib
parents:
diff changeset
108 void MuSys::PlaySE(int number) {
223b71206888 Initial import
thib
parents:
diff changeset
109 if (! pcm_enable) return;
223b71206888 Initial import
thib
parents:
diff changeset
110 const char* se_name = config.track_name.SETrack(number);
52
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
111 if (se_name == NULL) return;
26
f45da03ca631 * Corrected --disable-vorbis in configure.ac
thib
parents: 18
diff changeset
112 effec_start(MIX_PCM_EFFEC, se_name, 0, 0, volmod);
0
223b71206888 Initial import
thib
parents:
diff changeset
113 return;
223b71206888 Initial import
thib
parents:
diff changeset
114 }
223b71206888 Initial import
thib
parents:
diff changeset
115 void MuSys::StopSE(int time) {
52
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
116 if (!pcm_enable) return;
0
223b71206888 Initial import
thib
parents:
diff changeset
117 if (time == 0)
223b71206888 Initial import
thib
parents:
diff changeset
118 Mix_HaltChannel(MIX_PCM_EFFEC);
223b71206888 Initial import
thib
parents:
diff changeset
119 else
223b71206888 Initial import
thib
parents:
diff changeset
120 Mix_FadeOutChannel(MIX_PCM_EFFEC, time);
223b71206888 Initial import
thib
parents:
diff changeset
121 }
223b71206888 Initial import
thib
parents:
diff changeset
122 bool MuSys::IsStopSE(void) {
52
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
123 if (!pcm_enable) return true;
0
223b71206888 Initial import
thib
parents:
diff changeset
124 if (Mix_Playing(MIX_PCM_EFFEC) != 0) return false;
223b71206888 Initial import
thib
parents:
diff changeset
125 return true;
223b71206888 Initial import
thib
parents:
diff changeset
126 }
223b71206888 Initial import
thib
parents:
diff changeset
127
223b71206888 Initial import
thib
parents:
diff changeset
128 void MuSys::StopKoe(int time) {
52
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
129 if (!pcm_enable) return;
0
223b71206888 Initial import
thib
parents:
diff changeset
130 if (time == 0) Mix_HaltChannel(MIX_PCM_KOE);
223b71206888 Initial import
thib
parents:
diff changeset
131 else Mix_FadeOutChannel(MIX_PCM_KOE, time);
223b71206888 Initial import
thib
parents:
diff changeset
132 }
223b71206888 Initial import
thib
parents:
diff changeset
133
223b71206888 Initial import
thib
parents:
diff changeset
134 void MuSys::InitMusic(void)
223b71206888 Initial import
thib
parents:
diff changeset
135 {
223b71206888 Initial import
thib
parents:
diff changeset
136 if (music_enable != 1) return;
223b71206888 Initial import
thib
parents:
diff changeset
137 cdrom_track[0] = '\0';
223b71206888 Initial import
thib
parents:
diff changeset
138 if ( Mix_OpenAudio( 44100, MIX_DEFAULT_FORMAT, MIX_DEFAULT_CHANNELS, DEFAULT_AUDIOBUF ) < 0 ){
223b71206888 Initial import
thib
parents:
diff changeset
139 // if ( Mix_OpenAudio( 48000, MIX_DEFAULT_FORMAT, MIX_DEFAULT_CHANNELS, DEFAULT_AUDIOBUF ) < 0 ){
223b71206888 Initial import
thib
parents:
diff changeset
140 return;
223b71206888 Initial import
thib
parents:
diff changeset
141 }
223b71206888 Initial import
thib
parents:
diff changeset
142 int freq, channels; Uint16 format;
223b71206888 Initial import
thib
parents:
diff changeset
143 if ( Mix_QuerySpec(&freq, &format, &channels) ) {
223b71206888 Initial import
thib
parents:
diff changeset
144 WAVFILE::freq = freq;
223b71206888 Initial import
thib
parents:
diff changeset
145 WAVFILE::format = format;
223b71206888 Initial import
thib
parents:
diff changeset
146 WAVFILE::channels = channels;
223b71206888 Initial import
thib
parents:
diff changeset
147 }
223b71206888 Initial import
thib
parents:
diff changeset
148 pcm_enable = 1;
223b71206888 Initial import
thib
parents:
diff changeset
149 Mix_AllocateChannels( MIX_PCM_SIZE);
223b71206888 Initial import
thib
parents:
diff changeset
150 music_enable = 2;
223b71206888 Initial import
thib
parents:
diff changeset
151 return;
223b71206888 Initial import
thib
parents:
diff changeset
152 }
223b71206888 Initial import
thib
parents:
diff changeset
153 void MuSys::FinalizeMusic(void)
223b71206888 Initial import
thib
parents:
diff changeset
154 {
223b71206888 Initial import
thib
parents:
diff changeset
155 if (music_enable != 2) return;
223b71206888 Initial import
thib
parents:
diff changeset
156 int i;
223b71206888 Initial import
thib
parents:
diff changeset
157 for (i=0; i<MIX_PCM_SIZE; i++) {
223b71206888 Initial import
thib
parents:
diff changeset
158 Mix_HaltChannel(i);
223b71206888 Initial import
thib
parents:
diff changeset
159 if (play_chunk[i]) {
223b71206888 Initial import
thib
parents:
diff changeset
160 Mix_FreeChunk(play_chunk[i]);
223b71206888 Initial import
thib
parents:
diff changeset
161 }
223b71206888 Initial import
thib
parents:
diff changeset
162 play_chunk[i] = 0;
223b71206888 Initial import
thib
parents:
diff changeset
163 }
223b71206888 Initial import
thib
parents:
diff changeset
164 Mix_HaltMusic();
223b71206888 Initial import
thib
parents:
diff changeset
165 Mix_HookMusic(0,0);
223b71206888 Initial import
thib
parents:
diff changeset
166 Mix_CloseAudio();
223b71206888 Initial import
thib
parents:
diff changeset
167 pcm_enable = 0;
223b71206888 Initial import
thib
parents:
diff changeset
168 music_enable = 1;
223b71206888 Initial import
thib
parents:
diff changeset
169 }
223b71206888 Initial import
thib
parents:
diff changeset
170
223b71206888 Initial import
thib
parents:
diff changeset
171 /*************************************************************************
223b71206888 Initial import
thib
parents:
diff changeset
172 **
223b71206888 Initial import
thib
parents:
diff changeset
173 ** ファイル読み込み / 外部コマンド呼び出し
223b71206888 Initial import
thib
parents:
diff changeset
174 */
223b71206888 Initial import
thib
parents:
diff changeset
175
223b71206888 Initial import
thib
parents:
diff changeset
176 struct WavChunk {
223b71206888 Initial import
thib
parents:
diff changeset
177 WAVFILE* wav;
223b71206888 Initial import
thib
parents:
diff changeset
178 int loop_pt;
26
f45da03ca631 * Corrected --disable-vorbis in configure.ac
thib
parents: 18
diff changeset
179 int *volmod;
0
223b71206888 Initial import
thib
parents:
diff changeset
180 static void callback(void* userdata, Uint8* stream, int len);
223b71206888 Initial import
thib
parents:
diff changeset
181 };
52
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
182
0
223b71206888 Initial import
thib
parents:
diff changeset
183 WavChunk wav_playing;
223b71206888 Initial import
thib
parents:
diff changeset
184 static int fadetime_total;
223b71206888 Initial import
thib
parents:
diff changeset
185 static int fadecount;
223b71206888 Initial import
thib
parents:
diff changeset
186
223b71206888 Initial import
thib
parents:
diff changeset
187 void WavChunk::callback(void *userdata, Uint8 *stream, int len)
223b71206888 Initial import
thib
parents:
diff changeset
188 {
223b71206888 Initial import
thib
parents:
diff changeset
189 WavChunk* chunk = (WavChunk*)userdata;
223b71206888 Initial import
thib
parents:
diff changeset
190 int count;
223b71206888 Initial import
thib
parents:
diff changeset
191 if (chunk->loop_pt == -2) { // 再生終了後
223b71206888 Initial import
thib
parents:
diff changeset
192 memset(stream, 0, len);
223b71206888 Initial import
thib
parents:
diff changeset
193 return;
223b71206888 Initial import
thib
parents:
diff changeset
194 }
37
f88d47a4bf87 * Modernize configure.ac
thib
parents: 26
diff changeset
195
f88d47a4bf87 * Modernize configure.ac
thib
parents: 26
diff changeset
196 char* stream_dup = new char[len];
f88d47a4bf87 * Modernize configure.ac
thib
parents: 26
diff changeset
197 count = chunk->wav->Read( (char*)stream_dup, 4, len/4);
0
223b71206888 Initial import
thib
parents:
diff changeset
198
223b71206888 Initial import
thib
parents:
diff changeset
199 if (count != len/4) {
223b71206888 Initial import
thib
parents:
diff changeset
200 // 最後まで再生した
223b71206888 Initial import
thib
parents:
diff changeset
201 if (chunk->loop_pt == -1) { // 終了
223b71206888 Initial import
thib
parents:
diff changeset
202 chunk->loop_pt = -2;
37
f88d47a4bf87 * Modernize configure.ac
thib
parents: 26
diff changeset
203 memset(stream_dup+count*4, 0, len-count*4);
0
223b71206888 Initial import
thib
parents:
diff changeset
204 } else {
223b71206888 Initial import
thib
parents:
diff changeset
205 chunk->wav->Seek(chunk->loop_pt);
37
f88d47a4bf87 * Modernize configure.ac
thib
parents: 26
diff changeset
206 chunk->wav->Read( (char*)(stream_dup+count*4), 4, len/4-count);
0
223b71206888 Initial import
thib
parents:
diff changeset
207 }
223b71206888 Initial import
thib
parents:
diff changeset
208 }
3
c4af1e9ab8d1 music volume can be changed (harcorded constant atm)
thib
parents: 0
diff changeset
209
26
f45da03ca631 * Corrected --disable-vorbis in configure.ac
thib
parents: 18
diff changeset
210 int cur_vol = (*chunk->volmod)*SDL_MIX_MAXVOLUME/255;
3
c4af1e9ab8d1 music volume can be changed (harcorded constant atm)
thib
parents: 0
diff changeset
211
0
223b71206888 Initial import
thib
parents:
diff changeset
212 if (fadetime_total) {
223b71206888 Initial import
thib
parents:
diff changeset
213 // 音楽を停止中 (fade out)
223b71206888 Initial import
thib
parents:
diff changeset
214 int count_total = fadetime_total*(WAVFILE::freq/1000);
223b71206888 Initial import
thib
parents:
diff changeset
215 if (fadecount > count_total || fadetime_total == 1) { // 音楽停止
223b71206888 Initial import
thib
parents:
diff changeset
216 chunk->loop_pt = -2;
223b71206888 Initial import
thib
parents:
diff changeset
217 memset(stream, 0, len);
37
f88d47a4bf87 * Modernize configure.ac
thib
parents: 26
diff changeset
218 delete[] stream_dup;
0
223b71206888 Initial import
thib
parents:
diff changeset
219 return;
223b71206888 Initial import
thib
parents:
diff changeset
220 }
3
c4af1e9ab8d1 music volume can be changed (harcorded constant atm)
thib
parents: 0
diff changeset
221 cur_vol = cur_vol*(count_total-fadecount)/count_total;
0
223b71206888 Initial import
thib
parents:
diff changeset
222 fadecount += len/4;
223b71206888 Initial import
thib
parents:
diff changeset
223 }
37
f88d47a4bf87 * Modernize configure.ac
thib
parents: 26
diff changeset
224
3
c4af1e9ab8d1 music volume can be changed (harcorded constant atm)
thib
parents: 0
diff changeset
225 SDL_MixAudio(stream, (Uint8*)stream_dup, len, cur_vol);
7
fa8511a21d05 Fixes somes memory leaks
thib
parents: 3
diff changeset
226 delete[] stream_dup;
37
f88d47a4bf87 * Modernize configure.ac
thib
parents: 26
diff changeset
227
0
223b71206888 Initial import
thib
parents:
diff changeset
228 return;
223b71206888 Initial import
thib
parents:
diff changeset
229 }
223b71206888 Initial import
thib
parents:
diff changeset
230 void bgm_fadeout(int time) {
223b71206888 Initial import
thib
parents:
diff changeset
231 fadecount = 0;
223b71206888 Initial import
thib
parents:
diff changeset
232 if (time <= 0) time = 1;
223b71206888 Initial import
thib
parents:
diff changeset
233 fadetime_total = time;
223b71206888 Initial import
thib
parents:
diff changeset
234 }
223b71206888 Initial import
thib
parents:
diff changeset
235
223b71206888 Initial import
thib
parents:
diff changeset
236 static SDL_RWops* OpenSDLRW(const char* path);
223b71206888 Initial import
thib
parents:
diff changeset
237 static WAVFILE* OpenWaveFile(const char* path);
26
f45da03ca631 * Corrected --disable-vorbis in configure.ac
thib
parents: 18
diff changeset
238 void bgm_start(const char* path, int loop_pt, int * volmod) {
0
223b71206888 Initial import
thib
parents:
diff changeset
239 if (! pcm_enable) return;
223b71206888 Initial import
thib
parents:
diff changeset
240 fprintf(stderr,"bgm start %s\n",path);
223b71206888 Initial import
thib
parents:
diff changeset
241 WAVFILE* wav = OpenWaveFile(path);
52
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
242 if (wav == NULL) return;
0
223b71206888 Initial import
thib
parents:
diff changeset
243 Mix_PauseMusic();
223b71206888 Initial import
thib
parents:
diff changeset
244 Mix_HaltMusic();
223b71206888 Initial import
thib
parents:
diff changeset
245 Mix_HookMusic(0,0);
223b71206888 Initial import
thib
parents:
diff changeset
246 /* 前に再生していたのを終了 */
52
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
247 if (wav_playing.wav != NULL) {
0
223b71206888 Initial import
thib
parents:
diff changeset
248 delete wav_playing.wav;
52
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
249 wav_playing.wav = NULL;
0
223b71206888 Initial import
thib
parents:
diff changeset
250 }
223b71206888 Initial import
thib
parents:
diff changeset
251 wav_playing.wav = wav;
223b71206888 Initial import
thib
parents:
diff changeset
252 wav_playing.loop_pt = loop_pt;
26
f45da03ca631 * Corrected --disable-vorbis in configure.ac
thib
parents: 18
diff changeset
253 wav_playing.volmod = &volmod[0];
0
223b71206888 Initial import
thib
parents:
diff changeset
254 fadetime_total = 0;
223b71206888 Initial import
thib
parents:
diff changeset
255 fadecount = 0;
223b71206888 Initial import
thib
parents:
diff changeset
256 Mix_HookMusic( &(WavChunk::callback), (void*)&wav_playing);
223b71206888 Initial import
thib
parents:
diff changeset
257 }
223b71206888 Initial import
thib
parents:
diff changeset
258
26
f45da03ca631 * Corrected --disable-vorbis in configure.ac
thib
parents: 18
diff changeset
259 void effec_start(int chn, const char* path, int loop, int fadein_time, int * volmod) {
0
223b71206888 Initial import
thib
parents:
diff changeset
260 if (! pcm_enable) return;
223b71206888 Initial import
thib
parents:
diff changeset
261 SDL_RWops* op = OpenSDLRW(path);
52
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
262 if (op == NULL) { // ファイルが見付からない
0
223b71206888 Initial import
thib
parents:
diff changeset
263 return;
223b71206888 Initial import
thib
parents:
diff changeset
264 }
223b71206888 Initial import
thib
parents:
diff changeset
265 Mix_Pause(chn);
223b71206888 Initial import
thib
parents:
diff changeset
266
223b71206888 Initial import
thib
parents:
diff changeset
267 if (play_chunk[chn]) {
223b71206888 Initial import
thib
parents:
diff changeset
268 Mix_FreeChunk(play_chunk[chn]);
223b71206888 Initial import
thib
parents:
diff changeset
269 }
223b71206888 Initial import
thib
parents:
diff changeset
270 play_chunk[chn] = Mix_LoadWAV_RW(op, 1);
223b71206888 Initial import
thib
parents:
diff changeset
271 if (fadein_time <= 0) {
26
f45da03ca631 * Corrected --disable-vorbis in configure.ac
thib
parents: 18
diff changeset
272 Mix_Volume(chn, volmod[3]*SDL_MIX_MAXVOLUME/255);
52
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
273 Mix_PlayChannel(chn, play_chunk[chn], loop);
0
223b71206888 Initial import
thib
parents:
diff changeset
274 } else {
26
f45da03ca631 * Corrected --disable-vorbis in configure.ac
thib
parents: 18
diff changeset
275 Mix_Volume(chn, volmod[3]*SDL_MIX_MAXVOLUME/255);
52
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
276 Mix_FadeInChannel(chn, play_chunk[chn], loop, fadein_time);
0
223b71206888 Initial import
thib
parents:
diff changeset
277 }
223b71206888 Initial import
thib
parents:
diff changeset
278 }
223b71206888 Initial import
thib
parents:
diff changeset
279
223b71206888 Initial import
thib
parents:
diff changeset
280 void MuSys::PlayKoe(const char* path) {
52
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
281 if (!pcm_enable) return;
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
282 static char* playing_koedata = NULL;
0
223b71206888 Initial import
thib
parents:
diff changeset
283 int len = 0;
223b71206888 Initial import
thib
parents:
diff changeset
284 AvgKoeInfo koeinfo;
223b71206888 Initial import
thib
parents:
diff changeset
285 int chn = MIX_PCM_KOE;
223b71206888 Initial import
thib
parents:
diff changeset
286
223b71206888 Initial import
thib
parents:
diff changeset
287 Mix_Pause(chn);
223b71206888 Initial import
thib
parents:
diff changeset
288 Mix_HaltChannel(chn); // これで RWop が解放されるはず…
223b71206888 Initial import
thib
parents:
diff changeset
289 if (play_chunk[chn]) {
223b71206888 Initial import
thib
parents:
diff changeset
290 Mix_FreeChunk(play_chunk[chn]);
223b71206888 Initial import
thib
parents:
diff changeset
291 play_chunk[chn] = 0;
223b71206888 Initial import
thib
parents:
diff changeset
292 }
223b71206888 Initial import
thib
parents:
diff changeset
293
223b71206888 Initial import
thib
parents:
diff changeset
294 if (playing_koedata) {
7
fa8511a21d05 Fixes somes memory leaks
thib
parents: 3
diff changeset
295 free(playing_koedata);
0
223b71206888 Initial import
thib
parents:
diff changeset
296 playing_koedata = 0;
223b71206888 Initial import
thib
parents:
diff changeset
297 }
223b71206888 Initial import
thib
parents:
diff changeset
298
223b71206888 Initial import
thib
parents:
diff changeset
299 koeinfo = OpenKoeFile(path);
223b71206888 Initial import
thib
parents:
diff changeset
300
52
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
301 if (koeinfo.stream == NULL) return;
0
223b71206888 Initial import
thib
parents:
diff changeset
302 playing_koedata = decode_koe(koeinfo, &len);
223b71206888 Initial import
thib
parents:
diff changeset
303 fclose(koeinfo.stream);
52
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
304 if (playing_koedata == NULL) {
0
223b71206888 Initial import
thib
parents:
diff changeset
305 return;
223b71206888 Initial import
thib
parents:
diff changeset
306 }
26
f45da03ca631 * Corrected --disable-vorbis in configure.ac
thib
parents: 18
diff changeset
307 Mix_Volume(chn, volmod[1]*SDL_MIX_MAXVOLUME/255);
0
223b71206888 Initial import
thib
parents:
diff changeset
308 play_chunk[chn] = Mix_LoadWAV_RW(SDL_RWFromMem(playing_koedata, len+0x2c), 1);
52
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
309 Mix_PlayChannel(chn, play_chunk[chn], 0);
0
223b71206888 Initial import
thib
parents:
diff changeset
310 }
52
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
311
0
223b71206888 Initial import
thib
parents:
diff changeset
312 AvgKoeInfo OpenKoeFile(const char* path) {
223b71206888 Initial import
thib
parents:
diff changeset
313 int radix = 10000;
223b71206888 Initial import
thib
parents:
diff changeset
314 /* if (global_system.Version() >= 2) */ radix *= 10;
223b71206888 Initial import
thib
parents:
diff changeset
315 AvgKoeInfo info;
52
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
316 info.stream = NULL;
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
317 info.length = 0;
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
318 info.offset = 0;
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
319 if (isdigit(path[0]) && strchr(path,'.') == NULL) { // 数値 (拡張子等なし)
0
223b71206888 Initial import
thib
parents:
diff changeset
320 /* avg32 形式の音声アーカイブのキャッシュを検索 */
223b71206888 Initial import
thib
parents:
diff changeset
321 int pointer = atoi(path);
223b71206888 Initial import
thib
parents:
diff changeset
322 int file_no = pointer / radix;
223b71206888 Initial import
thib
parents:
diff changeset
323 int index = pointer % radix;
223b71206888 Initial import
thib
parents:
diff changeset
324 info = FindKoe(file_no, index);
223b71206888 Initial import
thib
parents:
diff changeset
325 } else { // ファイル
223b71206888 Initial import
thib
parents:
diff changeset
326 int length;
52
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
327 ARCINFO* arcinfo = file_searcher.Find(FILESEARCH::KOE, path, ".WPD");
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
328 if (arcinfo == NULL) return info;
0
223b71206888 Initial import
thib
parents:
diff changeset
329 info.stream = arcinfo->OpenFile(&length);
223b71206888 Initial import
thib
parents:
diff changeset
330 info.rate = 22050;
223b71206888 Initial import
thib
parents:
diff changeset
331 info.length = length;
223b71206888 Initial import
thib
parents:
diff changeset
332 info.offset = ftell(info.stream);
223b71206888 Initial import
thib
parents:
diff changeset
333 info.type = koe_unknown;
223b71206888 Initial import
thib
parents:
diff changeset
334 delete arcinfo;
223b71206888 Initial import
thib
parents:
diff changeset
335 }
223b71206888 Initial import
thib
parents:
diff changeset
336 return info;
223b71206888 Initial import
thib
parents:
diff changeset
337 }
223b71206888 Initial import
thib
parents:
diff changeset
338
223b71206888 Initial import
thib
parents:
diff changeset
339 static SDL_RWops* OpenSDLRW(const char* path) {
223b71206888 Initial import
thib
parents:
diff changeset
340 /* まず wav ファイルを探す */
52
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
341 ARCINFO* info = file_searcher.Find(FILESEARCH::WAV, path, ".wav");
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
342 if (info == NULL) {
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
343 info = file_searcher.Find(FILESEARCH::WAV, path, ".nwa");
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
344 if (info == NULL) info = file_searcher.Find(FILESEARCH::BGM, path, "nwa");
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
345 if (info != NULL) { // read NWA file
0
223b71206888 Initial import
thib
parents:
diff changeset
346 int dummy;
223b71206888 Initial import
thib
parents:
diff changeset
347 FILE* f = info->OpenFile(&dummy);
223b71206888 Initial import
thib
parents:
diff changeset
348 static char* d = 0;
223b71206888 Initial import
thib
parents:
diff changeset
349 int sz;
223b71206888 Initial import
thib
parents:
diff changeset
350 if (d != 0) delete[] d;
223b71206888 Initial import
thib
parents:
diff changeset
351 d = NWAFILE::ReadAll(f, sz);
223b71206888 Initial import
thib
parents:
diff changeset
352 return SDL_RWFromMem(d, sz);
223b71206888 Initial import
thib
parents:
diff changeset
353 }
223b71206888 Initial import
thib
parents:
diff changeset
354 }
52
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
355 if (info == NULL) info = file_searcher.Find(FILESEARCH::BGM, path, "wav");
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
356 if (info == NULL) info = file_searcher.Find(FILESEARCH::WAV, path, ".ogg");
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
357 if (info != NULL) {
0
223b71206888 Initial import
thib
parents:
diff changeset
358 int dummy;
223b71206888 Initial import
thib
parents:
diff changeset
359 FILE* f = info->OpenFile(&dummy);
223b71206888 Initial import
thib
parents:
diff changeset
360 delete info;
52
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
361 if (f == NULL) return NULL;
0
223b71206888 Initial import
thib
parents:
diff changeset
362 SDL_RWops* op = SDL_RWFromFP(f, 1);
223b71206888 Initial import
thib
parents:
diff changeset
363 return op;
223b71206888 Initial import
thib
parents:
diff changeset
364 }
52
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
365 return NULL;
0
223b71206888 Initial import
thib
parents:
diff changeset
366 }
223b71206888 Initial import
thib
parents:
diff changeset
367
223b71206888 Initial import
thib
parents:
diff changeset
368 static WAVFILE* OpenWaveFile(const char* path) {
223b71206888 Initial import
thib
parents:
diff changeset
369 /* まず wav ファイルを探す */
52
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
370 ARCINFO* info = file_searcher.Find(FILESEARCH::WAV, path, ".wav");
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
371 if (info == NULL) info = file_searcher.Find(FILESEARCH::BGM, path, "wav");
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
372 if (info != NULL) {
0
223b71206888 Initial import
thib
parents:
diff changeset
373 int size;
223b71206888 Initial import
thib
parents:
diff changeset
374 FILE* f = info->OpenFile(&size);
223b71206888 Initial import
thib
parents:
diff changeset
375 delete info;
52
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
376 if (f == NULL) return NULL;
0
223b71206888 Initial import
thib
parents:
diff changeset
377 WAVFILE* w = WAVFILE::MakeConverter(new WAVFILE_Stream(f, size));
223b71206888 Initial import
thib
parents:
diff changeset
378 return w;
223b71206888 Initial import
thib
parents:
diff changeset
379 }
223b71206888 Initial import
thib
parents:
diff changeset
380 /* 次に nwa ファイル */
52
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
381 info = file_searcher.Find(FILESEARCH::WAV, path, ".nwa");
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
382 if (info == NULL) info = file_searcher.Find(FILESEARCH::BGM, path, "nwa");
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
383 if (info != NULL) {
0
223b71206888 Initial import
thib
parents:
diff changeset
384 int size;
223b71206888 Initial import
thib
parents:
diff changeset
385 FILE* f = info->OpenFile(&size);
223b71206888 Initial import
thib
parents:
diff changeset
386 delete info;
52
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
387 if (f == NULL) return NULL;
0
223b71206888 Initial import
thib
parents:
diff changeset
388 WAVFILE* w = WAVFILE::MakeConverter(new NWAFILE(f));
223b71206888 Initial import
thib
parents:
diff changeset
389 return w;
223b71206888 Initial import
thib
parents:
diff changeset
390 }
223b71206888 Initial import
thib
parents:
diff changeset
391
223b71206888 Initial import
thib
parents:
diff changeset
392 /* 次に mp3 ファイル */
52
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
393 info = file_searcher.Find(FILESEARCH::WAV, path, ".mp3");
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
394 if (info == NULL) info = file_searcher.Find(FILESEARCH::BGM, path, "mp3");
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
395 if (info != NULL) {
0
223b71206888 Initial import
thib
parents:
diff changeset
396 int size;
223b71206888 Initial import
thib
parents:
diff changeset
397 FILE* f = info->OpenFile(&size);
223b71206888 Initial import
thib
parents:
diff changeset
398 delete info;
52
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
399 if (f == NULL) return NULL;
0
223b71206888 Initial import
thib
parents:
diff changeset
400 MP3FILE* w = new MP3FILE(f, size);
52
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
401 if (w->pimpl != NULL) {
0
223b71206888 Initial import
thib
parents:
diff changeset
402 return WAVFILE::MakeConverter(w);
223b71206888 Initial import
thib
parents:
diff changeset
403 }
223b71206888 Initial import
thib
parents:
diff changeset
404 delete w;
223b71206888 Initial import
thib
parents:
diff changeset
405 }
223b71206888 Initial import
thib
parents:
diff changeset
406
223b71206888 Initial import
thib
parents:
diff changeset
407 /* 次に ogg ファイル */
52
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
408 info = file_searcher.Find(FILESEARCH::WAV, path, ".ogg");
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
409 if (info == NULL) info = file_searcher.Find(FILESEARCH::BGM, path, "ogg");
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
410 if (info != NULL) {
0
223b71206888 Initial import
thib
parents:
diff changeset
411 int size;
223b71206888 Initial import
thib
parents:
diff changeset
412 FILE* f = info->OpenFile(&size);
223b71206888 Initial import
thib
parents:
diff changeset
413 delete info;
52
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
414 if (f == NULL) return NULL;
0
223b71206888 Initial import
thib
parents:
diff changeset
415 OggFILE* w = new OggFILE(f, size);
52
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
416 if (w->pimpl != NULL) {
0
223b71206888 Initial import
thib
parents:
diff changeset
417 return WAVFILE::MakeConverter(w);
223b71206888 Initial import
thib
parents:
diff changeset
418 }
223b71206888 Initial import
thib
parents:
diff changeset
419 delete w;
223b71206888 Initial import
thib
parents:
diff changeset
420 }
52
15a18fbe6f21 * Known bugs added to the README
thib
parents: 43
diff changeset
421 return NULL;
0
223b71206888 Initial import
thib
parents:
diff changeset
422 }
223b71206888 Initial import
thib
parents:
diff changeset
423