X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fserver%2Frace.qc;h=ef82cc3d603c6751f6811bcdab5a75353ade2268;hb=c879eb771ea22f97a56cc1c1aaf5487c40cf9e3d;hp=d171dc6e03b4ef25780addc3b543e087da3405ed;hpb=b834eab77489d98d5d722d67c8a96cf6c3549436;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/server/race.qc b/qcsrc/server/race.qc index d171dc6e0..ef82cc3d6 100644 --- a/qcsrc/server/race.qc +++ b/qcsrc/server/race.qc @@ -15,6 +15,9 @@ #include "../lib/warpzone/common.qh" #include "../common/mutators/mutator/waypoints/waypointsprites.qh" +IntrusiveList g_race_targets; +STATIC_INIT(g_race_targets) { g_race_targets = IL_NEW(); } + void race_InitSpectator() { if(g_race_qualifying) @@ -545,38 +548,11 @@ void race_ClearTime(entity e) }); } -void dumpsurface(entity e) -{ - float n, si, ni; - vector norm, vec; - LOG_INFO("Surfaces of ", etos(e), ":\n"); - - LOG_INFO("TEST = ", ftos(getsurfacenearpoint(e, '0 0 0')), "\n"); - - for(si = 0; ; ++si) - { - n = getsurfacenumpoints(e, si); - if(n <= 0) - break; - LOG_INFO(" Surface ", ftos(si), ":\n"); - norm = getsurfacenormal(e, si); - LOG_INFO(" Normal = ", vtos(norm), "\n"); - for(ni = 0; ni < n; ++ni) - { - vec = getsurfacepoint(e, si, ni); - LOG_INFO(" Point ", ftos(ni), " = ", vtos(vec), " (", ftos(norm * vec), ")\n"); - } - } -} - void checkpoint_passed(entity this, entity player) { if(player.personal && autocvar_g_allow_checkpoints) return; // practice mode! - string oldmsg; - entity cp; - if(player.classname == "porto") { // do not allow portalling through checkpoints @@ -585,6 +561,8 @@ void checkpoint_passed(entity this, entity player) return; } + string oldmsg; // used twice + /* * Trigger targets */ @@ -613,30 +591,37 @@ void checkpoint_passed(entity this, entity player) this.race_checkpoint = player.race_checkpoint; } - float largest_cp_id = 0; - float cp_amount = 0; - for(cp = NULL; (cp = find(cp, classname, "target_checkpoint"));) + int cp_amount = 0, largest_cp_id = 0; + IL_EACH(g_race_targets, it.classname == "target_checkpoint", { cp_amount += 1; - if(cp.race_checkpoint > largest_cp_id) // update the finish id if someone hit a new checkpoint + if(it.race_checkpoint > largest_cp_id) // update the finish id if someone hit a new checkpoint { - largest_cp_id = cp.race_checkpoint; - for(cp = NULL; (cp = find(cp, classname, "target_stopTimer"));) - cp.race_checkpoint = largest_cp_id + 1; // finish line - race_highest_checkpoint = largest_cp_id + 1; - race_timed_checkpoint = largest_cp_id + 1; - - for(cp = NULL; (cp = find(cp, classname, "target_checkpoint"));) + if(!largest_cp_id) { - if(cp.race_checkpoint == -2) // set defragcpexists to -1 so that the cp id file will be rewritten when someone finishes - defragcpexists = -1; + IL_EACH(g_race_targets, it.classname == "target_checkpoint", + { + if(it.race_checkpoint == -2) // set defragcpexists to -1 so that the cp id file will be rewritten when someone finishes + defragcpexists = -1; + }); } + + largest_cp_id = it.race_checkpoint; + IL_EACH(g_race_targets, it.classname == "target_stopTimer", + { + it.race_checkpoint = largest_cp_id + 1; // finish line + }); + race_highest_checkpoint = largest_cp_id + 1; + race_timed_checkpoint = largest_cp_id + 1; } - } - if(cp_amount == 0) + }); + + if(!cp_amount) { - for(cp = NULL; (cp = find(cp, classname, "target_stopTimer"));) - cp.race_checkpoint = 1; + IL_EACH(g_race_targets, it.classname == "target_stopTimer", + { + it.race_checkpoint = 1; + }); race_highest_checkpoint = 1; race_timed_checkpoint = 1; } @@ -692,8 +677,10 @@ void checkpoint_passed(entity this, entity player) defragcpexists = fh = fopen(strcat("maps/", GetMapname(), ".defragcp"), FILE_WRITE); if(fh >= 0) { - for(cp = NULL; (cp = find(cp, classname, "target_checkpoint"));) - fputs(fh, strcat(cp.targetname, " ", ftos(cp.race_checkpoint), "\n")); + IL_EACH(g_race_targets, it.classname == "target_checkpoint", + { + fputs(fh, strcat(it.targetname, " ", ftos(it.race_checkpoint), "\n")); + }); } fclose(fh); } @@ -725,9 +712,13 @@ void checkpoint_use(entity this, entity actor, entity trigger) bool race_waypointsprite_visible_for_player(entity this, entity player, entity view) { - if(view.race_checkpoint == -1 || this.owner.race_checkpoint == -2) + entity own = this.owner; + if(this.realowner) + own = this.realowner; // target support + + if(view.race_checkpoint == -1 || own.race_checkpoint == -2) return true; - else if(view.race_checkpoint == this.owner.race_checkpoint) + else if(view.race_checkpoint == own.race_checkpoint) return true; else return false; @@ -811,19 +802,37 @@ void trigger_race_checkpoint_verify(entity this) g_race_qualifying = qual; + IL_EACH(g_race_targets, true, + { + entity cpt = it; + FOREACH_ENTITY_STRING(target, cpt.targetname, + { + vector org = (it.absmin + it.absmax) * 0.5; + if(cpt.race_checkpoint == 0) + WaypointSprite_SpawnFixed(WP_RaceStart, org, it, sprite, RADARICON_NONE); + else + WaypointSprite_SpawnFixed(WP_RaceCheckpoint, org, it, sprite, RADARICON_NONE); + + it.sprite.realowner = cpt; + it.sprite.waypointsprite_visible_for_player = race_waypointsprite_visible_for_player; + }); + }); + if (race_timed_checkpoint) { if (defrag_ents) { - for (entity cp = NULL; (cp = find(cp, classname, "target_startTimer"));) { - WaypointSprite_UpdateSprites(cp.sprite, WP_RaceStart, WP_Null, WP_Null); - } - for (entity cp = NULL; (cp = find(cp, classname, "target_stopTimer"));) { - WaypointSprite_UpdateSprites(cp.sprite, WP_RaceFinish, WP_Null, WP_Null); - } - for (entity cp = NULL; (cp = find(cp, classname, "target_checkpoint"));) { - if (cp.race_checkpoint == -2) { // something's wrong with the defrag cp file or it has not been written yet, set defragcpexists to -1 so that it will be rewritten when someone finishes - defragcpexists = -1; - } - } + IL_EACH(g_race_targets, true, + { + entity cpt = it; + if(it.classname == "target_startTimer" || it.classname == "target_stopTimer") { + FOREACH_ENTITY_STRING(target, cpt.targetname, { + WaypointSprite_UpdateSprites(it.sprite, ((cpt.classname == "target_startTimer") ? WP_RaceStart : WP_RaceFinish), WP_Null, WP_Null); + }); + } + if(it.classname == "target_checkpoint") { + if(it.race_checkpoint == -2) + defragcpexists = -1; // something's wrong with the defrag cp file or it has not been written yet, set defragcpexists to -1 so that it will be rewritten when someone finishes + } + }); if (defragcpexists != -1) { float largest_cp_id = 0; for (entity cp = NULL; (cp = find(cp, classname, "target_checkpoint"));) { @@ -926,7 +935,7 @@ spawnfunc(trigger_race_checkpoint) o = (this.absmin + this.absmax) * 0.5; tracebox(o, PL_MIN_CONST, PL_MAX_CONST, o - '0 0 1' * (o.z - this.absmin.z), MOVE_NORMAL, this); waypoint_spawnforitem_force(this, trace_endpos); - this.nearestwaypointtimeout = time + 1000000000; + this.nearestwaypointtimeout = -1; if(this.message == "") this.message = "went backwards"; @@ -985,7 +994,7 @@ spawnfunc(target_checkpoint) // defrag entity org = (this.absmin + this.absmax) * 0.5; tracebox(org, PL_MIN_CONST, PL_MAX_CONST, org - '0 0 1' * (org.z - this.absmin.z), MOVE_NORMAL, this); waypoint_spawnforitem_force(this, trace_endpos); - this.nearestwaypointtimeout = time + 1000000000; + this.nearestwaypointtimeout = -1; } if(this.message == "") @@ -1002,12 +1011,7 @@ spawnfunc(target_checkpoint) // defrag entity race_timed_checkpoint = 1; - if(this.race_checkpoint == 0) - WaypointSprite_SpawnFixed(WP_RaceStart, org, this, sprite, RADARICON_NONE); - else - WaypointSprite_SpawnFixed(WP_RaceCheckpoint, org, this, sprite, RADARICON_NONE); - - this.sprite.waypointsprite_visible_for_player = race_waypointsprite_visible_for_player; + IL_PUSH(g_race_targets, this); InitializeEntity(this, trigger_race_checkpoint_verify, INITPRIO_FINDTARGET); }