Add support for benchmarking park rendering

This commit is contained in:
Michał Janiszewski 2017-06-18 23:17:37 +02:00
parent 9c3a16b6e0
commit 990a153b82
5 changed files with 134 additions and 0 deletions

View File

@ -0,0 +1,38 @@
#pragma region Copyright (c) 2014-2017 OpenRCT2 Developers
/*****************************************************************************
* OpenRCT2, an open source clone of Roller Coaster Tycoon 2.
*
* OpenRCT2 is the work of many authors, a full list can be found in contributors.md
* For more information, visit https://github.com/OpenRCT2/OpenRCT2
*
* OpenRCT2 is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* A full copy of the GNU General Public License can be found in licence.txt
*****************************************************************************/
#pragma endregion
#include "../interface/Screenshot.h"
#include "CommandLine.hpp"
static exitcode_t HandleBenchGfx(CommandLineArgEnumerator *argEnumerator);
const CommandLineCommand CommandLine::BenchGfxCommands[]
{
// Main commands
DefineCommand("", "<file> [iterations count]", nullptr, HandleBenchGfx),
CommandTableEnd
};
static exitcode_t HandleBenchGfx(CommandLineArgEnumerator *argEnumerator)
{
const char * * argv = (const char * *)argEnumerator->GetArguments() + argEnumerator->GetIndex();
sint32 argc = argEnumerator->GetCount() - argEnumerator->GetIndex();
sint32 result = cmdline_for_gfxbench(argv, argc);
if (result < 0) {
return EXITCODE_FAIL;
}
return EXITCODE_OK;
}

View File

@ -103,6 +103,7 @@ namespace CommandLine
extern const CommandLineCommand RootCommands[];
extern const CommandLineCommand ScreenshotCommands[];
extern const CommandLineCommand SpriteCommands[];
extern const CommandLineCommand BenchGfxCommands[];
extern const CommandLineExample RootExamples[];

View File

@ -138,6 +138,7 @@ const CommandLineCommand CommandLine::RootCommands[]
// Sub-commands
DefineSubCommand("screenshot", CommandLine::ScreenshotCommands),
DefineSubCommand("sprite", CommandLine::SpriteCommands ),
DefineSubCommand("benchgfx", CommandLine::BenchGfxCommands ),
CommandTableEnd
};

View File

@ -14,9 +14,11 @@
*****************************************************************************/
#pragma endregion
#include <chrono>
#include "../audio/audio.h"
#include "../config/Config.h"
#include "../Context.h"
#include "../core/Console.hpp"
#include "../Imaging.h"
#include "../OpenRCT2.h"
#include "Screenshot.h"
@ -245,6 +247,97 @@ void screenshot_giant()
window_error_open(STR_SCREENSHOT_SAVED_AS, STR_NONE);
}
sint32 cmdline_for_gfxbench(const char **argv, sint32 argc)
{
if (argc != 1 && argc != 2) {
printf("Usage: openrct2 benchgfx <file> [<iteration_count>]\n");
return -1;
}
sint32 iteration_count = 40;
if (argc == 2)
{
iteration_count = atoi(argv[1]);
}
sint32 resolutionWidth, resolutionHeight, customX = 0, customY = 0;
const char *inputPath = argv[0];
gOpenRCT2Headless = true;
auto context = CreateContext();
if (context->Initialise())
{
drawing_engine_init();
rct2_open_file(inputPath);
gIntroState = INTRO_STATE_NONE;
gScreenFlags = SCREEN_FLAGS_PLAYING;
sint32 mapSize = gMapSize;
resolutionWidth = (mapSize * 32 * 2);
resolutionHeight = (mapSize * 32 * 1);
resolutionWidth += 8;
resolutionHeight += 128;
rct_viewport viewport;
viewport.x = 0;
viewport.y = 0;
viewport.width = resolutionWidth;
viewport.height = resolutionHeight;
viewport.view_width = viewport.width;
viewport.view_height = viewport.height;
viewport.var_11 = 0;
viewport.flags = 0;
customX = (mapSize / 2) * 32 + 16;
customY = (mapSize / 2) * 32 + 16;
sint32 x = 0, y = 0;
sint32 z = map_element_height(customX, customY) & 0xFFFF;
x = customY - customX;
y = ((customX + customY) / 2) - z;
viewport.view_x = x - ((viewport.view_width) / 2);
viewport.view_y = y - ((viewport.view_height) / 2);
viewport.zoom = 0;
gCurrentRotation = 0;
// Ensure sprites appear regardless of rotation
reset_all_sprite_quadrant_placements();
rct_drawpixelinfo dpi;
dpi.x = 0;
dpi.y = 0;
dpi.width = resolutionWidth;
dpi.height = resolutionHeight;
dpi.pitch = 0;
dpi.bits = (uint8 *)malloc(dpi.width * dpi.height);
auto startTime = std::chrono::high_resolution_clock::now();
for (sint32 i = 0; i < iteration_count; i++)
{
// Render at various zoom levels
dpi.zoom_level = i & 3;
viewport_render(&dpi, &viewport, 0, 0, viewport.width, viewport.height);
}
auto endTime = std::chrono::high_resolution_clock::now();
std::chrono::duration<float> duration = endTime - startTime;
char engine_name[128];
rct_string_id engine_id = DrawingEngineStringIds[drawing_engine_get_type()];
format_string(engine_name, sizeof(engine_name), engine_id, nullptr);
Console::WriteLine("Rendering %d times with drawing engine %s took %.2f seconds.",
iteration_count, engine_name,
duration.count());
free(dpi.bits);
drawing_engine_dispose();
}
delete context;
return 1;
}
sint32 cmdline_for_screenshot(const char **argv, sint32 argc)
{
bool giantScreenshot = argc == 5 && _stricmp(argv[2], "giant") == 0;

View File

@ -31,6 +31,7 @@ extern "C"
void screenshot_giant();
sint32 cmdline_for_screenshot(const char **argv, sint32 argc);
sint32 cmdline_for_gfxbench(const char **argv, sint32 argc);
#ifdef __cplusplus
}
#endif