diff options
author | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2008-08-08 10:42:19 +0000 |
---|---|---|
committer | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2008-08-08 10:42:19 +0000 |
commit | 887199a1ed8727b1968dd4cfe11c3c7311f3f311 (patch) | |
tree | f0d0bc368b37b897710c266b7c8f62cceeefdf4b /Game/Code/Screens | |
parent | 01c32bcf35a056e53e8ecdaaf066f14752043b40 (diff) | |
download | usdx-887199a1ed8727b1968dd4cfe11c3c7311f3f311.tar.gz usdx-887199a1ed8727b1968dd4cfe11c3c7311f3f311.tar.xz usdx-887199a1ed8727b1968dd4cfe11c3c7311f3f311.zip |
- TStatResult is an abstract class now.
- GetStats returns a TList of TStatResult now
- Free the result-list with FreeStats
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1230 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'Game/Code/Screens')
-rw-r--r-- | Game/Code/Screens/UScreenStatDetail.pas | 81 | ||||
-rw-r--r-- | Game/Code/Screens/UScreenStatMain.pas | 177 |
2 files changed, 152 insertions, 106 deletions
diff --git a/Game/Code/Screens/UScreenStatDetail.pas b/Game/Code/Screens/UScreenStatDetail.pas index be98e047..891b108d 100644 --- a/Game/Code/Screens/UScreenStatDetail.pas +++ b/Game/Code/Screens/UScreenStatDetail.pas @@ -40,7 +40,8 @@ implementation uses UGraphic, ULanguage, - math, + Math, + Classes, ULog; function TScreenStatDetail.ParseInput(PressedKey: Cardinal; CharCode: WideChar; PressedDown: Boolean): Boolean; @@ -171,61 +172,65 @@ end; procedure TScreenStatDetail.SetPage(NewPage: Cardinal); var - Result: AStatResult; + StatList: TList; I: Integer; FormatStr: String; PerPage: Byte; begin - SetLength(Result, Count); - if (Database.GetStats(Result, Typ, Count, NewPage, Reversed)) then + // fetch statistics + StatList := Database.GetStats(Typ, Count, NewPage, Reversed); + if ((StatList <> nil) and (StatList.Count > 0)) then begin Page := NewPage; + // reset texts + for I := 0 to Count-1 do + Text[I].Text := ''; + FormatStr := Theme.StatDetail.FormatStr[Ord(Typ)]; //refresh Texts - for I := 0 to Count-1 do + for I := 0 to StatList.Count-1 do begin try case Typ of stBestScores: begin //Best Scores - //Set Texts - if (Result[I].Score > 0) then - Text[I].Text := Format(FormatStr, [Result[I].Singer, - Result[I].Score, - Theme.ILevel[Result[I].Difficulty], - Result[I].SongArtist, - Result[I].SongTitle]) - else - Text[I].Text := ''; + with TStatResultBestScores(StatList[I]) do + begin + //Set Texts + if (Score > 0) then + begin + Text[I].Text := Format(FormatStr, + [Singer, Score, Theme.ILevel[Difficulty], SongArtist, SongTitle]); + end; + end; end; stBestSingers: begin //Best Singers - //Set Texts - if (Result[I].AverageScore > 0) then - Text[I].Text := Format(FormatStr, [Result[I].Player, - Result[I].AverageScore]) - else - Text[I].Text := ''; + with TStatResultBestSingers(StatList[I]) do + begin + //Set Texts + if (AverageScore > 0) then + Text[I].Text := Format(FormatStr, [Player, AverageScore]); + end; end; stMostSungSong: begin //Popular Songs - //Set Texts - if (Result[I].Artist <> '') then - Text[I].Text := Format(FormatStr, [Result[I].Artist, - Result[I].Title, - Result[I].TimesSung]) - else - Text[I].Text := ''; + with TStatResultMostSungSong(StatList[I]) do + begin + //Set Texts + if (Artist <> '') then + Text[I].Text := Format(FormatStr, [Artist, Title, TimesSung]); + end; end; stMostPopBand: begin //Popular Bands - //Set Texts - if (Result[I].ArtistName <> '') then - Text[I].Text := Format(FormatStr, [Result[I].ArtistName, - Result[I].TimesSungtot]) - else - Text[I].Text := ''; + with TStatResultMostPopBand(StatList[I]) do + begin + //Set Texts + if (ArtistName <> '') then + Text[I].Text := Format(FormatStr, [ArtistName, TimesSungtot]); + end; end; end; except @@ -239,13 +244,19 @@ begin else PerPage := Count; - Text[Count+1].Text := Format(Theme.StatDetail.PageStr, - [Page + 1, TotPages, PerPage, TotEntrys]); + try + Text[Count+1].Text := Format(Theme.StatDetail.PageStr, + [Page + 1, TotPages, PerPage, TotEntrys]); + except + on E: EConvertError do + Log.LogError('Error Parsing FormatString in UScreenStatDetail: ' + E.Message); + end; //Show correct Title SetTitle; end; + Database.FreeStats(StatList); end; diff --git a/Game/Code/Screens/UScreenStatMain.pas b/Game/Code/Screens/UScreenStatMain.pas index 9e581a82..bec9d312 100644 --- a/Game/Code/Screens/UScreenStatMain.pas +++ b/Game/Code/Screens/UScreenStatMain.pas @@ -21,7 +21,10 @@ type TScreenStatMain = class(TMenu) private //Some Stat Value that don't need to be calculated 2 times - SongswithVid: Cardinal; + SongsWithVid: Cardinal; + function FormatOverviewIntro(FormatStr: string): string; + function FormatSongOverview(FormatStr: string): string; + function FormatPlayerOverview(FormatStr: string): string; public TextOverview: integer; constructor Create; override; @@ -40,6 +43,7 @@ uses UGraphic, USong, ULanguage, UCommon, + Classes, {$IFDEF win32} windows, {$ELSE} @@ -138,10 +142,10 @@ begin Interaction := 0; //Set Songs with Vid - SongswithVid := 0; + SongsWithVid := 0; For I := 0 to Songs.SongList.Count -1 do if (TSong(Songs.SongList[I]).Video <> '') then - Inc(SongswithVid); + Inc(SongsWithVid); end; procedure TScreenStatMain.onShow; @@ -152,106 +156,137 @@ begin SetOverview; end; -procedure TScreenStatMain.SetOverview; -type - TwSystemTime = record - wYear, - wMonth, - wDayOfWeek, - wDay, - wHour, - wMinute, - wSecond, - wMilliseconds: Word; - end; +function TScreenStatMain.FormatOverviewIntro(FormatStr: string): string; var - Overview, Formatstr: String; - I: Integer; - //Some Vars to Save Attributes to - A1, A2, A3: Integer; - A4, A5: String; - Result1, Result2: AStatResult; - ResetTime: TSystemTime; - + Year, Month, Day: Word; begin - //Song Overview - - //Introduction - Formatstr := Language.Translate ('STAT_OVERVIEW_INTRO'); - (*Format: + {Format: %0:d Ultrastar Version - %1:d Day of Reset (A1) - %2:d Month of Reset (A2) - %3:d Year of Reset (A3)*) - - DateTimeToSystemTime(Database.GetStatReset, ResetTime); -// ResetTime := GetFileCreation(Database.Filename); - - {$IFDEF MSWINDOWS} - A1 := ResetTime.wDay; - A2 := ResetTime.wMonth; - A3 := ResetTime.wYear; - {$ELSE} - A1 := ResetTime.Day; - A2 := ResetTime.Month; - A3 := ResetTime.Year; - {$ENDIF} - - + %1:d Day of Reset + %2:d Month of Reset + %3:d Year of Reset} + + Result := ''; + try - Overview := Format(Formatstr, [Language.Translate('US_VERSION'), A1, A2, A3]); + DecodeDate(Database.GetStatReset(), Year, Month, Day); + Result := Format(FormatStr, [Language.Translate('US_VERSION'), Day, Month, Year]); except on E: EConvertError do Log.LogError('Error Parsing FormatString "STAT_OVERVIEW_INTRO": ' + E.Message); end; +end; - Formatstr := Language.Translate ('STAT_OVERVIEW_SONG'); +function TScreenStatMain.FormatSongOverview(FormatStr: string): string; +var + CntSongs, CntSungSongs, CntVidSongs: Integer; + MostPopSongArtist, MostPopSongTitle: String; + StatList: TList; + MostSungSong: TStatResultMostSungSong; +begin {Format: - %0:d Count Songs (A1) - %1:d Count of Sung Songs (A2) + %0:d Count Songs + %1:d Count of Sung Songs %2:d Count of UnSung Songs - %3:d Count of Songs with Video (A3) + %3:d Count of Songs with Video %4:s Name of the most popular Song} - A1 := Songs.SongList.Count; - A2 := Database.GetTotalEntrys(stMostSungSong); - A3 := SongswithVid; - - SetLength(Result1, 1); - Database.GetStats(Result1, stMostSungSong, 1, 0, False); - A4 := Result1[0].Artist; - A5 := Result1[0].Title; + CntSongs := Songs.SongList.Count; + CntSungSongs := Database.GetTotalEntrys(stMostSungSong); + CntVidSongs := SongsWithVid; + + StatList := Database.GetStats(stMostSungSong, 1, 0, False); + if ((StatList <> nil) and (StatList.Count > 0)) then + begin + MostSungSong := StatList[0]; + MostPopSongArtist := MostSungSong.Artist; + MostPopSongTitle := MostSungSong.Title; + end + else + begin + MostPopSongArtist := '-'; + MostPopSongTitle := '-'; + end; + Database.FreeStats(StatList); + Result := ''; + try - Overview := Overview + '\n \n' + Format(Formatstr, [A1, A2, A1-A2, A3, A4, A5]); + Result := Format(FormatStr, [ + CntSongs, CntSungSongs, CntSongs-CntSungSongs, CntVidSongs, + MostPopSongArtist, MostPopSongTitle]); except on E: EConvertError do Log.LogError('Error Parsing FormatString "STAT_OVERVIEW_SONG": ' + E.Message); end; +end; - //Player Overview - Formatstr := Language.Translate ('STAT_OVERVIEW_PLAYER'); +function TScreenStatMain.FormatPlayerOverview(FormatStr: string): string; +var + CntPlayers: Integer; + BestScoreStat: TStatResultBestScores; + BestSingerStat: TStatResultBestSingers; + BestPlayer, BestScorePlayer: String; + BestPlayerScore, BestScore: Integer; + SingerStats, ScoreStats: TList; +begin {Format: - %0:d Count Players (A1) - %1:s Best Player (Result) + %0:d Count Players + %1:s Best Player %2:d Best Players Score - %3:s Best Score Player (Result2) + %3:s Best Score Player %4:d Best Score} - A1 := Database.GetTotalEntrys(stBestSingers); - SetLength(Result1, 1); - Database.GetStats(Result1, stBestSingers, 1, 0, False); + CntPlayers := Database.GetTotalEntrys(stBestSingers); + + SingerStats := Database.GetStats(stBestSingers, 1, 0, False); + if ((SingerStats <> nil) and (SingerStats.Count > 0)) then + begin + BestSingerStat := SingerStats[0]; + BestPlayer := BestSingerStat.Player; + BestPlayerScore := BestSingerStat.AverageScore; + end + else + begin + BestPlayer := '-'; + BestPlayerScore := 0; + end; + Database.FreeStats(SingerStats); + + ScoreStats := Database.GetStats(stBestScores, 1, 0, False); + if ((ScoreStats <> nil) and (ScoreStats.Count > 0)) then + begin + BestScoreStat := ScoreStats[0]; + BestScorePlayer := BestScoreStat.Singer; + BestScore := BestScoreStat.Score; + end + else + begin + BestScorePlayer := '-'; + BestScore := 0; + end; + Database.FreeStats(ScoreStats); - SetLength(Result2, 1); - Database.GetStats(Result2, stBestScores, 1, 0, False); + Result := ''; try - Overview := Overview + '\n \n' + Format(Formatstr, [A1, Result1[0].Player, Result1[0].AverageScore, Result2[0].Singer, Result2[0].Score]); + Result := Format(Formatstr, [ + CntPlayers, BestPlayer, BestPlayerScore, + BestScorePlayer, BestScore]); except on E: EConvertError do Log.LogError('Error Parsing FormatString "STAT_OVERVIEW_PLAYER": ' + E.Message); end; +end; +procedure TScreenStatMain.SetOverview; +var + Overview: String; +begin + // Format overview + Overview := FormatOverviewIntro(Language.Translate('STAT_OVERVIEW_INTRO')) + '\n \n' + + FormatSongOverview(Language.Translate('STAT_OVERVIEW_SONG')) + '\n \n' + + FormatPlayerOverview(Language.Translate('STAT_OVERVIEW_PLAYER')); Text[0].Text := Overview; end; |