2023-07-26 12:24:18 +02:00
|
|
|
#include "./start_screen.hpp"
|
|
|
|
|
|
|
|
#include "./main_screen.hpp"
|
|
|
|
|
2024-05-30 11:46:58 +02:00
|
|
|
#include "./json_to_config.hpp"
|
|
|
|
|
|
|
|
#include <nlohmann/json.hpp>
|
|
|
|
|
2023-08-03 13:05:19 +02:00
|
|
|
#include <imgui/imgui.h>
|
2023-08-28 15:33:36 +02:00
|
|
|
#include <imgui/misc/cpp/imgui_stdlib.h>
|
2023-08-03 13:05:19 +02:00
|
|
|
|
2024-04-20 19:53:41 +02:00
|
|
|
#include <cctype>
|
2023-07-26 12:24:18 +02:00
|
|
|
#include <memory>
|
2023-08-03 13:05:19 +02:00
|
|
|
#include <filesystem>
|
2024-05-30 11:46:58 +02:00
|
|
|
#include <fstream>
|
|
|
|
|
|
|
|
StartScreen::StartScreen(const std::vector<std::string_view>& args, SDL_Renderer* renderer, Theme& theme) : _renderer(renderer), _theme(theme) {
|
2024-05-31 15:34:44 +02:00
|
|
|
for (size_t ai = 1; ai < args.size(); ai++) {
|
2024-05-30 11:46:58 +02:00
|
|
|
if (args.at(ai) == "--config" || args.at(ai) == "-c") {
|
|
|
|
if (args.size() == ai+1) {
|
|
|
|
std::cerr << "TOMATO error: argument '" << args.at(ai) << "' missing parameter!\n";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
ai++;
|
|
|
|
|
|
|
|
const auto& config_path = args.at(ai);
|
|
|
|
auto config_file = std::ifstream(static_cast<std::string>(config_path));
|
|
|
|
if (!config_file.is_open()) {
|
|
|
|
std::cerr << "TOMATO error: failed to open config file '" << config_path << "'\n";
|
|
|
|
break;
|
|
|
|
}
|
2023-07-26 12:24:18 +02:00
|
|
|
|
2024-05-30 11:46:58 +02:00
|
|
|
auto config_json = nlohmann::ordered_json::parse(config_file);
|
|
|
|
if (!load_json_into_config(config_json, _conf)) {
|
|
|
|
std::cerr << "TOMATO error in config json, exiting...\n";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else if (args.at(ai) == "--plugin" || args.at(ai) == "-p") {
|
|
|
|
if (args.size() == ai+1) {
|
|
|
|
std::cerr << "TOMATO error: argument '" << args.at(ai) << "' missing parameter!\n";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
ai++;
|
|
|
|
|
|
|
|
const auto& plugin_path = args.at(ai);
|
|
|
|
// TODO: check for dups
|
|
|
|
queued_plugin_paths.push_back(static_cast<std::string>(plugin_path));
|
|
|
|
} else {
|
|
|
|
std::cerr << "TOMATO error: unknown cli arg: '" << args.at(ai) << "'\n";
|
|
|
|
}
|
|
|
|
}
|
2024-06-02 18:09:20 +02:00
|
|
|
|
2024-06-15 23:01:55 +02:00
|
|
|
float display_scale = SDL_GetWindowDisplayScale(SDL_GetRenderWindow(renderer));
|
|
|
|
if (display_scale < 0.001f) {
|
|
|
|
// error?
|
|
|
|
display_scale = 1.f;
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
auto* font_atlas = ImGui::GetIO().Fonts;
|
|
|
|
font_atlas->ClearFonts();
|
|
|
|
// for now we also always merge
|
|
|
|
//bool has_font {false};
|
|
|
|
|
|
|
|
ImFontGlyphRangesBuilder glyphbld;
|
|
|
|
ImVector<ImWchar> glyph_ranges;
|
|
|
|
{ // build ranges
|
|
|
|
glyphbld.AddRanges(font_atlas->GetGlyphRangesDefault());
|
|
|
|
glyphbld.AddRanges(font_atlas->GetGlyphRangesGreek());
|
|
|
|
glyphbld.AddRanges(font_atlas->GetGlyphRangesCyrillic());
|
|
|
|
glyphbld.AddRanges(font_atlas->GetGlyphRangesChineseSimplifiedCommon()); // contains CJK
|
|
|
|
glyphbld.AddText("™"); // somehow missing
|
|
|
|
// popular emojies
|
|
|
|
glyphbld.AddText(u8"😂❤️🤣👍😭🙏😘🥰😍😊🎉😁💕🥺😅🔥☺️🤦♥️🤷🙄😆🤗😉🎂🤔👏🙂😳🥳😎👌💜😔💪✨💖👀😋😏😢👉💗😩💯🌹💞🎈💙😃😡💐😜🙈🤞😄🤤🙌🤪❣️😀💋💀👇💔😌💓🤩🙃😬😱😴🤭😐🌞😒😇🌸😈🎶✌️🎊🥵😞💚☀️🖤💰😚👑🎁💥🙋☹️😑🥴👈💩✅👋🤮😤🤢🌟❗😥🌈💛😝😫😲🖕‼️🔴🌻🤯💃👊🤬🏃😕👁️⚡☕🍀💦⭐🦋🤨🌺😹🤘🌷💝💤🤝🐰😓💘🍻😟😣🧐😠🤠😻🌙😛🤙🙊");
|
|
|
|
|
|
|
|
if (const auto sv_opt = _conf.get_string("ImGuiFonts", "atlas_extra_text"); sv_opt.has_value) {
|
|
|
|
glyphbld.AddText(sv_opt.s.start, sv_opt.s.start+sv_opt.s.extend);
|
|
|
|
}
|
|
|
|
glyphbld.BuildRanges(&glyph_ranges);
|
|
|
|
}
|
|
|
|
|
|
|
|
ImFontConfig fontcfg;
|
|
|
|
//fontcfg.SizePixels = 16.f*display_scale;
|
|
|
|
fontcfg.SizePixels = _conf.get_int("ImGuiFonts", "size").value_or(13) * display_scale;
|
|
|
|
fontcfg.RasterizerDensity = 1.f;
|
|
|
|
fontcfg.OversampleH = 2;
|
|
|
|
fontcfg.OversampleV = 1;
|
|
|
|
fontcfg.MergeMode = false;
|
|
|
|
|
|
|
|
for (const auto [font_path, should_load] : _conf.entries_bool("ImGuiFonts", "fonts")) {
|
|
|
|
if (!should_load) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::cout << "Font: loading '" << font_path << "'\n";
|
|
|
|
const auto* resulting_font = font_atlas->AddFontFromFileTTF(
|
|
|
|
font_path.c_str(),
|
|
|
|
_conf.get_int("ImGuiFonts", "size", font_path).value_or(0) * display_scale,
|
|
|
|
&fontcfg,
|
|
|
|
&(glyph_ranges[0])
|
|
|
|
);
|
|
|
|
|
|
|
|
if (resulting_font != nullptr) {
|
|
|
|
//has_font = true;
|
|
|
|
fontcfg.MergeMode = true;
|
|
|
|
} else {
|
|
|
|
std::cerr << "Font: failed to load '" << "path" << "' !\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// always append the default as a fallback (merge in)
|
|
|
|
{
|
|
|
|
#if 0
|
|
|
|
ImFontConfig fontcfg;
|
|
|
|
|
|
|
|
// upsampling to int looks almost ok
|
|
|
|
//const float font_size_scale = 1.3f * display_scale;
|
|
|
|
const float font_size_scale = 1.0f * display_scale;
|
|
|
|
const float font_oversample = 4.f;
|
|
|
|
|
|
|
|
// default font is pixel perfect at 13
|
|
|
|
fontcfg.SizePixels = 13.f * font_size_scale;
|
|
|
|
fontcfg.RasterizerDensity = font_oversample/font_size_scale;
|
|
|
|
// normally density would be set to dpi scale of the display
|
|
|
|
|
|
|
|
fontcfg.MergeMode = has_font;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
font_atlas->AddFontDefault(&fontcfg);
|
|
|
|
}
|
|
|
|
|
|
|
|
font_atlas->Build();
|
|
|
|
}
|
2023-07-26 12:24:18 +02:00
|
|
|
}
|
|
|
|
|
2024-01-05 14:47:08 +01:00
|
|
|
Screen* StartScreen::render(float, bool&) {
|
2023-07-26 12:24:18 +02:00
|
|
|
|
|
|
|
// TODO: imgui tox profile selector?
|
2023-08-03 13:05:19 +02:00
|
|
|
|
2023-07-26 12:55:50 +02:00
|
|
|
// +----------------------------
|
|
|
|
// | |*tox profile*| plugins |
|
2023-07-26 12:24:18 +02:00
|
|
|
// | +------+ +--------
|
|
|
|
// | | ICON | | fileselector/dropdown?
|
|
|
|
// | | | | password input
|
|
|
|
// | +------+ +--------
|
2023-07-26 12:55:50 +02:00
|
|
|
// +----------------------------
|
2023-07-26 12:24:18 +02:00
|
|
|
|
2023-08-03 13:05:19 +02:00
|
|
|
if (ImGui::BeginTabBar("view")) {
|
|
|
|
if (ImGui::BeginTabItem("load profile")) {
|
2023-08-28 15:33:36 +02:00
|
|
|
_new_save = false;
|
|
|
|
|
|
|
|
ImGui::TextUnformatted("profile :");
|
|
|
|
ImGui::SameLine();
|
2023-08-03 15:03:12 +02:00
|
|
|
if (ImGui::Button("select")) {
|
|
|
|
_fss.requestFile(
|
|
|
|
[](const auto& path) -> bool { return std::filesystem::is_regular_file(path); },
|
|
|
|
[this](const auto& path) {
|
2024-04-20 19:53:41 +02:00
|
|
|
_tox_profile_path = path.string();
|
2023-08-03 15:03:12 +02:00
|
|
|
},
|
|
|
|
[](){}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
ImGui::SameLine();
|
2024-04-20 19:53:41 +02:00
|
|
|
ImGui::TextUnformatted(_tox_profile_path.c_str());
|
2023-08-03 15:03:12 +02:00
|
|
|
|
2023-08-28 15:33:36 +02:00
|
|
|
ImGui::TextUnformatted("password:");
|
|
|
|
ImGui::SameLine();
|
|
|
|
if (_show_password) {
|
|
|
|
ImGui::InputText("##password", &_password);
|
|
|
|
} else {
|
|
|
|
ImGui::InputText("##password", &_password, ImGuiInputTextFlags_Password);
|
|
|
|
}
|
|
|
|
ImGui::SameLine();
|
|
|
|
ImGui::Checkbox("show password", &_show_password);
|
2023-08-03 15:03:12 +02:00
|
|
|
|
2023-08-03 13:05:19 +02:00
|
|
|
ImGui::EndTabItem();
|
|
|
|
}
|
|
|
|
if (ImGui::BeginTabItem("create profile")) {
|
2023-08-28 15:33:36 +02:00
|
|
|
_new_save = true;
|
|
|
|
|
2024-04-20 19:53:41 +02:00
|
|
|
ImGui::TextUnformatted("username:");
|
|
|
|
ImGui::SameLine();
|
|
|
|
if (ImGui::InputText("##user_name", &_user_name)) {
|
|
|
|
std::string tmp_copy = _user_name;
|
|
|
|
for (auto& c : tmp_copy) {
|
|
|
|
if (!std::isalnum(static_cast<unsigned char>(c)) && c != '-' && c != '.') {
|
|
|
|
c = '_';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (tmp_copy.empty()) {
|
|
|
|
tmp_copy = "unnamed-tomato";
|
|
|
|
}
|
|
|
|
|
|
|
|
_tox_profile_path = tmp_copy + ".tox";
|
|
|
|
}
|
2023-08-28 15:33:36 +02:00
|
|
|
|
|
|
|
ImGui::TextUnformatted("password:");
|
|
|
|
ImGui::SameLine();
|
|
|
|
if (_show_password) {
|
|
|
|
ImGui::InputText("##password", &_password);
|
|
|
|
} else {
|
|
|
|
ImGui::InputText("##password", &_password, ImGuiInputTextFlags_Password);
|
|
|
|
}
|
|
|
|
ImGui::SameLine();
|
|
|
|
ImGui::Checkbox("show password", &_show_password);
|
|
|
|
|
2024-04-20 19:53:41 +02:00
|
|
|
ImGui::TextUnformatted("TODO: profile path (current path for now)");
|
|
|
|
|
2023-08-03 13:05:19 +02:00
|
|
|
ImGui::EndTabItem();
|
|
|
|
}
|
|
|
|
if (ImGui::BeginTabItem("plugins")) {
|
|
|
|
// list of selected plugins (in order)
|
|
|
|
for (auto it = queued_plugin_paths.begin(); it != queued_plugin_paths.end();) {
|
2023-08-20 12:50:58 +02:00
|
|
|
ImGui::PushID(it->c_str());
|
2023-08-03 13:05:19 +02:00
|
|
|
if (ImGui::SmallButton("-")) {
|
|
|
|
it = queued_plugin_paths.erase(it);
|
2023-08-20 12:50:58 +02:00
|
|
|
ImGui::PopID();
|
2023-08-03 13:05:19 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
ImGui::SameLine();
|
|
|
|
ImGui::TextUnformatted(it->c_str());
|
|
|
|
|
2023-08-20 12:50:58 +02:00
|
|
|
ImGui::PopID();
|
2023-08-03 13:05:19 +02:00
|
|
|
it++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ImGui::Button("+")) {
|
|
|
|
_fss.requestFile(
|
|
|
|
[](const auto& path) -> bool { return std::filesystem::is_regular_file(path); },
|
|
|
|
[this](const auto& path) {
|
|
|
|
queued_plugin_paths.push_back(path.string());
|
|
|
|
},
|
|
|
|
[](){}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
ImGui::EndTabItem();
|
|
|
|
}
|
|
|
|
ImGui::EndTabBar();
|
|
|
|
}
|
|
|
|
|
|
|
|
ImGui::Separator();
|
|
|
|
|
2024-04-20 19:53:41 +02:00
|
|
|
if (!_new_save && !std::filesystem::is_regular_file(_tox_profile_path)) {
|
2023-08-28 15:33:36 +02:00
|
|
|
// load but file missing
|
|
|
|
|
|
|
|
ImGui::BeginDisabled();
|
|
|
|
ImGui::Button("load", {60, 25});
|
|
|
|
ImGui::EndDisabled();
|
|
|
|
|
|
|
|
if (ImGui::IsItemHovered(ImGuiHoveredFlags_ForTooltip | ImGuiHoveredFlags_AllowWhenDisabled)) {
|
|
|
|
ImGui::SetTooltip("file does not exist");
|
|
|
|
}
|
2024-04-20 19:53:41 +02:00
|
|
|
} else if (_new_save && std::filesystem::exists(_tox_profile_path)) {
|
2023-08-28 15:33:36 +02:00
|
|
|
// new but file exists
|
|
|
|
|
|
|
|
ImGui::BeginDisabled();
|
|
|
|
ImGui::Button("load", {60, 25});
|
|
|
|
ImGui::EndDisabled();
|
|
|
|
|
|
|
|
if (ImGui::IsItemHovered(ImGuiHoveredFlags_ForTooltip | ImGuiHoveredFlags_AllowWhenDisabled)) {
|
|
|
|
ImGui::SetTooltip("file already exists");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (ImGui::Button("load", {60, 25})) {
|
2024-06-02 18:09:20 +02:00
|
|
|
|
2024-05-30 11:46:58 +02:00
|
|
|
auto new_screen = std::make_unique<MainScreen>(std::move(_conf), _renderer, _theme, _tox_profile_path, _password, _user_name, queued_plugin_paths);
|
2023-08-28 15:33:36 +02:00
|
|
|
return new_screen.release();
|
|
|
|
}
|
2023-08-03 13:05:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
_fss.render();
|
|
|
|
|
|
|
|
return nullptr;
|
2023-07-26 12:24:18 +02:00
|
|
|
}
|
|
|
|
|
2024-01-05 14:47:08 +01:00
|
|
|
Screen* StartScreen::tick(float, bool&) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|