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
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
|
{BASS dll code}
unit rbass;
interface
uses
windows;
procedure BassError(text:PWideChar);
procedure OpenURL(url:PWideChar); cdecl;
procedure StopStation;
function GetMusicFormat:PAnsiChar;
function ConstructFilter:pointer;
procedure EQ_ON;
procedure EQ_OFF;
procedure SetSndVol(arg:integer);
procedure SetBassConfig;
procedure MyFreeBASS;
function MyInitBASS:bool;
procedure MyUnloadBass;
function MyLoadBASS:bool;
function CheckBassStatus:bool;
implementation
uses
common, m_api, io
,dbsettings, mirutils, wrapdlgs
,Dynamic_Bass,dynbasswma
,rglobal
;
const
signMP3 = $FBFF;
signID3 = $00334449;
signOGG = $5367674F;
OGGHdrSize = 26; // +1=NumSegments
const
BASSName = 'bass.dll';
StationHeader:PByte=nil;
var
hdrlen:integer;
syncMETA,
syncOGG,
syncWMA,
syncWMA1,
syncEND:HSYNC;
SaveHeader:bool;
const
proxy:pAnsiChar = nil;
const
hRecord:THANDLE = 0;
procedure BassError(text:PWideChar);
begin
MessageboxW(0,TranslateW(text),TranslateW('Sorry!'),MB_ICONERROR)
end;
// now called from BASS_Init only, so no dll load check
procedure ErrorCustom(text:pWideChar=nil);
var
buf:array [0..255] of WideChar;
pcw:pWideChar;
idx:integer;
begin
idx:=BASS_ErrorGetCode();
if (idx<0) or (idx>BASS_ERROR_MAXNUMBER) then
begin
if text=nil then
pcw:='Unknown error'
else
pcw:=text;
end
else
pcw:=FastAnsiToWideBuf(BASS_ERRORS[idx],@buf);
MessageBoxW(0,TranslateW(pcw),
TranslateW('Oops! BASS error'),MB_ICONERROR)
end;
procedure SetBassConfig;
begin
if BassStatus=rbs_null then exit;
BASS_SetConfig(BASS_CONFIG_NET_PREBUF ,sPreBuf);
BASS_SetConfig(BASS_CONFIG_NET_BUFFER ,sBuffer);
BASS_SetConfig(BASS_CONFIG_NET_TIMEOUT,sTimeout);
end;
procedure SetSndVol(arg:integer);
begin
if arg<0 then
arg:=gVolume
else
gVolume:=arg;
// no BASS dll - no channel
if chan<>0 then
begin
if arg<0 then arg:=0;
BASS_ChannelSetAttribute(chan,BASS_ATTRIB_VOL,arg/100);
end;
end;
procedure EQ_OFF;
var
i:cardinal;
begin
// no BASS dll - no channel
if chan<>0 then
for i:=0 to 9 do
BASS_ChannelRemoveFX(chan,eq[i].fx);
isEQ_OFF:=BST_CHECKED;
end;
procedure EQ_ON;
var
i:cardinal;
begin
// no BASS dll - no channel
if chan<>0 then
begin
for i:=0 to 9 do
eq[i].fx:=BASS_ChannelSetFX(chan,BASS_FX_DX8_PARAMEQ,1);
for i:=0 to 9 do
BASS_FXSetParameters(eq[i].fx,@eq[i].param);
isEQ_OFF:=BST_UNCHECKED;
end;
end;
procedure MyStopBASS;
begin
if BassStatus=rbs_null then exit;
if ActiveContact<>0 then
begin
if syncMETA<>0 then
begin
BASS_ChannelRemoveSync(chan,syncMETA);
syncMETA:=0
end;
if syncEND<>0 then
begin
BASS_ChannelRemoveSync(chan,syncEND);
syncEND:=0
end;
if syncWMA<>0 then
begin
BASS_ChannelRemoveSync(chan,syncWMA);
syncWMA:=0
end;
if syncOGG<>0 then
begin
BASS_ChannelRemoveSync(chan,syncOGG);
syncOGG:=0
end;
if syncWMA1<>0 then
begin
BASS_ChannelRemoveSync(chan,syncWMA1);
syncWMA1:=0
end;
end;
end;
procedure MyFreeBASS;
begin
if BassStatus=rbs_init then
begin
MyStopBASS;
BASS_Free;
BassStatus:=rbs_load;
end;
end;
procedure StopStation;
begin
if chan<>0 then
BASS_StreamFree(chan); // close old stream
chan:=0;
mFreeMem(StationHeader);
mFreeMem(ActiveURL);
DBDeleteSetting(ActiveContact,strCList,optStatusMsg);
MyStopBASS;
end;
function GetDeviceNumber:integer;
var
i:integer;
info:BASS_DEVICEINFO;
begin
// default device
result:=-1;
i:=1; // 0 is always the "no sound" device
repeat
if not BASS_GetDeviceInfo(i,info) then
break;
if (info.flags and BASS_DEVICE_ENABLED)<>0 then
if StrCmp(info.name,usedevice)=0 then
begin
// not default device
if (info.flags and BASS_DEVICE_DEFAULT)=0 then
result:=i;
break;
end;
inc(i);
until false;
end;
function MyInitBASS:bool;
var
num:integer;
begin
if BassSTatus=rbs_null then
begin
result:=false;
exit;
// or can do this:
MyLoadBass;
if BassSTatus=rbs_null then
begin
result:=false;
exit;
end;
end;
if BassStatus=rbs_init then
begin
result:=true;
exit;
end;
num:=GetDeviceNumber;
// Bass_ErrorGetCode=BASS_ERROR_NO3D
result:=BASS_Init(num,44100,BASS_DEVICE_3D,0,nil);
if (not result) and (Bass_ErrorGetCode()=BASS_ERROR_NO3D) then
result:=BASS_Init(num,44100,0,0,nil);
// not default device choosed - check default now
if (not result) and (num>=0) then
begin
result:=BASS_Init(-1,44100,BASS_DEVICE_3D,0,nil);
if (not result) and (Bass_ErrorGetCode()=BASS_ERROR_NO3D) then
result:=BASS_Init(-1,44100,0,0,nil);
end;
// BASS interface compatibility
if not result then
begin
if BASS_ErrorGetCode()=BASS_ERROR_ALREADY then
begin
result:=true;
end;
end;
if not result then
begin
ErrorCustom('Can''t initialize device');
end
else
begin
num:=DBReadByte(0,PluginName,optEAXType,0);
if num=0 then
BASS_SetEAXParameters(-1,0,-1,-1)
else
BASS_SetEAXPreset(EAXItems[num].code);
end;
if result then
BassStatus:=rbs_init;
end;
procedure MyUnloadBass;
begin
MyFreeBASS;
if BassStatus=rbs_load then
begin
mFreeMem(Proxy);
BASS_PluginFree(0);
Unload_BASSDLL;
BassStatus:=rbs_null;
end;
end;
function MyLoadBASS:bool;
var
pc,custom:PWideChar;
basspath:PWideChar;
buf:array [0..MAX_PATH-1] of WideChar;
fh:THANDLE;
fd:TWin32FindDataW;
begin
if BassStatus<>rbs_null then
begin
result:=true;
exit;
end;
mGetMem(basspath,1024);
// trying to load Bass.dll from custom
custom:=DBReadUnicode(0,PluginName,optBASSPath,nil);
if custom<>nil then
begin
pc:=StrCopyEW(basspath,custom);
if (pc-1)^<>'\' then
begin
pc^:='\';
inc(pc);
end;
StrCopyW(pc,BASSName);
result:=Load_BASSDLL(basspath);
end
else
result:=false;
if not result then
begin
GetModuleFileNameW(0,buf,MAX_PATH-1);
pc:=StrEndW(buf);
repeat
dec(pc);
until pc^='\';
inc(pc);
pc^:=#0;
pc:=StrCopyW(StrCopyEW(basspath,buf),BASSName); // %miranda_path%\
result:=Load_BASSDLL(basspath);
if not result then
begin
pc:=StrCopyW(StrCopyEW(pc,'plugins\'),BASSName); // %miranda_path%\plugins\
result:=Load_BASSDLL(basspath);
if not result then
begin
pc:=StrCopyW(StrCopyEW(pc,'bass\'),BASSName); // %miranda_path%\plugins\bass\
result:=Load_BASSDLL(basspath);
end;
end;
end;
// not found but custom path is empty
if (not result) and (custom=nil) then
begin
if MessageboxW(0,TranslateW('BASS.DLL not found! Choose BASS.dll path manually'),
cPluginName,MB_YESNO)=IDYES then
begin
pc:=nil;
if SelectDirectory(TranslateW('Choose BASS.dll path'),pc,0) then
begin
//!! if options page opened, need to change edit field
PathToRelativeW(pc,buf);
pc:=StrCopyEW(basspath,buf);
if (pc-1)^<>'\' then
begin
pc^:='\';
inc(pc);
end;
pc^:=#0;
DBWriteUnicode(0,PluginName,optBASSPath,basspath);
StrCopyW(pc,BASSName);
result:=Load_BASSDLL(basspath);
end;
end;
end;
// check Bass.dll version
if result then
begin
if (BASS_GetVersion shr 16)<BASSVERSION then
begin
Unload_BASSDLL;
result:=false;
BassError('Wrong version of BASS.DLL');
end
else
begin
// load Bass plugins
pc:=StrCopyW(pc,'bass*.dll');
fh:=FindFirstFileW(basspath,fd);
if fh<>THANDLE(INVALID_HANDLE_VALUE) then
begin
repeat
StrCopyW(pc,fd.cFileName);
if BASS_PluginLoad(pAnsiChar(basspath),BASS_UNICODE)=0 then
break;
until not FindNextFileW(fh,fd);
FindClose(fh);
end;
// enable ASX processing (if WMA loaded)
BASS_SetConfig(BASS_CONFIG_NET_PLAYLIST, 2); // 2 - enable internet and local playlists
end;
end
else
begin
BassError('BASS.DLL not found!');
end;
mFreeMem(custom);
mFreeMem(basspath);
if result then
BassStatus:=rbs_load;
end;
function CheckBassStatus:bool;
begin
if BassStatus=rbs_null then
MyLoadBass;
if BassStatus<>rbs_null then
begin
SetBassConfig;
mFreeMem(Proxy);
proxy:=GetProxy(hNetLib);
BASS_SetConfigPtr(BASS_CONFIG_NET_PROXY,proxy);
end;
if BassStatus=rbs_load then
MyInitBass;
result:=BassStatus<>rbs_null;
end;
function GetMusicFormat:PAnsiChar;
var
bci:BASS_CHANNELINFO;
begin
BASS_ChannelGetInfo(chan,bci);
case bci.ctype of
BASS_CTYPE_STREAM_OGG: result:='OGG';
BASS_CTYPE_STREAM_MP1,
BASS_CTYPE_STREAM_MP2,
BASS_CTYPE_STREAM_MP3: result:='MP3';
BASS_CTYPE_STREAM_WMA,
BASS_CTYPE_STREAM_WMA_MP3: result:='WMA';
{BASS_CTYPE_STREAM_AAC,}$10b00: result:='AAC';
{BASS_CTYPE_STREAM_MP4:}$10b01: result:='MP4';
{BASS_CTYPE_STREAM_AC3:}$11000: result:='AC3';
else
result:=nil;
end;
end;
function GetFileExt(buf:pWideChar;sign:pointer):pWideChar;
var
pc:pAnsiChar;
begin
result:=buf;
pc:=GetMusicFormat;
if pc=nil then
begin
StrCopyW(buf,'sav');
if sign<>nil then
begin
if pdword(sign)^=signOGG then
StrCopyW(buf,'ogg')
else if ((pdword(sign)^ and $00FFFFFF)=signID3) or (pword(sign)^=signMP3) then
StrCopyW(buf,'mp3');
end;
end
else
begin
FastAnsiToWideBuf(pc,buf);
LowerCase(buf);
end;
end;
function MakeFileName(sign:pointer):pWideChar;
var
p,pcw:PWideChar;
buf:pWideChar;
begin
// allocate buffer
mGetMem(buf,MAX_PATH*SizeOf(WideChar));
// path
if recpath<>nil then
begin
ConvertFileName(recpath,buf,ActiveContact);
// pcw:=ParseVarString(recpath,ActiveContact);
// CallService(MS_UTILS_PATHTOABSOLUTEW,WPARAM(pcw),LPARAM(buf));
// mFreeMem(pcw);
if not ForceDirectories(buf) then
begin
result:=nil;
exit;
end;
pcw:=StrEndW(buf);
if (pcw-1)^<>'\' then
begin
pcw^:='\';
inc(pcw);
end;
end
else
pcw:=buf;
// name
//!!
p:=MakeMessage;
pcw:=StrCopyEW(pcw,p);
mFreeMem(p);
if (pcw=buf) or ((pcw-1)^='\') then
pcw:=StrEndW(IntToHex(pcw,GetCurrentTime));
// ext
pcw^:='.'; inc(pcw);
GetFileExt(pcw,sign);
result:=buf;
end;
procedure StatusProc(buffer:pointer;len,user:dword); stdcall;
var
pc:pWideChar;
pb:PByte;
i,sum:integer;
flag:bool;
doRecord:bool;
begin
flag:=true;
doRecord:=CallService(MS_RADIO_COMMAND,MRC_RECORD,LPARAM(-1))<>0;
if (buffer<>nil) and (len<>0) and SaveHeader then
begin
SaveHeader:=false;
if pdword(buffer)^=signOGG then // if header ALL in buffer
begin
pb:=buffer;
flag:=false;
repeat
inc(pb,OGGHdrSize);
i:=pb^; //patterns
sum:=0;
inc(pb);
while i>0 do
begin
inc(sum,pb^);
inc(pb);
dec(i);
end;
inc(pb,sum); //here must be next sign
flag:=not flag;
until not flag;
hdrlen:=PAnsiChar(pb)-PAnsiChar(buffer);
mGetMem(StationHeader,hdrlen);
move(buffer^,StationHeader^,hdrlen);
end;
end;
if (buffer=nil) or not doRecord then // end of stream or stop record
begin
if not doRecord or (doContRec=BST_UNCHECKED) then
if hRecord<>0 then
begin
if buffer<>nil then // write tail
BlockWrite(hRecord,buffer^,len);
CloseHandle(hRecord);
hRecord:=0;
end;
end
else
begin
if len=0 then // HTTP or ICY tags
begin
{
while PAnsiChar(buffer)^<>#0 do
begin
messagebox(0,PAnsiChar(buffer),'ICY-HTTP',0);
while PAnsiChar(buffer)^<>#0 do inc(PAnsiChar(buffer)); inc(PAnsiChar(buffer));
end;
}
end
else
begin
if doRecord then
begin
if hRecord=0 then
begin
pc:=MakeFileName(StationHeader);
if pc<>nil then
hRecord:=Rewrite(pc)
else
hRecord:=THANDLE(INVALID_HANDLE_VALUE);
if hRecord=THANDLE(INVALID_HANDLE_VALUE) then
hRecord:=0
else if flag and (StationHeader<>nil) then
begin
BlockWrite(hRecord,StationHeader^,hdrlen);
// permissible to skip to the next Page (OggS) but this is not necessary
end;
mFreeMem(pc);
end;
if hRecord<>0 then
BlockWrite(hRecord,buffer^,len);
end;
end;
end;
end;
{$IFDEF Debug}
procedure logmeta(tag,a,b:pansiChar);
var
f:thandle;
p:pansichar;
begin
f:=Append(pansichar('mradio.log'));
BlockWrite(f,tag^,StrLen(tag));
p:=#13#10; BlockWrite(f,p^,StrLen(p));
BlockWrite(f,a^,StrLen(a));
p:=#13#10; BlockWrite(f,p^,StrLen(p));
BlockWrite(f,b^,StrLen(b));
p:=#13#10; BlockWrite(f,p^,StrLen(p));
p:=#13#10; BlockWrite(f,p^,StrLen(p));
CloseHandle(f);
end;
{$ENDIF}
function DoMeta(meta:PAnsiChar;TagType:int_ptr):Boolean;
var
pcw:pWideChar;
buf:array [0..511] of AnsiChar;
artist,title:PAnsiChar;
oldartist,oldtitle:pAnsiChar;
ppc,pc:pAnsiChar;
idx,lcp:integer;
needtofree:Boolean;
CurDescrW:PWideChar;
old:boolean;
// tag:PAnsiChar;
gotartist,gottitle:boolean; // indicate what we got artist/title
begin
result:=false;
if meta=nil then
meta:=BASS_ChannelGetTags(chan,TagType);
if meta<>nil then
begin
// for cases when artist or title presents but empty
gotartist:=false;
gottitle :=false;
needtofree:=false;
lcp:=CP_UTF8;
buf[0]:=#0;
artist:=nil;
title :=nil;
CurDescrW:=nil;
//tag:=meta;
case TagType of
BASS_TAG_WMA_META: begin
pc:=StrPos(meta,'data=');
if pc=meta then
begin
pc:=StrPos(meta,'artist=');
if pc<>nil then
begin
gotartist:=true;
mGetMem(artist,256);
Decode(artist,pc+7);
end;
pc:=StrPos(meta,'title=');
if pc<>nil then
begin
gottitle:=true;
mGetMem(title,256);
Decode(title,pc+6);
end;
pc:=StrPos(meta,'album=');
if pc<>nil then
begin
end;
pc:=StrPos(meta,'duration=');
if pc<>nil then
begin
end;
if not gotartist then
begin
if not gottitle then
begin
pc:=StrPos(meta,'caption=');
if pc<>nil then
begin
gottitle:=true;
mGetMem(title,256);
Decode(title,pc+8);
end;
end;
// analize title/caption for artist-title
if gottitle then
begin
pc:=StrPos(title,' - ');
if pc=nil then
pc:=StrScan(title,'-');
if pc<>nil then
begin
artist:=title;
if pc^=' ' then
title:=pc+3
else
title:=pc+1;
pc^:=#0;
CurDescrW:=pWideChar(artist);
end
else
CurDescrW:=pWideChar(title);
end;
end
else
needtofree:=true;
// to avoid mem leak and wrong tag process
result:=true;
end;
StatusProc(nil,0,0); // split records here
end;
BASS_TAG_META: begin
//tag:='SHOUTCAST';
// SHOUTCAST StreamTitle='xxx';StreamUrl='xxx';
// "Station=xyz" meta tag="Trackinfo"
pc:=StrPos(meta,'StreamTitle=');
if pc<>nil then
begin
inc(pc,13);
ppc:=StrScan(pc,';');
if (ppc-pc-1)>0 then
begin
StrCopy(buf,pc,ppc-pc-1);
lcp:=GetTextFormat(@buf,ppc-pc-1);
end;
end;
if buf[0]<>#0 then
begin
case lcp of
CP_UTF8: UTF8ToWide(buf,CurDescrW);
CP_ACP : AnsiToWide(buf,CurDescrW,MirandaCP);
end;
end;
gottitle:=true;
title:=pAnsiChar(CurDescrW);
pcw:=StrPosW(CurDescrW,' - ');
if pcw=nil then
pcw:=StrScanW(CurDescrW,'-');
if pcw<>nil then
begin
artist:=pAnsiChar(CurDescrW);
if pcw^=' ' then
title:=pAnsiChar(pcw+3)
else
title:=pAnsiChar(pcw+1);
pcw^:=#0;
end;
lcp:=CP_UNICODE;
StatusProc(nil,0,0); // split records here
result:=true;
end;
BASS_TAG_ID3: begin // not realized, anyway - at the end of track
end;
BASS_TAG_ID3V2: begin
end;
BASS_TAG_APE, // not sure, need to check. maybe better process BASS_TAG_APEBINARY
BASS_TAG_WMA,
BASS_TAG_OGG: begin
//tag:='OGG';
while meta^<>#0 do
begin
CharLowerA(StrCopy(buf,meta,10));
if StrCmp(buf,'title',5)=0 then
begin
title:=meta+6;
gottitle:=true;
end
else if StrCmp(buf,'artist',6)=0 then
begin
artist:=meta+7;
gotartist:=true;
end;
if gotartist and gottitle then
break;
while meta^<>#0 do inc(meta); inc(meta);
end;
if (not gotartist) and gottitle then
begin
pc:=StrPos(title,' - ');
if pc=nil then
pc:=StrScan(title,'-');
if pc<>nil then
begin
needtofree:=true;
StrDup(artist,title,pc-title);
if pc^=' ' then
idx:=3
else
idx:=1;
StrDup(title,pc+idx);
end;
end;
buf[0]:=#0;
end;
end;
old:=true;
if gotartist or gottitle then
begin
// check for old
oldartist:=nil;
oldtitle :=nil;
case lcp of
CP_UTF8: begin
if gotartist then
begin
oldartist:=DBReadUTF8(0,PluginName,optArtist);
if StrCmp(artist,oldartist)<>0 then
old:=false;
end;
if old and gottitle then
begin
oldtitle:=DBReadUTF8(0,PluginName,optTitle);
if StrCmp(title,oldtitle)<>0 then
old:=false;
end;
if not old then
begin
DBWriteUTF8(0,PluginName,optArtist,artist);
DBWriteUTF8(0,PluginName,optTitle ,title);
end;
end;
CP_UNICODE:begin
if gotartist then
begin
oldartist:=pAnsiChar(DBReadUnicode(0,PluginName,optArtist));
if StrCmpW(pWideChar(artist),pWideChar(oldartist))<>0 then
old:=false;
end;
if old and gottitle then
begin
oldtitle:=pAnsiChar(DBReadUnicode(0,PluginName,optTitle));
if StrCmpW(pWideChar(title),pWideChar(oldtitle))<>0 then
old:=false;
end;
if not old then
begin
DBWriteUnicode(0,PluginName,optArtist,pWideChar(artist));
DBWriteUnicode(0,PluginName,optTitle ,pWideChar(title));
end;
end;
end;
{$IFDEF Debug}
//logmeta(tag,artist,title);
{$ENDIF}
mFreeMem(oldartist);
mFreeMem(oldtitle);
mFreeMem(CurDescrW);
if needtofree then
begin
mFreeMem(artist);
mFreeMem(title );
end;
end;
if not old then
CallService(MS_RADIO_COMMAND,MRC_STATUS,RD_STATUS_NEWTAG);
end;
end;
procedure MetaSync(handle:HSYNC;channel,data:dword;user:pointer); stdcall;
//var tagtype:integer;
begin
(*
if handle=syncOGG then tagtype:=BASS_TAG_OGG
else if handle=syncWMA then tagtype:=BASS_TAG_WMA
else if handle=syncWMA1 then tagtype:=BASS_TAG_WMA_META
else {if handle=syncMETA then} tagtype:=BASS_TAG_META;
*)
DoMeta(nil{PAnsiChar(data)},int_ptr(user){tagtype});
end;
procedure EndSync(handle:HSYNC;channel,data:dword;user:pointer); stdcall;
var
lContact:cardinal;
begin
if RemoteSong then
begin
lContact:=ActiveContact;
CallService(MS_RADIO_COMMAND,MRC_STOP,0);
CallService(MS_RADIO_COMMAND,MRC_PLAY,lContact)
end
else if plist<>nil then CallService(MS_RADIO_COMMAND,MRC_NEXT,0)
else if doLoop=BST_UNCHECKED then CallService(MS_RADIO_COMMAND,MRC_STOP,0);
end;
type
tICYField = record
name :PAnsiChar;
branch:PAnsiChar;
option:PAnsiChar;
end;
const
NumICYFields = 4;
ICYFields: array [0..NumICYFields-1] of tICYField = (
(name:'icy-name:' ; branch:'CList' ; option:'MyHandle'),
(name:'icy-genre:' ; branch:cPluginName ; option:'Genre'),
(name:'icy-br:' ; branch:cPluginName ; option:'Bitrate'),
(name:'icy-description'; branch:cPluginName ; option:'About')
);
procedure ProcessStationData;
var
icy:PAnsiChar;
i,len:integer;
begin
// get the broadcast name and bitrate
icy:=BASS_ChannelGetTags(chan,BASS_TAG_ICY);
if icy=nil then
icy:=BASS_ChannelGetTags(chan,BASS_TAG_HTTP); // no ICY tags, try HTTP
if icy<>nil then
begin
while icy^<>#0 do
begin
for i:=0 to NumICYFields-1 do
begin
with ICYFields[i] do
begin
len:=StrLen(name);
if StrCmp(icy,name,len)=0 then
begin
if DBReadStringLength(ActiveContact,branch,option)=0 then
DBWriteString(ActiveContact,branch,option,icy+len);
break;
end;
end;
end;
while icy^<>#0 do inc(icy); inc(icy);
end;
end;
end;
procedure OpenURL(url:PWideChar); cdecl;
var
len,progress:dword;
flags:dword;
i:integer;
EAXUsed:bool;
ansiurl:array [0..511] of AnsiChar;
begin
if not CheckBassStatus then exit;
if BassStatus<>rbs_init then exit; //!! check for record
if plist=nil then
CallService(MS_RADIO_COMMAND,MRC_STATUS,RD_STATUS_CONNECT);
EAXUsed:=DBReadByte(0,PluginName,optEAXType,0)<>0;
{}
for i:=0 to NumTries-1 do
begin
if EAXUsed then
flags:=BASS_STREAM_STATUS or BASS_SAMPLE_3D or BASS_SAMPLE_MONO
else
begin
if ForcedMono<>BST_UNCHECKED then
flags:=BASS_STREAM_STATUS or BASS_SAMPLE_MONO
else
flags:=BASS_STREAM_STATUS;
end;
flags:=flags or BASS_UNICODE;
if RemoteSong then
begin
SaveHeader:=true;
chan:=BASS_StreamCreateURL(url,0,flags,@StatusProc,nil)
end
else
begin
if (plist=nil) and (doLoop<>BST_UNCHECKED) then
flags:=flags or BASS_SAMPLE_LOOP;
chan:=BASS_StreamCreateFile(FALSE,url,0,0,flags);
end;
if (chan=0) and EAXUsed then
begin
flags:=flags and not (BASS_SAMPLE_3D or BASS_SAMPLE_MONO);
if ForcedMono<>BST_UNCHECKED then
flags:=flags or BASS_SAMPLE_MONO;
if RemoteSong then
chan:=BASS_StreamCreateURL({ansi}url,0,flags,@StatusProc,nil)
else
chan:=BASS_StreamCreateFile(FALSE,url,0,0,flags);
end;
if (chan=0) and RemoteSong then
begin
if BASS_ErrorGetCode=BASS_ERROR_FILEOPEN then
begin
flags:=flags and not BASS_UNICODE;
chan:=BASS_StreamCreateURL(FastWideToAnsiBuf(url,ansiurl),0,flags,@StatusProc,nil)
end;
end;
if chan<>0 then break;
end;
{}
if chan=0 then
begin
if (CallService(MS_RADIO_COMMAND,MRC_STATUS,RD_STATUS_GET)=RD_STATUS_ABORT) or
(plist=nil) then
begin
CallService(MS_RADIO_COMMAND,MRC_STOP,1);
end
else if plist<>nil then
CallService(MS_RADIO_COMMAND,MRC_NEXT,0);
end
else
begin
CallService(MS_RADIO_COMMAND,MRC_STATUS,RD_STATUS_NEWTRACK);
if RemoteSong then
begin
if isEQ_OFF=BST_UNCHECKED then
EQ_ON;
{$IFDEF CHANGE_NAME_BUFFERED}
icy:=DBReadString(ActiveContact,strCList,optMyHandle);
mGetMem(url,StrLen(icy)+6);
StrCopy(url+6,icy);
mFreeMem(icy);
url[0]:='[';
url[1]:=#0;
url[4]:=']';
url[5]:=' ';
{$ENDIF}
progress:=0;
repeat
if CallService(MS_RADIO_COMMAND,MRC_STATUS,RD_STATUS_GET)=RD_STATUS_ABORT then
begin
CallService(MS_RADIO_COMMAND,MRC_STOP,1);
exit;
end;
len:=BASS_StreamGetFilePosition(chan,BASS_FILEPOS_END);
if len=DW_ERROR then
break;
progress:=BASS_StreamGetFilePosition(chan, BASS_FILEPOS_DOWNLOAD);
if progress=dword(-1) then
break;
progress:=(progress-
BASS_StreamGetFilePosition(chan,BASS_FILEPOS_CURRENT))*100 div len;
// percentage of buffer filled
{$IFDEF CHANGE_NAME_BUFFERED}
IntToStr(url+1,progress,2);
url[3]:='%';
DBWriteString(ActiveContact,strCList,optMyHandle,url);
{$ENDIF}
until progress>sPreBuf;
{$IFDEF CHANGE_NAME_BUFFERED}
if url[1]<>#0 then
DBWriteString(ActiveContact,strCList,optMyHandle,url+6);
mFreeMem(url);
{$ENDIF}
ProcessStationData; // process ICY-headers
// get the stream title and set sync for subsequent titles
DoMeta(nil,BASS_TAG_META);
syncMETA:=BASS_ChannelSetSync(chan,BASS_SYNC_META ,0,@MetaSync,pointer(BASS_TAG_META));
syncOGG :=BASS_ChannelSetSync(chan,BASS_SYNC_OGG_CHANGE,0,@MetaSync,pointer(BASS_TAG_OGG));
syncWMA :=BASS_ChannelSetSync(chan,BASS_SYNC_WMA_CHANGE,0,@MetaSync,pointer(BASS_TAG_WMA));
syncWMA1:=BASS_ChannelSetSync(chan,BASS_SYNC_WMA_META ,0,@MetaSync,pointer(BASS_TAG_WMA_META));
end
else
begin
if not DoMeta(nil,BASS_TAG_OGG) then
if not DoMeta(nil,BASS_TAG_ID3V2) then
if not DoMeta(nil,BASS_TAG_ID3) then
if not DoMeta(nil,BASS_TAG_APE) then
;
end;
syncEND:=BASS_ChannelSetSync(chan,BASS_SYNC_END,0,@EndSync,nil);
SetSndVol(-1);
// play it!
BASS_ChannelPlay(chan,FALSE);
end;
end;
function MakeFilter(dst,descr,full,filter:PWideChar;show:bool=true):pWideChar;
var
p:PWideChar;
begin
if full<>nil then
begin
p:=StrEndW(full);
p^:=';';
StrCopyW(p+1,filter);
end;
dst:=StrCopyEW(dst,TranslateW(descr));
if show then
begin
dst^ :=' ';
(dst+1)^:='(';
dst:=StrCopyEW(dst+2,filter);
dst^:=')';
inc(dst);
dst^:=#0;
end;
inc(dst);
result:=StrCopyEW(dst,filter)+1;
end;
function ConstructFilter:pointer;
var
pc:pWideChar;
ph:PDWord;
Info:PBASS_PLUGININFO;
i:integer;
full:array [0..511] of WideChar;
tmpbuf1,tmpbuf2:array [0..127] of WideChar;
begin
mGetMem(pc,4096);
// FillChar(pc^,4096,0);
result:=pc;
full[0]:=#0;
pc:=MakeFilter(pc,'All files' ,nil ,'*.*',false);
pc:=MakeFilter(pc,'Playlist files',full,'*.pls;*.m3u;*.m3u8;*.asx');
pc:=MakeFilter(pc,'BASS built-in' ,full,'*.mp3;*.mp2;*.mp1;*.ogg;*.wav;*.aif');
if BassStatus=rbs_null then
MyLoadBass;
if BassStatus<>rbs_null then
begin
ph:=pointer(BASS_PluginGetInfo(0));
if ph<>nil then
begin
while ph^<>0 do
begin
Info:=BASS_PluginGetInfo(ph^);
for i:=0 to Info^.formatc-1 do
//!! need to translate Ansi -> wide
with Info^.Formats[i] do
begin
pc:=MakeFilter(pc,FastAnsiToWideBuf(name,tmpbuf1),full,FastAnsiToWideBuf(exts,tmpbuf2));
end;
inc(ph);
end;
end;
end;
pc:=MakeFilter(pc,'All supported formats',nil,full,false);
pc^:=#0;
end;
end.
|