2022-06-03 01:25:50 +02:00
|
|
|
tool
|
|
|
|
extends EditorPlugin
|
|
|
|
|
|
|
|
|
|
|
|
func _enter_tree():
|
|
|
|
add_tool_menu_item("Convert scripts", self, "on_menu_clicked")
|
|
|
|
|
|
|
|
func _exit_tree():
|
|
|
|
remove_tool_menu_item("Convert scripts")
|
|
|
|
|
|
|
|
func on_menu_clicked(val) -> void:
|
|
|
|
var dir = Directory.new()
|
|
|
|
var dir_name = get_editor_interface().get_selected_path()
|
|
|
|
if dir.open(dir_name) == OK:
|
|
|
|
dir.list_dir_begin()
|
|
|
|
var file_name = dir.get_next()
|
|
|
|
while file_name != "":
|
|
|
|
|
|
|
|
if !dir.current_is_dir():
|
|
|
|
if file_name.get_extension() == "gd":
|
|
|
|
process_file(dir_name + file_name)
|
|
|
|
return
|
|
|
|
|
|
|
|
file_name = dir.get_next()
|
|
|
|
|
|
|
|
|
|
|
|
enum GDScopeType {
|
|
|
|
GDSCOPE_TYPE_GENERIC = 0,
|
|
|
|
GDSCOPE_TYPE_CLASS,
|
|
|
|
GDSCOPE_TYPE_IF,
|
|
|
|
GDSCOPE_TYPE_ELIF,
|
|
|
|
GDSCOPE_TYPE_ELSE,
|
|
|
|
GDSCOPE_TYPE_FUNC,
|
|
|
|
GDSCOPE_TYPE_FOR,
|
|
|
|
GDSCOPE_TYPE_WHILE,
|
2022-06-03 13:19:31 +02:00
|
|
|
GDSCOPE_TYPE_ENUM,
|
2022-06-03 01:25:50 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
class GDSScope:
|
|
|
|
var type : int = GDScopeType.GDSCOPE_TYPE_GENERIC
|
|
|
|
var scope_data : String = ""
|
|
|
|
var raw_scope_data : String = ""
|
2022-06-03 13:58:19 +02:00
|
|
|
var scope_data_alt : String = ""
|
|
|
|
var raw_scope_data_alt : String = ""
|
2022-06-03 01:25:50 +02:00
|
|
|
var subscopes : Array = Array()
|
|
|
|
var scope_lines : PoolStringArray = PoolStringArray()
|
|
|
|
|
|
|
|
func parse(contents : PoolStringArray, current_index : int = 0, current_indent : int = 0) -> int:
|
|
|
|
while current_index < contents.size():
|
|
|
|
var cl : String = contents[current_index]
|
|
|
|
|
2022-06-03 13:58:19 +02:00
|
|
|
if cl == "tool":
|
|
|
|
scope_lines.append("#" + cl)
|
|
|
|
current_index += 1
|
|
|
|
continue
|
|
|
|
|
|
|
|
if cl.begins_with("class_name "):
|
|
|
|
type = GDScopeType.GDSCOPE_TYPE_CLASS
|
|
|
|
raw_scope_data = cl
|
|
|
|
scope_data = cl.trim_prefix("class_name ")
|
|
|
|
current_index += 1
|
|
|
|
continue
|
|
|
|
|
|
|
|
if cl.begins_with("extends "):
|
|
|
|
type = GDScopeType.GDSCOPE_TYPE_CLASS
|
|
|
|
raw_scope_data_alt = cl
|
|
|
|
scope_data_alt = cl.trim_prefix("extends ")
|
|
|
|
current_index += 1
|
|
|
|
continue
|
|
|
|
|
2022-06-03 01:25:50 +02:00
|
|
|
if cl.begins_with("#"):
|
|
|
|
scope_lines.append(cl)
|
|
|
|
current_index += 1
|
|
|
|
continue
|
2022-06-03 12:45:03 +02:00
|
|
|
|
2022-06-03 01:25:50 +02:00
|
|
|
var curr_line_indent : int = get_indent_count(cl)
|
2022-06-03 12:45:03 +02:00
|
|
|
var clstripped : String = cl.strip_edges(true, false)
|
2022-06-03 01:25:50 +02:00
|
|
|
|
|
|
|
if curr_line_indent < current_indent:
|
|
|
|
return current_index
|
|
|
|
|
2022-06-03 13:19:31 +02:00
|
|
|
if cl.ends_with(":") || cl.begins_with("enum "):
|
2022-06-03 01:25:50 +02:00
|
|
|
var scope : GDSScope = GDSScope.new()
|
2022-06-03 12:45:03 +02:00
|
|
|
scope.parse_scope_data(clstripped)
|
2022-06-03 01:25:50 +02:00
|
|
|
current_index += 1
|
2022-06-03 12:45:03 +02:00
|
|
|
current_index = scope.parse(contents, current_index, curr_line_indent + 1)
|
2022-06-03 01:25:50 +02:00
|
|
|
subscopes.append(scope)
|
|
|
|
|
|
|
|
#don't
|
|
|
|
#current_index += 1
|
|
|
|
continue
|
|
|
|
|
2022-06-03 12:45:03 +02:00
|
|
|
scope_lines.append(clstripped)
|
2022-06-03 01:25:50 +02:00
|
|
|
current_index += 1
|
|
|
|
|
|
|
|
return current_index
|
|
|
|
|
|
|
|
func parse_scope_data(s : String) -> void:
|
|
|
|
raw_scope_data = s
|
|
|
|
|
2022-06-03 13:19:31 +02:00
|
|
|
if raw_scope_data.begins_with("if "):
|
|
|
|
type = GDScopeType.GDSCOPE_TYPE_IF
|
|
|
|
scope_data = raw_scope_data.trim_prefix("if ").trim_suffix(":")
|
|
|
|
elif raw_scope_data.begins_with("elif "):
|
|
|
|
type = GDScopeType.GDSCOPE_TYPE_ELIF
|
|
|
|
scope_data = raw_scope_data.trim_prefix("elif ").trim_suffix(":")
|
|
|
|
elif raw_scope_data.begins_with("else"):
|
|
|
|
type = GDScopeType.GDSCOPE_TYPE_ELSE
|
|
|
|
elif raw_scope_data.begins_with("class "):
|
|
|
|
type = GDScopeType.GDSCOPE_TYPE_CLASS
|
|
|
|
scope_data = raw_scope_data.trim_prefix("class ").trim_suffix(":")
|
|
|
|
elif raw_scope_data.begins_with("enum "):
|
|
|
|
type = GDScopeType.GDSCOPE_TYPE_ENUM
|
|
|
|
scope_data = raw_scope_data.trim_prefix("enum ").trim_suffix("{")
|
|
|
|
elif raw_scope_data.begins_with("func "):
|
|
|
|
type = GDScopeType.GDSCOPE_TYPE_FUNC
|
|
|
|
scope_data = raw_scope_data.trim_prefix("func ").trim_suffix(":")
|
|
|
|
elif raw_scope_data.begins_with("for "):
|
|
|
|
type = GDScopeType.GDSCOPE_TYPE_FOR
|
|
|
|
scope_data = raw_scope_data.trim_prefix("for ").trim_suffix(":")
|
|
|
|
elif raw_scope_data.begins_with("while "):
|
|
|
|
type = GDScopeType.GDSCOPE_TYPE_WHILE
|
|
|
|
scope_data = raw_scope_data.trim_prefix("while ").trim_suffix(":")
|
|
|
|
|
2022-06-03 01:25:50 +02:00
|
|
|
func get_indent_count(s : String) -> int:
|
|
|
|
var c : int = 0
|
|
|
|
|
|
|
|
for ch in s:
|
|
|
|
if ch == "\t":
|
|
|
|
c += 1
|
|
|
|
else:
|
|
|
|
break
|
|
|
|
|
|
|
|
return c
|
2022-06-03 12:45:03 +02:00
|
|
|
|
|
|
|
func convert_to_string(current_scope_level : int = 0) -> String:
|
|
|
|
var indents : String = ""
|
2022-06-03 01:25:50 +02:00
|
|
|
|
2022-06-03 12:45:03 +02:00
|
|
|
for i in range(current_scope_level):
|
|
|
|
indents += " "
|
|
|
|
|
|
|
|
var s : String = indents + "---GDSScope---\n"
|
|
|
|
|
2022-06-03 13:58:19 +02:00
|
|
|
s += indents + raw_scope_data + " -- " + type_to_print_string() + " "
|
|
|
|
s += scope_data
|
|
|
|
|
|
|
|
if scope_data_alt != "":
|
|
|
|
s += " " + scope_data_alt
|
|
|
|
|
|
|
|
s += "\n"
|
2022-06-03 01:25:50 +02:00
|
|
|
|
2022-06-03 12:45:03 +02:00
|
|
|
indents += " "
|
2022-06-03 01:25:50 +02:00
|
|
|
|
|
|
|
for l in scope_lines:
|
2022-06-03 12:45:03 +02:00
|
|
|
s += indents + l + "\n"
|
2022-06-03 01:25:50 +02:00
|
|
|
|
|
|
|
for subs in subscopes:
|
|
|
|
s += "\n"
|
2022-06-03 12:45:03 +02:00
|
|
|
s += subs.convert_to_string(current_scope_level + 1)
|
2022-06-03 01:25:50 +02:00
|
|
|
|
|
|
|
s += "\n"
|
|
|
|
|
|
|
|
return s
|
2022-06-03 12:45:03 +02:00
|
|
|
|
2022-06-03 13:19:31 +02:00
|
|
|
func type_to_print_string() -> String:
|
|
|
|
if type == GDScopeType.GDSCOPE_TYPE_CLASS:
|
|
|
|
return "(CLASS)"
|
|
|
|
elif type == GDScopeType.GDSCOPE_TYPE_IF:
|
|
|
|
return "(IF)"
|
|
|
|
elif type == GDScopeType.GDSCOPE_TYPE_ELIF:
|
|
|
|
return "(ELIF)"
|
|
|
|
elif type == GDScopeType.GDSCOPE_TYPE_ELSE:
|
|
|
|
return "(ELSE)"
|
|
|
|
elif type == GDScopeType.GDSCOPE_TYPE_FUNC:
|
|
|
|
return "(FUNC)"
|
|
|
|
elif type == GDScopeType.GDSCOPE_TYPE_FOR:
|
|
|
|
return "(FOR)"
|
|
|
|
elif type == GDScopeType.GDSCOPE_TYPE_WHILE:
|
|
|
|
return "(WHILE)"
|
|
|
|
elif type == GDScopeType.GDSCOPE_TYPE_ENUM:
|
|
|
|
return "(ENUM)"
|
|
|
|
elif type == GDScopeType.GDSCOPE_TYPE_GENERIC:
|
|
|
|
return "(GEN)"
|
|
|
|
|
|
|
|
return "(UNKN)"
|
|
|
|
|
2022-06-03 12:45:03 +02:00
|
|
|
func _to_string():
|
|
|
|
return convert_to_string()
|
2022-06-03 01:25:50 +02:00
|
|
|
|
|
|
|
class GDSParser:
|
|
|
|
var root : GDSScope
|
|
|
|
|
2022-06-03 13:58:19 +02:00
|
|
|
func parse(contents : String, file_name : String) -> void:
|
2022-06-03 01:25:50 +02:00
|
|
|
root = GDSScope.new()
|
2022-06-03 13:58:19 +02:00
|
|
|
root.raw_scope_data = file_name
|
|
|
|
root.scope_data = file_name.get_file().trim_suffix(".gd")
|
2022-06-03 01:25:50 +02:00
|
|
|
var c : PoolStringArray = split_preprocess_content(contents)
|
|
|
|
root.parse(c)
|
|
|
|
|
|
|
|
func split_preprocess_content(contents : String) -> PoolStringArray:
|
|
|
|
var ret : PoolStringArray = PoolStringArray()
|
|
|
|
|
|
|
|
contents = contents.replace("\r\n", "\n")
|
|
|
|
|
|
|
|
var sp : PoolStringArray = contents.split("\n")
|
|
|
|
|
|
|
|
var pl : String = ""
|
|
|
|
var accum : bool = false
|
|
|
|
for i in range(sp.size()):
|
|
|
|
var l : String = sp[i]
|
|
|
|
l = l.strip_edges(false, true)
|
|
|
|
|
|
|
|
var lfstrip : String = l.strip_edges(true, false)
|
|
|
|
if lfstrip == "":
|
|
|
|
continue
|
|
|
|
|
|
|
|
if lfstrip.begins_with("#"):
|
|
|
|
ret.append(lfstrip)
|
|
|
|
continue
|
|
|
|
|
|
|
|
if l.ends_with("\\"):
|
|
|
|
if !accum:
|
|
|
|
accum = true
|
|
|
|
pl = l
|
|
|
|
else:
|
|
|
|
pl += l.substr(0, l.length() - 1).strip_edges()
|
|
|
|
else:
|
|
|
|
if accum:
|
|
|
|
accum = false
|
|
|
|
ret.append(pl)
|
|
|
|
pl = ""
|
|
|
|
else:
|
|
|
|
ret.append(l)
|
|
|
|
|
|
|
|
return ret
|
|
|
|
|
|
|
|
func _to_string():
|
|
|
|
return str(root)
|
|
|
|
|
|
|
|
|
|
|
|
func process_file(file_name : String) -> void:
|
|
|
|
var file : File = File.new()
|
|
|
|
file.open(file_name, File.READ)
|
|
|
|
var contents : String = file.get_as_text()
|
|
|
|
file.close()
|
|
|
|
|
|
|
|
var parser : GDSParser = GDSParser.new()
|
2022-06-03 13:58:19 +02:00
|
|
|
parser.parse(contents, file_name)
|
2022-06-03 01:25:50 +02:00
|
|
|
print(parser)
|
|
|
|
|