Browse Source

:memo: Display game information

Give credits to resources.
DricomDragon 2 years ago
parent
commit
f1c3631054
3 changed files with 142 additions and 1 deletions
  1. 4 0
      godot/component/ui/hud/HUD.gd
  2. 127 1
      godot/component/ui/hud/HUD.tscn
  3. 11 0
      godot/component/ui/hud/MenuDialog.gd

+ 4 - 0
godot/component/ui/hud/HUD.gd

@@ -17,6 +17,8 @@ func show_game_over():
 	$MessageLabel.show()
 	yield(get_tree().create_timer(1.0), "timeout")
 	$ColorButton.show()
+	$MenuButton.show()
+
 
 func update_score(score):
 	$ScoreLabel.text = str(score)
@@ -28,4 +30,6 @@ func _on_MessageTimer_timeout():
 
 func _on_StartButton_pressed():
 	$ColorButton.hide()
+	$MenuButton.hide()
+	$MenuDialog.hide()
 	emit_signal("start_game")

+ 127 - 1
godot/component/ui/hud/HUD.tscn

@@ -1,7 +1,8 @@
-[gd_scene load_steps=12 format=2]
+[gd_scene load_steps=13 format=2]
 
 [ext_resource path="res://component/ui/hud/HUD.gd" type="Script" id=1]
 [ext_resource path="res://component/ui/hud/map_set.png" type="Texture" id=2]
+[ext_resource path="res://component/ui/hud/MenuDialog.gd" type="Script" id=3]
 
 [sub_resource type="DynamicFontData" id=1]
 font_path = "res://component/ui/Xolonium-Regular.ttf"
@@ -88,5 +89,130 @@ margin_top = 19.0
 custom_fonts/font = SubResource( 2 )
 text = "Start"
 align = 1
+
+[node name="MenuButton" type="Button" parent="."]
+anchor_left = 1.0
+anchor_right = 1.0
+margin_top = 10.0
+margin_right = -10.0
+margin_bottom = 50.0
+grow_horizontal = 0
+text = "Menu"
+
+[node name="MenuDialog" type="WindowDialog" parent="."]
+anchor_right = 1.0
+anchor_bottom = 1.0
+margin_left = 40.0
+margin_top = 40.0
+margin_right = -40.0
+margin_bottom = -40.0
+window_title = "Menu"
+script = ExtResource( 3 )
+
+[node name="Description" type="RichTextLabel" parent="MenuDialog"]
+anchor_right = 1.0
+anchor_bottom = 1.0
+margin_left = 20.0
+margin_top = 20.0
+margin_right = -20.0
+margin_bottom = -40.0
+bbcode_enabled = true
+bbcode_text = "Game made by Jovian HERSEMEULE (alias DricomDragon)
+
+[b]Game engine[/b]
+
+Made with [url=https://godotengine.org/]Godot[/url]
+
+This is an amazing Game engine made by amazing people, go check out their work.
+
+Engine licensed under MIT license.
+
+[b]Source code[/b]
+
+Made by Jovian HERSEMEULE, a.k.a. Dricom Dragon
+
+GNU GPLv3. See `LICENSE.txt` file.
+
+[b]Font[/b]
+
+I lost the license. >_<
+
+[b]Graphics[/b]
+
+[i]Fox[/i]
+
+Thanks to Elthen
+
+Art available on Itch.io : [url=https://elthen.itch.io/2d-pixel-art-fox-sprites]2D Pixel Art Fox Sprites[/url]
+
+[i]Grass[/i]
+
+Thanks to Athile
+
+Art available on OpenGameArt.org : [url=https://opengameart.org/content/seamless-grass-texture-ii]Seamless Grass Texture II[/url]
+
+Licensed CC0.
+
+[i]Chicken[/i]
+
+Thanks to Pekschi
+
+Art available on Itch.io : [url=https://pekschi.itch.io/fat-chicken]Fat Chicken Set[/url]
+                                                                                                      "
+text = "Game made by Jovian HERSEMEULE (alias DricomDragon)
+
+Game engine
+
+Made with Godot
+
+This is an amazing Game engine made by amazing people, go check out their work.
+
+Engine licensed under MIT license.
+
+Source code
+
+Made by Jovian HERSEMEULE, a.k.a. Dricom Dragon
+
+GNU GPLv3. See `LICENSE.txt` file.
+
+Font
+
+I lost the license. >_<
+
+Graphics
+
+Fox
+
+Thanks to Elthen
+
+Art available on Itch.io : 2D Pixel Art Fox Sprites
+
+Grass
+
+Thanks to Athile
+
+Art available on OpenGameArt.org : Seamless Grass Texture II
+
+Licensed CC0.
+
+Chicken
+
+Thanks to Pekschi
+
+Art available on Itch.io : Fat Chicken Set
+                                                                                                      "
+
+[node name="CloseButton" type="Button" parent="MenuDialog"]
+anchor_left = 0.5
+anchor_top = 1.0
+anchor_right = 0.5
+anchor_bottom = 1.0
+margin_bottom = -10.0
+grow_horizontal = 2
+grow_vertical = 0
+text = "Close"
+
 [connection signal="timeout" from="MessageTimer" to="." method="_on_MessageTimer_timeout"]
 [connection signal="pressed" from="ColorButton" to="." method="_on_StartButton_pressed"]
+[connection signal="button_down" from="MenuButton" to="MenuDialog" method="_on_MenuButton_button_down"]
+[connection signal="pressed" from="MenuDialog/CloseButton" to="MenuDialog" method="_on_CloseButton_pressed"]

+ 11 - 0
godot/component/ui/hud/MenuDialog.gd

@@ -0,0 +1,11 @@
+extends WindowDialog
+
+
+
+func _on_CloseButton_pressed():
+	hide()
+
+
+func _on_MenuButton_button_down():
+	if !is_visible():
+		popup()