Undoable action for dungeon room object edits. More...
#include <dungeon_undo_actions.h>


Public Types | |
| using | RestoreFn |
Public Member Functions | |
| DungeonObjectsAction (int room_id, std::vector< zelda3::RoomObject > before, std::vector< zelda3::RoomObject > after, RestoreFn restore) | |
| absl::Status | Undo () override |
| absl::Status | Redo () override |
| std::string | Description () const override |
| Human-readable description (e.g., "Paint 12 tiles on map 5") | |
| size_t | MemoryUsage () const override |
| Approximate memory footprint for budget enforcement. | |
| bool | CanMergeWith (const UndoAction &) const override |
Public Member Functions inherited from yaze::editor::UndoAction | |
| virtual | ~UndoAction ()=default |
| virtual void | MergeWith (UndoAction &) |
Private Attributes | |
| int | room_id_ |
| std::vector< zelda3::RoomObject > | before_ |
| std::vector< zelda3::RoomObject > | after_ |
| RestoreFn | restore_ |
Undoable action for dungeon room object edits.
Captures a full snapshot of a room's tile objects before and after an editing operation. Undo restores the before-state, Redo restores the after-state, using a caller-provided restore callback that applies the snapshot back into the room.
Definition at line 28 of file dungeon_undo_actions.h.
Definition at line 30 of file dungeon_undo_actions.h.
|
inline |
Definition at line 33 of file dungeon_undo_actions.h.
|
inlineoverridevirtual |
Implements yaze::editor::UndoAction.
Definition at line 42 of file dungeon_undo_actions.h.
|
inlineoverridevirtual |
Implements yaze::editor::UndoAction.
Definition at line 50 of file dungeon_undo_actions.h.
|
inlineoverridevirtual |
Human-readable description (e.g., "Paint 12 tiles on map 5")
Implements yaze::editor::UndoAction.
Definition at line 58 of file dungeon_undo_actions.h.
References room_id_.
|
inlineoverridevirtual |
Approximate memory footprint for budget enforcement.
Reimplemented from yaze::editor::UndoAction.
Definition at line 62 of file dungeon_undo_actions.h.
|
inlineoverridevirtual |
Whether this action can merge with the previous action on the stack. Called only when both actions have the same concrete type.
Reimplemented from yaze::editor::UndoAction.
Definition at line 67 of file dungeon_undo_actions.h.
|
private |
Definition at line 74 of file dungeon_undo_actions.h.
Referenced by Description(), Redo(), and Undo().
|
private |
Definition at line 75 of file dungeon_undo_actions.h.
Referenced by MemoryUsage(), and Undo().
|
private |
Definition at line 76 of file dungeon_undo_actions.h.
Referenced by MemoryUsage(), and Redo().
|
private |
Definition at line 77 of file dungeon_undo_actions.h.