pengui.png
[Hide] (174.3KB, 767x452) >>15493
>I'm concerned that I don't know how undo is supposed to work.
Instead of storing a copy of the whole image for each action, how about something like:
>Load your image to memory
>Duplicate it and use the new copy as the base of your undo queue
>On each change to the image, store the changed data, their position and extent as an entry to the queue
>Then to undo, apply all the changes from the queue image base to the requested queue position
>If the queue is full, apply the firstmost change to the queue's base image
Think of these as instructions.
You can also extend this to other actions like selections.
For example, a queue in memory may look like this:
const QueueInstruction instructions[] = {
{
.type = FullRegion,
.extent = { .x = 1000, .y = 1000 },
.format = ...,
.data = ...,
},
{
.type = PartialRegion,
.offset = { .x = 400, .y = 500 },
.extent = { .width = 100, .height = 200 },
.data = ...,
},
{
.type = PartialRegion,
.offset = { .x = 900, .y = 730 },
.extent = { .width = 24, .height = 47 },
.data = ...,
},
{
.type = Selection,
.offset = { .x = 239, .y = 444 },
.extent = { .width = 99, .height = 22 },
},
};