58 lines
2.0 KiB
GDScript
58 lines
2.0 KiB
GDScript
extends Node
|
|
|
|
func reorder_children_by_property(container: Node, property_name: String) -> void:
|
|
var children: Array[Node] = container.get_children()
|
|
children.sort_custom(Utils.sort_by_property.bind(property_name))
|
|
for element: Node in container.get_children():
|
|
container.remove_child(element)
|
|
for element: Node in children:
|
|
container.add_child(element)
|
|
|
|
func sort_by_property(node_a: Node, node_b: Node, property_name: String) -> bool:
|
|
return node_a.get(property_name) < node_b.get(property_name)
|
|
|
|
func disconnect_all(signals: Signal) -> void:
|
|
for connection: Dictionary in signals.get_connections():
|
|
(connection["signal"] as Signal).disconnect(connection["callable"] as Callable)
|
|
|
|
func clean_dir(path: String) -> Error:
|
|
var dir: DirAccess = DirAccess.open(path)
|
|
var error: Error = DirAccess.get_open_error()
|
|
if error != OK:
|
|
return error
|
|
if dir == null:
|
|
return ERR_FILE_BAD_PATH
|
|
for file: String in dir.get_files():
|
|
dir.remove(file)
|
|
for subfolder: String in dir.get_directories():
|
|
error = clean_dir(path.path_join(subfolder))
|
|
if error != OK:
|
|
return error
|
|
dir.remove(subfolder)
|
|
return OK
|
|
|
|
func delete_directory_recursive(path: String) -> void:
|
|
var err: Error = clean_dir(path)
|
|
if err != OK:
|
|
Logger.error("Utils: Error " + error_string(err) + " while cleaning folder: %s" % path)
|
|
return
|
|
err = DirAccess.remove_absolute(path)
|
|
if err != OK:
|
|
Logger.error("Utils: Error " + error_string(err) + " while deleting folder: %s" % path)
|
|
else:
|
|
Logger.info("Utils: Folder deleted: %s" % path)
|
|
|
|
## Returns -1 if version_a is lower than version_b, 0 if they are equals, and 1 if version_a is greater than version_b
|
|
func compare_versions(version_a: String, version_b: String) -> int:
|
|
var va: PackedStringArray = version_a.split(".")
|
|
var vb: PackedStringArray = version_b.split(".")
|
|
|
|
for index: int in range(3):
|
|
var ai: int = int(va[index]) if index < va.size() else 0
|
|
var bi: int = int(vb[index]) if index < vb.size() else 0
|
|
if ai < bi:
|
|
return -1
|
|
elif ai > bi:
|
|
return 1
|
|
return 0
|