Przeglądaj źródła

:lipstick: Describe plane actions

DricomDragon 2 miesięcy temu
rodzic
commit
24d23ab1bb

+ 21 - 2
godot/component/ui/input_prompts/input_prompts_center.gd

@@ -5,10 +5,13 @@ extends CenterContainer
 
 @onready var WalkPrompts: Control = $InputPromptsCollection/WalkPrompts
 @onready var VehiclePrompts: Control = $InputPromptsCollection/VehiclePrompts
+@onready var JeepPrompts: Control = $InputPromptsCollection/VehiclePrompts/JeepPrompts
+@onready var PlanePrompts: Control = $InputPromptsCollection/VehiclePrompts/PlanePrompts
 
 
 func _on_title_screen_start_game() -> void:
 	_enable(WalkPrompts)
+	_disable_vehicle_prompts()
 
 
 func _on_victory_menu_visibility_changed() -> void:
@@ -25,11 +28,27 @@ func _disable(prompts: Control) -> void:
 	prompts.set_process_mode(Node.PROCESS_MODE_DISABLED)
 
 
+func _enable_vehicle_prompts_of(vehicle: SeatedVehicle) -> void:
+	_enable(VehiclePrompts)
+
+	if vehicle is Jeep:
+		_enable(JeepPrompts)
+	if vehicle is Biplan or vehicle is TinyPlane:
+		_enable(PlanePrompts)
+
+
+func _disable_vehicle_prompts() -> void:
+	_disable(JeepPrompts)
+	_disable(PlanePrompts)
+
+	_disable(VehiclePrompts)
+
+
 func _on_main_walker_got_in(vehicle: SeatedVehicle) -> void:
 	_disable(WalkPrompts)
-	_enable(VehiclePrompts)
+	_enable_vehicle_prompts_of(vehicle)
 
 
 func _on_main_walker_got_out() -> void:
 	_enable(WalkPrompts)
-	_disable(VehiclePrompts)
+	_disable_vehicle_prompts()

+ 128 - 0
godot/component/ui/input_prompts/plane/plane_prompts.tscn

