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
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
|
unit UAudio_bass;
interface
{$IFDEF FPC}
{$MODE Delphi}
{$ENDIF}
{$I switches.inc}
uses Classes,
{$IFDEF win32}
windows,
{$ENDIF}
Messages,
SysUtils,
{$IFNDEF FPC}
Forms,
{$ENDIF}
bass,
ULog,
UMusic;
implementation
uses
{$IFDEF LAZARUS}
lclintf,
{$ENDIF}
URecord,
UIni,
UMain,
UCommon,
UThemes;
type
TMPModes = (mpNotReady, mpStopped, mpPlaying, mpRecording, mpSeeking,
mpPaused, mpOpen);
const
ModeStr: array[TMPModes] of string = ('Not ready', 'Stopped', 'Playing', 'Recording', 'Seeking', 'Paused', 'Open');
type
TBassOutputStream = class(TAudioOutputStream)
Handle: HSTREAM;
constructor Create(); overload;
constructor Create(stream: HSTREAM); overload;
end;
type
{$IFDEF UseBASSInput}
TAudio_bass = class( TInterfacedObject, IAudioPlayback, IAudioInput)
{$ELSE}
TAudio_bass = class( TInterfacedObject, IAudioPlayback)
{$ENDIF}
private
MusicStream: HSTREAM;
StartSoundStream: HSTREAM;
BackSoundStream: HSTREAM;
SwooshSoundStream: HSTREAM;
ChangeSoundStream: HSTREAM;
OptionSoundStream: HSTREAM;
ClickSoundStream: HSTREAM;
DrumSoundStream: HSTREAM;
HihatSoundStream: HSTREAM;
ClapSoundStream: HSTREAM;
ShuffleSoundStream: HSTREAM;
//Custom Sounds
CustomSounds: array of TCustomSoundEntry;
Loaded: boolean;
Loop: boolean;
public
function GetName: String;
{IAudioOutput interface}
procedure InitializePlayback;
procedure SetVolume(Volume: integer);
procedure SetMusicVolume(Volume: integer);
procedure SetLoop(Enabled: boolean);
function Open(Name: string): boolean; // true if succeed
procedure Rewind;
procedure MoveTo(Time: real);
procedure Play;
procedure Pause; //Pause Mod
procedure Stop;
procedure Close;
function Finished: boolean;
function Length: real;
function getPosition: real;
procedure PlayStart;
procedure PlayBack;
procedure PlaySwoosh;
procedure PlayChange;
procedure PlayOption;
procedure PlayClick;
procedure PlayDrum;
procedure PlayHihat;
procedure PlayClap;
procedure PlayShuffle;
procedure StopShuffle;
function LoadSoundFromFile(var stream: HSTREAM; Name: string): boolean;
//Equalizer
function GetFFTData: TFFTData;
// Interface for Visualizer
function GetPCMData(var data: TPCMData): Cardinal;
//Custom Sounds
function LoadCustomSound(const Filename: String): Cardinal;
procedure PlayCustomSound(const Index: Cardinal );
{IAudioInput interface}
{$IFDEF UseBASSInput}
procedure InitializeRecord;
procedure CaptureStart;
procedure CaptureStop;
procedure CaptureCard(Card: byte; CaptureSoundLeft, CaptureSoundRight: TSound);
procedure StopCard(Card: byte);
{$ENDIF}
end;
{$IFDEF UseBASSInput}
TBassSoundCard = class(TGenericSoundCard)
RecordStream: HSTREAM;
end;
{$ENDIF}
var
singleton_MusicBass : IAudioPlayback;
constructor TBassOutputStream.Create();
begin
inherited;
end;
constructor TBassOutputStream.Create(stream: HSTREAM);
begin
Create();
Handle := stream;
end;
function TAudio_bass.GetName: String;
begin
result := 'BASS';
end;
procedure TAudio_bass.InitializePlayback;
var
Pet: integer;
S: integer;
begin
// Log.BenchmarkStart(4);
// Log.LogStatus('Initializing Playback Subsystem', 'Music Initialize');
Loaded := false;
Loop := false;
if not BASS_Init(1, 44100, 0, 0, nil) then
begin
Log.LogError('Could not initialize BASS', 'Error');
Exit;
end;
// Log.BenchmarkEnd(4); Log.LogBenchmark('--> Bass Init', 4);
// config playing buffer
// BASS_SetConfig(BASS_CONFIG_UPDATEPERIOD, 10);
// BASS_SetConfig(BASS_CONFIG_BUFFER, 100);
// Log.LogStatus('Loading Sounds', 'Music Initialize');
// Log.BenchmarkStart(4);
LoadSoundFromFile(StartSoundStream, SoundPath + 'Common Start.mp3');
LoadSoundFromFile(BackSoundStream, SoundPath + 'Common Back.mp3');
LoadSoundFromFile(SwooshSoundStream, SoundPath + 'menu swoosh.mp3');
LoadSoundFromFile(ChangeSoundStream, SoundPath + 'select music change music 50.mp3');
LoadSoundFromFile(OptionSoundStream, SoundPath + 'option change col.mp3');
LoadSoundFromFile(ClickSoundStream, SoundPath + 'rimshot022b.mp3');
// LoadSoundFromFile(DrumSoundStream, SoundPath + 'bassdrumhard076b.mp3');
// LoadSoundFromFile(HihatSoundStream, SoundPath + 'hihatclosed068b.mp3');
// LoadSoundFromFile(ClapSoundStream, SoundPath + 'claps050b.mp3');
// LoadSoundFromFile(ShuffleSoundStream, SoundPath + 'Shuffle.mp3');
// Log.BenchmarkEnd(4);
// Log.LogBenchmark('--> Loading Sounds', 4);
end;
procedure TAudio_bass.SetVolume(Volume: integer);
begin
//Old Sets Wave Volume
//BASS_SetVolume(Volume);
//New: Sets Volume only for this Application
BASS_SetConfig(BASS_CONFIG_GVOL_SAMPLE, Volume);
BASS_SetConfig(BASS_CONFIG_GVOL_STREAM, Volume);
BASS_SetConfig(BASS_CONFIG_GVOL_MUSIC, Volume);
end;
procedure TAudio_bass.SetMusicVolume(Volume: Integer);
begin
//Max Volume Prevention
if Volume > 100 then
Volume := 100;
if Volume < 0 then
Volume := 0;
//Set Volume
BASS_ChannelSetAttributes (MusicStream, -1, Volume, -101);
end;
procedure TAudio_bass.SetLoop(Enabled: boolean);
begin
Loop := Enabled;
end;
function TAudio_bass.Open(Name: string): boolean;
begin
Loaded := false;
if FileExists(Name) then
begin
MusicStream := Bass_StreamCreateFile(false, pchar(Name), 0, 0, 0);
Loaded := true;
//Set Max Volume
SetMusicVolume (100);
end;
Result := Loaded;
end;
procedure TAudio_bass.Rewind;
begin
if Loaded then begin
end;
end;
procedure TAudio_bass.MoveTo(Time: real);
var
bytes: integer;
begin
bytes := BASS_ChannelSeconds2Bytes(MusicStream, Time);
BASS_ChannelSetPosition(MusicStream, bytes);
end;
procedure TAudio_bass.Play;
begin
if Loaded then
begin
if Loop then
BASS_ChannelPlay(MusicStream, True); // start from beginning... actually bass itself does not loop, nor does this TAudio_bass Class
BASS_ChannelPlay(MusicStream, False); // for setting position before playing
end;
end;
procedure TAudio_bass.Pause; //Pause Mod
begin
if Loaded then begin
BASS_ChannelPause(MusicStream); // Pauses Song
end;
end;
procedure TAudio_bass.Stop;
begin
Bass_ChannelStop(MusicStream);
end;
procedure TAudio_bass.Close;
begin
Bass_StreamFree(MusicStream);
end;
function TAudio_bass.Length: real;
var
bytes: integer;
begin
Result := 60;
bytes := BASS_ChannelGetLength(MusicStream);
Result := BASS_ChannelBytes2Seconds(MusicStream, bytes);
end;
function TAudio_bass.getPosition: real;
var
bytes: integer;
begin
Result := 0;
bytes := BASS_ChannelGetPosition(MusicStream);
Result := BASS_ChannelBytes2Seconds(MusicStream, bytes);
end;
function TAudio_bass.Finished: boolean;
begin
Result := false;
if BASS_ChannelIsActive(MusicStream) = BASS_ACTIVE_STOPPED then
begin
Result := true;
end;
end;
procedure TAudio_bass.PlayStart;
begin
BASS_ChannelPlay(StartSoundStream, True);
end;
procedure TAudio_bass.PlayBack;
begin
BASS_ChannelPlay(BackSoundStream, True);// then
end;
procedure TAudio_bass.PlaySwoosh;
begin
BASS_ChannelPlay(SwooshSoundStream, True);
end;
procedure TAudio_bass.PlayChange;
begin
BASS_ChannelPlay(ChangeSoundStream, True);
end;
procedure TAudio_bass.PlayOption;
begin
BASS_ChannelPlay(OptionSoundStream, True);
end;
procedure TAudio_bass.PlayClick;
begin
BASS_ChannelPlay(ClickSoundStream, True);
end;
procedure TAudio_bass.PlayDrum;
begin
BASS_ChannelPlay(DrumSoundStream, True);
end;
procedure TAudio_bass.PlayHihat;
begin
BASS_ChannelPlay(HihatSoundStream, True);
end;
procedure TAudio_bass.PlayClap;
begin
BASS_ChannelPlay(ClapSoundStream, True);
end;
procedure TAudio_bass.PlayShuffle;
begin
BASS_ChannelPlay(ShuffleSoundStream, True);
end;
procedure TAudio_bass.StopShuffle;
begin
BASS_ChannelStop(ShuffleSoundStream);
end;
function TAudio_bass.LoadSoundFromFile(var stream: HSTREAM; Name: string): boolean;
var
L: Integer;
begin
if FileExists(Name) then
begin
Log.LogStatus('Loading Sound: "' + Name + '"', 'LoadSoundFromFile');
try
stream := BASS_StreamCreateFile(False, pchar(Name), 0, 0, 0);
//Add CustomSound
L := High(CustomSounds) + 1;
SetLength (CustomSounds, L + 1);
CustomSounds[L].Filename := Name;
CustomSounds[L].Stream := TBassOutputStream.Create(stream);
except
Log.LogError('Failed to open using BASS', 'LoadSoundFromFile');
end;
end
else
begin
Log.LogError('Sound not found: "' + Name + '"', 'LoadSoundFromFile');
exit;
end;
end;
//Equalizer
function TAudio_bass.GetFFTData: TFFTData;
var
Data: TFFTData;
begin
//Get Channel Data Mono and 256 Values
BASS_ChannelGetData(MusicStream, @Result, BASS_DATA_FFT512);
end;
{*
* Copies interleaved PCM 16bit uint (maybe fake) stereo samples into data.
* Returns the number of frames (= stereo/mono sample)
*}
function TAudio_bass.GetPCMData(var data: TPCMData): Cardinal;
var
info: BASS_CHANNELINFO;
nBytes: DWORD;
begin
//Get Channel Data Mono and 256 Values
BASS_ChannelGetInfo(MusicStream, info);
ZeroMemory(@data, sizeof(TPCMData));
if (info.chans = 1) then
begin
// mono file -> add stereo channel
{
nBytes := BASS_ChannelGetData(Bass, @data[0], samples*sizeof(Smallint));
// interleave data
//CopyMemory(@data[1], @data[0], samples*sizeof(Smallint));
}
result := 0;
end
else
begin
// stereo file
nBytes := BASS_ChannelGetData(MusicStream, @data, sizeof(TPCMData));
end;
if(nBytes <= 0) then
result := 0
else
result := nBytes div sizeof(TPCMStereoSample);
end;
function TAudio_bass.LoadCustomSound(const Filename: String): Cardinal;
var
S: hStream;
I: Integer;
F: String;
begin
//Search for Sound in already loaded Sounds
F := UpperCase(SoundPath + FileName);
For I := 0 to High(CustomSounds) do
begin
if (UpperCase(CustomSounds[I].Filename) = F) then
begin
Result := I;
Exit;
end;
end;
if LoadSoundFromFile(S, SoundPath + Filename) then
Result := High(CustomSounds)
else
Result := 0;
end;
procedure TAudio_bass.PlayCustomSound(const Index: Cardinal );
begin
if Index <= High(CustomSounds) then
with CustomSounds[Index].Stream as TBassOutputStream do
begin
BASS_ChannelPlay(Handle, True);
end;
end;
{$IFDEF UseBASSInput}
procedure TAudio_bass.InitializeRecord;
var
device: integer;
Descr: string;
input: integer;
input2: integer;
InputName: PChar;
Flags: integer;
mic: array[0..15] of integer;
SC: integer; // soundcard
SCI: integer; // soundcard input
No: integer;
function isDuplicate(Desc: String): Boolean;
var
I: Integer;
begin
Result := False;
//Check for Soundcard with same Description
For I := 0 to SC-1 do
begin
if (Recording.SoundCard[I].Description = Desc) then
begin
Result := True;
Break;
end;
end;
end;
begin
with Recording do
begin
// checks for recording devices and puts them into an array
SetLength(SoundCard, 0);
SC := 0;
Descr := BASS_RecordGetDeviceDescription(SC);
while (Descr <> '') do
begin
//If there is another SoundCard with the Same ID, Search an available Name
if (IsDuplicate(Descr)) then
begin
No:= 1; //Count of SoundCards with same Name
Repeat
Inc(No)
Until not IsDuplicate(Descr + ' (' + InttoStr(No) + ')');
//Set Description
Descr := Descr + ' (' + InttoStr(No) + ')';
end;
SetLength(SoundCard, SC+1);
// TODO: free object on termination
SoundCard[SC] := TBassSoundCard.Create();
SoundCard[SC].Description := Descr;
//Get Recording Inputs
SCI := 0;
BASS_RecordInit(SC);
InputName := BASS_RecordGetInputName(SCI);
{$IFDEF DARWIN}
// Under MacOSX the SingStar Mics have an empty
// InputName. So, we have to add a hard coded
// Workaround for this problem
if (InputName = nil) and (Pos( 'USBMIC Serial#', Descr) > 0) then
begin
InputName := 'Microphone';
end;
{$ENDIF}
SetLength(SoundCard[SC].Input, 1);
SoundCard[SC].Input[SCI].Name := InputName;
// process each input
while (InputName <> nil) do
begin
Flags := BASS_RecordGetInput(SCI);
if (SCI >= 1) {AND (Flags AND BASS_INPUT_OFF = 0)} then
begin
SetLength(SoundCard[SC].Input, SCI+1);
SoundCard[SC].Input[SCI].Name := InputName;
end;
//Set Mic Index
if ((Flags and BASS_INPUT_TYPE_MIC) = 1) then
SoundCard[SC].MicInput := SCI;
Inc(SCI);
InputName := BASS_RecordGetInputName(SCI);
end;
BASS_RecordFree;
Inc(SC);
Descr := BASS_RecordGetDeviceDescription(SC);
end; // while
end; // with Recording
end;
// TODO: code is used by all IAudioInput implementors
// -> move to a common superclass (TAudioInput_Generic?)
procedure TAudio_bass.CaptureStart;
var
S: integer;
SC: integer;
PlayerLeft, PlayerRight: integer;
CaptureSoundLeft, CaptureSoundRight: TSound;
begin
for S := 0 to High(Recording.Sound) do
Recording.Sound[S].BufferLong[0].Clear;
for SC := 0 to High(Ini.CardList) do begin
PlayerLeft := Ini.CardList[SC].ChannelL-1;
PlayerRight := Ini.CardList[SC].ChannelR-1;
if PlayerLeft >= PlayersPlay then PlayerLeft := -1;
if PlayerRight >= PlayersPlay then PlayerRight := -1;
if (PlayerLeft > -1) or (PlayerRight > -1) then begin
if (PlayerLeft > -1) then
CaptureSoundLeft := Recording.Sound[PlayerLeft]
else
CaptureSoundLeft := nil;
if (PlayerRight > -1) then
CaptureSoundRight := Recording.Sound[PlayerRight]
else
CaptureSoundRight := nil;
CaptureCard(SC, CaptureSoundLeft, CaptureSoundRight);
end;
end;
end;
// TODO: code is used by all IAudioInput implementors
// -> move to a common superclass (TAudioInput_Generic?)
procedure TAudio_bass.CaptureStop;
var
SC: integer;
PlayerLeft: integer;
PlayerRight: integer;
begin
for SC := 0 to High(Ini.CardList) do begin
PlayerLeft := Ini.CardList[SC].ChannelL-1;
PlayerRight := Ini.CardList[SC].ChannelR-1;
if PlayerLeft >= PlayersPlay then PlayerLeft := -1;
if PlayerRight >= PlayersPlay then PlayerRight := -1;
if (PlayerLeft > -1) or (PlayerRight > -1) then
StopCard(SC);
end;
end;
{*
* Bass input capture callback.
* Params:
* stream - BASS input stream
* buffer - buffer of captured samples
* len - size of buffer in bytes
* user - players associated with left/right channels
*}
function MicrophoneCallback(stream: HSTREAM; buffer: Pointer;
len: Cardinal; Card: Cardinal): boolean; stdcall;
begin
Recording.HandleMicrophoneData(buffer, len, Recording.SoundCard[Card]);
Result := true;
end;
{*
* Start input-capturing on Soundcard specified by Card.
* Params:
* Card - soundcard index in Recording.SoundCard array
* CaptureSoundLeft - sound(-buffer) used for left channel capture data
* CaptureSoundRight - sound(-buffer) used for right channel capture data
*}
procedure TAudio_bass.CaptureCard(Card: byte; CaptureSoundLeft, CaptureSoundRight: TSound);
var
Error: integer;
ErrorMsg: string;
bassSoundCard: TBassSoundCard;
begin
if not BASS_RecordInit(Card) then
begin
Error := BASS_ErrorGetCode;
ErrorMsg := IntToStr(Error);
if Error = BASS_ERROR_DX then ErrorMsg := 'No DX5';
if Error = BASS_ERROR_ALREADY then ErrorMsg := 'The device has already been initialized';
if Error = BASS_ERROR_DEVICE then ErrorMsg := 'The device number specified is invalid';
if Error = BASS_ERROR_DRIVER then ErrorMsg := 'There is no available device driver';
Log.LogError('Error initializing record [' + IntToStr(Card) + ']');
Log.LogError('TAudio_bass.CaptureCard: Error initializing record: ' + ErrorMsg);
end
else
begin
bassSoundCard := TBassSoundCard(Recording.SoundCard[Card]);
bassSoundCard.CaptureSoundLeft := CaptureSoundLeft;
bassSoundCard.CaptureSoundRight := CaptureSoundRight;
// capture in 44.1kHz/stereo/16bit and a 20ms callback period
bassSoundCard.RecordStream :=
BASS_RecordStart(44100, 2, MakeLong(0, 20) , @MicrophoneCallback, Card);
end;
end;
{*
* Stop input-capturing on Soundcard specified by Card.
* Params:
* Card - soundcard index in Recording.SoundCard array
*}
procedure TAudio_bass.StopCard(Card: byte);
begin
BASS_RecordSetDevice(Card);
BASS_RecordFree;
end;
{$ENDIF}
initialization
singleton_MusicBass := TAudio_bass.create();
AudioManager.add( singleton_MusicBass );
finalization
AudioManager.Remove( singleton_MusicBass );
end.
|