aboutsummaryrefslogtreecommitdiffstats
path: root/Game/Code/Classes/USongs.pas
blob: f332324421f09e56bf76aac6b9b4b21e8099eca5 (plain) (blame)
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
unit USongs;

interface
uses SysUtils, ULog, SDL, UTexture, UCovers, UCatCovers, UMergeSort;

const
  SONG_LOAD_COMPLETE = true;
  SONG_LOAD_NOTES = false;

type
  TMedleySource = ( msNone, msCalculated, msTag );

  TMedley = record
    Source:       TMedleySource;  //source of the information
    StartBeat:    integer;  //start beat of medley
    EndBeat:      integer;  //end beat of medley
    FadeIn_time:  real;     //FadeIn-Time in seconds
    FadeOut_time: real;     //FadeOut-Time in seconds
  end;

  { used to hold header tags that are not supported by this version of
    usdx (e.g. some tags from ultrastar 0.7.0) when songs are loaded in
    songeditor. They will be written the end of the song header } //from usdx 1.1
  TCustomHeaderTag = record
    Tag: String;
    Content: String;
  end;

  TBPM = record
    BPM:        real;
    StartBeat:  real;
  end;

  TScore = record
    Name:       string;
    Score:      integer;
    Length:     string;
    Date:       string;
  end;

  TSong = record
    Path:       string;
    Folder:     string; // for sorting by folder
    FileName:   string;

    isDuet:     boolean;
    DuetNames:  array of string;
    Medley:     TMedley;
    CalcMedley: boolean;
    PreviewStart: real; //in seconds
    CustomTags: array of TCustomHeaderTag; // from 1.1

    // sorting methods
    Category:   array of string; // I think I won't need this
    Genre:      array of string;
    Edition:    array of string;
    Language:   string; // 0.5.0: new
    Year:       integer;

    Title:      string;
    Artist:     string;

    Text:       string;
    Creator:    string;

    Cover:      string;
    CoverTex:   TTexture;
    Mp3:        string;
    Background: string;
    Video:      string;
    VideoGAP:   real;
    VideoLoaded: boolean; // 0.5.0: true if the video has been loaded 
    NotesGAP:   integer;
    Start:      real; // in seconds
    Finish:     integer; // in miliseconds
    Relative:   boolean;
    Resolution: integer;
    BPM:        array of TBPM;
    GAP:        real; // in miliseconds

    Score:      array[0..2] of array of TScore;

    // these are used when sorting is enabled
    Visible:    boolean; // false if hidden, true if visible
    Main:       boolean; // false for songs, true for category buttons
    OrderNum:   integer; // has a number of category for category buttons and songs
    OrderTyp:   integer; // type of sorting for this button (0=name)
    CatNumber:  integer; // Count of Songs in Category for Cats and Number of Song in Category for Songs
  end;

  TSongs = class
  private
    BrowsePos:  Cardinal; //Actual Pos in Song Array
  public
    Song:       array of TSong; // array of songs
    SongSort:   array of TSong;
    Selected:   integer; // selected song index
    NumFaultySongs: integer;

    function FindSongFile(Dir, Mask: string): string;
    procedure LoadSongList; // load all songs
    procedure BrowseDir(Dir: string; Index: integer); // should return number of songs in the future
    procedure Sort(Order: integer);
  end;

  TCatSongs = class
    Song:       array of TSong; // array of categories with songs
    Selected:   integer; // selected song index
    Order:      integer; // order type (0=title)
    CatNumShow: integer; // Category Number being seen
    CatCount:   integer; //Number of Categorys

    procedure Refresh; // refreshes arrays by recreating them from Songs array
//    procedure Sort(Order: integer);
    procedure ShowCategory(Index: integer); // expands all songs in category
    procedure HideCategory(Index: integer); // hides all songs in category
    procedure ClickCategoryButton(Index: integer); // uses ShowCategory and HideCategory when needed
    procedure ShowCategoryList; //Hides all Songs And Show the List of all Categorys
    function FindNextVisible(SearchFrom:integer): integer; //Find Next visible Song
    function VisibleSongs: integer; // returns number of visible songs (for tabs)
    function VisibleIndex(Index: integer): integer; // returns visible song index (skips invisible)

    function SetFilter(FilterStr: String; const fType: Byte): Cardinal;
    function NumCatSongs(Cat: integer): integer;
    function NumSongs(): integer;
    function NumVisibleCats(): integer;
  end;

var
  Songs:      TSongs; // all songs
  CatSongs:   TCatSongs; // categorized songs
  AktSong:    TSong; // one song

