tiny_plane.gd 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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. @export var lift: float = 500.0
  8. var target_torque: float = 0.0
  9. var target_pitch: float = 0.0
  10. var target_rotation := Vector3.ZERO
  11. var target_thrust := Vector3.ZERO
  12. var _current_commander: LocalInput = null
  13. func trigger_thrust(activate: bool) -> void:
  14. if activate:
  15. target_thrust = Vector3.FORWARD * thrust_power
  16. else:
  17. target_thrust = Vector3.ZERO
  18. func trigger_direction(dir: Vector2) -> void:
  19. target_torque = -dir.x * turn_to_torque
  20. target_pitch = -dir.y * move_to_pitch
  21. ## Make the vehicle responds to driver commands
  22. func drive_with(commander: LocalInput) -> void:
  23. commander.dir_changed.connect(_on_dir_changed)
  24. commander.main_action.connect(_on_main_action)
  25. _current_commander = commander
  26. func get_out() -> void:
  27. _current_commander.dir_changed.disconnect(_on_dir_changed)
  28. _current_commander.main_action.disconnect(_on_main_action)
  29. _current_commander = null
  30. func _physics_process(delta: float) -> void:
  31. _apply_plane_rotation()
  32. _apply_plane_thrust()
  33. _apply_wing_resistance()
  34. _apply_lift()
  35. func _apply_plane_rotation() -> void:
  36. var torque: Vector3 = transform.basis * Vector3(target_pitch, 0.0, target_torque)
  37. apply_torque(torque)
  38. func _apply_plane_thrust() -> void:
  39. var force: Vector3 = transform.basis * target_thrust
  40. apply_central_force(force)
  41. func _apply_wing_resistance() -> void:
  42. var vertical_speed = linear_velocity.dot(transform.basis * Vector3.UP)
  43. var local_wing_force = Vector3.UP * -wing_resistance * vertical_speed
  44. var wing_force = transform.basis * local_wing_force
  45. if _current_commander != null:
  46. print("= = =")
  47. print("Vertical speed : ", vertical_speed)
  48. print("Wing force local :", local_wing_force)
  49. print("Wing force : ", wing_force)
  50. apply_central_force(wing_force)
  51. func _apply_lift() -> void:
  52. var forward_speed = linear_velocity.dot(transform.basis * Vector3.FORWARD)
  53. if forward_speed < 0.0 :
  54. forward_speed = 0.0
  55. var local_lift_force = Vector3.UP * lift * forward_speed
  56. var lift_force = transform.basis * local_lift_force
  57. if _current_commander != null:
  58. print("- - -")
  59. print("Forward speed : ", forward_speed)
  60. print("Lift force local :", local_lift_force)
  61. print("Lift force : ", lift_force)
  62. apply_central_force(lift_force)
  63. func _on_dir_changed(dir: Vector2) -> void:
  64. trigger_direction(dir)
  65. func _on_main_action(pressed: bool) -> void:
  66. trigger_thrust(pressed)