mirror of
https://github.com/git-learning-game/oh-my-git.git
synced 2024-11-03 19:04:40 +01:00
127 lines
4 KiB
Text
127 lines
4 KiB
Text
[gd_scene load_steps=9 format=3 uid="uid://bw81a517gpv2u"]
|
|
|
|
[ext_resource type="AudioStream" uid="uid://b83v18ysjftqi" path="res://sounds/typewriter_ding.wav" id="2"]
|
|
[ext_resource type="FontFile" path="res://fonts/monospace.tres" id="3"]
|
|
[ext_resource type="Script" path="res://scenes/terminal.gd" id="4"]
|
|
[ext_resource type="PackedScene" uid="uid://d00aa7p4xsxf2" path="res://scenes/text_editor.tscn" id="5"]
|
|
[ext_resource type="PackedScene" path="res://scenes/tcp_server.tscn" id="6"]
|
|
[ext_resource type="AudioStream" uid="uid://cco182msscd1y" path="res://sounds/buzzer.wav" id="7"]
|
|
|
|
[sub_resource type="StyleBoxFlat" id="1"]
|
|
content_margin_left = 5.0
|
|
content_margin_top = 5.0
|
|
content_margin_right = 5.0
|
|
content_margin_bottom = 5.0
|
|
bg_color = Color(0, 0, 0, 1)
|
|
border_color = Color(0.415686, 0.333333, 1, 1)
|
|
corner_radius_top_left = 10
|
|
corner_radius_top_right = 10
|
|
corner_radius_bottom_right = 10
|
|
corner_radius_bottom_left = 10
|
|
|
|
[sub_resource type="GDScript" id="2"]
|
|
script/source = "extends Button
|
|
|
|
func _ready():
|
|
pass
|
|
|
|
func pressed():
|
|
$\"../../..\".send_command(text)
|
|
"
|
|
|
|
[node name="Terminal" type="Control"]
|
|
layout_mode = 3
|
|
anchors_preset = 15
|
|
anchor_right = 1.0
|
|
anchor_bottom = 1.0
|
|
mouse_filter = 1
|
|
script = ExtResource("4")
|
|
|
|
[node name="Rows" type="VBoxContainer" parent="."]
|
|
layout_mode = 0
|
|
anchor_right = 1.0
|
|
anchor_bottom = 1.0
|
|
|
|
[node name="TopHalf" type="Control" parent="Rows"]
|
|
layout_mode = 2
|
|
size_flags_vertical = 3
|
|
|
|
[node name="Output" type="RichTextLabel" parent="Rows/TopHalf"]
|
|
layout_mode = 0
|
|
anchor_right = 1.0
|
|
anchor_bottom = 1.0
|
|
offset_top = -1.92206
|
|
offset_bottom = -1.92212
|
|
size_flags_vertical = 3
|
|
theme_override_fonts/normal_font = ExtResource("3")
|
|
theme_override_styles/normal = SubResource("1")
|
|
scroll_following = true
|
|
|
|
[node name="Completions" type="Tree" parent="Rows/TopHalf"]
|
|
layout_mode = 0
|
|
anchor_top = 1.0
|
|
anchor_right = 1.0
|
|
anchor_bottom = 1.0
|
|
offset_top = -34.0
|
|
columns = 2
|
|
hide_root = true
|
|
|
|
[node name="VBoxContainer" type="VBoxContainer" parent="Rows"]
|
|
visible = false
|
|
layout_mode = 2
|
|
|
|
[node name="Button" type="Button" parent="Rows/VBoxContainer"]
|
|
layout_mode = 2
|
|
text = "git commit --allow-empty -m \"$RANDOM\""
|
|
script = SubResource("2")
|
|
|
|
[node name="Button2" type="Button" parent="Rows/VBoxContainer"]
|
|
layout_mode = 2
|
|
text = "git checkout HEAD^"
|
|
script = SubResource("2")
|
|
|
|
[node name="Button3" type="Button" parent="Rows/VBoxContainer"]
|
|
layout_mode = 2
|
|
text = "git checkout -b \"$RANDOM\""
|
|
script = SubResource("2")
|
|
|
|
[node name="InputLine" type="HBoxContainer" parent="Rows"]
|
|
layout_mode = 2
|
|
|
|
[node name="Input" type="LineEdit" parent="Rows/InputLine"]
|
|
layout_mode = 2
|
|
size_flags_horizontal = 3
|
|
caret_blink = true
|
|
|
|
[node name="TextEditor" parent="." instance=ExtResource("5")]
|
|
visible = false
|
|
layout_mode = 0
|
|
mouse_filter = 1
|
|
syntax_highlighter = null
|
|
|
|
[node name="TCPServer" parent="." instance=ExtResource("6")]
|
|
|
|
[node name="Pager" type="Window" parent="."]
|
|
|
|
[node name="Text" type="RichTextLabel" parent="Pager"]
|
|
anchors_preset = 15
|
|
anchor_right = 1.0
|
|
anchor_bottom = 1.0
|
|
theme_override_fonts/normal_font = ExtResource("3")
|
|
|
|
[node name="ErrorSound" type="AudioStreamPlayer" parent="."]
|
|
stream = ExtResource("7")
|
|
volume_db = -10.0
|
|
|
|
[node name="OkSound" type="AudioStreamPlayer" parent="."]
|
|
stream = ExtResource("2")
|
|
volume_db = -5.0
|
|
|
|
[connection signal="item_selected" from="Rows/TopHalf/Completions" to="." method="_completion_selected"]
|
|
[connection signal="pressed" from="Rows/VBoxContainer/Button" to="Rows/VBoxContainer/Button" method="pressed"]
|
|
[connection signal="pressed" from="Rows/VBoxContainer/Button2" to="Rows/VBoxContainer/Button2" method="pressed"]
|
|
[connection signal="pressed" from="Rows/VBoxContainer/Button3" to="Rows/VBoxContainer/Button3" method="pressed"]
|
|
[connection signal="text_changed" from="Rows/InputLine/Input" to="." method="_input_changed"]
|
|
[connection signal="text_submitted" from="Rows/InputLine/Input" to="." method="send_command"]
|
|
[connection signal="saved" from="TextEditor" to="." method="editor_saved"]
|
|
[connection signal="data_received" from="TCPServer" to="." method="receive_output"]
|