2020-11-10 15:26:38 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
#include <shobjidl.h>
|
|
|
|
|
|
|
|
#include "utils.hpp"
|
|
|
|
#include "views/view.hpp"
|
|
|
|
|
|
|
|
#include "imgui_memory_editor.h"
|
|
|
|
|
|
|
|
#include <tuple>
|
|
|
|
#include <random>
|
|
|
|
#include <vector>
|
|
|
|
|
2020-11-10 21:31:04 +01:00
|
|
|
#include "views/highlight.hpp"
|
|
|
|
|
2020-11-10 15:26:38 +01:00
|
|
|
namespace hex {
|
|
|
|
|
2020-11-11 09:28:44 +01:00
|
|
|
namespace prv { class Provider; }
|
|
|
|
|
2020-11-10 15:26:38 +01:00
|
|
|
class ViewHexEditor : public View {
|
|
|
|
public:
|
2020-11-11 09:18:35 +01:00
|
|
|
ViewHexEditor(prv::Provider* &dataProvider, std::vector<Highlight> &highlights);
|
2020-11-11 09:28:44 +01:00
|
|
|
~ViewHexEditor() override;
|
2020-11-10 15:26:38 +01:00
|
|
|
|
2020-11-11 09:28:44 +01:00
|
|
|
void createView() override;
|
|
|
|
void createMenu() override;
|
2020-11-11 14:42:01 +01:00
|
|
|
bool handleShortcut(int key, int mods) override;
|
2020-11-10 15:26:38 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
MemoryEditor m_memoryEditor;
|
|
|
|
|
2020-11-11 09:18:35 +01:00
|
|
|
prv::Provider* &m_dataProvider;
|
2020-11-10 21:31:04 +01:00
|
|
|
std::vector<Highlight> &m_highlights;
|
2020-11-11 14:42:01 +01:00
|
|
|
|
|
|
|
char m_searchBuffer[0xFFFF] = { 0 };
|
|
|
|
s64 m_lastSearchIndex = 0;
|
|
|
|
std::vector<std::pair<u64, u64>> m_lastSearch;
|
2020-11-12 09:38:52 +01:00
|
|
|
u64 m_gotoAddress = 0;
|
|
|
|
|
|
|
|
|
|
|
|
void drawSearchPopup();
|
|
|
|
void drawGotoPopup();
|
2020-11-10 15:26:38 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|