]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/server/bot/navigation.qh
Merge branch 'master' into mand1nga/fix-bot-wandering
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / bot / navigation.qh
index 06bbb85c310101f51b4cf2f799691e9a9fae9837..6355ef70056f0b8c74d9ddd0787e4782dba72f7c 100644 (file)
@@ -35,6 +35,12 @@ float DEBUG_NODE_WARNING        = 2;
 float DEBUG_NODE_FAIL           = 3;
 vector debuglastnode;
 
+entity navigation_wander_owner;        // Owner of the temporary list of goals
+entity navigation_wander_goal;         // Head of the temporary list of goals
+.entity navigation_wander_nextgoal;
+entity navigation_wander_bestgoal;
+float navigation_wander_bestgoalrating;
+
 /*
  * Functions
  */
@@ -60,6 +66,7 @@ void navigation_routerating(entity e, float f, float rangebias);
 void navigation_poptouchedgoals();
 void navigation_goalrating_start();
 void navigation_goalrating_end();
+void navigation_unstuck();
 
 void botframe_updatedangerousobjects(float maxupdate);