2020-12-02 23:18:49 +00:00
|
|
|
#include <string>
|
|
|
|
#include <fstream>
|
|
|
|
#include <streambuf>
|
2021-11-14 04:29:48 +00:00
|
|
|
#include <vector>
|
2020-12-02 23:18:49 +00:00
|
|
|
|
2020-12-04 17:17:51 +00:00
|
|
|
#include <cstring>
|
2020-12-02 23:18:49 +00:00
|
|
|
|
2021-01-27 21:26:19 +00:00
|
|
|
#include <libreborn/libreborn.h>
|
2021-09-12 03:18:12 +00:00
|
|
|
#include <symbols/minecraft.h>
|
2020-12-02 23:18:49 +00:00
|
|
|
|
|
|
|
#include "../feature/feature.h"
|
|
|
|
#include "misc.h"
|
|
|
|
|
|
|
|
// Read Asset File
|
2020-12-04 17:17:51 +00:00
|
|
|
static AppPlatform_readAssetFile_return_value AppPlatform_readAssetFile_injection(__attribute__((unused)) unsigned char *app_platform, std::string const& path) {
|
|
|
|
// Read File
|
2020-12-02 23:18:49 +00:00
|
|
|
std::string full_path("./data/");
|
|
|
|
full_path.append(path);
|
|
|
|
std::ifstream stream(full_path);
|
|
|
|
std::string str((std::istreambuf_iterator<char>(stream)), std::istreambuf_iterator<char>());
|
2020-12-04 17:17:51 +00:00
|
|
|
// Return String
|
|
|
|
AppPlatform_readAssetFile_return_value ret;
|
|
|
|
ret.length = str.length();
|
|
|
|
ret.data = strdup(str.c_str());
|
|
|
|
return ret;
|
2020-12-02 23:18:49 +00:00
|
|
|
}
|
|
|
|
|
2021-11-14 04:29:48 +00:00
|
|
|
// Run Functions On Input Tick
|
|
|
|
static std::vector<misc_update_function_t> &get_misc_update_functions() {
|
|
|
|
static std::vector<misc_update_function_t> functions;
|
|
|
|
return functions;
|
|
|
|
}
|
|
|
|
void misc_run_on_update(misc_update_function_t function) {
|
|
|
|
get_misc_update_functions().push_back(function);
|
|
|
|
}
|
2021-02-16 19:35:03 +00:00
|
|
|
|
2021-11-14 04:29:48 +00:00
|
|
|
// Handle Custom Update Behavior
|
|
|
|
static void Minecraft_update_injection(unsigned char *minecraft) {
|
|
|
|
// Call Original Method
|
|
|
|
(*Minecraft_update)(minecraft);
|
2021-02-16 19:35:03 +00:00
|
|
|
|
2021-11-14 04:29:48 +00:00
|
|
|
// Run Input Tick Functions
|
|
|
|
for (misc_update_function_t function : get_misc_update_functions()) {
|
|
|
|
(*function)(minecraft);
|
2021-02-16 19:35:03 +00:00
|
|
|
}
|
2021-02-16 17:26:40 +00:00
|
|
|
}
|
|
|
|
|
2021-06-22 01:50:26 +00:00
|
|
|
// Init
|
2021-06-17 21:32:24 +00:00
|
|
|
void _init_misc_cpp() {
|
2020-12-02 23:18:49 +00:00
|
|
|
// Implement AppPlatform::readAssetFile So Translations Work
|
2021-07-04 23:02:45 +00:00
|
|
|
if (feature_has("Load Language Files", 1)) {
|
|
|
|
overwrite((void *) AppPlatform_readAssetFile, (void *) AppPlatform_readAssetFile_injection);
|
|
|
|
}
|
2020-12-02 23:18:49 +00:00
|
|
|
|
2021-11-14 04:29:48 +00:00
|
|
|
// Handle Custom Update Behavior
|
|
|
|
overwrite_calls((void *) Minecraft_update, (void *) Minecraft_update_injection);
|
2021-06-22 01:50:26 +00:00
|
|
|
}
|