musix 0.3.5

Music player library for esoteric audio formats (music from C64,Amiga etc)
Documentation
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
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
#include <stdio.h>
#include <string.h>
#include <getopt.h>
#include <signal.h>
#include "SDL.h"


#ifdef USE_ICONV
#include <iconv.h>
#endif


#include "mdxmini.h"

#ifdef USE_NLG

#include "nlg.h"
extern NLGCTX *nlgctx;

#endif

#define MDXMINI_VERSION "2014-06-01"

int g_viewnote = 0;
int g_verbose = 0;

#define PCM_SAMPLES 512

#define PCM_BLOCK 2048
#define PCM_BYTE_PER_SAMPLE 2
#define PCM_CH  2
#define PCM_NUM_BLOCKS 4



#define PCM_BLOCK_SIZE (PCM_BLOCK * PCM_CH)
#define PCM_BUFFER_LEN (PCM_BLOCK_SIZE * PCM_NUM_BLOCKS)
#define PCM_BLOCK_BYTES (PCM_BLOCK_SIZE * PCM_BYTE_PER_SAMPLE)

static struct pcm_struct
{
    int on;
    int stop;

    int write_pos;
    int read_pos;
    
    int count;
    
    short buffer[PCM_BUFFER_LEN];
} pcm;

#include "wavwrite.h"
#include "fade.h"

static void audio_callback(void *param, Uint8 *data, int len)
{
	int i;
	
	short *audio_buffer = (short *)data;

	if (!pcm.on)
	{
		memset(data, 0, len);
		return;
	}
	
	for(i = 0; i < len / 2; i++)
	{
		audio_buffer[i] = pcm.buffer[pcm.read_pos++];
        pcm.count--;
		if (pcm.read_pos >= PCM_BUFFER_LEN)
				pcm.read_pos = 0;
	}
}



static int audio_sdl_init()
{

	if (SDL_Init(SDL_INIT_AUDIO))
	{
		printf("Failed to Initialize!!\n");
		return 1;
	}
	
    return 0;
}

static int audio_init(int freq)
{
    SDL_AudioSpec af;

	af.freq = freq;
	af.format = AUDIO_S16;
	af.channels = PCM_CH;
	af.samples = PCM_SAMPLES;
	af.callback = audio_callback;
	af.userdata = NULL;

	if (SDL_OpenAudio(&af,NULL) < 0)
	{
		printf("Audio open error!!\n");
		return 1;
	}
	
	memset(&pcm, 0, sizeof(pcm));
	
	SDL_PauseAudio(0);
	return 0;
}

static void audio_free(void)
{
	SDL_CloseAudio();
    SDL_Quit();
}


static void audio_sig_handle(int sig)
{
    pcm.stop = 1;
}

static void audio_info(t_mdxmini *data, int sec, int len)
{
	int i,n;
	int notes[32];

	if (g_viewnote)
    {
        n = mdx_get_tracks ( data );
	
        mdx_get_current_notes( data , notes , n );

        for ( i = 0; i < 8; i ++ )
        {
            printf("%02x " , ( notes[i] & 0xff ) );
        }
        printf(" ");
    }
    
    printf("Time : %02d:%02d / %02d:%02d\r\r",
           sec / 60, sec % 60, len / 60, len % 60);
    fflush(stdout);
}
        
        
static int audio_poll_event( void )
{
    SDL_Event evt;
    
    while ( SDL_PollEvent( &evt ) )
    {
        switch ( evt.type )
        {
            case SDL_QUIT:
                return -1;
            break;
        }
    }
    
    return 0;
}

static void audio_disp_title(t_mdxmini *data)
{
    char *title;
    char title_orig[1024];
    
    title = title_orig;
    
    mdx_get_title(data, title_orig);
    
#ifdef USE_ICONV

    char title_locale[1024];

    iconv_t icd;
    icd = iconv_open("UTF-8//IGNORE", "Shift_JIS");

    if (icd)
    {
        title = title_locale;
        
        char *srcstr = title_orig;
        char *deststr = title_locale;
        
        size_t srclen = sizeof(title_orig);
        size_t destlen = sizeof(title_locale);
        
        iconv(icd,
              &srcstr, &srclen,
              &deststr, &destlen);
        
        iconv_close(icd);
    }

#endif

    if (!g_viewnote)
        printf("Title:%s\n", title);

}

