-
Notifications
You must be signed in to change notification settings - Fork 18
/
vgm_vol.c
423 lines (361 loc) · 7.63 KB
/
vgm_vol.c
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
// vgm_vol.c - VGM Volume Detector
//
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#ifndef M_LN2
#define M_LN2 0.69314718055994530942
#endif
#ifdef WIN32
#include <windows.h> // for Directory Listing
#else
// Note: Directory Listing is only supported in Windows
#include <limits.h>
#define MAX_PATH PATH_MAX
#endif
#include "stdtype.h"
#include "stdbool.h"
#include "common.h"
static void ReadWAVFile(const char* FileName);
#ifdef WIN32
static void ReadDirectory(const char* DirName);
#endif
static void ReadPlaylist(const char* FileName);
static void PrintVolMod(UINT16 MaxLvl);
#define FCC_RIFF 0x46464952
#define FCC_WAVE 0x45564157
#define FCC_fmt 0x20746D66
#define FCC_data 0x61746164
#ifndef WAVE_FORMAT_PCM
#define WAVE_FORMAT_PCM 0x0001
#endif
float RecVolume; // usually 1.0 or 0.5
UINT32 VGMDataLen;
char FilePath[MAX_PATH];
char* FileTitle;
UINT16 MaxLvlAlbum;
bool IsPlayList;
int main(int argc, char* argv[])
{
int argbase;
int ErrVal;
char FileName[MAX_PATH];
char InputStr[0x100];
#ifdef WIN32
char* FileExt;
bool PLMode;
#endif
printf("VGM Volume Detector\n-------------------\n\n");
ErrVal = 0;
argbase = 1;
#ifdef WIN32
printf("File Path or PlayList:\t");
#else
printf("PlayList:\t");
#endif
if (argc <= argbase + 0)
{
ReadFilename(FileName, sizeof(FileName));
}
else
{
strcpy(FileName, argv[argbase + 0]);
printf("%s\n", FileName);
}
if (! strlen(FileName))
return 0;
printf("Volume Setting (default 1.0):\t");
if (argc <= argbase + 1)
{
fgets(InputStr, sizeof(InputStr), stdin);
}
else
{
strcpy(InputStr, argv[argbase + 1]);
printf("%s\n", InputStr);
}
RecVolume = (float)strtod(InputStr, NULL);
if (RecVolume == 0.0f)
RecVolume = 1.0f;
#ifdef WIN32
PLMode = false;
if (FileName[strlen(FileName - 0x01)] != '\\')
{
if (! (GetFileAttributes(FileName) & FILE_ATTRIBUTE_DIRECTORY))
{
FileExt = strrchr(FileName, '.');
if (FileExt < strrchr(FileName, '\\'))
FileExt = NULL;
if (FileExt != NULL)
{
FileExt ++;
if (! stricmp(FileExt, "m3u"))
PLMode = true;
}
}
else
{
strcat(FileName, "\\");
}
}
MaxLvlAlbum = 0x0000;
IsPlayList = PLMode;
if (! PLMode)
ReadDirectory(FileName);
else
ReadPlaylist(FileName);
#else
// Sorry - no directory browsing for Linux
MaxLvlAlbum = 0x0000;
IsPlayList = true;
ReadPlaylist(FileName);
#endif
printf("\nAll tracks\t");
PrintVolMod(MaxLvlAlbum);
printf("\n");
//EndProgram:
DblClickWait(argv[0]);
return ErrVal;
}
static void ReadWAVFile(const char* FileName)
{
FILE* hFile;
UINT32 fccHeader;
UINT32 CurPos;
UINT16 TempSht;
INT16 TempSSht;
UINT32 TempLng;
UINT16 MaxLvl;
printf("%s\t", FileTitle);
hFile = fopen(FileName, "rb");
if (hFile == NULL)
{
printf("Error opening file!\n");
return;
}
fseek(hFile, 0x00, SEEK_SET);
fread(&fccHeader, 0x04, 0x01, hFile);
if (fccHeader != FCC_RIFF)
{
printf("No Wave file (RIFF signature missing)!\n");
goto OpenErr;
}
fread(&TempLng, 0x04, 0x01, hFile);
fread(&fccHeader, 0x04, 0x01, hFile);
if (fccHeader != FCC_WAVE)
{
printf("No Wave file (WAVE signature missing)!\n");
goto OpenErr;
}
fread(&fccHeader, 0x04, 0x01, hFile);
if (fccHeader != FCC_fmt)
{
printf("Bad Wave file (bad format header)!\n");
goto OpenErr;
}
fread(&TempLng, 0x04, 0x01, hFile); // get format tag length
// read format data
CurPos = ftell(hFile);
fread(&TempSht, 0x02, 0x01, hFile);
if (TempSht != WAVE_FORMAT_PCM)
{
printf("Can't read compressed wave files!\n");
goto OpenErr;
}
fseek(hFile, 0x0C, SEEK_CUR);
fread(&TempSht, 0x02, 0x01, hFile);
if (TempSht != 0x10)
{
printf("Must be an 16-bit wave file!\n");
goto OpenErr;
}
fseek(hFile, CurPos + TempLng, SEEK_SET);
// read data
fread(&fccHeader, 0x04, 0x01, hFile);
while(fccHeader != FCC_data)
{
fread(&TempLng, 0x04, 0x01, hFile);
fseek(hFile, TempLng, SEEK_CUR);
if (! fread(&fccHeader, 0x04, 0x01, hFile))
{
printf("Unable to find wave data!\n");
goto OpenErr;
}
}
fread(&TempLng, 0x04, 0x01, hFile); // get data length
CurPos = 0x00;
MaxLvl = 0x0000;
while(CurPos < TempLng)
{
if (! fread(&TempSSht, 0x02, 0x01, hFile))
break; // early file end
CurPos += 0x02;
if (abs(TempSSht) > MaxLvl)
{
MaxLvl = abs(TempSSht);
if (TempSht == 0x8000 || TempSht == 0x7FFF)
{
printf("Sound clipped! Please relog with lower volume!\n");
break;
}
}
}
fclose(hFile);
PrintVolMod(MaxLvl);
if (MaxLvl > MaxLvlAlbum)
MaxLvlAlbum = MaxLvl;
return;
OpenErr:
fclose(hFile);
return;
}
static void PrintVolMod(UINT16 MaxLvl)
{
float Factor;
INT16 VolMod;
if (! MaxLvl)
{
printf("--\n");
return;
}
Factor = (float)0x8000 / MaxLvl * RecVolume;
if (Factor < 0.25f)
Factor = 0.25f;
else if (Factor > 64.0f)
Factor = 64.0f;
VolMod = (INT16)floor(log(Factor) / M_LN2 * 0x20);
if (VolMod == -0x0040)
VolMod = -0x003F;
VolMod &= 0xFF;
printf("MaxLevel: %04X\tFactor: %.3f\tVolMod: 0x%02X\n", MaxLvl, Factor, VolMod);
return;
}
#ifdef WIN32
static void ReadDirectory(const char* DirName)
{
HANDLE hFindFile;
WIN32_FIND_DATA FindFileData;
BOOL RetVal;
char FileName[MAX_PATH];
char* TempPnt;
char* FileExt;
strcpy(FilePath, DirName);
TempPnt = strrchr(FilePath, '\\');
if (TempPnt == NULL)
strcpy(FilePath, "");
TempPnt = strrchr(FilePath, '\\');
if (TempPnt != NULL)
TempPnt[0x01] = 0x00;
strcpy(FileName, FilePath);
strcat(FileName, "*.wav");
hFindFile = FindFirstFile(FileName, &FindFileData);
if (hFindFile == INVALID_HANDLE_VALUE)
{
//ShowErrMessage();
printf("Error reading directory!\n");
return;
}
strcpy(FileName, FilePath);
TempPnt = FileName + strlen(FileName);
do
{
if (FindFileData.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
goto SkipFile;
FileExt = strrchr(FindFileData.cFileName, '.');
if (FileExt == NULL)
goto SkipFile;
FileExt ++;
if (stricmp(FileExt, "wav"))
goto SkipFile;
strcpy(TempPnt, FindFileData.cFileName);
FileTitle = TempPnt;
ReadWAVFile(FileName);
SkipFile:
RetVal = FindNextFile(hFindFile, &FindFileData);
}
while(RetVal);
RetVal = FindClose(hFindFile);
return;
}
#endif
static void ReadPlaylist(const char* FileName)
{
const char M3UV2_HEAD[] = "#EXTM3U";
const char M3UV2_META[] = "#EXTINF:";
UINT32 METASTR_LEN;
FILE* hFile;
UINT32 LineNo;
bool IsV2Fmt;
char TempStr[MAX_PATH];
char FileVGM[MAX_PATH];
char* RetStr;
RetStr = strrchr(FileName, '\\');
if (RetStr != NULL)
{
RetStr ++;
strncpy(TempStr, FileName, RetStr - FileName);
TempStr[RetStr - FileName] = 0x00;
strcpy(FilePath, TempStr);
}
else
{
strcpy(FilePath, "");
}
hFile = fopen(FileName, "rt");
if (hFile == NULL)
return;
LineNo = 0x00;
IsV2Fmt = false;
METASTR_LEN = strlen(M3UV2_META);
while(! feof(hFile))
{
RetStr = fgets(TempStr, MAX_PATH, hFile);
if (RetStr == NULL)
break;
//RetStr = strchr(TempStr, 0x0D);
//if (RetStr)
// *RetStr = 0x00; // remove NewLine-Character
RetStr = TempStr + strlen(TempStr) - 0x01;
while(*RetStr < 0x20)
{
*RetStr = 0x00; // remove NewLine-Characters
RetStr --;
}
if (! strlen(TempStr))
continue;
if (! LineNo)
{
if (! strcmp(TempStr, M3UV2_HEAD))
{
IsV2Fmt = true;
LineNo ++;
continue;
}
}
if (IsV2Fmt)
{
if (! strncmp(TempStr, M3UV2_META, METASTR_LEN))
{
// Ignore Metadata of m3u Version 2
LineNo ++;
continue;
}
}
RetStr = strrchr(TempStr, '.');
if (RetStr != NULL)
strcpy(RetStr + 1, "wav");
strcpy(FileVGM, FilePath);
strcat(FileVGM, TempStr);
RetStr = strrchr(TempStr, '\\');
if (RetStr == NULL)
RetStr = TempStr;
else
RetStr ++;
FileTitle = RetStr;
ReadWAVFile(FileVGM);
LineNo ++;
}
fclose(hFile);
return;
}