c4beeae38f
Top-down twin-stick bullet-hell, Godot 4.7, server-authoritative dedicated server with client-side prediction. Clients send input only; the server resolves every hit for both players and enemies (no PvP). - SimWorld: whole simulation as plain RefCounted objects (no nodes, no physics server), ~0.24ms/tick at peak load -- runs headless for free and drives 78 tests in under a second - BulletPool: struct-of-arrays bullet storage, replicated as spawn/despawn events rather than per-tick state - Emitter framework (Ring/AimedSpread/WallGap/ArcSweep) shared by trash enemies and bosses -- a new boss is data in src/content/content.gd, no simulation changes - The Warden of the Fold: stationary 4-phase boss built entirely on that format - Lobby hub with a portal into on-demand dungeon instances; one process hosts the hub plus every concurrent dungeon - Emergency escape: 3s server-owned channel, cancelled by damage - tools/check.sh, test.sh (GUT), smoke.sh (real server + bot clients over ENet), bench.gd; git hooks wired to the same scripts - docs/ARCHITECTURE.md, NETCODE.md, WORKFLOW.md, ROADMAP.md
46 lines
1.6 KiB
Plaintext
46 lines
1.6 KiB
Plaintext
[gd_scene format=3 uid="uid://c5om15m2e70qp"]
|
|
|
|
[ext_resource type="Script" uid="uid://bomsutomy3pdy" path="res://addons/gut/gui/check_for_update.gd" id="1_70x43"]
|
|
[ext_resource type="FontFile" uid="uid://bnh0lslf4yh87" path="res://addons/gut/fonts/CourierPrime-Regular.ttf" id="2_lsin2"]
|
|
|
|
[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_lsin2"]
|
|
content_margin_left = 20.0
|
|
content_margin_top = 20.0
|
|
content_margin_right = 20.0
|
|
content_margin_bottom = 20.0
|
|
bg_color = Color(0.09239707, 0.09239706, 0.09239706, 0.49803922)
|
|
corner_radius_top_left = 20
|
|
corner_radius_top_right = 20
|
|
|
|
[node name="CheckForUpdate" type="Control" unique_id=381385621]
|
|
custom_minimum_size = Vector2(0, 53)
|
|
layout_mode = 3
|
|
anchors_preset = 15
|
|
anchor_right = 1.0
|
|
anchor_bottom = 1.0
|
|
grow_horizontal = 2
|
|
grow_vertical = 2
|
|
size_flags_horizontal = 3
|
|
script = ExtResource("1_70x43")
|
|
|
|
[node name="Output" type="RichTextLabel" parent="." unique_id=1256208807]
|
|
layout_mode = 1
|
|
anchors_preset = 15
|
|
anchor_right = 1.0
|
|
anchor_bottom = 1.0
|
|
grow_horizontal = 2
|
|
grow_vertical = 2
|
|
size_flags_horizontal = 3
|
|
size_flags_vertical = 3
|
|
focus_mode = 2
|
|
theme_override_fonts/mono_font = ExtResource("2_lsin2")
|
|
theme_override_styles/normal = SubResource("StyleBoxFlat_lsin2")
|
|
bbcode_enabled = true
|
|
text = "[center][color=ROYAL_BLUE][url=https://github.com/bitwes/Gut/releases/tag/v0.0.0]GUT 0.0.0[/url][/color] is now available![/center]
|
|
"
|
|
selection_enabled = true
|
|
|
|
[connection signal="gui_input" from="Output" to="." method="_on_output_gui_input"]
|
|
[connection signal="meta_clicked" from="Output" to="." method="_on_output_meta_clicked"]
|
|
[connection signal="resized" from="Output" to="." method="_on_output_resized"]
|