JanuaryGodotGame/januaryproject/scripts/charactercontroller.gd

97 lines
2.8 KiB
GDScript3
Raw Normal View History

extends CharacterBody2D
const SPEED = 500.0
const JUMP_VELOCITY = -600.0
2025-01-13 22:28:11 +00:00
@export var BUMP_FORCE = 90
var faceLeft:bool = false
#Force push variables
var pushTarget
@export var PUSH_FORCE = 750
var pushLeftEnabled:= false
var pushRightEnabled:= false
@onready var right_ray: RayCast2D = $RightRay
@onready var left_ray: RayCast2D = $LeftRay
#Bullet variables
@onready var right_target: Node2D = $RightTarget
@onready var left_target: Node2D = $LeftTarget
var bullet = preload("res://scenes/bullet.tscn")
func _physics_process(delta: float) -> void:
# Add the gravity.
if not is_on_floor():
velocity += get_gravity() * delta
2025-01-13 22:28:11 +00:00
# Handle force push
if Input.is_action_just_pressed("push"):
#is there an object nearby?
if pushRightEnabled && faceLeft ==false:
pushTarget.apply_central_impulse(Vector2(1,0) * PUSH_FORCE * 2 )
pushRightEnabled = false
if pushLeftEnabled && faceLeft:
pushTarget.apply_central_impulse(Vector2(-1,0) * PUSH_FORCE * 2 )
pushLeftEnabled = false
# Handle Shoot
if Input.is_action_just_pressed("shoot"):
2025-01-13 22:29:43 +00:00
#refactor this to get bullet from SceneManager (bullet pool)
2025-01-13 22:28:11 +00:00
var newBullet = bullet.instantiate()
owner.add_child(newBullet)
newBullet.transform = right_target.global_transform
if faceLeft:
newBullet.setSpeed(-750)
newBullet.transform = left_target.global_transform
# Handle jump.
2025-01-13 22:28:11 +00:00
if Input.is_action_just_pressed("jump") 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-01-13 22:28:11 +00:00
var direction := Input.get_axis("left", "right")
if direction:
velocity.x = direction * SPEED
2025-01-13 22:28:11 +00:00
#track if the player is facing right or left
if direction > 0:
faceLeft = false
if direction < 0:
faceLeft = true
else:
velocity.x = move_toward(velocity.x, 0, SPEED)
move_and_slide()
2025-01-13 22:28:11 +00:00
#scan objects near player
if right_ray.is_colliding():
#we only care if the player is facing right
if not faceLeft:
var collider = right_ray.get_collider()
#we only care if the collider is a node
if collider is RigidBody2D:
print("This is a rigidbody")
#we only care if it is pushable
if collider.is_in_group("pushables"):
#mark the target for possible pushing
pushRightEnabled = true
pushTarget = collider
if collider is Area2D:
print("This is an area 2d")
else:
pushRightEnabled = false
if left_ray.is_colliding():
if faceLeft:
var collider = left_ray.get_collider()
if collider is RigidBody2D:
if collider.is_in_group("pushables"):
pushLeftEnabled = true
pushTarget = collider
else:
pushLeftEnabled = false
for i in get_slide_collision_count():
var c = get_slide_collision(i)
if c.get_collider() is RigidBody2D:
2025-01-13 22:28:11 +00:00
c.get_collider().apply_central_impulse(-c.get_normal() * BUMP_FORCE)