1
0
mirror of synced 2024-11-18 04:47:12 +01:00
ImHex/include/views/view_hexeditor.hpp

68 lines
1.8 KiB
C++
Raw Normal View History

#pragma once
#include "helpers/utils.hpp"
#include "views/view.hpp"
#include "imgui_memory_editor.h"
#include "ImGuiFileBrowser.h"
#include <tuple>
#include <random>
#include <vector>
#include "lang/pattern_data.hpp"
2020-11-10 21:31:04 +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);
class ViewHexEditor : public View {
public:
ViewHexEditor(std::vector<lang::PatternData*> &patternData);
2020-11-11 09:28:44 +01:00
~ViewHexEditor() override;
void drawContent() override;
void drawMenu() override;
2020-11-11 14:42:01 +01:00
bool handleShortcut(int key, int mods) override;
private:
MemoryEditor m_memoryEditor;
imgui_addons::ImGuiFileBrowser m_fileBrowser;
std::vector<lang::PatternData*> &m_patternData;
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;
s64 m_gotoAddress = 0;
std::vector<u8> m_dataToSave;
2020-12-01 02:21:40 +01:00
std::string m_loaderScriptScriptPath;
std::string m_loaderScriptFilePath;
void drawSearchPopup();
void drawGotoPopup();
2020-11-15 23:04:46 +01:00
2020-11-17 13:58:50 +01:00
void openFile(std::string path);
bool saveToFile(std::string path, const std::vector<u8>& data);
bool loadFromFile(std::string path, std::vector<u8>& data);
enum class Language { C, Cpp, CSharp, Rust, Python, Java, JavaScript };
2020-11-16 00:07:42 +01:00
void copyBytes();
void copyString();
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
};
}