add losing money

This commit is contained in:
Jacob Janzen 2024-11-17 14:46:56 -06:00
parent c4acb25795
commit 8ccae5aad9
12 changed files with 57 additions and 3 deletions

Binary file not shown.

BIN
funny_sounds/gamblecore.mp3 Normal file

Binary file not shown.

View file

@ -0,0 +1,19 @@
[remap]
importer="mp3"
type="AudioStreamMP3"
uid="uid://di3mxkflh6a3o"
path="res://.godot/imported/gamblecore.mp3-b97531db556457a634a248b9722aaaf7.mp3str"
[deps]
source_file="res://funny_sounds/gamblecore.mp3"
dest_files=["res://.godot/imported/gamblecore.mp3-b97531db556457a634a248b9722aaaf7.mp3str"]
[params]
loop=true
loop_offset=0.0
bpm=0.0
beat_count=0
bar_beats=4

View file

@ -1 +1,5 @@
# :3
## Outside Resources
- [Cloud Texture](https://www.flickr.com/photos/31288116@N02/3910051966/in/photostream/): Licensed under [Creative Commons Attribution 2.0 Generic](https://creativecommons.org/licenses/by/2.0/)
- [GodotBigNumberClass](https://github.com/ChronoDK/GodotBigNumberClass): [MIT License](https://opensource.org/license/MIT)

View file

@ -31,10 +31,20 @@ func _on_microgame_spawn_timer_timeout() -> void:
# Connect signals
window_instance.win.connect(_on_microgame_win)
window_instance.lose.connect(_on_microgame_lose)
window_instance.ad_open.connect(_on_ad_open)
$"Score window (real)/Score window".net_worth.timesEquals(0.9)
func _on_ad_open(window: MicrogameWindow):
$"Score window (real)/Score window".net_worth.timesEquals(0.95)
func _on_microgame_win(window: MicrogameWindow):
print("yay")
func _on_microgame_lose(window: MicrogameWindow):
print("noooooo")
$"Score window (real)/Score window".net_worth.timesEquals(0.8)
func _on_fishin_win() -> void:
@ -44,6 +54,7 @@ func _on_fishin_win() -> void:
$Clippette.visible = true
$Clippette.start_dialogue()
$"Score window (real)".visible = true
$AudioStreamPlayer.play()
func _on_score_window_donezo() -> void:

View file

@ -1,4 +1,4 @@
[gd_scene load_steps=50 format=3 uid="uid://d06d1vihf2oqp"]
[gd_scene load_steps=51 format=3 uid="uid://d06d1vihf2oqp"]
[ext_resource type="Texture2D" uid="uid://b03ygtrwha22g" path="res://taytay/IMG_5199.jpeg" id="1_o2s48"]
[ext_resource type="Script" path="res://scenes/main.gd" id="1_y7a0r"]
@ -10,6 +10,7 @@
[ext_resource type="Script" path="res://scenes/score_window/score_window.gd" id="6_gvoxs"]
[ext_resource type="Texture2D" uid="uid://dohsqvvi8y64h" path="res://UI/fish-spinning-ezgif.com-gif-to-sprite-converter.png" id="8_oj2tc"]
[ext_resource type="PackedScene" uid="uid://c4s4pigu4pr48" path="res://scenes/microgames/fishin/node_2d.tscn" id="10_sx2ad"]
[ext_resource type="AudioStream" uid="uid://di3mxkflh6a3o" path="res://funny_sounds/gamblecore.mp3" id="11_33353"]
[sub_resource type="AtlasTexture" id="AtlasTexture_uyge7"]
atlas = ExtResource("8_oj2tc")
@ -339,6 +340,9 @@ $00000000000000000000"
position = Vector2(0, 0)
scale = Vector2(1, 1)
[node name="AudioStreamPlayer" type="AudioStreamPlayer" parent="."]
stream = ExtResource("11_33353")
[connection signal="timeout" from="Microgame spawn timer" to="." method="_on_microgame_spawn_timer_timeout"]
[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"]

View file

@ -6,6 +6,7 @@ extends "res://scenes/microgames/microgame_window.gd"
# Called when the node enters the scene tree for the first time.
func _ready() -> void:
# Choose a random ad
var all_ads := $"All ads"
var sprite := all_ads.get_children().pick_random() as Sprite2D
@ -20,7 +21,6 @@ func _ready() -> void:
float(window_size.y) / float(sprite.texture.get_height())
)
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta: float) -> void:
pass
@ -34,3 +34,9 @@ func _on_close_requested() -> void:
func _on_texture_button_pressed() -> void:
OS.shell_open("https://www.youtube.com/watch?v=dQw4w9WgXcQ")
lose.emit(self)
func _on_timer_timeout() -> void:
ad_open.emit(self)

View file

@ -110,4 +110,8 @@ texture = ExtResource("25_o5yc3")
offset_right = 1000.0
offset_bottom = 1000.0
[node name="Timer" type="Timer" parent="." index="2"]
autostart = true
[connection signal="pressed" from="TextureButton" to="." method="_on_texture_button_pressed"]
[connection signal="timeout" from="Timer" to="." method="_on_timer_timeout"]

View file

@ -13,6 +13,7 @@ enum FishType {
}
signal win
signal lose
const IN_GAME_WAIT_TIME = 10
@ -170,6 +171,7 @@ func _on_in_game_timeout() -> void:
$"Fart".play()
get_window().title = "🙂👎"
lose.emit()
func _on_success_fail_timeout() -> void:

View file

@ -3,6 +3,8 @@ class_name MicrogameWindow
signal win(this: MicrogameWindow)
signal lose(this: MicrogameWindow)
signal ad_open(this: MicrogameWindow)
func _on_close_requested() -> void:

View file

@ -17,7 +17,7 @@ func _ready() -> void:
func _process(delta: float) -> void:
$Score.text = "Net worth: \n$%s" % net_worth.toString()
if net_worth.isLessThan(Big.new(0)):
if net_worth.isLessThan(Big.new(0)) or net_worth.toString()[0] == '-':
donezo.emit()

View file

@ -23,6 +23,8 @@ func _on_minimize_button_up() -> void:
func _on_start_pressed() -> void:
#get_window().size = Vector2(0,0) This messes up the text for some godforesaken reason
get_window().position = Vector2(-1000,-1000)
var audio = $AudioStreamPlayer
audio.stop()
var new_window = Window.new()
new_window.size = Vector2i(1280, 720)