X-Git-Url: https://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fserver%2Fbot%2Fnavigation.qc;h=93e513cab2d177f266f0ee6247d3ac6940279478;hb=786db02b0c9aa618c581b7c3fe7392ad114797d8;hp=5c60050cf1c674fb4f6e8694b346e87d9122857a;hpb=ef7fb74ce9ad83994863a75b8ffd338cad29d68d;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/server/bot/navigation.qc b/qcsrc/server/bot/navigation.qc index 5c60050cf..93e513cab 100644 --- a/qcsrc/server/bot/navigation.qc +++ b/qcsrc/server/bot/navigation.qc @@ -117,7 +117,7 @@ float tracewalk(entity e, vector start, vector m1, vector m2, vector end, float break; } - if not (pointcontents(org + '0 0 1') == CONTENT_EMPTY) + if (!(pointcontents(org + '0 0 1') == CONTENT_EMPTY)) { if(autocvar_bot_debug_tracewalk) debugnodestatus(org, DEBUG_NODE_FAIL); @@ -196,7 +196,7 @@ float tracewalk(entity e, vector start, vector m1, vector m2, vector end, float { float c; c = pointcontents(org + '0 0 1'); - if not(c == CONTENT_WATER || c == CONTENT_LAVA || c == CONTENT_SLIME) + if (!(c == CONTENT_WATER || c == CONTENT_LAVA || c == CONTENT_SLIME)) swimming = FALSE; else continue; @@ -779,7 +779,7 @@ void navigation_routerating(entity e, float f, float rangebias) if(e.flags & FL_ITEM) { - if not(e.flags & FL_WEAPON) + if (!(e.flags & FL_WEAPON)) if(e.nearestwaypoint) search = FALSE; } @@ -903,7 +903,7 @@ void navigation_poptouchedgoals() if(self.aistatus & AI_STATUS_WAYPOINT_PERSONAL_GOING) if(self.goalcurrent.wpflags & WAYPOINTFLAG_PERSONAL && self.goalcurrent.owner==self) { - self.aistatus &~= AI_STATUS_WAYPOINT_PERSONAL_GOING; + self.aistatus &= ~AI_STATUS_WAYPOINT_PERSONAL_GOING; self.aistatus |= AI_STATUS_WAYPOINT_PERSONAL_REACHED; } navigation_poproute(); @@ -950,7 +950,7 @@ void navigation_poptouchedgoals() if(self.aistatus & AI_STATUS_WAYPOINT_PERSONAL_GOING) if(self.goalcurrent.wpflags & WAYPOINTFLAG_PERSONAL && self.goalcurrent.owner==self) { - self.aistatus &~= AI_STATUS_WAYPOINT_PERSONAL_GOING; + self.aistatus &= ~AI_STATUS_WAYPOINT_PERSONAL_GOING; self.aistatus |= AI_STATUS_WAYPOINT_PERSONAL_REACHED; } @@ -965,7 +965,7 @@ void navigation_poptouchedgoals() if(self.aistatus & AI_STATUS_WAYPOINT_PERSONAL_GOING) if(self.goalcurrent.wpflags & WAYPOINTFLAG_PERSONAL && self.goalcurrent.owner==self) { - self.aistatus &~= AI_STATUS_WAYPOINT_PERSONAL_GOING; + self.aistatus &= ~AI_STATUS_WAYPOINT_PERSONAL_GOING; self.aistatus |= AI_STATUS_WAYPOINT_PERSONAL_REACHED; } @@ -997,10 +997,10 @@ void navigation_goalrating_end() bot_debug(strcat("best goal ", self.goalcurrent.classname , "\n")); // If the bot got stuck then try to reach the farthest waypoint - if not (self.navigation_hasgoals) + if (!self.navigation_hasgoals) if (autocvar_bot_wander_enable) { - if not(self.aistatus & AI_STATUS_STUCK) + if (!(self.aistatus & AI_STATUS_STUCK)) { bot_debug(strcat(self.netname, " cannot walk to any goal\n")); self.aistatus |= AI_STATUS_STUCK; @@ -1052,10 +1052,10 @@ void navigation_unstuck() { float search_radius = 1000; - if not(autocvar_bot_wander_enable) + if (!autocvar_bot_wander_enable) return; - if not(bot_waypoint_queue_owner) + if (!bot_waypoint_queue_owner) { bot_debug(strcat(self.netname, " sutck, taking over the waypoints queue\n")); bot_waypoint_queue_owner = self; @@ -1081,14 +1081,14 @@ void navigation_unstuck() } bot_waypoint_queue_goal = bot_waypoint_queue_goal.bot_waypoint_queue_nextgoal; - if not(bot_waypoint_queue_goal) + if (!bot_waypoint_queue_goal) { if (bot_waypoint_queue_bestgoal) { bot_debug(strcat(self.netname, " stuck, reachable waypoint found, heading to it\n")); navigation_routetogoal(bot_waypoint_queue_bestgoal, self.origin); self.bot_strategytime = time + autocvar_bot_ai_strategyinterval; - self.aistatus &~= AI_STATUS_STUCK; + self.aistatus &= ~AI_STATUS_STUCK; } else { @@ -1147,7 +1147,7 @@ void debugresetnodes() void debugnode(vector node) { - if not(IS_PLAYER(self)) + if (!IS_PLAYER(self)) return; if(debuglastnode=='0 0 0')