aboutsummaryrefslogtreecommitdiff
path: root/game/src/Game/GameSession/Topbar.gd
blob: 737ed9de3cd7eb11cd1e5a7aa46b908197d8f876 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
extends GUINode

# Country info
var _country_flag_button : GUIMaskedFlagButton
var _country_flag_overlay_icon : GUIIcon
var _country_name_label : GUILabel
var _country_rank_label : GUILabel
var _country_prestige_label : GUILabel
var _country_prestige_rank_label : GUILabel
var _country_industrial_power_label : GUILabel
var _country_industrial_power_rank_label : GUILabel
var _country_military_power_label : GUILabel
var _country_military_power_rank_label : GUILabel
var _country_colonial_power_label : GUILabel

# Time controls
var _speed_up_button : GUIIconButton
var _speed_down_button : GUIIconButton
var _pause_bg_button : GUIButton
var _speed_indicator_button : GUIIconButton
var _date_label : GUILabel

# NationManagement.Screen-GUIIconButton
var _nation_management_buttons : Dictionary

# Production
var _production_top_goods_icons : Array[GUIIcon]
var _production_alert_building_icon : GUIIcon
var _production_alert_closed_icon : GUIIcon
var _production_alert_unemployment_icon : GUIIcon

# Budget
# TODO - line chart
var _budget_funds_label : GUILabel

# Technology
var _technology_progress_bar : GUIProgressBar
var _technology_current_research_label : GUILabel
var _technology_literacy_label : GUILabel
var _technology_research_points_label : GUILabel

# Politics
var _politics_party_icon : GUIIcon
var _politics_party_label : GUILabel
var _politics_suppression_points_label : GUILabel
var _politics_infamy_label : GUILabel
var _politics_reforms_button : GUIButton
var _politics_decisions_button : GUIIconButton
var _politics_election_icon : GUIIcon
var _politics_rebels_button : GUIIconButton

# Population
var _population_total_size_label : GUILabel
var _population_national_foci_label : GUILabel
var _population_militancy_label : GUILabel
var _population_consciousness_label : GUILabel

# Trade
var _trade_imported_icons : Array[GUIIcon]
var _trade_exported_icons : Array[GUIIcon]

# Diplomacy
var _diplomacy_peace_label : GUILabel
var _diplomacy_war_enemies_overlapping_elements_box : GUIOverlappingElementsBox
var _diplomacy_diplomatic_points_label : GUILabel
var _diplomacy_alert_colony_button : GUIIconButton
var _diplomacy_alert_crisis_icon : GUIIcon
var _diplomacy_alert_sphere_icon : GUIIcon
var _diplomacy_alert_great_power_icon : GUIIcon

# Military
var _military_army_size_label : GUILabel
var _military_navy_size_label : GUILabel
var _military_mobilisation_size_label : GUILabel
var _military_leadership_points_label : GUILabel

