Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -112,10 +112,11 @@ func _gui_input(event):
for caret in range(get_caret_count()):
var line := get_line(get_caret_line(caret)).strip_edges()
var event_res := DialogicTimeline.event_from_string(line, DialogicResourceUtil.get_event_cache())
var indent_format: String = timeline_editor.current_resource.indent_format
if event_res.can_contain_events:
insert_text_at_caret("\n"+"\t".repeat(get_indent_level(get_caret_line(caret))/4+1), caret)
insert_text_at_caret("\n"+indent_format.repeat(get_indent_level(get_caret_line(caret))/4+1), caret)
else:
insert_text_at_caret("\n"+"\t".repeat(get_indent_level(get_caret_line(caret))/4), caret)
insert_text_at_caret("\n"+indent_format.repeat(get_indent_level(get_caret_line(caret))/4), caret)
_:
return
get_viewport().set_input_as_handled()
Expand Down
30 changes: 24 additions & 6 deletions addons/dialogic/Resources/timeline.gd
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ class_name DialogicTimeline
## It can store them as text and load them from text too.



var events: Array = []
var events_processed := false
var text_lines_indexed := {}
var indent_format := "\t"


func _get_extension() -> String:
Expand All @@ -34,6 +34,13 @@ func from_text(text:String) -> void:
events = text.split('\n', true)
events_processed = false

## Take an initial guess about the indentation format
## because the text editor needs it but doesn't call _process()
for ev in events:
indent_format = ev.substr(0, len(ev) - len(ev.strip_edges(true, false)))
if indent_format:
break


## Stores all events in their text format and returns them as a string
func as_text() -> String:
Expand All @@ -50,8 +57,8 @@ func as_text() -> String:

if event != null:
for i in event.empty_lines_above:
result += "\t".repeat(indent)+"\n"
result += "\t".repeat(indent)+event.event_node_as_text.replace('\n', "\n"+"\t".repeat(indent)) + "\n"
result += indent_format.repeat(indent)+"\n"
result += indent_format.repeat(indent)+event.event_node_as_text.replace('\n', "\n"+indent_format.repeat(indent)) + "\n"
if event.can_contain_events:
indent += 1
if indent < 0:
Expand Down Expand Up @@ -87,6 +94,7 @@ func process() -> void:
var end_event := DialogicEndBranchEvent.new()

var prev_indent := ""
indent_format = ""
var processed_events := []
text_lines_indexed = {}

Expand Down Expand Up @@ -115,8 +123,14 @@ func process() -> void:

## Add an end event if the indent is smaller then previously
var indent: String = line.substr(0,len(line)-len(line_stripped))
if indent and ((not indent_format) or not (indent_format in indent)):
if not indent_format.is_empty():
printerr("Timeline contains varying indentation. Found {0} instead of expected {1}.".format([indent, indent_format]))
else:
indent_format = indent
if len(indent) < len(prev_indent):
for i in range(len(prev_indent)-len(indent)):
@warning_ignore("integer_division")
for i in range(len(prev_indent)/len(indent_format)-len(indent)/len(indent_format)):
processed_events.append(end_event.duplicate())
## Add an end event if the indent is the same but the previous was an opener
## (so for example choice that is empty)
Expand All @@ -132,7 +146,7 @@ func process() -> void:

event.empty_lines_above = empty_lines
# add the following lines until the event says it's full or there is an empty line
while !event.is_string_full_event(event_content):
while not event.is_string_full_event(event_content):
idx += 1
text_lines_indexed[idx] = len(processed_events)
if idx == len(lines):
Expand All @@ -152,13 +166,17 @@ func process() -> void:
prev_was_opener = event.can_contain_events
empty_lines = 0

if !prev_indent.is_empty():
if not prev_indent.is_empty():
for i in range(len(prev_indent)):
processed_events.append(end_event.duplicate())

events = processed_events
events_processed = true

if indent_format.is_empty():
indent_format = "\t"



## This method makes sure that all events in a timeline are correctly reset
func clean() -> void:
Expand Down