2020-11-10 15:26:38 +01:00
|
|
|
#pragma once
|
|
|
|
|
2021-01-13 17:28:27 +01:00
|
|
|
#include <hex/views/view.hpp>
|
2021-12-07 22:47:41 +01:00
|
|
|
#include <hex/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>
|
|
|
|
|
2021-12-07 22:47:41 +01:00
|
|
|
namespace hex::prv { class Provider; }
|
|
|
|
|
|
|
|
|
|
|
|
namespace hex::plugin::builtin {
|
2020-11-10 15:26:38 +01:00
|
|
|
|
2020-11-11 09:28:44 +01:00
|
|
|
|
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;
|
2020-11-10 15:26:38 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
MemoryEditor m_memoryEditor;
|
2020-11-12 21:20:51 +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;
|
|
|
|
|
2022-01-22 22:37:52 +01:00
|
|
|
i64 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;
|
|
|
|
|
2022-01-22 22:37:52 +01:00
|
|
|
i64 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;
|
2022-01-12 22:02:47 +01:00
|
|
|
std::set<pl::PatternData*> m_highlightedPatterns;
|
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
|
|
|
|
2022-01-09 21:27:59 +01:00
|
|
|
bool m_processingImportExport = false;
|
2022-01-15 23:44:15 +01:00
|
|
|
bool m_advancedDecodingEnabled = false;
|
2022-01-09 21:27:59 +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
|
|
|
|
2022-01-16 01:51:31 +01:00
|
|
|
void openFile(const fs::path &path);
|
2020-11-20 11:57:14 +01:00
|
|
|
|
2021-09-08 15:18:24 +02:00
|
|
|
void copyBytes() const;
|
|
|
|
void pasteBytes() const;
|
|
|
|
void copyString() const;
|
2020-11-16 00:07:42 +01:00
|
|
|
|
2021-12-23 15:11:38 +01:00
|
|
|
void registerEvents();
|
|
|
|
void registerShortcuts();
|
2020-11-10 15:26:38 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|