浏览代码

:wrench: Make the jeep able to be driven

DricomDragon 1 年之前
父节点
当前提交
0d9e15bf6c
共有 2 个文件被更改,包括 38 次插入2 次删除
  1. 4 2
      first3d/component/entity/vehicles/jeep/Jeep.tscn
  2. 34 0
      first3d/component/entity/vehicles/jeep/jeep.gd

+ 4 - 2
first3d/component/entity/vehicles/jeep/Jeep.tscn

@@ -1,16 +1,18 @@
-[gd_scene load_steps=4 format=3 uid="uid://cj5dmtqadl5nf"]
+[gd_scene load_steps=5 format=3 uid="uid://cj5dmtqadl5nf"]
 
+[ext_resource type="Script" path="res://component/entity/vehicles/jeep/jeep.gd" id="1_fjw46"]
 [ext_resource type="PackedScene" uid="uid://dlaj4npd144qd" path="res://component/entity/vehicles/jeep/OrangeJeep_noWheel.glb" id="1_qgclq"]
 [ext_resource type="PackedScene" uid="uid://cg6eyxgui8y2s" path="res://component/entity/vehicles/jeep/OrangeJeep_wheel.glb" id="2_f6y5a"]
 
 [sub_resource type="BoxShape3D" id="BoxShape3D_1maan"]
 size = Vector3(1, 0.769157, 3.09562)
 
-[node name="Jeep" type="VehicleBody3D"]
+[node name="Jeep" type="VehicleBody3D" groups=["vehicle"]]
 transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -1.25362, 0)
 collision_layer = 8
 collision_mask = 11
 mass = 400.0
+script = ExtResource("1_fjw46")
 
 [node name="OrangeJeep_noWheel" parent="." instance=ExtResource("1_qgclq")]
 transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, -1, 0, 0, 0)

+ 34 - 0
first3d/component/entity/vehicles/jeep/jeep.gd

@@ -0,0 +1,34 @@
+extends VehicleBody3D
+
+@onready var max_engine_force: float = 50
+@onready var max_steering: float = PI / 6.0 # degrees
+
+var _current_commander: LocalInput = null
+
+
+func steer(ratio: float) -> void:
+	set_steering(ratio * max_steering)
+
+
+## Make the vehicle responds to driver commands
+func drive_with(commander: LocalInput) -> void:
+	commander.dir_changed.connect(_on_dir_changed)
+	commander.main_action.connect(_on_main_action)
+	_current_commander = commander
+
+
+func get_out() -> void:
+	_current_commander.dir_changed.disconnect(_on_dir_changed)
+	_current_commander.main_action.disconnect(_on_main_action)
+
+
+func _on_dir_changed(dir: Vector2) -> void:
+	print(dir)
+	steer(-dir.x)
+
+
+func _on_main_action(pressed: bool) -> void:
+	if pressed:
+		set_engine_force(max_engine_force)
+	else:
+		set_engine_force(0.0)