1#ifndef YAZE_APP_EDITOR_ORACLE_PANELS_ORACLE_VALIDATION_PANEL_H_
2#define YAZE_APP_EDITOR_ORACLE_PANELS_ORACLE_VALIDATION_PANEL_H_
21 std::string
GetId()
const override;
23 std::string
GetIcon()
const override;
28 void Draw(
bool* p_open)
override;
50 std::future<oracle_validation::OracleRunResult>
pending_;
The Rom class is used to load, save, and modify Rom data. This is a generic SNES ROM container and do...
Base interface for all logical panel components.
void DrawSmokeCards(const oracle_validation::SmokeResult &smoke)
std::string status_message_
void DrawRawOutput(const oracle_validation::OracleRunResult &result)
float GetPreferredWidth() const override
Get preferred width for this panel (optional)
std::future< oracle_validation::OracleRunResult > pending_
std::string GetIcon() const override
Material Design icon for this panel.
std::string required_collision_rooms_
std::string GetId() const override
Unique identifier for this panel.
void Draw(bool *p_open) override
Draw the panel content.
PanelCategory GetPanelCategory() const override
Get the lifecycle category for this panel.
std::optional< oracle_validation::OracleRunResult > last_result_
std::string GetDisplayName() const override
Human-readable name shown in menus and title bars.
void LaunchRun(oracle_validation::RunMode mode)
static std::string DefaultRomPath()
~OracleValidationPanel() override
std::string GetEditorCategory() const override
Editor category this panel belongs to.
void DrawPreflightCards(const oracle_validation::PreflightResult &preflight)
Editors are the view controllers for the application.
PanelCategory
Defines lifecycle behavior for editor panels.