2019-06-13 02:35:26 +02:00
|
|
|
#pragma once
|
|
|
|
|
2020-03-24 19:50:08 +01:00
|
|
|
#include "PedType.h"
|
|
|
|
|
2019-06-13 02:35:26 +02:00
|
|
|
class CStats
|
|
|
|
{
|
|
|
|
public:
|
2020-02-16 21:08:54 +01:00
|
|
|
enum {
|
2020-06-07 14:23:52 +02:00
|
|
|
TOTAL_FASTEST_TIMES = 23,
|
|
|
|
TOTAL_HIGHEST_SCORES = 5,
|
|
|
|
TOTAL_BEST_POSITIONS = 1
|
2020-02-16 21:08:54 +01:00
|
|
|
};
|
2020-05-27 01:16:31 +02:00
|
|
|
//TODO
|
|
|
|
static int32 SeagullsKilled;
|
|
|
|
|
2020-04-17 07:54:14 +02:00
|
|
|
static int32 DaysPassed;
|
2020-05-22 14:27:16 +02:00
|
|
|
static int32 HeadsPopped;
|
2020-04-17 07:54:14 +02:00
|
|
|
static int32 CommercialPassed;
|
|
|
|
static int32 IndustrialPassed;
|
|
|
|
static int32 SuburbanPassed;
|
|
|
|
static int32 NumberKillFrenziesPassed;
|
|
|
|
static int32 PeopleKilledByOthers;
|
|
|
|
static int32 HelisDestroyed;
|
|
|
|
static int32 PedsKilledOfThisType[ePedType::NUM_PEDTYPES];
|
|
|
|
static int32 TimesDied;
|
|
|
|
static int32 TimesArrested;
|
|
|
|
static int32 KillsSinceLastCheckpoint;
|
2020-07-03 00:04:49 +02:00
|
|
|
static float DistanceTravelledInVehicle;
|
|
|
|
static float DistanceTravelledOnFoot;
|
2020-04-17 07:54:14 +02:00
|
|
|
static int32 CarsExploded;
|
|
|
|
static int32 PeopleKilledByPlayer;
|
|
|
|
static int32 ProgressMade;
|
|
|
|
static int32 TotalProgressInGame;
|
|
|
|
static float MaximumJumpDistance;
|
|
|
|
static float MaximumJumpHeight;
|
|
|
|
static int32 MaximumJumpFlips;
|
|
|
|
static int32 MaximumJumpSpins;
|
|
|
|
static int32 BestStuntJump;
|
|
|
|
static int32 NumberOfUniqueJumpsFound;
|
|
|
|
static int32 TotalNumberOfUniqueJumps;
|
|
|
|
static int32 PassengersDroppedOffWithTaxi;
|
|
|
|
static int32 MoneyMadeWithTaxi;
|
|
|
|
static int32 MissionsGiven;
|
|
|
|
static int32 MissionsPassed;
|
|
|
|
static char LastMissionPassedName[8];
|
|
|
|
static int32 TotalLegitimateKills;
|
|
|
|
static int32 ElBurroTime;
|
|
|
|
static int32 Record4x4One;
|
|
|
|
static int32 Record4x4Two;
|
|
|
|
static int32 Record4x4Three;
|
|
|
|
static int32 Record4x4Mayhem;
|
|
|
|
static int32 LivesSavedWithAmbulance;
|
|
|
|
static int32 CriminalsCaught;
|
|
|
|
static int32 HighestLevelAmbulanceMission;
|
|
|
|
static int32 FiresExtinguished;
|
|
|
|
static int32 TimeTakenDefuseMission;
|
|
|
|
static int32 TotalNumberKillFrenzies;
|
2020-05-22 14:27:16 +02:00
|
|
|
static int32 TotalNumberMissions;
|
|
|
|
static int32 RoundsFiredByPlayer;
|
|
|
|
static int32 KgsOfExplosivesUsed;
|
|
|
|
static int32 InstantHitsFiredByPlayer;
|
|
|
|
static int32 InstantHitsHitByPlayer;
|
|
|
|
static int32 BestTimeBombDefusal;
|
2020-04-17 07:54:14 +02:00
|
|
|
static int32 FastestTimes[TOTAL_FASTEST_TIMES];
|
|
|
|
static int32 HighestScores[TOTAL_HIGHEST_SCORES];
|
2020-06-07 14:23:52 +02:00
|
|
|
static int32 BestPositions[TOTAL_BEST_POSITIONS];
|
2020-05-22 14:27:16 +02:00
|
|
|
static int32 PropertyDestroyed;
|
2020-08-09 16:49:15 +02:00
|
|
|
static int32 PamphletMissionPassed;
|
2020-05-11 20:04:35 +02:00
|
|
|
static int32 Sprayings;
|
|
|
|
static float AutoPaintingBudget;
|
2020-05-16 12:31:23 +02:00
|
|
|
static int32 NoMoreHurricanes;
|
2020-05-16 22:06:33 +02:00
|
|
|
static float FashionBudget;
|
2020-05-20 22:47:44 +02:00
|
|
|
static int32 SafeHouseVisits;
|
2020-05-27 22:32:33 +02:00
|
|
|
static int32 TyresPopped;
|
2019-07-04 22:31:21 +02:00
|
|
|
|
2019-07-07 09:13:04 +02:00
|
|
|
public:
|
2020-04-09 12:14:37 +02:00
|
|
|
static void Init(void);
|
2020-02-16 21:08:54 +01:00
|
|
|
static void RegisterFastestTime(int32, int32);
|
|
|
|
static void RegisterHighestScore(int32, int32);
|
2020-06-07 14:23:52 +02:00
|
|
|
static void RegisterBestPosition(int32, int32);
|
2020-04-09 12:14:37 +02:00
|
|
|
static void RegisterElBurroTime(int32);
|
2020-02-16 21:08:54 +01:00
|
|
|
static void Register4x4OneTime(int32);
|
|
|
|
static void Register4x4TwoTime(int32);
|
|
|
|
static void Register4x4ThreeTime(int32);
|
|
|
|
static void Register4x4MayhemTime(int32);
|
2020-04-09 12:14:37 +02:00
|
|
|
static void AnotherLifeSavedWithAmbulance();
|
|
|
|
static void AnotherCriminalCaught();
|
|
|
|
static void RegisterLevelAmbulanceMission(int32);
|
|
|
|
static void AnotherFireExtinguished();
|
|
|
|
static wchar *FindCriminalRatingString();
|
2020-02-16 21:08:54 +01:00
|
|
|
static void RegisterTimeTakenDefuseMission(int32);
|
2020-04-09 12:14:37 +02:00
|
|
|
static void AnotherKillFrenzyPassed();
|
2020-02-16 21:08:54 +01:00
|
|
|
static void SetTotalNumberKillFrenzies(int32);
|
|
|
|
static void SetTotalNumberMissions(int32);
|
2020-01-01 00:35:54 +01:00
|
|
|
static void CheckPointReachedSuccessfully() { TotalLegitimateKills += KillsSinceLastCheckpoint; KillsSinceLastCheckpoint = 0; };
|
2020-04-09 12:14:37 +02:00
|
|
|
static void CheckPointReachedUnsuccessfully() { KillsSinceLastCheckpoint = 0; };
|
|
|
|
static int32 FindCriminalRatingNumber();
|
2020-03-11 08:12:40 +01:00
|
|
|
static void SaveStats(uint8 *buf, uint32 *size);
|
2020-04-09 12:14:37 +02:00
|
|
|
static void LoadStats(uint8 *buf, uint32 size);
|
2020-05-17 19:36:48 +02:00
|
|
|
static float GetPercentageProgress();
|
2020-05-16 22:06:33 +02:00
|
|
|
|
|
|
|
static void MoneySpentOnFashion(int32);
|
2020-03-11 22:15:27 +01:00
|
|
|
};
|