From 80a771f3a9ba31dad01a24765e0b73582ec80a77 Mon Sep 17 00:00:00 2001 From: Darius Date: Mon, 13 Jan 2025 19:30:08 -0500 Subject: [PATCH] working force push with raycast --- dariusgodotproject/project.godot | 23 +++++++++ dariusgodotproject/scenes/game.tscn | 15 ++---- dariusgodotproject/scenes/player.tscn | 19 ++++++++ .../scripts/charactercontroller.gd | 48 +++++++++++++++++-- dariusgodotproject/scripts/gamecontroller.gd | 4 +- 5 files changed, 91 insertions(+), 18 deletions(-) create mode 100644 dariusgodotproject/scenes/player.tscn diff --git a/dariusgodotproject/project.godot b/dariusgodotproject/project.godot index 4d47826..fd9c5ef 100644 --- a/dariusgodotproject/project.godot +++ b/dariusgodotproject/project.godot @@ -20,3 +20,26 @@ config/icon="res://icon.svg" folder_colors={ "res://scripts/": "yellow" } + +[input] + +right={ +"deadzone": 0.5, +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":68,"key_label":0,"unicode":100,"location":0,"echo":false,"script":null) +] +} +left={ +"deadzone": 0.5, +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":65,"key_label":0,"unicode":97,"location":0,"echo":false,"script":null) +] +} +jump={ +"deadzone": 0.5, +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":32,"key_label":0,"unicode":32,"location":0,"echo":false,"script":null) +] +} +shove={ +"deadzone": 0.5, +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":88,"key_label":0,"unicode":120,"location":0,"echo":false,"script":null) +] +} diff --git a/dariusgodotproject/scenes/game.tscn b/dariusgodotproject/scenes/game.tscn index 9357657..15f574d 100644 --- a/dariusgodotproject/scenes/game.tscn +++ b/dariusgodotproject/scenes/game.tscn @@ -1,9 +1,9 @@ -[gd_scene load_steps=9 format=3 uid="uid://dcmyx5g6dksl8"] +[gd_scene load_steps=8 format=3 uid="uid://dcmyx5g6dksl8"] [ext_resource type="PackedScene" uid="uid://d1ej2kiy7jcpv" path="res://scenes/crate.tscn" id="1_uivx3"] [ext_resource type="Script" path="res://scripts/gamecontroller.gd" id="1_vhl00"] -[ext_resource type="Script" path="res://scripts/charactercontroller.gd" id="2_6rbcc"] [ext_resource type="Script" path="res://scripts/trigger.gd" id="3_2qbah"] +[ext_resource type="PackedScene" uid="uid://b75mow511wmmb" path="res://scenes/player.tscn" id="3_8h5jv"] [sub_resource type="RectangleShape2D" id="RectangleShape2D_1cyeq"] size = Vector2(101, 20) @@ -11,8 +11,6 @@ size = Vector2(101, 20) [sub_resource type="WorldBoundaryShape2D" id="WorldBoundaryShape2D_bqh70"] distance = -395.0 -[sub_resource type="CircleShape2D" id="CircleShape2D_i8a0m"] - [sub_resource type="CircleShape2D" id="CircleShape2D_mfh1j"] [node name="Game" type="Node2D"] @@ -47,14 +45,7 @@ rotation = 0.806532 [node name="CollisionShape2D" type="CollisionShape2D" parent="floor"] shape = SubResource("WorldBoundaryShape2D_bqh70") -[node name="CharacterBody2D" type="CharacterBody2D" parent="."] -position = Vector2(443, 322) -script = ExtResource("2_6rbcc") -metadata/_edit_group_ = true - -[node name="CollisionShape2D" type="CollisionShape2D" parent="CharacterBody2D"] -shape = SubResource("CircleShape2D_i8a0m") -debug_color = Color(1, 0, 0, 0.419608) +[node name="CharacterBody2D" parent="." instance=ExtResource("3_8h5jv")] [node name="Area2D" type="Area2D" parent="."] position = Vector2(513, 319) diff --git a/dariusgodotproject/scenes/player.tscn b/dariusgodotproject/scenes/player.tscn new file mode 100644 index 0000000..3f521d5 --- /dev/null +++ b/dariusgodotproject/scenes/player.tscn @@ -0,0 +1,19 @@ +[gd_scene load_steps=3 format=3 uid="uid://b75mow511wmmb"] + +[ext_resource type="Script" path="res://scripts/charactercontroller.gd" id="1_racyk"] + +[sub_resource type="CircleShape2D" id="CircleShape2D_i8a0m"] + +[node name="CharacterBody2D" type="CharacterBody2D"] +script = ExtResource("1_racyk") +metadata/_edit_group_ = true + +[node name="CollisionShape2D" type="CollisionShape2D" parent="."] +shape = SubResource("CircleShape2D_i8a0m") +debug_color = Color(1, 0, 0, 0.419608) + +[node name="RightRay" type="RayCast2D" parent="."] +target_position = Vector2(25, 0) + +[node name="LeftRay" type="RayCast2D" parent="."] +target_position = Vector2(-25, 0) diff --git a/dariusgodotproject/scripts/charactercontroller.gd b/dariusgodotproject/scripts/charactercontroller.gd index fc6bde7..29ce88e 100644 --- a/dariusgodotproject/scripts/charactercontroller.gd +++ b/dariusgodotproject/scripts/charactercontroller.gd @@ -3,8 +3,16 @@ extends CharacterBody2D const SPEED = 300.0 const JUMP_VELOCITY = -400.0 -const PUSH_FORCE = 48 +const BUMP_FORCE = 50 +# Shove Attack Variables +@onready var right_ray: RayCast2D = $RightRay +@onready var left_ray: RayCast2D = $LeftRay +var faceLeft = false +var pushTarget +var pushRightEnabled = false +var pushLeftEnabled = false +@export var PUSH_FORCE = 700 func _physics_process(delta: float) -> void: # Add the gravity. @@ -12,19 +20,51 @@ func _physics_process(delta: float) -> void: velocity += get_gravity() * delta # Handle jump. - if Input.is_action_just_pressed("ui_accept") and is_on_floor(): + if Input.is_action_just_pressed("jump") and is_on_floor(): velocity.y = JUMP_VELOCITY + + # Shove Attack + if Input.is_action_just_pressed("shove"): + if pushRightEnabled && faceLeft == false: + pushTarget.apply_central_impulse(Vector2(1,0) * PUSH_FORCE * 2) + if pushLeftEnabled && faceLeft == true: + pushTarget.apply_central_impulse(Vector2(-1,0) * PUSH_FORCE * 2) # Get the input direction and handle the movement/deceleration. # As good practice, you should replace UI actions with custom gameplay actions. - var direction := Input.get_axis("ui_left", "ui_right") + var direction := Input.get_axis("left", "right") if direction: velocity.x = direction * SPEED + if direction <0: + faceLeft = true + if direction >0: + faceLeft = false else: velocity.x = move_toward(velocity.x, 0, SPEED) move_and_slide() + if right_ray.is_colliding(): + # print("Right ray contact!") + if not faceLeft: + var collider = right_ray.get_collider() + if collider is RigidBody2D: + pushTarget = collider + pushRightEnabled = true + else: + pushRightEnabled = false + + if left_ray.is_colliding(): + if faceLeft: + var collider = left_ray.get_collider() + if collider is RigidBody2D: + pushTarget = collider + pushLeftEnabled = true + else: + pushLeftEnabled = false + + + for i in get_slide_collision_count(): var c = get_slide_collision(i) if c.get_collider() is RigidBody2D: - c.get_collider().apply_central_impulse(-c.get_normal() * PUSH_FORCE) + c.get_collider().apply_central_impulse(-c.get_normal() * BUMP_FORCE) diff --git a/dariusgodotproject/scripts/gamecontroller.gd b/dariusgodotproject/scripts/gamecontroller.gd index cd9d088..571ff7a 100644 --- a/dariusgodotproject/scripts/gamecontroller.gd +++ b/dariusgodotproject/scripts/gamecontroller.gd @@ -10,10 +10,10 @@ func _ready() -> void: timer.wait_time = 1 timer.one_shot = false timer.connect("timeout", secondCounter) - timer.start() + #timer.start() pass # Replace with function body. func secondCounter(): - print("one second") + # print("one second") countdown -=1 if countdown <=0: print("YOU LOSE")