Proof of concept (specialized generalized fish)
This commit is contained in:
parent
d267483d31
commit
5283cc1d09
5 changed files with 34 additions and 11 deletions
|
@ -1,4 +1,4 @@
|
||||||
[gd_scene load_steps=46 format=3 uid="uid://be813saajvxxs"]
|
[gd_scene load_steps=46 format=3 uid="uid://dv67unre56t5b"]
|
||||||
|
|
||||||
[ext_resource type="Texture2D" uid="uid://dobiydav6k32e" path="res://UI/GameOverScreen.png" id="1_60m3n"]
|
[ext_resource type="Texture2D" uid="uid://dobiydav6k32e" path="res://UI/GameOverScreen.png" id="1_60m3n"]
|
||||||
[ext_resource type="Script" path="res://scenes/gameover.gd" id="1_clwwq"]
|
[ext_resource type="Script" path="res://scenes/gameover.gd" id="1_clwwq"]
|
||||||
|
|
|
@ -351,4 +351,5 @@ stream = ExtResource("12_xycxa")
|
||||||
[connection signal="donezo" from="Score window (real)/Score window" to="." method="_on_score_window_donezo"]
|
[connection signal="donezo" from="Score window (real)/Score window" to="." method="_on_score_window_donezo"]
|
||||||
[connection signal="buy" from="Stock ticker" to="Score window (real)/Score window" method="_on_stock_ticker_buy"]
|
[connection signal="buy" from="Stock ticker" to="Score window (real)/Score window" method="_on_stock_ticker_buy"]
|
||||||
[connection signal="sell" from="Stock ticker" to="Score window (real)/Score window" method="_on_stock_ticker_sell"]
|
[connection signal="sell" from="Stock ticker" to="Score window (real)/Score window" method="_on_stock_ticker_sell"]
|
||||||
|
[connection signal="fish_chosen" from="Fishin" to="Stock ticker" method="_on_fishin_fish_chosen"]
|
||||||
[connection signal="win" from="Fishin" to="." method="_on_fishin_win"]
|
[connection signal="win" from="Fishin" to="." method="_on_fishin_win"]
|
||||||
|
|
|
@ -14,6 +14,7 @@ enum FishType {
|
||||||
|
|
||||||
signal win
|
signal win
|
||||||
signal lose
|
signal lose
|
||||||
|
signal fish_chosen(fish_sprite: Sprite2D, fish_name: String)
|
||||||
|
|
||||||
const IN_GAME_WAIT_TIME = 10
|
const IN_GAME_WAIT_TIME = 10
|
||||||
|
|
||||||
|
@ -108,17 +109,29 @@ func _on_texture_button_button_up() -> void:
|
||||||
# show fish
|
# show fish
|
||||||
var fish_choice: FishType = randi_range(0,len(fishes))
|
var fish_choice: FishType = randi_range(0,len(fishes))
|
||||||
|
|
||||||
|
# hehe
|
||||||
|
fish_choice = FishType.GAR
|
||||||
|
|
||||||
match fish_choice:
|
match fish_choice:
|
||||||
FishType.GAR: gar.visible = true
|
FishType.GAR:
|
||||||
FishType.SALMON: salmon.visible = true
|
gar.visible = true
|
||||||
FishType.BASS: bass.visible = true
|
fish_chosen.emit(gar.get_node("GarSprite"), "Gar :)")
|
||||||
FishType.HUMUHUMUNUKUNUKUAPUA_A: humuhumunukunukuapua_a.visible = true
|
FishType.SALMON:
|
||||||
FishType.CATFSIH: catfsih.visible = true
|
salmon.visible = true
|
||||||
FishType.DOGFISH: dogfish.visible = true
|
FishType.BASS:
|
||||||
FishType.ANGLERFISH: anglerfish.visible = true
|
bass.visible = true
|
||||||
FishType.MOBY_DICK: moby_dick.visible = true
|
FishType.HUMUHUMUNUKUNUKUAPUA_A:
|
||||||
FishType.LEAPING_SMACKEREL: leaping_smackerel.visible = true
|
humuhumunukunukuapua_a.visible = true
|
||||||
|
FishType.CATFSIH:
|
||||||
|
catfsih.visible = true
|
||||||
|
FishType.DOGFISH:
|
||||||
|
dogfish.visible = true
|
||||||
|
FishType.ANGLERFISH:
|
||||||
|
anglerfish.visible = true
|
||||||
|
FishType.MOBY_DICK:
|
||||||
|
moby_dick.visible = true
|
||||||
|
FishType.LEAPING_SMACKEREL:
|
||||||
|
leaping_smackerel.visible = true
|
||||||
|
|
||||||
in_game_timer.stop()
|
in_game_timer.stop()
|
||||||
in_game_timer.wait_time = IN_GAME_WAIT_TIME
|
in_game_timer.wait_time = IN_GAME_WAIT_TIME
|
||||||
|
|
|
@ -19,3 +19,12 @@ func _on_stonks_sell(amount: Variant) -> void:
|
||||||
# Scope creep!
|
# Scope creep!
|
||||||
func start():
|
func start():
|
||||||
$Timer.start()
|
$Timer.start()
|
||||||
|
|
||||||
|
|
||||||
|
func set_icon(sprite: Sprite2D):
|
||||||
|
$Node2D/Sprite2D.texture = sprite.texture
|
||||||
|
|
||||||
|
|
||||||
|
func _on_fishin_fish_chosen(fish_sprite: Sprite2D, fish_name: String) -> void:
|
||||||
|
$Sprite2D.texture = fish_sprite.texture
|
||||||
|
$Label.text = fish_name
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
[gd_scene load_steps=47 format=3 uid="uid://uqljciqhbulx"]
|
[gd_scene load_steps=47 format=3 uid="uid://bhcfvjkkpmtr4"]
|
||||||
|
|
||||||
[ext_resource type="Script" path="res://scenes/title.gd" id="1_q3sds"]
|
[ext_resource type="Script" path="res://scenes/title.gd" id="1_q3sds"]
|
||||||
[ext_resource type="Texture2D" uid="uid://bmgnk2m8rj1n1" path="res://UI/StartScreen.png" id="1_xa24a"]
|
[ext_resource type="Texture2D" uid="uid://bmgnk2m8rj1n1" path="res://UI/StartScreen.png" id="1_xa24a"]
|
||||||
|
|
Loading…
Add table
Reference in a new issue