implementation

uses UFiles, UIni, StrUtils, Umusic, UGraphic;

var
  TempSongArr:    array of TSong;
  SongSort:       array of TSong;
  SortOrder:  integer; // number used for ordernum

function SortCompare(TempIndex, SourceIndex: integer): boolean; cdecl;
begin
    Result := false;

    case SortOrder of
      sEdition: // by edition
        if CompareText(TempSongArr[TempIndex].Edition[0], Songs.SongSort[SourceIndex].Edition[0]) <= 0 then
          Result := true;

      sGenre: // by genre
        if CompareText(TempSongArr[TempIndex].Genre[0], Songs.SongSort[SourceIndex].Genre[0]) <= 0 then
          Result := true;

      sTitle: // by title
        if CompareText(TempSongArr[TempIndex].Title, Songs.SongSort[SourceIndex].Title) <= 0 then
          Result := true;

      sArtist: // by artist
        if CompareText(TempSongArr[TempIndex].Artist, Songs.SongSort[SourceIndex].Artist) <= 0 then
          Result := true;

      sFolder: // by folder
        if CompareText(TempSongArr[TempIndex].Folder, Songs.SongSort[SourceIndex].Folder) <= 0 then
          Result := true;

      sTitle2: // by title2
        if CompareText(TempSongArr[TempIndex].Title, Songs.SongSort[SourceIndex].Title) <= 0 then
          Result := true;

      sArtist2: // by artist2
        if CompareText(TempSongArr[TempIndex].Artist, Songs.SongSort[SourceIndex].Artist) <= 0 then
          Result := true;

      sLanguage: // by Language
        if CompareText(TempSongArr[TempIndex].Language, Songs.SongSort[SourceIndex].Language) <= 0 then
          Result := true;

      sRandom:
        if (Random(2) = 0) then
          Result := true;

      sYear: //by Year
        Result := (TempSongArr[TempIndex].Year <= Songs.SongSort[SourceIndex].Year);

    end; // case
end;

function SortCopy(iSourceIndex, iDestIndex: integer; bDirection: TDirection): boolean; cdecl;
var
  TempSong: TSong;

begin
  Result := true;
    case bDirection of
      dSourceSource:
        begin
          TempSong := Songs.SongSort[iSourceIndex];
          Songs.SongSort[iDestIndex] := TempSong;
        end;

      dSourceTemp:
        begin
          TempSong := Songs.SongSort[iSourceIndex];
          TempSongArr[iDestIndex] := TempSong;
        end;

      dTempTemp:
        begin
          TempSong := TempSongArr[iSourceIndex];
          TempSongArr[iDestIndex] := TempSong;
        end;

      dTempSource:
        begin
          TempSong := TempSongArr[iSourceIndex];
          Songs.SongSort[iDestIndex] := TempSong;
        end;
    end;
end;

procedure TSongs.LoadSongList;
var
  I:  integer;
begin
  Log.LogStatus('Initializing', 'LoadSongList');

  // clear
  Setlength(Song, 100);
  NumFaultySongs := 0;

  BrowsePos := 0;
  // browse directories
  for I := 0 to Length(SongPaths) - 1 do
    BrowseDir(SongPaths[I], I);

  //Set Correct SongArray Length
  SetLength(Song, BrowsePos);
end;

procedure TSongs.BrowseDir(Dir: string; Index: integer);
var
  SR:     TSearchRec;   // for parsing Songs Directory
  SLen:   integer;
  res:    boolean;
  Name:   string;