@@ -0,0 +1,128 @@
+[gd_scene load_steps=13 format=3 uid="uid://rixhldyytdiy"]
+
+[ext_resource type="Script" path="res://component/ui/input_prompts/prompt_container.gd" id="1_eppoy"]
+[ext_resource type="Script" path="res://addons/input_prompts/action_prompt/action_prompt.gd" id="2_h1sqq"]
+
+[sub_resource type="InputEventKey" id="InputEventKey_eyt6c"]
+device = -1
+physical_keycode = 32
+unicode = 32
+
+[sub_resource type="InputEventJoypadButton" id="InputEventJoypadButton_3f2lm"]
+device = -1
+
+[sub_resource type="InputEventKey" id="InputEventKey_vqhl2"]
+device = -1
+physical_keycode = 65
+unicode = 97
+
+[sub_resource type="InputEventJoypadMotion" id="InputEventJoypadMotion_l8a88"]
+device = -1
+axis_value = -1.0
+
+[sub_resource type="InputEventKey" id="InputEventKey_ghxeo"]
+device = -1
+physical_keycode = 68
+unicode = 101
+
+[sub_resource type="InputEventJoypadMotion" id="InputEventJoypadMotion_vm1od"]
+device = -1
+axis_value = 1.0
+
+[sub_resource type="InputEventKey" id="InputEventKey_fvypa"]
+device = -1
+physical_keycode = 83
+unicode = 111
+
+[sub_resource type="InputEventJoypadMotion" id="InputEventJoypadMotion_f34ba"]
+device = -1
+axis = 1
+axis_value = 1.0
+
+[sub_resource type="InputEventKey" id="InputEventKey_c4xy3"]
+device = -1
+physical_keycode = 87
+unicode = 44
+
+[sub_resource type="InputEventJoypadMotion" id="InputEventJoypadMotion_th7as"]
+device = -1
+axis = 1
+axis_value = -1.0
+
+[node name="PlanePrompts" type="VBoxContainer"]
+offset_left = 193.0
+offset_right = 193.0
+offset_bottom = 100.0
+script = ExtResource("1_eppoy")
+
+[node name="AcceleratePrompt" type="HBoxContainer" parent="."]
+layout_mode = 2
+script = ExtResource("1_eppoy")
+
+[node name="AccelerateLabel" type="Label" parent="AcceleratePrompt"]
+layout_mode = 2
+theme_override_font_sizes/font_size = 34
+text = "Accelerate"
+
+[node name="AccelerateMaxActionPrompt" type="TextureRect" parent="AcceleratePrompt"]
+custom_minimum_size = Vector2(100, 100)
+layout_mode = 2
+stretch_mode = 5
+script = ExtResource("2_h1sqq")
+action = "main"
+icon = 0
+events = Array[InputEvent]([SubResource("InputEventKey_eyt6c"), SubResource("InputEventJoypadButton_3f2lm")])
+
+[node name="RollPrompt" type="HBoxContainer" parent="."]
+layout_mode = 2
+script = ExtResource("1_eppoy")
+
+[node name="RollLabel" type="Label" parent="RollPrompt"]
+layout_mode = 2
+theme_override_font_sizes/font_size = 34
+text = "Roll"
+
+[node name="RollLeftActionPrompt" type="TextureRect" parent="RollPrompt"]
+custom_minimum_size = Vector2(100, 100)
+layout_mode = 2
+stretch_mode = 5
+script = ExtResource("2_h1sqq")
+action = "move_left"
+icon = 0
+events = Array[InputEvent]([SubResource("InputEventKey_vqhl2"), SubResource("InputEventJoypadMotion_l8a88")])
+
+[node name="RollRightActionPrompt" type="TextureRect" parent="RollPrompt"]
+custom_minimum_size = Vector2(100, 100)
+layout_mode = 2
+stretch_mode = 5
+script = ExtResource("2_h1sqq")
+action = "move_right"
+icon = 0
+events = Array[InputEvent]([SubResource("InputEventKey_ghxeo"), SubResource("InputEventJoypadMotion_vm1od")])
+
+[node name="PitchPrompt" type="HBoxContainer" parent="."]
+layout_mode = 2
+script = ExtResource("1_eppoy")
+
+[node name="PitchLabel" type="Label" parent="PitchPrompt"]
+layout_mode = 2
+theme_override_font_sizes/font_size = 34
+text = "Roll"
+
+[node name="PitchUpActionPrompt" type="TextureRect" parent="PitchPrompt"]
+custom_minimum_size = Vector2(100, 100)
+layout_mode = 2
+stretch_mode = 5
+script = ExtResource("2_h1sqq")
+action = "move_back"
+icon = 0
+events = Array[InputEvent]([SubResource("InputEventKey_fvypa"), SubResource("InputEventJoypadMotion_f34ba")])
+
+[node name="PitchDownActionPrompt" type="TextureRect" parent="PitchPrompt"]
+custom_minimum_size = Vector2(100, 100)
+layout_mode = 2
+stretch_mode = 5
+script = ExtResource("2_h1sqq")
+action = "move_forward"
+icon = 0
+events = Array[InputEvent]([SubResource("InputEventKey_c4xy3"), SubResource("InputEventJoypadMotion_th7as")])

+ 5 - 1
godot/run/levels/infinite_level.tscn

@@ -1,4 +1,4 @@
-[gd_scene load_steps=37 format=3 uid="uid://7ivipmwaw24t"]
+[gd_scene load_steps=38 format=3 uid="uid://7ivipmwaw24t"]
 
 [ext_resource type="Texture2D" uid="uid://cgwafs6ukpm7y" path="res://component/entity/ground/ground051.jpg" id="1_3ytcp"]
 [ext_resource type="Script" path="res://run/levels/camera_tracker.gd" id="1_qdm47"]
@@ -29,6 +29,7 @@
 [ext_resource type="PackedScene" uid="uid://sogwc56hcxlr" path="res://component/ui/input_prompts/jeep/jeep_prompts.tscn" id="21_wa45u"]
 [ext_resource type="Script" path="res://component/ui/input_prompts/prompt_container.gd" id="22_tmm3q"]
 [ext_resource type="PackedScene" uid="uid://cqkond8xwtdv5" path="res://component/ui/hud/chocolate_gauge/chocolate_gauge.tscn" id="23_wh0jf"]
+[ext_resource type="PackedScene" uid="uid://rixhldyytdiy" path="res://component/ui/input_prompts/plane/plane_prompts.tscn" id="24_25u1w"]
 
 [sub_resource type="BoxShape3D" id="BoxShape3D_ctk0t"]
 size = Vector3(500, 10, 500)
@@ -482,6 +483,9 @@ layout_mode = 2
 layout_mode = 2
 script = ExtResource("22_tmm3q")
 
+[node name="PlanePrompts" parent="UI/InputPromptsCenter/InputPromptsCollection/VehiclePrompts" instance=ExtResource("24_25u1w")]
+layout_mode = 2
+
 [node name="TitleScreen" parent="UI" instance=ExtResource("13_2xijd")]
 
 [node name="PauseMenu" parent="UI" instance=ExtResource("16_orqqe")]