27 lines
1.1 KiB
GDScript
27 lines
1.1 KiB
GDScript
class_name GPImageAndSoundDescriptions
|
|
extends Control
|
|
|
|
const DESCRIPTION_LINE_SCENE: PackedScene = preload("res://sources/language_tool/image_and_sound_gp_description.tscn")
|
|
|
|
@onready var description_container: VBoxContainer = %DescriptionsContainer
|
|
|
|
|
|
func _ready() -> void:
|
|
DirAccess.make_dir_recursive_absolute(Database.BASE_PATH + Database.language + Database.LOOK_AND_LEARN_IMAGES)
|
|
DirAccess.make_dir_recursive_absolute(Database.BASE_PATH + Database.language + Database.LOOK_AND_LEARN_SOUNDS)
|
|
|
|
Database.db.query("SELECT * FROM GPs WHERE GPs.Exception=0")
|
|
for res: Dictionary in Database.db.query_result:
|
|
var description_line: ImageAndSoundGPDescription = DESCRIPTION_LINE_SCENE.instantiate()
|
|
description_container.add_child(description_line)
|
|
description_line.set_gp(res)
|
|
|
|
|
|
func _on_back_button_pressed() -> void:
|
|
get_tree().change_scene_to_file("res://sources/language_tool/prof_tool_menu.tscn")
|
|
|
|
|
|
func _on_line_edit_text_changed(new_text: String) -> void:
|
|
for description_line in description_container.get_children():
|
|
description_line.visible = description_line.gp_menu_button.text.begins_with(new_text)
|