X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fserver%2Fbot%2Fwaypoints.qh;h=8e0dd0fe627e07c1ecfc689da28454cf8280e8c9;hb=fefc5a02e121922a89f680daf3ad58259896f174;hp=5a75551d2452652383a62728383141633b412c97;hpb=105c4e2c93cadac6c8b09a998333e2f5fe11a533;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/server/bot/waypoints.qh b/qcsrc/server/bot/waypoints.qh index 5a75551d2..8e0dd0fe6 100644 --- a/qcsrc/server/bot/waypoints.qh +++ b/qcsrc/server/bot/waypoints.qh @@ -1,12 +1,17 @@ +#ifndef WAYPOINTS_H +#define WAYPOINTS_H /* * Globals and Fields */ -const float WAYPOINTFLAG_GENERATED = 8388608; -const float WAYPOINTFLAG_ITEM = 4194304; -const float WAYPOINTFLAG_TELEPORT = 2097152; -const float WAYPOINTFLAG_NORELINK = 1048576; -const float WAYPOINTFLAG_PERSONAL = 524288; +const int WAYPOINTFLAG_GENERATED = BIT(23); +const int WAYPOINTFLAG_ITEM = BIT(22); +const int WAYPOINTFLAG_TELEPORT = BIT(21); +const int WAYPOINTFLAG_NORELINK = BIT(20); +const int WAYPOINTFLAG_PERSONAL = BIT(19); +const int WAYPOINTFLAG_PROTECTED = BIT(18); // Useless WP detection never kills these. +const int WAYPOINTFLAG_USEFUL = BIT(17); // Useless WP detection temporary flag. +const int WAYPOINTFLAG_DEAD_END = BIT(16); // Useless WP detection temporary flag. // fields you can query using prvm_global server to get some statistics about waypoint linking culling float relink_total, relink_walkculled, relink_pvsculled, relink_lengthculled; @@ -24,7 +29,8 @@ float botframe_cachedwaypointlinks; .float wp16mincost, wp17mincost, wp18mincost, wp19mincost, wp20mincost, wp21mincost, wp22mincost, wp23mincost; .float wp24mincost, wp25mincost, wp26mincost, wp27mincost, wp28mincost, wp29mincost, wp30mincost, wp31mincost; -.float wpfire, wpcost, wpconsidered, wpisbox, wpflags, wplinked, wphardwired; +.float wpfire, wpcost, wpconsidered, wpisbox, wplinked, wphardwired; +.int wpflags; .vector wpnearestpoint; @@ -32,7 +38,7 @@ float botframe_cachedwaypointlinks; * Functions */ -void spawnfunc_waypoint(); +spawnfunc(waypoint); void waypoint_addlink(entity from, entity to); void waypoint_think(); void waypoint_clearlinks(entity wp); @@ -48,6 +54,7 @@ void waypoint_saveall(); void waypoint_spawnforitem_force(entity e, vector org); void waypoint_spawnforitem(entity e); void waypoint_spawnforteleporter(entity e, vector destination, float timetaken); +void waypoint_spawnforteleporter_v(entity e, vector org, vector destination, float timetaken); void botframe_showwaypointlinks(); float waypoint_loadall(); @@ -59,3 +66,4 @@ entity waypoint_spawnpersonal(vector position); vector waypoint_fixorigin(vector position); void botframe_autowaypoints(); +#endif