Ver código fonte

:tada: Control ship with gamepad

DricomDragon 1 ano atrás
pai
commit
9b4dd76fb4

+ 22 - 0
godot/component/control/gamepad/gamepad_control.gd

@@ -0,0 +1,22 @@
+class_name GamepadControl
+extends Node
+# Command from keyboard input
+
+
+signal dir_changed(dir: Vector2)
+
+var _last_dir = Vector2.ZERO
+
+
+func _unhandled_input(event: InputEvent) -> void:
+	if event is InputEventJoypadMotion:
+		var joyEvent := event as InputEventJoypadMotion
+		if joyEvent.get_axis() == JOY_AXIS_LEFT_X:
+			_last_dir.x = joyEvent.get_axis_value()
+			dir_changed.emit(_last_dir)
+		elif joyEvent.get_axis() == JOY_AXIS_LEFT_Y:
+			_last_dir.y = joyEvent.get_axis_value()
+		else:
+			return
+
+		dir_changed.emit(_last_dir)

+ 6 - 0
godot/component/control/gamepad/gamepad_control.tscn

@@ -0,0 +1,6 @@
+[gd_scene load_steps=2 format=3 uid="uid://blmh7yyrv8b2o"]
+
+[ext_resource type="Script" path="res://component/control/gamepad/gamepad_control.gd" id="1_ury7v"]
+
+[node name="GamepadControl" type="Node"]
+script = ExtResource("1_ury7v")

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

@@ -17,5 +17,4 @@ func _on_command(dir: Vector2) -> void:
 
 
 func _thrust(dir: Vector2) -> void:
-	print(dir)
 	current_force = dir * THRUST_STRENGTH

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

@@ -1,8 +1,9 @@
-[gd_scene load_steps=4 format=3 uid="uid://bmb72w7tf6fu4"]
+[gd_scene load_steps=5 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"]
+[ext_resource type="Script" path="res://component/control/gamepad/gamepad_control.gd" id="4_vfxyo"]
 
 [node name="Level1" type="Node2D"]
 
@@ -18,4 +19,8 @@ position = Vector2(462, 278)
 
 [node name="Camera2D" type="Camera2D" parent="BiBiShip"]
 
+[node name="GamepadControl" type="Node" parent="BiBiShip"]
+script = ExtResource("4_vfxyo")
+
 [connection signal="dir_changed" from="BiBiShip/KeyboardControl" to="BiBiShip" method="_on_command"]
+[connection signal="dir_changed" from="BiBiShip/GamepadControl" to="BiBiShip" method="_on_command"]