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
|
# Hurry Curry! - a game about cooking
# Copyright 2024 tpart
# Copyright 2024 nokoe
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
#
extends Node
signal update_loading(status: bool)
signal update_server_list(list: Array)
enum Registry {
MDNS = 0,
GLOBAL = 1,
}
const MDNS_URL: String = "http://127.0.0.1:27033/v1/list"
const HEADERS: Array[String] = [
"Accept: application/json",
"User-Agent: Hurry Curry! %s" % Global.VERSION
]
var current_list: Array[Array] = [[], []]
var loading := false
var mdns := HTTPRequest.new()
var reg := HTTPRequest.new()
var thread: Thread
var pid: int
var mdns_timer := Timer.new()
var reg_timer := Timer.new()
# after 30 minutes we stop fetching results to reduce server load
var timeout := Timer.new()
func _ready() -> void:
add_child(mdns)
add_child(reg)
mdns_timer.wait_time = 5.
mdns_timer.one_shot = false
mdns_timer.timeout.connect(fetch_server_list.bind(Registry.MDNS))
add_child(mdns_timer)
reg_timer.wait_time = 60.
reg_timer.one_shot = false
reg_timer.timeout.connect(fetch_server_list.bind(Registry.GLOBAL))
add_child(reg_timer)
timeout.wait_time = 60. * 30.
timeout.timeout.connect(func():
stop()
)
add_child(timeout)
mdns.request_completed.connect(_on_request_completed.bind(Registry.MDNS))
reg.request_completed.connect(_on_request_completed.bind(Registry.GLOBAL))
if Global.get_setting("online.use_discovery"):
thread = Thread.new()
thread.start(func():
# SAFETY: reading/writing arrays/dictionaries is allowed as long as
# the size is not changed.
# cf.: https://docs.godotengine.org/en/4.3/tutorials/performance/thread_safe_apis.html#gdscript-arrays-dictionaries
var res = OS.create_process(get_discovery_path(), [], true)
# SAFETY: since this is not read until the thread stops, this should
# probably be safe without synchronisation :)
pid = res
)
static func get_discovery_path() -> String:
var path: String = Global.get_setting("online.discovery_binary")
if path != "":
return path
else:
return "hurrycurry-discovery"
func fetch_server_list(registry: Registry) -> void:
match registry:
Registry.MDNS:
mdns.request(MDNS_URL, HEADERS)
Registry.GLOBAL:
reg.request(Global.get_setting("online.registry_url") + "/v1/list", HEADERS)
loading = true
update_loading.emit(true)
func _on_request_completed(result: int, _response_code: int, _headers: PackedStringArray, body: PackedByteArray, registry: Registry):
loading = false
update_loading.emit(false)
if result != 0:
push_warning("Fetching server list failed with code %d" % result)
return
var json = JSON.parse_string(body.get_string_from_utf8())
if json == null:
push_error("Server list response invalid")
return
current_list[registry] = json
update_server_list.emit(current_list)
func start() -> void:
timeout.stop()
timeout.start()
if Global.get_setting("online.use_discovery"):
mdns_timer.start()
fetch_server_list(Registry.MDNS)
if Global.get_setting("online.use_registry"):
reg_timer.start()
fetch_server_list(Registry.GLOBAL)
func stop() -> void:
timeout.stop()
mdns_timer.stop()
reg_timer.stop()
func one_shot() -> void:
start()
stop()
func _exit_tree():
if thread != null: thread.wait_to_finish()
if pid != null: OS.kill(pid)
|