X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fxonotic-data.pk3dir.git;a=blobdiff_plain;f=qcsrc%2Fserver%2Fbot%2Fdefault%2Fnavigation.qh;h=07eacc1860f4d4176a77f2a8bfaf07df1ada6e9d;hp=026d326b9e6fba8524b95a73862eb284e3f06d86;hb=1769625e3f13a32117ac8d266524ea5684668cef;hpb=9ce1079a850c81a5f14a150f6a19cad2f51f6032 diff --git a/qcsrc/server/bot/default/navigation.qh b/qcsrc/server/bot/default/navigation.qh index 026d326b9..07eacc186 100644 --- a/qcsrc/server/bot/default/navigation.qh +++ b/qcsrc/server/bot/default/navigation.qh @@ -41,6 +41,9 @@ entity navigation_bestgoal; /* // item it is linked from waypoint it.wpXX (INCOMING link) // links are sorted by their cost (wpXXmincost) +// one of these links is added in game every time a bot heads to an item +// even links that are not walkable are added (marked with a high cost) +// so that bots next time know if they can walk it or not saving a tracewalk call .entity wp00, wp01, wp02, wp03, wp04, wp05, wp06, wp07, wp08, wp09, wp10, wp11, wp12, wp13, wp14, wp15; .entity wp16, wp17, wp18, wp19, wp20, wp21, wp22, wp23, wp24, wp25, wp26, wp27, wp28, wp29, wp30, wp31; @@ -50,9 +53,12 @@ entity navigation_bestgoal; .float wp24mincost, wp25mincost, wp26mincost, wp27mincost, wp28mincost, wp29mincost, wp30mincost, wp31mincost; */ -#define navigation_item_islinked(from_wp, to_item) waypoint_islinked(to_item, from_wp) -#define navigation_item_addlink(from_wp, to_item) \ - waypoint_addlink_customcost(to_item, from_wp, waypoint_getlinkcost(from_wp, to_item)) +#define navigation_item_initlinks_ifneeded(e) MACRO_BEGIN if (!e.wp00) waypoint_clearlinks(e); MACRO_END // initialize wpXXmincost fields +#define navigation_item_getlinknum(to_item, from_wp) waypoint_getlinknum(to_item, from_wp) +#define navigation_item_iswalkablelink(to_item, from_wp) (waypoint_get_assigned_link_cost(to_item, from_wp) < 999) + +#define navigation_item_add_link(from_wp, to_item, walkable) \ + waypoint_addlink_customcost(to_item, from_wp, (walkable ? waypoint_getlinkcost(from_wp, to_item) : 999)) #define TELEPORT_USED(pl, tele_wp) \ boxesoverlap(tele_wp.absmin, tele_wp.absmax, pl.lastteleport_origin + STAT(PL_MIN, pl), pl.lastteleport_origin + STAT(PL_MAX, pl)) @@ -82,6 +88,8 @@ entity bot_waypoint_queue_goal; // Head of the temporary list of goals entity bot_waypoint_queue_bestgoal; float bot_waypoint_queue_bestgoalrating; +const float BOT_BUNNYHOP_WP_DETECTION_RANGE = 100; + .entity bot_basewaypoint; .bool navigation_dynamicgoal; void navigation_dynamicgoal_init(entity this, bool initially_static);