minecraft-pi-reborn/mods/src/input/toggle.c

111 lines
3.3 KiB
C
Raw Normal View History

2021-07-04 23:02:45 +00:00
#include <libreborn/libreborn.h>
2021-09-12 03:18:12 +00:00
#include <symbols/minecraft.h>
2021-07-04 23:02:45 +00:00
2022-06-25 21:30:08 +00:00
#include "input-internal.h"
#include <mods/input/input.h>
#include <mods/feature/feature.h>
2021-07-04 23:02:45 +00:00
// Enable Toggles
static int enable_toggles = 0;
// Store Function Input
static int hide_gui_toggle = 0;
void input_hide_gui() {
hide_gui_toggle++;
}
static int third_person_toggle = 0;
void input_third_person() {
third_person_toggle++;
}
// Handle Toggle Options
2024-01-06 11:30:23 +00:00
static void _handle_toggle_options(Minecraft *minecraft) {
2021-07-04 23:02:45 +00:00
if (enable_toggles) {
// Handle Functions
2024-01-06 11:30:23 +00:00
Options *options = &minecraft->options;
2021-07-04 23:02:45 +00:00
if (hide_gui_toggle % 2 != 0) {
// Toggle Hide GUI
2024-01-06 11:30:23 +00:00
options->hide_gui = options->hide_gui ^ 1;
2021-07-04 23:02:45 +00:00
}
hide_gui_toggle = 0;
if (third_person_toggle % 2 != 0) {
// Toggle Third Person
2024-01-06 11:30:23 +00:00
options->third_person = (options->third_person + 1) % 3;
2021-07-04 23:02:45 +00:00
}
third_person_toggle = 0;
2022-05-17 22:31:25 +00:00
// Fix Broken Value From Third-Person OptionsButton Toggle
// (Because Front-Facing Code Repurposes A Boolean As A Ternary)
2024-01-06 11:30:23 +00:00
if (options->third_person == 3) {
options->third_person = 0;
2022-05-17 22:31:25 +00:00
}
}
}
// Font-Facing View
2024-01-06 11:30:23 +00:00
static void invert_rotation(Entity *entity) {
2022-09-22 03:06:58 +00:00
if (entity != NULL) {
2024-01-06 11:30:23 +00:00
entity->yaw = 180.f + entity->yaw;
entity->old_yaw = 180.f + entity->old_yaw;
entity->pitch = -entity->pitch;
entity->old_pitch = -entity->old_pitch;
2022-09-22 03:06:58 +00:00
}
}
2024-01-06 11:30:23 +00:00
static void revert_rotation(Entity *entity) {
2022-09-22 03:06:58 +00:00
if (entity != NULL) {
2024-01-06 11:30:23 +00:00
entity->yaw = -180.f + entity->yaw;
entity->old_yaw = -180.f + entity->old_yaw;
entity->pitch = -entity->pitch;
entity->old_pitch = -entity->old_pitch;
2022-09-22 03:06:58 +00:00
}
}
static int is_front_facing = 0;
2024-01-06 11:30:23 +00:00
static LocalPlayer *stored_player = NULL;
static void GameRenderer_setupCamera_injection(GameRenderer *game_renderer, float param_1, int param_2) {
2022-05-17 22:31:25 +00:00
// Get Objects
2024-01-06 11:30:23 +00:00
Minecraft *minecraft = game_renderer->minecraft;
stored_player = minecraft->player;
2022-05-17 22:31:25 +00:00
// Check If In Third-Person
2024-01-06 11:30:23 +00:00
Options *options = &minecraft->options;
is_front_facing = (options->third_person == 2);
2022-05-17 22:31:25 +00:00
// Invert Rotation
2022-09-22 03:06:58 +00:00
if (is_front_facing) {
2024-01-06 11:30:23 +00:00
invert_rotation((Entity *) stored_player);
2022-05-17 22:31:25 +00:00
}
// Call Original Method
2024-01-07 08:23:43 +00:00
GameRenderer_setupCamera(game_renderer, param_1, param_2);
2022-05-17 22:31:25 +00:00
// Revert
2022-09-22 03:06:58 +00:00
if (is_front_facing) {
2024-01-06 11:30:23 +00:00
revert_rotation((Entity *) stored_player);
2022-09-22 03:06:58 +00:00
}
}
2024-01-06 11:30:23 +00:00
static void ParticleEngine_render_injection(ParticleEngine *particle_engine, Entity *entity, float param_2) {
2022-09-22 03:06:58 +00:00
// Invert Rotation
2024-01-06 11:30:23 +00:00
if (is_front_facing && (Entity *) stored_player == entity) {
invert_rotation((Entity *) stored_player);
2022-09-22 03:06:58 +00:00
}
// Call Original Method
2024-01-07 08:23:43 +00:00
ParticleEngine_render(particle_engine, entity, param_2);
2022-09-22 03:06:58 +00:00
// Revert
2024-01-06 11:30:23 +00:00
if (is_front_facing && (Entity *) stored_player == entity) {
revert_rotation((Entity *) stored_player);
2021-07-04 23:02:45 +00:00
}
}
// Init
void _init_toggle() {
2022-04-10 00:01:16 +00:00
enable_toggles = feature_has("Bind Common Toggleable Options To Function Keys", server_disabled);
2021-10-04 23:42:55 +00:00
input_run_on_tick(_handle_toggle_options);
2022-05-17 22:31:25 +00:00
// Font-Facing View
if (enable_toggles) {
overwrite_calls((void *) GameRenderer_setupCamera, (void *) GameRenderer_setupCamera_injection);
2022-09-22 03:06:58 +00:00
overwrite_calls((void *) ParticleEngine_render, (void *) ParticleEngine_render_injection);
2022-05-17 22:31:25 +00:00
}
2021-07-04 23:02:45 +00:00
}