4 #include "../../dpdefs/progsdefs.qh"
5 #include "../../dpdefs/dpextensions.qh"
6 #include "../../warpzonelib/common.qh"
7 #include "../../warpzonelib/util_server.qh"
8 #include "../../common/constants.qh"
9 #include "../../common/teams.qh"
10 #include "../../common/util.qh"
11 #include "../../common/weapons/weapons.qh"
12 #include "../weapons/accuracy.qh"
13 #include "../t_items.qh"
14 #include "../autocvars.qh"
15 #include "../constants.qh"
17 #include "../mutators/mutators_include.qh"
18 #include "../campaign.qh"
19 #include "../../common/mapinfo.qh"
20 #include "../../csqcmodellib/sv_model.qh"
21 #include "../antilag.qh"
26 #include "navigation.qh"
27 #include "waypoints.qh"
30 #include "navigation.qc"
31 #include "waypoints.qc"
32 #include "scripting.qc"
34 #include "havocbot/havocbot.qc"
42 currentbots = currentbots + 1;
45 bot_setnameandstuff();
55 if (self.bot_nextthink > time)
58 self.flags &= ~FL_GODMODE;
60 self.flags |= FL_GODMODE;
62 self.bot_nextthink = self.bot_nextthink + autocvar_bot_ai_thinkinterval * pow(0.5, self.bot_aiskill);
63 //if (self.bot_painintensity > 0)
64 // self.bot_painintensity = self.bot_painintensity - (skill + 1) * 40 * frametime;
66 //self.bot_painintensity = self.bot_painintensity + self.bot_oldhealth - self.health;
67 //self.bot_painintensity = bound(0, self.bot_painintensity, 100);
69 if (!IS_PLAYER(self) || (autocvar_g_campaign && !campaign_bots_may_start))
71 self.bot_nextthink = time + 0.5;
77 self.v_angle = self.angles;
79 self.fixangle = false;
84 self.dmg_inflictor = world;
86 // calculate an aiming latency based on the skill setting
87 // (simulated network latency + naturally delayed reflexes)
88 //self.ping = 0.7 - bound(0, 0.05 * skill, 0.5); // moved the reflexes to bot_aimdir (under the name 'think')
89 // minimum ping 20+10 random
90 self.ping = bound(0,0.07 - bound(0, (skill + self.bot_pingskill) * 0.005,0.05)+random()*0.01,0.65); // Now holds real lag to server, and higer skill players take a less laggy server
91 // skill 10 = ping 0.2 (adrenaline)
92 // skill 0 = ping 0.7 (slightly drunk)
98 self.BUTTON_ATCK2 = 0;
100 self.BUTTON_CROUCH = 0;
101 self.BUTTON_HOOK = 0;
102 self.BUTTON_INFO = 0;
104 self.BUTTON_CHAT = 0;
107 if (time < game_starttime)
109 // block the bot during the countdown to game start
110 self.movement = '0 0 0';
111 self.bot_nextthink = game_starttime;
115 // if dead, just wait until we can respawn
118 if (self.deadflag == DEAD_DEAD)
120 self.BUTTON_JUMP = 1; // press jump to respawn
121 self.bot_strategytime = 0;
124 else if(self.aistatus & AI_STATUS_STUCK)
125 navigation_unstuck();
127 // now call the current bot AI (havocbot for example)
131 void bot_setnameandstuff()
134 float file, tokens, prio;
137 string bot_name, bot_model, bot_skin, bot_shirt, bot_pants;
138 string name, prefix, suffix;
140 if(autocvar_g_campaign)
147 prefix = autocvar_bot_prefix;
148 suffix = autocvar_bot_suffix;
151 file = fopen(autocvar_bot_config_file, FILE_READ);
155 print(strcat("Error: Can not open the bot configuration file '",autocvar_bot_config_file,"'\n"));
160 RandomSelection_Init();
161 while((readfile = fgets(file)))
163 if(substring(readfile, 0, 2) == "//")
165 if(substring(readfile, 0, 1) == "#")
167 tokens = tokenizebyseparator(readfile, "\t");
181 RandomSelection_Add(world, 0, readfile, 1, prio);
183 readfile = RandomSelection_chosen_string;
187 tokens = tokenizebyseparator(readfile, "\t");
188 if(argv(0) != "") bot_name = argv(0);
189 else bot_name = "Bot";
191 if(argv(1) != "") bot_model = argv(1);
194 if(argv(2) != "") bot_skin = argv(2);
197 if(argv(3) != "" && stof(argv(3)) >= 0) bot_shirt = argv(3);
198 else bot_shirt = ftos(floor(random() * 15));
200 if(argv(4) != "" && stof(argv(4)) >= 0) bot_pants = argv(4);
201 else bot_pants = ftos(floor(random() * 15));
203 self.bot_forced_team = stof(argv(5));
207 #define READSKILL(f,w,r) if(argv(prio) != "") self.f = stof(argv(prio)) * (w); else self.f = (!autocvar_g_campaign) * (2 * random() - 1) * (r) * (w); ++prio
208 //print(bot_name, ": ping=", argv(9), "\n");
210 READSKILL(havocbot_keyboardskill, 0.5, 0.5); // keyboard skill
211 READSKILL(bot_moveskill, 2, 0); // move skill
212 READSKILL(bot_dodgeskill, 2, 0); // dodge skill
214 READSKILL(bot_pingskill, 0.5, 0); // ping skill
216 READSKILL(bot_weaponskill, 2, 0); // weapon skill
217 READSKILL(bot_aggresskill, 1, 0); // aggre skill
218 READSKILL(bot_rangepreference, 1, 0); // read skill
220 READSKILL(bot_aimskill, 2, 0); // aim skill
221 READSKILL(bot_offsetskill, 2, 0.5); // offset skill
222 READSKILL(bot_mouseskill, 1, 0.5); // mouse skill
224 READSKILL(bot_thinkskill, 1, 0.5); // think skill
225 READSKILL(bot_aiskill, 2, 0); // "ai" skill
227 self.bot_config_loaded = true;
229 // this is really only a default, JoinBestTeam is called later
230 setcolor(self, stof(bot_shirt) * 16 + stof(bot_pants));
231 self.bot_preferredcolors = self.clientcolors;
234 if (autocvar_bot_usemodelnames)
239 // number bots with identical names
245 if(p.cleanname == name)
249 self.netname = self.netname_freeme = strzone(strcat(prefix, name, "(", ftos(i), ")", suffix));
251 self.netname = self.netname_freeme = strzone(strcat(prefix, name, suffix));
253 self.cleanname = strzone(name);
255 // pick the model and skin
256 if(substring(bot_model, -4, 1) != ".")
257 bot_model = strcat(bot_model, ".iqm");
258 self.playermodel = self.playermodel_freeme = strzone(strcat("models/player/", bot_model));
259 self.playerskin = self.playerskin_freeme = strzone(bot_skin);
261 self.cvar_cl_accuracy_data_share = 1; // share the bots weapon accuracy data with the world
262 self.cvar_cl_accuracy_data_receive = 0; // don't receive any weapon accuracy data
265 void bot_custom_weapon_priority_setup()
269 bot_custom_weapon = false;
271 if( autocvar_bot_ai_custom_weapon_priority_far == "" ||
272 autocvar_bot_ai_custom_weapon_priority_mid == "" ||
273 autocvar_bot_ai_custom_weapon_priority_close == "" ||
274 autocvar_bot_ai_custom_weapon_priority_distances == ""
279 tokens = tokenizebyseparator(autocvar_bot_ai_custom_weapon_priority_distances," ");
284 bot_distance_far = stof(argv(0));
285 bot_distance_close = stof(argv(1));
287 if(bot_distance_far < bot_distance_close){
288 bot_distance_far = stof(argv(1));
289 bot_distance_close = stof(argv(0));
292 // Initialize list of weapons
293 bot_weapons_far[0] = -1;
294 bot_weapons_mid[0] = -1;
295 bot_weapons_close[0] = -1;
297 // Parse far distance weapon priorities
298 tokens = tokenizebyseparator(W_NumberWeaponOrder(autocvar_bot_ai_custom_weapon_priority_far)," ");
301 for(i=0; i < tokens && c < WEP_COUNT; ++i){
303 if ( w >= WEP_FIRST && w <= WEP_LAST) {
304 bot_weapons_far[c] = w;
309 bot_weapons_far[c] = -1;
311 // Parse mid distance weapon priorities
312 tokens = tokenizebyseparator(W_NumberWeaponOrder(autocvar_bot_ai_custom_weapon_priority_mid)," ");
315 for(i=0; i < tokens && c < WEP_COUNT; ++i){
317 if ( w >= WEP_FIRST && w <= WEP_LAST) {
318 bot_weapons_mid[c] = w;
323 bot_weapons_mid[c] = -1;
325 // Parse close distance weapon priorities
326 tokens = tokenizebyseparator(W_NumberWeaponOrder(autocvar_bot_ai_custom_weapon_priority_close)," ");
329 for(i=0; i < tokens && i < WEP_COUNT; ++i){
331 if ( w >= WEP_FIRST && w <= WEP_LAST) {
332 bot_weapons_close[c] = w;
337 bot_weapons_close[c] = -1;
339 bot_custom_weapon = true;
345 //dprint("bot_endgame\n");
349 setcolor(e, e.bot_preferredcolors);
352 // if dynamic waypoints are ever implemented, save them here
355 void bot_relinkplayerlist()
361 player_list = e = findchainflags(flags, FL_CLIENT);
366 player_count = player_count + 1;
367 e.nextplayer = e.chain;
368 if (IS_BOT_CLIENT(e))
375 bot_list.nextbot = world;
378 currentbots = currentbots + 1;
382 dprint(strcat("relink: ", ftos(currentbots), " bots seen.\n"));
383 bot_strategytoken = bot_list;
384 bot_strategytoken_taken = true;
387 void bot_clientdisconnect()
389 if (!IS_BOT_CLIENT(self))
391 bot_clearqueue(self);
393 strunzone(self.cleanname);
394 if(self.netname_freeme)
395 strunzone(self.netname_freeme);
396 if(self.playermodel_freeme)
397 strunzone(self.playermodel_freeme);
398 if(self.playerskin_freeme)
399 strunzone(self.playerskin_freeme);
400 self.cleanname = string_null;
401 self.netname_freeme = string_null;
402 self.playermodel_freeme = string_null;
403 self.playerskin_freeme = string_null;
404 if(self.bot_cmd_current)
405 remove(self.bot_cmd_current);
406 if(bot_waypoint_queue_owner==self)
407 bot_waypoint_queue_owner = world;
410 void bot_clientconnect()
412 if (!IS_BOT_CLIENT(self))
414 self.bot_preferredcolors = self.clientcolors;
415 self.bot_nextthink = time - random();
416 self.lag_func = bot_lagfunc;
418 self.createdtime = self.bot_nextthink;
420 if(!self.bot_config_loaded) // This is needed so team overrider doesn't break between matches
421 bot_setnameandstuff();
423 if(self.bot_forced_team==1)
424 self.team = NUM_TEAM_1;
425 else if(self.bot_forced_team==2)
426 self.team = NUM_TEAM_2;
427 else if(self.bot_forced_team==3)
428 self.team = NUM_TEAM_3;
429 else if(self.bot_forced_team==4)
430 self.team = NUM_TEAM_4;
432 JoinBestTeam(self, false, true);
437 void bot_removefromlargestteam()
439 float besttime, bestcount, thiscount;
441 CheckAllowedTeams(world);
442 GetTeamCounts(world);
443 head = findchainfloat(isbot, true);
447 besttime = head.createdtime;
451 if(head.team == NUM_TEAM_1)
453 else if(head.team == NUM_TEAM_2)
455 else if(head.team == NUM_TEAM_3)
457 else if(head.team == NUM_TEAM_4)
461 if (thiscount > bestcount)
463 bestcount = thiscount;
464 besttime = head.createdtime;
467 else if (thiscount == bestcount && besttime < head.createdtime)
469 besttime = head.createdtime;
474 currentbots = currentbots - 1;
478 void bot_removenewest()
485 bot_removefromlargestteam();
489 head = findchainfloat(isbot, true);
493 besttime = head.createdtime;
496 if (besttime < head.createdtime)
498 besttime = head.createdtime;
503 currentbots = currentbots - 1;
507 void autoskill(float factor)
515 FOR_EACH_PLAYER(head)
517 if(IS_REAL_CLIENT(head))
518 bestplayer = max(bestplayer, head.totalfrags - head.totalfrags_lastcheck);
520 bestbot = max(bestbot, head.totalfrags - head.totalfrags_lastcheck);
523 dprint("autoskill: best player got ", ftos(bestplayer), ", ");
524 dprint("best bot got ", ftos(bestbot), "; ");
525 if(bestbot < 0 || bestplayer < 0)
527 dprint("not doing anything\n");
528 // don't return, let it reset all counters below
530 else if(bestbot <= bestplayer * factor - 2)
532 if(autocvar_skill < 17)
534 dprint("2 frags difference, increasing skill\n");
535 cvar_set("skill", ftos(autocvar_skill + 1));
536 bprint("^2SKILL UP!^7 Now at level ", ftos(autocvar_skill), "\n");
539 else if(bestbot >= bestplayer * factor + 2)
541 if(autocvar_skill > 0)
543 dprint("2 frags difference, decreasing skill\n");
544 cvar_set("skill", ftos(autocvar_skill - 1));
545 bprint("^1SKILL DOWN!^7 Now at level ", ftos(autocvar_skill), "\n");
550 dprint("not doing anything\n");
552 // don't reset counters, wait for them to accumulate
555 FOR_EACH_PLAYER(head)
556 head.totalfrags_lastcheck = head.totalfrags;
559 void bot_calculate_stepheightvec(void)
561 stepheightvec = autocvar_sv_stepheight * '0 0 1';
562 jumpstepheightvec = stepheightvec +
563 ((autocvar_sv_jumpvelocity * autocvar_sv_jumpvelocity) / (2 * autocvar_sv_gravity)) * '0 0 0.85';
564 // 0.75 factor is for safety to make the jumps easy
570 float realplayers, bots, activerealplayers;
572 activerealplayers = 0;
575 FOR_EACH_REALCLIENT(head)
577 if(IS_PLAYER(head) || g_lms || head.caplayer == 1)
582 // add/remove bots if needed to make sure there are at least
583 // minplayers+bot_number, or remove all bots if no one is playing
584 // But don't remove bots immediately on level change, as the real players
585 // usually haven't rejoined yet
586 bots_would_leave = false;
587 if (teamplay && autocvar_bot_vs_human && (c3==-1 && c4==-1))
588 bots = min(ceil(fabs(autocvar_bot_vs_human) * activerealplayers), maxclients - realplayers);
589 else if ((realplayers || autocvar_bot_join_empty || (currentbots > 0 && time < 5)))
591 float realminplayers, minplayers;
592 realminplayers = autocvar_minplayers;
593 minplayers = max(0, floor(realminplayers));
595 float realminbots, minbots;
596 realminbots = autocvar_bot_number;
597 minbots = max(0, floor(realminbots));
599 bots = min(max(minbots, minplayers - activerealplayers), maxclients - realplayers);
601 bots_would_leave = true;
605 // if there are no players, remove bots
609 // only add one bot per frame to avoid utter chaos
610 if(time > botframe_nextthink)
612 //dprint(ftos(bots), " ? ", ftos(currentbots), "\n");
613 while (currentbots < bots)
615 if (bot_spawn() == world)
617 bprint("Can not add bot, server full.\n");
621 while (currentbots > bots)
628 void bot_serverframe()
630 if (intermission_running)
636 bot_calculate_stepheightvec();
637 bot_navigation_movemode = ((autocvar_bot_navigation_ignoreplayers) ? MOVE_NOMONSTERS : MOVE_NORMAL);
639 if(time > autoskill_nextthink)
642 a = autocvar_skill_auto;
645 autoskill_nextthink = time + 5;
648 if(time > botframe_nextthink)
651 botframe_nextthink = time + 10;
654 bot_ignore_bots = autocvar_bot_ignore_bots;
656 if(botframe_spawnedwaypoints)
658 if(autocvar_waypoint_benchmark)
662 if (currentbots > 0 || autocvar_g_waypointeditor || autocvar_g_waypointeditor_auto)
663 if (botframe_spawnedwaypoints)
665 if(botframe_cachedwaypointlinks)
667 if(!botframe_loadedforcedlinks)
668 waypoint_load_links_hardwired();
672 // TODO: Make this check cleaner
673 entity wp = findchain(classname, "waypoint");
674 if(time - wp.nextthink > 10)
675 waypoint_save_links();
680 botframe_spawnedwaypoints = true;
682 if(!waypoint_load_links())
683 waypoint_schedulerelinkall();
688 // cycle the goal token from one bot to the next each frame
689 // (this prevents them from all doing spawnfunc_waypoint searches on the same
690 // frame, which causes choppy framerates)
691 if (bot_strategytoken_taken)
693 bot_strategytoken_taken = false;
694 if (bot_strategytoken)
695 bot_strategytoken = bot_strategytoken.nextbot;
696 if (!bot_strategytoken)
697 bot_strategytoken = bot_list;
700 if (botframe_nextdangertime < time)
703 interval = autocvar_bot_ai_dangerdetectioninterval;
704 if (botframe_nextdangertime < time - interval * 1.5)
705 botframe_nextdangertime = time;
706 botframe_nextdangertime = botframe_nextdangertime + interval;
707 botframe_updatedangerousobjects(autocvar_bot_ai_dangerdetectionupdates);
711 if (autocvar_g_waypointeditor)
712 botframe_showwaypointlinks();
714 if (autocvar_g_waypointeditor_auto)
715 botframe_autowaypoints();
717 if(time > bot_cvar_nextthink)
720 bot_custom_weapon_priority_setup();
721 bot_cvar_nextthink = time + 5;