1 -- undo/redo by managing the sequence of events in the current session
2 -- based on https://github.com/akkartik/mu1/blob/master/edit/012-editor-undo.mu
4 -- Incredibly inefficient; we make a copy of lines on every single keystroke.
5 -- The hope here is that we're either editing small files or just reading large files.
6 -- TODO: highlight stuff inserted by any undo/redo operation
7 -- TODO: coalesce multiple similar operations
9 function record_undo_event(State
, data
)
10 State
.history
[State
.next_history
] = data
11 State
.next_history
= State
.next_history
+1
12 for i
=State
.next_history
,#State
.history
do
13 State
.history
[i
] = nil
17 function undo_event(State
)
18 if State
.next_history
> 1 then
19 --? print('moving to history', State.next_history-1)
20 State
.next_history
= State
.next_history
-1
21 local result
= State
.history
[State
.next_history
]
26 function redo_event(State
)
27 if State
.next_history
<= #State
.history
then
28 --? print('restoring history', State.next_history+1)
29 local result
= State
.history
[State
.next_history
]
30 State
.next_history
= State
.next_history
+1
35 -- Copy all relevant global state.
36 -- Make copies of objects; the rest of the app may mutate them in place, but undo requires immutable histories.
37 function snapshot(State
, s
,e
)
38 -- Snapshot everything by default, but subset if requested.
43 assert(#State
.lines
> 0)
44 if s
< 1 then s
= 1 end
45 if s
> #State
.lines
then s
= #State
.lines
end
46 if e
< 1 then e
= 1 end
47 if e
> #State
.lines
then e
= #State
.lines
end
48 -- compare with App.initialize_globals
50 screen_top
=deepcopy(State
.screen_top1
),
51 selection
=deepcopy(State
.selection1
),
52 cursor
=deepcopy(State
.cursor1
),
53 current_drawing_mode
=Drawing_mode
,
54 previous_drawing_mode
=State
.previous_drawing_mode
,
58 -- no filename; undo history is cleared when filename changes
60 -- deep copy lines without cached stuff like text fragments
62 local line
= State
.lines
[i
]
63 if line
.mode
== 'text' then
64 table.insert(event
.lines
, {mode
='text', data
=line
.data
, dataB
=line
.dataB
})
65 elseif line
.mode
== 'drawing' then
66 local points
=deepcopy(line
.points
)
67 --? print('copying', line.points, 'with', #line.points, 'points into', points)
68 local shapes
=deepcopy(line
.shapes
)
69 --? print('copying', line.shapes, 'with', #line.shapes, 'shapes into', shapes)
70 table.insert(event
.lines
, {mode
='drawing', h
=line
.h
, points
=points
, shapes
=shapes
, pending
={}})
71 --? table.insert(event.lines, {mode='drawing', h=line.h, points=deepcopy(line.points), shapes=deepcopy(line.shapes), pending={}})
80 function patch(lines
, from
, to
)
81 --? if #from.lines == 1 and #to.lines == 1 then
82 --? assert(from.start_line == from.end_line)
83 --? assert(to.start_line == to.end_line)
84 --? assert(from.start_line == to.start_line)
85 --? lines[from.start_line] = to.lines[1]
88 assert(from
.start_line
== to
.start_line
)
89 for i
=from
.end_line
,from
.start_line
,-1 do
90 table.remove(lines
, i
)
92 assert(#to
.lines
== to
.end_line
-to
.start_line
+1)
94 table.insert(lines
, to
.start_line
+i
-1, to
.lines
[i
])
98 function patch_placeholders(line_cache
, from
, to
)
99 assert(from
.start_line
== to
.start_line
)
100 for i
=from
.end_line
,from
.start_line
,-1 do
101 table.remove(line_cache
, i
)
103 assert(#to
.lines
== to
.end_line
-to
.start_line
+1)
105 table.insert(line_cache
, to
.start_line
+i
-1, {})
109 -- https://stackoverflow.com/questions/640642/how-do-you-copy-a-lua-table-by-value/26367080#26367080
110 function deepcopy(obj
, seen
)
111 if type(obj
) ~= 'table' then return obj
end
112 if seen
and seen
[obj
] then return seen
[obj
] end
114 local result
= setmetatable({}, getmetatable(obj
))
116 for k
,v
in pairs(obj
) do
117 result
[deepcopy(k
, s
)] = deepcopy(v
, s
)
122 function minmax(a
, b
)
123 return math
.min(a
,b
), math
.max(a
,b
)