]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/bot/api.qh
7c7608a54ea01d866bbea2885b0dcbc341b4bc6e
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / bot / api.qh
1 #pragma once
2
3 #include <server/defs.qh>
4 #include <common/weapons/_all.qh>
5 #include <common/physics/player.qh>
6
7 const int WAYPOINTFLAG_GENERATED = BIT(23);
8 const int WAYPOINTFLAG_ITEM = BIT(22);
9 const int WAYPOINTFLAG_TELEPORT = BIT(21); // teleports, warpzones and jumppads
10 const int WAYPOINTFLAG_NORELINK = BIT(20);
11 const int WAYPOINTFLAG_PERSONAL = BIT(19);
12 const int WAYPOINTFLAG_PROTECTED = BIT(18);  // Useless WP detection never kills these.
13 const int WAYPOINTFLAG_USEFUL = BIT(17);  // Useless WP detection temporary flag.
14 const int WAYPOINTFLAG_DEAD_END = BIT(16);  // Useless WP detection temporary flag.
15 const int WAYPOINTFLAG_LADDER = BIT(15);
16 const int WAYPOINTFLAG_JUMP = BIT(14);
17 const int WAYPOINTFLAG_CUSTOM_JP = BIT(13);  // jumppad with different destination waypoint (changed in the editor)
18 const int WAYPOINTFLAG_CROUCH = BIT(12);
19
20 entity kh_worldkeylist;
21 .entity kh_worldkeynext;
22
23 float bot_custom_weapon;
24 float bot_weapons_close[Weapons_MAX];
25 float bot_weapons_far[Weapons_MAX];
26 float bot_weapons_mid[Weapons_MAX];
27 float skill;
28
29 .float bot_tracewalk_time;
30 .float bot_attack;
31 .float bot_dodgerating;
32 .float bot_dodge;
33 .float bot_forced_team;
34 .float bot_moveskill; // moving technique
35 .float bot_pickup;
36 .float(entity player, entity item) bot_pickupevalfunc;
37 .string cleanname;
38 .float havocbot_role_timeout;
39 .void(entity this) havocbot_role;
40 .void(entity this) havocbot_previous_role;
41 .float isbot; // true if this client is actually a bot
42 .float lastteleporttime;
43 .vector lastteleport_origin;
44 .float navigation_hasgoals;
45 .float nearestwaypointtimeout;
46 .entity nearestwaypoint;
47 .float speed;
48 .entity wp00, wp01, wp02, wp03, wp04, wp05, wp06, wp07, wp08, wp09, wp10, wp11, wp12, wp13, wp14, wp15;
49 .entity wp16, wp17, wp18, wp19, wp20, wp21, wp22, wp23, wp24, wp25, wp26, wp27, wp28, wp29, wp30, wp31;
50 .float wp00mincost, wp01mincost, wp02mincost, wp03mincost, wp04mincost, wp05mincost, wp06mincost, wp07mincost;
51 .float wp08mincost, wp09mincost, wp10mincost, wp11mincost, wp12mincost, wp13mincost, wp14mincost, wp15mincost;
52 .float wp16mincost, wp17mincost, wp18mincost, wp19mincost, wp20mincost, wp21mincost, wp22mincost, wp23mincost;
53 .float wp24mincost, wp25mincost, wp26mincost, wp27mincost, wp28mincost, wp29mincost, wp30mincost, wp31mincost;
54 .float wpconsidered;
55 .float wpcost;
56 .int wpflags;
57 .entity wphw00, wphw01, wphw02, wphw03, wphw04, wphw05, wphw06, wphw07;
58
59 bool bot_aim(entity this, .entity weaponentity, float shotspeed, float shotspeedupward, float maxshottime, float applygravity);
60 void bot_aim_reset(entity this);
61 void bot_clientconnect(entity this);
62 void bot_clientdisconnect(entity this);
63 void bot_cmdhelp(string scmd);
64 void bot_endgame();
65 bool bot_fixcount();
66 void bot_list_commands();
67 void bot_queuecommand(entity bot, string cmdstring);
68 void bot_clear(entity this);
69 void bot_relinkplayerlist();
70 void bot_resetqueues();
71 void bot_serverframe();
72 bool bot_shouldattack(entity this, entity e);
73 void bot_think(entity this);
74
75 entity find_bot_by_name(string name);
76 entity find_bot_by_number(float number);
77
78 void havocbot_goalrating_enemyplayers(entity this, float ratingscale, vector org, float sradius);
79 void havocbot_goalrating_items(entity this, float ratingscale, vector org, float sradius);
80 void havocbot_goalrating_waypoints(entity this, float ratingscale, vector org, float sradius);
81
82 bool havocbot_goalrating_item_pickable_check_players(entity this, vector org, entity item, vector item_org);
83
84 vector havocbot_middlepoint;
85 float havocbot_middlepoint_radius;
86 float havocbot_symmetry_axis_m;
87 float havocbot_symmetry_axis_q;
88 float havocbot_symmetry_origin_order;
89
90 .float goalentity_lock_timeout;
91 .float ignoregoaltime;
92 .entity ignoregoal;
93
94 .entity bot_basewaypoint;
95 .bool navigation_dynamicgoal;
96 void navigation_dynamicgoal_init(entity this, bool initially_static);
97 void navigation_dynamicgoal_set(entity this, entity dropper);
98 void navigation_dynamicgoal_unset(entity this);
99 entity navigation_findnearestwaypoint(entity ent, float walkfromwp);
100 void navigation_goalrating_end(entity this);
101 void navigation_goalrating_start(entity this);
102 void navigation_goalrating_timeout_set(entity this);
103 void navigation_goalrating_timeout_force(entity this);
104 void navigation_goalrating_timeout_expire(entity this, float seconds);
105 bool navigation_goalrating_timeout(entity this);
106 void navigation_goalrating_timeout_extend_if_needed(entity this, float seconds);
107 bool navigation_goalrating_timeout_can_be_anticipated(entity this);
108 void navigation_markroutes(entity this, entity fixed_source_waypoint);
109 void navigation_markroutes_inverted(entity fixed_source_waypoint);
110 void navigation_routerating(entity this, entity e, float f, float rangebias);
111
112 vector get_closer_dest(entity ent, vector org);
113
114 void set_tracewalk_dest(entity ent, vector org, bool fix_player_dest);
115 vector set_tracewalk_dest_2(entity ent, vector org);
116 bool tracewalk(entity e, vector start, vector m1, vector m2, vector end, float end_height, float movemode);
117
118 void waypoint_remove_fromeditor(entity pl);
119 void waypoint_remove(entity wp);
120 void waypoint_saveall();
121 void waypoint_schedulerelinkall();
122 void waypoint_schedulerelink(entity wp);
123 void waypoint_spawnforitem(entity e);
124 void waypoint_spawnforitem_force(entity e, vector org);
125 void waypoint_spawnforteleporter(entity e, vector destination, float timetaken, entity tracetest_ent);
126 void waypoint_spawnforteleporter_wz(entity e, entity tracetest_ent);
127 void waypoint_spawn_fromeditor(entity pl, bool at_crosshair, bool is_jump_wp, bool is_crouch_wp);
128 entity waypoint_spawn(vector m1, vector m2, float f);
129 void waypoint_unreachable(entity pl);
130 void waypoint_start_hardwiredlink(entity pl);
131
132 void waypoint_getSymmetricalOrigin_cmd(entity caller, bool save, int arg_idx);
133 void waypoint_getSymmetricalAxis_cmd(entity caller, bool save, int arg_idx);