static void audio_loop(t_mdxmini *data, int freq, int len)
{
    
	int total;
	int sec;
	int sec_sample;

    if (len < 0)
        len = mdx_get_length(data);

	mdx_set_max_loop(data, 0);
    
	fade_init();
	
	total = sec = sec_sample = 0;

    // put title info
    audio_disp_title(data);
    
    // put time
    audio_info(data, sec, len);

	do
	{
		// waiting for next block
        while(pcm.count >=  (PCM_BUFFER_LEN - PCM_BLOCK_SIZE))
        {
            if (audio_poll_event() < 0)
            {
                SDL_PauseAudio(1);
                return;
            }
            SDL_Delay(1);
        }
		
        // calculate samples
	mdx_calc_sample(data, pcm.buffer + pcm.write_pos, PCM_BLOCK);
		if (is_fade_run())
			fade_stereo (pcm.buffer + pcm.write_pos, PCM_BLOCK);
		
		pcm.write_pos += PCM_BLOCK_SIZE;
		if (pcm.write_pos >= PCM_BUFFER_LEN)
				pcm.write_pos = 0;
        
        pcm.count += PCM_BLOCK_SIZE;
		
		total += PCM_BLOCK;
		sec_sample += PCM_BLOCK;
        
        // if sec_samples > 1sec
		while (sec_sample >= freq)
		{
			sec_sample -= freq;
			sec++;
            
            if (sec >= (len - 3))
			{
				if (!is_fade_run())
					fade_start(freq, 1);
			}
            if (!g_viewnote)
                audio_info(data, sec, len);
            
		}
        
		if (g_viewnote)
            audio_info(data, sec, len);

	}while(sec < len && !pcm.stop);
    
    printf("\n");
	
	SDL_PauseAudio(1);
}

static void audio_loop_file(
    t_mdxmini *data, const char *file, int freq , int len)
{
    FILE *fp = NULL;
    
    int sec;
    
    int frames;
    int total_frames;
    
    short pcm_buffer[PCM_BLOCK_SIZE];
    
    
    // put title info
    audio_disp_title(data);

    
    // get length
    
    if (len < 0)
        len = mdx_get_length(data);

    // len = 5;
    
    fade_init();
    
    
    sec =
    frames =
    total_frames = 0;
    
    
    if (file)
        fp = fopen(file, "wb");
    
    if (file && fp == NULL)
    {
        printf("Can't write a PCM file!\n");
        return;
    }
    
    audio_write_wav_header(fp, freq, 0);
    
    audio_info(data, sec, len);
    
    do
    {
        // calculate samples
        if (fp)
            mdx_calc_sample(data, pcm_buffer, PCM_BLOCK);
		else
            mdx_calc_log(data, pcm_buffer, PCM_BLOCK);
        
        if (is_fade_run())
			fade_stereo(pcm_buffer, PCM_BLOCK);
		      
        if (fp)
            fwrite(pcm_buffer, PCM_BLOCK_BYTES, 1, fp);
        
        // increase pointer
        frames += PCM_BLOCK;
        total_frames += PCM_BLOCK;
        
        /* increase seconds */
        while(frames >= freq)
        {
            frames -= freq;
            sec++;
            audio_info(data, sec, len);
            
            // start fader
            if (sec >= (len - 3))
            {
                if (!is_fade_run())
                    fade_start(freq, 1);
            }
        }

    }while(sec < len && !pcm.stop);
    
    audio_write_wav_header(
            fp, freq, (total_frames * PCM_CH * PCM_BYTE_PER_SAMPLE));
    
    printf("\n");
    
    if (fp)
        fclose(fp);
}


void usage(void)
{
    printf(
           "Usage mdxplay [options ...] <file> [files ...]\n"
           "\n"
           " Options ...\n"
           " -s rate   : Set playback rate\n"
           " -q dir    : Set PCM path\n"
           "\n"
           " -o file   : Generate an Wave file(PCM)\n"
           " -p        : NULL PCM mode.\n"
           "\n"
           " -r file   : Record a NLG\n"
           " -b        : Record a NLG without sound\n"
           "\n"
           " -w        : Set verbose mode\n"
           " -x        : View note mode\n"
           "\n"
           " -h        : Help (this)\n"
           "\n"
           );
}