func _ready() -> void:
   GameSingleton.gamestate_updated.connect(_update_info)
   GameSingleton.clock_state_changed.connect(_update_speed_controls)

   add_gui_element("topbar", "topbar")

   hide_nodes([
      ^"./topbar/topbar_outlinerbutton_bg",
      ^"./topbar/topbar_outlinerbutton"
   ])

   # Disables all consuming invisible panel
   var topbar : Panel = get_panel_from_nodepath(^"./topbar")
   if topbar:
      topbar.mouse_filter = Control.MOUSE_FILTER_IGNORE
   set_click_mask_from_nodepaths([^"./topbar/topbar_bg", ^"./topbar/topbar_paper"])

   # Country info
   _country_flag_button = get_gui_masked_flag_button_from_nodepath(^"./topbar/player_flag")
   if _country_flag_button:
      _country_flag_button.pressed.connect(
         func() -> void:
            # TODO - open the diplomacy menu on the Wars tab
            Events.NationManagementScreens.open_nation_management_screen(NationManagement.Screen.DIPLOMACY)
      )
   _country_flag_overlay_icon = get_gui_icon_from_nodepath(^"./topbar/topbar_flag_overlay")
   _country_name_label = get_gui_label_from_nodepath(^"./topbar/CountryName")
   _country_rank_label = get_gui_label_from_nodepath(^"./topbar/nation_totalrank")
   if _country_rank_label:
      _country_rank_label.set_mouse_filter(MOUSE_FILTER_PASS)
   _country_prestige_label = get_gui_label_from_nodepath(^"./topbar/country_prestige")
   if _country_prestige_label:
      _country_prestige_label.set_mouse_filter(MOUSE_FILTER_PASS)
   _country_prestige_rank_label = get_gui_label_from_nodepath(^"./topbar/selected_prestige_rank")
   if _country_prestige_rank_label:
      _country_prestige_rank_label.set_mouse_filter(MOUSE_FILTER_PASS)
   _country_industrial_power_label = get_gui_label_from_nodepath(^"./topbar/country_economic")
   if _country_industrial_power_label:
      _country_industrial_power_label.set_mouse_filter(MOUSE_FILTER_PASS)
   _country_industrial_power_rank_label = get_gui_label_from_nodepath(^"./topbar/selected_industry_rank")
   if _country_industrial_power_rank_label:
      _country_industrial_power_rank_label.set_mouse_filter(MOUSE_FILTER_PASS)
   _country_military_power_label = get_gui_label_from_nodepath(^"./topbar/country_military")
   if _country_military_power_label:
      _country_military_power_label.set_mouse_filter(MOUSE_FILTER_PASS)
   _country_military_power_rank_label = get_gui_label_from_nodepath(^"./topbar/selected_military_rank")
   if _country_military_power_rank_label:
      _country_military_power_rank_label.set_mouse_filter(MOUSE_FILTER_PASS)
   _country_colonial_power_label = get_gui_label_from_nodepath(^"./topbar/country_colonial_power")
   if _country_colonial_power_label:
      _country_colonial_power_label.set_mouse_filter(MOUSE_FILTER_PASS)

   # Time controls
   _speed_up_button = get_gui_icon_button_from_nodepath(^"./topbar/button_speedup")
   if _speed_up_button:
      _speed_up_button.pressed.connect(_on_increase_speed_button_pressed)
      _speed_up_button.set_tooltip_string("TOPBAR_INC_SPEED")
   _speed_down_button = get_gui_icon_button_from_nodepath(^"./topbar/button_speeddown")
   if _speed_down_button:
      _speed_down_button.pressed.connect(_on_decrease_speed_button_pressed)
      _speed_down_button.set_tooltip_string("TOPBAR_DEC_SPEED")
   _pause_bg_button = get_gui_icon_button_from_nodepath(^"./topbar/pause_bg")
   if _pause_bg_button:
      _pause_bg_button.pressed.connect(_on_play_pause_button_pressed)
   _speed_indicator_button = get_gui_icon_button_from_nodepath(^"./topbar/speed_indicator")
   if _speed_indicator_button:
      _speed_indicator_button.pressed.connect(_on_play_pause_button_pressed)
   _date_label = get_gui_label_from_nodepath(^"./topbar/DateText")

   # Nation management screens
   const screen_nodepaths : Dictionary = {
      NationManagement.Screen.PRODUCTION : ^"./topbar/topbarbutton_production",
      NationManagement.Screen.BUDGET     : ^"./topbar/topbarbutton_budget",
      NationManagement.Screen.TECHNOLOGY : ^"./topbar/topbarbutton_tech",
      NationManagement.Screen.POLITICS   : ^"./topbar/topbarbutton_politics",
      NationManagement.Screen.POPULATION : ^"./topbar/topbarbutton_pops",
      NationManagement.Screen.TRADE      : ^"./topbar/topbarbutton_trade",
      NationManagement.Screen.DIPLOMACY  : ^"./topbar/topbarbutton_diplomacy",
      NationManagement.Screen.MILITARY   : ^"./topbar/topbarbutton_military"
   }
   for screen : NationManagement.Screen in screen_nodepaths:
      var button : GUIIconButton = get_gui_icon_button_from_nodepath(screen_nodepaths[screen])
      if button:
         button.pressed.connect(
            Events.NationManagementScreens.toggle_nation_management_screen.bind(screen)
         )
         # TODO - test tooltip, replace with actual shortcut strings
         button.set_tooltip_string(tr("SHORTCUT") + "F3")
         _nation_management_buttons[screen] = button
   Events.NationManagementScreens.update_active_nation_management_screen.connect(
      _on_update_active_nation_management_screen
   )

   # Production
   const PRODUCED_GOOD_COUNT : int = 5
   for idx : int in PRODUCED_GOOD_COUNT:
      _production_top_goods_icons.push_back(get_gui_icon_from_nodepath("./topbar/topbar_produced%d" % idx))
   _production_alert_building_icon = get_gui_icon_from_nodepath(^"./topbar/alert_building_factories")
   _production_alert_closed_icon = get_gui_icon_from_nodepath(^"./topbar/alert_closed_factories")
   _production_alert_unemployment_icon = get_gui_icon_from_nodepath(^"./topbar/alert_unemployed_workers")

   # Budget
   _budget_funds_label = get_gui_label_from_nodepath(^"./topbar/budget_funds")

   # Technology
   var tech_button : GUIIconButton = _nation_management_buttons[NationManagement.Screen.TECHNOLOGY]
   _technology_progress_bar = get_gui_progress_bar_from_nodepath(^"./topbar/topbar_tech_progress")
   if _technology_progress_bar and tech_button:
      _technology_progress_bar.reparent(tech_button)
   _technology_current_research_label = get_gui_label_from_nodepath(^"./topbar/tech_current_research")
   if _technology_current_research_label:
      _technology_current_research_label.set_mouse_filter(MOUSE_FILTER_PASS)
      if tech_button:
         _technology_current_research_label.reparent(tech_button)
   _technology_literacy_label = get_gui_label_from_nodepath(^"./topbar/tech_literacy_value")
   if _technology_literacy_label:
      _technology_literacy_label.set_mouse_filter(MOUSE_FILTER_PASS)
      if tech_button:
         _technology_literacy_label.reparent(tech_button)
   _technology_research_points_label = get_gui_label_from_nodepath(^"./topbar/topbar_researchpoints_value")
   if _technology_research_points_label:
      _technology_research_points_label.set_mouse_filter(MOUSE_FILTER_PASS)
      if tech_button:
         _technology_research_points_label.reparent(tech_button)

   # Politics
   _politics_party_icon = get_gui_icon_from_nodepath(^"./topbar/politics_party_icon")
   _politics_party_label = get_gui_label_from_nodepath(^"./topbar/politics_ruling_party")
   var politics_suppression_button : GUIIconButton = get_gui_icon_button_from_nodepath(^"./topbar/topbar_supression_icon")
   if politics_suppression_button:
      politics_suppression_button.pressed.connect(
         func() -> void:
            # TODO - open the politics menu on the Movements tab
            Events.NationManagementScreens.toggle_nation_management_screen(NationManagement.Screen.POLITICS)
      )
   _politics_suppression_points_label = get_gui_label_from_nodepath(^"./topbar/politics_supressionpoints_value")
   _politics_infamy_label = get_gui_label_from_nodepath(^"./topbar/politics_infamy_value")
   _politics_reforms_button = get_gui_icon_button_from_nodepath(^"./topbar/alert_can_do_reforms")
   if _politics_reforms_button:
      _politics_reforms_button.pressed.connect(
         func() -> void:
            # TODO - open the politics menu on the Reforms tab
            Events.NationManagementScreens.toggle_nation_management_screen(NationManagement.Screen.POLITICS)
      )
   _politics_decisions_button = get_gui_icon_button_from_nodepath(^"./topbar/alert_can_do_decisions")
   if _politics_decisions_button:
      _politics_decisions_button.pressed.connect(
         func() -> void:
            # TODO - open the politics menu on the Decisions tab
            Events.NationManagementScreens.toggle_nation_management_screen(NationManagement.Screen.POLITICS)
      )
   _politics_election_icon = get_gui_icon_from_nodepath(^"./topbar/alert_is_in_election")
   _politics_rebels_button = get_gui_icon_button_from_nodepath(^"./topbar/alert_have_rebels")
   if _politics_rebels_button:
      _politics_rebels_button.pressed.connect(
         func() -> void:
            # TODO - open the politics menu on the Movements tab
            Events.NationManagementScreens.toggle_nation_management_screen(NationManagement.Screen.POLITICS)
      )

   # Population
   _population_total_size_label = get_gui_label_from_nodepath(^"./topbar/population_total_value")
   _population_national_foci_label = get_gui_label_from_nodepath(^"./topbar/topbar_focus_value")
   _population_militancy_label = get_gui_label_from_nodepath(^"./topbar/population_avg_mil_value")
   _population_consciousness_label = get_gui_label_from_nodepath(^"./topbar/population_avg_con_value")

   # Trade
   const TRADE_GOOD_COUNT : int = 3
   for idx in TRADE_GOOD_COUNT:
      _trade_imported_icons.push_back(get_gui_icon_from_nodepath("./topbar/topbar_import%d" % idx))
      _trade_exported_icons.push_back(get_gui_icon_from_nodepath("./topbar/topbar_export%d" % idx))

   # Diplomacy
   _diplomacy_peace_label = get_gui_label_from_nodepath(^"./topbar/diplomacy_status")
   _diplomacy_war_enemies_overlapping_elements_box = get_gui_overlapping_elements_box_from_nodepath(^"./topbar/diplomacy_at_war")
   _diplomacy_diplomatic_points_label = get_gui_label_from_nodepath(^"./topbar/diplomacy_diplopoints_value")
   _diplomacy_alert_colony_button = get_gui_icon_button_from_nodepath(^"./topbar/alert_colony")
   if _diplomacy_alert_colony_button:
      _diplomacy_alert_colony_button.pressed.connect(
         func() -> void:
            # TODO - move to and select province in upgradable colony if any exist
            Events.NationManagementScreens.open_nation_management_screen(NationManagement.Screen.DIPLOMACY)
      )
   _diplomacy_alert_crisis_icon = get_gui_icon_from_nodepath(^"./topbar/alert_crisis")
   _diplomacy_alert_sphere_icon = get_gui_icon_from_nodepath(^"./topbar/alert_can_increase_opinion")
   _diplomacy_alert_great_power_icon = get_gui_icon_from_nodepath(^"./topbar/alert_loosing_gp")

   # Military
   _military_army_size_label = get_gui_label_from_nodepath(^"./topbar/military_army_value")
   if _military_army_size_label:
      _military_army_size_label.set_mouse_filter(MOUSE_FILTER_PASS)
      _military_army_size_label.set_text("§Y$CURR$/$MAX$")
      _military_army_size_label.set_tooltip_string("TOPBAR_ARMY_TOOLTIP")
   _military_navy_size_label = get_gui_label_from_nodepath(^"./topbar/military_navy_value")
   if _military_navy_size_label:
      _military_navy_size_label.set_mouse_filter(MOUSE_FILTER_PASS)
   _military_mobilisation_size_label = get_gui_label_from_nodepath(^"./topbar/military_manpower_value")
   if _military_mobilisation_size_label:
      _military_mobilisation_size_label.set_mouse_filter(MOUSE_FILTER_PASS)
   _military_leadership_points_label = get_gui_label_from_nodepath(^"./topbar/military_leadership_value")
   if _military_leadership_points_label:
      _military_leadership_points_label.set_mouse_filter(MOUSE_FILTER_PASS)

   _update_info()
   _update_speed_controls()

