5 #include "navigation.qh"
6 #include "scripting.qh"
7 #include "waypoints.qh"
9 #include "havocbot/havocbot.qh"
10 #include "havocbot/scripting.qh"
12 #include "../antilag.qh"
13 #include "../autocvars.qh"
14 #include "../campaign.qh"
15 #include "../cl_client.qh"
16 #include "../constants.qh"
19 #include "../t_items.qh"
21 #include "../mutators/mutators_include.qh"
23 #include "../weapons/accuracy.qh"
25 #include "../../common/constants.qh"
26 #include "../../common/mapinfo.qh"
27 #include "../../common/teams.qh"
28 #include "../../common/util.qh"
30 #include "../../common/weapons/all.qh"
32 #include "../../csqcmodellib/sv_model.qh"
34 #include "../../dpdefs/dpextensions.qh"
35 #include "../../dpdefs/progsdefs.qh"
37 #include "../../warpzonelib/common.qh"
38 #include "../../warpzonelib/util_server.qh"
42 entity bot = spawnclient();
45 currentbots = currentbots + 1;
47 bot_setnameandstuff();
57 if (self.bot_nextthink > time)
60 self.flags &= ~FL_GODMODE;
62 self.flags |= FL_GODMODE;
64 self.bot_nextthink = self.bot_nextthink + autocvar_bot_ai_thinkinterval * pow(0.5, self.bot_aiskill);
65 //if (self.bot_painintensity > 0)
66 // self.bot_painintensity = self.bot_painintensity - (skill + 1) * 40 * frametime;
68 //self.bot_painintensity = self.bot_painintensity + self.bot_oldhealth - self.health;
69 //self.bot_painintensity = bound(0, self.bot_painintensity, 100);
71 if (!IS_PLAYER(self) || (autocvar_g_campaign && !campaign_bots_may_start))
73 self.bot_nextthink = time + 0.5;
79 self.v_angle = self.angles;
81 self.fixangle = false;
86 self.dmg_inflictor = world;
88 // calculate an aiming latency based on the skill setting
89 // (simulated network latency + naturally delayed reflexes)
90 //self.ping = 0.7 - bound(0, 0.05 * skill, 0.5); // moved the reflexes to bot_aimdir (under the name 'think')
91 // minimum ping 20+10 random
92 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
93 // skill 10 = ping 0.2 (adrenaline)
94 // skill 0 = ping 0.7 (slightly drunk)
100 self.BUTTON_ATCK2 = 0;
101 self.BUTTON_ZOOM = 0;
102 self.BUTTON_CROUCH = 0;
103 self.BUTTON_HOOK = 0;
104 self.BUTTON_INFO = 0;
106 self.BUTTON_CHAT = 0;
109 if (time < game_starttime)
111 // block the bot during the countdown to game start
112 self.movement = '0 0 0';
113 self.bot_nextthink = game_starttime;
117 // if dead, just wait until we can respawn
120 if (self.deadflag == DEAD_DEAD)
122 self.BUTTON_JUMP = 1; // press jump to respawn
123 self.bot_strategytime = 0;
126 else if(self.aistatus & AI_STATUS_STUCK)
127 navigation_unstuck();
129 // now call the current bot AI (havocbot for example)
133 void bot_setnameandstuff()
136 float file, tokens, prio;
139 string bot_name, bot_model, bot_skin, bot_shirt, bot_pants;
140 string name, prefix, suffix;
142 if(autocvar_g_campaign)
149 prefix = autocvar_bot_prefix;
150 suffix = autocvar_bot_suffix;
153 file = fopen(autocvar_bot_config_file, FILE_READ);
157 LOG_INFO(strcat("Error: Can not open the bot configuration file '",autocvar_bot_config_file,"'\n"));
162 RandomSelection_Init();
163 while((readfile = fgets(file)))
165 if(substring(readfile, 0, 2) == "//")
167 if(substring(readfile, 0, 1) == "#")
169 tokens = tokenizebyseparator(readfile, "\t");
183 RandomSelection_Add(world, 0, readfile, 1, prio);
185 readfile = RandomSelection_chosen_string;
189 tokens = tokenizebyseparator(readfile, "\t");
190 if(argv(0) != "") bot_name = argv(0);
191 else bot_name = "Bot";
193 if(argv(1) != "") bot_model = argv(1);
196 if(argv(2) != "") bot_skin = argv(2);
199 if(argv(3) != "" && stof(argv(3)) >= 0) bot_shirt = argv(3);
200 else bot_shirt = ftos(floor(random() * 15));
202 if(argv(4) != "" && stof(argv(4)) >= 0) bot_pants = argv(4);
203 else bot_pants = ftos(floor(random() * 15));
205 self.bot_forced_team = stof(argv(5));
209 #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
210 //print(bot_name, ": ping=", argv(9), "\n");
212 READSKILL(havocbot_keyboardskill, 0.5, 0.5); // keyboard skill
213 READSKILL(bot_moveskill, 2, 0); // move skill
214 READSKILL(bot_dodgeskill, 2, 0); // dodge skill
216 READSKILL(bot_pingskill, 0.5, 0); // ping skill
218 READSKILL(bot_weaponskill, 2, 0); // weapon skill
219 READSKILL(bot_aggresskill, 1, 0); // aggre skill
220 READSKILL(bot_rangepreference, 1, 0); // read skill
222 READSKILL(bot_aimskill, 2, 0); // aim skill
223 READSKILL(bot_offsetskill, 2, 0.5); // offset skill
224 READSKILL(bot_mouseskill, 1, 0.5); // mouse skill
226 READSKILL(bot_thinkskill, 1, 0.5); // think skill
227 READSKILL(bot_aiskill, 2, 0); // "ai" skill
229 self.bot_config_loaded = true;
231 // this is really only a default, JoinBestTeam is called later
232 setcolor(self, stof(bot_shirt) * 16 + stof(bot_pants));
233 self.bot_preferredcolors = self.clientcolors;
236 if (autocvar_bot_usemodelnames)
241 // number bots with identical names
247 if(p.cleanname == name)
251 self.netname = self.netname_freeme = strzone(strcat(prefix, name, "(", ftos(i), ")", suffix));
253 self.netname = self.netname_freeme = strzone(strcat(prefix, name, suffix));
255 self.cleanname = strzone(name);
257 // pick the model and skin
258 if(substring(bot_model, -4, 1) != ".")
259 bot_model = strcat(bot_model, ".iqm");
260 self.playermodel = self.playermodel_freeme = strzone(strcat("models/player/", bot_model));
261 self.playerskin = self.playerskin_freeme = strzone(bot_skin);
263 self.cvar_cl_accuracy_data_share = 1; // share the bots weapon accuracy data with the world
264 self.cvar_cl_accuracy_data_receive = 0; // don't receive any weapon accuracy data
267 void bot_custom_weapon_priority_setup()
271 bot_custom_weapon = false;
273 if( autocvar_bot_ai_custom_weapon_priority_far == "" ||
274 autocvar_bot_ai_custom_weapon_priority_mid == "" ||
275 autocvar_bot_ai_custom_weapon_priority_close == "" ||
276 autocvar_bot_ai_custom_weapon_priority_distances == ""
281 tokens = tokenizebyseparator(autocvar_bot_ai_custom_weapon_priority_distances," ");
286 bot_distance_far = stof(argv(0));
287 bot_distance_close = stof(argv(1));
289 if(bot_distance_far < bot_distance_close){
290 bot_distance_far = stof(argv(1));
291 bot_distance_close = stof(argv(0));
294 // Initialize list of weapons
295 bot_weapons_far[0] = -1;
296 bot_weapons_mid[0] = -1;
297 bot_weapons_close[0] = -1;
299 // Parse far distance weapon priorities
300 tokens = tokenizebyseparator(W_NumberWeaponOrder(autocvar_bot_ai_custom_weapon_priority_far)," ");
303 for(i=0; i < tokens && c < WEP_COUNT; ++i){
305 if ( w >= WEP_FIRST && w <= WEP_LAST) {
306 bot_weapons_far[c] = w;
311 bot_weapons_far[c] = -1;
313 // Parse mid distance weapon priorities
314 tokens = tokenizebyseparator(W_NumberWeaponOrder(autocvar_bot_ai_custom_weapon_priority_mid)," ");
317 for(i=0; i < tokens && c < WEP_COUNT; ++i){
319 if ( w >= WEP_FIRST && w <= WEP_LAST) {
320 bot_weapons_mid[c] = w;
325 bot_weapons_mid[c] = -1;
327 // Parse close distance weapon priorities
328 tokens = tokenizebyseparator(W_NumberWeaponOrder(autocvar_bot_ai_custom_weapon_priority_close)," ");
331 for(i=0; i < tokens && i < WEP_COUNT; ++i){
333 if ( w >= WEP_FIRST && w <= WEP_LAST) {
334 bot_weapons_close[c] = w;
339 bot_weapons_close[c] = -1;
341 bot_custom_weapon = true;
347 //dprint("bot_endgame\n");
351 setcolor(e, e.bot_preferredcolors);
354 // if dynamic waypoints are ever implemented, save them here
357 void bot_relinkplayerlist()
363 player_list = e = findchainflags(flags, FL_CLIENT);
368 player_count = player_count + 1;
369 e.nextplayer = e.chain;
370 if (IS_BOT_CLIENT(e))
377 bot_list.nextbot = world;
380 currentbots = currentbots + 1;
384 LOG_TRACE(strcat("relink: ", ftos(currentbots), " bots seen.\n"));
385 bot_strategytoken = bot_list;
386 bot_strategytoken_taken = true;
389 void bot_clientdisconnect()
391 if (!IS_BOT_CLIENT(self))
393 bot_clearqueue(self);
395 strunzone(self.cleanname);
396 if(self.netname_freeme)
397 strunzone(self.netname_freeme);
398 if(self.playermodel_freeme)
399 strunzone(self.playermodel_freeme);
400 if(self.playerskin_freeme)
401 strunzone(self.playerskin_freeme);
402 self.cleanname = string_null;
403 self.netname_freeme = string_null;
404 self.playermodel_freeme = string_null;
405 self.playerskin_freeme = string_null;
406 if(self.bot_cmd_current)
407 remove(self.bot_cmd_current);
408 if(bot_waypoint_queue_owner==self)
409 bot_waypoint_queue_owner = world;
412 void bot_clientconnect()
414 if (!IS_BOT_CLIENT(self))
416 self.bot_preferredcolors = self.clientcolors;
417 self.bot_nextthink = time - random();
418 self.lag_func = bot_lagfunc;
420 self.createdtime = self.bot_nextthink;
422 if(!self.bot_config_loaded) // This is needed so team overrider doesn't break between matches
423 bot_setnameandstuff();
425 if(self.bot_forced_team==1)
426 self.team = NUM_TEAM_1;
427 else if(self.bot_forced_team==2)
428 self.team = NUM_TEAM_2;
429 else if(self.bot_forced_team==3)
430 self.team = NUM_TEAM_3;
431 else if(self.bot_forced_team==4)
432 self.team = NUM_TEAM_4;
434 JoinBestTeam(self, false, true);
439 void bot_removefromlargestteam()
441 float besttime, bestcount, thiscount;
443 CheckAllowedTeams(world);
444 GetTeamCounts(world);
445 head = findchainfloat(isbot, true);
449 besttime = head.createdtime;
453 if(head.team == NUM_TEAM_1)
455 else if(head.team == NUM_TEAM_2)
457 else if(head.team == NUM_TEAM_3)
459 else if(head.team == NUM_TEAM_4)
463 if (thiscount > bestcount)
465 bestcount = thiscount;
466 besttime = head.createdtime;
469 else if (thiscount == bestcount && besttime < head.createdtime)
471 besttime = head.createdtime;
476 currentbots = currentbots - 1;
480 void bot_removenewest()
487 bot_removefromlargestteam();
491 head = findchainfloat(isbot, true);
495 besttime = head.createdtime;
498 if (besttime < head.createdtime)
500 besttime = head.createdtime;
505 currentbots = currentbots - 1;
509 void autoskill(float factor)
517 FOR_EACH_PLAYER(head)
519 if(IS_REAL_CLIENT(head))
520 bestplayer = max(bestplayer, head.totalfrags - head.totalfrags_lastcheck);
522 bestbot = max(bestbot, head.totalfrags - head.totalfrags_lastcheck);
525 LOG_TRACE("autoskill: best player got ", ftos(bestplayer), ", ");
526 LOG_TRACE("best bot got ", ftos(bestbot), "; ");
527 if(bestbot < 0 || bestplayer < 0)
529 LOG_TRACE("not doing anything\n");
530 // don't return, let it reset all counters below
532 else if(bestbot <= bestplayer * factor - 2)
534 if(autocvar_skill < 17)
536 LOG_TRACE("2 frags difference, increasing skill\n");
537 cvar_set("skill", ftos(autocvar_skill + 1));
538 bprint("^2SKILL UP!^7 Now at level ", ftos(autocvar_skill), "\n");
541 else if(bestbot >= bestplayer * factor + 2)
543 if(autocvar_skill > 0)
545 LOG_TRACE("2 frags difference, decreasing skill\n");
546 cvar_set("skill", ftos(autocvar_skill - 1));
547 bprint("^1SKILL DOWN!^7 Now at level ", ftos(autocvar_skill), "\n");
552 LOG_TRACE("not doing anything\n");
554 // don't reset counters, wait for them to accumulate
557 FOR_EACH_PLAYER(head)
558 head.totalfrags_lastcheck = head.totalfrags;
561 void bot_calculate_stepheightvec(void)
563 stepheightvec = autocvar_sv_stepheight * '0 0 1';
564 jumpstepheightvec = stepheightvec +
565 ((autocvar_sv_jumpvelocity * autocvar_sv_jumpvelocity) / (2 * autocvar_sv_gravity)) * '0 0 0.85';
566 // 0.75 factor is for safety to make the jumps easy
572 float realplayers, bots, activerealplayers;
574 activerealplayers = 0;
577 FOR_EACH_REALCLIENT(head)
579 if(IS_PLAYER(head) || g_lms || head.caplayer == 1)
584 // add/remove bots if needed to make sure there are at least
585 // minplayers+bot_number, or remove all bots if no one is playing
586 // But don't remove bots immediately on level change, as the real players
587 // usually haven't rejoined yet
588 bots_would_leave = false;
589 if (teamplay && autocvar_bot_vs_human && (c3==-1 && c4==-1))
590 bots = min(ceil(fabs(autocvar_bot_vs_human) * activerealplayers), maxclients - realplayers);
591 else if ((realplayers || autocvar_bot_join_empty || (currentbots > 0 && time < 5)))
593 float realminplayers, minplayers;
594 realminplayers = autocvar_minplayers;
595 minplayers = max(0, floor(realminplayers));
597 float realminbots, minbots;
598 realminbots = autocvar_bot_number;
599 minbots = max(0, floor(realminbots));
601 bots = min(max(minbots, minplayers - activerealplayers), maxclients - realplayers);
603 bots_would_leave = true;
607 // if there are no players, remove bots
611 // only add one bot per frame to avoid utter chaos
612 if(time > botframe_nextthink)
614 //dprint(ftos(bots), " ? ", ftos(currentbots), "\n");
615 while (currentbots < bots)
617 if (bot_spawn() == world)
619 bprint("Can not add bot, server full.\n");
623 while (currentbots > bots)
630 void bot_serverframe()
632 if (intermission_running)
638 bot_calculate_stepheightvec();
639 bot_navigation_movemode = ((autocvar_bot_navigation_ignoreplayers) ? MOVE_NOMONSTERS : MOVE_NORMAL);
641 if(time > autoskill_nextthink)
644 a = autocvar_skill_auto;
647 autoskill_nextthink = time + 5;
650 if(time > botframe_nextthink)
653 botframe_nextthink = time + 10;
656 bot_ignore_bots = autocvar_bot_ignore_bots;
658 if(botframe_spawnedwaypoints)
660 if(autocvar_waypoint_benchmark)
664 if (currentbots > 0 || autocvar_g_waypointeditor || autocvar_g_waypointeditor_auto)
665 if (botframe_spawnedwaypoints)
667 if(botframe_cachedwaypointlinks)
669 if(!botframe_loadedforcedlinks)
670 waypoint_load_links_hardwired();
674 // TODO: Make this check cleaner
675 entity wp = findchain(classname, "waypoint");
676 if(time - wp.nextthink > 10)
677 waypoint_save_links();
682 botframe_spawnedwaypoints = true;
684 if(!waypoint_load_links())
685 waypoint_schedulerelinkall();
690 // cycle the goal token from one bot to the next each frame
691 // (this prevents them from all doing spawnfunc_waypoint searches on the same
692 // frame, which causes choppy framerates)
693 if (bot_strategytoken_taken)
695 bot_strategytoken_taken = false;
696 if (bot_strategytoken)
697 bot_strategytoken = bot_strategytoken.nextbot;
698 if (!bot_strategytoken)
699 bot_strategytoken = bot_list;
702 if (botframe_nextdangertime < time)
705 interval = autocvar_bot_ai_dangerdetectioninterval;
706 if (botframe_nextdangertime < time - interval * 1.5)
707 botframe_nextdangertime = time;
708 botframe_nextdangertime = botframe_nextdangertime + interval;
709 botframe_updatedangerousobjects(autocvar_bot_ai_dangerdetectionupdates);
713 if (autocvar_g_waypointeditor)
714 botframe_showwaypointlinks();
716 if (autocvar_g_waypointeditor_auto)
717 botframe_autowaypoints();
719 if(time > bot_cvar_nextthink)
722 bot_custom_weapon_priority_setup();
723 bot_cvar_nextthink = time + 5;