minecraft-pi-reborn/mods/src/extra.c

290 lines
9.8 KiB
C
Raw Normal View History

2020-10-01 15:08:46 +00:00
#include <stdint.h>
#include <stdio.h>
#include <libcore/libcore.h>
2020-10-04 00:30:15 +00:00
#include "extra.h"
2020-10-10 23:02:13 +00:00
#include "server/server.h"
2020-10-04 00:30:15 +00:00
2020-10-14 17:40:32 +00:00
static int mob_spawning = 0;
2020-11-07 22:19:45 +00:00
static uint32_t LevelData_getSpawnMobs_injection(__attribute__((unused)) unsigned char *level_data) {
2020-10-14 17:40:32 +00:00
return mob_spawning;
}
static int is_right_click = 0;
void extra_set_is_right_click(int val) {
is_right_click = val;
2020-10-01 15:08:46 +00:00
}
typedef void (*releaseUsingItem_t)(unsigned char *game_mode, unsigned char *player);
2020-10-01 15:08:46 +00:00
2020-11-07 22:19:45 +00:00
typedef void (*Minecraft_tickInput_t)(unsigned char *minecraft);
2020-11-02 18:56:20 +00:00
static Minecraft_tickInput_t Minecraft_tickInput = (Minecraft_tickInput_t) 0x15ffc;
2020-10-01 15:08:46 +00:00
2020-11-02 18:56:20 +00:00
typedef int (*Player_isUsingItem_t)(unsigned char *player);
static Player_isUsingItem_t Player_isUsingItem = (Player_isUsingItem_t) 0x8f15c;
2020-10-01 15:08:46 +00:00
2020-11-10 15:08:42 +00:00
// Enable Bow & Arrow Fix
static int fix_bow = 0;
2020-11-07 22:19:45 +00:00
static void Minecraft_tickInput_injection(unsigned char *minecraft) {
2020-10-01 15:08:46 +00:00
// Call Original Method
2020-11-07 22:19:45 +00:00
(*Minecraft_tickInput)(minecraft);
2020-10-01 15:08:46 +00:00
2020-11-10 15:08:42 +00:00
if (fix_bow && !is_right_click) {
// GameMode Is Offset From minecraft By 0x160
// Player Is Offset From minecraft By 0x18c
2020-11-02 18:56:20 +00:00
unsigned char *game_mode = *(unsigned char **) (minecraft + 0x160);
unsigned char *player = *(unsigned char **) (minecraft + 0x18c);
if (player != NULL && game_mode != NULL && (*Player_isUsingItem)(player)) {
unsigned char *game_mode_vtable = *(unsigned char **) game_mode;
releaseUsingItem_t releaseUsingItem = *(releaseUsingItem_t *) (game_mode_vtable + 0x5c);
(*releaseUsingItem)(game_mode, player);
2020-10-01 15:08:46 +00:00
}
}
2020-10-04 00:30:15 +00:00
2020-11-10 15:08:42 +00:00
// Clear Unused Sign Input
2020-10-14 17:40:32 +00:00
extra_clear_input();
2020-10-01 15:08:46 +00:00
}
typedef void (*Gui_tickItemDrop_t)(unsigned char *);
static Gui_tickItemDrop_t Gui_tickItemDrop = (Gui_tickItemDrop_t) 0x27778;
2020-10-01 16:56:28 +00:00
#include <SDL/SDL_events.h>
static void Gui_tickItemDrop_injection(unsigned char *this) {
2020-10-01 16:56:28 +00:00
if (SDL_ShowCursor(SDL_QUERY) == SDL_ENABLE) {
2020-11-07 22:19:45 +00:00
// Call Original Method
(*Gui_tickItemDrop)(this);
2020-10-01 16:56:28 +00:00
}
}
2020-11-07 22:19:45 +00:00
typedef void (*Gui_handleClick_t)(unsigned char *this, int32_t param_2, int32_t param_3, int32_t param_4);
static Gui_handleClick_t Gui_handleClick = (Gui_handleClick_t) 0x2599c;
2020-10-01 16:56:28 +00:00
2020-11-07 22:19:45 +00:00
static void Gui_handleClick_injection(unsigned char *this, int32_t param_2, int32_t param_3, int32_t param_4) {
2020-10-01 16:56:28 +00:00
if (SDL_ShowCursor(SDL_QUERY) == SDL_ENABLE) {
2020-11-07 22:19:45 +00:00
// Call Original Method
(*Gui_handleClick)(this, param_2, param_3, param_4);
2020-10-01 16:56:28 +00:00
}
}
2020-11-02 18:56:20 +00:00
static int is_survival = -1;
2020-10-14 17:40:32 +00:00
static void *Creator = (void *) 0x1a044;
static void *SurvivalMode = (void *) 0x1b7d8;
static void *CreativeMode = (void *) 0x1b258;
2020-10-02 21:06:03 +00:00
// Patch Game Mode
static void set_is_survival(int new_is_survival) {
if (is_survival != new_is_survival) {
2020-11-02 20:27:41 +00:00
INFO("Setting Game Mode: %s", new_is_survival ? "Survival" : "Creative");
2020-10-02 21:06:03 +00:00
// Correct Inventpry UI
unsigned char inventory_patch[4] = {new_is_survival ? 0x00 : 0x01, 0x30, 0xa0, 0xe3};
patch((void *) 0x16efc, inventory_patch);
2020-10-14 17:40:32 +00:00
// Use Correct Size For GameMode Object
unsigned char size_patch[4] = {new_is_survival ? 0x24 : 0x18, 0x00, 0xa0, 0xe3};
patch((void *) 0x16ee4, size_patch);
2020-10-02 21:06:03 +00:00
2020-10-14 17:40:32 +00:00
// Replace Creator Constructor With CreatorMode Or SurvivalMode Constructor
overwrite(Creator, new_is_survival ? SurvivalMode : CreativeMode);
2020-10-02 21:06:03 +00:00
is_survival = new_is_survival;
2020-10-01 15:08:46 +00:00
}
2020-10-02 21:06:03 +00:00
}
2020-10-01 15:08:46 +00:00
typedef void (*Minecraft_setIsCreativeMode_t)(unsigned char *, int32_t);
static Minecraft_setIsCreativeMode_t Minecraft_setIsCreativeMode = (Minecraft_setIsCreativeMode_t) 0x16ec4;
2020-10-01 15:08:46 +00:00
static void Minecraft_setIsCreativeMode_injection(unsigned char *this, int32_t new_game_mode) {
2020-10-02 21:06:03 +00:00
set_is_survival(!new_game_mode);
2020-10-01 15:08:46 +00:00
2020-11-07 22:19:45 +00:00
// Call Original Method
(*Minecraft_setIsCreativeMode)(this, new_game_mode);
2020-10-02 21:06:03 +00:00
}
2020-10-01 15:08:46 +00:00
static char *get_username() {
char *username = getenv("MCPI_USERNAME");
if (username == NULL) {
username = "StevePi";
}
return username;
}
typedef void (*Minecraft_init_t)(unsigned char *this);
static Minecraft_init_t Minecraft_init = (Minecraft_init_t) 0x1700c;
2020-10-03 03:25:27 +00:00
2020-11-12 23:28:37 +00:00
static int fancy_graphics;
static int peaceful_mode;
static void Minecraft_init_injection(unsigned char *this) {
2020-11-07 22:19:45 +00:00
// Call Original Method
(*Minecraft_init)(this);
2020-10-03 03:25:27 +00:00
2020-11-12 23:28:37 +00:00
unsigned char *options = this + 0x3c;
2020-10-14 17:40:32 +00:00
// Enable Fancy Graphics
2020-11-12 23:28:37 +00:00
*(options + 0x17) = fancy_graphics;
// Enable Crosshair In Touch GUI
*(options + 0x105) = 1;
// Peaceful Mode
*(int32_t *) (options + 0xe8) = peaceful_mode ? 0 : 2;
2020-10-03 03:25:27 +00:00
}
2020-10-10 23:02:13 +00:00
// Is Dedicated Server
static int is_server = 0;
// Check For Feature
2020-10-14 17:40:32 +00:00
int extra_has_feature(const char *name) {
2020-10-10 23:02:13 +00:00
if (is_server) {
// Enable All Features In Server
return 1;
} else {
char *env = getenv("MCPI_FEATURES");
char *features = strdup(env != NULL ? env : "");
char *tok = strtok(features, "|");
int ret = 0;
while (tok != NULL) {
if (strcmp(tok, name) == 0) {
ret = 1;
break;
}
tok = strtok(NULL, "|");
}
free(features);
2020-11-02 20:27:41 +00:00
INFO("Feature: %s: %s", name, ret ? "Enabled" : "Disabled");
2020-10-10 23:02:13 +00:00
return ret;
}
}
2020-10-16 19:39:04 +00:00
int extra_get_mode() {
char *mode = getenv("MCPI_MODE");
2020-10-30 17:27:50 +00:00
if (mode == NULL) {
ERR("%s", "MCPI Mode Not Specified");
} else if (strcmp("virgl", mode) == 0) {
2020-10-16 19:39:04 +00:00
return 0;
} else if (strcmp("native", mode) == 0) {
return 1;
} else if (strcmp("server", mode) == 0) {
return 2;
} else {
2020-10-26 19:58:28 +00:00
ERR("Inavlid MCPI_MODE: %s", mode);
2020-10-16 19:39:04 +00:00
}
2020-10-10 23:02:13 +00:00
}
2020-11-12 23:28:37 +00:00
static int32_t Minecraft_isTouchscreen(__attribute__((unused)) unsigned char *minecraft) {
return 1;
}
2020-10-02 21:06:03 +00:00
__attribute__((constructor)) static void init() {
2020-10-16 19:39:04 +00:00
is_server = extra_get_mode() == 2;
2020-10-10 23:02:13 +00:00
if (is_server) {
server_init();
}
2020-11-12 23:28:37 +00:00
int touch_gui = !is_server && extra_has_feature("Touch GUI");
if (touch_gui) {
2020-11-03 03:18:18 +00:00
// Main UI
2020-11-12 23:28:37 +00:00
overwrite((void *) 0x1639c, Minecraft_isTouchscreen);
// Force Correct Toolbar Size
unsigned char toolbar_patch[4] = {0x01, 0x00, 0x50, 0xe3};
patch((void *) 0x257b0, toolbar_patch);
2020-10-01 15:08:46 +00:00
}
2020-11-03 03:18:18 +00:00
// Dynamic Game Mode Switching
2020-10-29 17:00:52 +00:00
set_is_survival(1);
overwrite_calls((void *) Minecraft_setIsCreativeMode, Minecraft_setIsCreativeMode_injection);
2020-10-29 17:00:52 +00:00
2020-10-10 23:02:13 +00:00
// Get Default Game Mode
2020-11-02 20:20:49 +00:00
if (!is_server) {
int default_game_mode = !extra_has_feature("Survival Mode");
2020-10-10 23:02:13 +00:00
2020-11-02 20:20:49 +00:00
// Set Default Game Mode
unsigned char default_game_mode_patch[4] = {default_game_mode ? 0x01 : 0x00, 0x30, 0xa0, 0xe3};
patch((void *) 0x3d9b8, default_game_mode_patch);
patch((void *) 0x38a78, default_game_mode_patch);
}
2020-10-02 21:06:03 +00:00
2020-11-02 20:20:49 +00:00
// Disable Item Dropping Using The Cursor When Cursor Is Hidden
overwrite_calls((void *) Gui_tickItemDrop, Gui_tickItemDrop_injection);
2020-10-01 16:56:28 +00:00
// Disable Opening Inventory Using The Cursor When Cursor Is Hidden
overwrite_calls((void *) Gui_handleClick, Gui_handleClick_injection);
2020-10-01 16:56:28 +00:00
2020-11-10 15:08:42 +00:00
// Enable Bow & Arrow Fix
fix_bow = extra_has_feature("Fix Bow & Arrow");
// Fix Bow & Arrow + Clear Unused Sign Input
overwrite_calls((void *) Minecraft_tickInput, Minecraft_tickInput_injection);
2020-10-01 15:08:46 +00:00
2020-10-14 17:40:32 +00:00
if (extra_has_feature("Fix Attacking")) {
2020-10-01 15:08:46 +00:00
// Allow Attacking Mobs
unsigned char attacking_patch[4] = {0x00, 0xf0, 0x20, 0xe3};
patch((void *) 0x162d4, attacking_patch);
// Fix Instamining When Using This Patch
2020-10-04 02:42:20 +00:00
unsigned char instamine_patch[4] = {0x61, 0x00, 0x00, 0xea};
patch((void *) 0x15b0c, instamine_patch);
// Fix Excessive Hand Swinging When Using This Patch
unsigned char excessive_swing_patch[4] = {0x06, 0x00, 0x00, 0xea};
patch((void *) 0x1593c, excessive_swing_patch);
2020-10-01 15:08:46 +00:00
}
2020-10-10 23:02:13 +00:00
if (is_server) {
mob_spawning = server_get_mob_spawning();
} else {
2020-10-14 17:40:32 +00:00
mob_spawning = extra_has_feature("Mob Spawning");
2020-10-01 15:08:46 +00:00
}
2020-10-14 17:40:32 +00:00
// Set Mob Spawning
overwrite((void *) 0xbabec, LevelData_getSpawnMobs_injection);
// Replace CreatorLevel With ServerLevel (This Fixes Beds And Mob Spawning)
2020-11-07 22:19:45 +00:00
unsigned char level_patch[4] = {0x68, 0x7e, 0x01, 0xeb};
patch((void *) 0x16f84, level_patch);
// Allocate Correct Size For ServerLevel
2020-11-07 22:19:45 +00:00
unsigned char level_size_patch[4] = {0x94, 0x0b, 0x00, 0x00};
patch((void *) 0x17004, level_size_patch);
2020-10-04 21:52:42 +00:00
2020-11-12 23:28:37 +00:00
// Enable Fancy Graphics
fancy_graphics = extra_has_feature("Fancy Graphics");
// Peaceful Mode
peaceful_mode = extra_has_feature("Peaceful Mode");
// Set Options
overwrite_calls((void *) Minecraft_init, Minecraft_init_injection);
2020-10-02 17:54:10 +00:00
// Allow Connecting To Non-Pi Servers
2020-11-07 22:19:45 +00:00
unsigned char server_patch[4] = {0x0f, 0x00, 0x00, 0xea};
patch((void *) 0x6dc70, server_patch);
// Change Username
2020-10-10 23:02:13 +00:00
const char *username;
if (is_server) {
// MOTD is Username
username = server_get_motd();
} else {
username = get_username();
2020-11-02 20:27:41 +00:00
INFO("Setting Username: %s", username);
2020-10-10 23:02:13 +00:00
}
2020-10-26 19:58:28 +00:00
char **default_username = (char **) 0x18fd4;
if (strcmp(*default_username, "StevePi") != 0) {
ERR("%s", "Default Username Is Invalid");
}
patch_address((void *) default_username, (void *) username);
2020-10-03 00:34:39 +00:00
2020-10-14 17:40:32 +00:00
if (extra_has_feature("Disable Autojump By Default")) {
2020-10-03 00:34:39 +00:00
// Disable Autojump By Default
unsigned char autojump_patch[4] = {0x00, 0x30, 0xa0, 0xe3};
patch((void *) 0x44b90, autojump_patch);
}
2020-10-04 20:45:00 +00:00
2020-11-12 23:28:37 +00:00
// Show Block Outlines
int block_outlines = extra_has_feature("Show Block Outlines");
2020-11-20 19:05:08 +00:00
unsigned char outline_patch[4] = {block_outlines ? !touch_gui : touch_gui, 0x00, 0x50, 0xe3};
patch((void *) 0x4a210, outline_patch);
if (extra_has_feature("Remove Invalid Item Background")) {
// Remove Invalid Item Background (A Red Background That Appears For Items That Are Not Obtainable Without Modding/Inventory Editing)
unsigned char invalid_item_background_patch[4] = {0x00, 0xf0, 0x20, 0xe3};
patch((void *) 0x63c98, invalid_item_background_patch);
}
2020-10-01 15:08:46 +00:00
}