2020-11-10 14:26:38 +00:00
|
|
|
#pragma once
|
|
|
|
|
2022-02-01 17:09:40 +00:00
|
|
|
#include <hex/ui/view.hpp>
|
2021-12-07 21:47:41 +00:00
|
|
|
#include <hex/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>
|
|
|
|
|
2022-01-24 19:53:17 +00:00
|
|
|
namespace hex::prv {
|
|
|
|
class Provider;
|
|
|
|
}
|
2021-12-07 21:47:41 +00:00
|
|
|
|
|
|
|
namespace hex::plugin::builtin {
|
2020-11-10 14:26:38 +00:00
|
|
|
|
2022-01-24 19:53:17 +00:00
|
|
|
using SearchFunction = std::vector<std::pair<u64, u64>> (*)(prv::Provider *&provider, std::string string);
|
2020-11-15 22:04:46 +00:00
|
|
|
|
2022-02-03 23:29:47 +00:00
|
|
|
struct HighlightBlock {
|
|
|
|
struct Highlight {
|
|
|
|
color_t color;
|
|
|
|
std::vector<std::string> tooltips;
|
|
|
|
};
|
|
|
|
|
|
|
|
constexpr static size_t Size = 0x2000;
|
|
|
|
|
2022-03-04 19:52:39 +00:00
|
|
|
u64 base = 0x00;
|
2022-02-03 23:29:47 +00:00
|
|
|
std::array<Highlight, Size> highlight;
|
|
|
|
};
|
|
|
|
|
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-11-10 14:26:38 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
MemoryEditor m_memoryEditor;
|
2020-11-12 20:20:51 +00:00
|
|
|
|
2021-02-17 13:47:25 +00:00
|
|
|
std::vector<char> m_searchStringBuffer;
|
|
|
|
std::vector<char> m_searchHexBuffer;
|
2022-02-16 13:57:13 +00:00
|
|
|
SearchFunction m_searchFunction = nullptr;
|
|
|
|
std::vector<std::pair<u64, u64>> *m_lastSearchBuffer = nullptr;
|
|
|
|
bool m_searchRequested = false;
|
2020-11-15 22:04:46 +00:00
|
|
|
|
2022-01-22 21:37:52 +00:00
|
|
|
i64 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;
|
|
|
|
|
2022-03-22 08:06:02 +00:00
|
|
|
std::string m_gotoAddressInput;
|
|
|
|
bool m_gotoRequested = false;
|
|
|
|
bool m_evaluateGoto = false;
|
2020-11-12 08:38:52 +00:00
|
|
|
|
2022-03-01 15:23:53 +00:00
|
|
|
u64 m_baseAddress = 0;
|
|
|
|
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;
|
2022-02-27 22:25:39 +00:00
|
|
|
std::set<pl::Pattern *> m_highlightedPatterns;
|
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
|
|
|
|
2022-02-03 23:29:47 +00:00
|
|
|
std::list<HighlightBlock> m_highlights;
|
|
|
|
|
2022-02-01 21:09:44 +00:00
|
|
|
bool m_processingImportExport = false;
|
2022-01-15 22:44:15 +00:00
|
|
|
bool m_advancedDecodingEnabled = false;
|
2022-01-09 20:27:59 +00:00
|
|
|
|
2020-11-12 08:38:52 +00:00
|
|
|
void drawSearchPopup();
|
2022-02-13 19:13:59 +00:00
|
|
|
void drawSearchInput(std::vector<char> *currBuffer, ImGuiInputTextFlags flags);
|
2022-03-01 15:18:39 +00:00
|
|
|
void performSearch(const char *buffer);
|
2022-02-13 19:13:59 +00:00
|
|
|
void performSearchNext();
|
|
|
|
void performSearchPrevious();
|
|
|
|
static int inputCallback(ImGuiInputTextCallbackData *data);
|
|
|
|
|
2020-11-12 08:38:52 +00:00
|
|
|
void drawGotoPopup();
|
2021-01-10 22:59:36 +00:00
|
|
|
void drawEditPopup();
|
2020-11-15 22:04:46 +00:00
|
|
|
|
2022-03-04 10:36:37 +00:00
|
|
|
void openFile(const std::fs::path &path);
|
2020-11-20 10:57:14 +00:00
|
|
|
|
2021-09-08 13:18:24 +00:00
|
|
|
void copyBytes() const;
|
|
|
|
void pasteBytes() const;
|
|
|
|
void copyString() const;
|
2020-11-15 23:07:42 +00:00
|
|
|
|
2021-12-23 14:11:38 +00:00
|
|
|
void registerEvents();
|
|
|
|
void registerShortcuts();
|
2022-01-23 01:28:38 +00:00
|
|
|
void registerMenuItems();
|
2020-11-10 14:26:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|