24#include "vendor/imfilebrowser.h"
68 std::array<std::string, UiSaver::Types::COUNT>
file_names;
89 void render(
State &state, ImGuiWindowFlags window_flags);
97 void save_data(
const State &state,
const std::string &dir_name)
const;
110 const std::string &dir_name)
const;
Storage of data of used algorithms and input events.
ImGUI handler for rendering the save file window.
Types
Types of data to be exported.
std::array< std::string, UiSaver::Types::COUNT > file_names
Names of the exported files for each export data type.
static constexpr int file_name_size
Maximum size of the file name.
void render(State &state, ImGuiWindowFlags window_flags)
Renders save file window, opens save file dialog window and calls save_data() if a directory was sele...
UiSaver()
Initializes saver settings and initializes variables with default values.
void save_data(const State &state, const std::string &dir_name) const
Calls write() for selected export data types.
bool show_window
If the save file window should be rendered.
std::array< bool, UiSaver::Types::COUNT > data_flags
Array of flags for each export data type indicating which data should be exported and which not.
void write(UiSaver::Types type, const State &state, const std::string &dir_name) const
Writes given data into the file in the tsv format.
std::string saving_error
Error message of the saving file that will be shown in the error window.
ImGui::FileBrowser saver
ImGui file system dialog window handler.
bool all
If all types of data should be exported.
void show()
Enables window to render.