X-Git-Url: https://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fserver%2Fmain.qc;h=2b29422b8969362356b6a552106158c9b881d0e7;hb=17fd0adc9434cde385b78d09196aed727b24b9c4;hp=bbafd022df286bcdd8c96a93e347dbc0225e5dd1;hpb=77a72b8a1d5686ac0ee30d5019f512086bcbaf3e;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/server/main.qc b/qcsrc/server/main.qc index bbafd022d..2b29422b8 100644 --- a/qcsrc/server/main.qc +++ b/qcsrc/server/main.qc @@ -1,35 +1,64 @@ #include "main.qh" -#include "anticheat.qh" -#include "hook.qh" -#include "damage.qh" -#include "world.qh" -#include "spawnpoints.qh" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include #include - -#include "bot/api.qh" - -#include "command/common.qh" - +#include +#include #include -#include "weapons/csqcprojectile.qh" +#include #include -#include - -#include "../common/constants.qh" -#include "../common/deathtypes/all.qh" -#include "../common/debug.qh" -#include "../common/mapinfo.qh" -#include "../common/util.qh" - -#include "../common/vehicles/all.qh" -#include -#include - -#include "../lib/csqcmodel/sv_model.qh" +#include +#include -#include "../lib/warpzone/common.qh" -#include "../lib/warpzone/server.qh" +void dropclient_do(entity this) +{ + if (this.owner) + dropclient(this.owner); + delete(this); +} +/** + * Schedules dropclient for a player and returns true; + * if dropclient is already scheduled (for that player) it does nothing and returns false. + * + * NOTE: this function exists only to allow sending a message to the kicked player with + * Send_Notification, which doesn't work if called together with dropclient + */ +bool dropclient_schedule(entity this) +{ + bool scheduled = false; + FOREACH_ENTITY_CLASS("dropclient_handler", true, + { + if(it.owner == this) + { + scheduled = true; + break; // can't use return here, compiler shows a warning + } + }); + if (scheduled) + return false; + + entity e = new_pure(dropclient_handler); + setthink(e, dropclient_do); + e.owner = this; + e.nextthink = time + 0.1; + return true; +} void CreatureFrame_hotliquids(entity this) { @@ -173,6 +202,62 @@ void SV_PausedTic(float elapsedtime) if (!server_is_dedicated) Pause_TryPause(false); } +void dedicated_print(string input) +{ + if (server_is_dedicated) print(input); +} + +void make_safe_for_remove(entity e) +{ + if (e.initialize_entity) + { + entity ent, prev = NULL; + for (ent = initialize_entity_first; ent; ) + { + if ((ent == e) || ((ent.classname == "initialize_entity") && (ent.enemy == e))) + { + //print("make_safe_for_remove: getting rid of initializer ", etos(ent), "\n"); + // skip it in linked list + if (prev) + { + prev.initialize_entity_next = ent.initialize_entity_next; + ent = prev.initialize_entity_next; + } + else + { + initialize_entity_first = ent.initialize_entity_next; + ent = initialize_entity_first; + } + } + else + { + prev = ent; + ent = ent.initialize_entity_next; + } + } + } +} + +void remove_except_protected(entity e) +{ + if(e.remove_except_protected_forbidden) + error("not allowed to remove this at this point"); + builtin_remove(e); +} + +void remove_unsafely(entity e) +{ + if(e.classname == "spike") + error("Removing spikes is forbidden (crylink bug), please report"); + builtin_remove(e); +} + +void remove_safely(entity e) +{ + make_safe_for_remove(e); + builtin_remove(e); +} + /* ============= StartFrame @@ -246,8 +331,8 @@ void StartFrame() CreatureFrame_All(); CheckRules_World(); - if (warmup_stage && !game_stopped && warmup_limit > 0 && time >= warmup_limit) { - ReadyRestart(); + if (warmup_stage && !game_stopped && warmup_limit > 0 && time - game_starttime >= warmup_limit) { + ReadyRestart(true); return; } @@ -266,75 +351,6 @@ void StartFrame() .string gametypefilter; .string cvarfilter; -/** - * Evaluate an expression of the form: [+ | -]? [var[op]val | [op]var | val | var] ... - * +: all must match. this is the default - * -: one must NOT match - * - * var>x - * var=x - * var<=x - * var==x - * var!=x - * var===x - * var!==x - */ -bool expr_evaluate(string s) -{ - bool ret = false; - if (str2chr(s, 0) == '+') { - s = substring(s, 1, -1); - } else if (str2chr(s, 0) == '-') { - ret = true; - s = substring(s, 1, -1); - } - bool expr_fail = false; - for (int i = 0, n = tokenize_console(s); i < n; ++i) { - int o; - string k, v; - s = argv(i); - #define X(expr) \ - if (expr) \ - continue; \ - expr_fail = true; \ - break; - - #define BINOP(op, len, expr) \ - if ((o = strstrofs(s, op, 0)) >= 0) { \ - k = substring(s, 0, o); \ - v = substring(s, o + len, -1); \ - X(expr); \ - } - BINOP(">=", 2, cvar(k) >= stof(v)); - BINOP("<=", 2, cvar(k) <= stof(v)); - BINOP(">", 1, cvar(k) > stof(v)); - BINOP("<", 1, cvar(k) < stof(v)); - BINOP("==", 2, cvar(k) == stof(v)); - BINOP("!=", 2, cvar(k) != stof(v)); - BINOP("===", 3, cvar_string(k) == v); - BINOP("!==", 3, cvar_string(k) != v); - { - k = s; - bool b = true; - if (str2chr(k, 0) == '!') { - k = substring(s, 1, -1); - b = false; - } - float f = stof(k); - bool isnum = ftos(f) == k; - X(boolean(isnum ? f : cvar(k)) == b); - } - #undef BINOP - #undef X - } - if (!expr_fail) { - ret = !ret; - } - // now ret is true if we want to keep the item, and false if we want to get rid of it - return ret; -} - void SV_OnEntityPreSpawnFunction(entity this) { if (this) @@ -349,7 +365,7 @@ void SV_OnEntityPreSpawnFunction(entity this) return; } - if (DoesQ3ARemoveThisEntity(this)) { + if (q3compat && DoesQ3ARemoveThisEntity(this)) { delete(this); return; } @@ -381,6 +397,62 @@ void SV_OnEntityPreSpawnFunction(entity this) } } +string GetField_fullspawndata(entity e, string f, ...) +/* Retrieves the value of a map entity field from fullspawndata + * This bypasses field value changes made by the engine, + * eg string-to-float and escape sequence substitution. + * + * Avoids the need to declare fields just to read them once :) + * + * Returns the last instance of the field to match DarkPlaces behaviour. + * Path support: converts \ to / and tests the file if a third (bool, true) arg is passed. + * Returns string_null if the entity does not have the field, or the file is not in the VFS. + * + * FIXME: entities with //comments are not supported. + */ +{ + string v = string_null; + + if (!e.fullspawndata) + { + //LOG_WARNF("^1EDICT %s (classname %s) has no fullspawndata, engine lacks support?", ftos(num_for_edict(e)), e.classname); + return v; + } + + if (strstrofs(e.fullspawndata, "//", 0) >= 0) + { + // tokenize and tokenize_console return early if "//" is reached, + // which can leave an odd number of tokens and break key:value pairing. + LOG_WARNF("^1EDICT %s fullspawndata contains unsupported //comment^7%s", ftos(num_for_edict(e)), e.fullspawndata); + return v; + } + + //print(sprintf("%s(EDICT %s, FIELD %s)\n", __FUNC__, ftos(num_for_edict(e)), f)); + //print(strcat("FULLSPAWNDATA:", e.fullspawndata, "\n")); + + // tokenize treats \ as an escape, but tokenize_console returns the required literal + for (int t = tokenize_console(e.fullspawndata) - 3; t > 0; t -= 2) + { + //print(sprintf("\tTOKEN %s:%s\t%s:%s\n", ftos(t), ftos(t + 1), argv(t), argv(t + 1))); + if (argv(t) == f) + { + v = argv(t + 1); + break; + } + } + + //print(strcat("RESULT: ", v, "\n\n")); + + if (v && ...(0, bool) == true) + { + v = strreplace("\\", "/", v); + if (whichpack(v) == "") + return string_null; + } + + return v; +} + void WarpZone_PostInitialize_Callback() { // create waypoint links for warpzones @@ -393,6 +465,37 @@ void WarpZone_PostInitialize_Callback() delete(tracetest_ent); } +/** engine callback */ +void URI_Get_Callback(float id, float status, string data) +{ + if(url_URI_Get_Callback(id, status, data)) + { + // handled + } + else if (id == URI_GET_DISCARD) + { + // discard + } + else if (id >= URI_GET_CURL && id <= URI_GET_CURL_END) + { + // sv_cmd curl + Curl_URI_Get_Callback(id, status, data); + } + else if (id >= URI_GET_IPBAN && id <= URI_GET_IPBAN_END) + { + // online ban list + OnlineBanList_URI_Get_Callback(id, status, data); + } + else if (MUTATOR_CALLHOOK(URI_GetCallback, id, status, data)) + { + // handled by a mutator + } + else + { + LOG_INFO("Received HTTP request data for an invalid id ", ftos(id), "."); + } +} + /* ================== main