Browse Source

:tada: Zoom out when speed increases

DricomDragon 1 year ago
parent
commit
fdbfcdeffd

+ 8 - 0
godot/component/ships/ship.gd

@@ -2,9 +2,11 @@ class_name Ship
 extends RigidBody2D
 # Common base script for ships
 
+signal moved(speed: float)
 
 const THRUST_STRENGTH = 400_000
 const TORQUE_THRUST = 1
+const MOVE_CEIL : float = 2
 
 var current_force := Vector2.ZERO
 var current_torque : float = 0.0
@@ -14,6 +16,12 @@ 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))
+	else:
+		moved.emit(0.0)
+
 
 func _on_command(dir: Vector2) -> void:
 	_thrust(dir)

+ 9 - 0
godot/component/views/player_camera.gd

@@ -0,0 +1,9 @@
+class_name PlayerCamera
+extends Camera2D
+# Track the player
+
+const SPEED_TO_ZOOM = 0.001
+
+
+func _on_moved(speed: float) -> void:
+	zoom = Vector2.ONE / (1 + speed * SPEED_TO_ZOOM)

+ 4 - 1
godot/run/levels/level_1.tscn

@@ -1,9 +1,10 @@
-[gd_scene load_steps=5 format=3 uid="uid://bmb72w7tf6fu4"]
+[gd_scene load_steps=6 format=3 uid="uid://bmb72w7tf6fu4"]
 
 [ext_resource type="PackedScene" uid="uid://cqdewtd1yr4cn" path="res://component/props/godot_logo/godot_logo.tscn" id="1_36ls2"]
 [ext_resource type="PackedScene" uid="uid://dlkwtp1gl45r" path="res://component/ships/BiBiShip.tscn" id="2_hw8a6"]
 [ext_resource type="PackedScene" uid="uid://bi4ilbgyhjrnx" path="res://component/control/keyboard/keyboard_control.tscn" id="3_o4rax"]
 [ext_resource type="Script" path="res://component/control/gamepad/gamepad_control.gd" id="4_vfxyo"]
+[ext_resource type="Script" path="res://component/views/player_camera.gd" id="4_w3h2o"]
 
 [node name="Level1" type="Node2D"]
 
@@ -18,9 +19,11 @@ position = Vector2(462, 278)
 [node name="KeyboardControl" parent="BiBiShip" instance=ExtResource("3_o4rax")]
 
 [node name="Camera2D" type="Camera2D" parent="BiBiShip"]
+script = ExtResource("4_w3h2o")
 
 [node name="GamepadControl" type="Node" parent="BiBiShip"]
 script = ExtResource("4_vfxyo")
 
+[connection signal="moved" from="BiBiShip" to="BiBiShip/Camera2D" method="_on_moved"]
 [connection signal="dir_changed" from="BiBiShip/KeyboardControl" to="BiBiShip" method="_on_command"]
 [connection signal="dir_changed" from="BiBiShip/GamepadControl" to="BiBiShip" method="_on_command"]