Browse Source

:gamepad: Make player movable with a joystick

DricomDragon 1 year ago
parent
commit
8951f8d4dc

+ 0 - 1
netnet/component/entity/jumper/jumper.gd

@@ -31,6 +31,5 @@ func _physics_process(delta):
 
 	# Handle movement.
 	var direction = input.direction
-	direction.y = 0
 	if direction:
 		apply_force(direction * MOVE_FORCE)

+ 19 - 3
netnet/component/entity/jumper/jumper_input.gd

@@ -1,6 +1,9 @@
 class_name JumperInput
 extends MultiplayerSynchronizer
 
+
+const STICK_DEADZONE: float = 0.5
+
 # Set via RPC to simulate is_action_just_pressed.
 @export var jumping: bool = false
 
@@ -20,7 +23,20 @@ func jump() -> void:
 
 func _process(delta: float) -> void:
 	# Get the input direction and handle the movement/deceleration.
-	# As good practice, you should replace UI actions with custom gameplay actions.
-	direction = Input.get_vector("ui_left", "ui_right", "ui_up", "ui_down")
-	if Input.is_action_just_pressed("ui_accept"):
+
+	direction = _new_direction()
+	if Input.is_action_just_pressed("jump"):
 		jump.rpc()
+
+func _new_direction() -> Vector2:
+	var new_dir := Vector2(Input.get_joy_axis(0, JOY_AXIS_LEFT_X), 0.0)
+	if absf(new_dir.x) < STICK_DEADZONE:
+		new_dir.x = 0.0
+
+	new_dir.x += Input.get_axis("move_left", "move_right")
+	print(Input.get_axis("move_left", "move_right"))
+
+	if new_dir == Vector2.ZERO:
+		return Vector2.ZERO
+
+	return new_dir.normalized()

+ 2 - 0
netnet/component/entity/player/player.tscn

@@ -35,6 +35,8 @@ replication_config = SubResource("SceneReplicationConfig_fb1vy")
 root_path = NodePath(".")
 replication_config = SubResource("SceneReplicationConfig_hoavk")
 script = ExtResource("2_ju3m6")
+jumping = null
+direction = null
 
 [node name="CollisionShape3D" type="CollisionShape3D" parent="."]
 shape = SubResource("CapsuleShape3D_37qaq")

+ 20 - 8
netnet/project.godot

@@ -1,11 +1,3 @@
-; Engine configuration file.
-; It's best edited using the editor UI and not directly,
-; since the parameters that go here are not all obvious.
-;
-; Format:
-;   [section] ; section goes between []
-;   param=value ; assign values to parameters
-
 config_version=5
 
 [application]
@@ -14,3 +6,23 @@ config/name="Network Example Gd4"
 config/description="Scene replication example in 3D with Godot 4"
 run/main_scene="res://run/multiplayer.tscn"
 config/features=PackedStringArray("4.0")
+config/tags=PackedStringArray("dricom")
+
+[input]
+
+move_right={
+"deadzone": 0.5,
+"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194321,"key_label":0,"unicode":0,"echo":false,"script":null)
+]
+}
+move_left={
+"deadzone": 0.5,
+"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194321,"key_label":0,"unicode":0,"echo":false,"script":null)
+]
+}
+jump={
+"deadzone": 0.5,
+"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":32,"key_label":0,"unicode":32,"echo":false,"script":null)
+, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"button_index":0,"pressure":0.0,"pressed":true,"script":null)
+]
+}