AhmedFebruary2025/ahmedgg/scripts/Player.gd

83 lines
2.2 KiB
GDScript3
Raw Normal View History

2025-02-25 02:12:43 +00:00
extends CharacterBody2D
const SPEED = 300.0
const JUMP_VELOCITY = -400.0
2025-03-04 01:41:41 +00:00
const PUSH_FORCE = 500
var faceLeft=false
var pushRightEnabled = false
var pushLeftEnabled = false
var pushTarget
@onready var right_target: Node2D = $rightTarget_Node2D
@onready var left_target: Node2D = $leftTarget_Node2D
@onready var right_cast: RayCast2D = $right_RayCast2D
@onready var left_cast: RayCast2D = $left_RayCast2D
2025-02-25 02:12:43 +00:00
func _physics_process(delta: float) -> void:
# Add the gravity.
if not is_on_floor():
velocity += get_gravity() * delta
2025-03-04 01:41:41 +00:00
# Handle jump.right_cast
2025-02-25 02:12:43 +00:00
if Input.is_action_just_pressed("ui_accept") and is_on_floor():
velocity.y = JUMP_VELOCITY
# Get the input direction and handle the movement/deceleration.
# As good practice, you should replace UI actions with custom gameplay actions.
2025-03-04 01:41:41 +00:00
var direction := Input.get_axis("left", "right")
if Input.is_action_just_pressed("shove") && pushRightEnabled && faceLeft==false:
pushTarget.apply_central_impulse(Vector2(1,0)*PUSH_FORCE)
pushRightEnabled=false
if Input.is_action_just_pressed("shove") && pushLeftEnabled && faceLeft==true:
pushTarget.apply_central_impulse(Vector2(-1,0)* PUSH_FORCE)
pushLeftEnabled = false
#shoot attack
if Input.is_action_just_pressed("shoot"):
if faceLeft == false:
%SceneManager.makeBullet(right_target.global_transform,700)
if faceLeft == true:
%SceneManager.makeBullet(left_target.global_transform,-700)
2025-02-25 02:12:43 +00:00
if direction:
velocity.x = direction * SPEED
else:
velocity.x = move_toward(velocity.x, 0, SPEED)
2025-03-04 01:41:41 +00:00
if direction<0:
faceLeft=true
if direction>0:
faceLeft=false
2025-02-25 02:12:43 +00:00
move_and_slide()
2025-03-04 01:41:41 +00:00
if right_cast.is_colliding():
print("something on my right")
var collider=right_cast.get_collider()
if collider is Node:
if collider is RigidBody2D:
print("shove this crate")
#record that we can shove right
pushRightEnabled = true
#record what object we shove
pushTarget = collider
if left_cast.is_colliding():
var collider = left_cast.get_collider()
if collider is Node:
if collider is RigidBody2D:
pushLeftEnabled = true
pushTarget = collider
2025-02-25 02:12:43 +00:00
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() * 60)
2025-03-04 01:41:41 +00:00