Store Server List In Launcher Cache

This commit is contained in:
TheBrokenRail 2024-12-14 03:08:19 -05:00
parent c6048ec4fb
commit 587ba38ffe
64 changed files with 312 additions and 339 deletions

View File

@ -1,4 +1,4 @@
#include <libreborn/env.h> #include <libreborn/env/env.h>
#include "bootstrap.h" #include "bootstrap.h"
#include "../util/util.h" #include "../util/util.h"

View File

@ -2,9 +2,9 @@
#include <vector> #include <vector>
#include <libreborn/log.h> #include <libreborn/log.h>
#include <libreborn/env.h> #include <libreborn/env/env.h>
#include <libreborn/config.h> #include <libreborn/config.h>
#include <libreborn/exec.h> #include <libreborn/util/exec.h>
#include "../util/util.h" #include "../util/util.h"
#include "bootstrap.h" #include "bootstrap.h"

View File

@ -1,5 +1,5 @@
#include <libreborn/log.h> #include <libreborn/log.h>
#include <libreborn/exec.h> #include <libreborn/util/exec.h>
#include <libreborn/config.h> #include <libreborn/config.h>
#include "bootstrap.h" #include "bootstrap.h"

View File

@ -5,7 +5,7 @@
#include <cstring> #include <cstring>
#include <libreborn/log.h> #include <libreborn/log.h>
#include <libreborn/util.h> #include <libreborn/util/util.h>
#include "bootstrap.h" #include "bootstrap.h"
#include "../util/util.h" #include "../util/util.h"

View File

@ -4,7 +4,7 @@
#include <LIEF/ELF.hpp> #include <LIEF/ELF.hpp>
#include <libreborn/util.h> #include <libreborn/util/util.h>
#include <libreborn/config.h> #include <libreborn/config.h>
#include "bootstrap.h" #include "bootstrap.h"

View File

