2025-01-21 01:44:35 +00:00
|
|
|
extends Node
|
2025-02-04 02:03:41 +00:00
|
|
|
# @onready var game: Node2D = $".."
|
|
|
|
|
2025-01-21 01:44:35 +00:00
|
|
|
@onready var crates: Node2D = $"../crates"
|
|
|
|
|
|
|
|
var theBullet = preload("res://scenes/bullet.tscn")
|
|
|
|
var bulletArray:Array = []
|
2025-02-04 02:03:41 +00:00
|
|
|
|
2025-01-21 01:44:35 +00:00
|
|
|
var totalCrates := 0
|
|
|
|
|
|
|
|
# Called when the node enters the scene tree for the first time.
|
|
|
|
func _ready() -> void:
|
2025-02-04 02:03:41 +00:00
|
|
|
GameController.reset()
|
|
|
|
GameController.destroyBox.connect(boxDestroy)
|
2025-01-21 01:44:35 +00:00
|
|
|
for obj in crates.get_children():
|
|
|
|
if obj.is_in_group("destructables"):
|
|
|
|
totalCrates += 1
|
2025-02-04 02:03:41 +00:00
|
|
|
GameController.countCrates(totalCrates)
|
|
|
|
|
|
|
|
# Subscribe to signals
|
|
|
|
GameController.levelComplete.connect(changeLevel)
|
|
|
|
|
|
|
|
func changeLevel(level):
|
|
|
|
print("New level")
|
|
|
|
get_tree().change_scene_to_file(level)
|
2025-01-21 01:44:35 +00:00
|
|
|
|
|
|
|
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
|
|
|
func _process(_delta: float) -> void:
|
|
|
|
pass
|
|
|
|
|
|
|
|
func bulletFactory():
|
|
|
|
print("Factory will make a bullet")
|
|
|
|
var myBullet
|
|
|
|
if bulletArray.size() < 4:
|
|
|
|
myBullet = theBullet.instantiate()
|
|
|
|
myBullet.connect("hit", onBulletHit)
|
|
|
|
owner.add_child(myBullet)
|
|
|
|
else:
|
|
|
|
myBullet = bulletArray.pop_back()
|
|
|
|
|
|
|
|
bulletArray.push_front(myBullet)
|
|
|
|
print("there are ", bulletArray.size(), " bullets")
|
|
|
|
return myBullet
|
|
|
|
|
|
|
|
func makeBullet(position, speed):
|
|
|
|
var myBullet = bulletFactory()
|
|
|
|
myBullet.transform = position
|
|
|
|
myBullet.setSpeed(speed)
|
|
|
|
|
|
|
|
return
|
2025-01-28 01:51:04 +00:00
|
|
|
|
2025-01-21 01:44:35 +00:00
|
|
|
func onBulletHit(bullet, body):
|
|
|
|
bullet.position = Vector2(-100, -100)
|
|
|
|
bullet.setSpeed(0)
|
|
|
|
print("Scene manager knows bullet hit")
|
2025-02-04 02:03:41 +00:00
|
|
|
GameController.bulletHit(body)
|
2025-01-21 01:44:35 +00:00
|
|
|
|
|
|
|
func boxDestroy(body):
|
|
|
|
print("sceneMgr knows body destroyed")
|
|
|
|
body.queue_free()
|
|
|
|
|