2023-07-27 11:39:38 -07:00
|
|
|
@tool
|
|
|
|
extends EditorImportPlugin
|
|
|
|
|
|
|
|
|
|
|
|
signal compiled_resource(resource: Resource)
|
|
|
|
|
|
|
|
|
2024-04-08 14:42:12 -07:00
|
|
|
const DialogueResource = preload("./dialogue_resource.gd")
|
|
|
|
const DialogueManagerParseResult = preload("./components/parse_result.gd")
|
2023-07-27 11:39:38 -07:00
|
|
|
|
2024-04-08 14:42:12 -07:00
|
|
|
const compiler_version = 11
|
2023-07-27 11:39:38 -07:00
|
|
|
|
|
|
|
|
|
|
|
func _get_importer_name() -> String:
|
|
|
|
# NOTE: A change to this forces a re-import of all dialogue
|
|
|
|
return "dialogue_manager_compiler_%s" % compiler_version
|
|
|
|
|
|
|
|
|
|
|
|
func _get_visible_name() -> String:
|
|
|
|
return "Dialogue"
|
|
|
|
|
|
|
|
|
|
|
|
func _get_import_order() -> int:
|
|
|
|
return -1000
|
|
|
|
|
|
|
|
|
|
|
|
func _get_priority() -> float:
|
|
|
|
return 1000.0
|
|
|
|
|
|
|
|
|
|
|
|
func _get_resource_type():
|
|
|
|
return "Resource"
|
|
|
|
|
|
|
|
|
|
|
|
func _get_recognized_extensions() -> PackedStringArray:
|
|
|
|
return PackedStringArray(["dialogue"])
|
|
|
|
|
|
|
|
|
|
|
|
func _get_save_extension():
|
|
|
|
return "tres"
|
|
|
|
|
|
|
|
|
|
|
|
func _get_preset_count() -> int:
|
|
|
|
return 0
|
|
|
|
|
|
|
|
|
|
|
|
func _get_preset_name(preset_index: int) -> String:
|
|
|
|
return "Unknown"
|
|
|
|
|
|
|
|
|
|
|
|
func _get_import_options(path: String, preset_index: int) -> Array:
|
|
|
|
# When the options array is empty there is a misleading error on export
|
|
|
|
# that actually means nothing so let's just have an invisible option.
|
|
|
|
return [{
|
|
|
|
name = "defaults",
|
|
|
|
default_value = true
|
|
|
|
}]
|
|
|
|
|
|
|
|
|
|
|
|
func _get_option_visibility(path: String, option_name: StringName, options: Dictionary) -> bool:
|
|
|
|
return false
|
|
|
|
|
|
|
|
|
|
|
|
func _import(source_file: String, save_path: String, options: Dictionary, platform_variants: Array[String], gen_files: Array[String]) -> Error:
|
2024-04-08 14:42:12 -07:00
|
|
|
var cache = Engine.get_meta("DialogueCache")
|
2023-07-27 11:39:38 -07:00
|
|
|
|
|
|
|
# Get the raw file contents
|
2024-04-08 14:42:12 -07:00
|
|
|
if not FileAccess.file_exists(source_file): return ERR_FILE_NOT_FOUND
|
2023-07-27 11:39:38 -07:00
|
|
|
|
2024-04-08 14:42:12 -07:00
|
|
|
var file: FileAccess = FileAccess.open(source_file, FileAccess.READ)
|
2023-07-27 11:39:38 -07:00
|
|
|
var raw_text: String = file.get_as_text()
|
|
|
|
|
|
|
|
# Parse the text
|
|
|
|
var parser: DialogueManagerParser = DialogueManagerParser.new()
|
2024-04-08 14:42:12 -07:00
|
|
|
var err: Error = parser.parse(raw_text, source_file)
|
2023-07-27 11:39:38 -07:00
|
|
|
var data: DialogueManagerParseResult = parser.get_data()
|
|
|
|
var errors: Array[Dictionary] = parser.get_errors()
|
|
|
|
parser.free()
|
|
|
|
|
|
|
|
if err != OK:
|
2024-04-08 14:42:12 -07:00
|
|
|
printerr("%d errors found in %s" % [errors.size(), source_file])
|
|
|
|
cache.add_errors_to_file(source_file, errors)
|
2023-07-27 11:39:38 -07:00
|
|
|
return err
|
|
|
|
|
|
|
|
# Get the current addon version
|
|
|
|
var config: ConfigFile = ConfigFile.new()
|
|
|
|
config.load("res://addons/dialogue_manager/plugin.cfg")
|
|
|
|
var version: String = config.get_value("plugin", "version")
|
|
|
|
|
|
|
|
# Save the results to a resource
|
|
|
|
var resource: DialogueResource = DialogueResource.new()
|
|
|
|
resource.set_meta("dialogue_manager_version", version)
|
|
|
|
|
2024-04-08 14:42:12 -07:00
|
|
|
resource.using_states = data.using_states
|
2023-07-27 11:39:38 -07:00
|
|
|
resource.titles = data.titles
|
|
|
|
resource.first_title = data.first_title
|
|
|
|
resource.character_names = data.character_names
|
|
|
|
resource.lines = data.lines
|
2024-04-08 14:42:12 -07:00
|
|
|
resource.raw_text = data.raw_text
|
2023-07-27 11:39:38 -07:00
|
|
|
|
2024-04-08 14:42:12 -07:00
|
|
|
# Clear errors and possibly trigger any cascade recompiles
|
|
|
|
cache.add_file(source_file, data)
|
2023-07-27 11:39:38 -07:00
|
|
|
|
2024-04-08 14:42:12 -07:00
|
|
|
err = ResourceSaver.save(resource, "%s.%s" % [save_path, _get_save_extension()])
|
2023-07-27 11:39:38 -07:00
|
|
|
|
|
|
|
compiled_resource.emit(resource)
|
|
|
|
|
2024-04-08 14:42:12 -07:00
|
|
|
# Recompile any dependencies
|
|
|
|
var dependent_paths: PackedStringArray = cache.get_dependent_paths_for_reimport(source_file)
|
|
|
|
for path in dependent_paths:
|
|
|
|
append_import_external_resource(path)
|
|
|
|
|
2023-07-27 11:39:38 -07:00
|
|
|
return err
|