Make derived window class for the ad microgame

This commit is contained in:
Zoey Kitt 2024-11-15 19:53:02 -06:00
parent b62bbaac0d
commit 56377b3afa
5 changed files with 32 additions and 3 deletions

View file

@ -3,7 +3,7 @@ extends Node2D
# Called when the node enters the scene tree for the first time.
func _ready() -> void:
pass # Replace with function body.
_on_microgame_spawn_timer_timeout()
# Called every frame. 'delta' is the elapsed time since the previous frame.
@ -15,7 +15,7 @@ func _on_microgame_spawn_timer_timeout() -> void:
print("WAAAHAHAHA MICROGAMES")
# Spawn a microgame window
var window_scene = preload("res://scenes/microgames/microgame_window.tscn")
var window_scene = preload("res://scenes/microgames/ad_window.tscn")
var window_instance = window_scene.instantiate()
add_child(window_instance)
var microgame_scene = preload("res://scenes/microgames/window_mvp.tscn")
@ -27,3 +27,6 @@ func _on_microgame_spawn_timer_timeout() -> void:
var window_x = randi_range(0, screen_size.x - window_instance.size.x)
var window_y = randi_range(0, screen_size.y - window_instance.size.y)
window_instance.position = Vector2(window_x, window_y)
# Connect signals

View file

@ -18,6 +18,7 @@ offset_bottom = 25.0
text = "Net worth: $"
[node name="Microgame spawn timer" type="Timer" parent="."]
wait_time = 10.0
autostart = true
[connection signal="timeout" from="Microgame spawn timer" to="." method="_on_microgame_spawn_timer_timeout"]

View file

@ -0,0 +1,19 @@
extends "res://scenes/microgames/microgame_window.gd"
## A simple microgame that you win by closing the window
# Called when the node enters the scene tree for the first time.
func _ready() -> void:
pass # Replace with function body.
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta: float) -> void:
pass
func _on_close_requested() -> void:
super()
print("Hmm perchance")

View file

@ -0,0 +1,7 @@
[gd_scene load_steps=3 format=3 uid="uid://ccbxoes40rtkj"]
[ext_resource type="PackedScene" uid="uid://b2awdq32lxnef" path="res://scenes/microgames/microgame_window.tscn" id="1_ogoum"]
[ext_resource type="Script" path="res://scenes/microgames/ad_window.gd" id="2_3vqme"]
[node name="Window" instance=ExtResource("1_ogoum")]
script = ExtResource("2_3vqme")

View file

@ -1,5 +1,4 @@
extends Window
func _on_close_requested() -> void:
queue_free()