mirror of
https://github.com/lihop/godot-xterm.git
synced 2024-11-10 04:40:25 +01:00
ebb527cb8b
- Add TerminalSettings resource. - Init/load terminal settings from terminal panel. - Add terminal context menu (i.e. right-click PopupMenu). - Add shortcut to open a new terminal Ctrl+Shift+T and make terminal panel visible.
46 lines
1.7 KiB
GDScript
46 lines
1.7 KiB
GDScript
tool
|
|
extends EditorPlugin
|
|
|
|
var pty_supported := OS.get_name() in ["X11", "Server", "OSX"]
|
|
var asciicast_import_plugin
|
|
var terminal_panel: Control
|
|
|
|
|
|
func _enter_tree():
|
|
asciicast_import_plugin = preload("res://addons/godot_xterm/import_plugins/asciicast_import_plugin.gd").new()
|
|
add_import_plugin(asciicast_import_plugin)
|
|
|
|
var asciicast_script = preload("res://addons/godot_xterm/resources/asciicast.gd")
|
|
add_custom_type("Asciicast", "Animation", asciicast_script, null)
|
|
|
|
var terminal_script = preload("res://addons/godot_xterm/nodes/terminal/terminal.gd")
|
|
var terminal_icon = preload("res://addons/godot_xterm/nodes/terminal/terminal_icon.svg")
|
|
add_custom_type("Terminal", "Control", terminal_script, terminal_icon)
|
|
|
|
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)
|
|
var terminal_settings_script = preload("./editor_plugins/terminal/settings/terminal_settings.gd")
|
|
add_custom_type("TerminalSettings", "Resource", terminal_settings_script, null)
|
|
terminal_panel = preload("./editor_plugins/terminal/terminal_panel.tscn").instance()
|
|
terminal_panel.editor_plugin = self
|
|
terminal_panel.editor_interface = get_editor_interface()
|
|
add_control_to_bottom_panel(terminal_panel, "Terminal")
|
|
|
|
|
|
func _exit_tree():
|
|
remove_import_plugin(asciicast_import_plugin)
|
|
asciicast_import_plugin = null
|
|
|
|
remove_custom_type("Asciicast")
|
|
remove_custom_type("Terminal")
|
|
|
|
if pty_supported:
|
|
remove_custom_type("PTY")
|
|
remove_custom_type("TerminalSettings")
|
|
remove_control_from_bottom_panel(terminal_panel)
|
|
terminal_panel.free()
|