2019-06-13 00:35:26 +00:00
|
|
|
#include "common.h"
|
2020-04-17 13:31:11 +00:00
|
|
|
|
2019-06-13 00:35:26 +00:00
|
|
|
#include "Stats.h"
|
2020-04-09 10:14:37 +00:00
|
|
|
#include "Text.h"
|
|
|
|
#include "World.h"
|
2020-08-13 20:39:55 +00:00
|
|
|
#include "Pad.h"
|
2020-03-11 07:12:40 +00:00
|
|
|
|
2020-06-07 22:21:49 +00:00
|
|
|
#include <climits>
|
|
|
|
|
2020-05-26 23:16:31 +00:00
|
|
|
int32 CStats::SeagullsKilled;
|
2020-08-13 20:39:55 +00:00
|
|
|
int32 CStats::BoatsExploded;
|
|
|
|
int32 CStats::WantedStarsAttained;
|
|
|
|
int32 CStats::WantedStarsEvaded;
|
2020-04-17 05:54:14 +00:00
|
|
|
int32 CStats::DaysPassed;
|
|
|
|
int32 CStats::HeadsPopped;
|
|
|
|
int32 CStats::CommercialPassed;
|
|
|
|
int32 CStats::IndustrialPassed;
|
|
|
|
int32 CStats::SuburbanPassed;
|
|
|
|
int32 CStats::NumberKillFrenziesPassed;
|
|
|
|
int32 CStats::PeopleKilledByOthers;
|
|
|
|
int32 CStats::HelisDestroyed;
|
|
|
|
int32 CStats::PedsKilledOfThisType[NUM_PEDTYPES];
|
|
|
|
int32 CStats::TimesDied;
|
|
|
|
int32 CStats::TimesArrested;
|
|
|
|
int32 CStats::KillsSinceLastCheckpoint;
|
2020-08-13 20:39:55 +00:00
|
|
|
float CStats::DistanceTravelledByCar;
|
|
|
|
float CStats::DistanceTravelledByHelicoptor;
|
|
|
|
float CStats::DistanceTravelledByBike;
|
|
|
|
float CStats::DistanceTravelledByBoat;
|
|
|
|
float CStats::DistanceTravelledByPlane;
|
|
|
|
float CStats::DistanceTravelledByGolfCart;
|
2020-07-02 22:04:49 +00:00
|
|
|
float CStats::DistanceTravelledOnFoot;
|
2020-08-13 20:39:55 +00:00
|
|
|
int32 CStats::FlightTime;
|
|
|
|
int32 CStats::TimesDrowned;
|
|
|
|
int32 CStats::PhotosTaken;
|
|
|
|
float CStats::LoanSharks;
|
|
|
|
float CStats::StoresKnockedOff;
|
|
|
|
float CStats::MovieStunts;
|
|
|
|
float CStats::Assassinations;
|
|
|
|
float CStats::PizzasDelivered;
|
|
|
|
float CStats::GarbagePickups;
|
|
|
|
float CStats::IceCreamSold;
|
|
|
|
float CStats::TopShootingRangeScore;
|
|
|
|
float CStats::ShootingRank;
|
2020-04-17 05:54:14 +00:00
|
|
|
int32 CStats::ProgressMade;
|
|
|
|
int32 CStats::TotalProgressInGame;
|
|
|
|
int32 CStats::CarsExploded;
|
|
|
|
int32 CStats::PeopleKilledByPlayer;
|
|
|
|
float CStats::MaximumJumpDistance;
|
|
|
|
float CStats::MaximumJumpHeight;
|
|
|
|
int32 CStats::MaximumJumpFlips;
|
|
|
|
int32 CStats::MaximumJumpSpins;
|
|
|
|
int32 CStats::BestStuntJump;
|
|
|
|
int32 CStats::NumberOfUniqueJumpsFound;
|
|
|
|
int32 CStats::TotalNumberOfUniqueJumps;
|
|
|
|
int32 CStats::PassengersDroppedOffWithTaxi;
|
|
|
|
int32 CStats::MoneyMadeWithTaxi;
|
|
|
|
int32 CStats::MissionsGiven;
|
|
|
|
int32 CStats::MissionsPassed;
|
|
|
|
char CStats::LastMissionPassedName[8];
|
|
|
|
int32 CStats::TotalLegitimateKills;
|
|
|
|
int32 CStats::LivesSavedWithAmbulance;
|
|
|
|
int32 CStats::CriminalsCaught;
|
|
|
|
int32 CStats::HighestLevelAmbulanceMission;
|
2020-08-13 20:39:55 +00:00
|
|
|
int32 CStats::HighestLevelVigilanteMission;
|
|
|
|
int32 CStats::HighestLevelFireMission;
|
2020-04-17 05:54:14 +00:00
|
|
|
int32 CStats::FiresExtinguished;
|
|
|
|
int32 CStats::TotalNumberKillFrenzies;
|
|
|
|
int32 CStats::TotalNumberMissions;
|
|
|
|
int32 CStats::RoundsFiredByPlayer;
|
|
|
|
int32 CStats::KgsOfExplosivesUsed;
|
2020-08-13 20:39:55 +00:00
|
|
|
int32 CStats::BulletsThatHit;
|
2020-04-17 05:54:14 +00:00
|
|
|
int32 CStats::BestTimeBombDefusal;
|
|
|
|
int32 CStats::FastestTimes[CStats::TOTAL_FASTEST_TIMES];
|
|
|
|
int32 CStats::HighestScores[CStats::TOTAL_HIGHEST_SCORES];
|
2020-06-07 12:23:52 +00:00
|
|
|
int32 CStats::BestPositions[CStats::TOTAL_BEST_POSITIONS];
|
2020-08-13 20:39:55 +00:00
|
|
|
bool CStats::PropertyOwned[CStats::TOTAL_PROPERTIES];
|
|
|
|
int32 CStats::NumPropertyOwned;
|
2020-05-22 12:27:16 +00:00
|
|
|
int32 CStats::PropertyDestroyed;
|
2020-08-13 20:39:55 +00:00
|
|
|
float CStats::HighestChaseValue;
|
|
|
|
int32 CStats::CheatedCount;
|
|
|
|
int32 CStats::ShowChaseStatOnScreen;
|
2020-08-09 14:49:15 +00:00
|
|
|
int32 CStats::PamphletMissionPassed;
|
2020-08-13 20:39:55 +00:00
|
|
|
bool CStats::abSonyCDs[1];
|
|
|
|
int32 CStats::BloodRingKills;
|
|
|
|
int32 CStats::BloodRingTime;
|
|
|
|
float CStats::FavoriteRadioStationList[NUM_RADIOS];
|
2019-07-04 20:31:21 +00:00
|
|
|
|
2020-05-11 18:04:35 +00:00
|
|
|
int32 CStats::Sprayings;
|
|
|
|
float CStats::AutoPaintingBudget;
|
2020-05-16 10:31:23 +00:00
|
|
|
int32 CStats::NoMoreHurricanes;
|
2020-05-16 20:06:33 +00:00
|
|
|
float CStats::FashionBudget;
|
2020-08-13 20:39:55 +00:00
|
|
|
float CStats::PropertyBudget;
|
|
|
|
float CStats::WeaponBudget;
|
2020-05-20 20:47:44 +00:00
|
|
|
int32 CStats::SafeHouseVisits;
|
2020-05-27 20:32:33 +00:00
|
|
|
int32 CStats::TyresPopped;
|
2020-05-11 18:04:35 +00:00
|
|
|
|
2020-08-13 20:39:55 +00:00
|
|
|
int32 CStats::LongestWheelie;
|
|
|
|
int32 CStats::LongestStoppie;
|
|
|
|
int32 CStats::Longest2Wheel;
|
|
|
|
float CStats::LongestWheelieDist;
|
|
|
|
float CStats::LongestStoppieDist;
|
|
|
|
float CStats::Longest2WheelDist;
|
|
|
|
|
|
|
|
// --MIAMI: functions below are done except TODOs, but there are some to be moved from Frontend
|
|
|
|
|
2020-03-24 18:50:08 +00:00
|
|
|
void CStats::Init()
|
|
|
|
{
|
|
|
|
PeopleKilledByOthers = 0;
|
|
|
|
PeopleKilledByPlayer = 0;
|
2020-04-06 16:31:08 +00:00
|
|
|
CarsExploded = 0;
|
2020-08-13 20:39:55 +00:00
|
|
|
BoatsExploded = 0;
|
|
|
|
RoundsFiredByPlayer = 0;
|
|
|
|
for (int i = 0; i < NUM_PEDTYPES; i++)
|
|
|
|
PedsKilledOfThisType[i] = 0;
|
2020-04-06 16:31:08 +00:00
|
|
|
HelisDestroyed = 0;
|
|
|
|
ProgressMade = 0;
|
|
|
|
KgsOfExplosivesUsed = 0;
|
2020-08-13 20:39:55 +00:00
|
|
|
BulletsThatHit = 0;
|
|
|
|
TyresPopped = 0;
|
2020-04-06 16:31:08 +00:00
|
|
|
HeadsPopped = 0;
|
2020-08-13 20:39:55 +00:00
|
|
|
WantedStarsAttained = 0;
|
|
|
|
WantedStarsEvaded = 0;
|
2020-04-06 16:31:08 +00:00
|
|
|
TimesArrested = 0;
|
|
|
|
TimesDied = 0;
|
|
|
|
DaysPassed = 0;
|
2020-08-13 20:39:55 +00:00
|
|
|
SafeHouseVisits = 0;
|
|
|
|
Sprayings = 0;
|
2020-04-06 16:31:08 +00:00
|
|
|
MaximumJumpDistance = 0;
|
|
|
|
MaximumJumpHeight = 0;
|
2020-08-13 20:39:55 +00:00
|
|
|
MaximumJumpFlips = 0;
|
|
|
|
MaximumJumpSpins = 0;
|
2020-04-06 16:31:08 +00:00
|
|
|
BestStuntJump = 0;
|
2020-08-13 20:39:55 +00:00
|
|
|
NumberOfUniqueJumpsFound = 0;
|
2020-04-06 16:31:08 +00:00
|
|
|
TotalNumberOfUniqueJumps = 0;
|
2020-08-13 20:39:55 +00:00
|
|
|
MissionsGiven = 0;
|
|
|
|
MissionsPassed = 0;
|
2020-04-06 16:31:08 +00:00
|
|
|
PassengersDroppedOffWithTaxi = 0;
|
|
|
|
MoneyMadeWithTaxi = 0;
|
2020-08-13 20:39:55 +00:00
|
|
|
DistanceTravelledOnFoot = 0;
|
|
|
|
DistanceTravelledByCar = 0;
|
|
|
|
DistanceTravelledByBike = 0;
|
|
|
|
DistanceTravelledByBoat = 0;
|
|
|
|
DistanceTravelledByGolfCart = 0;
|
|
|
|
DistanceTravelledByHelicoptor = 0;
|
2020-08-16 15:39:11 +00:00
|
|
|
#ifdef FIX_BUGS
|
|
|
|
DistanceTravelledByPlane = 0;
|
|
|
|
#endif
|
2020-04-06 16:31:08 +00:00
|
|
|
LivesSavedWithAmbulance = 0;
|
|
|
|
CriminalsCaught = 0;
|
2020-08-13 20:39:55 +00:00
|
|
|
HighestLevelVigilanteMission = 0;
|
2020-04-06 16:31:08 +00:00
|
|
|
HighestLevelAmbulanceMission = 0;
|
2020-08-13 20:39:55 +00:00
|
|
|
HighestLevelFireMission = 0;
|
2020-04-06 16:31:08 +00:00
|
|
|
FiresExtinguished = 0;
|
2020-08-13 20:39:55 +00:00
|
|
|
PhotosTaken = 0;
|
2020-04-06 16:31:08 +00:00
|
|
|
NumberKillFrenziesPassed = 0;
|
|
|
|
TotalNumberKillFrenzies = 0;
|
|
|
|
TotalNumberMissions = 0;
|
2020-08-13 20:39:55 +00:00
|
|
|
FlightTime = 0;
|
|
|
|
TimesDrowned = 0;
|
|
|
|
SeagullsKilled = 0;
|
|
|
|
WeaponBudget = 0.0f;
|
|
|
|
FashionBudget = 0.0f;
|
|
|
|
LoanSharks = 0.0f;
|
|
|
|
StoresKnockedOff = 0.0f;
|
|
|
|
MovieStunts = 0.0f;
|
|
|
|
Assassinations = 0.0f;
|
|
|
|
PizzasDelivered = 0.0f;
|
|
|
|
GarbagePickups = 0.0f;
|
|
|
|
IceCreamSold = 0.0f;
|
|
|
|
TopShootingRangeScore = 0.0f;
|
|
|
|
ShootingRank = 0.0f;
|
|
|
|
LongestWheelie = 0;
|
|
|
|
LongestStoppie = 0;
|
|
|
|
Longest2Wheel = 0;
|
|
|
|
LongestWheelieDist = 0.0f;
|
|
|
|
LongestStoppieDist = 0.0f;
|
|
|
|
Longest2WheelDist = 0.0f;
|
|
|
|
PropertyBudget = 0.0f;
|
|
|
|
AutoPaintingBudget = 0.0f;
|
|
|
|
PropertyDestroyed = 0;
|
|
|
|
HighestChaseValue = 0.0f;
|
|
|
|
CheatedCount = 0;
|
|
|
|
|
2020-04-06 16:31:08 +00:00
|
|
|
for (int i = 0; i < TOTAL_FASTEST_TIMES; i++)
|
|
|
|
FastestTimes[i] = 0;
|
|
|
|
for (int i = 0; i < TOTAL_HIGHEST_SCORES; i++)
|
|
|
|
HighestScores[i] = 0;
|
2020-06-07 12:23:52 +00:00
|
|
|
for (int i = 0; i < TOTAL_BEST_POSITIONS; i++)
|
|
|
|
BestPositions[i] = INT_MAX;
|
2020-08-13 20:39:55 +00:00
|
|
|
|
|
|
|
KillsSinceLastCheckpoint = 0;
|
|
|
|
TotalLegitimateKills = 0;
|
2020-04-06 16:31:08 +00:00
|
|
|
IndustrialPassed = 0;
|
|
|
|
CommercialPassed = 0;
|
|
|
|
SuburbanPassed = 0;
|
2020-08-13 20:39:55 +00:00
|
|
|
PamphletMissionPassed = 0;
|
2020-05-16 10:31:23 +00:00
|
|
|
NoMoreHurricanes = 0;
|
2020-08-13 20:39:55 +00:00
|
|
|
ShowChaseStatOnScreen = 0;
|
|
|
|
abSonyCDs[0] = 0;
|
|
|
|
// TODO(Miami): Change this with PopulateFavoriteRadioStationList(); !!
|
|
|
|
for (int i = 0; i < NUM_RADIOS; i++)
|
|
|
|
FavoriteRadioStationList[i] = 0.0f;
|
|
|
|
|
|
|
|
NumPropertyOwned = 0;
|
|
|
|
for (int i = 0; i < TOTAL_PROPERTIES; i++)
|
|
|
|
PropertyOwned[i] = false;
|
|
|
|
|
|
|
|
BloodRingKills = 0;
|
|
|
|
BloodRingTime = 0;
|
2020-03-24 18:50:08 +00:00
|
|
|
}
|
|
|
|
|
2020-02-16 20:08:54 +00:00
|
|
|
void CStats::RegisterFastestTime(int32 index, int32 time)
|
2019-07-04 20:31:21 +00:00
|
|
|
{
|
2020-02-16 20:08:54 +00:00
|
|
|
assert(index >= 0 && index < TOTAL_FASTEST_TIMES);
|
|
|
|
if (FastestTimes[index] == 0)
|
|
|
|
FastestTimes[index] = time;
|
|
|
|
else
|
2020-04-19 16:34:08 +00:00
|
|
|
FastestTimes[index] = Min(FastestTimes[index], time);
|
2020-02-16 20:08:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CStats::RegisterHighestScore(int32 index, int32 score)
|
|
|
|
{
|
|
|
|
assert(index >= 0 && index < TOTAL_HIGHEST_SCORES);
|
2020-04-19 16:34:08 +00:00
|
|
|
HighestScores[index] = Max(HighestScores[index], score);
|
2019-08-03 22:31:00 +00:00
|
|
|
}
|
2020-02-15 11:53:42 +00:00
|
|
|
|
2020-06-07 12:23:52 +00:00
|
|
|
void CStats::RegisterBestPosition(int32 index, int32 position)
|
|
|
|
{
|
|
|
|
assert(index >= 0 && index < TOTAL_BEST_POSITIONS);
|
|
|
|
BestPositions[index] = Min(BestPositions[index], position);
|
|
|
|
}
|
|
|
|
|
2020-02-16 20:08:54 +00:00
|
|
|
void CStats::AnotherLifeSavedWithAmbulance()
|
|
|
|
{
|
|
|
|
++LivesSavedWithAmbulance;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CStats::AnotherCriminalCaught()
|
|
|
|
{
|
|
|
|
++CriminalsCaught;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CStats::RegisterLevelAmbulanceMission(int32 level)
|
|
|
|
{
|
2020-04-19 16:34:08 +00:00
|
|
|
HighestLevelAmbulanceMission = Max(HighestLevelAmbulanceMission, level);
|
2020-02-16 20:08:54 +00:00
|
|
|
}
|
|
|
|
|
2020-08-13 20:39:55 +00:00
|
|
|
void CStats::RegisterLevelVigilanteMission(int32 level)
|
2020-02-16 20:08:54 +00:00
|
|
|
{
|
2020-08-13 20:39:55 +00:00
|
|
|
HighestLevelVigilanteMission = Max(HighestLevelVigilanteMission, level);
|
2020-02-16 20:08:54 +00:00
|
|
|
}
|
|
|
|
|
2020-08-13 20:39:55 +00:00
|
|
|
void CStats::RegisterLevelFireMission(int32 level)
|
2020-02-16 20:08:54 +00:00
|
|
|
{
|
2020-08-13 20:39:55 +00:00
|
|
|
HighestLevelFireMission = Max(HighestLevelFireMission, level);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CStats::AnotherFireExtinguished()
|
|
|
|
{
|
|
|
|
++FiresExtinguished;
|
2020-02-16 20:08:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CStats::AnotherKillFrenzyPassed()
|
|
|
|
{
|
|
|
|
++NumberKillFrenziesPassed;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CStats::SetTotalNumberKillFrenzies(int32 total)
|
|
|
|
{
|
|
|
|
TotalNumberKillFrenzies = total;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CStats::SetTotalNumberMissions(int32 total)
|
|
|
|
{
|
|
|
|
TotalNumberMissions = total;
|
|
|
|
}
|
2020-03-22 14:23:40 +00:00
|
|
|
|
2020-04-09 10:14:37 +00:00
|
|
|
wchar *CStats::FindCriminalRatingString()
|
|
|
|
{
|
|
|
|
int rating = FindCriminalRatingNumber();
|
|
|
|
|
2020-08-13 20:39:55 +00:00
|
|
|
if (rating < 0) {
|
|
|
|
if (rating > -500) return TheText.Get("RATNG53");
|
|
|
|
if (rating > -2000) return TheText.Get("RATNG54");
|
|
|
|
if (rating > -4000) return TheText.Get("RATNG55");
|
|
|
|
if (rating > -6000) return TheText.Get("RATNG56");
|
|
|
|
return TheText.Get("RATNG57");
|
|
|
|
}
|
|
|
|
if (rating < 20) return TheText.Get("RATNG1");
|
|
|
|
if (rating < 50) return TheText.Get("RATNG2");
|
|
|
|
if (rating < 75) return TheText.Get("RATNG3");
|
|
|
|
if (rating < 100) return TheText.Get("RATNG4");
|
|
|
|
if (rating < 120) return TheText.Get("RATNG5");
|
|
|
|
if (rating < 150) return TheText.Get("RATNG6");
|
|
|
|
if (rating < 200) return TheText.Get("RATNG7");
|
|
|
|
if (rating < 240) return TheText.Get("RATNG8");
|
|
|
|
if (rating < 270) return TheText.Get("RATNG9");
|
|
|
|
if (rating < 300) return TheText.Get("RATNG10");
|
|
|
|
if (rating < 335) return TheText.Get("RATNG11");
|
|
|
|
if (rating < 370) return TheText.Get("RATNG12");
|
|
|
|
if (rating < 400) return TheText.Get("RATNG13");
|
|
|
|
if (rating < 450) return TheText.Get("RATNG14");
|
|
|
|
if (rating < 500) return TheText.Get("RATNG15");
|
|
|
|
if (rating < 550) return TheText.Get("RATNG16");
|
|
|
|
if (rating < 600) return TheText.Get("RATNG17");
|
|
|
|
if (rating < 610) return TheText.Get("RATNG18");
|
|
|
|
if (rating < 650) return TheText.Get("RATNG19");
|
|
|
|
if (rating < 700) return TheText.Get("RATNG20");
|
|
|
|
if (rating < 850) return TheText.Get("RATNG21");
|
|
|
|
if (rating < 1000) return TheText.Get("RATNG22");
|
|
|
|
if (rating < 1005) return TheText.Get("RATNG23");
|
|
|
|
if (rating < 1150) return TheText.Get("RATNG24");
|
|
|
|
if (rating < 1300) return TheText.Get(TimesArrested > 0 ? "RATNG25" : "RATNG24");
|
|
|
|
if (rating < 1500) return TheText.Get("RATNG26");
|
|
|
|
if (rating < 1700) return TheText.Get("RATNG27");
|
|
|
|
if (rating < 2000) return TheText.Get("RATNG28");
|
|
|
|
if (rating < 2100) return TheText.Get("RATNG29");
|
|
|
|
if (rating < 2300) return TheText.Get("RATNG30");
|
|
|
|
if (rating < 2500) return TheText.Get("RATNG31");
|
|
|
|
if (rating < 2750) return TheText.Get("RATNG32");
|
|
|
|
if (rating < 3000) return TheText.Get("RATNG33");
|
|
|
|
if (rating < 3500) return TheText.Get("RATNG34");
|
|
|
|
if (rating < 4000) return TheText.Get("RATNG35");
|
|
|
|
if (rating < 5000) return TheText.Get("RATNG36");
|
|
|
|
if (rating < 7500) return TheText.Get("RATNG37");
|
|
|
|
if (rating < 10000) return TheText.Get("RATNG38");
|
|
|
|
if (rating < 20000) return TheText.Get("RATNG39");
|
|
|
|
if (rating < 30000) return TheText.Get("RATNG40");
|
|
|
|
if (rating < 40000) return TheText.Get("RATNG41");
|
|
|
|
if (rating < 50000) return TheText.Get("RATNG42");
|
|
|
|
if (rating < 65000) return TheText.Get("RATNG43");
|
|
|
|
if (rating < 80000) return TheText.Get("RATNG44");
|
|
|
|
if (rating < 100000) return TheText.Get("RATNG45");
|
|
|
|
if (rating < 150000) return TheText.Get("RATNG46");
|
|
|
|
if (rating < 200000) return TheText.Get("RATNG47");
|
|
|
|
if (rating < 300000) return TheText.Get("RATNG48");
|
|
|
|
if (rating < 375000) return TheText.Get("RATNG49");
|
|
|
|
if (rating < 500000) return TheText.Get(FlightTime / 60000 / 60 > 10 ? "RATNG50" : "RATNG49");
|
|
|
|
if (rating < 1000000) return TheText.Get("RATNG51");
|
|
|
|
return TheText.Get(CWorld::Players[CWorld::PlayerInFocus].m_nVisibleMoney > 10000000 ? "RATNG52" : "RATNG51");
|
2020-04-09 10:14:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int32 CStats::FindCriminalRatingNumber()
|
|
|
|
{
|
|
|
|
int32 rating;
|
|
|
|
|
2020-08-13 20:39:55 +00:00
|
|
|
rating = FiresExtinguished + 10 * HighestLevelFireMission + 10 * HighestLevelAmbulanceMission
|
|
|
|
+ CriminalsCaught + LivesSavedWithAmbulance
|
2020-04-09 10:14:37 +00:00
|
|
|
+ 30 * HelisDestroyed + TotalLegitimateKills - 3 * TimesArrested - 3 * TimesDied
|
|
|
|
+ CWorld::Players[CWorld::PlayerInFocus].m_nMoney / 5000;
|
2020-08-13 20:39:55 +00:00
|
|
|
if (CPad::bHasPlayerCheated || CheatedCount > 0) {
|
|
|
|
rating -= CheatedCount;
|
|
|
|
if (rating <= -10000)
|
|
|
|
rating = -10000;
|
|
|
|
|
|
|
|
} else if (rating <= 0) {
|
|
|
|
rating = 0;
|
|
|
|
}
|
2020-04-09 10:14:37 +00:00
|
|
|
|
2020-08-13 20:39:55 +00:00
|
|
|
if (RoundsFiredByPlayer > 100)
|
|
|
|
rating += (float)CStats::BulletsThatHit / (float)CStats::RoundsFiredByPlayer * 500.0f;
|
2020-04-09 10:14:37 +00:00
|
|
|
if (TotalProgressInGame)
|
|
|
|
rating += (float)CStats::ProgressMade / (float)CStats::TotalProgressInGame * 1000.0f;
|
|
|
|
return rating;
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:36:48 +00:00
|
|
|
float CStats::GetPercentageProgress()
|
|
|
|
{
|
|
|
|
float percentCompleted = (CStats::TotalProgressInGame == 0 ? 0 :
|
|
|
|
CStats::ProgressMade * 100.0f / (CGame::nastyGame ? CStats::TotalProgressInGame : CStats::TotalProgressInGame - 1.0f));
|
|
|
|
|
|
|
|
return Min(percentCompleted, 100.0f);
|
|
|
|
}
|
|
|
|
|
2020-08-13 20:39:55 +00:00
|
|
|
void CStats::MoneySpentOnWeapons(int32 money)
|
|
|
|
{
|
|
|
|
WeaponBudget += money;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CStats::MoneySpentOnProperty(int32 money)
|
|
|
|
{
|
|
|
|
PropertyBudget += money;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CStats::MoneySpentOnAutoPainting(int32 money)
|
|
|
|
{
|
|
|
|
AutoPaintingBudget += money;
|
|
|
|
}
|
|
|
|
|
2020-05-16 20:06:33 +00:00
|
|
|
void CStats::MoneySpentOnFashion(int32 money)
|
|
|
|
{
|
|
|
|
FashionBudget += money;
|
|
|
|
}
|
|
|
|
|
2020-08-13 20:39:55 +00:00
|
|
|
void CStats::NumOfVisitsFromLoanSharks(int32 num)
|
|
|
|
{
|
|
|
|
LoanSharks += num;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CStats::NumOfStoresKnockedOff(int32 num)
|
|
|
|
{
|
|
|
|
StoresKnockedOff += num;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CStats::NumOfMovieStunts(int32 num)
|
|
|
|
{
|
|
|
|
MovieStunts += num;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CStats::NumOfAssassinations(int32 num)
|
|
|
|
{
|
|
|
|
Assassinations += num;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CStats::NumOfPizzasDelivered(int32 num)
|
|
|
|
{
|
|
|
|
PizzasDelivered += num;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CStats::NumOfGarbagePickups(int32 num)
|
|
|
|
{
|
|
|
|
GarbagePickups += num;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CStats::NumOfIceCreamSold(int32 num)
|
|
|
|
{
|
|
|
|
IceCreamSold += num;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CStats::AddNumBloodRingKills(int32 num)
|
|
|
|
{
|
|
|
|
BloodRingKills += num;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CStats::LongestTimeInBloodRing(int32 time)
|
|
|
|
{
|
|
|
|
if (BloodRingTime < time)
|
|
|
|
BloodRingTime = time;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CStats::AddPropertyAsOwned(int32 id)
|
|
|
|
{
|
|
|
|
if (!PropertyOwned[id]) {
|
|
|
|
PropertyOwned[id] = true;
|
|
|
|
++NumPropertyOwned;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-09 10:14:37 +00:00
|
|
|
void CStats::SaveStats(uint8 *buf, uint32 *size)
|
|
|
|
{
|
|
|
|
CheckPointReachedSuccessfully();
|
|
|
|
uint8 *buf_start = buf;
|
|
|
|
*size = sizeof(PeopleKilledByPlayer) +
|
|
|
|
sizeof(PeopleKilledByOthers) +
|
|
|
|
sizeof(CarsExploded) +
|
2020-08-13 20:39:55 +00:00
|
|
|
sizeof(BoatsExploded) +
|
|
|
|
sizeof(TyresPopped) +
|
2020-04-09 10:14:37 +00:00
|
|
|
sizeof(RoundsFiredByPlayer) +
|
|
|
|
sizeof(PedsKilledOfThisType) +
|
|
|
|
sizeof(HelisDestroyed) +
|
|
|
|
sizeof(ProgressMade) +
|
|
|
|
sizeof(TotalProgressInGame) +
|
|
|
|
sizeof(KgsOfExplosivesUsed) +
|
2020-08-13 20:39:55 +00:00
|
|
|
sizeof(BulletsThatHit) +
|
2020-04-09 10:14:37 +00:00
|
|
|
sizeof(HeadsPopped) +
|
2020-08-13 20:39:55 +00:00
|
|
|
sizeof(WantedStarsAttained) +
|
|
|
|
sizeof(WantedStarsEvaded) +
|
2020-04-09 10:14:37 +00:00
|
|
|
sizeof(TimesArrested) +
|
|
|
|
sizeof(TimesDied) +
|
|
|
|
sizeof(DaysPassed) +
|
2020-08-13 20:39:55 +00:00
|
|
|
sizeof(SafeHouseVisits) +
|
|
|
|
sizeof(Sprayings) +
|
2020-04-09 10:14:37 +00:00
|
|
|
sizeof(MaximumJumpDistance) +
|
|
|
|
sizeof(MaximumJumpHeight) +
|
|
|
|
sizeof(MaximumJumpFlips) +
|
|
|
|
sizeof(MaximumJumpSpins) +
|
|
|
|
sizeof(BestStuntJump) +
|
|
|
|
sizeof(NumberOfUniqueJumpsFound) +
|
|
|
|
sizeof(TotalNumberOfUniqueJumps) +
|
|
|
|
sizeof(MissionsGiven) +
|
|
|
|
sizeof(PassengersDroppedOffWithTaxi) +
|
|
|
|
sizeof(MoneyMadeWithTaxi) +
|
|
|
|
sizeof(IndustrialPassed) +
|
|
|
|
sizeof(CommercialPassed) +
|
|
|
|
sizeof(SuburbanPassed) +
|
2020-08-13 20:39:55 +00:00
|
|
|
sizeof(PamphletMissionPassed) +
|
|
|
|
sizeof(NoMoreHurricanes) +
|
2020-04-09 10:14:37 +00:00
|
|
|
sizeof(DistanceTravelledOnFoot) +
|
2020-08-13 20:39:55 +00:00
|
|
|
sizeof(DistanceTravelledByCar) +
|
|
|
|
sizeof(DistanceTravelledByBike) +
|
|
|
|
sizeof(DistanceTravelledByBoat) +
|
|
|
|
sizeof(DistanceTravelledByGolfCart) +
|
|
|
|
sizeof(DistanceTravelledByHelicoptor) +
|
|
|
|
sizeof(DistanceTravelledByPlane) +
|
2020-04-09 10:14:37 +00:00
|
|
|
sizeof(LivesSavedWithAmbulance) +
|
|
|
|
sizeof(CriminalsCaught) +
|
|
|
|
sizeof(FiresExtinguished) +
|
2020-08-13 20:39:55 +00:00
|
|
|
sizeof(HighestLevelVigilanteMission) +
|
|
|
|
sizeof(HighestLevelAmbulanceMission) +
|
|
|
|
sizeof(HighestLevelFireMission) +
|
|
|
|
sizeof(PhotosTaken) +
|
2020-04-09 10:14:37 +00:00
|
|
|
sizeof(NumberKillFrenziesPassed) +
|
|
|
|
sizeof(TotalNumberKillFrenzies) +
|
|
|
|
sizeof(TotalNumberMissions) +
|
2020-08-13 20:39:55 +00:00
|
|
|
sizeof(FlightTime) +
|
|
|
|
sizeof(TimesDrowned) +
|
|
|
|
sizeof(SeagullsKilled) +
|
|
|
|
sizeof(WeaponBudget) +
|
|
|
|
sizeof(FashionBudget) +
|
|
|
|
sizeof(LoanSharks) +
|
|
|
|
sizeof(StoresKnockedOff) +
|
|
|
|
sizeof(MovieStunts) +
|
|
|
|
sizeof(Assassinations) +
|
|
|
|
sizeof(PizzasDelivered) +
|
|
|
|
sizeof(GarbagePickups) +
|
|
|
|
sizeof(IceCreamSold) +
|
|
|
|
sizeof(TopShootingRangeScore) +
|
|
|
|
sizeof(ShootingRank) +
|
|
|
|
sizeof(LongestWheelie) +
|
|
|
|
sizeof(LongestStoppie) +
|
|
|
|
sizeof(Longest2Wheel) +
|
|
|
|
sizeof(LongestWheelieDist) +
|
|
|
|
sizeof(LongestStoppieDist) +
|
|
|
|
sizeof(Longest2WheelDist) +
|
|
|
|
sizeof(PropertyBudget) +
|
|
|
|
sizeof(AutoPaintingBudget) +
|
|
|
|
sizeof(PropertyDestroyed) +
|
|
|
|
sizeof(NumPropertyOwned) +
|
|
|
|
sizeof(BloodRingKills) +
|
|
|
|
sizeof(BloodRingTime) +
|
|
|
|
sizeof(PropertyOwned) +
|
|
|
|
sizeof(HighestChaseValue) +
|
2020-04-09 10:14:37 +00:00
|
|
|
sizeof(FastestTimes) +
|
|
|
|
sizeof(HighestScores) +
|
2020-06-07 14:52:14 +00:00
|
|
|
sizeof(BestPositions) +
|
2020-04-09 10:14:37 +00:00
|
|
|
sizeof(KillsSinceLastCheckpoint) +
|
|
|
|
sizeof(TotalLegitimateKills) +
|
2020-08-13 20:39:55 +00:00
|
|
|
sizeof(LastMissionPassedName) +
|
|
|
|
sizeof(CheatedCount) +
|
|
|
|
sizeof(FavoriteRadioStationList);
|
2020-04-09 10:14:37 +00:00
|
|
|
|
|
|
|
#define CopyToBuf(buf, data) memcpy(buf, &data, sizeof(data)); buf += sizeof(data);
|
|
|
|
CopyToBuf(buf, PeopleKilledByPlayer);
|
|
|
|
CopyToBuf(buf, PeopleKilledByOthers);
|
|
|
|
CopyToBuf(buf, CarsExploded);
|
2020-08-13 20:39:55 +00:00
|
|
|
CopyToBuf(buf, BoatsExploded);
|
|
|
|
CopyToBuf(buf, TyresPopped);
|
2020-04-09 10:14:37 +00:00
|
|
|
CopyToBuf(buf, RoundsFiredByPlayer);
|
|
|
|
CopyToBuf(buf, PedsKilledOfThisType);
|
|
|
|
CopyToBuf(buf, HelisDestroyed);
|
|
|
|
CopyToBuf(buf, ProgressMade);
|
|
|
|
CopyToBuf(buf, TotalProgressInGame);
|
|
|
|
CopyToBuf(buf, KgsOfExplosivesUsed);
|
2020-08-13 20:39:55 +00:00
|
|
|
CopyToBuf(buf, BulletsThatHit);
|
2020-04-09 10:14:37 +00:00
|
|
|
CopyToBuf(buf, HeadsPopped);
|
2020-08-13 20:39:55 +00:00
|
|
|
CopyToBuf(buf, WantedStarsAttained);
|
|
|
|
CopyToBuf(buf, WantedStarsEvaded);
|
2020-04-09 10:14:37 +00:00
|
|
|
CopyToBuf(buf, TimesArrested);
|
|
|
|
CopyToBuf(buf, TimesDied);
|
|
|
|
CopyToBuf(buf, DaysPassed);
|
2020-08-13 20:39:55 +00:00
|
|
|
CopyToBuf(buf, SafeHouseVisits);
|
|
|
|
CopyToBuf(buf, Sprayings);
|
2020-04-09 10:14:37 +00:00
|
|
|
CopyToBuf(buf, MaximumJumpDistance);
|
|
|
|
CopyToBuf(buf, MaximumJumpHeight);
|
|
|
|
CopyToBuf(buf, MaximumJumpFlips);
|
|
|
|
CopyToBuf(buf, MaximumJumpSpins);
|
|
|
|
CopyToBuf(buf, BestStuntJump);
|
|
|
|
CopyToBuf(buf, NumberOfUniqueJumpsFound);
|
|
|
|
CopyToBuf(buf, TotalNumberOfUniqueJumps);
|
|
|
|
CopyToBuf(buf, MissionsGiven);
|
|
|
|
CopyToBuf(buf, PassengersDroppedOffWithTaxi);
|
|
|
|
CopyToBuf(buf, MoneyMadeWithTaxi);
|
|
|
|
CopyToBuf(buf, IndustrialPassed);
|
|
|
|
CopyToBuf(buf, CommercialPassed);
|
|
|
|
CopyToBuf(buf, SuburbanPassed);
|
2020-08-13 20:39:55 +00:00
|
|
|
CopyToBuf(buf, PamphletMissionPassed);
|
|
|
|
CopyToBuf(buf, NoMoreHurricanes);
|
2020-04-09 10:14:37 +00:00
|
|
|
CopyToBuf(buf, DistanceTravelledOnFoot);
|
2020-08-13 20:39:55 +00:00
|
|
|
CopyToBuf(buf, DistanceTravelledByCar);
|
|
|
|
CopyToBuf(buf, DistanceTravelledByBike);
|
|
|
|
CopyToBuf(buf, DistanceTravelledByBoat);
|
|
|
|
CopyToBuf(buf, DistanceTravelledByGolfCart);
|
|
|
|
CopyToBuf(buf, DistanceTravelledByHelicoptor);
|
|
|
|
CopyToBuf(buf, DistanceTravelledByPlane);
|
2020-04-09 10:14:37 +00:00
|
|
|
CopyToBuf(buf, LivesSavedWithAmbulance);
|
|
|
|
CopyToBuf(buf, CriminalsCaught);
|
|
|
|
CopyToBuf(buf, FiresExtinguished);
|
2020-08-13 20:39:55 +00:00
|
|
|
CopyToBuf(buf, HighestLevelVigilanteMission);
|
|
|
|
CopyToBuf(buf, HighestLevelAmbulanceMission);
|
|
|
|
CopyToBuf(buf, HighestLevelFireMission);
|
|
|
|
CopyToBuf(buf, PhotosTaken);
|
2020-04-09 10:14:37 +00:00
|
|
|
CopyToBuf(buf, NumberKillFrenziesPassed);
|
|
|
|
CopyToBuf(buf, TotalNumberKillFrenzies);
|
|
|
|
CopyToBuf(buf, TotalNumberMissions);
|
2020-08-13 20:39:55 +00:00
|
|
|
CopyToBuf(buf, FlightTime);
|
|
|
|
CopyToBuf(buf, TimesDrowned);
|
|
|
|
CopyToBuf(buf, SeagullsKilled);
|
|
|
|
CopyToBuf(buf, WeaponBudget);
|
|
|
|
CopyToBuf(buf, FashionBudget);
|
|
|
|
CopyToBuf(buf, LoanSharks);
|
|
|
|
CopyToBuf(buf, StoresKnockedOff);
|
|
|
|
CopyToBuf(buf, MovieStunts);
|
|
|
|
CopyToBuf(buf, Assassinations);
|
|
|
|
CopyToBuf(buf, PizzasDelivered);
|
|
|
|
CopyToBuf(buf, GarbagePickups);
|
|
|
|
CopyToBuf(buf, IceCreamSold);
|
|
|
|
CopyToBuf(buf, TopShootingRangeScore);
|
|
|
|
CopyToBuf(buf, ShootingRank);
|
|
|
|
CopyToBuf(buf, LongestWheelie);
|
|
|
|
CopyToBuf(buf, LongestStoppie);
|
|
|
|
CopyToBuf(buf, Longest2Wheel);
|
|
|
|
CopyToBuf(buf, LongestWheelieDist);
|
|
|
|
CopyToBuf(buf, LongestStoppieDist);
|
|
|
|
CopyToBuf(buf, Longest2WheelDist);
|
|
|
|
CopyToBuf(buf, PropertyBudget);
|
|
|
|
CopyToBuf(buf, AutoPaintingBudget);
|
|
|
|
CopyToBuf(buf, PropertyDestroyed);
|
|
|
|
CopyToBuf(buf, NumPropertyOwned);
|
|
|
|
CopyToBuf(buf, BloodRingKills);
|
|
|
|
CopyToBuf(buf, BloodRingTime);
|
|
|
|
CopyToBuf(buf, PropertyOwned);
|
|
|
|
CopyToBuf(buf, HighestChaseValue);
|
2020-04-09 10:14:37 +00:00
|
|
|
CopyToBuf(buf, FastestTimes);
|
|
|
|
CopyToBuf(buf, HighestScores);
|
2020-06-07 12:23:52 +00:00
|
|
|
CopyToBuf(buf, BestPositions);
|
2020-04-09 10:14:37 +00:00
|
|
|
CopyToBuf(buf, KillsSinceLastCheckpoint);
|
|
|
|
CopyToBuf(buf, TotalLegitimateKills);
|
|
|
|
CopyToBuf(buf, LastMissionPassedName);
|
2020-08-13 20:39:55 +00:00
|
|
|
CopyToBuf(buf, CheatedCount);
|
|
|
|
// TODO(Miami): Set favourite radio stations!!
|
|
|
|
CopyToBuf(buf, FavoriteRadioStationList);
|
2020-04-09 10:14:37 +00:00
|
|
|
|
|
|
|
assert(buf - buf_start == *size);
|
|
|
|
#undef CopyToBuf
|
|
|
|
}
|
|
|
|
|
|
|
|
void CStats::LoadStats(uint8 *buf, uint32 size)
|
|
|
|
{
|
|
|
|
uint8* buf_start = buf;
|
|
|
|
|
|
|
|
#define CopyFromBuf(buf, data) memcpy(&data, buf, sizeof(data)); buf += sizeof(data);
|
|
|
|
|
|
|
|
CopyFromBuf(buf, PeopleKilledByPlayer);
|
|
|
|
CopyFromBuf(buf, PeopleKilledByOthers);
|
|
|
|
CopyFromBuf(buf, CarsExploded);
|
2020-08-13 20:39:55 +00:00
|
|
|
CopyFromBuf(buf, BoatsExploded);
|
|
|
|
CopyFromBuf(buf, TyresPopped);
|
2020-04-09 10:14:37 +00:00
|
|
|
CopyFromBuf(buf, RoundsFiredByPlayer);
|
|
|
|
CopyFromBuf(buf, PedsKilledOfThisType);
|
|
|
|
CopyFromBuf(buf, HelisDestroyed);
|
|
|
|
CopyFromBuf(buf, ProgressMade);
|
|
|
|
CopyFromBuf(buf, TotalProgressInGame);
|
|
|
|
CopyFromBuf(buf, KgsOfExplosivesUsed);
|
2020-08-13 20:39:55 +00:00
|
|
|
CopyFromBuf(buf, BulletsThatHit);
|
2020-04-09 10:14:37 +00:00
|
|
|
CopyFromBuf(buf, HeadsPopped);
|
2020-08-13 20:39:55 +00:00
|
|
|
CopyFromBuf(buf, WantedStarsAttained);
|
|
|
|
CopyFromBuf(buf, WantedStarsEvaded);
|
2020-04-09 10:14:37 +00:00
|
|
|
CopyFromBuf(buf, TimesArrested);
|
|
|
|
CopyFromBuf(buf, TimesDied);
|
|
|
|
CopyFromBuf(buf, DaysPassed);
|
2020-08-13 20:39:55 +00:00
|
|
|
CopyFromBuf(buf, SafeHouseVisits);
|
|
|
|
CopyFromBuf(buf, Sprayings);
|
2020-04-09 10:14:37 +00:00
|
|
|
CopyFromBuf(buf, MaximumJumpDistance);
|
|
|
|
CopyFromBuf(buf, MaximumJumpHeight);
|
|
|
|
CopyFromBuf(buf, MaximumJumpFlips);
|
|
|
|
CopyFromBuf(buf, MaximumJumpSpins);
|
|
|
|
CopyFromBuf(buf, BestStuntJump);
|
|
|
|
CopyFromBuf(buf, NumberOfUniqueJumpsFound);
|
|
|
|
CopyFromBuf(buf, TotalNumberOfUniqueJumps);
|
|
|
|
CopyFromBuf(buf, MissionsGiven);
|
|
|
|
CopyFromBuf(buf, PassengersDroppedOffWithTaxi);
|
|
|
|
CopyFromBuf(buf, MoneyMadeWithTaxi);
|
|
|
|
CopyFromBuf(buf, IndustrialPassed);
|
|
|
|
CopyFromBuf(buf, CommercialPassed);
|
|
|
|
CopyFromBuf(buf, SuburbanPassed);
|
2020-08-13 20:39:55 +00:00
|
|
|
CopyFromBuf(buf, PamphletMissionPassed);
|
|
|
|
CopyFromBuf(buf, NoMoreHurricanes);
|
2020-04-09 10:14:37 +00:00
|
|
|
CopyFromBuf(buf, DistanceTravelledOnFoot);
|
2020-08-13 20:39:55 +00:00
|
|
|
CopyFromBuf(buf, DistanceTravelledByCar);
|
|
|
|
CopyFromBuf(buf, DistanceTravelledByBike);
|
|
|
|
CopyFromBuf(buf, DistanceTravelledByBoat);
|
|
|
|
CopyFromBuf(buf, DistanceTravelledByGolfCart);
|
|
|
|
CopyFromBuf(buf, DistanceTravelledByHelicoptor);
|
|
|
|
CopyFromBuf(buf, DistanceTravelledByPlane);
|
2020-04-09 10:14:37 +00:00
|
|
|
CopyFromBuf(buf, LivesSavedWithAmbulance);
|
|
|
|
CopyFromBuf(buf, CriminalsCaught);
|
|
|
|
CopyFromBuf(buf, FiresExtinguished);
|
2020-08-13 20:39:55 +00:00
|
|
|
CopyFromBuf(buf, HighestLevelVigilanteMission);
|
|
|
|
CopyFromBuf(buf, HighestLevelAmbulanceMission);
|
|
|
|
CopyFromBuf(buf, HighestLevelFireMission);
|
|
|
|
CopyFromBuf(buf, PhotosTaken);
|
2020-04-09 10:14:37 +00:00
|
|
|
CopyFromBuf(buf, NumberKillFrenziesPassed);
|
|
|
|
CopyFromBuf(buf, TotalNumberKillFrenzies);
|
|
|
|
CopyFromBuf(buf, TotalNumberMissions);
|
2020-08-13 20:39:55 +00:00
|
|
|
CopyFromBuf(buf, FlightTime);
|
|
|
|
CopyFromBuf(buf, TimesDrowned);
|
|
|
|
CopyFromBuf(buf, SeagullsKilled);
|
|
|
|
CopyFromBuf(buf, WeaponBudget);
|
|
|
|
CopyFromBuf(buf, FashionBudget);
|
|
|
|
CopyFromBuf(buf, LoanSharks);
|
|
|
|
CopyFromBuf(buf, StoresKnockedOff);
|
|
|
|
CopyFromBuf(buf, MovieStunts);
|
|
|
|
CopyFromBuf(buf, Assassinations);
|
|
|
|
CopyFromBuf(buf, PizzasDelivered);
|
|
|
|
CopyFromBuf(buf, GarbagePickups);
|
|
|
|
CopyFromBuf(buf, IceCreamSold);
|
|
|
|
CopyFromBuf(buf, TopShootingRangeScore);
|
|
|
|
CopyFromBuf(buf, ShootingRank);
|
|
|
|
CopyFromBuf(buf, LongestWheelie);
|
|
|
|
CopyFromBuf(buf, LongestStoppie);
|
|
|
|
CopyFromBuf(buf, Longest2Wheel);
|
|
|
|
CopyFromBuf(buf, LongestWheelieDist);
|
|
|
|
CopyFromBuf(buf, LongestStoppieDist);
|
|
|
|
CopyFromBuf(buf, Longest2WheelDist);
|
|
|
|
CopyFromBuf(buf, PropertyBudget);
|
|
|
|
CopyFromBuf(buf, AutoPaintingBudget);
|
|
|
|
CopyFromBuf(buf, PropertyDestroyed);
|
|
|
|
CopyFromBuf(buf, NumPropertyOwned);
|
|
|
|
CopyFromBuf(buf, BloodRingKills);
|
|
|
|
CopyFromBuf(buf, BloodRingTime);
|
|
|
|
CopyFromBuf(buf, PropertyOwned);
|
|
|
|
CopyFromBuf(buf, HighestChaseValue);
|
2020-04-09 10:14:37 +00:00
|
|
|
CopyFromBuf(buf, FastestTimes);
|
|
|
|
CopyFromBuf(buf, HighestScores);
|
2020-06-07 12:23:52 +00:00
|
|
|
CopyFromBuf(buf, BestPositions);
|
2020-04-09 10:14:37 +00:00
|
|
|
CopyFromBuf(buf, KillsSinceLastCheckpoint);
|
|
|
|
CopyFromBuf(buf, TotalLegitimateKills);
|
|
|
|
CopyFromBuf(buf, LastMissionPassedName);
|
2020-08-13 20:39:55 +00:00
|
|
|
CopyFromBuf(buf, CheatedCount);
|
|
|
|
CopyFromBuf(buf, FavoriteRadioStationList);
|
2020-04-09 10:14:37 +00:00
|
|
|
|
|
|
|
assert(buf - buf_start == size);
|
|
|
|
#undef CopyFromBuf
|
|
|
|
}
|