DariusGodotGame/dariusgodotproject/scripts/gamecontroller.gd

76 lines
1.8 KiB
GDScript3
Raw Normal View History

extends Node2D
var boxTotal := 4
var timer:=Timer.new()
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"]
var timers = [10, 15]
var currentLevel = 0
#Signals from GC
2025-01-21 01:44:44 +00:00
signal destroyBox(body)
signal levelComplete (levelToLoad)
2025-02-10 16:30:11 +00:00
# Called when the node enters the scene tree for the first time.
func _ready() -> void:
player = load("res://scripts/res/playerstats.tres")
print("Player health " +str(player.health))
print("Number of levels: " +str(levels.size()))
reset()
add_child(timer)
timer.wait_time = 1
timer.one_shot = false
timer.connect("timeout", secondCounter)
timer.start()
pass # Replace with function body.
func reset():
countdown = timers[currentLevel]
func secondCounter():
2025-01-14 00:30:08 +00:00
# print("one second")
countdown -=1
if countdown <=0:
print("YOU LOSE")
levelComplete.emit(levels[currentLevel])
func coinCollected():
totalCoinsCollected +=1
print("GC knows coin collected")
2025-01-14 01:58:53 +00:00
func playerDamaged():
print("GC knows player taking damage")
player.health -=20
print("Health remaining: " +str(player.health))
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)
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
func countCoins(value):
totalCoins = value
func countBadGuys(value):
totalBadGuys = value
2025-01-21 01:44:44 +00:00