255 lines
8.0 KiB
GDScript
255 lines
8.0 KiB
GDScript
extends PanelContainer
|
|
|
|
class GoalRequirement extends RefCounted:
|
|
var currency_id: StringName
|
|
var amount: BigNumber
|
|
|
|
func _init(req_currency_id: StringName, req_amount: BigNumber) -> void:
|
|
currency_id = req_currency_id
|
|
amount = req_amount
|
|
|
|
class GoalDefinition extends RefCounted:
|
|
var id: StringName
|
|
var target_generator_id: StringName
|
|
var requirements: Array[GoalRequirement]
|
|
|
|
func _init(goal_id: StringName, target_id: StringName, goal_requirements: Array[GoalRequirement]) -> void:
|
|
id = goal_id
|
|
target_generator_id = target_id
|
|
requirements = goal_requirements
|
|
|
|
class GoalRow extends RefCounted:
|
|
var goal: GoalDefinition
|
|
var status_label: Label
|
|
var requirements_label: Label
|
|
var button: Button
|
|
|
|
func _init(goal_definition: GoalDefinition, status: Label, requirements: Label, unlock_button: Button) -> void:
|
|
goal = goal_definition
|
|
status_label = status
|
|
requirements_label = requirements
|
|
button = unlock_button
|
|
|
|
const GOALS_FILE_PATH: String = "res://generator-unlock-goals/generator_unlock_goals.json"
|
|
|
|
@onready var _summary_label: Label = $MarginContainer/VBoxContainer/SummaryLabel
|
|
@onready var _goals_list: VBoxContainer = $MarginContainer/VBoxContainer/ScrollContainer/GoalsList
|
|
|
|
var _goals: Array[GoalDefinition] = []
|
|
var _rows_by_goal_id: Dictionary = {}
|
|
var _completed_goal_ids: Dictionary = {}
|
|
|
|
func _ready() -> void:
|
|
_load_goals()
|
|
_build_goal_rows()
|
|
GameState.currency_changed.connect(_on_currency_changed)
|
|
GameState.generator_state_changed.connect(_on_generator_state_changed)
|
|
_refresh_ui()
|
|
_refresh_ui.call_deferred()
|
|
|
|
func _on_currency_changed(_currency_id: StringName, _new_amount: BigNumber) -> void:
|
|
_refresh_ui()
|
|
|
|
func _on_generator_state_changed(_generator_id: StringName, _state: Dictionary) -> void:
|
|
_refresh_ui()
|
|
|
|
func _load_goals() -> void:
|
|
_goals.clear()
|
|
|
|
if not FileAccess.file_exists(GOALS_FILE_PATH):
|
|
push_warning("Goals debug UI: goals file not found at %s" % GOALS_FILE_PATH)
|
|
return
|
|
|
|
var file: FileAccess = FileAccess.open(GOALS_FILE_PATH, FileAccess.READ)
|
|
if file == null:
|
|
push_warning("Goals debug UI: could not open goals file at %s" % GOALS_FILE_PATH)
|
|
return
|
|
|
|
var parsed: Variant = JSON.parse_string(file.get_as_text())
|
|
if not (parsed is Dictionary):
|
|
push_warning("Goals debug UI: goals root must be a Dictionary")
|
|
return
|
|
|
|
var goals_raw: Variant = parsed.get("goals", [])
|
|
if not (goals_raw is Array):
|
|
push_warning("Goals debug UI: goals must be an Array")
|
|
return
|
|
|
|
var seen_goal_ids: Dictionary = {}
|
|
for raw_goal in goals_raw:
|
|
var goal: GoalDefinition = _parse_goal(raw_goal)
|
|
if goal == null:
|
|
continue
|
|
|
|
var goal_key: String = String(goal.id)
|
|
if seen_goal_ids.has(goal_key):
|
|
push_warning("Goals debug UI: duplicate goal id '%s' skipped" % goal_key)
|
|
continue
|
|
|
|
seen_goal_ids[goal_key] = true
|
|
_goals.append(goal)
|
|
|
|
func _parse_goal(raw_goal: Variant) -> GoalDefinition:
|
|
if not (raw_goal is Dictionary):
|
|
return null
|
|
|
|
var goal_dict: Dictionary = raw_goal
|
|
var goal_id: String = String(goal_dict.get("id", "")).strip_edges()
|
|
var target_id: String = String(goal_dict.get("target_generator_id", "")).strip_edges()
|
|
if goal_id.is_empty() or target_id.is_empty():
|
|
return null
|
|
|
|
var raw_requirements: Variant = goal_dict.get("requirements", [])
|
|
if not (raw_requirements is Array):
|
|
return null
|
|
|
|
var requirements: Array[GoalRequirement] = []
|
|
for raw_requirement in raw_requirements:
|
|
var requirement: GoalRequirement = _parse_requirement(raw_requirement)
|
|
if requirement != null:
|
|
requirements.append(requirement)
|
|
|
|
if requirements.is_empty():
|
|
return null
|
|
|
|
return GoalDefinition.new(StringName(goal_id), StringName(target_id), requirements)
|
|
|
|
func _parse_requirement(raw_requirement: Variant) -> GoalRequirement:
|
|
if not (raw_requirement is Dictionary):
|
|
return null
|
|
|
|
var requirement_dict: Dictionary = raw_requirement
|
|
var currency_id: StringName = _parse_currency(requirement_dict.get("currency", ""))
|
|
if currency_id == &"" or not GameState.is_known_currency_id(currency_id):
|
|
return null
|
|
|
|
var raw_amount: Variant = requirement_dict.get("amount", {})
|
|
if not (raw_amount is Dictionary):
|
|
return null
|
|
|
|
var amount: BigNumber = BigNumber.deserialize(raw_amount)
|
|
if amount.mantissa < 0.0:
|
|
return null
|
|
|
|
return GoalRequirement.new(currency_id, amount)
|
|
|
|
func _parse_currency(raw_currency: Variant) -> StringName:
|
|
return GameState.parse_currency_id(raw_currency)
|
|
|
|
func _build_goal_rows() -> void:
|
|
_rows_by_goal_id.clear()
|
|
for child in _goals_list.get_children():
|
|
child.queue_free()
|
|
|
|
for goal in _goals:
|
|
var row_container: HBoxContainer = HBoxContainer.new()
|
|
row_container.size_flags_horizontal = Control.SIZE_EXPAND_FILL
|
|
row_container.add_theme_constant_override("separation", 12)
|
|
|
|
var title_label: Label = Label.new()
|
|
title_label.custom_minimum_size = Vector2(220.0, 0.0)
|
|
title_label.text = "%s -> %s" % [String(goal.id), String(goal.target_generator_id)]
|
|
|
|
var status_label: Label = Label.new()
|
|
status_label.custom_minimum_size = Vector2(95.0, 0.0)
|
|
|
|
var requirements_label: Label = Label.new()
|
|
requirements_label.size_flags_horizontal = Control.SIZE_EXPAND_FILL
|
|
|
|
var unlock_button: Button = Button.new()
|
|
unlock_button.custom_minimum_size = Vector2(90.0, 0.0)
|
|
unlock_button.text = "Unlock"
|
|
unlock_button.disabled = true
|
|
unlock_button.pressed.connect(_on_unlock_pressed.bind(goal.id))
|
|
|
|
row_container.add_child(title_label)
|
|
row_container.add_child(status_label)
|
|
row_container.add_child(requirements_label)
|
|
row_container.add_child(unlock_button)
|
|
_goals_list.add_child(row_container)
|
|
|
|
_rows_by_goal_id[String(goal.id)] = GoalRow.new(goal, status_label, requirements_label, unlock_button)
|
|
|
|
func _refresh_ui() -> void:
|
|
if _goals.is_empty():
|
|
_summary_label.text = "No valid goals loaded"
|
|
return
|
|
|
|
var ready_to_unlock: int = 0
|
|
var unlocked: int = 0
|
|
for goal in _goals:
|
|
var row: GoalRow = _rows_by_goal_id.get(String(goal.id))
|
|
if row == null:
|
|
continue
|
|
_refresh_goal_row(row)
|
|
|
|
if _is_goal_completed(goal.id):
|
|
unlocked += 1
|
|
elif _is_goal_met(goal):
|
|
ready_to_unlock += 1
|
|
|
|
_summary_label.text = "Goals: %d | Ready: %d | Unlocked: %d" % [_goals.size(), ready_to_unlock, unlocked]
|
|
|
|
func _refresh_goal_row(row: GoalRow) -> void:
|
|
var goal: GoalDefinition = row.goal
|
|
var already_unlocked: bool = _is_goal_completed(goal.id)
|
|
var met: bool = _is_goal_met(goal)
|
|
var can_unlock: bool = met and not already_unlocked
|
|
|
|
row.requirements_label.text = _get_requirements_text(goal)
|
|
row.button.disabled = not can_unlock
|
|
row.button.text = "Done" if already_unlocked else "Unlock"
|
|
|
|
if already_unlocked:
|
|
row.status_label.text = "Unlocked"
|
|
return
|
|
|
|
if met:
|
|
row.status_label.text = "Ready"
|
|
return
|
|
|
|
row.status_label.text = "Locked"
|
|
|
|
func _is_goal_met(goal: GoalDefinition) -> bool:
|
|
for requirement in goal.requirements:
|
|
var total_amount: BigNumber = GameState.get_total_currency_acquired_by_id(requirement.currency_id)
|
|
if total_amount.is_less_than(requirement.amount):
|
|
return false
|
|
return true
|
|
|
|
func _is_goal_completed(goal_id: StringName) -> bool:
|
|
return _completed_goal_ids.get(String(goal_id), false)
|
|
|
|
func _on_unlock_pressed(goal_id: StringName) -> void:
|
|
var row: GoalRow = _rows_by_goal_id.get(String(goal_id))
|
|
if row == null:
|
|
return
|
|
|
|
var goal: GoalDefinition = row.goal
|
|
if _is_goal_completed(goal.id):
|
|
return
|
|
if not _is_goal_met(goal):
|
|
return
|
|
|
|
_completed_goal_ids[String(goal.id)] = true
|
|
GameState.set_generator_unlocked(goal.target_generator_id, true)
|
|
GameState.set_generator_available(goal.target_generator_id, true)
|
|
print("[GoalsDebugUI] Unlocked goal '%s' -> %s" % [String(goal.id), String(goal.target_generator_id)])
|
|
_refresh_ui()
|
|
|
|
func _get_requirements_text(goal: GoalDefinition) -> String:
|
|
var parts: Array[String] = []
|
|
for requirement in goal.requirements:
|
|
var total_amount: BigNumber = GameState.get_total_currency_acquired_by_id(requirement.currency_id)
|
|
parts.append(
|
|
"%s %s / %s" % [
|
|
_currency_label(requirement.currency_id),
|
|
total_amount.to_string_suffix(2),
|
|
requirement.amount.to_string_suffix(2)
|
|
]
|
|
)
|
|
return " | ".join(parts)
|
|
|
|
func _currency_label(currency_id: StringName) -> String:
|
|
return GameState.get_currency_name(currency_id)
|