FebruaryGame/februarygodotgame/scripts/player.gd

105 lines
3.0 KiB
GDScript3
Raw Permalink Normal View History

class_name Player extends CharacterBody2D
@onready var playerGraphic: AnimatedSprite2D = $AnimatedSprite2D
2025-02-25 02:10:17 +00:00
const SPEED = 300.0
const JUMP_VELOCITY = -400.0
2025-03-04 01:40:27 +00:00
const PUSH_FORCE = 500
var faceLeft = false
var pushRightEnabled = false
var pushLeftEnabled = false
var pushTarget
var isJumping = false
2025-03-04 01:40:27 +00:00
@onready var rightcast: RayCast2D = $rightcast
@onready var leftcast: RayCast2D = $leftcast
@onready var right_target: Node2D = $rightTarget
@onready var left_target: Node2D = $leftTarget
2025-02-25 02:10:17 +00:00
var animPlaying = "idle"
var living = true
2025-02-25 02:10:17 +00:00
func _physics_process(delta: float) -> void:
if living and not animPlaying =="hurt":
# Add the gravity.
if not is_on_floor():
velocity += get_gravity() * delta
else:
isJumping = false
2025-02-25 02:10:17 +00:00
# Handle jump.
if Input.is_action_just_pressed("ui_accept") and is_on_floor():
velocity.y = JUMP_VELOCITY
isJumping = true
playerGraphic.play("jump")
# 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("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-03-04 01:40:27 +00:00
if direction:
velocity.x = direction * SPEED
else:
velocity.x = move_toward(velocity.x, 0, SPEED)
if direction:
if not isJumping:
playerGraphic.play("run")
if direction == 0:
if not isJumping:
playerGraphic.play("idle")
if direction <0:
faceLeft = true
playerGraphic.flip_h = true
if direction >0:
faceLeft = false
playerGraphic.flip_h = false
move_and_slide()
if rightcast.is_colliding():
print("something on my right")
var collider = rightcast.get_collider()
if collider is Node:
if collider is RigidBody2D:
print ("shove this crave")
#record that we can shove right
pushRightEnabled = true
#record what objet to shove
pushTarget = collider
if leftcast.is_colliding():
var collider = leftcast.get_collider()
if collider is Node:
if collider is RigidBody2D:
pushLeftEnabled = true
pushTarget = collider
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() *50)
2025-03-04 01:40:27 +00:00
func hurtPlayer(health):
print("Player takes damage, health remaining:: "+str(health))
animPlaying = "hurt"
playerGraphic.play(animPlaying)
func _on_animation_finished() -> void:
if animPlaying=="hurt":
animPlaying=="idle"