2020-11-10 14:26:38 +00:00
|
|
|
#pragma once
|
|
|
|
|
2021-01-13 16:28:27 +00:00
|
|
|
#include <hex/views/view.hpp>
|
2021-02-14 00:11:55 +00:00
|
|
|
#include "helpers/encoding_file.hpp"
|
2020-11-10 14:26:38 +00:00
|
|
|
|
2021-01-13 16:28:27 +00:00
|
|
|
#include <imgui_memory_editor.h>
|
2020-11-10 14:26:38 +00:00
|
|
|
|
2021-01-13 13:11:23 +00:00
|
|
|
#include <list>
|
2020-11-10 14:26:38 +00:00
|
|
|
#include <tuple>
|
|
|
|
#include <random>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
namespace hex {
|
|
|
|
|
2020-11-11 08:28:44 +00:00
|
|
|
namespace prv { class Provider; }
|
|
|
|
|
2020-11-15 22:04:46 +00:00
|
|
|
using SearchFunction = std::vector<std::pair<u64, u64>> (*)(prv::Provider* &provider, std::string string);
|
|
|
|
|
2020-11-10 14:26:38 +00:00
|
|
|
class ViewHexEditor : public View {
|
|
|
|
public:
|
2021-04-20 19:46:48 +00:00
|
|
|
ViewHexEditor();
|
2020-11-11 08:28:44 +00:00
|
|
|
~ViewHexEditor() override;
|
2020-11-10 14:26:38 +00:00
|
|
|
|
2020-12-22 17:10:01 +00:00
|
|
|
void drawContent() override;
|
2021-02-07 13:29:13 +00:00
|
|
|
void drawAlwaysVisible() override;
|
2020-12-22 17:10:01 +00:00
|
|
|
void drawMenu() override;
|
2021-04-16 17:43:54 +00:00
|
|
|
bool handleShortcut(bool keys[512], bool ctrl, bool shift, bool alt) override;
|
2020-11-10 14:26:38 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
MemoryEditor m_memoryEditor;
|
2020-11-12 20:20:51 +00:00
|
|
|
|
2021-01-03 01:37:37 +00:00
|
|
|
std::map<u64, u32> m_highlightedBytes;
|
2020-11-11 13:42:01 +00:00
|
|
|
|
2021-02-17 13:47:25 +00:00
|
|
|
std::vector<char> m_searchStringBuffer;
|
|
|
|
std::vector<char> m_searchHexBuffer;
|
2020-11-15 22:04:46 +00:00
|
|
|
SearchFunction m_searchFunction = nullptr;
|
|
|
|
std::vector<std::pair<u64, u64>> *m_lastSearchBuffer;
|
|
|
|
|
2020-11-11 13:42:01 +00:00
|
|
|
s64 m_lastSearchIndex = 0;
|
2020-11-15 22:04:46 +00:00
|
|
|
std::vector<std::pair<u64, u64>> m_lastStringSearch;
|
|
|
|
std::vector<std::pair<u64, u64>> m_lastHexSearch;
|
|
|
|
|
2020-11-19 22:24:34 +00:00
|
|
|
s64 m_gotoAddress = 0;
|
2020-11-12 08:38:52 +00:00
|
|
|
|
2021-01-11 12:50:04 +00:00
|
|
|
char m_baseAddressBuffer[0x20] = { 0 };
|
2021-07-27 19:07:36 +00:00
|
|
|
u64 m_resizeSize = 0;
|
2021-01-11 12:50:04 +00:00
|
|
|
|
2020-11-27 08:09:48 +00:00
|
|
|
std::vector<u8> m_dataToSave;
|
2020-11-12 08:38:52 +00:00
|
|
|
|
2020-12-01 01:21:40 +00:00
|
|
|
std::string m_loaderScriptScriptPath;
|
|
|
|
std::string m_loaderScriptFilePath;
|
|
|
|
|
2021-02-14 00:11:55 +00:00
|
|
|
hex::EncodingFile m_currEncodingFile;
|
2021-03-29 21:07:18 +00:00
|
|
|
u8 m_highlightAlpha = 0x80;
|
2021-02-14 00:11:55 +00:00
|
|
|
|
2020-11-12 08:38:52 +00:00
|
|
|
void drawSearchPopup();
|
|
|
|
void drawGotoPopup();
|
2021-01-10 22:59:36 +00:00
|
|
|
void drawEditPopup();
|
2020-11-15 22:04:46 +00:00
|
|
|
|
2021-09-08 13:18:24 +00:00
|
|
|
bool createFile(const std::string &path);
|
|
|
|
void openFile(const std::string &path);
|
|
|
|
bool saveToFile(const std::string &path, const std::vector<u8>& data);
|
|
|
|
bool loadFromFile(const std::string &path, std::vector<u8>& data);
|
2020-11-20 10:57:14 +00:00
|
|
|
|
|
|
|
enum class Language { C, Cpp, CSharp, Rust, Python, Java, JavaScript };
|
2021-09-08 13:18:24 +00:00
|
|
|
void copyBytes() const;
|
|
|
|
void pasteBytes() const;
|
|
|
|
void copyString() const;
|
|
|
|
void copyLanguageArray(Language language) const;
|
|
|
|
void copyHexView() const;
|
|
|
|
void copyHexViewHTML() const;
|
2020-11-15 23:07:42 +00:00
|
|
|
|
2020-11-10 14:26:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|