2022-09-19 23:10:57 +02:00
|
|
|
class_name TextEditingUtils
|
|
|
|
extends Reference
|
|
|
|
|
|
|
|
const non_typing_paragraph := "¶"
|
|
|
|
const non_typing_space := "●"
|
|
|
|
const whitespace_chars := [
|
|
|
|
ord(" "),
|
|
|
|
ord(","),
|
2022-09-21 04:34:52 +02:00
|
|
|
ord(":"),
|
|
|
|
ord("-"),
|
2022-09-19 23:10:57 +02:00
|
|
|
ord(";"),
|
|
|
|
ord("("),
|
|
|
|
ord(")"),
|
|
|
|
ord("."),
|
|
|
|
ord(non_typing_paragraph),
|
|
|
|
ord(non_typing_space),
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
static func is_character_whitespace(text : String, idx : int) -> bool:
|
|
|
|
if idx <= 0: return true # Stop at the edges.
|
|
|
|
if idx >= text.length(): return true
|
|
|
|
return text.ord_at(idx) in whitespace_chars
|
|
|
|
|
|
|
|
|
|
|
|
static func show_non_typing(text : String) -> String:
|
|
|
|
text = text\
|
|
|
|
.replace(non_typing_paragraph, "\n")\
|
|
|
|
.replace(non_typing_space, " ")
|
|
|
|
|
|
|
|
if text.ends_with("\n"):
|
|
|
|
text = text.left(text.length() - 1) + non_typing_paragraph
|
|
|
|
|
|
|
|
elif text.ends_with(" "):
|
|
|
|
text = text.left(text.length() - 1) + non_typing_space
|
|
|
|
|
|
|
|
return text
|
|
|
|
|
|
|
|
|
|
|
|
static func revert_non_typing(text : String) -> String:
|
|
|
|
if text.ends_with(non_typing_paragraph):
|
|
|
|
text = text.left(text.length() - 1) + "\n"
|
|
|
|
|
|
|
|
elif text.ends_with(non_typing_space):
|
|
|
|
text = text.left(text.length() - 1) + " "
|
|
|
|
|
|
|
|
return text
|
|
|
|
|
|
|
|
|
2022-09-23 19:33:04 +02:00
|
|
|
static func multi_erase_right(values : Array, cursor_positions : Array, ctrl_pressed : bool):
|
|
|
|
for i in values.size():
|
|
|
|
var start_pos = cursor_positions[i]
|
|
|
|
cursor_positions[i] = _step_cursor(values[i], cursor_positions[i], 1, ctrl_pressed)
|
|
|
|
|
|
|
|
cursor_positions[i] = min(
|
|
|
|
cursor_positions[i],
|
|
|
|
values[i].length()
|
2022-09-19 23:10:57 +02:00
|
|
|
)
|
2022-09-23 19:33:04 +02:00
|
|
|
values[i] = (
|
|
|
|
values[i].left(start_pos)
|
|
|
|
+ values[i].substr(cursor_positions[i])
|
2022-09-19 23:10:57 +02:00
|
|
|
)
|
2022-09-23 19:33:04 +02:00
|
|
|
cursor_positions[i] = start_pos
|
2022-09-19 23:10:57 +02:00
|
|
|
|
2022-09-23 19:33:04 +02:00
|
|
|
return values
|
2022-09-19 23:10:57 +02:00
|
|
|
|
|
|
|
|
2022-09-23 19:33:04 +02:00
|
|
|
static func multi_erase_left(values : Array, cursor_positions : Array, ctrl_pressed):
|
|
|
|
for i in values.size():
|
|
|
|
var start_pos = cursor_positions[i]
|
2022-09-19 23:10:57 +02:00
|
|
|
|
2022-09-23 19:33:04 +02:00
|
|
|
cursor_positions[i] = _step_cursor(values[i], cursor_positions[i], -1, ctrl_pressed)
|
|
|
|
values[i] = (
|
|
|
|
values[i].substr(0, cursor_positions[i])
|
|
|
|
+ values[i].substr(start_pos)
|
|
|
|
)
|
|
|
|
|
|
|
|
return values
|
|
|
|
|
|
|
|
|
|
|
|
static func multi_move_left(values : Array, cursor_positions : Array, ctrl_pressed):
|
|
|
|
for i in cursor_positions.size():
|
|
|
|
cursor_positions[i] = _step_cursor(values[i], cursor_positions[i], -1, ctrl_pressed)
|
|
|
|
|
|
|
|
|
|
|
|
static func multi_move_right(values : Array, cursor_positions : Array, ctrl_pressed):
|
|
|
|
for i in cursor_positions.size():
|
|
|
|
cursor_positions[i] = _step_cursor(values[i], cursor_positions[i], 1, ctrl_pressed)
|
2022-09-19 23:10:57 +02:00
|
|
|
|
|
|
|
|
2022-09-23 19:33:04 +02:00
|
|
|
static func multi_paste(values : Array, cursor_positions : Array):
|
2022-09-19 23:10:57 +02:00
|
|
|
var pasted_lines := OS.clipboard.split("\n")
|
2022-09-23 19:33:04 +02:00
|
|
|
var paste_each_line := pasted_lines.size() == values.size()
|
2022-09-19 23:10:57 +02:00
|
|
|
|
2022-09-23 19:33:04 +02:00
|
|
|
for i in values.size():
|
2022-09-19 23:10:57 +02:00
|
|
|
if paste_each_line:
|
2022-09-23 19:33:04 +02:00
|
|
|
cursor_positions[i] += pasted_lines[i].length()
|
2022-09-19 23:10:57 +02:00
|
|
|
|
|
|
|
else:
|
2022-09-23 19:33:04 +02:00
|
|
|
cursor_positions[i] += OS.clipboard.length()
|
2022-09-19 23:10:57 +02:00
|
|
|
|
2022-09-23 19:33:04 +02:00
|
|
|
values[i] = (
|
|
|
|
values[i].left(cursor_positions[i])
|
2022-09-19 23:10:57 +02:00
|
|
|
+ (pasted_lines[i] if paste_each_line else OS.clipboard)
|
2022-09-23 19:33:04 +02:00
|
|
|
+ values[i].substr(cursor_positions[i])
|
|
|
|
)
|
2022-09-19 23:10:57 +02:00
|
|
|
|
2022-09-23 19:33:04 +02:00
|
|
|
return values
|
2022-09-19 23:10:57 +02:00
|
|
|
|
|
|
|
|
2022-09-23 19:33:04 +02:00
|
|
|
static func multi_copy(values : Array):
|
|
|
|
for i in values.size():
|
|
|
|
values[i] = values[i]
|
2022-09-19 23:10:57 +02:00
|
|
|
|
2022-09-23 19:33:04 +02:00
|
|
|
OS.clipboard = "\n".join(values)
|
2022-09-19 23:10:57 +02:00
|
|
|
|
|
|
|
|
2022-09-23 19:33:04 +02:00
|
|
|
static func multi_input(input_char : String, values : Array, cursor_positions : Array):
|
|
|
|
for i in values.size():
|
|
|
|
values[i] = (
|
|
|
|
values[i].left(cursor_positions[i])
|
|
|
|
+ input_char
|
|
|
|
+ values[i].substr(cursor_positions[i])
|
|
|
|
)
|
|
|
|
cursor_positions[i] = min(cursor_positions[i] + 1, values[i].length())
|
2022-09-21 22:09:50 +02:00
|
|
|
|
2022-09-23 19:33:04 +02:00
|
|
|
return values
|
2022-09-19 23:10:57 +02:00
|
|
|
|
|
|
|
|
2022-09-23 19:33:04 +02:00
|
|
|
static func _step_cursor(text : String, start : int, step : int = 1, ctrl_pressed : bool = false) -> int:
|
2022-09-19 23:10:57 +02:00
|
|
|
while true:
|
|
|
|
start += step
|
2022-09-23 19:33:04 +02:00
|
|
|
if !ctrl_pressed or is_character_whitespace(text, start):
|
2022-09-19 23:10:57 +02:00
|
|
|
if start > text.length():
|
|
|
|
return text.length()
|
|
|
|
|
|
|
|
if start < 0:
|
|
|
|
return 0
|
|
|
|
|
|
|
|
return start
|
|
|
|
|
|
|
|
return 0
|