#define NLG_NORMAL 1
#define NLG_SAMEPATH 2

#define _PATH_SEP "/"

int audio_main(int argc, char *argv[])
{
	t_mdxmini mini;
	
    char pcmpath_mem[1024];

    char *nlgfile = NULL;
    char *pcmpath = NULL;
    char *wavfile = NULL;

    int opt;
    
	int rate = 44100;
    int nosound = 0;
    int nlg_log = 0;
    int len = -1;
    
#ifdef _WIN32
    freopen("CON", "wt", stdout);
    freopen("CON", "wt", stderr);
#endif

    audio_sdl_init();
    signal(SIGINT, audio_sig_handle);

    printf("MDXPLAY on SDL Version %s\n", MDXMINI_VERSION);

	if (argc < 2)
	{
        usage();
		return 1;
	}
    
    while ((opt = getopt(argc, argv, "q:l:r:s:o:bpwhx")) != -1)
    {
        switch (opt)
        {
            case 'q': // pcm path
                pcmpath = optarg;
                break;
            case 'l': // length
                len = atoi(optarg);
                break;
            case 'b': // log without path(no arguments)
                nlg_log = NLG_SAMEPATH;
                nlgfile = NULL;
                nosound = 1;
                break;
            case 'r': // log with path
                nlg_log = NLG_NORMAL;
                nlgfile = optarg;
                break;
            case 'p': // no sound(no arguments)
                nosound = 1;
                break;
            case 's': // rate
                rate = atoi(optarg);
                break;
            case 'o': // output to wav file
                wavfile = optarg;
                break;
            case 'w': // verbose mode(no arguments)
                g_verbose = 1;
                break;
            case 'x': // view note mode(no arguments)
                g_viewnote = 1;
                break;
            case 'h':
            default:
                usage();
                return 1;
        }
    }
    
    if (rate < 8000)
        rate = 8000;
    
	if (audio_init(rate))
	{
		printf("Failed to initialize audio\n");
		
		return 0;
	}
	
	pcm.on = 1;
	
	mdx_set_rate(rate);


    if (!pcmpath)
    {
        pcmpath_mem[0] = 0;
        
        char *home = getenv("HOME");
        if (home)
        {
            pcmpath = pcmpath_mem;
            strcpy(pcmpath, home);
            strcat(pcmpath,_PATH_SEP);
            strcat(pcmpath, ".mdxplay");
            strcat(pcmpath,_PATH_SEP);
        }
    }
    
    // play files
    for(;optind < argc; optind++)
    {
        
        char *playfile = argv[optind];
        
#ifdef USE_NLG
        
        // make NLG log
        if (nlg_log)
        {
            char nlgpath_mem[1024];

            // NLG filename is not given
            if (!nlgfile)
            {
                nlgpath_mem[0] = 0;
                nlgfile = nlgpath_mem;

                strcpy(nlgfile, playfile);
                
                char *p = strrchr(nlgfile, '.');
                
                if (p)
                    strcpy(p,".NLG");
                else
                    strcat(nlgfile,".NLG");
            }
            
            printf("CreateNLG:%s\n",nlgfile);
            nlgctx = CreateNLG(nlgfile);
        }

#endif
        
        // open mdx
        if (mdx_open(&mini, playfile, pcmpath))
        {
            printf("File open error: %s\n", playfile);
#ifdef USE_NLG
            CloseNLG(nlgctx);
            nlgctx = NULL;
            return 0;
#endif
        }
        
        if (nosound || wavfile)
            audio_loop_file(&mini, wavfile, rate, len);
        else
            audio_loop(&mini, rate, len);

#ifdef USE_NLG
        CloseNLG(nlgctx);
        nlgfile = NULL;
        nlgctx = NULL;
#endif
        
        // close mdx
        mdx_close(&mini);
    }
    
	audio_free();

	return 0;
}


// disable SDLmain for win32 console app
#ifdef _WIN32
#undef main
#endif

int main(int argc, char *argv[])
{
	int ret = audio_main(argc, argv);
    
#ifdef DEBUG
	// getch();
#endif
    
	return ret;
}