OpenRCT2/test/tests/MultiLaunch.cpp

66 lines
1.9 KiB
C++
Raw Permalink Normal View History

/*****************************************************************************
2024-12-31 14:30:04 -05:00
* Copyright (c) 2014-2025 OpenRCT2 developers
*
* For a complete list of all authors, please refer to contributors.md
* Interested in contributing? Visit https://github.com/OpenRCT2/OpenRCT2
*
* OpenRCT2 is licensed under the GNU General Public License version 3.
*****************************************************************************/
2018-06-22 16:29:03 -04:00
#include "TestData.h"
2017-06-21 12:39:10 -04:00
#include <gtest/gtest.h>
#include <openrct2/Context.h>
2018-06-22 16:29:03 -04:00
#include <openrct2/Game.h>
2017-08-27 16:40:56 -04:00
#include <openrct2/GameState.h>
2017-06-21 12:39:10 -04:00
#include <openrct2/OpenRCT2.h>
#include <openrct2/ParkImporter.h>
2018-06-22 16:29:03 -04:00
#include <openrct2/audio/AudioContext.h>
#include <openrct2/core/File.h>
#include <openrct2/core/Path.hpp>
#include <openrct2/core/String.hpp>
#include <openrct2/platform/Platform.h>
2018-06-22 16:29:03 -04:00
#include <openrct2/ride/Ride.h>
#include <string>
2017-06-21 12:39:10 -04:00
using namespace OpenRCT2;
constexpr int32_t updatesToTest = 10;
2017-08-27 16:40:56 -04:00
2017-06-21 12:39:10 -04:00
TEST(MultiLaunchTest, all)
{
std::string path = TestData::GetParkPath("bpb.sv6");
gOpenRCT2Headless = true;
2018-04-10 07:33:37 -04:00
gOpenRCT2NoGraphics = true;
2017-06-21 12:39:10 -04:00
for (int i = 0; i < 3; i++)
2017-06-21 12:39:10 -04:00
{
auto context = CreateContext();
bool initialised = context->Initialise();
ASSERT_TRUE(initialised);
GetContext()->LoadParkFromFile(path);
GameLoadInit();
2017-06-21 12:39:10 -04:00
// Check ride count to check load was successful
ASSERT_EQ(RideGetCount(), 134);
2024-03-26 09:21:30 -04:00
auto& date = GetGameState().Date;
// NOTE: This value is saved in the SV6 file, after the import this will be the current state.
// In case the save file gets replaced this needs to be adjusted.
ASSERT_EQ(date.GetMonthTicks(), 0x1e98);
2017-06-21 12:39:10 -04:00
2017-08-27 16:40:56 -04:00
for (int j = 0; j < updatesToTest; j++)
{
2024-03-26 10:08:17 -04:00
gameStateUpdateLogic();
}
ASSERT_EQ(date.GetMonthTicks(), 7862 + updatesToTest);
2017-08-27 16:40:56 -04:00
// Check ride count again
ASSERT_EQ(RideGetCount(), 134);
2017-06-21 12:39:10 -04:00
}
SUCCEED();
}