2020-05-09 19:07:31 +02:00
|
|
|
tool
|
|
|
|
extends EditorPlugin
|
|
|
|
|
2021-07-02 19:27:34 +02:00
|
|
|
var pty_supported := OS.get_name() in ["X11", "Server", "OSX"]
|
2020-09-22 10:31:46 +02:00
|
|
|
var asciicast_import_plugin
|
2021-07-11 17:32:13 +02:00
|
|
|
var terminal_panel: Control
|
2020-09-22 10:31:46 +02:00
|
|
|
|
|
|
|
|
2020-05-09 19:07:31 +02:00
|
|
|
func _enter_tree():
|
2020-09-22 10:31:46 +02:00
|
|
|
asciicast_import_plugin = preload("res://addons/godot_xterm/import_plugins/asciicast_import_plugin.gd").new()
|
|
|
|
add_import_plugin(asciicast_import_plugin)
|
2021-05-26 05:39:48 +02:00
|
|
|
|
2020-09-22 10:31:46 +02:00
|
|
|
var asciicast_script = preload("res://addons/godot_xterm/resources/asciicast.gd")
|
|
|
|
add_custom_type("Asciicast", "Animation", asciicast_script, null)
|
2021-05-26 05:39:48 +02:00
|
|
|
|
2021-06-19 14:54:44 +02:00
|
|
|
var terminal_script = preload("res://addons/godot_xterm/nodes/terminal/terminal.gd")
|
2020-09-17 11:23:01 +02:00
|
|
|
var terminal_icon = preload("res://addons/godot_xterm/nodes/terminal/terminal_icon.svg")
|
2020-09-17 10:14:04 +02:00
|
|
|
add_custom_type("Terminal", "Control", terminal_script, terminal_icon)
|
2021-05-26 05:39:48 +02:00
|
|
|
|
2021-07-02 19:27:34 +02:00
|
|
|
if pty_supported:
|
|
|
|
var pty_icon = load("res://addons/godot_xterm/nodes/pty/pty_icon.svg")
|
|
|
|
var pty_script
|
|
|
|
match OS.get_name():
|
|
|
|
"X11", "Server", "OSX":
|
|
|
|
pty_script = load("res://addons/godot_xterm/nodes/pty/unix/pty_unix.gd")
|
|
|
|
add_custom_type("PTY", "Node", pty_script, pty_icon)
|
2021-07-11 17:32:13 +02:00
|
|
|
terminal_panel = preload("./editor_plugins/terminal/terminal_panel.tscn").instance()
|
|
|
|
terminal_panel.editor_interface = get_editor_interface()
|
|
|
|
add_control_to_bottom_panel(terminal_panel, "Terminal")
|
2020-05-09 19:07:31 +02:00
|
|
|
|
|
|
|
|
|
|
|
func _exit_tree():
|
2020-09-22 10:31:46 +02:00
|
|
|
remove_import_plugin(asciicast_import_plugin)
|
|
|
|
asciicast_import_plugin = null
|
2021-05-26 05:39:48 +02:00
|
|
|
|
2020-09-22 10:31:46 +02:00
|
|
|
remove_custom_type("Asciicast")
|
2020-05-09 19:07:31 +02:00
|
|
|
remove_custom_type("Terminal")
|
2021-07-02 19:27:34 +02:00
|
|
|
|
|
|
|
if pty_supported:
|
|
|
|
remove_custom_type("PTY")
|
2021-07-11 17:32:13 +02:00
|
|
|
remove_control_from_bottom_panel(terminal_panel)
|
|
|
|
terminal_panel.free()
|