mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-08-21 15:43:45 +08:00
121 lines
2.9 KiB
C++
121 lines
2.9 KiB
C++
#pragma once
|
|
|
|
#include <functional>
|
|
#include <memory>
|
|
#include <string>
|
|
#include <utility>
|
|
#include <vector>
|
|
|
|
#include <QObject>
|
|
|
|
#include "tools/cabana/dbc/dbcmanager.h"
|
|
#include "tools/cabana/streams/abstractstream.h"
|
|
|
|
class UndoCommand {
|
|
public:
|
|
virtual ~UndoCommand() = default;
|
|
virtual void undo() = 0;
|
|
virtual void redo() = 0;
|
|
std::string text;
|
|
};
|
|
|
|
class UndoStack {
|
|
public:
|
|
struct Callbacks {
|
|
std::function<void()> index_changed;
|
|
std::function<void(bool)> clean_changed;
|
|
};
|
|
|
|
void push(UndoCommand *cmd); // takes ownership and calls redo()
|
|
void undo();
|
|
void redo();
|
|
void clear();
|
|
void setClean();
|
|
bool isClean() const { return clean_index_ == index_; }
|
|
bool canUndo() const { return index_ > 0; }
|
|
bool canRedo() const { return index_ < (int)commands_.size(); }
|
|
std::string undoText() const { return canUndo() ? commands_[index_ - 1]->text : ""; }
|
|
std::string redoText() const { return canRedo() ? commands_[index_]->text : ""; }
|
|
void setCallbacks(Callbacks callbacks) { callbacks_ = std::move(callbacks); }
|
|
static UndoStack *instance();
|
|
|
|
private:
|
|
void setIndex(int index);
|
|
std::vector<std::unique_ptr<UndoCommand>> commands_;
|
|
int index_ = 0;
|
|
int clean_index_ = 0;
|
|
Callbacks callbacks_;
|
|
};
|
|
|
|
// emits Qt signals for the global undo stack
|
|
class QtUndoNotifier : public QObject {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit QtUndoNotifier(QObject *parent = nullptr);
|
|
|
|
signals:
|
|
void indexChanged();
|
|
void cleanChanged(bool clean);
|
|
};
|
|
|
|
QtUndoNotifier *undoNotifier();
|
|
|
|
class EditMsgCommand : public UndoCommand {
|
|
public:
|
|
EditMsgCommand(const MessageId &id, const std::string &name, int size, const std::string &node,
|
|
const std::string &comment);
|
|
void undo() override;
|
|
void redo() override;
|
|
|
|
private:
|
|
const MessageId id;
|
|
std::string old_name, new_name, old_comment, new_comment, old_node, new_node;
|
|
int old_size = 0, new_size = 0;
|
|
};
|
|
|
|
class RemoveMsgCommand : public UndoCommand {
|
|
public:
|
|
RemoveMsgCommand(const MessageId &id);
|
|
void undo() override;
|
|
void redo() override;
|
|
|
|
private:
|
|
const MessageId id;
|
|
cabana::Msg message;
|
|
};
|
|
|
|
class AddSigCommand : public UndoCommand {
|
|
public:
|
|
AddSigCommand(const MessageId &id, const cabana::Signal &sig);
|
|
void undo() override;
|
|
void redo() override;
|
|
|
|
private:
|
|
const MessageId id;
|
|
bool msg_created = false;
|
|
cabana::Signal signal = {};
|
|
};
|
|
|
|
class RemoveSigCommand : public UndoCommand {
|
|
public:
|
|
RemoveSigCommand(const MessageId &id, const cabana::Signal *sig);
|
|
void undo() override;
|
|
void redo() override;
|
|
|
|
private:
|
|
const MessageId id;
|
|
std::vector<cabana::Signal> sigs;
|
|
};
|
|
|
|
class EditSignalCommand : public UndoCommand {
|
|
public:
|
|
EditSignalCommand(const MessageId &id, const cabana::Signal *sig, const cabana::Signal &new_sig);
|
|
void undo() override;
|
|
void redo() override;
|
|
|
|
private:
|
|
const MessageId id;
|
|
std::vector<std::pair<cabana::Signal, cabana::Signal>> sigs; // {old_sig, new_sig}
|
|
};
|