mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-16 19:43:06 +01:00
Derive some park variables
This commit is contained in:
@@ -115,6 +115,7 @@ namespace OpenRCT2
|
||||
String::Set(gS6Info.details, sizeof(gS6Info.details), gScenarioName.c_str());
|
||||
|
||||
AutoCreateMapAnimations();
|
||||
AutoDeriveVariables();
|
||||
}
|
||||
|
||||
void Save(const std::string_view& path)
|
||||
@@ -776,6 +777,34 @@ namespace OpenRCT2
|
||||
}
|
||||
}
|
||||
|
||||
void AutoDeriveVariables()
|
||||
{
|
||||
Peep* peep{};
|
||||
uint16_t spriteIndex{};
|
||||
uint16_t numGuestsInPark = 0;
|
||||
uint16_t numGuestsHeadingsForPark = 0;
|
||||
FOR_ALL_GUESTS (spriteIndex, peep)
|
||||
{
|
||||
if (peep->state == PEEP_STATE_ENTERING_PARK)
|
||||
{
|
||||
numGuestsHeadingsForPark++;
|
||||
}
|
||||
if (!peep->outside_of_park)
|
||||
{
|
||||
numGuestsInPark++;
|
||||
}
|
||||
}
|
||||
|
||||
gNumGuestsInPark = numGuestsInPark;
|
||||
gNumGuestsHeadingForPark = numGuestsHeadingsForPark;
|
||||
|
||||
auto& park = GetContext()->GetGameState()->GetPark();
|
||||
gParkSize = park.CalculateParkSize();
|
||||
gParkValue = park.CalculateParkValue();
|
||||
gCompanyValue = park.CalculateCompanyValue();
|
||||
gParkRating = park.CalculateParkRating();
|
||||
}
|
||||
|
||||
static void ReadWriteStringTable(OrcaStream::ChunkStream& cs, std::string& value, const std::string_view& lcode)
|
||||
{
|
||||
std::vector<std::tuple<std::string, std::string>> table;
|
||||
|
||||
Reference in New Issue
Block a user