minecraft-pi-reborn/mods/src/benchmark/benchmark.cpp

182 lines
5.6 KiB
C++
Raw Normal View History

2021-11-14 04:29:48 +00:00
#include <ctime>
#include <libreborn/libreborn.h>
#include <symbols/minecraft.h>
#include <media-layer/core.h>
#include <SDL/SDL.h>
2022-06-25 21:30:08 +00:00
#include <mods/init/init.h>
#include <mods/compat/compat.h>
#include <mods/misc/misc.h>
2021-11-14 04:29:48 +00:00
// Constants
#define NANOSECONDS_IN_SECOND 1000000000ll
// Config
#define BENCHMARK_GAME_MODE 0 // Survival Mode
2021-11-14 04:29:48 +00:00
#define BENCHMARK_SEED 2048 // Random Number
#define BENCHMARK_WORLD_NAME "_Benchmark" // Random Number
#define BENCHMARK_LENGTH (180ll * NANOSECONDS_IN_SECOND) // 3 Minutes
#define BENCHMARK_ROTATION_INTERVAL ((long long int) (0.02f * NANOSECONDS_IN_SECOND))
#define BENCHMARK_ROTATION_AMOUNT 10
// Create/Start World
2024-01-06 11:30:23 +00:00
static void start_world(Minecraft *minecraft) {
2021-11-14 04:29:48 +00:00
// Log
2022-04-15 01:12:42 +00:00
INFO("Loading Benchmark");
2021-11-14 04:29:48 +00:00
// Specify Level Settings
LevelSettings settings;
settings.game_type = BENCHMARK_GAME_MODE;
settings.seed = BENCHMARK_SEED;
// Delete World If It Already Exists
2024-01-07 08:23:43 +00:00
LevelStorageSource *level_source = Minecraft_getLevelSource(minecraft);
2024-01-06 11:30:23 +00:00
std::string name = BENCHMARK_WORLD_NAME;
level_source->vtable->deleteLevel(level_source, &name);
2021-11-14 04:29:48 +00:00
// Select Level
2024-01-06 11:30:23 +00:00
minecraft->vtable->selectLevel(minecraft, &name, &name, &settings);
2021-11-14 04:29:48 +00:00
// Open ProgressScreen
2024-01-06 11:30:23 +00:00
ProgressScreen *screen = alloc_ProgressScreen();
2021-11-14 04:29:48 +00:00
ALLOC_CHECK(screen);
2024-01-07 08:23:43 +00:00
screen = ProgressScreen_constructor(screen);
Minecraft_setScreen(minecraft, (Screen *) screen);
2021-11-14 04:29:48 +00:00
}
// Track Frames
#ifndef MCPI_HEADLESS_MODE
2021-11-14 04:29:48 +00:00
static unsigned long long int frames = 0;
HOOK(media_swap_buffers, void, ()) {
ensure_media_swap_buffers();
2024-01-07 08:23:43 +00:00
real_media_swap_buffers();
2021-11-14 04:29:48 +00:00
frames++;
}
#endif
// Track Ticks
static unsigned long long int ticks = 0;
2024-01-06 11:30:23 +00:00
static void Minecraft_tick_injection(__attribute__((unused)) Minecraft *minecraft) {
ticks++;
}
2021-11-14 04:29:48 +00:00
// Get Time
static long long int get_time() {
2024-04-03 07:19:12 +00:00
timespec ts = {};
2021-11-14 04:29:48 +00:00
clock_gettime(CLOCK_MONOTONIC_RAW, &ts);
long long int a = (long long int) ts.tv_nsec;
long long int b = ((long long int) ts.tv_sec) * NANOSECONDS_IN_SECOND;
return a + b;
}
// Store Time When World Loaded
static int world_loaded = 0;
static long long int world_loaded_time;
#ifndef MCPI_HEADLESS_MODE
2021-11-14 04:29:48 +00:00
static unsigned long long int world_loaded_frames;
#endif
static unsigned long long int world_loaded_ticks;
// Last Logged Status Update
static int32_t last_logged_status = -1;
2021-11-14 04:29:48 +00:00
// Runs Every Tick
static bool loaded = false;
static bool exit_requested = false;
2024-01-06 11:30:23 +00:00
static void Minecraft_update_injection(Minecraft *minecraft) {
2021-11-14 04:29:48 +00:00
// Create/Start World
if (!loaded) {
start_world(minecraft);
loaded = true;
}
// Detect World Loaded
2024-01-07 08:23:43 +00:00
if (!world_loaded && Minecraft_isLevelGenerated(minecraft)) {
2021-11-14 04:29:48 +00:00
world_loaded = 1;
world_loaded_time = get_time();
#ifndef MCPI_HEADLESS_MODE
2021-11-14 04:29:48 +00:00
world_loaded_frames = frames;
#endif
world_loaded_ticks = ticks;
2021-11-14 04:29:48 +00:00
}
// Run Benchmark
if (!exit_requested && world_loaded) {
// Get Time
long long int current_time = get_time() - world_loaded_time;
#ifndef MCPI_HEADLESS_MODE
2021-11-14 04:29:48 +00:00
unsigned long long int current_frames = frames - world_loaded_frames;
#endif
unsigned long long int current_ticks = ticks - world_loaded_ticks;
// Log
int32_t status = (((double) current_time) / ((double) BENCHMARK_LENGTH)) * 100;
if (status > 100) {
status = 100;
}
if (is_progress_difference_significant(status, last_logged_status)) {
INFO("Benchmark Status: %i%%", status);
last_logged_status = status;
}
2021-11-14 04:29:48 +00:00
// Rotate Player
static long long int rotate_point = BENCHMARK_ROTATION_INTERVAL;
if (current_time >= rotate_point) {
SDL_Event event;
event.type = SDL_MOUSEMOTION;
event.motion.x = 0;
event.motion.y = 0;
event.motion.xrel = BENCHMARK_ROTATION_AMOUNT;
event.motion.yrel = 0;
SDL_PushEvent(&event);
// Reset Rotation Timer
rotate_point += BENCHMARK_ROTATION_INTERVAL;
}
// Check If Benchmark Is Over
if (current_time >= BENCHMARK_LENGTH) {
// Request Exit
compat_request_exit();
// Disable Special Behavior After Requesting Exit
exit_requested = true;
// Calculate FPS & TPS
INFO("Benchmark Completed");
INFO(" Total Time: %lld Nanoseconds", current_time);
#ifndef MCPI_HEADLESS_MODE
2021-11-14 04:29:48 +00:00
static double frames_per_nanosecond = ((double) current_frames) / ((double) current_time);
static double frames_per_second = frames_per_nanosecond * NANOSECONDS_IN_SECOND;
INFO(" FPS: %f (%llu Total Frames)", frames_per_second, current_frames);
#endif
static double ticks_per_nanosecond = ((double) current_ticks) / ((double) current_time);
static double ticks_per_second = ticks_per_nanosecond * NANOSECONDS_IN_SECOND;
INFO(" TPS: %f (%llu Total Ticks)", ticks_per_second, current_ticks);
2021-11-14 04:29:48 +00:00
}
}
}
// Init Benchmark
2024-01-24 04:00:22 +00:00
void init_benchmark(int argc, char *argv[]) {
// --benchmark: Activate Benchmark
bool active = false;
for (int i = 1; i < argc; i++) {
// Check Argument
if (strcmp(argv[i], "--benchmark") == 0) {
// Enabled
active = true;
break;
}
}
2021-11-14 04:29:48 +00:00
if (active) {
misc_run_on_update(Minecraft_update_injection);
// Track Ticks
misc_run_on_tick(Minecraft_tick_injection);
2021-11-14 04:29:48 +00:00
// Disable Interaction
media_set_interactable(0);
// Disable V-Sync
media_disable_vsync();
}
}