2 #include "../../_all.qh"
6 #include "../navigation.qh"
7 #include "../scripting.qh"
8 #include "../waypoints.qh"
10 #include "../../../common/constants.qh"
12 #include "../../../common/triggers/trigger/jumppads.qh"
14 #include "../../../warpzonelib/common.qh"
21 if(bot_execute_commands())
24 if (bot_strategytoken == self)
25 if (!bot_strategytoken_taken)
27 if(self.havocbot_blockhead)
29 self.havocbot_blockhead = false;
33 if (!self.jumppadcount)
37 // TODO: tracewalk() should take care of this job (better path finding under water)
38 // if we don't have a goal and we're under water look for a waypoint near the "shore" and push it
39 if(self.deadflag != DEAD_NO)
40 if(self.goalcurrent==world)
41 if(self.waterlevel==WATERLEVEL_SWIMMING || (self.aistatus & AI_STATUS_OUT_WATER))
43 // Look for the closest waypoint out of water
45 float bestdistance, distance;
49 for (head = findchain(classname, "waypoint"); head; head = head.chain)
51 distance = vlen(head.origin - self.origin);
55 if(head.origin.z < self.origin.z)
58 if(head.origin.z - self.origin.z - self.view_ofs.z > 100)
61 if (pointcontents(head.origin + head.maxs + '0 0 1') != CONTENT_EMPTY)
64 traceline(self.origin + self.view_ofs , head.origin, true, head);
69 if(distance<bestdistance)
72 bestdistance = distance;
78 // te_wizspike(newgoal.origin);
79 navigation_pushroute(newgoal);
83 // token has been used this frame
84 bot_strategytoken_taken = true;
87 if(self.deadflag != DEAD_NO)
90 havocbot_chooseenemy();
91 if (self.bot_chooseweapontime < time )
93 self.bot_chooseweapontime = time + autocvar_bot_ai_chooseweaponinterval;
94 havocbot_chooseweapon();
100 self.aistatus |= AI_STATUS_ATTACKING;
101 self.aistatus &= ~AI_STATUS_ROAMING;
105 Weapon w = get_weaponinfo(self.weapon);
107 if (autocvar_bot_nofire || IS_INDEPENDENT_PLAYER(self))
109 self.BUTTON_ATCK = false;
110 self.BUTTON_ATCK2 = false;
114 if(self.BUTTON_ATCK||self.BUTTON_ATCK2)
115 self.lastfiredweapon = self.weapon;
120 if(IS_PLAYER(self.bot_aimtarg))
121 bot_aimdir(self.bot_aimtarg.origin + self.bot_aimtarg.view_ofs - self.origin - self.view_ofs , -1);
124 else if (self.goalcurrent)
126 self.aistatus |= AI_STATUS_ROAMING;
127 self.aistatus &= ~AI_STATUS_ATTACKING;
129 vector now,v,next;//,heading;
130 float aimdistance,skillblend,distanceblend,blend;
131 next = now = ( (self.goalcurrent.absmin + self.goalcurrent.absmax) * 0.5) - (self.origin + self.view_ofs);
132 aimdistance = vlen(now);
133 //heading = self.velocity;
134 //dprint(self.goalstack01.classname,etos(self.goalstack01),"\n");
136 self.goalstack01 != self && self.goalstack01 != world && ((self.aistatus & AI_STATUS_RUNNING) == 0) &&
137 !(self.goalcurrent.wpflags & WAYPOINTFLAG_TELEPORT)
139 next = ((self.goalstack01.absmin + self.goalstack01.absmax) * 0.5) - (self.origin + self.view_ofs);
141 skillblend=bound(0,(skill+self.bot_moveskill-2.5)*0.5,1); //lower skill player can't preturn
142 distanceblend=bound(0,aimdistance/autocvar_bot_ai_keyboard_distance,1);
143 blend = skillblend * (1-distanceblend);
144 //v = (now * (distanceblend) + next * (1-distanceblend)) * (skillblend) + now * (1-skillblend);
145 //v = now * (distanceblend) * (skillblend) + next * (1-distanceblend) * (skillblend) + now * (1-skillblend);
146 //v = now * ((1-skillblend) + (distanceblend) * (skillblend)) + next * (1-distanceblend) * (skillblend);
147 v = now + blend * (next - now);
148 //dprint(etos(self), " ");
149 //dprint(vtos(now), ":", vtos(next), "=", vtos(v), " (blend ", ftos(blend), ")\n");
150 //v = now * (distanceblend) + next * (1-distanceblend);
151 if (self.waterlevel < WATERLEVEL_SWIMMING)
153 //dprint("walk at:", vtos(v), "\n");
154 //te_lightning2(world, self.origin, self.goalcurrent.origin);
157 havocbot_movetogoal();
159 // if the bot is not attacking, consider reloading weapons
160 if (!(self.aistatus & AI_STATUS_ATTACKING))
162 // we are currently holding a weapon that's not fully loaded, reload it
163 if(skill >= 2) // bots can only reload the held weapon on purpose past this skill
164 if(self.clip_load < self.clip_size)
165 self.impulse = 20; // "press" the reload button, not sure if this is done right
167 // if we're not reloading a weapon, switch to any weapon in our invnetory that's not fully loaded to reload it next
168 // the code above executes next frame, starting the reloading then
169 if(skill >= 5) // bots can only look for unloaded weapons past this skill
170 if(self.clip_load >= 0) // only if we're not reloading a weapon already
172 for (int i = WEP_FIRST; i <= WEP_LAST; ++i)
174 entity e = get_weaponinfo(i);
175 if ((self.weapons & WepSet_FromWeapon(i)) && (e.spawnflags & WEP_FLAG_RELOADABLE) && (self.weapon_load[i] < e.reloading_ammo))
176 self.switchweapon = i;
182 void havocbot_keyboard_movement(vector destorg)
185 float blend, maxspeed;
188 sk = skill + self.bot_moveskill;
190 maxspeed = autocvar_sv_maxspeed;
192 if (time < self.havocbot_keyboardtime)
195 self.havocbot_keyboardtime =
197 self.havocbot_keyboardtime
198 + 0.05/max(1, sk+self.havocbot_keyboardskill)
199 + random()*0.025/max(0.00025, skill+self.havocbot_keyboardskill)
201 keyboard = self.movement * (1.0 / maxspeed);
203 float trigger, trigger1;
204 blend = bound(0,sk*0.1,1);
205 trigger = autocvar_bot_ai_keyboard_threshold;
206 trigger1 = 0 - trigger;
208 // categorize forward movement
209 // at skill < 1.5 only forward
210 // at skill < 2.5 only individual directions
211 // at skill < 4.5 only individual directions, and forward diagonals
212 // at skill >= 4.5, all cases allowed
213 if (keyboard.x > trigger)
219 else if (keyboard.x < trigger1 && sk > 1.5)
234 if (keyboard.y > trigger)
236 else if (keyboard.y < trigger1)
241 if (keyboard.z > trigger)
243 else if (keyboard.z < trigger1)
248 self.havocbot_keyboard = keyboard * maxspeed;
249 if (self.havocbot_ducktime>time) self.BUTTON_CROUCH=true;
251 keyboard = self.havocbot_keyboard;
252 blend = bound(0,vlen(destorg-self.origin)/autocvar_bot_ai_keyboard_distance,1); // When getting close move with 360 degree
253 //dprint("movement ", vtos(self.movement), " keyboard ", vtos(keyboard), " blend ", ftos(blend), "\n");
254 self.movement = self.movement + (keyboard - self.movement) * blend;
257 void havocbot_bunnyhop(vector dir)
259 float bunnyhopdistance;
264 // Don't jump when attacking
265 if(self.aistatus & AI_STATUS_ATTACKING)
268 if(IS_PLAYER(self.goalcurrent))
271 maxspeed = autocvar_sv_maxspeed;
273 if(self.aistatus & AI_STATUS_DANGER_AHEAD)
275 self.aistatus &= ~AI_STATUS_RUNNING;
276 self.BUTTON_JUMP = false;
277 self.bot_canruntogoal = 0;
278 self.bot_timelastseengoal = 0;
282 if(self.waterlevel > WATERLEVEL_WETFEET)
284 self.aistatus &= ~AI_STATUS_RUNNING;
288 if(self.bot_lastseengoal != self.goalcurrent && !(self.aistatus & AI_STATUS_RUNNING))
290 self.bot_canruntogoal = 0;
291 self.bot_timelastseengoal = 0;
294 gco = (self.goalcurrent.absmin + self.goalcurrent.absmax) * 0.5;
295 bunnyhopdistance = vlen(self.origin - gco);
297 // Run only to visible goals
298 if(self.flags & FL_ONGROUND)
299 if(self.speed==maxspeed)
300 if(checkpvs(self.origin + self.view_ofs, self.goalcurrent))
302 self.bot_lastseengoal = self.goalcurrent;
305 if(self.bot_timelastseengoal)
307 // for a period of time
308 if(time - self.bot_timelastseengoal > autocvar_bot_ai_bunnyhop_firstjumpdelay)
311 checkdistance = true;
313 // don't run if it is too close
314 if(self.bot_canruntogoal==0)
316 if(bunnyhopdistance > autocvar_bot_ai_bunnyhop_startdistance)
317 self.bot_canruntogoal = 1;
319 self.bot_canruntogoal = -1;
322 if(self.bot_canruntogoal != 1)
325 if(self.aistatus & AI_STATUS_ROAMING)
326 if(self.goalcurrent.classname=="waypoint")
327 if (!(self.goalcurrent.wpflags & WAYPOINTFLAG_PERSONAL))
328 if(fabs(gco.z - self.origin.z) < self.maxs.z - self.mins.z)
329 if(self.goalstack01!=world)
331 gno = (self.goalstack01.absmin + self.goalstack01.absmax) * 0.5;
332 deviation = vectoangles(gno - self.origin) - vectoangles(gco - self.origin);
333 while (deviation.y < -180) deviation.y = deviation.y + 360;
334 while (deviation.y > 180) deviation.y = deviation.y - 360;
336 if(fabs(deviation.y) < 20)
337 if(bunnyhopdistance < vlen(self.origin - gno))
338 if(fabs(gno.z - gco.z) < self.maxs.z - self.mins.z)
340 if(vlen(gco - gno) > autocvar_bot_ai_bunnyhop_startdistance)
341 if(checkpvs(self.origin + self.view_ofs, self.goalstack01))
343 checkdistance = false;
350 self.aistatus &= ~AI_STATUS_RUNNING;
351 if(bunnyhopdistance > autocvar_bot_ai_bunnyhop_stopdistance)
352 self.BUTTON_JUMP = true;
356 self.aistatus |= AI_STATUS_RUNNING;
357 self.BUTTON_JUMP = true;
363 self.bot_timelastseengoal = time;
368 self.bot_timelastseengoal = 0;
372 // Release jump button
373 if(!cvar("sv_pogostick"))
374 if((self.flags & FL_ONGROUND) == 0)
376 if(self.velocity.z < 0 || vlen(self.velocity)<maxspeed)
377 self.BUTTON_JUMP = false;
380 if(self.aistatus & AI_STATUS_RUNNING)
381 if(vlen(self.velocity)>maxspeed)
383 deviation = vectoangles(dir) - vectoangles(self.velocity);
384 while (deviation.y < -180) deviation.y = deviation.y + 360;
385 while (deviation.y > 180) deviation.y = deviation.y - 360;
387 if(fabs(deviation.y)>10)
391 self.movement_y = maxspeed * -1;
392 else if(deviation.y<10)
393 self.movement_y = maxspeed;
400 void havocbot_movetogoal()
408 vector evadeobstacle;
415 //if (self.goalentity)
416 // te_lightning2(self, self.origin, (self.goalentity.absmin + self.goalentity.absmax) * 0.5);
417 self.movement = '0 0 0';
418 maxspeed = autocvar_sv_maxspeed;
420 // Jetpack navigation
422 if(self.navigation_jetpack_goal)
423 if(self.goalcurrent==self.navigation_jetpack_goal)
426 if(autocvar_bot_debug_goalstack)
429 te_wizspike(self.navigation_jetpack_point);
433 if (!(self.aistatus & AI_STATUS_JETPACK_FLYING))
435 // Brake almost completely so it can get a good direction
436 if(vlen(self.velocity)>10)
438 self.aistatus |= AI_STATUS_JETPACK_FLYING;
441 makevectors(self.v_angle.y * '0 1 0');
442 dir = normalize(self.navigation_jetpack_point - self.origin);
445 if(self.aistatus & AI_STATUS_JETPACK_LANDING)
447 // Calculate brake distance in xy
451 dxy = self.origin - ( ( self.goalcurrent.absmin + self.goalcurrent.absmax ) * 0.5 ); dxy.z = 0;
453 v = vlen(self.velocity - self.velocity.z * '0 0 1');
454 db = (pow(v,2) / (autocvar_g_jetpack_acceleration_side * 2)) + 100;
455 // dprint("distance ", ftos(ceil(d)), " velocity ", ftos(ceil(v)), " brake at ", ftos(ceil(db)), "\n");
456 if(d < db || d < 500)
459 if(fabs(self.velocity.x)>maxspeed*0.3)
461 self.movement_x = dir * v_forward * -maxspeed;
464 // Switch to normal mode
465 self.navigation_jetpack_goal = world;
466 self.aistatus &= ~AI_STATUS_JETPACK_LANDING;
467 self.aistatus &= ~AI_STATUS_JETPACK_FLYING;
471 else if(checkpvs(self.origin,self.goalcurrent))
473 // If I can see the goal switch to landing code
474 self.aistatus &= ~AI_STATUS_JETPACK_FLYING;
475 self.aistatus |= AI_STATUS_JETPACK_LANDING;
480 self.BUTTON_HOOK = true;
481 if(self.navigation_jetpack_point.z - PL_MAX.z + PL_MIN.z < self.origin.z)
483 self.movement_x = dir * v_forward * maxspeed;
484 self.movement_y = dir * v_right * maxspeed;
489 // Handling of jump pads
490 if(self.jumppadcount)
492 // If got stuck on the jump pad try to reach the farthest visible waypoint
493 if(self.aistatus & AI_STATUS_OUT_JUMPPAD)
495 if(fabs(self.velocity.z)<50)
497 entity head, newgoal = world;
498 float distance, bestdistance = 0;
500 for (head = findchain(classname, "waypoint"); head; head = head.chain)
503 distance = vlen(head.origin - self.origin);
507 traceline(self.origin + self.view_ofs , ( ( head.absmin + head.absmax ) * 0.5 ), true, world);
512 if(distance>bestdistance)
515 bestdistance = distance;
521 self.ignoregoal = self.goalcurrent;
522 self.ignoregoaltime = time + autocvar_bot_ai_ignoregoal_timeout;
523 navigation_clearroute();
524 navigation_routetogoal(newgoal, self.origin);
525 self.aistatus &= ~AI_STATUS_OUT_JUMPPAD;
533 if(self.velocity.z>0)
535 float threshold, sxy;
536 vector velxy = self.velocity; velxy_z = 0;
538 threshold = maxspeed * 0.2;
541 LOG_TRACE("Warning: ", self.netname, " got stuck on a jumppad (velocity in xy is ", ftos(sxy), "), trying to get out of it now\n");
542 self.aistatus |= AI_STATUS_OUT_JUMPPAD;
547 // Don't chase players while using a jump pad
548 if(IS_PLAYER(self.goalcurrent) || IS_PLAYER(self.goalstack01))
552 else if(self.aistatus & AI_STATUS_OUT_JUMPPAD)
553 self.aistatus &= ~AI_STATUS_OUT_JUMPPAD;
555 // If there is a trigger_hurt right below try to use the jetpack or make a rocketjump
557 if (!(self.flags & FL_ONGROUND))
559 tracebox(self.origin, self.mins, self.maxs, self.origin + '0 0 -65536', MOVE_NOMONSTERS, self);
560 if(tracebox_hits_trigger_hurt(self.origin, self.mins, self.maxs, trace_endpos ))
561 if(self.items & IT_JETPACK)
563 tracebox(self.origin, self.mins, self.maxs, self.origin + '0 0 65536', MOVE_NOMONSTERS, self);
564 if(tracebox_hits_trigger_hurt(self.origin, self.mins, self.maxs, trace_endpos + '0 0 1' ))
566 if(self.velocity.z<0)
568 self.BUTTON_HOOK = true;
572 self.BUTTON_HOOK = true;
574 // If there is no goal try to move forward
576 if(self.goalcurrent==world)
579 dir = normalize(( ( self.goalcurrent.absmin + self.goalcurrent.absmax ) * 0.5 ) - self.origin);
581 vector xyvelocity = self.velocity; xyvelocity_z = 0;
582 float xyspeed = xyvelocity * dir;
584 if(xyspeed < (maxspeed / 2))
586 makevectors(self.v_angle.y * '0 1 0');
587 tracebox(self.origin, self.mins, self.maxs, self.origin + (dir * maxspeed * 3), MOVE_NOMONSTERS, self);
588 if(trace_fraction==1)
590 self.movement_x = dir * v_forward * maxspeed;
591 self.movement_y = dir * v_right * maxspeed;
593 havocbot_keyboard_movement(self.origin + dir * 100);
597 self.havocbot_blockhead = true;
601 else if(self.health>WEP_CVAR(devastator, damage)*0.5)
603 if(self.velocity.z < 0)
604 if(client_hasweapon(self, WEP_DEVASTATOR.m_id, true, false))
606 self.movement_x = maxspeed;
608 if(self.rocketjumptime)
610 if(time > self.rocketjumptime)
612 self.BUTTON_ATCK2 = true;
613 self.rocketjumptime = 0;
618 self.switchweapon = WEP_DEVASTATOR.m_id;
620 self.BUTTON_ATCK = true;
621 self.rocketjumptime = time + WEP_CVAR(devastator, detonatedelay);
627 // If there is no goal try to move forward
628 if(self.goalcurrent==world)
629 self.movement_x = maxspeed;
633 // If we are under water with no goals, swim up
635 if(self.goalcurrent==world)
638 if(self.waterlevel>WATERLEVEL_SWIMMING)
640 else if(self.velocity.z >= 0 && !(self.waterlevel == WATERLEVEL_WETFEET && self.watertype == CONTENT_WATER))
641 self.BUTTON_JUMP = true;
643 self.BUTTON_JUMP = false;
644 makevectors(self.v_angle.y * '0 1 0');
645 self.movement_x = dir * v_forward * maxspeed;
646 self.movement_y = dir * v_right * maxspeed;
647 self.movement_z = dir * v_up * maxspeed;
650 // if there is nowhere to go, exit
651 if (self.goalcurrent == world)
654 if (self.goalcurrent)
655 navigation_poptouchedgoals();
657 // if ran out of goals try to use an alternative goal or get a new strategy asap
658 if(self.goalcurrent == world)
660 self.bot_strategytime = 0;
665 if(autocvar_bot_debug_goalstack)
668 m1 = self.goalcurrent.origin + self.goalcurrent.mins;
669 m2 = self.goalcurrent.origin + self.goalcurrent.maxs;
670 destorg = self.origin;
671 destorg.x = bound(m1_x, destorg.x, m2_x);
672 destorg.y = bound(m1_y, destorg.y, m2_y);
673 destorg.z = bound(m1_z, destorg.z, m2_z);
674 diff = destorg - self.origin;
676 dir = normalize(diff);
677 flatdir = diff;flatdir.z = 0;
678 flatdir = normalize(flatdir);
679 gco = (self.goalcurrent.absmin + self.goalcurrent.absmax) * 0.5;
681 //if (self.bot_dodgevector_time < time)
683 // self.bot_dodgevector_time = time + cvar("bot_ai_dodgeupdateinterval");
684 // self.bot_dodgevector_jumpbutton = 1;
685 evadeobstacle = '0 0 0';
690 if(self.waterlevel>WATERLEVEL_SWIMMING)
693 self.aistatus |= AI_STATUS_OUT_WATER;
697 if(self.velocity.z >= 0 && !(self.watertype == CONTENT_WATER && gco.z < self.origin.z) &&
698 ( !(self.waterlevel == WATERLEVEL_WETFEET && self.watertype == CONTENT_WATER) || self.aistatus & AI_STATUS_OUT_WATER))
699 self.BUTTON_JUMP = true;
701 self.BUTTON_JUMP = false;
703 dir = normalize(flatdir);
704 makevectors(self.v_angle.y * '0 1 0');
708 if(self.aistatus & AI_STATUS_OUT_WATER)
709 self.aistatus &= ~AI_STATUS_OUT_WATER;
711 // jump if going toward an obstacle that doesn't look like stairs we
712 // can walk up directly
713 tracebox(self.origin, self.mins, self.maxs, self.origin + self.velocity * 0.2, false, self);
714 if (trace_fraction < 1)
715 if (trace_plane_normal.z < 0.7)
718 tracebox(self.origin + stepheightvec, self.mins, self.maxs, self.origin + self.velocity * 0.2 + stepheightvec, false, self);
719 if (trace_fraction < s + 0.01)
720 if (trace_plane_normal.z < 0.7)
723 tracebox(self.origin + jumpstepheightvec, self.mins, self.maxs, self.origin + self.velocity * 0.2 + jumpstepheightvec, false, self);
724 if (trace_fraction > s)
725 self.BUTTON_JUMP = 1;
729 // avoiding dangers and obstacles
730 vector dst_ahead, dst_down;
731 makevectors(self.v_angle.y * '0 1 0');
732 dst_ahead = self.origin + self.view_ofs + (self.velocity * 0.4) + (v_forward * 32 * 3);
733 dst_down = dst_ahead - '0 0 1500';
736 traceline(self.origin + self.view_ofs, dst_ahead, true, world);
738 // Check head-banging against walls
739 if(vlen(self.origin + self.view_ofs - trace_endpos) < 25 && !(self.aistatus & AI_STATUS_OUT_WATER))
741 self.BUTTON_JUMP = true;
742 if(self.facingwalltime && time > self.facingwalltime)
744 self.ignoregoal = self.goalcurrent;
745 self.ignoregoaltime = time + autocvar_bot_ai_ignoregoal_timeout;
746 self.bot_strategytime = 0;
751 self.facingwalltime = time + 0.05;
756 self.facingwalltime = 0;
758 if(self.ignoregoal != world && time > self.ignoregoaltime)
760 self.ignoregoal = world;
761 self.ignoregoaltime = 0;
765 // Check for water/slime/lava and dangerous edges
766 // (only when the bot is on the ground or jumping intentionally)
767 self.aistatus &= ~AI_STATUS_DANGER_AHEAD;
769 if(trace_fraction == 1 && self.jumppadcount == 0 && !self.goalcurrent.wphardwired )
770 if((self.flags & FL_ONGROUND) || (self.aistatus & AI_STATUS_RUNNING) || self.BUTTON_JUMP == true)
773 traceline(dst_ahead , dst_down, true, world);
774 // te_lightning2(world, self.origin, dst_ahead); // Draw "ahead" look
775 // te_lightning2(world, dst_ahead, dst_down); // Draw "downwards" look
776 if(trace_endpos.z < self.origin.z + self.mins.z)
778 s = pointcontents(trace_endpos + '0 0 1');
779 if (s != CONTENT_SOLID)
780 if (s == CONTENT_LAVA || s == CONTENT_SLIME)
781 evadelava = normalize(self.velocity) * -1;
782 else if (s == CONTENT_SKY)
783 evadeobstacle = normalize(self.velocity) * -1;
784 else if (!boxesoverlap(dst_ahead - self.view_ofs + self.mins, dst_ahead - self.view_ofs + self.maxs,
785 self.goalcurrent.absmin, self.goalcurrent.absmax))
787 // if ain't a safe goal with "holes" (like the jumpad on soylent)
788 // and there is a trigger_hurt below
789 if(tracebox_hits_trigger_hurt(dst_ahead, self.mins, self.maxs, trace_endpos))
791 // Remove dangerous dynamic goals from stack
792 LOG_TRACE("bot ", self.netname, " avoided the goal ", self.goalcurrent.classname, " ", etos(self.goalcurrent), " because it led to a dangerous path; goal stack cleared\n");
793 navigation_clearroute();
803 makevectors(self.v_angle.y * '0 1 0');
805 if(evadeobstacle!='0 0 0'||evadelava!='0 0 0')
806 self.aistatus |= AI_STATUS_DANGER_AHEAD;
809 dodge = havocbot_dodge();
810 dodge = dodge * bound(0,0.5+(skill+self.bot_dodgeskill)*0.1,1);
811 evadelava = evadelava * bound(1,3-(skill+self.bot_dodgeskill),3); //Noobs fear lava a lot and take more distance from it
812 traceline(self.origin, ( ( self.enemy.absmin + self.enemy.absmax ) * 0.5 ), true, world);
813 if(IS_PLAYER(trace_ent))
814 dir = dir * bound(0,(skill+self.bot_dodgeskill)/7,1);
816 dir = normalize(dir + dodge + evadeobstacle + evadelava);
817 // self.bot_dodgevector = dir;
818 // self.bot_dodgevector_jumpbutton = self.BUTTON_JUMP;
821 if(time < self.ladder_time)
823 if(self.goalcurrent.origin.z + self.goalcurrent.mins.z > self.origin.z + self.mins.z)
825 if(self.origin.z + self.mins.z < self.ladder_entity.origin.z + self.ladder_entity.maxs.z)
830 if(self.origin.z + self.mins.z > self.ladder_entity.origin.z + self.ladder_entity.mins.z)
835 //dir = self.bot_dodgevector;
836 //if (self.bot_dodgevector_jumpbutton)
837 // self.BUTTON_JUMP = 1;
838 self.movement_x = dir * v_forward * maxspeed;
839 self.movement_y = dir * v_right * maxspeed;
840 self.movement_z = dir * v_up * maxspeed;
842 // Emulate keyboard interface
844 havocbot_keyboard_movement(destorg);
847 // if(self.aistatus & AI_STATUS_ROAMING)
849 if(skill+self.bot_moveskill >= autocvar_bot_ai_bunnyhop_skilloffset)
850 havocbot_bunnyhop(dir);
852 if ((dir * v_up) >= autocvar_sv_jumpvelocity*0.5 && (self.flags & FL_ONGROUND)) self.BUTTON_JUMP=1;
853 if (((dodge * v_up) > 0) && random()*frametime >= 0.2*bound(0,(10-skill-self.bot_dodgeskill)*0.1,1)) self.BUTTON_JUMP=true;
854 if (((dodge * v_up) < 0) && random()*frametime >= 0.5*bound(0,(10-skill-self.bot_dodgeskill)*0.1,1)) self.havocbot_ducktime=time+0.3/bound(0.1,skill+self.bot_dodgeskill,10);
857 void havocbot_chooseenemy()
859 entity head, best, head2;
860 float rating, bestrating, hf;
862 if (autocvar_bot_nofire || IS_INDEPENDENT_PLAYER(self))
869 if (!bot_shouldattack(self.enemy))
871 // enemy died or something, find a new target
873 self.havocbot_chooseenemy_finished = time;
875 else if (self.havocbot_stickenemy)
877 // tracking last chosen enemy
878 // if enemy is visible
879 // and not really really far away
880 // and we're not severely injured
881 // then keep tracking for a half second into the future
882 traceline(self.origin+self.view_ofs, ( self.enemy.absmin + self.enemy.absmax ) * 0.5,false,world);
883 if (trace_ent == self.enemy || trace_fraction == 1)
884 if (vlen((( self.enemy.absmin + self.enemy.absmax ) * 0.5) - self.origin) < 1000)
885 if (self.health > 30)
887 // remain tracking him for a shot while (case he went after a small corner or pilar
888 self.havocbot_chooseenemy_finished = time + 0.5;
891 // enemy isn't visible, or is far away, or we're injured severely
892 // so stop preferring this enemy
893 // (it will still take a half second until a new one is chosen)
894 self.havocbot_stickenemy = 0;
897 if (time < self.havocbot_chooseenemy_finished)
899 self.havocbot_chooseenemy_finished = time + autocvar_bot_ai_enemydetectioninterval;
900 eye = self.origin + self.view_ofs;
902 bestrating = 100000000;
903 head = head2 = findchainfloat(bot_attack, true);
906 hf = self.dphitcontentsmask;
908 // Search for enemies, if no enemy can be seen directly try to look through transparent objects
910 self.dphitcontentsmask = DPCONTENTS_SOLID | DPCONTENTS_BODY | DPCONTENTS_CORPSE;
912 bool scan_transparent = false;
913 bool scan_secondary_targets = false;
914 bool have_secondary_targets = false;
917 scan_secondary_targets = false;
919 for( ; head; head = head.chain)
921 if(!scan_secondary_targets)
923 if(head.classname == "misc_breakablemodel")
925 have_secondary_targets = true;
931 if(head.classname != "misc_breakablemodel")
935 v = (head.absmin + head.absmax) * 0.5;
936 rating = vlen(v - eye);
937 if (rating<autocvar_bot_ai_enemydetectionradius)
938 if (bestrating > rating)
939 if (bot_shouldattack(head))
941 traceline(eye, v, true, self);
942 if (trace_ent == head || trace_fraction >= 1)
950 if(!best && have_secondary_targets && !scan_secondary_targets)
952 scan_secondary_targets = true;
955 bestrating = 100000000;
959 // I want to do a second scan if no enemy was found or I don't have weapons
960 // TODO: Perform the scan when using the rifle (requires changes on the rifle code)
961 if(best || self.weapons) // || self.weapon == WEP_RIFLE.m_id
966 // Set flags to see through transparent objects
967 self.dphitcontentsmask |= DPCONTENTS_OPAQUE;
970 scan_transparent = true;
974 self.dphitcontentsmask = hf;
977 self.havocbot_stickenemy = true;
978 if(best && best.classname == "misc_breakablemodel")
979 self.havocbot_stickenemy = false;
982 float havocbot_chooseweapon_checkreload(int new_weapon)
984 // bots under this skill cannot find unloaded weapons to reload idly when not in combat,
985 // so skip this for them, or they'll never get to reload their weapons at all.
986 // this also allows bots under this skill to be more stupid, and reload more often during combat :)
990 // if this weapon is scheduled for reloading, don't switch to it during combat
991 if (self.weapon_load[new_weapon] < 0)
993 float i, other_weapon_available = false;
994 for(i = WEP_FIRST; i <= WEP_LAST; ++i)
996 Weapon w = get_weaponinfo(i);
997 // if we are out of ammo for all other weapons, it's an emergency to switch to anything else
998 if (w.wr_checkammo1(w) + w.wr_checkammo2(w))
999 other_weapon_available = true;
1001 if(other_weapon_available)
1008 void havocbot_chooseweapon()
1013 if(g_weaponarena_weapons == WEPSET(TUBA))
1015 self.switchweapon = WEP_TUBA.m_id;
1019 // TODO: clean this up by moving it to weapon code
1020 if(self.enemy==world)
1022 // If no weapon was chosen get the first available weapon
1024 for(i = WEP_FIRST; i <= WEP_LAST; ++i) if(i != WEP_BLASTER.m_id)
1026 if(client_hasweapon(self, i, true, false))
1028 self.switchweapon = i;
1035 // Do not change weapon during the next second after a combo
1036 float f = time - self.lastcombotime;
1041 float distance; distance=bound(10,vlen(self.origin-self.enemy.origin)-200,10000);
1043 // Should it do a weapon combo?
1044 float af, ct, combo_time, combo;
1046 af = ATTACK_FINISHED(self);
1047 ct = autocvar_bot_ai_weapon_combo_threshold;
1049 // Bots with no skill will be 4 times more slower than "godlike" bots when doing weapon combos
1050 // Ideally this 4 should be calculated as longest_weapon_refire / bot_ai_weapon_combo_threshold
1051 combo_time = time + ct + (ct * ((-0.3*(skill+self.bot_weaponskill))+3));
1055 if(autocvar_bot_ai_weapon_combo)
1056 if(self.weapon == self.lastfiredweapon)
1060 self.lastcombotime = time;
1063 distance *= pow(2, self.bot_rangepreference);
1065 // Custom weapon list based on distance to the enemy
1066 if(bot_custom_weapon){
1068 // Choose weapons for far distance
1069 if ( distance > bot_distance_far ) {
1070 for(i=0; i < Weapons_COUNT && bot_weapons_far[i] != -1 ; ++i){
1071 w = bot_weapons_far[i];
1072 if ( client_hasweapon(self, w, true, false) )
1074 if ((self.weapon == w && combo) || havocbot_chooseweapon_checkreload(w))
1076 self.switchweapon = w;
1082 // Choose weapons for mid distance
1083 if ( distance > bot_distance_close) {
1084 for(i=0; i < Weapons_COUNT && bot_weapons_mid[i] != -1 ; ++i){
1085 w = bot_weapons_mid[i];
1086 if ( client_hasweapon(self, w, true, false) )
1088 if ((self.weapon == w && combo) || havocbot_chooseweapon_checkreload(w))
1090 self.switchweapon = w;
1096 // Choose weapons for close distance
1097 for(i=0; i < Weapons_COUNT && bot_weapons_close[i] != -1 ; ++i){
1098 w = bot_weapons_close[i];
1099 if ( client_hasweapon(self, w, true, false) )
1101 if ((self.weapon == w && combo) || havocbot_chooseweapon_checkreload(w))
1103 self.switchweapon = w;
1112 vector selfvel, enemyvel;
1113 // if(self.flags & FL_INWATER)
1115 if (time < self.nextaim)
1117 self.nextaim = time + 0.1;
1118 selfvel = self.velocity;
1119 if (!self.waterlevel)
1123 enemyvel = self.enemy.velocity;
1124 if (!self.enemy.waterlevel)
1126 lag_additem(time + self.ping, 0, 0, self.enemy, self.origin, selfvel, (self.enemy.absmin + self.enemy.absmax) * 0.5, enemyvel);
1129 lag_additem(time + self.ping, 0, 0, world, self.origin, selfvel, ( self.goalcurrent.absmin + self.goalcurrent.absmax ) * 0.5, '0 0 0');
1132 float havocbot_moveto_refresh_route()
1134 // Refresh path to goal if necessary
1136 wp = self.havocbot_personal_waypoint;
1137 navigation_goalrating_start();
1138 navigation_routerating(wp, 10000, 10000);
1139 navigation_goalrating_end();
1140 return self.navigation_hasgoals;
1143 float havocbot_moveto(vector pos)
1147 if(self.aistatus & AI_STATUS_WAYPOINT_PERSONAL_GOING)
1149 // Step 4: Move to waypoint
1150 if(self.havocbot_personal_waypoint==world)
1152 LOG_TRACE("Error: ", self.netname, " trying to walk to a non existent personal waypoint\n");
1153 self.aistatus &= ~AI_STATUS_WAYPOINT_PERSONAL_GOING;
1154 return CMD_STATUS_ERROR;
1157 if (!bot_strategytoken_taken)
1158 if(self.havocbot_personal_waypoint_searchtime<time)
1160 bot_strategytoken_taken = true;
1161 if(havocbot_moveto_refresh_route())
1163 LOG_TRACE(self.netname, " walking to its personal waypoint (after ", ftos(self.havocbot_personal_waypoint_failcounter), " failed attempts)\n");
1164 self.havocbot_personal_waypoint_searchtime = time + 10;
1165 self.havocbot_personal_waypoint_failcounter = 0;
1169 self.havocbot_personal_waypoint_failcounter += 1;
1170 self.havocbot_personal_waypoint_searchtime = time + 2;
1171 if(self.havocbot_personal_waypoint_failcounter >= 30)
1173 LOG_TRACE("Warning: can't walk to the personal waypoint located at ", vtos(self.havocbot_personal_waypoint.origin),"\n");
1174 self.aistatus &= ~AI_STATUS_WAYPOINT_PERSONAL_LINKING;
1175 remove(self.havocbot_personal_waypoint);
1176 return CMD_STATUS_ERROR;
1179 LOG_TRACE(self.netname, " can't walk to its personal waypoint (after ", ftos(self.havocbot_personal_waypoint_failcounter), " failed attempts), trying later\n");
1183 if(autocvar_bot_debug_goalstack)
1187 vector dir = ( ( self.goalcurrent.absmin + self.goalcurrent.absmax ) * 0.5 ) - (self.origin + self.view_ofs);
1189 bot_aimdir(dir, -1);
1192 havocbot_movetogoal();
1194 if(self.aistatus & AI_STATUS_WAYPOINT_PERSONAL_REACHED)
1196 // Step 5: Waypoint reached
1197 LOG_TRACE(self.netname, "'s personal waypoint reached\n");
1198 remove(self.havocbot_personal_waypoint);
1199 self.aistatus &= ~AI_STATUS_WAYPOINT_PERSONAL_REACHED;
1200 return CMD_STATUS_FINISHED;
1203 return CMD_STATUS_EXECUTING;
1206 // Step 2: Linking waypoint
1207 if(self.aistatus & AI_STATUS_WAYPOINT_PERSONAL_LINKING)
1209 // Wait until it is linked
1210 if(!self.havocbot_personal_waypoint.wplinked)
1212 LOG_TRACE(self.netname, " waiting for personal waypoint to be linked\n");
1213 return CMD_STATUS_EXECUTING;
1216 self.havocbot_personal_waypoint_searchtime = time; // so we set the route next frame
1217 self.aistatus &= ~AI_STATUS_WAYPOINT_PERSONAL_LINKING;
1218 self.aistatus |= AI_STATUS_WAYPOINT_PERSONAL_GOING;
1220 // Step 3: Route to waypoint
1221 LOG_TRACE(self.netname, " walking to its personal waypoint\n");
1223 return CMD_STATUS_EXECUTING;
1226 // Step 1: Spawning waypoint
1227 wp = waypoint_spawnpersonal(pos);
1230 LOG_TRACE("Error: Can't spawn personal waypoint at ",vtos(pos),"\n");
1231 return CMD_STATUS_ERROR;
1234 self.havocbot_personal_waypoint = wp;
1235 self.havocbot_personal_waypoint_failcounter = 0;
1236 self.aistatus |= AI_STATUS_WAYPOINT_PERSONAL_LINKING;
1238 // if pos is inside a teleport, then let's mark it as teleport waypoint
1240 for(head = world; (head = find(head, classname, "trigger_teleport")); )
1242 if(WarpZoneLib_BoxTouchesBrush(pos, pos, head, world))
1244 wp.wpflags |= WAYPOINTFLAG_TELEPORT;
1245 self.lastteleporttime = 0;
1250 if(wp.wpflags & WAYPOINTFLAG_TELEPORT)
1251 print("routing to a teleporter\n");
1253 print("routing to a non-teleporter\n");
1256 return CMD_STATUS_EXECUTING;
1259 float havocbot_resetgoal()
1261 navigation_clearroute();
1262 return CMD_STATUS_FINISHED;
1265 void havocbot_setupbot()
1267 self.bot_ai = havocbot_ai;
1268 self.cmd_moveto = havocbot_moveto;
1269 self.cmd_resetgoal = havocbot_resetgoal;
1271 havocbot_chooserole();
1274 vector havocbot_dodge()
1276 // LordHavoc: disabled because this is too expensive
1281 float danger, bestdanger, vl, d;
1284 // check for dangerous objects near bot or approaching bot
1285 head = findchainfloat(bot_dodge, true);
1288 if (head.owner != self)
1290 vl = vlen(head.velocity);
1291 if (vl > autocvar_sv_maxspeed * 0.3)
1293 n = normalize(head.velocity);
1294 v = self.origin - head.origin;
1296 if (d > (0 - head.bot_dodgerating))
1297 if (d < (vl * 0.2 + head.bot_dodgerating))
1299 // calculate direction and distance from the flight path, by removing the forward axis
1300 v = v - (n * (v * n));
1301 danger = head.bot_dodgerating - vlen(v);
1302 if (bestdanger < danger)
1304 bestdanger = danger;
1305 // dodge to the side of the object
1306 dodge = normalize(v);
1312 danger = head.bot_dodgerating - vlen(head.origin - self.origin);
1313 if (bestdanger < danger)
1315 bestdanger = danger;
1316 dodge = normalize(self.origin - head.origin);