2021-01-27 21:26:19 +00:00
|
|
|
#include <libreborn/libreborn.h>
|
2020-12-02 23:18:49 +00:00
|
|
|
|
|
|
|
#include "game_mode.h"
|
|
|
|
#include "../init/init.h"
|
|
|
|
|
2021-02-03 22:00:02 +00:00
|
|
|
#include <libreborn/minecraft.h>
|
2020-12-02 23:18:49 +00:00
|
|
|
|
|
|
|
static int is_survival = -1;
|
|
|
|
|
|
|
|
// Patch Game Mode
|
|
|
|
static void set_is_survival(int new_is_survival) {
|
|
|
|
if (is_survival != new_is_survival) {
|
|
|
|
INFO("Setting Game Mode: %s", new_is_survival ? "Survival" : "Creative");
|
|
|
|
|
|
|
|
// Correct Inventpry UI
|
|
|
|
unsigned char inventory_patch[4] = {new_is_survival ? 0x00 : 0x01, 0x30, 0xa0, 0xe3};
|
|
|
|
patch((void *) 0x16efc, inventory_patch);
|
|
|
|
|
|
|
|
// Use Correct Size For GameMode Object
|
2021-02-12 04:16:36 +00:00
|
|
|
unsigned char size_patch[4] = {new_is_survival ? SURVIVAL_MODE_SIZE : CREATOR_MODE_SIZE, 0x00, 0xa0, 0xe3};
|
2020-12-02 23:18:49 +00:00
|
|
|
patch((void *) 0x16ee4, size_patch);
|
|
|
|
|
2020-12-08 21:32:12 +00:00
|
|
|
// Replace Default CreatorMode Constructor With CreatorMode Or SurvivalMode Constructor
|
|
|
|
overwrite_call((void *) 0x16ef4, new_is_survival ? SurvivalMode : CreatorMode);
|
2020-12-02 23:18:49 +00:00
|
|
|
|
|
|
|
is_survival = new_is_survival;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Handle Gamemode Switching
|
|
|
|
static void Minecraft_setIsCreativeMode_injection(unsigned char *this, int32_t new_game_mode) {
|
|
|
|
set_is_survival(!new_game_mode);
|
|
|
|
|
|
|
|
// Call Original Method
|
|
|
|
(*Minecraft_setIsCreativeMode)(this, new_game_mode);
|
|
|
|
}
|
|
|
|
|
|
|
|
void init_game_mode() {
|
|
|
|
// Dynamic Game Mode Switching
|
|
|
|
set_is_survival(1);
|
|
|
|
overwrite_calls((void *) Minecraft_setIsCreativeMode, Minecraft_setIsCreativeMode_injection);
|
|
|
|
|
|
|
|
// Replace CreatorLevel With ServerLevel (This Fixes Beds And Mob Spawning)
|
|
|
|
unsigned char level_patch[4] = {0x68, 0x7e, 0x01, 0xeb};
|
|
|
|
patch((void *) 0x16f84, level_patch);
|
|
|
|
|
|
|
|
// Allocate Correct Size For ServerLevel
|
|
|
|
unsigned char level_size_patch[4] = {0x94, 0x0b, 0x00, 0x00};
|
|
|
|
patch((void *) 0x17004, level_size_patch);
|
|
|
|
|
|
|
|
// Allow Connecting To Survival Servers
|
|
|
|
unsigned char server_patch[4] = {0x0f, 0x00, 0x00, 0xea};
|
|
|
|
patch((void *) 0x6dc70, server_patch);
|
|
|
|
|
|
|
|
// Init C++
|
|
|
|
init_game_mode_cpp();
|
|
|
|
}
|