logmeow/event_loop.cpp

150 lines
4.9 KiB
C++
Raw Normal View History

#include <imgui.h>
#include <imgui_stdlib.h>
2023-01-05 10:27:14 +00:00
#include "log.h"
#include "config.h"
static inline void write_config_and_update_structures(const Config& config) {
try {
write_config(config);
} catch (const std::exception& e) {
2023-01-05 10:27:14 +00:00
log("Failed to write config", e);
return;
}
}
2023-01-05 10:27:14 +00:00
static inline void settings_window(Config& config, float* config_write_timer, bool* show_settings_window) {
if (!ImGui::Begin("Settings", show_settings_window)) {
ImGui::End();
return;
}
// TODO actually have process control
2023-01-05 10:27:14 +00:00
ImGui::Text("Logcat command only takes effect when logcat is not running");
if (ImGui::InputTextWithHint("Logcat command", "adb logcat -Dv 'threadtime UTC epoch usec'", &config.logcat_command)) {
*config_write_timer = *config_write_timer > 0.0f ? *config_write_timer : 5.0f;
}
ImGui::End();
}
static inline void logs_window(bool* latest_log_entries_read, bool* show_logs_window) {
2023-01-05 10:27:14 +00:00
if (!ImGui::Begin("LogMeow Logs", show_logs_window)) {
ImGui::End();
return;
}
2023-01-05 10:27:14 +00:00
if (ImGui::Button("Clear")) {
log_entries.clear();
}
2023-01-05 10:27:14 +00:00
ImGui::SameLine();
if (ImGui::Button("Copy")) {
ImGui::SetClipboardText(log_entries.c_str());
}
ImGui::Separator();
2023-01-05 13:53:23 +00:00
// copied from imgui/imgui_demo.cpp: [SECTION] Example App: Debug Console / ShowExampleAppConsole()
2023-01-05 10:27:14 +00:00
if (ImGui::BeginChild("ScrollingRegion", ImVec2(0, 0), false, ImGuiWindowFlags_HorizontalScrollbar)) {
ImGui::TextUnformatted(log_entries.data(), &log_entries[log_entries.size()]);
2023-01-05 13:53:23 +00:00
if (ImGui::GetScrollY() >= ImGui::GetScrollMaxY()) {
*latest_log_entries_read = true;
2023-01-05 13:53:23 +00:00
ImGui::SetScrollHereY(1.0f);
}
2023-01-05 10:27:14 +00:00
}
ImGui::EndChild();
ImGui::End();
}
static inline void main_window(bool latest_log_entries_read, bool* show_settings_window, bool* show_logs_window, bool* run_event_loop) {
2023-01-05 13:55:54 +00:00
if (!ImGui::Begin("LogMeow", run_event_loop)) {
2023-01-05 10:27:14 +00:00
ImGui::End();
return;
}
2023-01-05 10:27:14 +00:00
if (ImGui::Button("Settings")) {
*show_settings_window = true;
}
ImGui::SameLine();
if (!latest_log_entries_read) {
ImGui::PushStyleColor(ImGuiCol_Button, (ImVec4)ImColor::HSV(0.0f, 0.6f, 0.6f));
ImGui::PushStyleColor(ImGuiCol_ButtonHovered, (ImVec4)ImColor::HSV(0.0f, 0.7f, 0.7f));
ImGui::PushStyleColor(ImGuiCol_ButtonActive, (ImVec4)ImColor::HSV(0.0f, 0.8f, 0.8f));
}
2023-01-05 10:27:14 +00:00
if (ImGui::Button("Logs")) {
*show_logs_window = true;
}
if (!latest_log_entries_read) {
ImGui::PopStyleColor(3);
}
2023-01-05 10:27:14 +00:00
ImGui::End();
}
2023-01-05 09:05:09 +00:00
static inline void debug_window() {
static bool show_demo_window = false;
2023-01-05 10:27:14 +00:00
static size_t add_log_entry_presses = 1;
2023-01-05 13:53:34 +00:00
static bool log_entry_every_second = false;
static float log_entry_every_second_delta;
2023-01-05 10:27:14 +00:00
if (show_demo_window) {
ImGui::ShowDemoWindow(&show_demo_window);
}
2023-01-05 09:05:09 +00:00
if (!ImGui::Begin("LogMeow Debug")) {
ImGui::End();
return;
}
2023-01-05 13:53:34 +00:00
2023-01-05 09:05:09 +00:00
ImGui::Text("Application average %.3f ms/frame (%.1f FPS)", 1000.0f / ImGui::GetIO().Framerate, ImGui::GetIO().Framerate);
ImGui::Checkbox("Show Dear ImGui Demo Window", &show_demo_window);
2023-01-05 13:53:34 +00:00
2023-01-05 10:27:14 +00:00
ImGui::Separator();
if (ImGui::Button("Add Log Entry")) {
std::exception e;
2023-01-05 13:53:34 +00:00
log(std::string("Debug log entry #") + std::to_string(add_log_entry_presses++) + " (activated via manual button press)", e);
}
ImGui::SameLine();
// returns true when it's pressed
if (ImGui::Checkbox("Add log entry every second", &log_entry_every_second)) {
log_entry_every_second_delta = 0.0f;
2023-01-05 10:27:14 +00:00
}
2023-01-05 13:53:34 +00:00
if (log_entry_every_second) {
log_entry_every_second_delta += ImGui::GetIO().DeltaTime;
if (log_entry_every_second_delta >= 1.0f) {
std::exception e;
log_entry_every_second_delta = 0.0f;
log(std::string("Debug log entry #") + std::to_string(add_log_entry_presses++) + " (activated by add log entry every second)", e);
}
}
2023-01-05 09:05:09 +00:00
ImGui::End();
}
void event_loop(Config& config, float* config_write_timer, bool* run_event_loop) {
static bool show_settings_window = false;
2023-01-05 10:27:14 +00:00
static bool show_logs_window = false;
static size_t log_entries_read = 0;
2023-01-05 09:05:09 +00:00
2023-01-05 10:27:14 +00:00
debug_window();
if (show_settings_window) {
settings_window(config, config_write_timer, &show_settings_window);
}
if (*config_write_timer > 0.0f) {
*config_write_timer -= ImGui::GetIO().DeltaTime;
if (*config_write_timer <= 0.0f) {
write_config_and_update_structures(config);
}
}
2023-01-05 10:27:14 +00:00
if (show_logs_window) {
bool latest_log_entries_read = false;
logs_window(&latest_log_entries_read, &show_logs_window);
if (latest_log_entries_read) {
log_entries_read = log_entries.size();
}
2023-01-05 10:27:14 +00:00
}
// log_entries must not be mutated until the show logs button
main_window(log_entries_read == log_entries.size(), &show_settings_window, &show_logs_window, run_event_loop);
}