2020-11-10 15:26:38 +01:00
|
|
|
#pragma once
|
|
|
|
|
2021-01-13 17:28:27 +01:00
|
|
|
#include <hex/views/view.hpp>
|
2021-02-14 01:11:55 +01:00
|
|
|
#include "helpers/encoding_file.hpp"
|
2020-11-10 15:26:38 +01:00
|
|
|
|
2021-01-13 17:28:27 +01:00
|
|
|
#include <imgui_memory_editor.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>
|
|
|
|
|
|
|
|
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-04-20 21:46:48 +02:00
|
|
|
ViewHexEditor();
|
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;
|
2021-02-07 14:29:13 +01:00
|
|
|
void drawAlwaysVisible() override;
|
2020-12-22 18:10:01 +01:00
|
|
|
void drawMenu() override;
|
2021-04-16 19:43:54 +02:00
|
|
|
bool handleShortcut(bool keys[512], bool ctrl, bool shift, bool alt) override;
|
2020-11-10 15:26:38 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
MemoryEditor m_memoryEditor;
|
2020-11-12 21:20:51 +01:00
|
|
|
|
2021-01-03 02:37:37 +01:00
|
|
|
std::map<u64, u32> m_highlightedBytes;
|
2020-11-11 14:42:01 +01:00
|
|
|
|
2021-02-17 14:47:25 +01:00
|
|
|
std::vector<char> m_searchStringBuffer;
|
|
|
|
std::vector<char> m_searchHexBuffer;
|
2020-11-15 23:04:46 +01:00
|
|
|
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 };
|
2021-07-27 21:07:36 +02:00
|
|
|
u64 m_resizeSize = 0;
|
2021-01-11 13:50:04 +01:00
|
|
|
|
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;
|
|
|
|
|
2021-02-14 01:11:55 +01:00
|
|
|
hex::EncodingFile m_currEncodingFile;
|
2021-03-29 23:07:18 +02:00
|
|
|
u8 m_highlightAlpha = 0x80;
|
2021-02-14 01:11:55 +01:00
|
|
|
|
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
|
|
|
|
2021-07-27 21:07:36 +02:00
|
|
|
bool createFile(std::string_view path);
|
|
|
|
void openFile(std::string_view path);
|
|
|
|
bool saveToFile(std::string_view path, const std::vector<u8>& data);
|
|
|
|
bool loadFromFile(std::string_view 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();
|
2021-04-16 17:01:01 +02:00
|
|
|
void pasteBytes();
|
2020-11-16 00:07:42 +01:00
|
|
|
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
|
|
|
};
|
|
|
|
|
|
|
|
}
|