func _notification(what : int) -> void:
   match what:
      NOTIFICATION_TRANSLATION_CHANGED:
         _update_info()
         _update_speed_controls()

enum CountryStatus {
   GREAT_POWER,
   SECONDARY_POWER,
   CIVILISED,
   PARTIALLY_CIVILISED,
   UNCIVILISED,
   PRIMITIVE
}

var test_scroll : int = 0

func _input(event) -> void:
   if event is InputEventKey and event.pressed:
      if event.keycode == KEY_O:
         test_scroll -= 1
      elif event.keycode == KEY_P:
         test_scroll += 1
      _update_info()

func _update_info() -> void:
   var topbar_info : Dictionary = MenuSingleton.get_topbar_info()

   ## Country info
   const country_key : StringName = &"country"
   const country_status_key : StringName = &"country_status"
   const total_rank_key : StringName = &"total_rank"

   const prestige_key : StringName = &"prestige"
   const prestige_rank_key : StringName = &"prestige_rank"
   const prestige_tooltip_key : StringName = &"prestige_tooltip"

   const industrial_power_key : StringName = &"industrial_power"
   const industrial_rank_key : StringName = &"industrial_rank"
   const industrial_power_tooltip_key : StringName = &"industrial_power_tooltip"

   const military_power_key : StringName = &"military_power"
   const military_rank_key : StringName = &"military_rank"
   const military_power_tooltip_key : StringName = &"military_power_tooltip"

   const colonial_power_available_key : StringName = &"colonial_power_available"
   const colonial_power_max_key : StringName = &"colonial_power_max"
   const colonial_power_tooltip_key : StringName = &"colonial_power_tooltip"

   const COUNTRY_STATUS_NAMES : PackedStringArray = [
      "DIPLOMACY_GREATNATION_STATUS",
      "DIPLOMACY_COLONIALNATION_STATUS",
      "DIPLOMACY_CIVILIZEDNATION_STATUS",
      "DIPLOMACY_ALMOST_WESTERN_NATION_STATUS",
      "DIPLOMACY_UNCIVILIZEDNATION_STATUS",
      "DIPLOMACY_PRIMITIVENATION_STATUS"
   ]

   var country_identifier : String = topbar_info.get(country_key, "")
   var country_name : String = MenuSingleton.get_country_name_from_identifier(country_identifier)
   var country_status : int = topbar_info.get(country_status_key, CountryStatus.UNCIVILISED)

   var country_name_rank_tooltip : String = tr("PLAYER_COUNTRY_TOPBAR_RANK") + MenuSingleton.get_tooltip_separator() + tr("RANK_TOTAL_D")
   var country_name_rank_dict : Dictionary = {
      "NAME": country_name,
      "RANK": COUNTRY_STATUS_NAMES[country_status]
   }

   if _country_flag_button:
      _country_flag_button.set_flag_country_name(country_identifier)
      _country_flag_button.set_tooltip_string_and_substitution_dict(country_name_rank_tooltip, country_name_rank_dict)

   if _country_flag_overlay_icon:
      # 1 - Great Power
      # 2 - Secondary Power
      # 3 - Civilised
      # 4 - All Uncivilised
      _country_flag_overlay_icon.set_icon_index(1 + min(country_status, CountryStatus.PARTIALLY_CIVILISED))

   if _country_name_label:
      _country_name_label.set_text(country_name)

   if _country_rank_label:
      _country_rank_label.set_text(str(topbar_info.get(total_rank_key, 0)))
      _country_rank_label.set_tooltip_string_and_substitution_dict(country_name_rank_tooltip, country_name_rank_dict)

   var prestige_tooltip : String = tr("RANK_PRESTIGE") + topbar_info.get(prestige_tooltip_key, "") + MenuSingleton.get_tooltip_separator() + tr("RANK_PRESTIGE_D")

   if _country_prestige_label:
      _country_prestige_label.set_text(str(topbar_info.get(prestige_key, 0)))
      _country_prestige_label.set_tooltip_string(prestige_tooltip)

   if _country_prestige_rank_label:
      _country_prestige_rank_label.set_text(str(topbar_info.get(prestige_rank_key, 0)))
      _country_prestige_rank_label.set_tooltip_string(prestige_tooltip)

   var industrial_power_tooltip : String = tr("RANK_INDUSTRY") + MenuSingleton.get_tooltip_separator() + tr("RANK_INDUSTRY_D") + topbar_info.get(industrial_power_tooltip_key, "")

   if _country_industrial_power_label:
      _country_industrial_power_label.set_text(str(topbar_info.get(industrial_power_key, 0)))
      _country_industrial_power_label.set_tooltip_string(industrial_power_tooltip)

   if _country_industrial_power_rank_label:
      _country_industrial_power_rank_label.set_text(str(topbar_info.get(industrial_rank_key, 0)))
      _country_industrial_power_rank_label.set_tooltip_string(industrial_power_tooltip)

   var military_power_tooltip : String = tr("RANK_MILITARY") + MenuSingleton.get_tooltip_separator() + tr("RANK_MILITARY_D") + topbar_info.get(military_power_tooltip_key, "")

   if _country_military_power_label:
      _country_military_power_label.set_text(str(topbar_info.get(military_power_key, 0)))
      _country_military_power_label.set_tooltip_string(military_power_tooltip)

   if _country_military_power_rank_label:
      _country_military_power_rank_label.set_text(str(topbar_info.get(military_rank_key, 0)))
      _country_military_power_rank_label.set_tooltip_string(military_power_tooltip)

   if _country_colonial_power_label:
      var available_colonial_power : int = topbar_info.get(colonial_power_available_key, 0)
      var max_colonial_power : int = topbar_info.get(colonial_power_max_key, 0)
      _country_colonial_power_label.set_text(
         %s%s§!/%s" % ["W" if available_colonial_power > 0 else "R", available_colonial_power, max_colonial_power]
      )
      #_country_colonial_power_label.set_tooltip_string(tr("COLONIAL_POINTS") + MenuSingleton.get_tooltip_separator() + (
         #topbar_info.get(colonial_power_tooltip_key, "") if country_status <= CountryStatus.SECONDARY_POWER else tr("NON_COLONIAL_POWER")
      #))
      _country_colonial_power_label.set_tooltip_string("(Use O and P to scroll) " + MenuSingleton.get_test_tooltip(test_scroll))

   ## Time control
   if _date_label:
      _date_label.text = MenuSingleton.get_longform_date()

   ## Production
   for idx : int in _production_top_goods_icons.size():
      if _production_top_goods_icons[idx]:
         _production_top_goods_icons[idx].set_icon_index(idx + 2)

   if _production_alert_building_icon:
      _production_alert_building_icon.set_icon_index(2)

   if _production_alert_closed_icon:
      _production_alert_closed_icon.set_icon_index(2)

   if _production_alert_unemployment_icon:
      _production_alert_unemployment_icon.set_icon_index(2)

   ## Budget
   if _budget_funds_label:
      var cash : float = 0.0
      var earnings : float = 0.0
      _budget_funds_label.set_text("§Y%s§!¤(§%s%s§!¤)" % [
         GUINode.float_to_string_suffixed(cash),
         "G+" if earnings > 0.0 else "R" if earnings < 0.0 else "Y+",
         GUINode.float_to_string_suffixed(earnings)
      ])

   ## Technology
   if _technology_progress_bar:
      pass # TODO - set tech progress

   if _technology_current_research_label:
      # TODO - set current research or "unciv_nation" (in red) if uncivilised
      _technology_current_research_label.set_text("TB_TECH_NO_CURRENT")
      _technology_current_research_label.set_tooltip_string("TECHNOLOGYVIEW_NO_RESEARCH_TOOLTIP")

   if _technology_literacy_label:
      var literacy_float : float = 80.0
      var literacy_string : String = GUINode.float_to_string_dp(80.0, 1)
      _technology_literacy_label.set_text("§Y%s§W%%" % literacy_string)
      _technology_literacy_label.set_tooltip_string_and_substitution_dict("TOPBAR_AVG_LITERACY", { "AVG": literacy_string })

   if _technology_research_points_label:
      _technology_research_points_label.set_text("§Y%s" % GUINode.float_to_string_dp(10.0, 2))
      # TODO - test tooltip, replace with actual values from the simulation
      _technology_research_points_label.set_tooltip_string_and_substitution_dict("TECH_DAILY_RESEARCHPOINTS_TOOLTIP", {
         "POPTYPE": "Clergymen", "VALUE": GUINode.float_to_string_dp(1.42, 2),
         "FRACTION": GUINode.float_to_string_dp(0.95, 2), "OPTIMAL": GUINode.float_to_string_dp(2, 2)
      })

   ## Politics
   if _politics_party_icon:
      _politics_party_icon.set_modulate(Color(1.0, 1.0, 0.0))

   if _politics_party_label:
      _politics_party_label.set_text("ENG_liberal")

   if _politics_suppression_points_label:
      _politics_suppression_points_label.set_text("§Y%s" % GUINode.float_to_string_dp(2.5, 1))

   if _politics_infamy_label:
      _politics_infamy_label.set_text("§Y%s" % GUINode.float_to_string_dp(0.0, 2))

   if _politics_reforms_button:
      _politics_reforms_button.set_icon_index(2)

   if _politics_decisions_button:
      _politics_decisions_button.set_icon_index(2)

   if _politics_election_icon:
      _politics_election_icon.set_icon_index(2)

   if _politics_rebels_button:
      _politics_rebels_button.set_icon_index(2)

   ## Population
   if _population_total_size_label:
      # TODO - suffixes on both numbers should be white!
      var total_population : int = 16000000
      var growth : int = 1500
      _population_total_size_label.set_text("§Y%s§!(§%s%s§!)" % [
         GUINode.int_to_string_suffixed(total_population),
         "G" if growth >= 0 else "R",
         GUINode.int_to_string_suffixed(growth),
      ])

   if _population_national_foci_label:
      var foci_used : int = 1
      var max_foci : int = 1
      _population_national_foci_label.set_text(%s%d/%d" % ["R" if foci_used < max_foci else "G", foci_used, max_foci])

   if _population_militancy_label:
      _population_militancy_label.set_text("§Y%s" % GUINode.float_to_string_dp(1.5, 2))

   if _population_consciousness_label:
      _population_consciousness_label.set_text("§Y%s" % GUINode.float_to_string_dp(0.05, 2))

   ## Trade
   for idx : int in _trade_imported_icons.size():
      if _trade_imported_icons[idx]:
         _trade_imported_icons[idx].set_icon_index(idx + 2 + _production_top_goods_icons.size())

   for idx : int in _trade_exported_icons.size():
      if _trade_exported_icons[idx]:
         _trade_exported_icons[idx].set_icon_index(idx + 2 + _production_top_goods_icons.size() + _trade_imported_icons.size())

   ## Diplomacy
   if _diplomacy_peace_label:
      _diplomacy_peace_label.set_text("TOPBAR_AT_PEACE")

   # TODO - add war enemy flags to _diplomacy_war_enemies_overlapping_elements_box

   if _diplomacy_diplomatic_points_label:
      _diplomacy_diplomatic_points_label.set_text("§Y%s" % GUINode.float_to_string_dp(7.4, 0))

   if _diplomacy_alert_colony_button:
      _diplomacy_alert_colony_button.set_icon_index(3)

   if _diplomacy_alert_crisis_icon:
      _diplomacy_alert_crisis_icon.set_icon_index(3)

   if _diplomacy_alert_sphere_icon:
      _diplomacy_alert_sphere_icon.set_icon_index(2)

   if _diplomacy_alert_great_power_icon:
      _diplomacy_alert_great_power_icon.set_icon_index(2)

   ## Military
   const regiment_count_key : StringName = &"regiment_count";
   const max_supported_regiments_key : StringName = &"max_supported_regiments";

   var regiment_count : String = str(topbar_info.get(regiment_count_key, 0))

   if _military_army_size_label:
      var army_size_dict : Dictionary = {
         "CURR": regiment_count, "MAX": str(topbar_info.get(max_supported_regiments_key, 0))
      }
      _military_army_size_label.set_substitution_dict(army_size_dict)
      _military_army_size_label.set_tooltip_substitution_dict(army_size_dict)

   if _military_navy_size_label:
      _military_navy_size_label.set_text("§Y%d/%d" % [0, 0])

   const mobilised_key : StringName = &"mobilised"
   const mobilisation_regiments_key : StringName = &"mobilisation_regiments"
   const mobilisation_impact_key : StringName = &"mobilisation_impact"
   const war_policy_key : StringName = &"war_policy"
   const mobilisation_max_regiments_key : StringName = &"mobilisation_max_regiments"

   if _military_mobilisation_size_label:
      if topbar_info.get(mobilised_key, false):
         _military_mobilisation_size_label.set_text("§R-")
         _military_mobilisation_size_label.set_tooltip_string("TOPBAR_MOBILIZED")
      else:
         var mobilisation_regiments : String = str(topbar_info.get(mobilisation_regiments_key, 0))
         var mobilisation_impact : String = GUINode.float_to_string_dp(topbar_info.get(mobilisation_impact_key, 0), 1) + "%"

         _military_mobilisation_size_label.set_text("§Y" + mobilisation_regiments)
         _military_mobilisation_size_label.set_tooltip_string_and_substitution_dict(
            tr("TOPBAR_MOBILIZE_TOOLTIP") + "\n\n" + tr("MOBILIZATION_IMPACT_LIMIT_DESC") + "\n" + tr("MOBILIZATION_IMPACT_LIMIT_DESC2").replace("$CURR$", "$CURR2$"),
            {
               "CURR": mobilisation_regiments, "IMPACT": mobilisation_impact, "POLICY": topbar_info.get(war_policy_key, ""),
               "UNITS": str(topbar_info.get(mobilisation_max_regiments_key, 0)), "CURR2": regiment_count
            }
         )

   if _military_leadership_points_label:
      _military_leadership_points_label.set_text("§Y%d" % 0)

func _update_speed_controls() -> void:
   var paused : bool = MenuSingleton.is_paused()
   var speed : int = MenuSingleton.get_speed()

   #  TODO - decide whether to disable these or not
   # (they don't appear to get disabled in the base game)
   #if _speed_up_button:
   #  _speed_up_button.disabled = not MenuSingleton.can_increase_speed()

   #if _speed_down_button:
   #  _speed_down_button.disabled = not MenuSingleton.can_decrease_speed()

   if _pause_bg_button:
      _pause_bg_button.set_tooltip_string("TOPBAR_DATE_IS_PAUSED" if paused else "TOPBAR_DATE")

   if _speed_indicator_button:
      var index : int = 1
      if paused:
         _speed_indicator_button.set_tooltip_string("TOPBAR_PAUSE_INDICATOR")
      else:
         index += speed + 1
         const SPEED_NAMES : PackedStringArray = [
            "SLOWEST_SPEED",
            "SLOW_SPEED",
            "NORMAL_SPEED",
            "FAST_SPEED",
            "FASTEST_SPEED"
         ]
         _speed_indicator_button.set_tooltip_string_and_substitution_dict(
            "TOPBAR_SPEED_INDICATOR", { "SPEED": SPEED_NAMES[speed] if speed < SPEED_NAMES.size() else str(speed) }
         )
      _speed_indicator_button.set_icon_index(index)

# REQUIREMENTS:
# * UIFUN-71
func _on_play_pause_button_pressed() -> void:
   print("Toggling pause!")
   MenuSingleton.toggle_paused()

# REQUIREMENTS:
# * UIFUN-72
func _on_increase_speed_button_pressed() -> void:
   print("Speed up!")
   MenuSingleton.increase_speed()

# REQUIREMENTS:
# * UIFUN-73
func _on_decrease_speed_button_pressed() -> void:
   print("Speed down!")
   MenuSingleton.decrease_speed()

func _on_update_active_nation_management_screen(active_screen : NationManagement.Screen) -> void:
   for screen : NationManagement.Screen in _nation_management_buttons:
      _nation_management_buttons[screen].set_icon_index(1 + int(screen == active_screen))