mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-21 20:20:33 +01:00
3591 individual conflicts Update build.js Update install_node.sh Update byond.js oh my fucking god hat slow huh holy shit we all fall down 2 more I missed 2900 individual conflicts 2700 Individual conflicts replaces yarn file with tg version, bumping us down to 2200-ish Down to 2000 individual conflicts 140 down mmm aaaaaaaaaaaaaaaaaaa not yt 575 soon 900 individual conflicts 600 individual conflicts, 121 file conflicts im not okay 160 across 19 files 29 in 4 files 0 conflicts, compiletime fix time some minor incap stuff missed ticks weird dupe definition stuff missed ticks 2 incap fixes undefs and pie fix Radio update and some extra minor stuff returns a single override no more dupe definitions, 175 compiletime errors Unticked file fix sound and emote stuff honk and more radio stuff
25 lines
900 B
Plaintext
25 lines
900 B
Plaintext
#define GLOBAL_PROC "some_magic_bullshit"
|
|
/// A shorthand for the callback datum, [documented here](datum/callback.html)
|
|
#define CALLBACK new /datum/callback
|
|
|
|
///Per the DM reference, spawn(-1) will execute the spawned code immediately until a block is met.
|
|
#define MAKE_SPAWN_ACT_LIKE_WAITFOR -1
|
|
///Create a codeblock that will not block the callstack if a block is met.
|
|
#define ASYNC spawn(MAKE_SPAWN_ACT_LIKE_WAITFOR)
|
|
|
|
#define INVOKE_ASYNC(proc_owner, proc_path, proc_arguments...) \
|
|
if ((proc_owner) == GLOBAL_PROC) { \
|
|
ASYNC { \
|
|
call(proc_path)(##proc_arguments); \
|
|
}; \
|
|
} \
|
|
else { \
|
|
ASYNC { \
|
|
/* Written with `0 ||` to avoid the compiler seeing call("string"), and thinking it's a deprecated DLL */ \
|
|
call(0 || proc_owner, proc_path)(##proc_arguments); \
|
|
}; \
|
|
}
|
|
|
|
/// like CALLBACK but specifically for verb callbacks
|
|
#define VERB_CALLBACK new /datum/callback/verb_callback
|