-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtext_input.cpp
1374 lines (1128 loc) · 41.8 KB
/
text_input.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#include "text_input.h"
#include "time_info.h"
#include "events.h"
#include "file_utils.h"
#include "draw.h"
#include "ui.h" // For Rect struct, and Text_Input_State
#include "clipboard.h"
// @Cleanup: Move this along with the unicode functions inside font.cpp so another file:
String character_utf32_to_utf8(u32 utf32) // Temporary storage.
{
// @Note: We swap the order around because memcpy is little-endian on our machine so it swaps around the bytes.
u32 utf8;
i64 nbytes = 0; // In order to allocate the string with the same size.
if (utf32 < 0x80)
{
utf8 = utf32;
nbytes = 1;
}
else if (utf32 < 0x800)
{
utf8 = ((0x80 | (utf32 & 0x3f)) << 8)
| (0xc0 | (utf32 >> 6));
nbytes = 2;
}
else if (utf32 < 0x10000)
{
utf8 = ((0x80 | (utf32 & 0x3f)) << 16)
| ((0x80 | ((utf32 >> 6) & 0x3f)) << 8)
| (0xe0 | (utf32 >> 12));
nbytes = 3;
}
else if (utf32 < 0x200000)
{
utf8 = ((0x80 | (utf32 & 0x3f)) << 24)
| ((0x80 | ((utf32 >> 6) & 0x3f)) << 16)
| ((0x80 | ((utf32 >> 12) & 0x3f)) << 8)
| (0xf0 | (utf32 >> 18));
nbytes = 4;
}
auto result = talloc_string(nbytes);
auto dest = result.data;
auto src = reinterpret_cast<u8*>(&utf8);
memcpy(dest, src, nbytes);
return result;
}
void init(Text_Input *input)
{
input->text.data = input->input_buffer.data;
input->text.count = 0;
input->insert_point = 0;
input->initted = true;
}
void clamp_insert_point(Text_Input *input)
{
Clamp(&input->insert_point, 0, static_cast<i32>(input->text.count));
}
// void set_bounds(Text_Input *input, f32 x0, f32 y0, f32 x1, f32 y1)
// {
// input->x0 = static_cast<i32>(x0);
// input->y0 = static_cast<i32>(y0);
// input->x1 = static_cast<i32>(x1);
// input->y1 = static_cast<i32>(y1);
// }
inline
i32 get_match_length(RArr<String> match_array, i32 n)
{
if (!match_array.count) return 0;
if (match_array.count == 1) return match_array[0].count;
n -= 1;
while (true)
{
n += 1;
if (n == match_array[0].count) break;
auto c = match_array[0][n];
// All the matches in match_array have the same from 0 to n-1
auto all_match = true;
for (auto cmd : match_array)
{
if ((n >= cmd.count) || (cmd[n] != c))
{
all_match = false;
break;
}
}
if (!all_match) break;
}
return n;
}
void reset_auto_complete(Text_Input *input)
{
array_reset(&input->match_array); // Avoid leaking.
if (input->auto_complete)
{
if (input->text)
{
auto longest_match = input->auto_complete(input->text, input->auto_complete_data, &input->match_array);
input->longest_match = longest_match;
input->match_length = get_match_length(input->match_array, input->text.count);
input->match_selection = 0;
// If our text is an exact match for array[0], then one of the completions
// is our exact string .. but don't use that as the first completion, since
// we want to give the user some visual information that other completions
// exists. So just rotate our selection to the next one.
if ((input->match_array.count > 1) && (input->text == input->match_array[0]))
{
input->match_selection += 1;
}
}
}
}
// Update matches while trying to preserve the current selection.
void update_auto_complete(Text_Input *input)
{
input->tab_pressed = false;
if (input->match_array)
{
// Try to preserve previous selection.
auto last_match = input->match_array[input->match_selection];
reset_auto_complete(input);
// Restore previous selection.
i64 it_index = 0;
for (auto it : input->match_array)
{
if (it == last_match) input->match_selection = it_index;
it_index += 1;
}
}
else
{
// There was no selection, just auto complete.
reset_auto_complete(input);
}
}
void set_input(Text_Input *input, String s);
// Tab auto completes up to match_length.
void advance_auto_complete(Text_Input *input, bool reverse)
{
if (input->match_array)
{
auto new_text = input->match_array[input->match_selection];
new_text.count -= new_text.count - input->match_length; // @Investigate :Autocomplete
if (input->text != new_text)
{
set_input(input, new_text);
}
else
{
if (reverse)
{
input->match_selection -= 1;
if (input->match_selection < 0) input->match_selection = input->match_array.count;
}
else
{
input->match_selection += 1;
if (input->match_selection == input->match_array.count) input->match_selection = 0;
}
}
}
}
// Accept the currently selected match. Returns false if there's nothing to accept, or already accepted.
bool accept_auto_complete(Text_Input *input)
{
if (!input->match_array) return false;
if (input->match_array[input->match_selection] == input->text) return false;
set_input(input, input->match_array[input->match_selection]);
return true;
}
void set_input(Text_Input *input, String s)
{
if (!input->initted) init(input);
if (s.count >= input->input_buffer.count) s.count = input->input_buffer.count - 1; // Should we even do the -1 for the cursor
u8 *dest = input->input_buffer.data;
u8 *src = s.data;
memcpy(dest, src, s.count);
input->text.count = s.count;
input->insert_point = s.count;
update_auto_complete(input);
}
void refresh_input_from_history(Text_Input *input)
{
Clamp(&input->command_history_index, 0, static_cast<i32>(input->command_history.count));
if (input->command_history_index == input->command_history.count)
{
set_input(input, input->last_saved_input);
}
else
{
set_input(input, input->command_history[input->command_history_index]);
}
}
void activate(Text_Input *input)
{
input->active = true;
}
void deactivate(Text_Input *input)
{
input->active = false;
}
inline
void deselect(Selection *selection)
{
selection->active = false;
}
inline
void start_selecting(Text_Input *input)
{
deselect(&input->selection);
input->cursor_tracking_mouse = true;
// @Robustness: We do not have access to the hash for the widget here,
// because that is only available in draw (because it depends on the source
// code location). We could save the last hash or something... but, without that
// we cannot do any computations hereabout the deadzones. So we set a boolean flag
// that indicates that we should do the computation in the draw procedure (it would
// be preferred if we could set this flag on the state struct).
// In general, this shows that the UI has both immediate mode and retained mode aspect.
// This is apt to change.
input->did_initial_mouse_click_so_check_for_deadzone_change = true;
}
// bool is_active(Text_Input *input) return input->active;
// String get_result(Text_Input *input) return input->text;
void reset(Text_Input *input)
{
deselect(&input->selection);
init(input);
activate(input);
input->entered = false;
input->escaped = false;
input->shift_plus_enter_was_pressed = false;
input->cursor_tracking_mouse = false;
}
void set_text(Text_Input *input, String text) // This function does not make the insert_point jumps to the end.
{
if (!input->initted) init(input);
input->text.count = 0;
input->insert_point = 0;
void append_text(Text_Input *input, String to_add);
append_text(input, text);
}
void append_text(Text_Input *input, String text)
{
auto bytes_available = input->input_buffer.count - input->text.count;
auto nbytes = std::min(bytes_available, text.count);
u8 *dest = input->input_buffer.data;
u8 *src = text.data;
memcpy(dest + input->text.count, src, nbytes);
input->text.count += nbytes;
input->insert_point += nbytes; // @Bug @Hack: Assume insert_point is at the end. If we want this to be more robust, we could just insert at the point here as we do when pasting.
update_auto_complete(input);
}
String get_selection(Text_Input *input); // Temporary Storage
void replace_selection(Text_Input *input, String s);
bool non_empty(Selection selection);
bool insert_text(Text_Input *input, String utf8_text)
{
// If not enough room, none of the text is inserted. Usually called on character
// at a time by the text input's handler.
if ((input->text.count + utf8_text.count) > input->input_buffer.count) return false; // Not enough room!
// Delete the current selected block if we are typing new stuff.
if (non_empty(input->selection))
{
replace_selection(input, String(""));
}
clamp_insert_point(input);
if (input->insert_point < input->text.count)
{
// Copy right-to-left so that we don't wipe out or own text
// for small inserts.
auto i = input->text.count;
while (i > input->insert_point)
{
input->input_buffer[i] = input->input_buffer[i - utf8_text.count];
i -= 1;
}
}
memcpy(input->input_buffer.data + input->insert_point, utf8_text.data, utf8_text.count);
input->text.count += utf8_text.count;
input->insert_point += utf8_text.count;
update_auto_complete(input);
return true;
}
// @Cleanup or @Fixme: Unused...
void start_text_input(Text_Input *input, String text)
{
// reset_all_text_inputs(input); // @Incomplete: Will be from editor.cpp
reset(input);
input->active = true;
input->auto_complete = NULL;
input->auto_complete_data = NULL;
// array_reset(&input.match_array); // ????
if (text != String("(null)")) // @Hardcoded:
{
append_text(input, text);
}
}
inline
void reset_or_begin_selection(Text_Input *input, bool do_begin_select)
{
auto selection = &input->selection;
if (do_begin_select)
{
if (!selection->active)
{
auto insert_point = input->insert_point;
selection->active = true;
selection->start_character = insert_point;
selection->end_character = insert_point;
}
}
else
{
selection->active = false;
}
}
inline
void update_selection_after_cursor_movement(Text_Input *input)
{
auto selection = &input->selection;
if (selection->active) selection->end_character = input->insert_point;
}
inline
bool non_empty(Selection selection)
{
return selection.active && (selection.start_character != selection.end_character);
}
i32 seek_left_one_utf8_character(String s, i32 _point)
{
auto point = _point - 1;
while (point > 0)
{
auto c = s[point];
if ((192 & c) != 128) return point;
point -= 1;
}
return 0;
}
my_pair<f32 /*y0*/, f32 /*y1*/> get_y_range(Dynamic_Font *font, f32 text_y)
{
constexpr auto FONT_CURSOR_EXTRA_HEIGHT = 0.1f; // @Hardcode @Cleanup
auto y0 = text_y + font->typical_descender;
auto y1 = y0 + font->typical_ascender + FONT_CURSOR_EXTRA_HEIGHT * font->character_height;
y1 += 1; // To inlcude the top pixel, rather than limit just before the top pixel.
auto padding = (y1 - y0) / 8.0f;
// We tend to need more extra padding on the top and bottom,
// since most letters don't have descenders.
y0 -= padding;
y1 += padding * 2;
return {y0, y1};
}
//
// Below are the text editing routines mapped to different hotkeys.
// This is so that we can call them from our own code without having
// to go through the UI to do so.
//
inline
void input_proc_select_all(Text_Input *input)
{
auto selection = &input->selection;
selection->active = true;
selection->start_character = 0;
selection->end_character = input->text.count;
}
inline
void input_proc_copy_selection_to_clipboard(Text_Input *input, bool cut_selection)
{
if (non_empty(input->selection))
{
auto sel = get_selection(input); // This does not make new memory.
os_clipboard_set_text(sel);
if (cut_selection) replace_selection(input, String(""));
}
}
inline
void input_proc_insert_clipboard_at_cursor(Text_Input *input)
{
auto pasted_text = os_clipboard_get_text();
// Sanitize the pasted text.
for (i64 i = 0; i < pasted_text.count; ++i)
{
if (pasted_text[i] == '\n') pasted_text.data[i] = ' ';
}
if (non_empty(input->selection))
{
replace_selection(input, String(""));
}
if ((input->text.count + pasted_text.count) <= input->input_buffer.count)
{
auto pre = input->text;
pre.count = input->insert_point;
String post;
post.data = input->text.data + input->insert_point;
post.count = input->text.count - input->insert_point;
auto combined = join(3, pre, pasted_text, post);
set_input(input, combined);
input->insert_point = pre.count + pasted_text.count;
}
}
inline
void input_proc_move_cursor_left(Text_Input *input, bool do_selection)
{
reset_or_begin_selection(input, do_selection);
auto prev_point = seek_left_one_utf8_character(input->text, input->insert_point);
input->insert_point = prev_point;
clamp_insert_point(input);
update_selection_after_cursor_movement(input);
}
inline
void input_proc_move_cursor_right(Text_Input *input, bool do_selection)
{
reset_or_begin_selection(input, do_selection);
if (input->insert_point < input->text.count)
{
auto nbytes = utf8_char_length(input->text[input->insert_point]);
input->insert_point += nbytes;
clamp_insert_point(input);
}
update_selection_after_cursor_movement(input);
}
inline
void input_proc_move_cursor_to_point(Text_Input *input, bool do_selection, i32 to_point)
{
reset_or_begin_selection(input, do_selection);
input->insert_point = to_point;
update_selection_after_cursor_movement(input);
}
inline
void input_proc_navigate_history_backward(Text_Input *input)
{
// Handle auto complete navigation.
input->selection.active = false;
if (input->command_history_index == input->command_history.count)
{
if (input->last_saved_input) free_string(&input->last_saved_input);
input->last_saved_input = copy_string(input->text);
}
input->command_history_index -= 1;
refresh_input_from_history(input);
}
inline
void input_proc_navigate_history_forward(Text_Input *input)
{
// Handle auto complete navigation.
input->selection.active = false;
if (input->command_history_index < input->command_history.count)
{
// Only do this if we're not at the end, because
// we only save your input text when you leave
// the last line.
input->command_history_index += 1;
refresh_input_from_history(input);
}
}
inline
void input_proc_backspace_from_cursor(Text_Input *input)
{
if (non_empty(input->selection))
{
replace_selection(input, String(""));
}
else if ((input->insert_point <= input->text.count) &&
(input->insert_point >= 1))
{
auto prev_point = seek_left_one_utf8_character(input->text, input->insert_point);
auto nbytes = input->insert_point - prev_point;
for (i64 i = prev_point; i < (input->text.count - nbytes); ++i)
{
input->text.data[i] = input->text[i + nbytes];
}
input->insert_point -= nbytes;
input->text.count -= nbytes;
update_auto_complete(input);
}
}
inline
void input_proc_delete_from_cursor(Text_Input *input)
{
if (non_empty(input->selection))
{
replace_selection(input, String(""));
}
else if (input->insert_point < input->text.count)
{
auto nbytes = utf8_char_length(input->text[input->insert_point]);
for (i64 i = input->insert_point; i < (input->text.count - nbytes); ++i)
{
input->text.data[i] = input->text[i + nbytes];
}
input->text.count -= nbytes;
update_auto_complete(input);
}
}
inline
void input_proc_press_enter(Text_Input *input, bool shift_pressed = false)
{
auto handled = false;
if (input->tab_pressed)
{
handled = accept_auto_complete(input);
}
input->entered = true;
input->shift_plus_enter_was_pressed = shift_pressed;
if (input->text)
{
auto copy = copy_string(input->text); // @Investigate
array_add(&input->command_history, copy); // Don't add blank lines.
}
input->command_history_index += 1;
}
inline
void input_proc_press_tab(Text_Input *input, bool shift_pressed = false)
{
input->completion_change_time = timez.ui_time;
if (!input->tab_pressed)
{
input->tab_pressed = true; // @Fixme: I don't see where we reset the tab_pressed ??????
}
else
{
auto reverse = shift_pressed;
advance_auto_complete(input, reverse);
input->tab_pressed = true; // This must happen after advance_auto_complete since that resets it indirectly.
}
}
void using_state_to_check_for_activating_text_input(Text_Input_State *text_input_state, Event event)
{
auto text_input = text_input_state->input;
if (!text_input) return;
check_for_activating_event(text_input, event);
}
void check_for_activating_event(Text_Input *input, Event event)
{
if (!input->initted) return; // Nothing to handle.
auto state = input->text_input_state;
if (!state) return;
//
// We get here when we are not active, but need to check for a click
// to see if we should become active.
//
if (event.type != EVENT_KEYBOARD) return;
if (!event.key_pressed) return;
if (event.key_code != CODE_MOUSE_LEFT) return;
auto rect = state->rect;
auto status = get_status_flags(rect);
if (status & Status_Flags::OVER)
{
if (!input->active) // Deactivate everyone, including us if we are not active.
{
active_widget_deactivate_all();
}
activate(input);
start_selecting(input);
input->do_active_widget_add = true; // Add us to be the active widget.
}
}
void handle_event(Text_Input *input, Event event)
{
if (!input->initted) init(input);
if (!input->active)
{
check_for_activating_event(input, event);
return;
}
auto now = timez.ui_time;
if (event.type == EVENT_TEXT_INPUT)
{
input->do_active_widget_deactivate_all = true;
auto key = event.utf32;
auto utf8_text = character_utf32_to_utf8(key);
insert_text(input, utf8_text);
}
else if (event.type == EVENT_KEYBOARD)
{
input->do_active_widget_deactivate_all = true;
input->last_keypress_time = now;
auto key = event.key_code;
auto pressed = static_cast<bool>(event.key_pressed);
if (pressed)
{
if (event.ctrl_pressed)
{
switch (key)
{
case CODE_A: input_proc_select_all(input); break;
case CODE_C:
case CODE_INSERT: input_proc_copy_selection_to_clipboard(input, false); break;
case CODE_X: input_proc_copy_selection_to_clipboard(input, true); break;
case CODE_V: input_proc_insert_clipboard_at_cursor(input); break;
}
}
if (event.shift_pressed)
{
switch (key)
{
case CODE_DELETE: input_proc_copy_selection_to_clipboard(input, true); break;
case CODE_INSERT: input_proc_insert_clipboard_at_cursor(input); break;
}
}
switch (key)
{
case CODE_ARROW_LEFT: input_proc_move_cursor_left(input, event.shift_pressed); break;
case CODE_ARROW_RIGHT: input_proc_move_cursor_right(input, event.shift_pressed); break;
case CODE_HOME: input_proc_move_cursor_to_point(input, event.shift_pressed, 0); break;
case CODE_END: input_proc_move_cursor_to_point(input, event.shift_pressed, input->text.count); break;
case CODE_ARROW_DOWN: input_proc_navigate_history_forward(input); break;
case CODE_ARROW_UP: input_proc_navigate_history_backward(input); break;
case CODE_BACKSPACE: input_proc_backspace_from_cursor(input); break;
case CODE_DELETE: input_proc_delete_from_cursor(input); break;
case CODE_ESCAPE: input->escaped = true; break;
case CODE_ENTER: input_proc_press_enter(input, event.shift_pressed); break;
case CODE_TAB: input_proc_press_tab(input, event.shift_pressed); break;
case CODE_MOUSE_LEFT: {
auto state = input->text_input_state;
assert(state);
auto status = get_status_flags(state->rect);
if (status & Status_Flags::OVER)
{
start_selecting(input);
}
} break;
}
}
else // If not pressed anything.
{
if (key == CODE_MOUSE_LEFT)
{
input->cursor_tracking_mouse = false;
}
}
}
}
my_pair<f32 /*x0*/, f32 /*x1*/> get_selection_endpoints(Dynamic_Font *font, String text, f32 text_x, i32 start_character, i32 end_character)
{
auto s_up_to_start = text;
s_up_to_start.count = start_character;
auto s_up_to_end = text;
s_up_to_end.count = end_character;
auto start_width = get_text_width(font, s_up_to_start);
auto end_width = get_text_width(font, s_up_to_end);
f32 sx0 = text_x + start_width;
f32 sx1 = text_x + end_width;
return {sx0, sx1};
}
i32 get_insert_point_for_cursor(Dynamic_Font *font, String text, f32 text_x, i32 mouse_x, bool glyphs_prepped = false)
{
// @Temporary: Assume the number of glyphs is equal
// to the number of characters. Not necessarily true.
// This ALSO assumes that 'text' is only single-byte characters,
// which won't last long. But let's just get this working.
// Eventually, we should expand 'text' to an array of utf32
// before rendering.
if (!glyphs_prepped)
{
prepare_text(font, text);
}
f32 best_dist = FLT_MAX;
auto x = text_x;
u32 best_utf32;
// Doing first pass to get the best distance.
i64 glyph_index = 0;
i64 best_index;
for (auto glyph : font->temporary_glyphs)
{
auto dist = fabs(mouse_x - x);
if (dist < best_dist)
{
best_dist = dist;
best_utf32 = glyph->utf32;
best_index = glyph_index;
}
// Once dist goes past the minimum and starts increasing,
// we could early out, but we are not doing that yet.
x += glyph->advance;
glyph_index += 1;
}
// Doing second pass to get the byte offset.
auto best_byte_offset = -1;
// Early out if we didn't find a thing:
if (best_dist == FLT_MAX) return best_byte_offset;
{
auto t = text.data;
i64 it_index = 0;
while (t < (text.data + text.count))
{
auto utf32 = character_utf8_to_utf32(t, text.data + text.count - t);
if (utf32 && (utf32 == best_utf32) && (it_index == best_index))
{
best_byte_offset = t - text.data;
break;
}
t = unicode_next_character(t);
it_index += 1;
}
assert((best_byte_offset != -1)); // Byte offset must be found if we are here.
}
// Allow ourselves to click beyond the last character.
auto dist = fabs(mouse_x - x);
if (dist < best_dist) best_byte_offset = text.count;
return best_byte_offset;
}
void draw(Text_Input *input, Rect r, Text_Input_Theme *theme, i64 identifier, Source_Location loc)
{
if (!theme) theme = &default_overall_theme.text_input_theme;
assert(theme->font);
auto mark = get_temporary_storage_mark();
defer { set_temporary_storage_mark(mark); };
if (!input->initted) init(input);
auto hash = ui_get_hash(loc, identifier);
bool created = false;
auto state = find_or_create_state(&table_text_input, hash, &created);
if (created)
{
input->text_input_state = state;
}
state->rect = r;
state->input = input;
defer { stop_using_state(&state->widget); };
if (input->do_active_widget_add)
{
if (input->active)
{
active_widget_add(&state->widget);
}
input->do_active_widget_add = false;
}
else if (input->do_active_widget_deactivate_all)
{
active_widget_deactivate_all(&state->widget);
input->do_active_widget_deactivate_all = false;
}
clamp_insert_point(input);
auto x0 = static_cast<i32>(r.x);
auto y0 = static_cast<i32>(r.y);
auto x1 = static_cast<i32>(r.x + r.w);
auto y1 = static_cast<i32>(r.y + r.h);
auto xpad = em(theme->font, theme->alignment_pad_ems);
push_scissor(r);
defer { pop_scissor(); };
auto status_flags = get_status_flags(r);
// @Hack because update_production_value_button only uses Button_Theme for press_duration ... for now.
// We could consider just using Button_Theme.. or make a duck copy macro. :)
Button_Theme button_theme;
button_theme.press_duration = theme->press_duration;
button_theme.over_fade_in_speed = theme->over_fade_in_speed;
button_theme.over_fade_out_speed = theme->over_fade_out_speed;
// @Note: We are using update_production_value button for some factors, but,
// we interpolate 'active_t' on our own.
bool changed = status_flags & Status_Flags::PRESSED;
if (input->active)
{
state->active_t = move_toward(state->active_t, 1, theme->active_fade_in_speed);
}
else
{
state->active_t = move_toward(state->active_t, 0, theme->active_fade_out_speed);
}
auto [over_factor, flash_factor] = update_production_value_button(r, changed, &state->base, status_flags, &button_theme);
auto active_factor = state->active_t;
auto text_color = lerp(theme->text_color, theme->text_color_over, over_factor);
text_color = lerp(text_color, theme->text_color_active, active_factor);
auto background_color = lerp(theme->background_color, theme->background_color_over, over_factor);
background_color = lerp(background_color, theme->background_color_active, active_factor);
background_color = lerp(background_color, theme->background_color_flash, flash_factor);
auto font = theme->font;
auto text_width = get_text_width(font, input->text);
// If auto completion is available, take it into account:
if (input->match_array)
{
auto auto_complete_text = input->match_array[input->match_selection];
auto text_width = get_text_width(font, auto_complete_text);
}
auto text_x = x0 + xpad;
auto text_y = y0 + theme->text_baseline_vertical_position * r.h;
switch (theme->alignment)
{
case Text_Alignment::Center: {
text_x = (x1 + x0) * .5f - text_width * .5f;
} break;
case Text_Alignment::Right: {
text_x = x1 - xpad - text_width;
} break;
case Text_Alignment::Left: {
text_x = x0 + xpad;
} break;
}
if (!input->active) state->camera_initted = false;
if (!state->camera_initted)
{
state->camera_initted = true;
state->camera_x = -text_x + x0;
}
if (input->active)
{
if (input->cursor_tracking_mouse)
{
// Update cursor position based on mouse drag;
// do this before any other logic involving the insert point,
// and before drawing the cursor!
auto now = timez.ui_time;
input->last_keypress_time = now;
//
// We need to figure out where in the text the user clicked.
// We used to do this after rendering the text, so we knew for sure wher it was.
// But this was a little more laggy with regard to where the cursor appears (one
// frame of lag), and it was not helpful with regard to the new deadzone code :Deadzone.
// Nowe we do this before drawing; we need to know where the text was last frame..
// Despite this, it is not right @Robustness @Temporary because if the user-level code
// is drawing this text input at different coordinates and the user start selecting
// at the same time than it was drawn last frame, it will be wrong (quite hard to do honestly).
//
// This is the reason why we store last_displayed_text_x, which is slightly scary but not so much.
auto last_text_x = state->last_displayed_text_x;
if (last_text_x == FLT_MAX) last_text_x = text_x;
// This call to get_insert_point_for_cursor will generate all the glyphs to the temporary glyphs array,
// but this array will be re-generated again later when we do draw_text() below so it is not efficient
// right now.
input->insert_point = get_insert_point_for_cursor(font, input->text, last_text_x, mouse_x_float, false);
if (input->selection.active)
{
input->selection.end_character = input->insert_point;
}
else
{