extends CharacterBody2D const RANGE = 400.0 const SPEED = 300.0 const JUMP_VELOCITY = -400.0 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 @onready var animation: AnimatedSprite2D = $AnimatedSprite2D @onready var teleportZone: Area2D = $"../Area2D" var teleportCounter = 0 # Bullet Attack Variables @onready var right_target: Node2D = $RightTarget @onready var left_target: Node2D = $LeftTarget var isJumping = false var safeTeleport = false var living = true var animPlaying = "idle" signal deathAnimationComplete func hurtPlayer(_amt): if _amt < 100: animPlaying = "hurt" animation.play(animPlaying) func killPlayer(): print("PC will kill player") if living: living = false animPlaying = "death" animation.play(animPlaying) 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 # Handle jump. if Input.is_action_just_pressed("jump") and is_on_floor(): velocity.y = JUMP_VELOCITY animation.play("jump") isJumping = true # Hover if not is_on_floor() and Input.is_action_pressed("hover"): velocity.x = 0 velocity.y = 0 # 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) # Teleport if Input.is_action_just_pressed("teleport"): while not safeTeleport and teleportCounter < 100: teleportZone.position = Vector2(position.x+randf_range(-RANGE,RANGE),position.y+randf_range(-RANGE,RANGE)) if teleportZone.has_overlapping_bodies(): safeTeleport = false teleportCounter +=1 else: safeTeleport = true teleportCounter +=1 safeTeleport= false teleportCounter = 0 position = Vector2(teleportZone.position.x,teleportZone.position.y) # Handle Shooting if Input.is_action_just_pressed("shoot"): #print("I want to shoot") #make a new bullet if faceLeft == true: var myBullet = %SceneManager.makeBullet(left_target.global_transform,-700) #myBullet.transform = left_target.global_transform #myBullet.setSpeed(-700) if faceLeft == false: var myBullet = %SceneManager.makeBullet(right_target.global_transform,700) # 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 direction: velocity.x = direction * SPEED if direction <0: if not isJumping: animation.play("run") faceLeft = true animation.flip_h = true if direction >0: if not isJumping: animation.play("run") faceLeft = false animation.flip_h = false else: if not isJumping: animation.play("idle") 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() * BUMP_FORCE) func _on_animation_finished() -> void: if animPlaying == "hurt": animPlaying = "idle" if animPlaying == "death": # emit death signal deathAnimationComplete.emit()