#pragma once
#include <cstdint>
#include <functional>
#include "Common/UI/View.h"
#include "Common/UI/UIScreen.h"
#include "Common/UI/Context.h"
#include "UI/BaseScreens.h"
#include "UI/SimpleDialogScreen.h"
struct CheatFileInfo;
class CWCheatEngine;
class CwCheatScreen : public UITwoPaneBaseDialogScreen {
public:
CwCheatScreen(const Path &gamePath);
~CwCheatScreen();
bool TryLoadCheatInfo();
void OnAddCheat(UI::EventParams ¶ms);
void OnImportCheat(UI::EventParams ¶ms);
void OnImportBrowse(UI::EventParams ¶ms);
void OnEditCheatFile(UI::EventParams ¶ms);
void OnDisableAll(UI::EventParams ¶ms);
void update() override;
void onFinish(DialogResult result) override;
const char *tag() const override { return "CwCheat"; }
protected:
void BeforeCreateViews() override;
void CreateSettingsViews(UI::ViewGroup *) override;
void CreateContentViews(UI::ViewGroup *) override;
std::string_view GetTitle() const override;
private:
void OnCheckBox(int index);
bool ImportCheats(const Path &cheatFile);
enum { INDEX_ALL = -1 };
bool HasCheatWithName(const std::string &name);
bool RebuildCheatFile(int index);
UI::TextView *errorMessageView_ = nullptr;
CWCheatEngine *engine_ = nullptr;
std::vector<CheatFileInfo> fileInfo_;
std::string gameID_;
int fileCheckCounter_ = 0;
uint64_t fileCheckHash_ = 0;
};