]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/bot/bot.qh
remove "poor man's autocvars" in sv_main.qc
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / bot / bot.qh
1 /*
2  * Globals and Fields
3  */
4
5 float AI_STATUS_ROAMING                         = 1;    // Bot is just crawling the map. No enemies at sight
6 float AI_STATUS_ATTACKING                       = 2;    // There are enemies at sight
7 float AI_STATUS_RUNNING                         = 4;    // Bot is bunny hopping
8 float AI_STATUS_DANGER_AHEAD                    = 8;    // There is lava/slime/trigger_hurt ahead
9 float AI_STATUS_OUT_JUMPPAD                     = 16;   // Trying to get out of a "vertical" jump pad
10 float AI_STATUS_OUT_WATER                       = 32;   // Trying to get out of water
11 float AI_STATUS_WAYPOINT_PERSONAL_LINKING       = 64;   // Waiting for the personal waypoint to be linked
12 float AI_STATUS_WAYPOINT_PERSONAL_GOING         = 128;  // Going to a personal waypoint
13 float AI_STATUS_WAYPOINT_PERSONAL_REACHED       = 256;  // Personal waypoint reached
14 float AI_STATUS_JETPACK_FLYING                  = 512;
15 float AI_STATUS_JETPACK_LANDING                 = 1024;
16
17 .float isbot; // true if this client is actually a bot
18 .float aistatus;
19
20 // Skill system
21 float skill;
22 float autoskill_nextthink;
23
24 // havocbot_keyboardskill // keyboard movement
25 .float bot_moveskill; // moving technique
26 .float bot_dodgeskill; // dodging
27
28 .float bot_pingskill; // ping offset
29
30 .float bot_weaponskill; // weapon usage skill (combos, e.g.)
31 .float bot_aggresskill; // aggressivity, controls "think before fire" behaviour
32 .float bot_rangepreference; // weapon choice offset for range (>0 = prefer long range earlier "sniper", <0 = prefer short range "spammer")
33
34 .float bot_aimskill; // aim accuracy
35 .float bot_offsetskill; // aim breakage
36 .float bot_mouseskill; // mouse "speed"
37
38 .float bot_thinkskill; // target choice
39 .float bot_aiskill; // strategy choice
40
41 .float totalfrags_lastcheck;
42
43 // Custom weapon priorities
44 float bot_custom_weapon;
45 float bot_distance_far;
46 float bot_distance_close;
47
48 float bot_weapons_far[WEP_MAXCOUNT];
49 float bot_weapons_mid[WEP_MAXCOUNT];
50 float bot_weapons_close[WEP_MAXCOUNT];
51
52 entity bot_list;
53 entity player_list;
54 .entity nextbot;
55 .entity nextplayer;
56 .string cleanname;
57 .string netname_freeme;
58 .string playermodel_freeme;
59 .string playerskin_freeme;
60
61 .float bot_nextthink;
62
63 .float createdtime;
64 .float bot_preferredcolors;
65 .float bot_attack;
66 .float bot_dodge;
67 .float bot_dodgerating;
68
69 .float bot_pickup;
70 .float bot_pickupbasevalue;
71 .float bot_canfire;
72 .float bot_strategytime;
73
74 .float bot_forced_team;
75 .float bot_config_loaded;
76
77 float bot_strategytoken_taken;
78 entity bot_strategytoken;
79
80 float botframe_spawnedwaypoints;
81 float botframe_nextthink;
82 float botframe_nextdangertime;
83 float bot_cvar_nextthink;
84 float bot_ignore_bots; // let bots not attack other bots (only works in non-teamplay)
85
86 /*
87  * Functions
88  */
89
90 entity bot_spawn();
91
92 void bot_think();
93 void bot_setnameandstuff();
94 void bot_custom_weapon_priority_setup();
95 void bot_endgame();
96 void bot_relinkplayerlist();
97 void bot_clientdisconnect();
98 void bot_clientconnect();
99 void bot_removefromlargestteam();
100 void bot_removenewest();
101 void autoskill(float factor);
102 void bot_serverframe();
103
104 .void() bot_ai;
105 .float(entity player, entity item) bot_pickupevalfunc;
106
107 /*
108  * Imports
109  */
110
111 float autocvar_sv_maxspeed;
112
113 void() havocbot_setupbot;
114
115 float c1, c2, c3, c4;
116 void CheckAllowedTeams(entity for_whom); void GetTeamCounts(entity other);
117 float JoinBestTeam(entity pl, float only_return_best, float forcebestteam);