@ -6,7 +6,8 @@
#include <unistd.h> #include <unistd.h>
#include <libreborn/log.h> #include <libreborn/log.h>
#include <libreborn/util.h> #include <libreborn/util/util.h>
#include <libreborn/util/io.h>
#include "cache.h" #include "cache.h"
#include "configuration.h" #include "configuration.h"
@ -17,10 +18,23 @@ static std::string get_cache_path() {
} }
// Load // Load
template <typename T>
static T simple_read(std::ifstream &stream) {
T out;
stream.read((char *) &out, sizeof(T));
return out;
}
template <>
std::string simple_read<std::string>(std::ifstream &stream) {
std::string out;
if (!std::getline(stream, out, '\0')) {
out = "";
}
return out;
}
static void read_cache(std::ifstream &stream, State &ret) { static void read_cache(std::ifstream &stream, State &ret) {
// Cache Version // Cache Version
unsigned char cache_version; const unsigned char cache_version = simple_read<unsigned char>(stream);
stream.read((char *) &cache_version, 1);
if (stream.eof()) { if (stream.eof()) {
// Unable To Read Version // Unable To Read Version
WARN("Unable To Read Launcher Cache Version"); WARN("Unable To Read Launcher Cache Version");
@ -28,10 +42,10 @@ static void read_cache(std::ifstream &stream, State &ret) {
} }
// Support Older Versions // Support Older Versions
bool load_gui_scale = true; bool load_new_fields = true;
if (cache_version == 0) { if (cache_version == 0) {
// Pre-v3.0.0 Cache // Pre-v3.0.0 Cache
load_gui_scale = false; load_new_fields = false;
} else if (cache_version != (unsigned char) CACHE_VERSION) { } else if (cache_version != (unsigned char) CACHE_VERSION) {
// Invalid Version // Invalid Version
WARN("Invalid Launcher Cache Version (Expected: %i, Actual: %i)", CACHE_VERSION, (int) cache_version); WARN("Invalid Launcher Cache Version (Expected: %i, Actual: %i)", CACHE_VERSION, (int) cache_version);
@ -40,21 +54,18 @@ static void read_cache(std::ifstream &stream, State &ret) {
// Load Username And Render Distance // Load Username And Render Distance
State state; State state;
std::getline(stream, state.username, '\0'); state.username = simple_read<std::string>(stream);
std::getline(stream, state.render_distance, '\0'); state.render_distance = simple_read<std::string>(stream);
if (load_gui_scale) { if (load_new_fields) {
stream.read((char *) &state.gui_scale, sizeof(float)); state.gui_scale = simple_read<float>(stream);
state.servers.load(simple_read<std::string>(stream));
} }
// Load Feature Flags // Load Feature Flags
std::unordered_map<std::string, bool> flags; std::unordered_map<std::string, bool> flags;
std::string flag; while (!stream.eof()) {
while (!stream.eof() && std::getline(stream, flag, '\0')) { std::string flag = simple_read<std::string>(stream);
if (!flag.empty()) { flags[flag] = simple_read<bool>(stream);
bool is_enabled = false;
stream.read((char *) &is_enabled, sizeof(bool));
flags[flag] = is_enabled;
}
stream.peek(); stream.peek();
} }
state.flags.from_cache(flags); state.flags.from_cache(flags);
@ -101,24 +112,30 @@ State load_cache() {
} }
// Save // Save
static void write_env_to_stream(std::ostream &stream, const std::string &value) { template <typename T>
stream.write(value.c_str(), int(value.size()) + 1); static void simple_write(std::ostream &stream, const T &val) {
stream.write((const char *) &val, sizeof(T));
}
template <>
void simple_write<std::string>(std::ostream &stream, const std::string &val) {
stream.write(val.c_str(), int(val.size()) + 1);
} }
void write_cache(std::ostream &stream, const State &state) { void write_cache(std::ostream &stream, const State &state) {
// Save Cache Version // Save Cache Version
constexpr unsigned char cache_version = CACHE_VERSION; constexpr unsigned char cache_version = CACHE_VERSION;
stream.write((const char *) &cache_version, 1); simple_write(stream, cache_version);
// Save Username And Render Distance // Save Username And Render Distance
write_env_to_stream(stream, state.username); simple_write(stream, state.username);
write_env_to_stream(stream, state.render_distance); simple_write(stream, state.render_distance);
stream.write((const char *) &state.gui_scale, sizeof(float)); simple_write(stream, state.gui_scale);
simple_write(stream, state.servers.to_string());
// Save Feature Flags // Save Feature Flags
const std::unordered_map<std::string, bool> flags_cache = state.flags.to_cache(); const std::unordered_map<std::string, bool> flags_cache = state.flags.to_cache();
for (const std::pair<const std::string, bool> &it : flags_cache) { for (const std::pair<const std::string, bool> &it : flags_cache) {
stream.write(it.first.c_str(), int(it.first.size()) + 1); simple_write(stream, it.first);
stream.write((const char *) &it.second, sizeof(bool)); simple_write(stream, it.second);
} }
} }
void save_cache(const State &state) { void save_cache(const State &state) {

View File

@ -1,6 +1,6 @@
#include <sstream> #include <sstream>
#include <libreborn/env.h> #include <libreborn/env/env.h>
#include "configuration.h" #include "configuration.h"
#include "cache.h" #include "cache.h"
@ -28,6 +28,7 @@ void State::update(const bool save) {
update_from_env(MCPI_USERNAME_ENV, username, save); update_from_env(MCPI_USERNAME_ENV, username, save);
update_from_env(MCPI_RENDER_DISTANCE_ENV, render_distance, save); update_from_env(MCPI_RENDER_DISTANCE_ENV, render_distance, save);
update_from_env(MCPI_GUI_SCALE_ENV, gui_scale, save); update_from_env(MCPI_GUI_SCALE_ENV, gui_scale, save);
update_from_env(MCPI_SERVER_LIST_ENV, servers, save);
} }
bool State::operator==(const State &other) const { bool State::operator==(const State &other) const {
std::ostringstream one; std::ostringstream one;

View File

@ -5,8 +5,8 @@
#include "../options/parser.h" #include "../options/parser.h"
#include "../ui/frame.h" #include "../ui/frame.h"
#include <libreborn/flags.h> #include <libreborn/env/flags.h>
#include <libreborn/servers.h> #include <libreborn/env/servers.h>
// Default Configuration // Default Configuration
#define DEFAULT_USERNAME "StevePi" #define DEFAULT_USERNAME "StevePi"
@ -22,6 +22,7 @@ struct State {
// Properties // Properties
std::string username; std::string username;
std::string render_distance; std::string render_distance;
ServerList servers;
float gui_scale; float gui_scale;
Flags flags; Flags flags;
}; };
@ -32,24 +33,20 @@ struct ConfigurationUI final : Frame {
int render() override; int render() override;
private: private:
// Bottom Row // Bottom Row
int get_render_distance_index() const; [[nodiscard]] int get_render_distance_index() const;
int draw_bottom(bool hide_reset_revert) const; [[nodiscard]] int draw_bottom() const;
// General // General
void draw_main() const; void draw_main() const;
// Advanced // Advanced
void draw_advanced() const; void draw_advanced() const;
static void draw_category(FlagNode &category); static void draw_category(FlagNode &category);
// Server List // Server List
bool are_servers_unsaved() const; void draw_servers() const;
void draw_servers(); void draw_server_list() const;
void draw_server_list();
// State // State
const State original_state; const State original_state;
State &state; State &state;
bool &save_settings; bool &save_settings;
// Server List
ServerList last_saved_servers;
ServerList servers;
}; };
// Handle Non-Launch Commands // Handle Non-Launch Commands

View File

@ -1,8 +1,7 @@
#include <vector> #include <vector>
#include <limits> #include <limits>
#include <cmath>
#include <libreborn/util.h> #include <libreborn/util/util.h>
#include "configuration.h" #include "configuration.h"
@ -16,13 +15,6 @@ static constexpr std::array render_distances = {
"Tiny" "Tiny"
}; };
// Tooltips/Text
static const char *revert_text = "Revert";
static const char *revert_tooltip_text = "Last Saved";
static std::string make_tooltip(const std::string &text, const std::string &type) {
return "Use " + text + ' ' + type;
}
// Construct // Construct
static constexpr int size = 400; static constexpr int size = 400;
ConfigurationUI::ConfigurationUI(State &state_, bool &save_settings_): ConfigurationUI::ConfigurationUI(State &state_, bool &save_settings_):
@ -33,7 +25,6 @@ ConfigurationUI::ConfigurationUI(State &state_, bool &save_settings_):
// Render // Render
int ConfigurationUI::render() { int ConfigurationUI::render() {
bool on_servers_tab = false;
if (ImGui::BeginChild("Main", ImVec2(0, -ImGui::GetFrameHeightWithSpacing() /* Leave Room For Bottom Row */), ImGuiChildFlags_None, ImGuiWindowFlags_NoScrollbar | ImGuiWindowFlags_NoScrollWithMouse)) { if (ImGui::BeginChild("Main", ImVec2(0, -ImGui::GetFrameHeightWithSpacing() /* Leave Room For Bottom Row */), ImGuiChildFlags_None, ImGuiWindowFlags_NoScrollbar | ImGuiWindowFlags_NoScrollWithMouse)) {
// Tabs // Tabs
if (ImGui::BeginTabBar("TabBar")) { if (ImGui::BeginTabBar("TabBar")) {
@ -48,63 +39,48 @@ int ConfigurationUI::render() {
ImGui::EndTabItem(); ImGui::EndTabItem();
} }
// Servers Tab // Servers Tab
if (ImGui::BeginTabItem("Servers", nullptr, are_servers_unsaved() ? ImGuiTabItemFlags_UnsavedDocument : ImGuiTabItemFlags_None)) { if (ImGui::BeginTabItem("Servers")) {
draw_servers(); draw_servers();
ImGui::EndTabItem(); ImGui::EndTabItem();
on_servers_tab = true;
} }
ImGui::EndTabBar(); ImGui::EndTabBar();
} }
} }
ImGui::EndChild(); ImGui::EndChild();
// Bottom Row // Bottom Row
return draw_bottom(on_servers_tab); return draw_bottom();
} }
// Bottom Row // Bottom Row
int ConfigurationUI::draw_bottom(const bool hide_reset_revert) const { int ConfigurationUI::draw_bottom() const {
// Reset Settings // Reset Settings
if (!hide_reset_revert) { const State default_state;
const State default_state; std::vector<std::tuple<std::string, std::string, const State *>> reset_options = {
constexpr const char *tooltip_type = "Settings"; {"Revert", "Last Saved", &original_state},
std::vector<std::tuple<std::string, std::string, const State *>> reset_options = { {"Reset", "Default", &default_state},
{revert_text, make_tooltip(revert_tooltip_text, tooltip_type), &original_state}, };
{"Reset", make_tooltip("Default", tooltip_type), &default_state}, for (const std::tuple<std::string, std::string, const State *> &option : reset_options) {
}; const State &new_state = *std::get<2>(option);
for (const std::tuple<std::string, std::string, const State *> &option : reset_options) { ImGui::BeginDisabled(state == new_state);
const State &new_state = *std::get<2>(option); if (ImGui::Button(std::get<0>(option).c_str())) {
ImGui::BeginDisabled(state == new_state); state = new_state;
if (ImGui::Button(std::get<0>(option).c_str())) {
state = new_state;
}
ImGui::SetItemTooltip("%s", std::get<1>(option).c_str());
ImGui::EndDisabled();
ImGui::SameLine();
} }
ImGui::SetItemTooltip("Use %s Settings", std::get<1>(option).c_str());
ImGui::EndDisabled();
ImGui::SameLine();
} }
// Right-Align Buttons // Right-Align Buttons
int ret = 0; int ret = 0;
bool unsaved_servers = are_servers_unsaved(); draw_right_aligned_buttons({quit_text, "Launch"}, [&ret](const int id, const bool was_clicked) {
draw_right_aligned_buttons({quit_text, "Launch"}, [&ret, unsaved_servers](const int id, const bool was_clicked) {
if (id == 0) { if (id == 0) {
// Quit // Quit
if (was_clicked) { if (was_clicked) {
ret = -1; ret = -1;
} }
ImGui::SetItemTooltip("Changes Will Not Be Saved!"); ImGui::SetItemTooltip("Changes Will Not Be Saved!");
// Disable Launch if Server List Is Unsaved } else if (was_clicked) {
if (unsaved_servers) {
ImGui::BeginDisabled();
}
} else if (id == 1) {
// Launch // Launch
if (unsaved_servers) { ret = 1;
ImGui::SetItemTooltip("Server List Is Unsaved");
ImGui::EndDisabled();
}
if (was_clicked) {
ret = 1;
}
} }
}); });
// Return // Return
@ -188,42 +164,23 @@ void ConfigurationUI::draw_category(FlagNode &category) {
} }
// Servers // Servers
bool ConfigurationUI::are_servers_unsaved() const { void ConfigurationUI::draw_servers() const {
return servers.to_string() != last_saved_servers.to_string(); // Add
}
void ConfigurationUI::draw_servers() {
// Add/Clear
bool scroll_to_bottom = false; bool scroll_to_bottom = false;
if (ImGui::Button("Add")) { if (ImGui::Button("Add")) {
servers.entries.emplace_back("", DEFAULT_MULTIPLAYER_PORT); state.servers.entries.emplace_back("", DEFAULT_MULTIPLAYER_PORT);
scroll_to_bottom = true; scroll_to_bottom = true;
} }
ImGui::SameLine(); ImGui::SameLine();
ImGui::BeginDisabled(servers.entries.empty()); // Clear
if (ImGui::Button("Clear")) { bool should_clear = false;
servers.entries.clear(); ImGui::BeginDisabled(state.servers.entries.empty());
} draw_right_aligned_buttons({"Clear"}, [&should_clear](__attribute__((unused)) const int id, const bool was_clicked) {
ImGui::EndDisabled(); should_clear = was_clicked;
ImGui::SameLine();
// Revert/Save
int clicked_button = -1;
ImGui::BeginDisabled(!are_servers_unsaved());
draw_right_aligned_buttons({revert_text, "Save"}, [&clicked_button](const int id, const bool was_clicked) {
if (id == 0) {
ImGui::SetItemTooltip("%s", make_tooltip(revert_tooltip_text, "Server List").c_str());
}
if (was_clicked) {
clicked_button = id;
}
}); });
ImGui::EndDisabled(); ImGui::EndDisabled();
if (clicked_button == 1) { if (should_clear) {
// Save state.servers.entries.clear();
servers.save();
last_saved_servers = servers;
} else if (clicked_button == 0) {
// Revert To Last Saved Server List
servers = last_saved_servers;
} }
// List // List
if (ImGui::BeginChild("ServerList", ImVec2(0, 0), ImGuiChildFlags_Borders)) { if (ImGui::BeginChild("ServerList", ImVec2(0, 0), ImGuiChildFlags_Borders)) {
@ -234,9 +191,25 @@ void ConfigurationUI::draw_servers() {
} }
ImGui::EndChild(); ImGui::EndChild();
} }
void ConfigurationUI::draw_server_list() { static int server_list_address_filter(ImGuiInputTextCallbackData *data) {
for (std::vector<ServerList::Entry>::size_type i = 0; i < servers.entries.size(); ++i) { // Lowercase
ServerList::Entry &entry = servers.entries[i]; constexpr std::pair lower_alpha = {'a', 'z'};
constexpr std::pair upper_alpha = {'A', 'Z'};
ImWchar &x = data->EventChar;
if (x >= upper_alpha.first && x <= upper_alpha.second) {
x += lower_alpha.first - upper_alpha.first;
}
// Check Characters
return (x >= lower_alpha.first && x <= lower_alpha.second) || x == '.' ? 0 : 1;
}
static int server_list_port_filter(ImGuiInputTextCallbackData *data) {
// Only Allow Integers
const ImWchar &x = data->EventChar;
return x >= '0' && x <= '9' ? 0 : 1;
}
void ConfigurationUI::draw_server_list() const {
for (std::vector<ServerList::Entry>::size_type i = 0; i < state.servers.entries.size(); ++i) {
ServerList::Entry &entry = state.servers.entries[i];
// Calculate Item Widths // Calculate Item Widths
const ImGuiStyle &style = ImGui::GetStyle(); const ImGuiStyle &style = ImGui::GetStyle();
@ -254,7 +227,7 @@ void ConfigurationUI::draw_server_list() {
// Address // Address
ImGui::PushItemWidth(ImGui::GetContentRegionAvail().x - width_needed); ImGui::PushItemWidth(ImGui::GetContentRegionAvail().x - width_needed);
ImGui::InputTextWithHint((base_label + address_hint).c_str(), address_hint, &entry.first, ImGuiInputTextFlags_CharsNoBlank); ImGui::InputTextWithHint((base_label + address_hint).c_str(), address_hint, &entry.first, ImGuiInputTextFlags_CallbackCharFilter, server_list_address_filter);
ImGui::PopItemWidth(); ImGui::PopItemWidth();
// Port // Port
@ -262,7 +235,7 @@ void ConfigurationUI::draw_server_list() {
std::string port_str = port > 0 ? std::to_string(port) : ""; std::string port_str = port > 0 ? std::to_string(port) : "";
ImGui::SameLine(); ImGui::SameLine();
ImGui::PushItemWidth(port_width); ImGui::PushItemWidth(port_width);
if (ImGui::InputTextWithHint((base_label + port_hint).c_str(), port_hint, &port_str, ImGuiInputTextFlags_CharsDecimal | ImGuiInputTextFlags_NoHorizontalScroll)) { if (ImGui::InputTextWithHint((base_label + port_hint).c_str(), port_hint, &port_str, ImGuiInputTextFlags_CallbackCharFilter | ImGuiInputTextFlags_NoHorizontalScroll, server_list_port_filter)) {
port = ServerList::parse_port(port_str); port = ServerList::parse_port(port_str);
} }
ImGui::PopItemWidth(); ImGui::PopItemWidth();
@ -270,8 +243,8 @@ void ConfigurationUI::draw_server_list() {
// Delete // Delete
ImGui::SameLine(); ImGui::SameLine();
if (ImGui::Button((delete_text + base_label).c_str())) { if (ImGui::Button((delete_text + base_label).c_str())) {
servers.entries.erase(servers.entries.begin() + int(i)); state.servers.entries.erase(state.servers.entries.begin() + int(i));
i--; i--;
} }
} }
} }

View File

@ -1,8 +1,8 @@
#include <fstream> #include <fstream>
#include <libreborn/util.h> #include <libreborn/util/util.h>
#include <libreborn/config.h> #include <libreborn/config.h>
#include <libreborn/exec.h> #include <libreborn/util/exec.h>
#include "logger.h" #include "logger.h"
#include "../ui/frame.h" #include "../ui/frame.h"

View File

@ -8,9 +8,11 @@
#include <string> #include <string>
#include <fcntl.h> #include <fcntl.h>
#include <libreborn/exec.h> #include <libreborn/util/exec.h>
#include <libreborn/log.h> #include <libreborn/log.h>
#include <libreborn/util.h> #include <libreborn/util/util.h>
#include <libreborn/util/string.h>
#include <libreborn/util/io.h>
#include <libreborn/config.h> #include <libreborn/config.h>
#include "logger.h" #include "logger.h"
@ -37,7 +39,7 @@ static void setup_log_file() {
const std::string logs = get_logs_folder(); const std::string logs = get_logs_folder();
// Get Timestamp // Get Timestamp
std::string time = format_time("%Y-%m-%d"); const std::string time = format_time("%Y-%m-%d");
// Get Log Filename // Get Log Filename
std::string file; std::string file;

View File

@ -1,7 +1,7 @@
#include <cstdlib> #include <cstdlib>
#include <libreborn/env.h> #include <libreborn/env/env.h>
#include <libreborn/util.h> #include <libreborn/util/util.h>
#include <libreborn/config.h> #include <libreborn/config.h>
#include "bootstrap/bootstrap.h" #include "bootstrap/bootstrap.h"

View File

@ -1,7 +1,7 @@
#include <argp.h> #include <argp.h>
#include <libreborn/config.h> #include <libreborn/config.h>
#include <libreborn/env.h> #include <libreborn/env/env.h>
#include <trampoline/types.h> #include <trampoline/types.h>
#include "parser.h" #include "parser.h"
@ -20,7 +20,7 @@ static argp_option options_data[] = {
#undef OPTION #undef OPTION
{nullptr, 0, nullptr, 0, "Environmental Variables:", 0}, {nullptr, 0, nullptr, 0, "Environmental Variables:", 0},
#define ENV(name, doc) {#name, env_key--, nullptr, OPTION_DOC | OPTION_NO_USAGE | (is_env_var_internal(name##_ENV) ? OPTION_HIDDEN : 0), doc, 0}, #define ENV(name, doc) {#name, env_key--, nullptr, OPTION_DOC | OPTION_NO_USAGE | (is_env_var_internal(name##_ENV) ? OPTION_HIDDEN : 0), doc, 0},
#include <libreborn/env-list.h> #include <libreborn/env/list.h>
#ifdef MCPI_BUILD_RUNTIME #ifdef MCPI_BUILD_RUNTIME
#include <trampoline/env-list.h> #include <trampoline/env-list.h>
#endif #endif
@ -34,7 +34,7 @@ static argp_option options_data[] = {
case key: \ case key: \
options->name = true; \ options->name = true; \
break; break;
static error_t parse_opt(int key, __attribute__((unused)) char *arg, argp_state *state) { static error_t parse_opt(const int key, __attribute__((unused)) char *arg, argp_state *state) {
options_t *options = (options_t *) state->input; options_t *options = (options_t *) state->input;
switch (key) { switch (key) {
#include "option-list.h" #include "option-list.h"
@ -45,7 +45,7 @@ static error_t parse_opt(int key, __attribute__((unused)) char *arg, argp_state
} }
#undef OPTION #undef OPTION
static argp argp = {options_data, parse_opt, nullptr, doc, nullptr, nullptr, nullptr}; static argp argp = {options_data, parse_opt, nullptr, doc, nullptr, nullptr, nullptr};
options_t parse_options(int argc, char *argv[]) { options_t parse_options(const int argc, char *argv[]) {
options_t options = {}; options_t options = {};
argp_parse(&argp, argc, argv, 0, nullptr, &options); argp_parse(&argp, argc, argv, 0, nullptr, &options);
return options; return options;

View File

@ -6,8 +6,8 @@
#include <imgui_impl_opengl2.h> #include <imgui_impl_opengl2.h>
#include <libreborn/log.h> #include <libreborn/log.h>
#include <libreborn/glfw.h> #include <libreborn/util/glfw.h>
#include <libreborn/util.h> #include <libreborn/util/util.h>
// Init/Cleanup // Init/Cleanup
Frame::Frame(const char *title, const int width, const int height) { Frame::Frame(const char *title, const int width, const int height) {

View File

@ -3,7 +3,7 @@
#include "util.h" #include "util.h"
#include <libreborn/log.h> #include <libreborn/log.h>
#include <libreborn/env.h> #include <libreborn/env/env.h>
#include <libreborn/config.h> #include <libreborn/config.h>
// $PATH // $PATH

View File

@ -1,5 +1,6 @@
#include <libreborn/log.h> #include <libreborn/log.h>
#include <libreborn/util.h> #include <libreborn/util/util.h>
#include <libreborn/util/io.h>
#include <libreborn/config.h> #include <libreborn/config.h>
#include "../bootstrap/bootstrap.h" #include "../bootstrap/bootstrap.h"

View File

@ -1,5 +1,5 @@
#include <libreborn/log.h> #include <libreborn/log.h>
#include <libreborn/exec.h> #include <libreborn/util/exec.h>
#include "util.h" #include "util.h"

View File

@ -11,14 +11,14 @@ add_library(reborn-util SHARED
src/util/util.cpp src/util/util.cpp
src/util/log.cpp src/util/log.cpp
src/util/cp437.cpp src/util/cp437.cpp
src/util/env.cpp src/util/env/env.cpp
src/util/config.cpp src/util/config.cpp
src/util/flags/node.cpp src/util/env/flags/node.cpp
src/util/flags/flags.cpp src/util/env/flags/flags.cpp
src/util/flags/available-feature-flags # Show In IDE src/util/env/flags/available-feature-flags # Show In IDE
src/util/servers.cpp src/util/env/servers.cpp
) )
embed_resource(reborn-util src/util/flags/available-feature-flags) embed_resource(reborn-util src/util/env/flags/available-feature-flags)
target_link_libraries(reborn-util PRIVATE utf8cpp) target_link_libraries(reborn-util PRIVATE utf8cpp)
if(TARGET glfw) if(TARGET glfw)
target_sources(reborn-util PRIVATE src/util/glfw.cpp) target_sources(reborn-util PRIVATE src/util/glfw.cpp)

View File

@ -1,22 +0,0 @@
#pragma once
#include <string>
#define ENV(name, ...) extern const char *const name##_ENV;
#include "env-list.h"
#undef ENV
bool is_env_var_internal(const char *env);
void clear_internal_env_vars();
// Set Environmental Variable
void set_and_print_env(const char *name, const char *value);
// Convert Variable To Value And Vice-Versa
struct Flags;
std::string obj_to_env_value(const std::string &obj);
std::string obj_to_env_value(const float &obj);
std::string obj_to_env_value(const Flags &obj);
void env_value_to_obj(std::string &out, const char *value);
void env_value_to_obj(float &out, const char *value);
void env_value_to_obj(Flags &out, const char *value);

26
libreborn/include/libreborn/env/env.h vendored Normal file
View File

@ -0,0 +1,26 @@
#pragma once
#include <string>
#define ENV(name, ...) constexpr const char *name##_ENV = #name;
#include "list.h"
#undef ENV
bool is_env_var_internal(const char *env);
void clear_internal_env_vars();
// Set Environmental Variable
void setenv_safe(const char *name, const char *value);
void set_and_print_env(const char *name, const char *value);
// Convert Variable To Value And Vice-Versa
struct Flags;
struct ServerList;
#define overload(type) \
std::string obj_to_env_value(const type &obj); \
void env_value_to_obj(type &out, const char *value)
overload(std::string);
overload(float);
overload(Flags);
overload(ServerList);
#undef overload

View File

@ -2,6 +2,7 @@
ENV(MCPI_FEATURE_FLAGS, "Client-Mode Feature Flags") ENV(MCPI_FEATURE_FLAGS, "Client-Mode Feature Flags")
ENV(MCPI_USERNAME, "Player Username") ENV(MCPI_USERNAME, "Player Username")
ENV(MCPI_RENDER_DISTANCE, "Render Distance") ENV(MCPI_RENDER_DISTANCE, "Render Distance")
ENV(MCPI_SERVER_LIST, "Server List")
// Game Assets // Game Assets
ENV(_MCPI_REBORN_ASSETS_PATH, "") ENV(_MCPI_REBORN_ASSETS_PATH, "")
ENV(_MCPI_VANILLA_ASSETS_PATH, "") ENV(_MCPI_VANILLA_ASSETS_PATH, "")

View File

@ -11,10 +11,9 @@ struct ServerList {
typedef std::pair<std::string, port_t> Entry; typedef std::pair<std::string, port_t> Entry;
// Load // Load
static port_t parse_port(const std::string &s); static port_t parse_port(const std::string &s);
ServerList(); void load(const std::string &str);
// Save // Save
std::string to_string() const; [[nodiscard]] std::string to_string() const;
void save() const;
// Entries // Entries
std::vector<Entry> entries{}; std::vector<Entry> entries;
}; };

View File

@ -9,7 +9,7 @@
// fork() With I/O // fork() With I/O
struct Process { struct Process {
static constexpr int fd_count = 3; static constexpr int fd_count = 3;
Process(pid_t pid_, std::array<int, fd_count> fds_); Process(pid_t pid_, const std::array<int, fd_count> &fds_);
[[nodiscard]] int close() const; [[nodiscard]] int close() const;
const pid_t pid; const pid_t pid;
const std::array<int, fd_count> fds; const std::array<int, fd_count> fds;

View File

@ -0,0 +1,17 @@
#pragma once
#include <cstddef>
// Safe Version Of pipe()
struct Pipe {
Pipe();
const int read;
const int write;
};
// Lock File
int lock_file(const char *file);
void unlock_file(const char *file, int fd);
// Safe write()
void safe_write(int fd, const void *buf, size_t size);

View File

@ -7,4 +7,8 @@ void sanitize_string(std::string &str, int max_length, bool allow_newlines);
// CP437 // CP437
std::string to_cp437(const std::string &input); std::string to_cp437(const std::string &input);
std::string from_cp437(const std::string &input); std::string from_cp437(const std::string &input);
// Format Time
std::string format_time(const char *fmt);
std::string format_time(const char *fmt, int time);

View File

@ -3,7 +3,7 @@
#include <dlfcn.h> #include <dlfcn.h>
#include <string> #include <string>
#include "log.h" #include "../log.h"
// Align Number // Align Number
int align_up(int x, int alignment); int align_up(int x, int alignment);
@ -24,20 +24,9 @@ int align_up(int x, int alignment);
} \ } \
extern "C" __attribute__((__used__)) return_type name args extern "C" __attribute__((__used__)) return_type name args
// Safe Version Of pipe()
struct Pipe {
Pipe();
const int read;
const int write;
};
// Check If Two Percentages Are Different Enough To Be Logged // Check If Two Percentages Are Different Enough To Be Logged
bool is_progress_difference_significant(int32_t new_val, int32_t old_val); bool is_progress_difference_significant(int32_t new_val, int32_t old_val);
// Lock File
int lock_file(const char *file);
void unlock_file(const char *file, int fd);
// Check $DISPLAY // Check $DISPLAY
void reborn_check_display(); void reborn_check_display();
@ -47,9 +36,6 @@ const char *get_home_subdirectory_for_game_data();
// Make Sure Directory Exists // Make Sure Directory Exists
void ensure_directory(const char *path); void ensure_directory(const char *path);
// Safe write()
void safe_write(int fd, const void *buf, size_t size);
// embed_resource() // embed_resource()
#define EMBEDDED_RESOURCE(name) \ #define EMBEDDED_RESOURCE(name) \
extern unsigned char name[]; \ extern unsigned char name[]; \
@ -58,10 +44,6 @@ void safe_write(int fd, const void *buf, size_t size);
// Profile Directory // Profile Directory
std::string home_get(); std::string home_get();
// Format Time
std::string format_time(const char *fmt);
std::string format_time(const char *fmt, int time);
// Default MCPI Port // Default MCPI Port
// This Macro DOES NOT Control MCPI // This Macro DOES NOT Control MCPI
#define DEFAULT_MULTIPLAYER_PORT 19132 #define DEFAULT_MULTIPLAYER_PORT 19132

View File

@ -1,7 +1,7 @@
#include <cstdlib> #include <cstdlib>
#include <libreborn/config.h> #include <libreborn/config.h>
#include <libreborn/env.h> #include <libreborn/env/env.h>
// Access Configuration At Runtime // Access Configuration At Runtime
const char *reborn_get_version() { const char *reborn_get_version() {

View File

@ -2,7 +2,7 @@
#include "utf8.h" #include "utf8.h"
#include <libreborn/string.h> #include <libreborn/util/string.h>
// Conversion Functions // Conversion Functions
static std::u32string to_utf32(const std::string &s) { static std::u32string to_utf32(const std::string &s) {

View File

@ -1,29 +1,24 @@
#include <libreborn/env.h> #include <libreborn/env/env.h>
#include <libreborn/exec.h> #include <libreborn/util/exec.h>
#include <libreborn/log.h> #include <libreborn/log.h>
#include <libreborn/flags.h> #include <libreborn/env/flags.h>
#include <libreborn/env/servers.h>
// Define Constants
#define ENV(name, ...) const char *const name##_ENV = #name;
#include <libreborn/env-list.h>
#undef ENV
// Clear Internal Variables // Clear Internal Variables
bool is_env_var_internal(const char *env) { bool is_env_var_internal(const char *env) {
return env[0] == '_'; return env[0] == '_';
} }
void clear_internal_env_vars() { void clear_internal_env_vars() {
DEBUG("Clearing Internal Environmental Variables...");
#define ENV(name, ...) \ #define ENV(name, ...) \
if (is_env_var_internal(name##_ENV)) { \ if (is_env_var_internal(name##_ENV)) { \
set_and_print_env(name##_ENV, nullptr); \ set_and_print_env(name##_ENV, nullptr); \
} }
#include <libreborn/env-list.h> #include <libreborn/env/list.h>
#undef ENV #undef ENV
} }
// Set Environmental Variable // Set Environmental Variable
static void setenv_safe(const char *name, const char *value) { void setenv_safe(const char *name, const char *value) {
if (value != nullptr) { if (value != nullptr) {
setenv(name, value, 1); setenv(name, value, 1);
} else { } else {
@ -48,6 +43,9 @@ std::string obj_to_env_value(const float &obj) {
std::string obj_to_env_value(const Flags &obj) { std::string obj_to_env_value(const Flags &obj) {
return obj.to_string(); return obj.to_string();
} }
std::string obj_to_env_value(const ServerList &obj) {
return obj.to_string();
}
void env_value_to_obj(std::string &out, const char *value) { void env_value_to_obj(std::string &out, const char *value) {
out = value; out = value;
} }
@ -56,4 +54,7 @@ void env_value_to_obj(float &out, const char *value) {
} }
void env_value_to_obj(Flags &out, const char *value) { void env_value_to_obj(Flags &out, const char *value) {
out.from_string(value); out.from_string(value);
}
void env_value_to_obj(ServerList &out, const char *value) {
out.load(value);
} }

View File

@ -3,8 +3,8 @@
#include <unordered_set> #include <unordered_set>
#include <libreborn/log.h> #include <libreborn/log.h>
#include <libreborn/flags.h> #include <libreborn/env/flags.h>
#include <libreborn/util.h> #include <libreborn/util/util.h>
// All Flags // All Flags
static unsigned int find_indent_level(std::string &str) { static unsigned int find_indent_level(std::string &str) {

View File

@ -1,7 +1,7 @@
#include <algorithm> #include <algorithm>
#include <libreborn/log.h> #include <libreborn/log.h>
#include <libreborn/flags.h> #include <libreborn/env/flags.h>
// Flag // Flag
static int next_id; static int next_id;

View File

@ -2,13 +2,8 @@
#include <sstream> #include <sstream>
#include <limits> #include <limits>
#include <libreborn/servers.h> #include <libreborn/env/servers.h>
#include <libreborn/util.h> #include <libreborn/util/util.h>
// File
static std::string get_server_list_path() {
return home_get() + "/servers.txt";
}
// Seperator // Seperator
#define PORT_SEPERATOR_CHAR ':' #define PORT_SEPERATOR_CHAR ':'
@ -22,27 +17,22 @@ ServerList::port_t ServerList::parse_port(const std::string &s) {
} }
return static_cast<port_t>(port); return static_cast<port_t>(port);
} }
ServerList::ServerList() { void ServerList::load(const std::string &str) {
// Clear
entries.clear();
// Open File // Open File
std::ifstream server_list_file(get_server_list_path()); std::stringstream server_list_file(str);
if (!server_list_file) {
// File Does Not Exist
return;
}
// Iterate Lines // Iterate Lines
std::string line; std::string line;
while (std::getline(server_list_file, line)) { while (std::getline(server_list_file, line)) {
// Check Line // Check Line
if (!line.empty()) { if (!line.empty()) {
// Skip Comments
if (line[0] == '#') {
continue;
}
// Parse // Parse
std::string address; std::string address;
std::string port_str; std::string port_str;
size_t separator_pos = line.find_last_of(PORT_SEPERATOR_CHAR); const size_t separator_pos = line.find_last_of(PORT_SEPERATOR_CHAR);
if (separator_pos == std::string::npos) { if (separator_pos == std::string::npos) {
port_str = std::to_string(DEFAULT_MULTIPLAYER_PORT); port_str = std::to_string(DEFAULT_MULTIPLAYER_PORT);
address = line; address = line;
@ -54,29 +44,13 @@ ServerList::ServerList() {
entries.emplace_back(address, parse_port(port_str)); entries.emplace_back(address, parse_port(port_str));
} }
} }
// Close
server_list_file.close();
} }
// Save // Save
std::string ServerList::to_string() const { std::string ServerList::to_string() const {
std::stringstream out; std::stringstream out;
out << "# External Servers File\n";
for (const Entry &entry : entries) { for (const Entry &entry : entries) {
out << entry.first << PORT_SEPERATOR_CHAR << std::to_string(entry.second) << '\n'; out << entry.first << PORT_SEPERATOR_CHAR << std::to_string(entry.second) << '\n';
} }
return out.str(); return out.str();
} }
void ServerList::save() const {
// Open File
std::ofstream file(get_server_list_path());
if (!file) {
// Failure
WARN("Unable To Save Server List");
}
// Write
file << to_string();
// Close
file.close();
}

View File

@ -6,12 +6,12 @@
#include <sys/poll.h> #include <sys/poll.h>
#include <cstring> #include <cstring>
#include <libreborn/util.h>
#include <libreborn/log.h> #include <libreborn/log.h>
#include <libreborn/exec.h> #include <libreborn/util/exec.h>
#include <libreborn/util/io.h>
// Fork // Fork
Process::Process(const pid_t pid_, const std::array<int, 3> fds_): pid(pid_), fds(fds_) {} Process::Process(const pid_t pid_, const std::array<int, fd_count> &fds_): pid(pid_), fds(fds_) {}
int Process::close() const { int Process::close() const {
for (const int fd : fds) { for (const int fd : fds) {
::close(fd); ::close(fd);

View File

@ -1,8 +1,8 @@
#define GLFW_INCLUDE_NONE #define GLFW_INCLUDE_NONE
#include <GLFW/glfw3.h> #include <GLFW/glfw3.h>
#include <libreborn/glfw.h> #include <libreborn/util/glfw.h>
#include <libreborn/util.h> #include <libreborn/util/util.h>
#include <libreborn/log.h> #include <libreborn/log.h>
#include <libreborn/config.h> #include <libreborn/config.h>

View File

@ -3,43 +3,28 @@
#include <string> #include <string>
#include <libreborn/log.h> #include <libreborn/log.h>
#include <libreborn/env.h> #include <libreborn/env/env.h>
// Debug Tag // Debug Tag
const char *reborn_debug_tag = ""; const char *reborn_debug_tag = "";
// /dev/null FD
static int null_fd = -1;
static void setup_null_fd() {
if (null_fd == -1) {
null_fd = open("/dev/null", O_WRONLY | O_APPEND);
}
}
__attribute__((destructor)) static void close_null_fd() {
close(null_fd);
}
// Log File // Log File
static int log_fd = -1; static constexpr int unset_fd = -1;
static int log_fd = unset_fd;
int reborn_get_log_fd() { int reborn_get_log_fd() {
if (log_fd >= 0) { if (log_fd != unset_fd) {
return log_fd; return log_fd;
} }
// Open Log File // Open Log File
const char *fd_str = getenv(_MCPI_LOG_FD_ENV); const char *fd_str = getenv(_MCPI_LOG_FD_ENV);
if (fd_str) { log_fd = fd_str ? std::stoi(fd_str) : -2;
log_fd = std::stoi(fd_str);
} else {
setup_null_fd();
log_fd = null_fd;
}
// Return // Return
return reborn_get_log_fd(); return reborn_get_log_fd();
} }
void reborn_set_log(const int fd) { void reborn_set_log(const int fd) {
// Set Variable // Set Variable
log_fd = -1; log_fd = unset_fd;
set_and_print_env(_MCPI_LOG_FD_ENV, fd >= 0 ? std::to_string(fd).c_str() : nullptr); setenv_safe(_MCPI_LOG_FD_ENV, fd >= 0 ? std::to_string(fd).c_str() : nullptr);
} }
// Debug Logging // Debug Logging

View File

@ -1,21 +1,42 @@
#include <libreborn/string.h> #include <ctime>
#include <cstring>
#include <libreborn/util/string.h>
#include <libreborn/log.h>
// Sanitize String // Sanitize String
void sanitize_string(std::string &str, const int max_length, const bool allow_newlines) { void sanitize_string(std::string &str, const int max_length, const bool allow_newlines) {
// Store Message Length
size_t length = str.size();
// Truncate Message // Truncate Message
if (max_length >= 0 && length > ((size_t) max_length)) { if (max_length >= 0 && str.size() > ((size_t) max_length)) {
str = str.substr(0, max_length); str = str.substr(0, max_length);
length = max_length;
} }
// Loop Through Message // Loop Through Message
if (!allow_newlines) { if (!allow_newlines) {
for (size_t i = 0; i < length; i++) { for (char &x : str) {
if (str[i] == '\n') { if (x == '\n') {
// Replace Newline // Replace Newline
str[i] = ' '; x = ' ';
} }
} }
} }
}
// Format Time
static std::string _format_time(const char *fmt, const time_t raw_time) {
const tm *time_info = localtime(&raw_time);
if (time_info == nullptr) {
ERR("Unable To Determine Current Time: %s", strerror(errno));
}
char buf[512];
strftime(buf, sizeof(buf), fmt, time_info);
return std::string(buf);
}
std::string format_time(const char *fmt) {
time_t raw_time;
time(&raw_time);
return _format_time(fmt, raw_time);
}
std::string format_time(const char *fmt, const int time) {
// This Will Break In 2038
return _format_time(fmt, time);
} }

View File

@ -2,12 +2,13 @@
#include <sys/file.h> #include <sys/file.h>
#include <sys/stat.h> #include <sys/stat.h>
#include <cstring> #include <cstring>
#include <ctime>
#include <cmath> #include <cmath>
#include <libreborn/util.h> #include <libreborn/util/util.h>
#include <libreborn/util/io.h>
#include <libreborn/config.h> #include <libreborn/config.h>
#include <libreborn/env.h> #include <libreborn/env/env.h>
#include <libreborn/log.h>
// Align Number // Align Number
int align_up(int x, const int alignment) { int align_up(int x, const int alignment) {
@ -102,6 +103,9 @@ void ensure_directory(const char *path) {
// Write To FD // Write To FD
void safe_write(const int fd, const void *buf, const size_t size) { void safe_write(const int fd, const void *buf, const size_t size) {
if (fd < 0) {
return;
}
const ssize_t bytes_written = write(fd, buf, size); const ssize_t bytes_written = write(fd, buf, size);
if (bytes_written < 0) { if (bytes_written < 0) {
ERR("Unable To Write Data: %s", strerror(errno)); ERR("Unable To Write Data: %s", strerror(errno));
@ -115,24 +119,4 @@ std::string home_get() {
IMPOSSIBLE(); IMPOSSIBLE();
} }
return std::string(home) + std::string(get_home_subdirectory_for_game_data()); return std::string(home) + std::string(get_home_subdirectory_for_game_data());
}
// Format Time
static std::string _format_time(const char *fmt, const time_t raw_time) {
const tm *time_info = localtime(&raw_time);
if (time_info == nullptr) {
ERR("Unable To Determine Current Time: %s", strerror(errno));
}
char buf[512];
strftime(buf, sizeof(buf), fmt, time_info);
return std::string(buf);
}
std::string format_time(const char *fmt) {
time_t raw_time;
time(&raw_time);
return _format_time(fmt, raw_time);
}
std::string format_time(const char *fmt, const int time) {
// This Will Break In 2038
return _format_time(fmt, time);
} }

View File

@ -5,8 +5,8 @@
#include <SDL/SDL.h> #include <SDL/SDL.h>
#include <libreborn/log.h> #include <libreborn/log.h>
#include <libreborn/string.h> #include <libreborn/util/string.h>
#include <libreborn/glfw.h> #include <libreborn/util/glfw.h>
#include <libreborn/config.h> #include <libreborn/config.h>
#include <media-layer/core.h> #include <media-layer/core.h>

View File

@ -2,7 +2,7 @@
#include <GLES/gl.h> #include <GLES/gl.h>
#include <libreborn/log.h> #include <libreborn/log.h>
#include <libreborn/util.h> #include <libreborn/util/util.h>
#include "common/common.h" #include "common/common.h"

View File

@ -1,7 +1,7 @@
#include <GLES/gl.h> #include <GLES/gl.h>
#include <libreborn/patch.h> #include <libreborn/patch.h>
#include <libreborn/util.h> #include <libreborn/util/util.h>
#include <symbols/minecraft.h> #include <symbols/minecraft.h>

View File

@ -1,8 +1,8 @@
#include <ctime> #include <ctime>
#include <libreborn/patch.h> #include <libreborn/patch.h>
#include <libreborn/util.h> #include <libreborn/util/util.h>
#include <libreborn/env.h> #include <libreborn/env/env.h>
#include <libreborn/config.h> #include <libreborn/config.h>
#include <symbols/minecraft.h> #include <symbols/minecraft.h>

View File

@ -1,5 +1,5 @@
#include <libreborn/patch.h> #include <libreborn/patch.h>
#include <libreborn/string.h> #include <libreborn/util/string.h>
#include <symbols/minecraft.h> #include <symbols/minecraft.h>

View File

@ -1,7 +1,7 @@
#include <SDL/SDL.h> #include <SDL/SDL.h>
#include <media-layer/core.h> #include <media-layer/core.h>
#include <libreborn/util.h> #include <libreborn/util/util.h>
#include <libreborn/config.h> #include <libreborn/config.h>
#include <symbols/minecraft.h> #include <symbols/minecraft.h>

View File

@ -3,8 +3,8 @@
#include <libreborn/log.h> #include <libreborn/log.h>
#include <libreborn/config.h> #include <libreborn/config.h>
#include <libreborn/env.h> #include <libreborn/env/env.h>
#include <libreborn/flags.h> #include <libreborn/env/flags.h>
#include <mods/feature/feature.h> #include <mods/feature/feature.h>

View File

@ -4,7 +4,7 @@
#include <symbols/minecraft.h> #include <symbols/minecraft.h>
#include <libreborn/patch.h> #include <libreborn/patch.h>
#include <libreborn/util.h> #include <libreborn/util/util.h>
#include <mods/text-input-box/TextInputScreen.h> #include <mods/text-input-box/TextInputScreen.h>
#include <mods/touch/touch.h> #include <mods/touch/touch.h>

View File

@ -1,7 +1,7 @@
#include <vector> #include <vector>
#include <libreborn/patch.h> #include <libreborn/patch.h>
#include <libreborn/util.h> #include <libreborn/util/util.h>
#include <symbols/minecraft.h> #include <symbols/minecraft.h>
#include <GLES/gl.h> #include <GLES/gl.h>

View File

@ -2,7 +2,7 @@
#include <libreborn/patch.h> #include <libreborn/patch.h>
#include <libreborn/config.h> #include <libreborn/config.h>
#include <libreborn/env.h> #include <libreborn/env/env.h>
#include <symbols/minecraft.h> #include <symbols/minecraft.h>

View File

@ -1,6 +1,6 @@
#include <libreborn/patch.h> #include <libreborn/patch.h>
#include <libreborn/env.h> #include <libreborn/env/env.h>
#include <libreborn/util.h> #include <libreborn/util/util.h>
#include <symbols/minecraft.h> #include <symbols/minecraft.h>

View File

@ -1,8 +1,8 @@
#include <string> #include <string>
#include <libreborn/patch.h> #include <libreborn/patch.h>
#include <libreborn/string.h> #include <libreborn/util/string.h>
#include <libreborn/util.h> #include <libreborn/util/util.h>
#include <symbols/minecraft.h> #include <symbols/minecraft.h>

View File

@ -12,10 +12,10 @@
#include <media-layer/core.h> #include <media-layer/core.h>
#include <libreborn/patch.h> #include <libreborn/patch.h>
#include <libreborn/string.h> #include <libreborn/util/string.h>
#include <libreborn/config.h> #include <libreborn/config.h>
#include <libreborn/util.h> #include <libreborn/util/util.h>
#include <libreborn/env.h> #include <libreborn/env/env.h>
#include <symbols/minecraft.h> #include <symbols/minecraft.h>

View File

@ -1,8 +1,8 @@
#include <cmath> #include <cmath>
#include <libreborn/patch.h> #include <libreborn/patch.h>
#include <libreborn/env.h> #include <libreborn/env/env.h>
#include <libreborn/util.h> #include <libreborn/util/util.h>
#include <symbols/minecraft.h> #include <symbols/minecraft.h>

View File

@ -3,7 +3,7 @@
#include <symbols/minecraft.h> #include <symbols/minecraft.h>
#include <libreborn/patch.h> #include <libreborn/patch.h>
#include <libreborn/util.h> #include <libreborn/util/util.h>
#include <media-layer/core.h> #include <media-layer/core.h>

View File

@ -5,7 +5,8 @@
#include <symbols/minecraft.h> #include <symbols/minecraft.h>
#include <libreborn/patch.h> #include <libreborn/patch.h>
#include <libreborn/servers.h> #include <libreborn/env/servers.h>
#include <libreborn/env/env.h>
#include <mods/init/init.h> #include <mods/init/init.h>
#include <mods/feature/feature.h> #include <mods/feature/feature.h>
@ -14,6 +15,14 @@
static void iterate_servers(const std::function<void(const char *address, ServerList::port_t port)> &callback) { static void iterate_servers(const std::function<void(const char *address, ServerList::port_t port)> &callback) {
// Load // Load
static ServerList server_list; static ServerList server_list;
static bool loaded = false;
if (!loaded) {
const char *str = getenv(MCPI_SERVER_LIST_ENV);
if (str != nullptr) {
env_value_to_obj(server_list, str);
}
loaded = true;
}
// Loop // Loop
for (const ServerList::Entry &entry : server_list.entries) { for (const ServerList::Entry &entry : server_list.entries) {
if (!entry.first.empty() && entry.second > 0) { if (!entry.first.empty() && entry.second > 0) {

View File

@ -1,7 +1,7 @@
#include <libreborn/log.h> #include <libreborn/log.h>
#include <libreborn/exec.h> #include <libreborn/util/exec.h>
#include <libreborn/config.h> #include <libreborn/config.h>
#include <libreborn/util.h> #include <libreborn/util/util.h>
#include <symbols/minecraft.h> #include <symbols/minecraft.h>
#include <GLES/gl.h> #include <GLES/gl.h>

View File

@ -6,9 +6,9 @@
#include <libreborn/patch.h> #include <libreborn/patch.h>
#include <libreborn/config.h> #include <libreborn/config.h>
#include <libreborn/env.h> #include <libreborn/env/env.h>
#include <libreborn/string.h> #include <libreborn/util/string.h>
#include <libreborn/util.h> #include <libreborn/util/util.h>
#include <symbols/minecraft.h> #include <symbols/minecraft.h>

View File

@ -4,8 +4,8 @@
#include <unistd.h> #include <unistd.h>
#include <fcntl.h> #include <fcntl.h>
#include <libreborn/util.h> #include <libreborn/util/util.h>
#include <libreborn/env.h> #include <libreborn/env/env.h>
#include <mods/override/override.h> #include <mods/override/override.h>
#include <mods/init/init.h> #include <mods/init/init.h>

View File

@ -6,7 +6,8 @@
#include "stb_image_write.h" #include "stb_image_write.h"
#include <libreborn/log.h> #include <libreborn/log.h>
#include <libreborn/util.h> #include <libreborn/util/util.h>
#include <libreborn/util/string.h>
#include <libreborn/config.h> #include <libreborn/config.h>
#include <GLES/gl.h> #include <GLES/gl.h>
@ -43,7 +44,7 @@ void screenshot_take(Gui *gui) {
} }
// Get Timestamp // Get Timestamp
std::string time = format_time("%Y-%m-%d_%H.%M.%S"); const std::string time = format_time("%Y-%m-%d_%H.%M.%S");
// Prevent Overwriting Screenshots // Prevent Overwriting Screenshots
int num = 0; int num = 0;

View File

@ -12,9 +12,9 @@
#include <SDL/SDL.h> #include <SDL/SDL.h>
#include <libreborn/patch.h> #include <libreborn/patch.h>
#include <libreborn/env.h> #include <libreborn/env/env.h>
#include <libreborn/string.h> #include <libreborn/util/string.h>
#include <libreborn/util.h> #include <libreborn/util/util.h>
#include <symbols/minecraft.h> #include <symbols/minecraft.h>

View File

@ -2,8 +2,8 @@
#include <vector> #include <vector>
#include <libreborn/patch.h> #include <libreborn/patch.h>
#include <libreborn/env.h> #include <libreborn/env/env.h>
#include <libreborn/exec.h> #include <libreborn/util/exec.h>
#include <libreborn/config.h> #include <libreborn/config.h>
#include <symbols/minecraft.h> #include <symbols/minecraft.h>

View File

@ -5,7 +5,7 @@
#include <GLES/gl.h> #include <GLES/gl.h>
#include <libreborn/patch.h> #include <libreborn/patch.h>
#include <libreborn/util.h> #include <libreborn/util/util.h>
#include <libreborn/config.h> #include <libreborn/config.h>
#include <symbols/minecraft.h> #include <symbols/minecraft.h>

View File

@ -2,8 +2,8 @@
#include <libreborn/patch.h> #include <libreborn/patch.h>
#include <libreborn/config.h> #include <libreborn/config.h>
#include <libreborn/util.h> #include <libreborn/util/util.h>
#include <libreborn/exec.h> #include <libreborn/util/exec.h>
#include <symbols/minecraft.h> #include <symbols/minecraft.h>