midori-school/levels/ui/musictest.gd

183 lines
4.2 KiB
GDScript3
Raw Normal View History

2024-01-16 13:58:17 +01:00
extends Control
var player := AudioStreamPlayer.new()
2024-01-26 04:20:10 +01:00
var infobox
2024-01-16 13:58:17 +01:00
func _ready():
Input.set_mouse_mode(Input.MOUSE_MODE_HIDDEN)
add_child(player)
$"BoxContainer/VBoxContainer/Title Screen".grab_focus()
2024-01-26 04:20:10 +01:00
infobox = $Info
2024-01-16 13:58:17 +01:00
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta):
pass
func _level():
# This is like autoloading the scene, only
# it happens after already loading the main scene.
get_tree().change_scene_to_file("res://backgounds/disclaimer.tscn")
#Global.live = 1
#Global.gamelevel = randi() % 3
#if Global.gamelevel == 0:
# get_tree().change_scene_to_file("res://backgounds/galaxy.tscn")
#elif Global.gamelevel == 1:
# get_tree().change_scene_to_file("res://backgounds/wormhole.tscn")
#else:
# get_tree().change_scene_to_file("res://backgounds/abstract.tscn")
#get_tree().root.add_child(title)
#get_tree().root.remove_child(boot)
#boot.queue_free()
func _input(event):
# Mouse in viewport coordinates.
if Input.is_action_just_pressed("ui_cancel"):
_on_back_pressed()
2024-01-29 01:52:01 +01:00
if Input.is_action_just_pressed("stopmusic"):
2024-01-26 04:20:10 +01:00
infobox.set_text("")
2024-01-16 13:58:17 +01:00
player.stop()
#print("Mouse Click/Unclick at: ", event.position)
# if highlighted == 1:
# _on_debug_pressed()
# if highlighted == 2:
# _on_exit_pressed()
# else:
# _on_start_pressed()
# elif Input.is_action_pressed("ui_up"):
# focus_next
func _on_back_pressed():
2024-01-20 11:38:12 +01:00
get_tree().change_scene_to_file("res://levels/ui/soundtest.tscn")
2024-01-16 13:58:17 +01:00
func _on_title_screen_pressed():
player.stream = load(Global.musictracks[0])
2024-04-16 23:26:45 +02:00
infobox.set_text(tr("SONG0_INFO"))
2024-01-16 13:58:17 +01:00
player.play(0)
func _on_disclaimer_settings_stores_pressed():
player.stream = load(Global.musictracks[1])
2024-04-16 23:26:45 +02:00
infobox.set_text(tr("SONG1_INFO"))
2024-01-16 13:58:17 +01:00
player.play(0)
func _on_testrooms_pressed():
player.stream = load(Global.musictracks[2])
2024-04-16 23:26:45 +02:00
infobox.set_text(tr("SONG2_INFO"))
2024-01-16 13:58:17 +01:00
player.play(0)
func _on_friendly_challenge_pressed():
player.stream = load(Global.musictracks[3])
2024-04-16 23:26:45 +02:00
infobox.set_text(tr("SONG3_INFO"))
2024-01-16 13:58:17 +01:00
player.play(0)
func _on_school_nursery_pressed():
player.stream = load(Global.musictracks[4])
2024-04-16 23:26:45 +02:00
infobox.set_text(tr("SONG4_INFO"))
2024-01-16 13:58:17 +01:00
player.play(0)
func _on_overworld_ceres_pressed():
player.stream = load(Global.musictracks[5])
2024-04-16 23:26:45 +02:00
infobox.set_text(tr("SONG5_INFO"))
2024-01-16 13:58:17 +01:00
player.play(0)
func _on_boss_fight_ceres_pressed():
player.stream = load(Global.musictracks[6])
2024-04-16 23:26:45 +02:00
infobox.set_text(tr("SONG6_INFO"))
2024-01-16 13:58:17 +01:00
player.play(0)
func _on_result_pressed():
player.stream = load(Global.musictracks[7])
2024-04-16 23:26:45 +02:00
infobox.set_text(tr("SONG7_INFO"))
2024-01-16 13:58:17 +01:00
player.play(0)
func _on_overworld_earth_pressed():
player.stream = load(Global.musictracks[8])
2024-04-16 23:26:45 +02:00
infobox.set_text(tr("SONG8_INFO"))
2024-01-16 13:58:17 +01:00
player.play(0)
func _on_the_zubmarine_zone_pressed():
player.stream = load(Global.musictracks[9])
2024-04-16 23:26:45 +02:00
infobox.set_text(tr("SONG9_INFO"))
2024-01-16 13:58:17 +01:00
player.play(0)
func _on_radioactive_desert_pressed():
player.stream = load(Global.musictracks[10])
2024-04-16 23:26:45 +02:00
infobox.set_text(tr("SONG10_INFO"))
2024-01-16 13:58:17 +01:00
player.play(0)
2024-01-19 01:58:22 +01:00
func _on_natashas_theme_pressed():
2024-01-16 13:58:17 +01:00
player.stream = load(Global.musictracks[11])
2024-04-16 23:26:45 +02:00
infobox.set_text(tr("SONG11_INFO"))
2024-01-16 13:58:17 +01:00
player.play(0)
func _on_dungeon_of_destruction_pressed():
player.stream = load(Global.musictracks[12])
2024-04-16 23:26:45 +02:00
infobox.set_text(tr("SONG12_INFO"))
2024-01-16 13:58:17 +01:00
player.play(0)
func _on_final_boss_fight_pressed():
player.stream = load(Global.musictracks[13])
2024-04-16 23:26:45 +02:00
infobox.set_text(tr("SONG13_INFO"))
2024-01-16 13:58:17 +01:00
player.play(0)
func _on_ending_theme_pressed():
player.stream = load(Global.musictracks[14])
2024-04-16 23:26:45 +02:00
infobox.set_text(tr("SONG14_INFO"))
2024-01-16 13:58:17 +01:00
player.play(0)
func _on_credits_1_pressed():
player.stream = load(Global.musictracks[15])
2024-04-16 23:26:45 +02:00
infobox.set_text(tr("SONG15_INFO"))
2024-01-16 13:58:17 +01:00
player.play(0)
func _on_credits_2_pressed():
player.stream = load(Global.musictracks[16])
2024-04-16 23:26:45 +02:00
infobox.set_text(tr("SONG16_INFO"))
2024-01-16 13:58:17 +01:00
player.play(0)
func _on_credits_3_pressed():
player.stream = load(Global.musictracks[17])
2024-04-16 23:26:45 +02:00
infobox.set_text(tr("SONG17_INFO"))
2024-01-16 13:58:17 +01:00
player.play(0)
2024-01-19 01:58:22 +01:00
func _on_the_magic_school_pressed():
player.stream = load(Global.musictracks[18])
2024-04-16 23:26:45 +02:00
infobox.set_text(tr("SONG18_INFO"))
2024-01-19 01:58:22 +01:00
player.play(0)
func _on_deep_forest_pressed():
player.stream = load(Global.musictracks[19])
2024-04-16 23:26:45 +02:00
infobox.set_text(tr("SONG19_INFO"))
2024-01-19 01:58:22 +01:00
player.play(0)
func _on_boss_fight_earth_pressed():
player.stream = load(Global.musictracks[20])
2024-04-16 23:26:45 +02:00
infobox.set_text(tr("SONG20_INFO"))
2024-01-19 01:58:22 +01:00
player.play(0)