1
Fork 0
mirror of https://github.com/Steffo99/swear-jar.git synced 2024-11-22 07:44:17 +00:00
swear-jar/interface/shop_ui.gd

182 lines
6.3 KiB
GDScript3
Raw Normal View History

2023-10-01 12:39:16 +00:00
extends Panel
class_name ShopUI
2023-10-01 13:06:23 +00:00
2023-10-02 03:31:31 +00:00
@onready var score_button: ScoreButton = $Rows/UpperButtons/ScoreButton
2023-10-02 01:33:41 +00:00
2023-10-01 13:06:23 +00:00
## Emitted when the Score button is pressed.
signal score_button_pressed
## Emitted when the Back button is presesd.
signal back_button_pressed
## Emitted when any purchase has started.
signal purchase_begin(what: PurchasableItem)
## Emitted when any purchase is cancelled.
signal purchase_cancel(what: PurchasableItem)
## Emitted when any purchase is completed.
##
## Emitted by complete_purchase().
signal purchase_success(what: PurchasableItem)
## Array of all PurchasableItems that this ShopUI should control.
2023-10-13 17:21:07 +00:00
var purchasable_items: Array[Node] = []
2023-10-01 13:06:23 +00:00
signal ghost_requested(what: PurchasableItem)
2023-10-02 17:19:13 +00:00
2023-10-01 13:06:23 +00:00
2023-10-13 17:21:07 +00:00
@onready var parent: Node = get_parent()
2023-10-01 13:06:23 +00:00
func _ready():
2023-10-13 17:21:07 +00:00
purchasable_items = find_children("*", "PurchasableItem", true, false)
2023-10-01 13:06:23 +00:00
for item in purchasable_items:
2023-10-13 17:21:07 +00:00
item.purchase_begin.connect(_on_any_purchase_begin.bind(item))
item.purchase_cancel.connect(_on_any_purchase_cancel.bind(item))
item.purchase_success.connect(_on_any_purchase_success.bind(item))
if parent is SafeUI:
parent.process_mode = PROCESS_MODE_DISABLED
else:
process_mode = PROCESS_MODE_DISABLED
func _on_any_purchase_begin(what: PurchasableItem):
print("[ShopUI] Beginning purchase of: ", what)
2023-10-02 21:26:21 +00:00
delete_button.disabled = true
2023-10-02 17:19:13 +00:00
if what.item_scene:
ghost_requested.emit(what)
2023-10-01 13:06:23 +00:00
purchase_begin.emit(what)
2023-10-02 19:42:07 +00:00
set_all_can_buy(false, what)
2023-10-01 13:06:23 +00:00
2023-10-13 17:21:07 +00:00
func _on_any_purchase_cancel(what: PurchasableItem):
print("[ShopUI] Cancelling purchase of: ", what)
2023-10-02 21:26:21 +00:00
delete_button.disabled = false
2023-10-01 13:06:23 +00:00
purchase_cancel.emit(what)
2023-10-02 19:42:07 +00:00
set_all_can_buy(true, what)
2023-10-01 13:06:23 +00:00
2023-10-13 17:21:07 +00:00
func _on_any_purchase_success(what: PurchasableItem):
print("[ShopUI] Succeeded purchase of: ", what)
2023-10-02 17:19:13 +00:00
if what.item_scene:
ghost_materialize.emit()
2023-10-02 21:56:28 +00:00
delete_button.disabled = false
2023-10-01 13:06:23 +00:00
purchase_success.emit(what)
2023-10-02 19:42:07 +00:00
set_all_can_buy(true, what)
2023-10-01 13:06:23 +00:00
2023-10-02 01:33:41 +00:00
func _on_game_score_changed(total: int):
score_button.set_score(total)
2023-10-01 13:06:23 +00:00
func _on_score_button_pressed():
score_button_pressed.emit()
func _on_back_button_pressed():
back_button_pressed.emit()
2023-10-02 03:31:31 +00:00
@export var copper_coin_scene: PackedScene
@export var silver_coin_scene: PackedScene
@export var gold_coin_scene: PackedScene
signal upgraded_auto_spawn(scene: PackedScene, period: float)
func _on_buy_auto_copper_purchase_success():
print("[ShopUI] Upgrading to Auto Copper * 2...")
upgraded_auto_spawn.emit(copper_coin_scene, 0.5)
2023-10-02 21:56:28 +00:00
$Rows/PaddedScrollable/Scrollable/ScrollableItems/ManualCategory/BuyAutoCopper.has_unlocked = false
2023-10-02 03:31:31 +00:00
$Rows/PaddedScrollable/Scrollable/ScrollableItems/ManualCategory/BuyHeliCopper.has_unlocked = true
func _on_buy_heli_copper_purchase_success():
print("[ShopUI] Upgrading to Auto Copper * 8...")
upgraded_auto_spawn.emit(copper_coin_scene, 0.125)
2023-10-02 21:56:28 +00:00
$Rows/PaddedScrollable/Scrollable/ScrollableItems/ManualCategory/BuyHeliCopper.has_unlocked = false
2023-10-02 03:31:31 +00:00
$Rows/PaddedScrollable/Scrollable/ScrollableItems/ManualCategory/BuyAutoSilver.has_unlocked = true
func _on_buy_auto_silver_purchase_success():
print("[ShopUI] Upgrading to Auto Silver * 2...")
upgraded_auto_spawn.emit(silver_coin_scene, 0.5)
2023-10-02 21:56:28 +00:00
$Rows/PaddedScrollable/Scrollable/ScrollableItems/ManualCategory/BuyAutoSilver.has_unlocked = false
2023-10-02 03:31:31 +00:00
$Rows/PaddedScrollable/Scrollable/ScrollableItems/ManualCategory/BuySuperSilver.has_unlocked = true
func _on_buy_super_silver_purchase_success():
print("[ShopUI] Upgrading to Auto Silver * 8...")
upgraded_auto_spawn.emit(silver_coin_scene, 0.125)
2023-10-02 21:56:28 +00:00
$Rows/PaddedScrollable/Scrollable/ScrollableItems/ManualCategory/BuySuperSilver.has_unlocked = false
2023-10-02 03:31:31 +00:00
$Rows/PaddedScrollable/Scrollable/ScrollableItems/ManualCategory/BuyAutoGold.has_unlocked = true
func _on_buy_auto_gold_purchase_success():
print("[ShopUI] Upgrading to Auto Gold * 2...")
upgraded_auto_spawn.emit(gold_coin_scene, 0.5)
2023-10-02 21:56:28 +00:00
$Rows/PaddedScrollable/Scrollable/ScrollableItems/ManualCategory/BuyAutoGold.has_unlocked = false
2023-10-02 03:31:31 +00:00
$Rows/PaddedScrollable/Scrollable/ScrollableItems/ManualCategory/BuyMidasTouch.has_unlocked = true
func _on_buy_midas_touch_purchase_success():
print("[ShopUI] Upgrading to Auto Gold * 8...")
2023-10-02 21:56:28 +00:00
$Rows/PaddedScrollable/Scrollable/ScrollableItems/ManualCategory/BuyMidasTouch.has_unlocked = false
2023-10-02 03:31:31 +00:00
upgraded_auto_spawn.emit(gold_coin_scene, 0.125)
signal upgraded_manual_spawn(scene: PackedScene)
func _on_buy_silver_star_purchase_success():
print("[ShopUI] Upgrading to Manual Silver...")
upgraded_manual_spawn.emit(silver_coin_scene)
2023-10-02 21:56:28 +00:00
$Rows/PaddedScrollable/Scrollable/ScrollableItems/AutomaticCategory/BuySilverStar.has_unlocked = false
$Rows/PaddedScrollable/Scrollable/ScrollableItems/AutomaticCategory/BuyGoldStar.has_unlocked = true
2023-10-02 03:31:31 +00:00
func _on_buy_gold_star_purchase_success():
print("[ShopUI] Upgrading to Manual Gold...")
upgraded_manual_spawn.emit(gold_coin_scene)
2023-10-02 21:56:28 +00:00
$Rows/PaddedScrollable/Scrollable/ScrollableItems/AutomaticCategory/BuyGoldStar.has_unlocked = false
2023-10-02 17:19:13 +00:00
signal ghost_materialize
func _on_buy_silverifier_purchase_success():
print("[ShopUI] Completing Silver-ifier...")
$Rows/PaddedScrollable/Scrollable/ScrollableItems/ConvertCategory/BuyGoldenser.has_unlocked = true
func _on_buy_goldenser_purchase_success():
print("[ShopUI] Completing Gold-enser...")
$Rows/PaddedScrollable/Scrollable/ScrollableItems/ConvertCategory/BuyGemificator.has_unlocked = true
$Rows/PaddedScrollable/Scrollable/ScrollableItems/ConvertCategory/BuyCompressor.has_unlocked = true
func _on_buy_gemificator_purchase_begin():
print("[ShopUI] Completing Gem-ificator...")
$Rows/PaddedScrollable/Scrollable/ScrollableItems/ConvertCategory/BuyArtifactomatic.has_unlocked = true
func _on_buy_compressor_purchase_success():
print("[ShopUI] Completing Coal-pressor...")
$Rows/PaddedScrollable/Scrollable/ScrollableItems/ConvertCategory/BuyArtifactomatic.has_unlocked = true
func _on_buy_artifactomatic_purchase_success():
print("[ShopUI] Completing Arti-factory...")
2023-10-02 18:06:28 +00:00
2023-10-02 18:56:16 +00:00
@onready var delete_button = $Rows/UpperButtons/DeleteButton
2023-10-02 18:06:28 +00:00
var is_deleting = false
signal delete_begin
signal delete_cancel
func _on_delete_button_pressed():
if is_deleting:
is_deleting = false
2023-10-02 18:56:16 +00:00
delete_button.text = "Del"
delete_button.modulate = Color.WHITE
2023-10-02 19:42:07 +00:00
set_all_can_buy(true, null)
2023-10-02 18:06:28 +00:00
delete_cancel.emit()
else:
is_deleting = true
2023-10-02 18:56:16 +00:00
delete_button.text = "Undo"
delete_button.modulate = Color.RED
2023-10-02 19:42:07 +00:00
set_all_can_buy(false, null)
2023-10-02 18:06:28 +00:00
delete_begin.emit()
2023-10-02 19:42:07 +00:00
func set_all_can_buy(state: bool, except: PurchasableItem):
for item in purchasable_items:
if item == except:
continue
item.can_buy = state