|
@@ -3,10 +3,12 @@ extends RigidBody2D
|
|
|
# Common base script for ships
|
|
|
|
|
|
signal moved(speed: float)
|
|
|
+signal thrusted(power: float)
|
|
|
|
|
|
const THRUST_STRENGTH: float = 400_000.0
|
|
|
const TORQUE_THRUST: float = 20.0
|
|
|
-const MOVE_CEIL : float = 2
|
|
|
+const MOVE_CEIL : float = 2.0
|
|
|
+const THRUST_CEIL : float = 2.0
|
|
|
|
|
|
var current_force := Vector2.ZERO
|
|
|
var current_torque : float = 0.0
|
|
@@ -16,11 +18,15 @@ func _physics_process(delta):
|
|
|
apply_central_force(current_force.rotated(rotation))
|
|
|
apply_torque(current_torque)
|
|
|
|
|
|
- var square_speed: float = linear_velocity.length_squared()
|
|
|
- if square_speed > MOVE_CEIL:
|
|
|
- moved.emit(sqrt(square_speed))
|
|
|
+ _vec_ceil_emit(linear_velocity, MOVE_CEIL, moved)
|
|
|
+ _vec_ceil_emit(current_force, THRUST_CEIL, thrusted)
|
|
|
+
|
|
|
+func _vec_ceil_emit(vec: Vector2, ceil: float, sig: Signal) -> void:
|
|
|
+ var length_square: float = vec.length_squared()
|
|
|
+ if length_square > ceil:
|
|
|
+ sig.emit(sqrt(length_square))
|
|
|
else:
|
|
|
- moved.emit(0.0)
|
|
|
+ sig.emit(0.0)
|
|
|
|
|
|
|
|
|
func _on_command(dir: Vector2) -> void:
|