2020-11-10 15:26:38 +01:00
|
|
|
#pragma once
|
|
|
|
|
2021-01-13 17:28:27 +01:00
|
|
|
#include <hex/helpers/utils.hpp>
|
|
|
|
#include <hex/views/view.hpp>
|
2020-11-10 15:26:38 +01:00
|
|
|
|
2021-01-13 17:28:27 +01:00
|
|
|
#include <imgui_memory_editor.h>
|
|
|
|
#include <ImGuiFileBrowser.h>
|
2020-11-10 15:26:38 +01:00
|
|
|
|
2021-01-13 14:11:23 +01:00
|
|
|
#include <list>
|
2020-11-10 15:26:38 +01:00
|
|
|
#include <tuple>
|
|
|
|
#include <random>
|
|
|
|
#include <vector>
|
|
|
|
|
2021-01-13 17:28:27 +01:00
|
|
|
#include <hex/lang/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:
|
2021-01-20 20:16:24 +01:00
|
|
|
ViewHexEditor(std::vector<lang::PatternData*> &patternData);
|
2020-11-11 09:28:44 +01:00
|
|
|
~ViewHexEditor() override;
|
2020-11-10 15:26:38 +01:00
|
|
|
|
2020-12-22 18:10:01 +01:00
|
|
|
void drawContent() override;
|
|
|
|
void drawMenu() 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-12 21:20:51 +01:00
|
|
|
|
2020-11-19 11:36:52 +01:00
|
|
|
std::vector<lang::PatternData*> &m_patternData;
|
2021-01-13 14:11:23 +01:00
|
|
|
|
2021-01-03 02:37:37 +01:00
|
|
|
std::map<u64, u32> m_highlightedBytes;
|
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-19 23:24:34 +01:00
|
|
|
s64 m_gotoAddress = 0;
|
2020-11-12 09:38:52 +01:00
|
|
|
|
2021-01-11 13:50:04 +01:00
|
|
|
char m_baseAddressBuffer[0x20] = { 0 };
|
|
|
|
|
2020-11-27 09:09:48 +01:00
|
|
|
std::vector<u8> m_dataToSave;
|
2020-11-12 09:38:52 +01:00
|
|
|
|
2020-12-01 02:21:40 +01:00
|
|
|
std::string m_loaderScriptScriptPath;
|
|
|
|
std::string m_loaderScriptFilePath;
|
|
|
|
|
2020-11-12 09:38:52 +01:00
|
|
|
void drawSearchPopup();
|
|
|
|
void drawGotoPopup();
|
2021-01-10 23:59:36 +01:00
|
|
|
void drawEditPopup();
|
2020-11-15 23:04:46 +01:00
|
|
|
|
2020-11-17 13:58:50 +01:00
|
|
|
void openFile(std::string path);
|
2020-11-24 02:00:22 +01:00
|
|
|
bool saveToFile(std::string path, const std::vector<u8>& data);
|
|
|
|
bool loadFromFile(std::string path, std::vector<u8>& data);
|
2020-11-20 11:57:14 +01:00
|
|
|
|
|
|
|
enum class Language { C, Cpp, CSharp, Rust, Python, Java, JavaScript };
|
2020-11-16 00:07:42 +01:00
|
|
|
void copyBytes();
|
|
|
|
void copyString();
|
2020-11-20 11:57:14 +01:00
|
|
|
void copyLanguageArray(Language language);
|
2020-11-20 13:25:55 +01:00
|
|
|
void copyHexView();
|
2020-11-20 15:15:43 +01:00
|
|
|
void copyHexViewHTML();
|
2020-11-16 00:07:42 +01:00
|
|
|
|
2020-11-10 15:26:38 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|