2025-01-07 01:57:46 +00:00
|
|
|
extends Node2D
|
|
|
|
|
2025-02-04 02:02:30 +00:00
|
|
|
var boxTotal := 4
|
2025-01-07 01:57:46 +00:00
|
|
|
var timer:=Timer.new()
|
2025-02-04 02:02:30 +00:00
|
|
|
var countdown := 10
|
|
|
|
var totalCrates := 0
|
|
|
|
var cratesDestroyed := 0
|
|
|
|
var totalCoins := 0
|
|
|
|
var totalCoinsCollected := 0
|
|
|
|
var totalBadGuys := 0
|
|
|
|
|
|
|
|
var player:Resource
|
|
|
|
|
|
|
|
#level information
|
|
|
|
var levels = ["res://scenes/game.tscn","res://scenes/level2.tscn"]
|
2025-02-11 02:13:02 +00:00
|
|
|
var timers = [20, 15]
|
2025-02-04 02:02:30 +00:00
|
|
|
var currentLevel = 0
|
|
|
|
#Signals from GC
|
2025-01-21 01:44:44 +00:00
|
|
|
signal destroyBox(body)
|
2025-02-11 02:13:02 +00:00
|
|
|
signal destroyBadguy(area)
|
2025-02-04 02:02:30 +00:00
|
|
|
signal levelComplete (levelToLoad)
|
2025-02-11 02:13:02 +00:00
|
|
|
signal playerHurt(amt)
|
|
|
|
signal playerDeath
|
2025-02-04 02:02:30 +00:00
|
|
|
|
2025-02-11 02:13:02 +00:00
|
|
|
signal tick(timeRemaining)
|
|
|
|
signal coinsUpdate(coinsCollected, coinsAvailable)
|
2025-02-04 02:02:30 +00:00
|
|
|
|
2025-02-10 16:30:11 +00:00
|
|
|
# Called when the node enters the scene tree for the first time.
|
2025-01-07 01:57:46 +00:00
|
|
|
func _ready() -> void:
|
2025-02-04 02:02:30 +00:00
|
|
|
player = load("res://scripts/res/playerstats.tres")
|
|
|
|
print("Player health " +str(player.health))
|
|
|
|
print("Number of levels: " +str(levels.size()))
|
|
|
|
reset()
|
2025-01-07 01:57:46 +00:00
|
|
|
add_child(timer)
|
|
|
|
timer.wait_time = 1
|
|
|
|
timer.one_shot = false
|
|
|
|
timer.connect("timeout", secondCounter)
|
2025-02-04 02:02:30 +00:00
|
|
|
timer.start()
|
2025-01-07 01:57:46 +00:00
|
|
|
pass # Replace with function body.
|
2025-02-04 02:02:30 +00:00
|
|
|
|
|
|
|
func reset():
|
2025-02-11 02:13:02 +00:00
|
|
|
totalCoinsCollected = 0
|
|
|
|
player.health = player.starting_health
|
2025-02-04 02:02:30 +00:00
|
|
|
countdown = timers[currentLevel]
|
2025-02-11 02:13:02 +00:00
|
|
|
tick.emit.call_deferred(countdown)
|
|
|
|
coinsUpdate.emit.call_deferred(totalCoinsCollected, totalCoins)
|
|
|
|
playerHurt.emit.call_deferred(player.health)
|
2025-02-04 02:02:30 +00:00
|
|
|
|
2025-01-07 01:57:46 +00:00
|
|
|
func secondCounter():
|
2025-01-14 00:30:08 +00:00
|
|
|
# print("one second")
|
2025-01-07 01:57:46 +00:00
|
|
|
countdown -=1
|
2025-02-11 02:13:02 +00:00
|
|
|
tick.emit(countdown)
|
2025-01-07 01:57:46 +00:00
|
|
|
if countdown <=0:
|
|
|
|
print("YOU LOSE")
|
2025-02-04 02:02:30 +00:00
|
|
|
levelComplete.emit(levels[currentLevel])
|
|
|
|
func coinCollected():
|
|
|
|
totalCoinsCollected +=1
|
2025-02-11 02:13:02 +00:00
|
|
|
coinsUpdate.emit(totalCoinsCollected, totalCoins)
|
2025-02-04 02:02:30 +00:00
|
|
|
print("GC knows coin collected")
|
2025-01-14 01:58:53 +00:00
|
|
|
|
2025-02-04 02:02:30 +00:00
|
|
|
func playerDamaged():
|
|
|
|
print("GC knows player taking damage")
|
|
|
|
player.health -=20
|
|
|
|
print("Health remaining: " +str(player.health))
|
2025-02-11 02:13:02 +00:00
|
|
|
if player.health > 0:
|
|
|
|
playerHurt.emit(player.health)
|
|
|
|
else:
|
|
|
|
playerDeath.emit()
|
|
|
|
|
|
|
|
func bulletHitBadguy(area):
|
|
|
|
#decide what to do
|
|
|
|
#how many bad guys reamining
|
|
|
|
#send a signal
|
|
|
|
destroyBadguy.emit(area)
|
|
|
|
|
2025-01-14 01:58:53 +00:00
|
|
|
func bulletHit(body):
|
|
|
|
print("Game controller knows bullet hit something")
|
|
|
|
if body.is_in_group("destructable"):
|
2025-01-21 01:44:44 +00:00
|
|
|
destroyBox.emit(body)
|
2025-02-04 02:02:30 +00:00
|
|
|
totalCrates -=1
|
|
|
|
cratesDestroyed +=1
|
|
|
|
if totalCrates <=0:
|
|
|
|
print("YOU WON!!")
|
|
|
|
currentLevel +=1
|
|
|
|
if currentLevel >= levels.size():
|
|
|
|
currentLevel = 0
|
|
|
|
levelComplete.emit(levels[currentLevel])
|
|
|
|
else:
|
|
|
|
print("Crates Remaining " +str(totalCrates))
|
|
|
|
# Coming from SceneManager
|
2025-01-21 01:44:44 +00:00
|
|
|
func countCrates(value):
|
|
|
|
totalCrates = value
|
2025-02-04 02:02:30 +00:00
|
|
|
func countCoins(value):
|
|
|
|
totalCoins = value
|
|
|
|
func countBadGuys(value):
|
|
|
|
totalBadGuys = value
|
2025-01-21 01:44:44 +00:00
|
|
|
|
2025-02-11 02:13:02 +00:00
|
|
|
|
|
|
|
func playerDead():
|
|
|
|
print("GC knows player is dead")
|
|
|
|
levelComplete.emit(levels[currentLevel])
|