浏览代码

:tada: Make the ship movable by keyboard

DricomDragon 1 年之前
父节点
当前提交
8e84623f39

+ 11 - 0
godot/component/control/keyboard/keyboard_control.gd

@@ -0,0 +1,11 @@
+class_name KeyboardControl
+extends Node
+# Command from keyboard input
+
+
+signal dir_changed(dir: Vector2)
+
+
+func _unhandled_key_input(event: InputEvent) -> void:
+	var new_dir = Input.get_vector("ui_left", "ui_right", "ui_up", "ui_down")
+	dir_changed.emit(new_dir)

+ 6 - 0
godot/component/control/keyboard/keyboard_control.tscn

@@ -0,0 +1,6 @@
+[gd_scene load_steps=2 format=3 uid="uid://bi4ilbgyhjrnx"]
+
+[ext_resource type="Script" path="res://component/control/keyboard/keyboard_control.gd" id="1_vjs4q"]
+
+[node name="KeyboardControl" type="Node"]
+script = ExtResource("1_vjs4q")

文件差异内容过多而无法显示
+ 373 - 3
godot/component/ships/BiBiShip.tscn


+ 21 - 0
godot/component/ships/ship.gd

@@ -0,0 +1,21 @@
+class_name Ship
+extends RigidBody2D
+# Common base script for ships
+
+
+const THRUST_STRENGTH = 400_000
+
+var current_force = Vector2.ZERO
+
+
+func _physics_process(delta):
+	apply_central_force(current_force)
+
+
+func _on_command(dir: Vector2) -> void:
+	_thrust(dir)
+
+
+func _thrust(dir: Vector2) -> void:
+	print(dir)
+	current_force = dir * THRUST_STRENGTH

+ 4 - 0
godot/project.godot

@@ -15,6 +15,10 @@ run/main_scene="res://run/levels/level_1.tscn"
 config/features=PackedStringArray("4.1", "GL Compatibility")
 config/icon="res://icon.svg"
 
+[physics]
+
+2d/default_gravity=0.0
+
 [rendering]
 
 renderer/rendering_method="gl_compatibility"

+ 6 - 1
godot/run/levels/level_1.tscn

@@ -1,7 +1,8 @@
-[gd_scene load_steps=3 format=3 uid="uid://bmb72w7tf6fu4"]
+[gd_scene load_steps=4 format=3 uid="uid://bmb72w7tf6fu4"]
 
 [ext_resource type="PackedScene" uid="uid://cqdewtd1yr4cn" path="res://component/props/godot_logo/godot_logo.tscn" id="1_36ls2"]
 [ext_resource type="PackedScene" uid="uid://dlkwtp1gl45r" path="res://component/ships/BiBiShip.tscn" id="2_hw8a6"]
+[ext_resource type="PackedScene" uid="uid://bi4ilbgyhjrnx" path="res://component/control/keyboard/keyboard_control.tscn" id="3_o4rax"]
 
 [node name="Level1" type="Node2D"]
 
@@ -12,3 +13,7 @@ position = Vector2(930, 491)
 
 [node name="BiBiShip" parent="." instance=ExtResource("2_hw8a6")]
 position = Vector2(462, 278)
+
+[node name="KeyboardControl" parent="BiBiShip" instance=ExtResource("3_o4rax")]
+
+[connection signal="dir_changed" from="BiBiShip/KeyboardControl" to="BiBiShip" method="_on_command"]