tiny_plane.gd 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. class_name TinyPlane
  2. extends RigidBody3D
  3. @export var thrust_power: float = 10000.0
  4. @export var turn_to_torque: float = 2000.0
  5. @export var move_to_pitch: float = 4000.0
  6. @export var wing_resistance: float = 10.0
  7. var target_torque: float = 0.0
  8. var target_pitch: float = 0.0
  9. var target_rotation := Vector3.ZERO
  10. var target_thrust := Vector3.ZERO
  11. var _current_commander: LocalInput = null
  12. func trigger_thrust(activate: bool) -> void:
  13. if activate:
  14. target_thrust = Vector3.FORWARD * thrust_power + Vector3.UP * thrust_power
  15. else:
  16. target_thrust = Vector3.ZERO
  17. func trigger_direction(dir: Vector2) -> void:
  18. target_torque = -dir.x * turn_to_torque
  19. target_pitch = -dir.y * move_to_pitch
  20. ## Make the vehicle responds to driver commands
  21. func drive_with(commander: LocalInput) -> void:
  22. commander.dir_changed.connect(_on_dir_changed)
  23. commander.main_action.connect(_on_main_action)
  24. _current_commander = commander
  25. func get_out() -> void:
  26. _current_commander.dir_changed.disconnect(_on_dir_changed)
  27. _current_commander.main_action.disconnect(_on_main_action)
  28. func _physics_process(delta: float) -> void:
  29. _apply_plane_rotation()
  30. _apply_plane_thrust()
  31. _apply_wing_resistance()
  32. func _apply_plane_rotation() -> void:
  33. var torque: Vector3 = transform.basis * Vector3(target_pitch, 0.0, target_torque)
  34. apply_torque(torque)
  35. func _apply_plane_thrust() -> void:
  36. var force: Vector3 = transform.basis * target_thrust
  37. apply_central_force(force)
  38. func _apply_wing_resistance() -> void:
  39. var vertical_speed = linear_velocity.dot(transform.basis * Vector3.UP)
  40. var local_wing_force = Vector3.UP * -wing_resistance * vertical_speed
  41. var wing_force = transform.basis * local_wing_force
  42. if _current_commander != null:
  43. print("- - -")
  44. print("Vertical speed : ", vertical_speed)
  45. print("Wing force local :", local_wing_force)
  46. print("Wing force : ", wing_force)
  47. apply_central_force(wing_force)
  48. func _on_dir_changed(dir: Vector2) -> void:
  49. trigger_direction(dir)
  50. func _on_main_action(pressed: bool) -> void:
  51. trigger_thrust(pressed)