begin
  if FindFirst(Dir + '*', faDirectory, SR) = 0 then
  begin
    repeat
      if (SR.Name <> '.') and (SR.Name <> '..') then
        BrowseDir(Dir + SR.Name + '\', Index);
    until FindNext(SR) <> 0;
  end; // if
  FindClose(SR);

  if FindFirst(Dir + '*.tx?', 0, SR) = 0 then
  begin
    repeat
      //New Mod for better Memory Management

      SLen := BrowsePos;

      Song[SLen].Path := Dir;
      Song[SLen].Folder := Copy(Dir, Length(SongPaths[Index])+1, 10000);
      Song[SLen].Folder := Copy(Song[SLen].Folder, 1, Pos('\', Song[SLen].Folder)-1);
      Song[SLen].FileName := SR.Name;

      res := AnalyseFile(Song[SLen]); //TODO Hash?

      if res then
      begin
        SetLength(Czesci, 1);
        AktSong := Song[SLen];
        res := LoadSong(Song[SLen].Path + Song[SLen].FileName, SONG_LOAD_NOTES);

        if not CheckOK then
          inc(NumFaultySongs);
          
        if res then
        begin
          Song[SLen]:=AktSong;

          //Medley and Duet - is it possible? Perhaps later...
          if not AktSong.isDuet then
            FindRefrainStart(Song[SLen])
          else
            Song[SLen].Medley.Source := msNone;

          // scanning complete, file is good
          // if there is no cover then try to find it
          if Song[SLen].Cover = '' then
          begin
            Song[SLen].Cover := FindSongFile(Dir, '*[CO].jpg');
            if not FileExists(Song[SLen].Path + Song[SLen].Cover) then
              Song[SLen].Cover := '';
          end;

          try
            Song[SLen].CoverTex.TexNum := -1;
            if (Song[SLen].Cover <> '') then
            begin
              Name := Song[SLen].Path + Song[SLen].Cover;
              Texture.Limit := 512;
              // cache texture if there is a need to this
              if not Covers.CoverExists(Name) then
              begin
                Texture.CreateCacheMipmap := true;
                Texture.GetTexture(Name, 'Plain', true); // preloads textures and creates cache mipmap
                Texture.CreateCacheMipmap := false;

                // puts this texture to the cache file
                Covers.AddCover(Name);

                // unload full size texture
                Texture.UnloadTexture(Name, false);
              end;

              Song[SLen].CoverTex := Texture.GetTexture(Name, 'Plain', true);
              Texture.Limit := 1024*1024;
            end;
          except
            Song[SLen].CoverTex.TexNum := -1;
            Texture.Limit := 1024*1024;
          end;

          Inc(BrowsePos);
        end;
      end;

      //Change Length Only every 100 Entrys
      if (BrowsePos mod 100 = 0) AND (BrowsePos <> 0) and res then
        SetLength(Song, Length(Song) + 100);

      if (BrowsePos mod 100 = 0) and res then
      begin
        UpdateScreenLoading('Songs: '+IntToStr(BrowsePos));
        SDL_Delay(1);
      end;

    until FindNext(SR) <> 0;
  end; // if FindFirst
  FindClose(SR);
end;

procedure TSongs.Sort(Order: integer);
var
  MergeSort:    TMergeSorter;


begin
  MergeSort := TMergeSorter.Create();

  SetLength(TempSongArr, 0);
  SetLength(TempSongArr, (Length(SongSort)+1) div 2);

  SortOrder := Order;
  MergeSort.Sort(Length(SongSort), @SortCompare, @SortCopy);

  FreeAndNil(MergeSort);
  SetLength(TempSongArr, 0);
end;

function TSongs.FindSongFile(Dir, Mask: string): string;
var
  SR:     TSearchRec;   // for parsing song directory
begin
  Result := '';
  if FindFirst(Dir + Mask, faDirectory, SR) = 0 then begin
    Result := SR.Name;
  end; // if
  FindClose(SR);
end;

procedure TCatSongs.Refresh;
var
  S, I:     integer; // temporary song index
  CatLen:   integer; // length of CatSongs.Song
  Letter:   char; // current letter for sorting using letter
  SS:       string; // current edition for sorting using edition, genre etc.
  Order:    integer; // number used for ordernum
  Letter2:  char; //
  CatNumber:integer; // Number of Song in Category
  tempstr:  string;

  procedure CheckEdition(SongNr: integer);
  var
    newNr: integer;
    I:     integer;

  begin
    if (Length(Songs.SongSort[SongNr].Edition)>1) then
    begin
      newNr := Length(Songs.SongSort);
      SetLength(Songs.SongSort, newNr+1);
      Songs.SongSort[newNr] := Songs.SongSort[SongNr];
      SetLength(Songs.SongSort[SongNr].Edition, 1);

      for I := 0 to Length(Songs.SongSort[newNr].Edition) - 2 do
        Songs.SongSort[newNr].Edition[I] := Songs.SongSort[newNr].Edition[I+1];

      SetLength(Songs.SongSort[newNr].Edition, Length(Songs.SongSort[newNr].Edition)-1);
      CheckEdition(newNr);
    end;
  end;

  procedure CheckGenre(SongNr: integer);
  var
    newNr: integer;
    I:     integer;

  begin
    if (Length(Songs.SongSort[SongNr].Genre)>1) then
    begin
      newNr := Length(Songs.SongSort);
      SetLength(Songs.SongSort, newNr+1);
      Songs.SongSort[newNr] := Songs.SongSort[SongNr];
      SetLength(Songs.SongSort[SongNr].Genre, 1);

      for I := 0 to Length(Songs.SongSort[newNr].Genre) - 2 do
        Songs.SongSort[newNr].Genre[I] := Songs.SongSort[newNr].Genre[I+1];

      SetLength(Songs.SongSort[newNr].Genre, Length(Songs.SongSort[newNr].Genre)-1);
      CheckGenre(newNr);
    end;
  end;
begin
  Log.BenchmarkStart(3);
  CatNumShow := -1;

  SetLength(Songs.SongSort, 0);
  SetLength(Songs.SongSort, Length(Songs.Song));

  for S := 0 to Length(Songs.Song) - 1 do
  begin
    Songs.SongSort[S] := Songs.Song[S];
    if (Ini.Tabs=1) then
    begin
      if (Ini.Sorting=sEdition) then
      begin
        //work-around:
        SetLength(Songs.SongSort[S].Edition, 0);
        SetLength(Songs.SongSort[S].Edition, Length(Songs.Song[S].Edition));
        for I := 0 to Length(Songs.Song[S].Edition) - 1 do
          Songs.SongSort[S].Edition[I] := Songs.Song[S].Edition[I];
        //end work-around

        CheckEdition(S);
      end else if (Ini.Sorting = sGenre) then
      begin
        //work-around:
        SetLength(Songs.SongSort[S].Genre, 0);
        SetLength(Songs.SongSort[S].Genre, Length(Songs.Song[S].Genre));
        for I := 0 to Length(Songs.Song[S].Genre) - 1 do
          Songs.SongSort[S].Genre[I] := Songs.Song[S].Genre[I];
        //end work-around

        CheckGenre(S);
      end;
    end;      
  end;
  Log.BenchmarkEnd(3);
  Log.LogBenchmark('====> Workaround for Editions/Genres', 3);

  Log.BenchmarkStart(3);
  case Ini.Sorting of
    sEdition:
        begin
          Songs.Sort(sArtist);
          Songs.Sort(sEdition);
        end;
    sGenre:
        begin
          Songs.Sort(sArtist);
          Songs.Sort(sGenre);
        end;
    sLanguage:
        begin
          Songs.Sort(sArtist);
          Songs.Sort(sLanguage);
        end;
    sFolder:
        begin
          Songs.Sort(sArtist);
          Songs.Sort(sFolder);
        end;
    sTitle:
        begin
          Songs.Sort(sArtist);
          Songs.Sort(sTitle);
        end;
    sArtist:
        begin
          Songs.Sort(sTitle);
          Songs.Sort(sArtist);
        end;
    sTitle2:
        begin
          Songs.Sort(sArtist);
          Songs.Sort(sTitle);
        end;
    sArtist2:
        begin
          Songs.Sort(sTitle);
          Songs.Sort(sArtist);
        end;
    sRandom:
        begin
          Songs.Sort(sRandom);
        end;
    sYear:
        begin
          Songs.Sort(sTitle);
          Songs.Sort(sArtist);
          Songs.Sort(sYear);
        end;

  end; // case
  Log.BenchmarkEnd(3);
  Log.LogBenchmark('====> Sort Songs', 3);

  Log.BenchmarkStart(3);
  Letter := ' ';
  SS := '';
  Order := 0;
  CatNumber := 0;

  //Songs leeren
  SetLength (CatSongs.Song, 0);

  for S := Low(Songs.SongSort) to High(Songs.SongSort) do
  begin
    if (Ini.Tabs = 1) then
    begin
      if (Ini.Sorting = sEdition) and
        (CompareText(SS, Songs.SongSort[S].Edition[0]) <> 0) then
      begin
        // add Category Button
        Inc(Order);
        SS := Songs.SongSort[S].Edition[0];
        CatLen := Length(CatSongs.Song);
        SetLength(CatSongs.Song, CatLen+1);
        CatSongs.Song[CatLen].Artist :=  SS;
        CatSongs.Song[CatLen].Main := true;
        CatSongs.Song[CatLen].OrderTyp := 0;
        CatSongs.Song[CatLen].OrderNum := Order;

        CatSongs.Song[CatLen].Cover := CatCovers.GetCover(Ini.Sorting, SS);

        //CatNumber Patch
        if (SS <> '') then
        begin
          if (CatLen - CatNumber - 1>=0) then
            Song[CatLen - CatNumber - 1].CatNumber := CatNumber;//Set CatNumber of Categroy
          CatNumber := 0;
        end;

        CatSongs.Song[CatLen].Visible := true;
      end else if (Ini.Sorting = sGenre) and
        (CompareText(SS, Songs.SongSort[S].Genre[0]) <> 0) then
      begin
        // add Genre Button
        Inc(Order);
        SS := Songs.SongSort[S].Genre[0];
        CatLen := Length(CatSongs.Song);
        SetLength(CatSongs.Song, CatLen+1);
        CatSongs.Song[CatLen].Artist := SS;
        CatSongs.Song[CatLen].Main := true;
        CatSongs.Song[CatLen].OrderTyp := 0;
        CatSongs.Song[CatLen].OrderNum := Order;

        CatSongs.Song[CatLen].Cover := CatCovers.GetCover(Ini.Sorting, SS);

        //CatNumber Patch
        if (SS <> '') then
        begin
          if (CatLen - CatNumber - 1>=0) then
            Song[CatLen - CatNumber - 1].CatNumber := CatNumber;//Set CatNumber of Categroy
          CatNumber := 0;
        end;

        CatSongs.Song[CatLen].Visible := true;
      end else if (Ini.Sorting = sLanguage) and
        (CompareText(SS, Songs.SongSort[S].Language) <> 0) then
      begin
        // add Language Button
        Inc(Order);
        SS := Songs.SongSort[S].Language;
        CatLen := Length(CatSongs.Song);
        SetLength(CatSongs.Song, CatLen+1);
        CatSongs.Song[CatLen].Artist := SS;
        CatSongs.Song[CatLen].Main := true;
        CatSongs.Song[CatLen].OrderTyp := 0;
        CatSongs.Song[CatLen].OrderNum := Order;

        CatSongs.Song[CatLen].Cover := CatCovers.GetCover(Ini.Sorting, SS);

        //CatNumber Patch
        if (SS <> '') then
        begin
          if (CatLen - CatNumber - 1>=0) then
            Song[CatLen - CatNumber - 1].CatNumber := CatNumber;//Set CatNumber of Categroy
          CatNumber := 0;
        end;

        CatSongs.Song[CatLen].Visible := true;
      end else if (Ini.Sorting = sTitle) and
        (Length(Songs.SongSort[S].Title)>=1) and
        (Letter <> UpCase(Songs.SongSort[S].Title[1])) then
      begin
        // add a letter Category Button
        Inc(Order);
        Letter := UpCase(Songs.SongSort[S].Title[1]);
        CatLen := Length(CatSongs.Song);
        SetLength(CatSongs.Song, CatLen+1);
        CatSongs.Song[CatLen].Artist := '[' + Letter + ']';
        CatSongs.Song[CatLen].Main := true;
        CatSongs.Song[CatLen].OrderTyp := 0;
        CatSongs.Song[CatLen].OrderNum := Order;

        CatSongs.Song[CatLen].Cover := CatCovers.GetCover(Ini.Sorting, Letter);

        //CatNumber Patch
        if (Letter <> ' ') then
        begin
          if (CatLen - CatNumber - 1>=0) then
            Song[CatLen - CatNumber - 1].CatNumber := CatNumber;//Set CatNumber of Categroy
          CatNumber := 0;
        end;

        CatSongs.Song[CatLen].Visible := true;
      end else if (Ini.Sorting = sArtist) and
        (Length(Songs.SongSort[S].Artist)>=1) and
        (Letter <> UpCase(Songs.SongSort[S].Artist[1])) then
      begin
        // add a letter Category Button
        Inc(Order);
        Letter := UpCase(Songs.SongSort[S].Artist[1]);
        CatLen := Length(CatSongs.Song);
        SetLength(CatSongs.Song, CatLen+1);
        CatSongs.Song[CatLen].Artist := '[' + Letter + ']';
        CatSongs.Song[CatLen].Main := true;
        CatSongs.Song[CatLen].OrderTyp := 0;
        CatSongs.Song[CatLen].OrderNum := Order;

        CatSongs.Song[CatLen].Cover := CatCovers.GetCover(Ini.Sorting, Letter);

        //CatNumber Patch
        if (Letter <> ' ') then
        begin
          if (CatLen - CatNumber - 1>=0) then
            Song[CatLen - CatNumber - 1].CatNumber := CatNumber;//Set CatNumber of Categroy
          CatNumber := 0;
        end;

        CatSongs.Song[CatLen].Visible := true;
      end else if (Ini.Sorting = sFolder) and
        (CompareText(SS, Songs.SongSort[S].Folder) <> 0) then
      begin
        // 0.5.0: add folder tab
        Inc(Order);
        SS := Songs.SongSort[S].Folder;
        CatLen := Length(CatSongs.Song);
        SetLength(CatSongs.Song, CatLen+1);
        CatSongs.Song[CatLen].Artist := SS;
        CatSongs.Song[CatLen].Main := true;
        CatSongs.Song[CatLen].OrderTyp := 0;
        CatSongs.Song[CatLen].OrderNum := Order;

        CatSongs.Song[CatLen].Cover := CatCovers.GetCover(Ini.Sorting, SS);

        //CatNumber Patch
        if (SS <> '') then
        begin
          if (CatLen - CatNumber - 1>=0) then
            Song[CatLen - CatNumber - 1].CatNumber := CatNumber;//Set CatNumber of Categroy
          CatNumber := 0;
        end;

        CatSongs.Song[CatLen].Visible := true;
      end else if (Ini.Sorting = sTitle2) AND
        (Length(Songs.SongSort[S].Title)>=1) then
      begin
        if (ord(Songs.SongSort[S].Title[1]) > 47) and
          (ord(Songs.SongSort[S].Title[1]) < 58) then
          Letter2 := '#'
        else
          Letter2 := UpCase(Songs.SongSort[S].Title[1]);

        if (Letter <> Letter2) then
        begin
          // add a letter Category Button
          Inc(Order);
          Letter := Letter2;
          CatLen := Length(CatSongs.Song);
          SetLength(CatSongs.Song, CatLen+1);
          CatSongs.Song[CatLen].Artist := '[' + Letter + ']';
          CatSongs.Song[CatLen].Main := true;
          CatSongs.Song[CatLen].OrderTyp := 0;

          CatSongs.Song[CatLen].OrderNum := Order;

          CatSongs.Song[CatLen].Cover := CatCovers.GetCover(Ini.Sorting, Letter);

          //CatNumber Patch
          if (Letter <> ' ') then
          begin
            if (CatLen - CatNumber - 1>=0) then
              Song[CatLen - CatNumber - 1].CatNumber := CatNumber;//Set CatNumber of Categroy
            CatNumber := 0;
          end;

          CatSongs.Song[CatLen].Visible := true;
        end;
      end else if (Ini.Sorting = sArtist2) AND
        (Length(Songs.SongSort[S].Artist)>=1) then
      begin
        if (ord(Songs.SongSort[S].Artist[1]) > 47) and
          (ord(Songs.SongSort[S].Artist[1]) < 58) then
          Letter2 := '#'
        else
          Letter2 := UpCase(Songs.SongSort[S].Artist[1]);

        if (Letter <> Letter2) then
        begin
          // add a letter Category Button
          Inc(Order);
          Letter := Letter2;
          CatLen := Length(CatSongs.Song);
          SetLength(CatSongs.Song, CatLen+1);
          CatSongs.Song[CatLen].Artist := '[' + Letter + ']';
          CatSongs.Song[CatLen].Main := true;
          CatSongs.Song[CatLen].OrderTyp := 0;
          CatSongs.Song[CatLen].OrderNum := Order;

          CatSongs.Song[CatLen].Cover := CatCovers.GetCover(Ini.Sorting, Letter);

          //CatNumber Patch
          if (Letter <> ' ') then
          begin
            if (CatLen - CatNumber - 1>=0) then
              Song[CatLen - CatNumber - 1].CatNumber := CatNumber;//Set CatNumber of Categroy
            CatNumber := 0;
          end;

          CatSongs.Song[CatLen].Visible := true;
        end;
      end else if (Ini.Sorting = sRandom) and
        (Length(Songs.SongSort[S].Artist)>=1) and
        (Letter <> 'R') then
      begin
        // add a letter Category Button
        Inc(Order);
        Letter := 'R';
        CatLen := Length(CatSongs.Song);
        SetLength(CatSongs.Song, CatLen+1);
        CatSongs.Song[CatLen].Artist := '[RANDOM]';
        CatSongs.Song[CatLen].Main := true;
        CatSongs.Song[CatLen].OrderTyp := 0;
        CatSongs.Song[CatLen].OrderNum := Order;

        CatSongs.Song[CatLen].Cover := CatCovers.GetCover(Ini.Sorting, Letter);

        //CatNumber Patch
        if (Letter <> ' ') then
        begin
          if (CatLen - CatNumber - 1>=0) then
            Song[CatLen - CatNumber - 1].CatNumber := CatNumber;//Set CatNumber of Categroy
          CatNumber := 0;
        end;

        CatSongs.Song[CatLen].Visible := true;
      end else if (Ini.Sorting = sYear) then
      begin
        I := Songs.SongSort[S].Year;
        if (I <> -1) then
          tempstr := IntToStr(Trunc(I/10)*10) + '-' + IntToStr(Trunc(I/10)*10+9)
        else
          tempstr := 'undefined';

        if (tempstr <> SS) then
        begin
          Inc(Order);
          SS := tempstr;
          CatLen := Length(CatSongs.Song);
          SetLength(CatSongs.Song, CatLen+1);
          CatSongs.Song[CatLen].Artist := SS;
          CatSongs.Song[CatLen].Main := true;
          CatSongs.Song[CatLen].OrderTyp := 0;
          CatSongs.Song[CatLen].OrderNum := Order;

          CatSongs.Song[CatLen].Cover := CatCovers.GetCover(Ini.Sorting, SS);

          //CatNumber Patch
          if (SS <> '') then
          begin
            if (CatLen - CatNumber - 1>=0) then
              Song[CatLen - CatNumber - 1].CatNumber := CatNumber;//Set CatNumber of Categroy
            CatNumber := 0;
          end;

          CatSongs.Song[CatLen].Visible := true;
        end;
      end;
    end;

    CatLen := Length(CatSongs.Song);
    
    if (CatLen>0) and CatSongs.Song[CatLen-1].Main then
      CatSongs.Song[CatLen-1].CoverTex.TexNum := -1;

    SetLength(CatSongs.Song, CatLen+1);

    Inc (CatNumber); //Increase Number in Cat

    CatSongs.Song[CatLen] := Songs.SongSort[S];
    CatSongs.Song[CatLen].OrderNum := Order; // assigns category
    CatSongs.Song[CatLen].CatNumber := CatNumber;

    if (Ini.Tabs = 0) then
    begin
      CatSongs.Song[CatLen].Visible := true;
      CatSongs.Song[CatLen].Main := false;
    end else if (Ini.Tabs = 1) then
      CatSongs.Song[CatLen].Visible := false;
  end;
  
  //CatNumber Patch - Set CatNumber of Last Category
  if (Ini.Tabs = 1) And (high(Song) >=1) then
    Song[CatLen - CatNumber].CatNumber := CatNumber;//Set CatNumber of Categroy
  //CatCount Patch
  CatCount := Order;

  Log.BenchmarkEnd(3);
  Log.LogBenchmark('====> Build Cat-Structure', 3);
end;

procedure TCatSongs.ShowCategory(Index: integer);
var
  S:    integer; // song
begin
  CatNumShow := Index;
  for S := 0 to high(CatSongs.Song) do
  begin
    if (CatSongs.Song[S].OrderNum = Index) AND (Not CatSongs.Song[S].Main) then
    begin
      if ((ScreenSong.Mode<>smNormal) and (not CatSongs.Song[S].isDuet)) or
         (ScreenSong.Mode=smNormal) then
        CatSongs.Song[S].Visible := true
      else
        CatSongs.Song[S].Visible := false;
    end else
      CatSongs.Song[S].Visible := false;
  end;
end;

procedure TCatSongs.HideCategory(Index: integer); // hides all songs in category
var
  S:    integer; // song
begin
  for S := 0 to high(CatSongs.Song) do
  begin
    if not CatSongs.Song[S].Main then
      CatSongs.Song[S].Visible := false // hides all at now
  end;
end;

procedure TCatSongs.ClickCategoryButton(Index: integer);
var
  Num:    integer;
begin
  Num := CatSongs.Song[Index].OrderNum;
  if Num <> CatNumShow then
  begin
    ShowCategory(Num);
  end else
  begin
    ShowCategoryList;
  end;
end;

function TCatSongs.NumCatSongs(Cat: integer): integer;
var
  I: integer;
begin
  Result := 0;
  for I := 0 to Length(CatSongs.Song)-1 do
  begin
    if (CatSongs.Song[I].OrderNum = Cat) AND (Not CatSongs.Song[I].Main) then
    begin
      if ((ScreenSong.Mode<>smNormal) and (not CatSongs.Song[I].isDuet)) or
         (ScreenSong.Mode=smNormal) then
        inc(Result);
    end;
  end;
end;

function TCatSongs.NumSongs(): integer;
var
  I: integer;
begin
  Result := 0;
  for I := 0 to Length(CatSongs.Song)-1 do
  begin
    if (Not CatSongs.Song[I].Main) then
    begin
      if ((ScreenSong.Mode<>smNormal) and (not CatSongs.Song[I].isDuet)) or
         (ScreenSong.Mode=smNormal) then
        inc(Result);
    end;
  end;
end;

function TCatSongs.NumVisibleCats(): integer;
var
  I: integer;
begin
  Result := 0;
  for I := 0 to Length(CatSongs.Song)-1 do
  begin
    if CatSongs.Song[I].Main and CatSongs.Song[I].Visible then
    begin
      inc(Result);
    end;
  end;
end;

//Hide Categorys when in Category Hack
procedure TCatSongs.ShowCategoryList;
var
  S:    integer;
  vis:  boolean;
begin
  //Hide All Songs Show All Cats
  for S := 0 to high(CatSongs.Song) do
  begin
    vis := false;

    if CatSongs.Song[S].Main then
    begin
      if (ScreenSong.Mode=smNormal) then
        Vis := true
      else if (NumCatSongs(CatSongs.Song[S].OrderNum)>0) then
        Vis := true;
    end;

    CatSongs.Song[S].Visible := vis;
  end;
  CatSongs.Selected := CatNumShow; //Show last shown Category
  CatNumShow := -1;
end;
//Hide Categorys when in Category Hack End

//Wrong song selected when tabs on bug
function TCatSongs.FindNextVisible(SearchFrom:integer): integer;//Find next Visible Song
var
  I: Integer;
  begin
  Result := -1;
  I := SearchFrom + 1;
  while not CatSongs.Song[I].Visible do
    begin
    Inc (I);
    if (I>high(CatSongs.Song)) then
      I := low(CatSongs.Song);
    if (I = SearchFrom) then //Make One Round and no song found->quit
      break;
    end;
  end;
//Wrong song selected when tabs on bug End

function TCatSongs.VisibleSongs: integer;
var
  S:    integer; // song
begin
  Result := 0;
  for S := 0 to high(CatSongs.Song) do
    if CatSongs.Song[S].Visible = true then Inc(Result);
end;

function TCatSongs.VisibleIndex(Index: integer): integer;
var
  S:    integer; // song
begin
  Result := 0;
  for S := 0 to Index-1 do
    if CatSongs.Song[S].Visible = true then Inc(Result);
end;

function TCatSongs.SetFilter(FilterStr: String; const fType: Byte): Cardinal;
var
  I, J: Integer;
  cString: String;
  SearchStr: Array of String;
begin
  {fType: 0: All
          1: Title
          2: Artist
          3: Duet}
  FilterStr := Trim(FilterStr);
  if FilterStr<>'' then
  begin
    Result := 0;
    //Create Search Array
    SetLength(SearchStr, 1);
    I := Pos (' ', FilterStr);
    While (I <> 0) do
    begin
      SetLength (SearchStr, Length(SearchStr) + 1);
      cString := Copy(FilterStr, 1, I-1);
      if (cString <> ' ') AND (cString <> '') then
        SearchStr[High(SearchStr)-1] := cString;
      Delete (FilterStr, 1, I);

      I := Pos (' ', FilterStr);
    end;
    //Copy last Word
    if (FilterStr <> ' ') AND (FilterStr <> '') then
      SearchStr[High(SearchStr)] := FilterStr;

    for I:=0 to High(Song) do begin
      if not Song[i].Main then
      begin
        case fType of
          0: cString := Song[I].Artist + ' ' + Song[i].Title + ' ' + Song[i].Folder;
          1: cString := Song[I].Title;
          2: cString := Song[I].Artist;
        end;
        Song[i].Visible:=True;
        //Look for every Searched Word
        For J := 0 to High(SearchStr) do
        begin
          Song[i].Visible := Song[i].Visible AND AnsiContainsText(cString, SearchStr[J])
        end;
        if Song[i].Visible then
          Inc(Result);
      end
      else
        Song[i].Visible:=False;
    end;
    CatNumShow := -2;
  end else if (fType<>3) then
  begin
    for i:=0 to High(Song) do
    begin
      Song[i].Visible:=(Ini.Tabs=1)=Song[i].Main;
      if (ScreenSong.Mode<>smNormal) and Song[i].isDuet then
        Song[i].Visible := false;
      CatNumShow := -1;
    end;
    Result := 0;
  end else
  begin
    Result := 0;
    for i:=0 to High(Song) do
    begin
      Song[i].Visible := false;
      if not Song[i].Main and Song[i].isDuet then
      begin
        Song[i].Visible:=true;
        inc(Result);
      end;
      CatNumShow := -2;
    end;
  end;
           
end;

end.