forked from Aurorastation/Aurora.3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathworld.dm
522 lines (403 loc) · 14.9 KB
/
world.dm
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
/*
The initialization of the game happens roughly like this:
1. All global variables are initialized (including the global_init instance).
2. The map is initialized, and map objects are created.
3. world/New() runs, creating & starting the master controller.
4. The master controller initializes the rest of the game.
*/
GLOBAL_DATUM_INIT(init, /datum/global_init, new)
GLOBAL_DATUM(config, /datum/configuration)
GLOBAL_PROTECT(config)
/**
* THIS !!!SINGLE!!! PROC IS WHERE ANY FORM OF INIITIALIZATION THAT CAN'T BE PERFORMED IN SUBSYSTEMS OR WORLD/NEW IS DONE
* NOWHERE THE FUCK ELSE
* I DON'T CARE HOW MANY LAYERS OF DEBUG/PROFILE/TRACE WE HAVE, YOU JUST HAVE TO DEAL WITH THIS PROC EXISTING
* I'M NOT EVEN GOING TO TELL YOU WHERE IT'S CALLED FROM BECAUSE I'M DECLARING THAT FORBIDDEN KNOWLEDGE
* SO HELP ME GOD IF I FIND ABSTRACTION LAYERS OVER THIS!
*/
/world/proc/Genesis(tracy_initialized = FALSE)
RETURN_TYPE(/datum/controller/master)
#ifdef USE_BYOND_TRACY
#warn USE_BYOND_TRACY is enabled
if(!tracy_initialized)
init_byond_tracy()
Genesis(tracy_initialized = TRUE)
return
#endif
// Init the debugger first so we can debug Master
init_debugger()
// THAT'S IT, WE'RE DONE, THE. FUCKING. END.
Master = new
/*
Pre-map initialization stuff should go here.
*/
/datum/global_init/New()
generate_gameid()
load_configuration()
qdel(src) //we're done
GLOB.init = null
/datum/global_init/Destroy()
..()
return 3 // QDEL_HINT_HARDDEL ain't defined here, so magic number it is.
/var/game_id = null
/proc/generate_gameid()
if(game_id != null)
return
game_id = ""
var/list/c = list("a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "1", "2", "3", "4", "5", "6", "7", "8", "9", "0")
var/l = c.len
var/t = world.timeofday
for(var/_ = 1 to 4)
game_id = "[c[(t % l) + 1]][game_id]"
t = round(t / l)
game_id = "-[game_id]"
t = round(world.realtime / (10 * 60 * 60 * 24))
for(var/_ = 1 to 3)
game_id = "[c[(t % l) + 1]][game_id]"
t = round(t / l)
/world
mob = /mob/abstract/new_player
turf = /turf/space
area = /area/space
view = "15x15"
cache_lifespan = 0 //stops player uploaded stuff from being kept in the rsc past the current session
maxx = WORLD_MIN_SIZE // So that we don't get map-window-popin at boot. DMMS will expand this.
maxy = WORLD_MIN_SIZE
fps = 20
#ifdef FIND_REF_NO_CHECK_TICK
loop_checks = FALSE
#endif
#define RECOMMENDED_VERSION 510
/world/New()
//logs
GLOB.diary_date_string = time2text(world.realtime, "YYYY/MM/DD")
GLOB.href_logfile = file("data/logs/[GLOB.diary_date_string] hrefs.htm")
GLOB.diary = "data/logs/[GLOB.diary_date_string]_[game_id].log"
log_startup()
GLOB.changelog_hash = md5('html/changelog.html') //used for telling if the changelog has changed recently
if(GLOB.config.logsettings["log_runtime"])
GLOB.diary_runtime = file("data/logs/_runtime/[GLOB.diary_date_string]-runtime.log")
if(byond_version < RECOMMENDED_VERSION)
log_world("ERROR: Your server's byond version does not meet the recommended requirements for this server. Please update BYOND to [RECOMMENDED_VERSION].")
TgsNew(new /datum/tgs_event_handler/impl, TGS_SECURITY_TRUSTED)
GLOB.config.post_load()
if(GLOB.config && GLOB.config.server_name != null && GLOB.config.server_suffix && world.port > 0)
// dumb and hardcoded but I don't care~
GLOB.config.server_name += " #[(world.port % 1000) / 100]"
callHook("startup")
. = ..()
#ifdef UNIT_TEST
#if defined(MANUAL_UNIT_TEST)
world.log << "[ascii_green] *** NOTICE *** [ascii_reset] Unit Tests Enabled. This will destroy the world when testing is complete."
#else
world.log << "::notice::Unit Tests Enabled. This will destroy the world when testing is complete."
#endif
load_unit_test_changes()
#endif
Master.Initialize(10, FALSE, TRUE)
#undef RECOMMENDED_VERSION
return
var/list/world_api_rate_limit = list()
/world/Topic(T, addr, master, key)
var/list/response[] = list()
var/list/queryparams[]
if (!SSfail2topic)
response["statuscode"] = 500
response["response"] = "Server not initialized."
return json_encode(response)
else if (SSfail2topic.IsRateLimited(addr))
response["statuscode"] = 429
response["response"] = "Rate limited."
return json_encode(response)
if (length(T) > 2000)
response["statuscode"] = 413
response["response"] = "Payload too large."
return json_encode(response)
try
queryparams = json_decode(T)
catch()
queryparams = list()
log_debug("API: Request Received - from:[addr], master:[master], key:[key]")
log_topic(T, addr, master, key, queryparams)
// TGS topic hook. Returns if successful, expects old-style serialization.
var/tgs_topic_return = TgsTopic(T)
if (tgs_topic_return)
log_debug("API - TGS3 Request.")
return tgs_topic_return
else if (!queryparams.len)
log_debug("API - Bad Request - Invalid/no JSON data sent.")
response["statuscode"] = 400
response["response"] = "Bad Request - Invalid/no JSON data sent."
return json_encode(response)
queryparams["addr"] = addr //Add the IP to the queryparams that are passed to the api functions
var/query = queryparams["query"]
var/auth = queryparams["auth"]
if (isnull(query))
log_debug("API - Bad Request - No query specified")
response["statuscode"] = 400
response["response"] = "Bad Request - No query specified"
return json_encode(response)
var/datum/topic_command/command = GLOB.topic_commands[query]
//Check if that command exists
if (isnull(command))
log_debug("API: Unknown command called: [query]")
response["statuscode"] = 501
response["response"] = "Not Implemented"
return json_encode(response)
var/unauthed = command.check_auth(addr, auth)
if (unauthed)
if (unauthed == 3)
log_debug("API: Request denied - Auth Service Unavailable")
response["statuscode"] = 503
response["response"] = "Auth Service Unavailable"
return json_encode(response)
else if (unauthed == 2)
log_debug("API: Request denied - Throttled")
response["statuscode"] = 429
response["response"] = "Throttled"
return json_encode(response)
else
log_debug("API: Request denied - Bad Auth")
response["statuscode"] = 401
response["response"] = "Bad Auth"
return json_encode(response)
log_debug("API: Auth valid")
if(command.check_params_missing(queryparams))
log_debug("API: Mising Params - Status: [command.statuscode] - Response: [command.response]")
response["statuscode"] = command.statuscode
response["response"] = command.response
response["data"] = command.data
return json_encode(response)
else
command.run_command(queryparams)
log_debug("API: Command called: [query] - Status: [command.statuscode] - Response: [command.response]")
response["statuscode"] = command.statuscode
response["response"] = command.response
response["data"] = command.data
return json_encode(response)
/proc/reboot_world()
world.Reboot()
/world/Reboot(reason, hard_reset = FALSE)
if (!hard_reset && world.TgsAvailable())
switch (GLOB.config.rounds_until_hard_restart)
if (-1)
hard_reset = FALSE
if (0)
hard_reset = TRUE
else
if (SSpersistent_configuration.rounds_since_hard_restart >= GLOB.config.rounds_until_hard_restart)
hard_reset = TRUE
SSpersistent_configuration.rounds_since_hard_restart = 0
else
hard_reset = FALSE
SSpersistent_configuration.rounds_since_hard_restart++
else if (!world.TgsAvailable() && hard_reset)
hard_reset = FALSE
SSpersistent_configuration.save_to_file("data/persistent_config.json")
Master.Shutdown()
for(var/thing in GLOB.clients)
if(!thing)
continue
var/client/C = thing
C?.tgui_panel?.send_roundrestart()
if(GLOB.config.server) //if you set a server location in config.txt, it sends you there instead of trying to reconnect to the same world address. -- NeoFite
C << link("byond://[GLOB.config.server]")
world.TgsReboot()
if (hard_reset)
log_misc("World hard rebooted at [time_stamp()].")
shutdown_logging()
world.TgsEndProcess()
log_misc("World soft rebooted at [time_stamp()].")
shutdown_logging()
..(reason)
/world/Error(var/exception/e)
var/static/inerror = 0
//runtime while processing runtimes
if (inerror)
inerror = 0
return ..(e)
inerror = 1
// A horrible hack for unit tests but fuck runtiming timers.
// They don't provide any useful information, and as such, are being suppressed.
#ifdef UNIT_TEST
if (findtextEx(e.name, "Invalid timer:") || findtextEx(e.desc, "Invalid timer:"))
inerror = 0
return
#endif // UNIT_TEST
e.time_stamp()
log_exception(e)
inerror = 0
return ..(e)
// We need this elsewhere!
/exception/var/time_stamped = 0
/exception/proc/time_stamp()
if (time_stamped)
return
//newline at start is because of the "runtime error" byond prints that can't be timestamped.
name = "\n\[[time2text(world.timeofday,"hh:mm:ss")]\][name]"
//this is done this way rather then replace text to pave the way for processing the runtime reports more thoroughly
// (and because runtimes end with a newline, and we don't want to basically print an empty time stamp)
var/list/split = splittext(desc, "\n")
for (var/i in 1 to split.len)
if (split[i] != "")
split[i] = "\[[time2text(world.timeofday,"hh:mm:ss")]\][split[i]]"
desc = jointext(split, "\n")
time_stamped = 1
/proc/load_configuration()
GLOB.config = new()
GLOB.config.load("config/config.txt")
GLOB.config.load("config/game_options.txt","game_options")
if (GLOB.config.age_restrictions_from_file)
GLOB.config.load("config/age_restrictions.txt", "age_restrictions")
/world/proc/update_status()
var/list/s = list()
if (GLOB.config && GLOB.config.server_name)
s += "<b>[GLOB.config.server_name]</b> — "
s += "<b>[station_name()]</b>";
s += " ("
s += "<a href=\"[GLOB.config.forumurl]\">" //Change this to wherever you want the hub to link to.
s += "Forums" //Replace this with something else. Or ever better, delete it and uncomment the game version.
s += "</a>"
s += ")"
var/list/features = list()
if (Master.init_timeofday) // This is set at the end of initialization.
if(GLOB.master_mode)
features += GLOB.master_mode
else
features += "<b>STARTING</b>"
if (!GLOB.config.enter_allowed)
features += "closed"
features += GLOB.config.abandon_allowed ? "respawn" : "no respawn"
if (GLOB.config && GLOB.config.allow_vote_mode)
features += "vote"
if (GLOB.config && GLOB.config.allow_ai)
features += "AI allowed"
var/n = 0
for (var/mob/M in GLOB.player_list)
if (M.client)
n++
if (n > 1)
features += "~[n] players"
else if (n > 0)
features += "~[n] player"
if (GLOB.config && GLOB.config.hostedby)
features += "hosted by <b>[GLOB.config.hostedby]</b>"
if (features)
s += ": [jointext(features, ", ")]"
s = s.Join()
/* does this help? I do not know */
if (src.status != s)
src.status = s
#define FAILED_DB_CONNECTION_CUTOFF 5
/hook/startup/proc/load_databases()
if(!GLOB.config.sql_enabled)
log_world("ERROR: Database Connection disabled. - Skipping Connection Establishment")
return 1
//Construct the database object from an init file.
GLOB.dbcon = initialize_database_object("config/dbconfig.txt")
if(!setup_database_connection(GLOB.dbcon))
log_world("ERROR: Your server failed to establish a connection with the configured database.")
else
log_world("Database connection established.")
return 1
/proc/initialize_database_object(var/filename)
if (!filename)
// The code is written in a manner that is spasses out whenever dbcon = null, so we just make a dummy DB object.
return new/DBConnection()
var/list/data = list("address", "port", "database", "login", "password")
var/list/Lines = file2list(filename)
if (!Lines)
// Return dummy object for safety.
return new/DBConnection()
for (var/t in Lines)
if (!t)
continue
t = trim(t)
if (length(t) == 0)
continue
else if (copytext(t, 1, 2) == "#")
continue
var/pos = findtext(t, " ")
var/name = null
var/value = null
name = lowertext(copytext(t, 1, pos))
value = copytext(t, pos + 1)
if (!name)
continue
if (name in data)
data[name] = value
else
log_misc("Unknown setting while setting up database connection. Filename: '[filename]', value: '[value]'.")
return new/DBConnection(data["address"], data["port"], data["database"], data["login"], data["password"])
/proc/setup_database_connection(var/DBConnection/con)
if (!con)
log_world("ERROR: No DBConnection object passed to setup_database_connection().")
return 0
if (con.failed_connections > FAILED_DB_CONNECTION_CUTOFF) //If it failed to establish a connection more than 5 times in a row, don't bother attempting to conenct anymore.
return 0
con.Connect()
. = con.IsConnected()
if ( . )
con.failed_connections = 0 //If this connection succeeded, reset the failed connections counter.
else
con.failed_connections++ //If it failed, increase the failed connections counter.
con.last_fail = world.timeofday
#ifdef UNIT_TEST
// UTs are presumed public. Change this to hide your shit.
log_world("ERROR: Database connection failed with message:")
log_world("ERROR: [con.ErrorMsg()]")
#else
log_world("ERROR: [time2text(con.last_fail, "hh:mm:ss")]: Database connection failed (try #[con.failed_connections]/[FAILED_DB_CONNECTION_CUTOFF])")
log_world("ERROR: [con.ErrorMsg()]")
#endif
return .
//This proc ensures that the connection to the feedback database (global variable dbcon) is established
/proc/establish_db_connection(var/DBConnection/con)
if (!GLOB.config.sql_enabled)
return FALSE
if (!con)
log_sql("ERROR: No DBConnection object passed to establish_db_connection() proc.")
return FALSE
if (con.failed_connections > FAILED_DB_CONNECTION_CUTOFF)
if(world.timeofday < con.last_fail + 100) // 10 seconds
log_sql("ERROR: DB connection cutoff exceeded for a database object in establish_db_connection().")
return FALSE
con.failed_connections = 0
if (!con.IsConnected())
return setup_database_connection(con)
else
return TRUE
/world/proc/change_fps(new_value = 20)
if(new_value <= 0)
CRASH("change_fps() called with [new_value] new_value.")
if(fps == new_value)
return //No change required.
fps = new_value
on_tickrate_change()
/world/proc/change_tick_lag(new_value = 0.5)
if(new_value <= 0)
CRASH("change_tick_lag() called with [new_value] new_value.")
if(tick_lag == new_value)
return //No change required.
tick_lag = new_value
on_tickrate_change()
/world/proc/on_tickrate_change()
SStimer?.reset_buckets()
/world/proc/init_byond_tracy()
var/library
switch (system_type)
if (MS_WINDOWS)
library = "prof.dll"
if (UNIX)
library = "libprof.so"
else
CRASH("Unsupported platform: [system_type]")
var/init_result = LIBCALL(library, "init")("block")
if (init_result != "0")
CRASH("Error initializing byond-tracy: [init_result]")
/world/proc/init_debugger()
var/dll = GetConfig("env", "AUXTOOLS_DEBUG_DLL")
if (dll)
LIBCALL(dll, "auxtools_init")()
enable_debugging()
#undef FAILED_DB_CONNECTION_CUTOFF