1 -- some constants people might like to tweak
2 Text_color
= {r
=0, g
=0, b
=0}
3 Cursor_color
= {r
=1, g
=0, b
=0}
4 Hyperlink_decoration_color
= {r
=0.4, g
=0.4, b
=1}
5 Stroke_color
= {r
=0, g
=0, b
=0}
6 Current_stroke_color
= {r
=0.7, g
=0.7, b
=0.7} -- in process of being drawn
7 Current_name_background_color
= {r
=1, g
=0, b
=0, a
=0.1} -- name currently being edited
8 Focus_stroke_color
= {r
=1, g
=0, b
=0} -- what mouse is hovering over
9 Highlight_color
= {r
=0.7, g
=0.7, b
=0.9} -- selected text
10 Line_number_color
= {r
=0.6, g
=0.6, b
=0.6}
11 Icon_color
= {r
=0.7, g
=0.7, b
=0.7} -- color of current mode icon in drawings
12 Help_color
= {r
=0, g
=0.5, b
=0}
13 Help_background_color
= {r
=0, g
=0.5, b
=0, a
=0.1}
19 Drawing_padding_top
= 10
20 Drawing_padding_bottom
= 10
21 Drawing_padding_height
= Drawing_padding_top
+ Drawing_padding_bottom
23 Same_point_distance
= 4 -- pixel distance at which two points are considered the same
27 -- run in both tests and a real run
28 function edit
.initialize_state(top
, left
, right
, font
, font_height
, line_height
) -- currently always draws to bottom of screen
30 -- a line is either text or a drawing
31 -- a text is a table with:
34 -- a drawing is a table with:
37 -- an array of points, and
39 -- a shape is a table containing:
41 -- an array points for mode 'freehand' (raw x,y coords; freehand drawings don't pollute the points array of a drawing)
42 -- an array vertices for mode 'polygon', 'rectangle', 'square'
43 -- p1, p2 for mode 'line'
44 -- center, radius for mode 'circle'
45 -- center, radius, start_angle, end_angle for mode 'arc'
46 -- Unless otherwise specified, coord fields are normalized; a drawing is always 256 units wide
47 -- The field names are carefully chosen so that switching modes in midstream
48 -- remembers previously entered points where that makes sense.
49 lines
= {{mode
='text', data
=''}}, -- array of lines
51 -- Lines can be too long to fit on screen, in which case they _wrap_ into
52 -- multiple _screen lines_.
54 -- rendering wrapped text lines needs some additional short-lived data per line:
55 -- startpos, the index of data the line starts rendering from, can only be >1 for topmost line on screen
56 -- screen_line_starting_pos: optional array of codepoint indices if it wraps over more than one screen line
59 -- Given wrapping, any potential location for the text cursor can be described in two ways:
60 -- * schema 1: As a combination of line index and position within a line (in utf8 codepoint units)
61 -- * schema 2: As a combination of line index, screen line index within the line, and a position within the screen line.
63 -- Most of the time we'll only persist positions in schema 1, translating to
64 -- schema 2 when that's convenient.
66 -- Make sure these coordinates are never aliased, so that changing one causes
67 -- action at a distance.
69 -- On lines that are drawings, pos will be nil.
70 screen_top1
= {line
=1, pos
=1}, -- position of start of screen line at top of screen
71 cursor1
= {line
=1, pos
=1}, -- position of cursor; must be on a text line
74 -- some extra state to compute selection between mouse press and release
77 mousepress_shift
= nil,
79 -- cursor coordinates in pixels
83 current_drawing_mode
= 'line',
84 previous_drawing_mode
= nil, -- extra state for some ephemeral modes like moving/deleting/naming points
87 font_height
= font_height
,
88 line_height
= line_height
,
91 left
= math
.floor(left
), -- left margin for text; line numbers go to the left of this
92 right
= math
.floor(right
),
104 search_backup
= nil, -- stuff to restore when cancelling search
107 end -- edit.initialize_state
109 function edit
.check_locs(State
)
110 -- if State is inconsistent (i.e. file changed by some other program),
111 -- throw away all cursor state entirely
112 if edit
.invalid1(State
, State
.screen_top1
)
113 or edit
.invalid_cursor1(State
)
114 or not edit
.cursor_on_text(State
)
115 or not Text
.le1(State
.screen_top1
, State
.cursor1
) then
116 State
.screen_top1
= {line
=1, pos
=1}
117 State
.cursor1
= {line
=1, pos
=1}
118 edit
.put_cursor_on_next_text_line(State
)
122 function edit
.invalid1(State
, loc1
)
123 if loc1
.line
> #State
.lines
then return true end
124 local l
= State
.lines
[loc1
.line
]
125 if l
.mode
~= 'text' then return false end -- pos is irrelevant to validity for a drawing line
126 return loc1
.pos
> #State
.lines
[loc1
.line
].data
129 -- cursor loc in particular differs from other locs in one way:
130 -- pos might occur just after end of line
131 function edit
.invalid_cursor1(State
)
132 local cursor1
= State
.cursor1
133 if cursor1
.line
> #State
.lines
then return true end
134 local l
= State
.lines
[cursor1
.line
]
135 if l
.mode
~= 'text' then return false end -- pos is irrelevant to validity for a drawing line
136 return cursor1
.pos
> #State
.lines
[cursor1
.line
].data
+ 1
139 function edit
.cursor_on_text(State
)
140 return State
.cursor1
.line
<= #State
.lines
141 and State
.lines
[State
.cursor1
.line
].mode
== 'text'
144 function edit
.put_cursor_on_next_text_line(State
)
146 if State
.cursor1
.line
>= #State
.lines
then
149 if State
.lines
[State
.cursor1
.line
].mode
== 'text' then
152 State
.cursor1
.line
= State
.cursor1
.line
+1
153 State
.cursor1
.pos
= 1
157 function edit
.draw(State
, hide_cursor
, show_line_numbers
)
158 State
.button_handlers
= {}
159 love
.graphics
.setFont(State
.font
)
160 App
.color(Text_color
)
161 assert(#State
.lines
== #State
.line_cache
, ('line_cache is out of date; %d elements when it should be %d'):format(#State
.line_cache
, #State
.lines
))
162 assert(Text
.le1(State
.screen_top1
, State
.cursor1
), ('screen_top (line=%d,pos=%d) is below cursor (line=%d,pos=%d)'):format(State
.screen_top1
.line
, State
.screen_top1
.pos
, State
.cursor1
.line
, State
.cursor1
.pos
))
167 for line_index
= State
.screen_top1
.line
,#State
.lines
do
168 local line
= State
.lines
[line_index
]
169 --? print('draw:', y, line_index, line)
170 if y
+ State
.line_height
> App
.screen
.height
then break end
171 if line
.mode
== 'text' then
172 --? print('text.draw', y, line_index)
174 if line_index
== State
.screen_top1
.line
then
175 startpos
= State
.screen_top1
.pos
177 if line
.data
== '' then
178 -- button to insert new drawing
179 local buttonx
= State
.left
-Margin_left
+4
180 if show_line_numbers
then
181 buttonx
= 4 -- HACK: position draw buttons at a fixed x on screen
183 button(State
, 'draw', {x
=buttonx
, y
=y
+4, w
=12,h
=12, bg
={r
=1,g
=1,b
=0},
184 icon
= icon
.insert_drawing
,
185 onpress1
= function()
186 Drawing
.before
= snapshot(State
, line_index
-1, line_index
)
187 table.insert(State
.lines
, line_index
, {mode
='drawing', y
=y
, h
=256/2, points
={}, shapes
={}, pending
={}})
188 table.insert(State
.line_cache
, line_index
, {})
189 if State
.cursor1
.line
>= line_index
then
190 State
.cursor1
.line
= State
.cursor1
.line
+1
192 record_undo_event(State
, {before
=Drawing
.before
, after
=snapshot(State
, line_index
-1, line_index
+1)})
198 y
= Text
.draw(State
, line_index
, y
, startpos
, hide_cursor
, show_line_numbers
)
200 elseif line
.mode
== 'drawing' then
201 y
= y
+Drawing_padding_top
202 Drawing
.draw(State
, line_index
, y
)
203 y
= y
+ Drawing
.pixels(line
.h
, State
.width
) + Drawing_padding_bottom
205 assert(false, ('unknown line mode %s'):format(line
.mode
))
208 if State
.search_term
then
209 Text
.draw_search_bar(State
)
213 function edit
.update(State
, dt
)
214 Drawing
.update(State
, dt
)
215 if State
.next_save
and State
.next_save
< Current_time
then
217 State
.next_save
= nil
221 function schedule_save(State
)
222 if State
.next_save
== nil then
223 State
.next_save
= Current_time
+ 3 -- short enough that you're likely to still remember what you did
227 function edit
.quit(State
)
228 -- make sure to save before quitting
229 if State
.next_save
then
231 -- give some time for the OS to flush everything to disk
232 love
.timer
.sleep(0.1)
236 function edit
.mouse_press(State
, x
,y
, mouse_button
)
237 if State
.search_term
then return end
238 State
.mouse_down
= mouse_button
239 --? print_and_log(('edit.mouse_press: cursor at %d,%d'):format(State.cursor1.line, State.cursor1.pos))
240 if mouse_press_consumed_by_any_button(State
, x
,y
, mouse_button
) then
241 -- press on a button and it returned 'true' to short-circuit
245 if y
< State
.top
then
246 State
.old_cursor1
= State
.cursor1
247 State
.old_selection1
= State
.selection1
248 State
.mousepress_shift
= App
.shift_down()
250 line
=State
.screen_top1
.line
,
251 pos
=State
.screen_top1
.pos
,
256 for line_index
,line
in ipairs(State
.lines
) do
257 if line
.mode
== 'text' then
258 if Text
.in_line(State
, line_index
, x
,y
) then
259 -- delicate dance between cursor, selection and old cursor/selection
261 -- regular press+release: sets cursor, clears selection
262 -- shift press+release:
263 -- sets selection to old cursor if not set otherwise leaves it untouched
265 -- press and hold to start a selection: sets selection on press, cursor on release
266 -- press and hold, then press shift: ignore shift
267 -- i.e. mouse_release should never look at shift state
268 --? print_and_log(('edit.mouse_press: in line %d'):format(line_index))
269 State
.old_cursor1
= State
.cursor1
270 State
.old_selection1
= State
.selection1
271 State
.mousepress_shift
= App
.shift_down()
274 pos
=Text
.to_pos_on_line(State
, line_index
, x
, y
),
278 elseif line
.mode
== 'drawing' then
279 if Drawing
.in_drawing(State
, line_index
, x
, y
, State
.left
,State
.right
) then
280 State
.lines
.current_drawing_index
= line_index
281 State
.lines
.current_drawing
= line
282 Drawing
.before
= snapshot(State
, line_index
)
283 Drawing
.mouse_press(State
, line_index
, x
,y
, mouse_button
)
289 -- still here? mouse press is below all screen lines
290 State
.old_cursor1
= State
.cursor1
291 State
.old_selection1
= State
.selection1
292 State
.mousepress_shift
= App
.shift_down()
293 State
.selection1
= Text
.final_text_loc_on_screen(State
)
296 function edit
.mouse_release(State
, x
,y
, mouse_button
)
297 if State
.search_term
then return end
298 --? print_and_log(('edit.mouse_release: cursor at %d,%d'):format(State.cursor1.line, State.cursor1.pos))
299 State
.mouse_down
= nil
300 if State
.lines
.current_drawing
then
301 Drawing
.mouse_release(State
, x
,y
, mouse_button
)
302 if Drawing
.before
then
303 record_undo_event(State
, {before
=Drawing
.before
, after
=snapshot(State
, State
.lines
.current_drawing_index
)})
308 --? print_and_log('edit.mouse_release: no current drawing')
309 if y
< State
.top
then
310 State
.cursor1
= deepcopy(State
.screen_top1
)
311 edit
.clean_up_mouse_press(State
)
315 for line_index
,line
in ipairs(State
.lines
) do
316 if line
.mode
== 'text' then
317 if Text
.in_line(State
, line_index
, x
,y
) then
318 --? print_and_log(('edit.mouse_release: in line %d'):format(line_index))
321 pos
=Text
.to_pos_on_line(State
, line_index
, x
, y
),
323 --? print_and_log(('edit.mouse_release: cursor now %d,%d'):format(State.cursor1.line, State.cursor1.pos))
324 edit
.clean_up_mouse_press(State
)
330 -- still here? mouse release is below all screen lines
331 State
.cursor1
= Text
.final_text_loc_on_screen(State
)
332 edit
.clean_up_mouse_press(State
)
333 --? print_and_log(('edit.mouse_release: finally selection %s,%s cursor %d,%d'):format(tostring(State.selection1.line), tostring(State.selection1.pos), State.cursor1.line, State.cursor1.pos))
337 function edit
.clean_up_mouse_press(State
)
338 if State
.mousepress_shift
then
339 if State
.old_selection1
.line
== nil then
340 State
.selection1
= State
.old_cursor1
342 State
.selection1
= State
.old_selection1
345 State
.old_cursor1
, State
.old_selection1
, State
.mousepress_shift
= nil
346 if eq(State
.cursor1
, State
.selection1
) then
347 State
.selection1
= {}
351 function edit
.mouse_wheel_move(State
, dx
,dy
)
353 State
.cursor1
= deepcopy(State
.screen_top1
)
354 edit
.put_cursor_on_next_text_line(State
)
355 for i
=1,math
.floor(dy
) do
359 State
.cursor1
= Text
.screen_bottom1(State
)
360 edit
.put_cursor_on_next_text_line(State
)
361 for i
=1,math
.floor(-dy
) do
367 function edit
.text_input(State
, t
)
368 --? print('text input', t)
369 if State
.search_term
then
370 State
.search_term
= State
.search_term
..t
371 Text
.search_next(State
)
372 elseif State
.lines
.current_drawing
and State
.current_drawing_mode
== 'name' then
373 local before
= snapshot(State
, State
.lines
.current_drawing_index
)
374 local drawing
= State
.lines
.current_drawing
375 local p
= drawing
.points
[drawing
.pending
.target_point
]
377 record_undo_event(State
, {before
=before
, after
=snapshot(State
, State
.lines
.current_drawing_index
)})
379 local drawing_index
, drawing
= Drawing
.current_drawing(State
)
380 if drawing_index
== nil then
381 Text
.text_input(State
, t
)
387 function edit
.keychord_press(State
, chord
, key
)
388 if State
.selection1
.line
and
389 not State
.lines
.current_drawing
and
390 -- printable character created using shift key => delete selection
391 -- (we're not creating any ctrl-shift- or alt-shift- combinations using regular/printable keys)
392 (not App
.shift_down() or utf8
.len(key
) == 1) and
393 chord
~= 'C-a' and chord
~= 'C-c' and chord
~= 'C-x' and chord
~= 'backspace' and chord
~= 'delete' and chord
~= 'C-z' and chord
~= 'C-y' and not App
.is_cursor_movement(key
) then
394 Text
.delete_selection_and_record_undo_event(State
)
396 if State
.search_term
then
397 if chord
== 'escape' then
398 State
.search_term
= nil
399 State
.cursor1
= State
.search_backup
.cursor
400 State
.screen_top1
= State
.search_backup
.screen_top
401 State
.search_backup
= nil
402 Text
.redraw_all(State
) -- if we're scrolling, reclaim all line caches to avoid memory leaks
403 elseif chord
== 'return' then
404 State
.search_term
= nil
405 State
.search_backup
= nil
406 elseif chord
== 'backspace' then
407 local len
= utf8
.len(State
.search_term
)
408 local byte_offset
= Text
.offset(State
.search_term
, len
)
409 State
.search_term
= string.sub(State
.search_term
, 1, byte_offset
-1)
410 elseif chord
== 'down' then
411 State
.cursor1
.pos
= State
.cursor1
.pos
+1
412 Text
.search_next(State
)
413 elseif chord
== 'up' then
414 Text
.search_previous(State
)
417 elseif chord
== 'C-f' then
418 State
.search_term
= ''
419 State
.search_backup
= {
420 cursor
={line
=State
.cursor1
.line
, pos
=State
.cursor1
.pos
},
421 screen_top
={line
=State
.screen_top1
.line
, pos
=State
.screen_top1
.pos
},
424 elseif chord
== 'C-=' then
425 edit
.update_font_settings(State
, State
.font_height
+2)
426 Text
.redraw_all(State
)
427 elseif chord
== 'C--' then
428 if State
.font_height
> 2 then
429 edit
.update_font_settings(State
, State
.font_height
-2)
430 Text
.redraw_all(State
)
432 elseif chord
== 'C-0' then
433 edit
.update_font_settings(State
, 20)
434 Text
.redraw_all(State
)
436 elseif chord
== 'C-z' then
437 local event
= undo_event(State
)
439 local src
= event
.before
440 State
.screen_top1
= deepcopy(src
.screen_top
)
441 State
.cursor1
= deepcopy(src
.cursor
)
442 State
.selection1
= deepcopy(src
.selection
)
443 patch(State
.lines
, event
.after
, event
.before
)
444 -- invalidate various cached bits of lines
445 State
.lines
.current_drawing
= nil
446 Text
.redraw_all(State
) -- if we're scrolling, reclaim all line caches to avoid memory leaks
449 elseif chord
== 'C-y' then
450 local event
= redo_event(State
)
452 local src
= event
.after
453 State
.screen_top1
= deepcopy(src
.screen_top
)
454 State
.cursor1
= deepcopy(src
.cursor
)
455 State
.selection1
= deepcopy(src
.selection
)
456 patch(State
.lines
, event
.before
, event
.after
)
457 -- invalidate various cached bits of lines
458 State
.lines
.current_drawing
= nil
459 Text
.redraw_all(State
) -- if we're scrolling, reclaim all line caches to avoid memory leaks
463 elseif chord
== 'C-a' then
464 State
.selection1
= {line
=1, pos
=1}
465 State
.cursor1
= {line
=#State
.lines
, pos
=utf8
.len(State
.lines
[#State
.lines
].data
)+1}
466 elseif chord
== 'C-c' then
467 local s
= Text
.selection(State
)
471 elseif chord
== 'C-x' then
472 local s
= Text
.cut_selection_and_record_undo_event(State
)
477 elseif chord
== 'C-v' then
478 -- We don't have a good sense of when to scroll, so we'll be conservative
479 -- and sometimes scroll when we didn't quite need to.
480 local before_line
= State
.cursor1
.line
481 local before
= snapshot(State
, before_line
)
482 local clipboard_data
= App
.get_clipboard()
483 for _
,code
in utf8
.codes(clipboard_data
) do
484 local c
= utf8
.char(code
)
486 Text
.insert_return(State
)
488 Text
.insert_at_cursor(State
, c
)
491 if Text
.cursor_out_of_screen(State
) then
492 Text
.snap_cursor_to_bottom_of_screen(State
, State
.left
, State
.right
)
494 record_undo_event(State
, {before
=before
, after
=snapshot(State
, before_line
, State
.cursor1
.line
)})
496 -- dispatch to drawing or text
497 elseif App
.mouse_down(1) or chord
:sub(1,2) == 'C-' then
498 local drawing_index
, drawing
= Drawing
.current_drawing(State
)
499 if drawing_index
then
500 local before
= snapshot(State
, drawing_index
)
501 Drawing
.keychord_press(State
, chord
)
502 record_undo_event(State
, {before
=before
, after
=snapshot(State
, drawing_index
)})
505 elseif chord
== 'escape' and not App
.mouse_down(1) then
506 for _
,line
in ipairs(State
.lines
) do
507 if line
.mode
== 'drawing' then
508 line
.show_help
= false
511 elseif State
.lines
.current_drawing
and State
.current_drawing_mode
== 'name' then
512 if chord
== 'return' then
513 State
.current_drawing_mode
= State
.previous_drawing_mode
514 State
.previous_drawing_mode
= nil
516 local before
= snapshot(State
, State
.lines
.current_drawing_index
)
517 local drawing
= State
.lines
.current_drawing
518 local p
= drawing
.points
[drawing
.pending
.target_point
]
519 if chord
== 'escape' then
521 record_undo_event(State
, {before
=before
, after
=snapshot(State
, State
.lines
.current_drawing_index
)})
522 elseif chord
== 'backspace' then
523 local len
= utf8
.len(p
.name
)
525 local byte_offset
= Text
.offset(p
.name
, len
-1)
526 if len
== 1 then byte_offset
= 0 end
527 p
.name
= string.sub(p
.name
, 1, byte_offset
)
528 record_undo_event(State
, {before
=before
, after
=snapshot(State
, State
.lines
.current_drawing_index
)})
534 Text
.keychord_press(State
, chord
)
538 function edit
.key_release(State
, key
, scancode
)
541 function edit
.update_font_settings(State
, font_height
)
542 State
.font_height
= font_height
543 State
.font
= love
.graphics
.newFont(State
.font_height
)
544 State
.line_height
= math
.floor(font_height
*1.3)
547 --== some methods for tests
549 -- Insulate tests from some key globals so I don't have to change the vast
550 -- majority of tests when they're modified for the real app.
551 Test_margin_left
= 25
552 Test_margin_right
= 0
554 function edit
.initialize_test_state()
555 -- if you change these values, tests will start failing
556 return edit
.initialize_state(
559 App
.screen
.width
- Test_margin_right
,
560 love
.graphics
.getFont(),
565 -- all text_input events are also keypresses
566 -- TODO: handle chords of multiple keys
567 function edit
.run_after_text_input(State
, t
)
568 edit
.keychord_press(State
, t
)
569 edit
.text_input(State
, t
)
570 edit
.key_release(State
, t
)
571 App
.screen
.contents
= {}
572 edit
.update(State
, 0)
576 -- not all keys are text_input
577 function edit
.run_after_keychord(State
, chord
, key
)
578 edit
.keychord_press(State
, chord
, key
)
579 edit
.key_release(State
, key
)
580 App
.screen
.contents
= {}
581 edit
.update(State
, 0)
585 function edit
.run_after_mouse_click(State
, x
,y
, mouse_button
)
586 App
.fake_mouse_press(x
,y
, mouse_button
)
587 edit
.mouse_press(State
, x
,y
, mouse_button
)
589 App
.fake_mouse_release(x
,y
, mouse_button
)
590 edit
.mouse_release(State
, x
,y
, mouse_button
)
591 App
.screen
.contents
= {}
592 edit
.update(State
, 0)
596 function edit
.run_after_mouse_press(State
, x
,y
, mouse_button
)
597 App
.fake_mouse_press(x
,y
, mouse_button
)
598 edit
.mouse_press(State
, x
,y
, mouse_button
)
599 App
.screen
.contents
= {}
600 edit
.update(State
, 0)
604 function edit
.run_after_mouse_release(State
, x
,y
, mouse_button
)
605 App
.fake_mouse_release(x
,y
, mouse_button
)
606 edit
.mouse_release(State
, x
,y
, mouse_button
)
607 App
.screen
.contents
= {}
608 edit
.update(State
, 0)