2021-09-21 02:48:41 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <hex.hpp>
|
|
|
|
|
2022-02-01 18:09:40 +01:00
|
|
|
#include <hex/ui/view.hpp>
|
2023-11-18 14:50:43 +01:00
|
|
|
#include <hex/api/task_manager.hpp>
|
2021-09-21 02:48:41 +02:00
|
|
|
|
|
|
|
#include <array>
|
2021-09-21 19:54:13 +02:00
|
|
|
#include <vector>
|
2021-09-21 02:48:41 +02:00
|
|
|
|
2023-02-15 17:01:36 +01:00
|
|
|
#include "ui/hex_editor.hpp"
|
|
|
|
|
2024-01-21 18:39:13 +01:00
|
|
|
namespace hex::plugin::diffing {
|
2021-09-21 02:48:41 +02:00
|
|
|
|
2023-11-21 13:47:50 +01:00
|
|
|
class ViewDiff : public View::Window {
|
2021-09-21 02:48:41 +02:00
|
|
|
public:
|
2021-09-21 19:54:13 +02:00
|
|
|
ViewDiff();
|
|
|
|
~ViewDiff() override;
|
2021-09-21 02:48:41 +02:00
|
|
|
|
|
|
|
void drawContent() override;
|
2023-11-21 13:47:50 +01:00
|
|
|
ImGuiWindowFlags getWindowFlags() const override { return ImGuiWindowFlags_NoScrollbar | ImGuiWindowFlags_NoScrollWithMouse; }
|
2021-09-21 02:48:41 +02:00
|
|
|
|
2023-02-16 08:53:05 +01:00
|
|
|
public:
|
2023-02-15 17:01:36 +01:00
|
|
|
struct Column {
|
|
|
|
ui::HexEditor hexEditor;
|
2024-01-21 18:39:13 +01:00
|
|
|
ContentRegistry::Diffing::DiffTree diffTree;
|
|
|
|
|
2023-02-15 17:01:36 +01:00
|
|
|
int provider = -1;
|
|
|
|
i32 scrollLock = 0;
|
|
|
|
};
|
|
|
|
|
2023-08-29 12:14:12 +02:00
|
|
|
private:
|
2023-11-10 20:47:08 +01:00
|
|
|
std::function<std::optional<color_t>(u64, const u8*, size_t)> createCompareFunction(size_t otherIndex) const;
|
2023-08-29 12:14:12 +02:00
|
|
|
void analyze(prv::Provider *providerA, prv::Provider *providerB);
|
|
|
|
|
2023-02-15 17:01:36 +01:00
|
|
|
private:
|
|
|
|
std::array<Column, 2> m_columns;
|
2021-09-21 19:54:13 +02:00
|
|
|
|
2023-02-15 17:01:36 +01:00
|
|
|
TaskHolder m_diffTask;
|
|
|
|
std::atomic<bool> m_analyzed = false;
|
2024-01-21 18:39:13 +01:00
|
|
|
ContentRegistry::Diffing::Algorithm *m_algorithm = nullptr;
|
2021-09-21 02:48:41 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|