Crank sound
This commit is contained in:
parent
51eb5aa15a
commit
384e8560f6
5 changed files with 53 additions and 19 deletions
|
@ -1,6 +1,7 @@
|
||||||
[gd_scene load_steps=17 format=3 uid="uid://dhn7yt46fyac8"]
|
[gd_scene load_steps=18 format=3 uid="uid://dhn7yt46fyac8"]
|
||||||
|
|
||||||
[ext_resource type="PackedScene" uid="uid://bhulqhxesd5gc" path="res://prefabs/player.tscn" id="1_65a7v"]
|
[ext_resource type="PackedScene" uid="uid://bhulqhxesd5gc" path="res://prefabs/player.tscn" id="1_65a7v"]
|
||||||
|
[ext_resource type="AudioStream" uid="uid://bsy2d0bl3lgg0" path="res://sounds/crank.ogg" id="1_cweq4"]
|
||||||
[ext_resource type="Texture2D" uid="uid://py6qiu3rm7cu" path="res://sprites/brickwall.png" id="2_edqdh"]
|
[ext_resource type="Texture2D" uid="uid://py6qiu3rm7cu" path="res://sprites/brickwall.png" id="2_edqdh"]
|
||||||
[ext_resource type="Texture2D" uid="uid://dlbl6d4yghvht" path="res://sprites/mask.png" id="3_8o315"]
|
[ext_resource type="Texture2D" uid="uid://dlbl6d4yghvht" path="res://sprites/mask.png" id="3_8o315"]
|
||||||
[ext_resource type="Script" path="res://scripts/Flashlight.cs" id="3_cylxo"]
|
[ext_resource type="Script" path="res://scripts/Flashlight.cs" id="3_cylxo"]
|
||||||
|
@ -19,7 +20,7 @@ light_mode = 2
|
||||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_m680d"]
|
[sub_resource type="ShaderMaterial" id="ShaderMaterial_m680d"]
|
||||||
shader = ExtResource("5_64d71")
|
shader = ExtResource("5_64d71")
|
||||||
|
|
||||||
[sub_resource type="ViewportTexture" id="ViewportTexture_0u602"]
|
[sub_resource type="ViewportTexture" id="ViewportTexture_nebfb"]
|
||||||
viewport_path = NodePath("FlashlightViewport")
|
viewport_path = NodePath("FlashlightViewport")
|
||||||
|
|
||||||
[sub_resource type="CircleShape2D" id="CircleShape2D_prnh4"]
|
[sub_resource type="CircleShape2D" id="CircleShape2D_prnh4"]
|
||||||
|
@ -36,10 +37,12 @@ light_mode = 2
|
||||||
[node name="Root" type="Node2D"]
|
[node name="Root" type="Node2D"]
|
||||||
y_sort_enabled = true
|
y_sort_enabled = true
|
||||||
|
|
||||||
[node name="Player" parent="." instance=ExtResource("1_65a7v")]
|
[node name="Sounds" type="Node" parent="."]
|
||||||
position = Vector2(19, 4)
|
|
||||||
|
|
||||||
[node name="Controller" type="Node" parent="." node_paths=PackedStringArray("Player", "Camera", "Circle", "PlayerCircle", "Polygon", "CollisionCircle", "CollisionPlayerCircle", "CollisionPolygon", "FlashlightGroup")]
|
[node name="CrankSound" type="AudioStreamPlayer" parent="Sounds"]
|
||||||
|
stream = ExtResource("1_cweq4")
|
||||||
|
|
||||||
|
[node name="FlashlightController" type="Node" parent="." node_paths=PackedStringArray("Player", "Camera", "Circle", "PlayerCircle", "Polygon", "CollisionCircle", "CollisionPlayerCircle", "CollisionPolygon", "FlashlightGroup", "CrankSoundPlayer")]
|
||||||
script = ExtResource("3_cylxo")
|
script = ExtResource("3_cylxo")
|
||||||
Player = NodePath("../Player")
|
Player = NodePath("../Player")
|
||||||
Camera = NodePath("../PlayerCamera")
|
Camera = NodePath("../PlayerCamera")
|
||||||
|
@ -51,6 +54,10 @@ CollisionPlayerCircle = NodePath("../PlayerCamera/Area2D/PlayerCircle")
|
||||||
CollisionPolygon = NodePath("../PlayerCamera/Area2D/CollisionPolygon2D")
|
CollisionPolygon = NodePath("../PlayerCamera/Area2D/CollisionPolygon2D")
|
||||||
FlashlightGroup = NodePath("../FlashlightViewport/CanvasGroup")
|
FlashlightGroup = NodePath("../FlashlightViewport/CanvasGroup")
|
||||||
BrightnessCurve = SubResource("Curve_o5byr")
|
BrightnessCurve = SubResource("Curve_o5byr")
|
||||||
|
CrankSoundPlayer = NodePath("../Sounds/CrankSound")
|
||||||
|
|
||||||
|
[node name="Player" parent="." instance=ExtResource("1_65a7v")]
|
||||||
|
position = Vector2(19, 4)
|
||||||
|
|
||||||
[node name="TestWall" type="Sprite2D" parent="."]
|
[node name="TestWall" type="Sprite2D" parent="."]
|
||||||
light_mask = 2
|
light_mask = 2
|
||||||
|
@ -95,7 +102,7 @@ CameraBounds = Vector2(30, 20)
|
||||||
[node name="PointLight2D" type="PointLight2D" parent="PlayerCamera" node_paths=PackedStringArray("LightViewport")]
|
[node name="PointLight2D" type="PointLight2D" parent="PlayerCamera" node_paths=PackedStringArray("LightViewport")]
|
||||||
blend_mode = 2
|
blend_mode = 2
|
||||||
range_item_cull_mask = 2
|
range_item_cull_mask = 2
|
||||||
texture = SubResource("ViewportTexture_0u602")
|
texture = SubResource("ViewportTexture_nebfb")
|
||||||
script = ExtResource("6_slohe")
|
script = ExtResource("6_slohe")
|
||||||
LightViewport = NodePath("../../FlashlightViewport")
|
LightViewport = NodePath("../../FlashlightViewport")
|
||||||
|
|
||||||
|
|
|
@ -14,13 +14,15 @@ public partial class Flashlight : Node
|
||||||
[Export] public CollisionShape2D CollisionPlayerCircle;
|
[Export] public CollisionShape2D CollisionPlayerCircle;
|
||||||
[Export] public CollisionPolygon2D CollisionPolygon;
|
[Export] public CollisionPolygon2D CollisionPolygon;
|
||||||
[Export] public CanvasGroup FlashlightGroup;
|
[Export] public CanvasGroup FlashlightGroup;
|
||||||
|
|
||||||
[Export] public Curve BrightnessCurve;
|
[Export] public Curve BrightnessCurve;
|
||||||
|
|
||||||
|
[Export] public AudioStreamPlayer CrankSoundPlayer;
|
||||||
|
|
||||||
private float FlashlightRadius = Constants.MaxFlashlightRadius;
|
private float FlashlightRadius = Constants.MaxFlashlightRadius;
|
||||||
private float FlashlightEnergy = Constants.MaxFlashlightEnergy;
|
private float FlashlightEnergy = Constants.MaxFlashlightEnergy;
|
||||||
private float FlashlightChargeTimeout = 1;
|
private float FlashlightChargeTimeout = 1;
|
||||||
|
|
||||||
public override void _Ready()
|
public override void _Ready()
|
||||||
{
|
{
|
||||||
base._Ready();
|
base._Ready();
|
||||||
|
@ -44,7 +46,7 @@ public partial class Flashlight : Node
|
||||||
FlashlightRadius = Mathf.Lerp(Constants.MinFlashlightRadius, Constants.MaxFlashlightRadius,
|
FlashlightRadius = Mathf.Lerp(Constants.MinFlashlightRadius, Constants.MaxFlashlightRadius,
|
||||||
Mathf.Clamp(d - Constants.MinFlashlightDistance, 0,
|
Mathf.Clamp(d - Constants.MinFlashlightDistance, 0,
|
||||||
Constants.MaxFlashlightDistance - Constants.MinFlashlightDistance) / Constants.MaxFlashlightDistance);
|
Constants.MaxFlashlightDistance - Constants.MinFlashlightDistance) / Constants.MaxFlashlightDistance);
|
||||||
|
|
||||||
var flashlightScreenPosition = flashlightScreenCenterPosition + Constants.HalfScreenSize;
|
var flashlightScreenPosition = flashlightScreenCenterPosition + Constants.HalfScreenSize;
|
||||||
var flashlightScale = FlashlightRadius / Constants.MaxFlashlightRadius;
|
var flashlightScale = FlashlightRadius / Constants.MaxFlashlightRadius;
|
||||||
Circle.Position = flashlightScreenPosition;
|
Circle.Position = flashlightScreenPosition;
|
||||||
|
@ -67,20 +69,26 @@ public partial class Flashlight : Node
|
||||||
var xy3 = a * new Vector2(Mathf.Cos(dslkhjdsflkhjsdfhlkjdfsjlk), Mathf.Sin(dslkhjdsflkhjsdfhlkjdfsjlk));
|
var xy3 = a * new Vector2(Mathf.Cos(dslkhjdsflkhjsdfhlkjdfsjlk), Mathf.Sin(dslkhjdsflkhjsdfhlkjdfsjlk));
|
||||||
var dslkhjdsflkhjsdfhlkjdfsjlk2 = angle - arcsinRd;
|
var dslkhjdsflkhjsdfhlkjdfsjlk2 = angle - arcsinRd;
|
||||||
var xy4 = a * new Vector2(Mathf.Cos(dslkhjdsflkhjsdfhlkjdfsjlk2), Mathf.Sin(dslkhjdsflkhjsdfhlkjdfsjlk2));
|
var xy4 = a * new Vector2(Mathf.Cos(dslkhjdsflkhjsdfhlkjdfsjlk2), Mathf.Sin(dslkhjdsflkhjsdfhlkjdfsjlk2));
|
||||||
|
|
||||||
var polygon = new[]
|
var polygon = new[]
|
||||||
{ playerScreenPosition, playerScreenPosition + xy3, playerScreenPosition + xy4 };
|
{ playerScreenPosition, playerScreenPosition + xy3, playerScreenPosition + xy4 };
|
||||||
Polygon.Polygon = polygon;
|
Polygon.Polygon = polygon;
|
||||||
CollisionPolygon.Polygon = polygon;
|
CollisionPolygon.Polygon = polygon;
|
||||||
}
|
}
|
||||||
|
|
||||||
FlashlightChargeTimeout = Mathf.Clamp(FlashlightChargeTimeout-(float)delta,0,1);
|
FlashlightChargeTimeout = Mathf.Clamp(FlashlightChargeTimeout - (float)delta, 0, 1);
|
||||||
if (Input.IsActionJustPressed("flashlight_charge") && FlashlightChargeTimeout <= 0){
|
if (Input.IsActionJustPressed("flashlight_charge") && FlashlightChargeTimeout <= 0)
|
||||||
|
{
|
||||||
FlashlightChargeTimeout = 1;
|
FlashlightChargeTimeout = 1;
|
||||||
FlashlightEnergy+=Constants.FlashlightEneregyPerCharge;
|
FlashlightEnergy += Constants.FlashlightEneregyPerCharge;
|
||||||
|
var rng = new RandomNumberGenerator();
|
||||||
|
CrankSoundPlayer.PitchScale = rng.RandfRange(1f, 1.15f);
|
||||||
|
CrankSoundPlayer.Play();
|
||||||
}
|
}
|
||||||
FlashlightEnergy = Mathf.Clamp(FlashlightEnergy-(float)delta, 0, Constants.MaxFlashlightEnergy);
|
|
||||||
FlashlightGroup.Modulate = new Color(BrightnessCurve.Sample(FlashlightEnergy/Constants.MaxFlashlightEnergy), 1, 1, 1);
|
FlashlightEnergy = Mathf.Clamp(FlashlightEnergy - (float)delta, 0, Constants.MaxFlashlightEnergy);
|
||||||
CollisionCircle.Enabled = CollisionPlayerCircle.Enabled = CollisionPolygon.Enabled = FlashlightEnergy >= 10;
|
FlashlightGroup.Modulate =
|
||||||
|
new Color(BrightnessCurve.Sample(FlashlightEnergy / Constants.MaxFlashlightEnergy), 1, 1, 1);
|
||||||
|
CollisionCircle.Disabled = CollisionPlayerCircle.Disabled = CollisionPolygon.Disabled = FlashlightEnergy < 10;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -21,7 +21,7 @@ public partial class GameCamera : Camera2D
|
||||||
var halfCameraFollowBounds = CameraFollowBounds / 2;
|
var halfCameraFollowBounds = CameraFollowBounds / 2;
|
||||||
var hardLimit = relativePlayerPosition.Clamp(-halfCameraBounds, halfCameraBounds);
|
var hardLimit = relativePlayerPosition.Clamp(-halfCameraBounds, halfCameraBounds);
|
||||||
difference = relativePlayerPosition - hardLimit;
|
difference = relativePlayerPosition - hardLimit;
|
||||||
GD.Print($"HardDiff {difference}");
|
//GD.Print($"HardDiff {difference}");
|
||||||
if (difference.IsZeroApprox())
|
if (difference.IsZeroApprox())
|
||||||
{
|
{
|
||||||
float x = 0, y = 0;
|
float x = 0, y = 0;
|
||||||
|
@ -36,7 +36,7 @@ public partial class GameCamera : Camera2D
|
||||||
}
|
}
|
||||||
|
|
||||||
difference = new Vector2(x, y);
|
difference = new Vector2(x, y);
|
||||||
GD.Print($"SmoothDiff {difference}");
|
//GD.Print($"SmoothDiff {difference}");
|
||||||
}
|
}
|
||||||
|
|
||||||
Position = (Position + difference).Round();
|
Position = (Position + difference).Round();
|
||||||
|
|
BIN
sounds/crank.ogg
Normal file
BIN
sounds/crank.ogg
Normal file
Binary file not shown.
19
sounds/crank.ogg.import
Normal file
19
sounds/crank.ogg.import
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="oggvorbisstr"
|
||||||
|
type="AudioStreamOggVorbis"
|
||||||
|
uid="uid://bsy2d0bl3lgg0"
|
||||||
|
path="res://.godot/imported/crank.ogg-de862830fd5b0b5f87e0226fbb2d93d0.oggvorbisstr"
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://sounds/crank.ogg"
|
||||||
|
dest_files=["res://.godot/imported/crank.ogg-de862830fd5b0b5f87e0226fbb2d93d0.oggvorbisstr"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
loop=false
|
||||||
|
loop_offset=0
|
||||||
|
bpm=0
|
||||||
|
beat_count=0
|
||||||
|
bar_beats=4
|
Loading…
Add table
Reference in a new issue