2020-11-10 15:26:38 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "utils.hpp"
|
|
|
|
#include "views/view.hpp"
|
|
|
|
|
|
|
|
#include "imgui_memory_editor.h"
|
2020-11-17 15:38:24 +01:00
|
|
|
#include "ImGuiFileBrowser.h"
|
2020-11-10 15:26:38 +01:00
|
|
|
|
|
|
|
#include <tuple>
|
|
|
|
#include <random>
|
|
|
|
#include <vector>
|
|
|
|
|
2020-11-14 14:42:21 +01:00
|
|
|
#include "views/pattern_data.hpp"
|
2020-11-10 21:31:04 +01:00
|
|
|
|
2020-11-10 15:26:38 +01:00
|
|
|
namespace hex {
|
|
|
|
|
2020-11-11 09:28:44 +01:00
|
|
|
namespace prv { class Provider; }
|
|
|
|
|
2020-11-15 23:04:46 +01:00
|
|
|
using SearchFunction = std::vector<std::pair<u64, u64>> (*)(prv::Provider* &provider, std::string string);
|
|
|
|
|
2020-11-10 15:26:38 +01:00
|
|
|
class ViewHexEditor : public View {
|
|
|
|
public:
|
2020-11-14 14:42:21 +01:00
|
|
|
ViewHexEditor(prv::Provider* &dataProvider, std::vector<hex::PatternData*> &patternData);
|
2020-11-11 09:28:44 +01:00
|
|
|
~ViewHexEditor() override;
|
2020-11-10 15:26:38 +01:00
|
|
|
|
2020-11-11 09:28:44 +01:00
|
|
|
void createView() override;
|
|
|
|
void createMenu() override;
|
2020-11-11 14:42:01 +01:00
|
|
|
bool handleShortcut(int key, int mods) override;
|
2020-11-10 15:26:38 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
MemoryEditor m_memoryEditor;
|
2020-11-17 15:38:24 +01:00
|
|
|
imgui_addons::ImGuiFileBrowser m_fileBrowser;
|
2020-11-12 21:20:51 +01:00
|
|
|
|
2020-11-11 09:18:35 +01:00
|
|
|
prv::Provider* &m_dataProvider;
|
2020-11-14 14:42:21 +01:00
|
|
|
std::vector<hex::PatternData*> &m_patternData;
|
2020-11-11 14:42:01 +01:00
|
|
|
|
2020-11-15 23:04:46 +01:00
|
|
|
char m_searchStringBuffer[0xFFFF] = { 0 };
|
|
|
|
char m_searchHexBuffer[0xFFFF] = { 0 };
|
|
|
|
SearchFunction m_searchFunction = nullptr;
|
|
|
|
std::vector<std::pair<u64, u64>> *m_lastSearchBuffer;
|
|
|
|
|
2020-11-11 14:42:01 +01:00
|
|
|
s64 m_lastSearchIndex = 0;
|
2020-11-15 23:04:46 +01:00
|
|
|
std::vector<std::pair<u64, u64>> m_lastStringSearch;
|
|
|
|
std::vector<std::pair<u64, u64>> m_lastHexSearch;
|
|
|
|
|
2020-11-12 09:38:52 +01:00
|
|
|
u64 m_gotoAddress = 0;
|
|
|
|
|
|
|
|
|
|
|
|
void drawSearchPopup();
|
|
|
|
void drawGotoPopup();
|
2020-11-15 23:04:46 +01:00
|
|
|
|
2020-11-17 13:58:50 +01:00
|
|
|
void openFile(std::string path);
|
2020-11-16 00:07:42 +01:00
|
|
|
void copyBytes();
|
|
|
|
void copyString();
|
|
|
|
|
2020-11-10 15:26:38 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|