1 #include "scripting.qh"
5 #include <common/state.qh>
6 #include <common/physics/player.qh>
12 .float bot_cmdqueuebuf_allocated;
13 .float bot_cmdqueuebuf;
14 .float bot_cmdqueuebuf_start;
15 .float bot_cmdqueuebuf_end;
17 void bot_clearqueue(entity bot)
19 if(!bot.bot_cmdqueuebuf_allocated)
21 buf_del(bot.bot_cmdqueuebuf);
22 bot.bot_cmdqueuebuf_allocated = false;
23 LOG_TRACE("bot ", bot.netname, " queue cleared");
26 void bot_queuecommand(entity bot, string cmdstring)
28 if(!bot.bot_cmdqueuebuf_allocated)
30 bot.bot_cmdqueuebuf = buf_create();
31 bot.bot_cmdqueuebuf_allocated = true;
32 bot.bot_cmdqueuebuf_start = 0;
33 bot.bot_cmdqueuebuf_end = 0;
36 bufstr_set(bot.bot_cmdqueuebuf, bot.bot_cmdqueuebuf_end, cmdstring);
38 // if the command was a "sound" command, precache the sound NOW
39 // this prevents lagging!
45 sp = strstrofs(cmdstring, " ", 0);
48 parm = substring(cmdstring, sp + 1, -1);
49 cmdstr = substring(cmdstring, 0, sp);
55 sp = strstrofs(parm, " ", 0);
58 parm = substring(parm, sp + 1, -1);
65 bot.bot_cmdqueuebuf_end += 1;
68 void bot_dequeuecommand(entity bot, float idx)
70 if(!bot.bot_cmdqueuebuf_allocated)
71 error("dequeuecommand but no queue allocated");
72 if(idx < bot.bot_cmdqueuebuf_start)
73 error("dequeueing a command in the past");
74 if(idx >= bot.bot_cmdqueuebuf_end)
75 error("dequeueing a command in the future");
76 bufstr_set(bot.bot_cmdqueuebuf, idx, "");
77 if(idx == bot.bot_cmdqueuebuf_start)
78 bot.bot_cmdqueuebuf_start += 1;
79 if(bot.bot_cmdqueuebuf_start >= bot.bot_cmdqueuebuf_end)
83 string bot_readcommand(entity bot, float idx)
85 if(!bot.bot_cmdqueuebuf_allocated)
86 error("readcommand but no queue allocated");
87 if(idx < bot.bot_cmdqueuebuf_start)
88 error("reading a command in the past");
89 if(idx >= bot.bot_cmdqueuebuf_end)
90 error("reading a command in the future");
91 return bufstr_get(bot.bot_cmdqueuebuf, idx);
94 bool bot_havecommand(entity this, int idx)
96 if(!this.bot_cmdqueuebuf_allocated)
98 if(idx < this.bot_cmdqueuebuf_start)
100 if(idx >= this.bot_cmdqueuebuf_end)
105 const int MAX_BOT_PLACES = 4;
106 .float bot_places_count;
107 .entity bot_places[MAX_BOT_PLACES];
108 .string bot_placenames[MAX_BOT_PLACES];
109 entity bot_getplace(entity this, string placename)
112 if(substring(placename, 0, 1) == "@")
115 placename = substring(placename, 1, -1);
117 for(i = 0; i < this.bot_places_count; ++i)
118 if(this.(bot_placenames[i]) == placename)
119 return this.(bot_places[i]);
120 // now: i == this.bot_places_count
121 s = s2 = cvar_string(placename);
122 p = strstrofs(s2, " ", 0);
125 s = substring(s2, 0, p);
126 //print("places: ", placename, " -> ", cvar_string(placename), "\n");
127 cvar_set(placename, strcat(substring(s2, p+1, -1), " ", s));
128 //print("places: ", placename, " := ", cvar_string(placename), "\n");
130 e = find(NULL, targetname, s);
132 LOG_INFO("invalid place ", s, "\n");
133 if(i < MAX_BOT_PLACES)
135 this.(bot_placenames[i]) = strzone(placename);
136 this.(bot_places[i]) = e;
137 this.bot_places_count += 1;
143 e = find(NULL, targetname, placename);
145 LOG_INFO("invalid place ", placename, "\n");
151 // Initialize global commands list
152 // NOTE: New commands should be initialized here
153 void bot_commands_init()
155 bot_cmd_string[BOT_CMD_NULL] = "";
156 bot_cmd_parm_type[BOT_CMD_NULL] = BOT_CMD_PARAMETER_NONE;
158 bot_cmd_string[BOT_CMD_PAUSE] = "pause";
159 bot_cmd_parm_type[BOT_CMD_PAUSE] = BOT_CMD_PARAMETER_NONE;
161 bot_cmd_string[BOT_CMD_CONTINUE] = "continue";
162 bot_cmd_parm_type[BOT_CMD_CONTINUE] = BOT_CMD_PARAMETER_NONE;
164 bot_cmd_string[BOT_CMD_WAIT] = "wait";
165 bot_cmd_parm_type[BOT_CMD_WAIT] = BOT_CMD_PARAMETER_FLOAT;
167 bot_cmd_string[BOT_CMD_TURN] = "turn";
168 bot_cmd_parm_type[BOT_CMD_TURN] = BOT_CMD_PARAMETER_FLOAT;
170 bot_cmd_string[BOT_CMD_MOVETO] = "moveto";
171 bot_cmd_parm_type[BOT_CMD_MOVETO] = BOT_CMD_PARAMETER_VECTOR;
173 bot_cmd_string[BOT_CMD_MOVETOTARGET] = "movetotarget";
174 bot_cmd_parm_type[BOT_CMD_MOVETOTARGET] = BOT_CMD_PARAMETER_STRING;
176 bot_cmd_string[BOT_CMD_RESETGOAL] = "resetgoal";
177 bot_cmd_parm_type[BOT_CMD_RESETGOAL] = BOT_CMD_PARAMETER_NONE;
179 bot_cmd_string[BOT_CMD_CC] = "cc";
180 bot_cmd_parm_type[BOT_CMD_CC] = BOT_CMD_PARAMETER_STRING;
182 bot_cmd_string[BOT_CMD_IF] = "if";
183 bot_cmd_parm_type[BOT_CMD_IF] = BOT_CMD_PARAMETER_STRING;
185 bot_cmd_string[BOT_CMD_ELSE] = "else";
186 bot_cmd_parm_type[BOT_CMD_ELSE] = BOT_CMD_PARAMETER_NONE;
188 bot_cmd_string[BOT_CMD_FI] = "fi";
189 bot_cmd_parm_type[BOT_CMD_FI] = BOT_CMD_PARAMETER_NONE;
191 bot_cmd_string[BOT_CMD_RESETAIM] = "resetaim";
192 bot_cmd_parm_type[BOT_CMD_RESETAIM] = BOT_CMD_PARAMETER_NONE;
194 bot_cmd_string[BOT_CMD_AIM] = "aim";
195 bot_cmd_parm_type[BOT_CMD_AIM] = BOT_CMD_PARAMETER_STRING;
197 bot_cmd_string[BOT_CMD_AIMTARGET] = "aimtarget";
198 bot_cmd_parm_type[BOT_CMD_AIMTARGET] = BOT_CMD_PARAMETER_STRING;
200 bot_cmd_string[BOT_CMD_PRESSKEY] = "presskey";
201 bot_cmd_parm_type[BOT_CMD_PRESSKEY] = BOT_CMD_PARAMETER_STRING;
203 bot_cmd_string[BOT_CMD_RELEASEKEY] = "releasekey";
204 bot_cmd_parm_type[BOT_CMD_RELEASEKEY] = BOT_CMD_PARAMETER_STRING;
206 bot_cmd_string[BOT_CMD_SELECTWEAPON] = "selectweapon";
207 bot_cmd_parm_type[BOT_CMD_SELECTWEAPON] = BOT_CMD_PARAMETER_FLOAT;
209 bot_cmd_string[BOT_CMD_IMPULSE] = "impulse";
210 bot_cmd_parm_type[BOT_CMD_IMPULSE] = BOT_CMD_PARAMETER_FLOAT;
212 bot_cmd_string[BOT_CMD_WAIT_UNTIL] = "wait_until";
213 bot_cmd_parm_type[BOT_CMD_WAIT_UNTIL] = BOT_CMD_PARAMETER_FLOAT;
215 bot_cmd_string[BOT_CMD_BARRIER] = "barrier";
216 bot_cmd_parm_type[BOT_CMD_BARRIER] = BOT_CMD_PARAMETER_NONE;
218 bot_cmd_string[BOT_CMD_CONSOLE] = "console";
219 bot_cmd_parm_type[BOT_CMD_CONSOLE] = BOT_CMD_PARAMETER_STRING;
221 bot_cmd_string[BOT_CMD_SOUND] = "sound";
222 bot_cmd_parm_type[BOT_CMD_SOUND] = BOT_CMD_PARAMETER_STRING;
224 bot_cmd_string[BOT_CMD_DEBUG_ASSERT_CANFIRE] = "debug_assert_canfire";
225 bot_cmd_parm_type[BOT_CMD_DEBUG_ASSERT_CANFIRE] = BOT_CMD_PARAMETER_FLOAT;
227 bot_cmds_initialized = true;
230 // Returns first bot with matching name
231 entity find_bot_by_name(string name)
233 FOREACH_CLIENT(IS_BOT_CLIENT(it) && it.netname == name,
241 // Returns a bot by number on list
242 entity find_bot_by_number(float number)
250 bot = findchainflags(flags, FL_CLIENT); // TODO: doesn't findchainflags loop backwards through entities?
253 if(IS_BOT_CLIENT(bot))
264 float bot_decodecommand(string cmdstring)
270 sp = strstrofs(cmdstring, " ", 0);
277 parm = substring(cmdstring, sp + 1, -1);
278 cmdstring = substring(cmdstring, 0, sp);
281 if(!bot_cmds_initialized)
285 for(i=1;i<BOT_CMD_COUNTER;++i)
287 if(bot_cmd_string[i]!=cmdstring)
290 cmd_parm_type = bot_cmd_parm_type[i];
292 if(cmd_parm_type!=BOT_CMD_PARAMETER_NONE&&parm=="")
294 LOG_INFO("ERROR: A parameter is required for this command\n");
298 // Load command into queue
299 bot_cmd.bot_cmd_type = i;
302 switch(cmd_parm_type)
304 case BOT_CMD_PARAMETER_FLOAT:
305 bot_cmd.bot_cmd_parm_float = stof(parm);
307 case BOT_CMD_PARAMETER_STRING:
308 if(bot_cmd.bot_cmd_parm_string)
309 strunzone(bot_cmd.bot_cmd_parm_string);
310 bot_cmd.bot_cmd_parm_string = strzone(parm);
312 case BOT_CMD_PARAMETER_VECTOR:
313 bot_cmd.bot_cmd_parm_vector = stov(parm);
320 LOG_INFO("ERROR: No such command '", cmdstring, "'\n");
324 void bot_cmdhelp(string scmd)
329 if(!bot_cmds_initialized)
332 for(i=1;i<BOT_CMD_COUNTER;++i)
334 if(bot_cmd_string[i]!=scmd)
337 ntype = bot_cmd_parm_type[i];
341 case BOT_CMD_PARAMETER_FLOAT:
342 stype = "float number";
344 case BOT_CMD_PARAMETER_STRING:
347 case BOT_CMD_PARAMETER_VECTOR:
355 LOG_INFO(strcat("Command: ",bot_cmd_string[i],"\nParameter: <",stype,"> \n"));
357 LOG_INFO("Description: ");
361 LOG_INFO("Stops the bot completely. Any command other than 'continue' will be ignored.");
363 case BOT_CMD_CONTINUE:
364 LOG_INFO("Disable paused status");
367 LOG_INFO("Pause command parsing and bot ai for N seconds. Pressed key will remain pressed");
369 case BOT_CMD_WAIT_UNTIL:
370 LOG_INFO("Pause command parsing and bot ai until time is N from the last barrier. Pressed key will remain pressed");
372 case BOT_CMD_BARRIER:
373 LOG_INFO("Waits till all bots that have a command queue reach this command. Pressed key will remain pressed");
376 LOG_INFO("Look to the right or left N degrees. For turning to the left use positive numbers.");
379 LOG_INFO("Walk to an specific coordinate on the map. Usage: moveto \"x y z\"");
381 case BOT_CMD_MOVETOTARGET:
382 LOG_INFO("Walk to the specific target on the map");
384 case BOT_CMD_RESETGOAL:
385 LOG_INFO("Resets the goal stack");
388 LOG_INFO("Execute client command. Examples: cc \"say something\"; cc god; cc \"name newnickname\"; cc kill;");
391 LOG_INFO("Perform simple conditional execution.\n");
392 LOG_INFO("Syntax: \n");
393 LOG_INFO(" sv_cmd .. if \"condition\"\n");
394 LOG_INFO(" sv_cmd .. <instruction if true>\n");
395 LOG_INFO(" sv_cmd .. <instruction if true>\n");
396 LOG_INFO(" sv_cmd .. else\n");
397 LOG_INFO(" sv_cmd .. <instruction if false>\n");
398 LOG_INFO(" sv_cmd .. <instruction if false>\n");
399 LOG_INFO(" sv_cmd .. fi\n");
400 LOG_INFO("Conditions: a=b, a>b, a<b, a\t\t(spaces not allowed)\n");
401 LOG_INFO(" Values in conditions can be numbers, cvars in the form cvar.cvar_string or special fields\n");
402 LOG_INFO("Fields: health, speed, flagcarrier\n");
403 LOG_INFO("Examples: if health>50; if health>cvar.g_balance_laser_primary_damage; if flagcarrier;");
405 case BOT_CMD_RESETAIM:
406 LOG_INFO("Points the aim to the coordinates x,y 0,0");
409 LOG_INFO("Move the aim x/y (horizontal/vertical) degrees relatives to the bot\n");
410 LOG_INFO("There is a 3rd optional parameter telling in how many seconds the aim has to reach the new position\n");
411 LOG_INFO("Examples: aim \"90 0\" // Turn 90 degrees inmediately (positive numbers move to the left/up)\n");
412 LOG_INFO(" aim \"0 90 2\" // Will gradually look to the sky in the next two seconds");
414 case BOT_CMD_AIMTARGET:
415 LOG_INFO("Points the aim to given target");
417 case BOT_CMD_PRESSKEY:
418 LOG_INFO("Press one of the following keys: forward, backward, left, right, jump, crouch, attack1, attack2, use\n");
419 LOG_INFO("Multiple keys can be pressed at time (with many presskey calls) and it will remain pressed until the command \"releasekey\" is called");
420 LOG_INFO("Note: The script will not return the control to the bot ai until all keys are released");
422 case BOT_CMD_RELEASEKEY:
423 LOG_INFO("Release previoulsy used keys. Use the parameter \"all\" to release all keys");
426 LOG_INFO("play sound file at bot location");
428 case BOT_CMD_DEBUG_ASSERT_CANFIRE:
429 LOG_INFO("verify the state of the weapon entity");
432 LOG_INFO("This command has no description yet.");
439 void bot_list_commands()
444 if(!bot_cmds_initialized)
447 LOG_INFO("List of all available commands:\n");
448 LOG_INFO(" Command - Parameter Type\n");
450 for(i=1;i<BOT_CMD_COUNTER;++i)
452 switch(bot_cmd_parm_type[i])
454 case BOT_CMD_PARAMETER_FLOAT:
455 ptype = "float number";
457 case BOT_CMD_PARAMETER_STRING:
460 case BOT_CMD_PARAMETER_VECTOR:
467 LOG_INFO(strcat(" ",bot_cmd_string[i]," - <",ptype,"> \n"));
472 .int bot_exec_status;
474 float bot_cmd_cc(entity this)
476 SV_ParseClientCommand(this, bot_cmd.bot_cmd_parm_string);
477 return CMD_STATUS_FINISHED;
480 float bot_cmd_impulse(entity this)
482 this.impulse = bot_cmd.bot_cmd_parm_float;
483 return CMD_STATUS_FINISHED;
486 float bot_cmd_continue(entity this)
488 this.bot_exec_status &= ~BOT_EXEC_STATUS_PAUSED;
489 return CMD_STATUS_FINISHED;
492 .float bot_cmd_wait_time;
493 float bot_cmd_wait(entity this)
495 if(this.bot_exec_status & BOT_EXEC_STATUS_WAITING)
497 if(time>=this.bot_cmd_wait_time)
499 this.bot_exec_status &= ~BOT_EXEC_STATUS_WAITING;
500 return CMD_STATUS_FINISHED;
503 return CMD_STATUS_EXECUTING;
506 this.bot_cmd_wait_time = time + bot_cmd.bot_cmd_parm_float;
507 this.bot_exec_status |= BOT_EXEC_STATUS_WAITING;
508 return CMD_STATUS_EXECUTING;
511 float bot_cmd_wait_until(entity this)
513 if(time < bot_cmd.bot_cmd_parm_float + bot_barriertime)
515 this.bot_exec_status |= BOT_EXEC_STATUS_WAITING;
516 return CMD_STATUS_EXECUTING;
518 this.bot_exec_status &= ~BOT_EXEC_STATUS_WAITING;
519 return CMD_STATUS_FINISHED;
522 float bot_cmd_barrier(entity this)
524 // 0 = no barrier, 1 = waiting, 2 = waiting finished
526 if(this.bot_barrier == 0) // initialization
528 this.bot_barrier = 1;
530 //this.colormod = '4 4 0';
533 if(this.bot_barrier == 1) // find other bots
535 FOREACH_CLIENT(it.isbot, LAMBDA(
536 if(it.bot_cmdqueuebuf_allocated)
537 if(it.bot_barrier != 1)
538 return CMD_STATUS_EXECUTING; // not all are at the barrier yet
541 // all bots hit the barrier!
543 // acknowledge barrier
544 FOREACH_CLIENT(it.isbot, LAMBDA(it.bot_barrier = 2));
546 bot_barriertime = time;
549 // if we get here, the barrier is finished
551 this.bot_barrier = 0;
552 //this.colormod = '0 0 0';
554 return CMD_STATUS_FINISHED;
557 float bot_cmd_turn(entity this)
559 this.v_angle_y = this.v_angle.y + bot_cmd.bot_cmd_parm_float;
560 this.v_angle_y = this.v_angle.y - floor(this.v_angle.y / 360) * 360;
561 return CMD_STATUS_FINISHED;
564 float bot_cmd_select_weapon(entity this)
566 float id = bot_cmd.bot_cmd_parm_float;
568 if(id < WEP_FIRST || id > WEP_LAST)
569 return CMD_STATUS_ERROR;
571 if(client_hasweapon(this, Weapons_from(id), true, false))
572 PS(this).m_switchweapon = Weapons_from(id);
574 return CMD_STATUS_ERROR;
576 return CMD_STATUS_FINISHED;
579 .int bot_cmd_condition_status;
581 const int CMD_CONDITION_NONE = 0;
582 const int CMD_CONDITION_true = 1;
583 const int CMD_CONDITION_false = 2;
584 const int CMD_CONDITION_true_BLOCK = 4;
585 const int CMD_CONDITION_false_BLOCK = 8;
587 float bot_cmd_eval(entity this, string expr)
589 // Search for numbers
590 if(IS_DIGIT(substring(expr, 0, 1)))
594 if(substring(expr, 0, 5)=="cvar.")
595 return cvar(substring(expr, 5, strlen(expr)));
603 return vlen(this.velocity);
605 return ((this.flagcarried!=NULL));
608 LOG_INFO(strcat("ERROR: Unable to convert the expression '",expr,"' into a numeric value\n"));
612 float bot_cmd_if(entity this)
614 string expr, val_a, val_b;
617 if(this.bot_cmd_condition_status != CMD_CONDITION_NONE)
619 // Only one "if" block is allowed at time
620 LOG_INFO("ERROR: Only one conditional block can be processed at time");
621 bot_clearqueue(this);
622 return CMD_STATUS_ERROR;
625 this.bot_cmd_condition_status |= CMD_CONDITION_true_BLOCK;
627 // search for operators
628 expr = bot_cmd.bot_cmd_parm_string;
630 cmpofs = strstrofs(expr,"=",0);
634 val_a = substring(expr,0,cmpofs);
635 val_b = substring(expr,cmpofs+1,strlen(expr));
637 if(bot_cmd_eval(this, val_a)==bot_cmd_eval(this, val_b))
638 this.bot_cmd_condition_status |= CMD_CONDITION_true;
640 this.bot_cmd_condition_status |= CMD_CONDITION_false;
642 return CMD_STATUS_FINISHED;
645 cmpofs = strstrofs(expr,">",0);
649 val_a = substring(expr,0,cmpofs);
650 val_b = substring(expr,cmpofs+1,strlen(expr));
652 if(bot_cmd_eval(this, val_a)>bot_cmd_eval(this, val_b))
653 this.bot_cmd_condition_status |= CMD_CONDITION_true;
655 this.bot_cmd_condition_status |= CMD_CONDITION_false;
657 return CMD_STATUS_FINISHED;
660 cmpofs = strstrofs(expr,"<",0);
664 val_a = substring(expr,0,cmpofs);
665 val_b = substring(expr,cmpofs+1,strlen(expr));
667 if(bot_cmd_eval(this, val_a)<bot_cmd_eval(this, val_b))
668 this.bot_cmd_condition_status |= CMD_CONDITION_true;
670 this.bot_cmd_condition_status |= CMD_CONDITION_false;
672 return CMD_STATUS_FINISHED;
675 if(bot_cmd_eval(this, expr))
676 this.bot_cmd_condition_status |= CMD_CONDITION_true;
678 this.bot_cmd_condition_status |= CMD_CONDITION_false;
680 return CMD_STATUS_FINISHED;
683 float bot_cmd_else(entity this)
685 this.bot_cmd_condition_status &= ~CMD_CONDITION_true_BLOCK;
686 this.bot_cmd_condition_status |= CMD_CONDITION_false_BLOCK;
687 return CMD_STATUS_FINISHED;
690 float bot_cmd_fi(entity this)
692 this.bot_cmd_condition_status = CMD_CONDITION_NONE;
693 return CMD_STATUS_FINISHED;
696 float bot_cmd_resetaim(entity this)
698 this.v_angle = '0 0 0';
699 return CMD_STATUS_FINISHED;
702 .float bot_cmd_aim_begintime;
703 .float bot_cmd_aim_endtime;
704 .vector bot_cmd_aim_begin;
705 .vector bot_cmd_aim_end;
707 float bot_cmd_aim(entity this)
710 if(this.bot_cmd_aim_endtime)
714 progress = min(1 - (this.bot_cmd_aim_endtime - time) / (this.bot_cmd_aim_endtime - this.bot_cmd_aim_begintime),1);
715 this.v_angle = this.bot_cmd_aim_begin + ((this.bot_cmd_aim_end - this.bot_cmd_aim_begin) * progress);
717 if(time>=this.bot_cmd_aim_endtime)
719 this.bot_cmd_aim_endtime = 0;
720 return CMD_STATUS_FINISHED;
723 return CMD_STATUS_EXECUTING;
726 // New aiming direction
730 parms = bot_cmd.bot_cmd_parm_string;
732 tokens = tokenizebyseparator(parms, " ");
734 if(tokens<2||tokens>3)
735 return CMD_STATUS_ERROR;
737 step = (tokens == 3) ? stof(argv(2)) : 0;
741 this.v_angle_x -= stof(argv(1));
742 this.v_angle_y += stof(argv(0));
743 return CMD_STATUS_FINISHED;
746 this.bot_cmd_aim_begin = this.v_angle;
748 this.bot_cmd_aim_end_x = this.v_angle.x - stof(argv(1));
749 this.bot_cmd_aim_end_y = this.v_angle.y + stof(argv(0));
750 this.bot_cmd_aim_end_z = 0;
752 this.bot_cmd_aim_begintime = time;
753 this.bot_cmd_aim_endtime = time + step;
755 return CMD_STATUS_EXECUTING;
758 float bot_cmd_aimtarget(entity this)
760 if(this.bot_cmd_aim_endtime)
762 return bot_cmd_aim(this);
770 parms = bot_cmd.bot_cmd_parm_string;
772 tokens = tokenizebyseparator(parms, " ");
774 e = bot_getplace(this, argv(0));
776 return CMD_STATUS_ERROR;
778 v = e.origin + (e.mins + e.maxs) * 0.5;
782 this.v_angle = vectoangles(v - (this.origin + this.view_ofs));
783 this.v_angle_x = -this.v_angle.x;
784 return CMD_STATUS_FINISHED;
787 if(tokens<1||tokens>2)
788 return CMD_STATUS_ERROR;
790 step = stof(argv(1));
792 this.bot_cmd_aim_begin = this.v_angle;
793 this.bot_cmd_aim_end = vectoangles(v - (this.origin + this.view_ofs));
794 this.bot_cmd_aim_end_x = -this.bot_cmd_aim_end.x;
796 this.bot_cmd_aim_begintime = time;
797 this.bot_cmd_aim_endtime = time + step;
799 return CMD_STATUS_EXECUTING;
804 const int BOT_CMD_KEY_NONE = 0;
805 const int BOT_CMD_KEY_FORWARD = BIT(0);
806 const int BOT_CMD_KEY_BACKWARD = BIT(1);
807 const int BOT_CMD_KEY_RIGHT = BIT(2);
808 const int BOT_CMD_KEY_LEFT = BIT(3);
809 const int BOT_CMD_KEY_JUMP = BIT(4);
810 const int BOT_CMD_KEY_ATTACK1 = BIT(5);
811 const int BOT_CMD_KEY_ATTACK2 = BIT(6);
812 const int BOT_CMD_KEY_USE = BIT(7);
813 const int BOT_CMD_KEY_HOOK = BIT(8);
814 const int BOT_CMD_KEY_CROUCH = BIT(9);
815 const int BOT_CMD_KEY_CHAT = BIT(10);
817 bool bot_presskeys(entity this)
819 this.movement = '0 0 0';
820 PHYS_INPUT_BUTTON_JUMP(this) = false;
821 PHYS_INPUT_BUTTON_CROUCH(this) = false;
822 PHYS_INPUT_BUTTON_ATCK(this) = false;
823 PHYS_INPUT_BUTTON_ATCK2(this) = false;
824 PHYS_INPUT_BUTTON_USE(this) = false;
825 PHYS_INPUT_BUTTON_HOOK(this) = false;
826 PHYS_INPUT_BUTTON_CHAT(this) = false;
828 if(this.bot_cmd_keys == BOT_CMD_KEY_NONE)
831 if(this.bot_cmd_keys & BOT_CMD_KEY_FORWARD)
832 this.movement_x = autocvar_sv_maxspeed;
833 else if(this.bot_cmd_keys & BOT_CMD_KEY_BACKWARD)
834 this.movement_x = -autocvar_sv_maxspeed;
836 if(this.bot_cmd_keys & BOT_CMD_KEY_RIGHT)
837 this.movement_y = autocvar_sv_maxspeed;
838 else if(this.bot_cmd_keys & BOT_CMD_KEY_LEFT)
839 this.movement_y = -autocvar_sv_maxspeed;
841 if(this.bot_cmd_keys & BOT_CMD_KEY_JUMP)
842 PHYS_INPUT_BUTTON_JUMP(this) = true;
844 if(this.bot_cmd_keys & BOT_CMD_KEY_CROUCH)
845 PHYS_INPUT_BUTTON_CROUCH(this) = true;
847 if(this.bot_cmd_keys & BOT_CMD_KEY_ATTACK1)
848 PHYS_INPUT_BUTTON_ATCK(this) = true;
850 if(this.bot_cmd_keys & BOT_CMD_KEY_ATTACK2)
851 PHYS_INPUT_BUTTON_ATCK2(this) = true;
853 if(this.bot_cmd_keys & BOT_CMD_KEY_USE)
854 PHYS_INPUT_BUTTON_USE(this) = true;
856 if(this.bot_cmd_keys & BOT_CMD_KEY_HOOK)
857 PHYS_INPUT_BUTTON_HOOK(this) = true;
859 if(this.bot_cmd_keys & BOT_CMD_KEY_CHAT)
860 PHYS_INPUT_BUTTON_CHAT(this) = true;
866 float bot_cmd_keypress_handler(entity this, string key, float enabled)
872 this.bot_cmd_keys = power2of(20) - 1; // >:)
874 this.bot_cmd_keys = BOT_CMD_KEY_NONE;
878 this.bot_cmd_keys |= BOT_CMD_KEY_FORWARD;
879 this.bot_cmd_keys &= ~BOT_CMD_KEY_BACKWARD;
882 this.bot_cmd_keys &= ~BOT_CMD_KEY_FORWARD;
887 this.bot_cmd_keys |= BOT_CMD_KEY_BACKWARD;
888 this.bot_cmd_keys &= ~BOT_CMD_KEY_FORWARD;
891 this.bot_cmd_keys &= ~BOT_CMD_KEY_BACKWARD;
896 this.bot_cmd_keys |= BOT_CMD_KEY_LEFT;
897 this.bot_cmd_keys &= ~BOT_CMD_KEY_RIGHT;
900 this.bot_cmd_keys &= ~BOT_CMD_KEY_LEFT;
905 this.bot_cmd_keys |= BOT_CMD_KEY_RIGHT;
906 this.bot_cmd_keys &= ~BOT_CMD_KEY_LEFT;
909 this.bot_cmd_keys &= ~BOT_CMD_KEY_RIGHT;
913 this.bot_cmd_keys |= BOT_CMD_KEY_JUMP;
915 this.bot_cmd_keys &= ~BOT_CMD_KEY_JUMP;
919 this.bot_cmd_keys |= BOT_CMD_KEY_CROUCH;
921 this.bot_cmd_keys &= ~BOT_CMD_KEY_CROUCH;
925 this.bot_cmd_keys |= BOT_CMD_KEY_ATTACK1;
927 this.bot_cmd_keys &= ~BOT_CMD_KEY_ATTACK1;
931 this.bot_cmd_keys |= BOT_CMD_KEY_ATTACK2;
933 this.bot_cmd_keys &= ~BOT_CMD_KEY_ATTACK2;
937 this.bot_cmd_keys |= BOT_CMD_KEY_USE;
939 this.bot_cmd_keys &= ~BOT_CMD_KEY_USE;
943 this.bot_cmd_keys |= BOT_CMD_KEY_HOOK;
945 this.bot_cmd_keys &= ~BOT_CMD_KEY_HOOK;
949 this.bot_cmd_keys |= BOT_CMD_KEY_CHAT;
951 this.bot_cmd_keys &= ~BOT_CMD_KEY_CHAT;
957 return CMD_STATUS_FINISHED;
960 float bot_cmd_presskey(entity this)
964 key = bot_cmd.bot_cmd_parm_string;
966 bot_cmd_keypress_handler(this, key,true);
968 return CMD_STATUS_FINISHED;
971 float bot_cmd_releasekey(entity this)
975 key = bot_cmd.bot_cmd_parm_string;
977 return bot_cmd_keypress_handler(this, key,false);
980 float bot_cmd_pause(entity this)
982 PHYS_INPUT_BUTTON_DRAG(this) = false;
983 PHYS_INPUT_BUTTON_USE(this) = false;
984 PHYS_INPUT_BUTTON_ATCK(this) = false;
985 PHYS_INPUT_BUTTON_JUMP(this) = false;
986 PHYS_INPUT_BUTTON_HOOK(this) = false;
987 PHYS_INPUT_BUTTON_CHAT(this) = false;
988 PHYS_INPUT_BUTTON_ATCK2(this) = false;
989 PHYS_INPUT_BUTTON_CROUCH(this) = false;
991 this.movement = '0 0 0';
992 this.bot_cmd_keys = BOT_CMD_KEY_NONE;
994 this.bot_exec_status |= BOT_EXEC_STATUS_PAUSED;
995 return CMD_STATUS_FINISHED;
998 float bot_cmd_moveto(entity this)
1000 return this.cmd_moveto(this, bot_cmd.bot_cmd_parm_vector);
1003 float bot_cmd_movetotarget(entity this)
1006 e = bot_getplace(this, bot_cmd.bot_cmd_parm_string);
1008 return CMD_STATUS_ERROR;
1009 return this.cmd_moveto(this, e.origin + (e.mins + e.maxs) * 0.5);
1012 float bot_cmd_resetgoal(entity this)
1014 return this.cmd_resetgoal(this);
1018 float bot_cmd_sound(entity this)
1021 f = bot_cmd.bot_cmd_parm_string;
1023 float n = tokenizebyseparator(f, " ");
1026 float chan = CH_WEAPON_B;
1027 float vol = VOL_BASE;
1028 float atten = ATTEN_MIN;
1031 sample = argv(n - 1);
1033 chan = stof(argv(0));
1035 vol = stof(argv(1));
1037 atten = stof(argv(2));
1040 _sound(this, chan, sample, vol, atten);
1042 return CMD_STATUS_FINISHED;
1046 float bot_cmd_debug_assert_canfire(entity this)
1048 float f = bot_cmd.bot_cmd_parm_float;
1050 int slot = 0; // TODO: unhardcode?
1051 .entity weaponentity = weaponentities[slot];
1052 if(this.(weaponentity).state != WS_READY)
1056 this.colormod = '0 8 8';
1057 LOG_INFO("Bot ", this.netname, " using ", this.weaponname, " wants to fire, inhibited by weaponentity state\n");
1060 else if(ATTACK_FINISHED(this, slot) > time)
1064 this.colormod = '8 0 8';
1065 LOG_INFO("Bot ", this.netname, " using ", this.weaponname, " wants to fire, inhibited by ATTACK_FINISHED (", ftos(ATTACK_FINISHED(this, slot) - time), " seconds left)\n");
1068 else if(this.tuba_note)
1072 this.colormod = '8 0 0';
1073 LOG_INFO("Bot ", this.netname, " using ", this.weaponname, " wants to fire, bot still has an active tuba note\n");
1080 this.colormod = '8 8 0';
1081 LOG_INFO("Bot ", this.netname, " using ", this.weaponname, " thinks it has fired, but apparently did not; ATTACK_FINISHED says ", ftos(ATTACK_FINISHED(this, slot) - time), " seconds left\n");
1085 return CMD_STATUS_FINISHED;
1090 void bot_command_executed(entity this, bool rm)
1097 bot_dequeuecommand(this, this.bot_cmd_execution_index);
1099 this.bot_cmd_execution_index++;
1102 void bot_setcurrentcommand(entity this)
1106 if(!this.bot_cmd_current)
1108 this.bot_cmd_current = new_pure(bot_cmd);
1111 bot_cmd = this.bot_cmd_current;
1112 if(bot_cmd.bot_cmd_index != this.bot_cmd_execution_index || this.bot_cmd_execution_index == 0)
1114 if(bot_havecommand(this, this.bot_cmd_execution_index))
1117 cmdstring = bot_readcommand(this, this.bot_cmd_execution_index);
1118 if(bot_decodecommand(cmdstring))
1120 bot_cmd.owner = this;
1121 bot_cmd.bot_cmd_index = this.bot_cmd_execution_index;
1125 // Invalid command, remove from queue
1127 bot_dequeuecommand(this, this.bot_cmd_execution_index);
1128 this.bot_cmd_execution_index++;
1136 void bot_resetqueues()
1138 FOREACH_CLIENT(it.isbot, LAMBDA(
1139 it.bot_cmd_execution_index = 0;
1141 // also, cancel all barriers
1143 for(int i = 0; i < it.bot_places_count; ++i)
1145 strunzone(it.(bot_placenames[i]));
1146 it.(bot_placenames[i]) = string_null;
1148 it.bot_places_count = 0;
1151 bot_barriertime = time;
1154 // Here we map commands to functions and deal with complex interactions between commands and execution states
1155 // NOTE: Of course you need to include your commands here too :)
1156 float bot_execute_commands_once(entity this)
1158 float status, ispressingkey;
1161 bot_setcurrentcommand(this);
1163 // if we have no bot command, better return
1164 // old logic kept pressing previously pressed keys, but that has problems
1165 // (namely, it means you cannot make a bot "normal" ever again)
1166 // to keep a bot walking for a while, use the "wait" bot command
1170 // Ignore all commands except continue when the bot is paused
1171 if(this.bot_exec_status & BOT_EXEC_STATUS_PAUSED)
1172 if(bot_cmd.bot_cmd_type!=BOT_CMD_CONTINUE)
1174 if(bot_cmd.bot_cmd_type!=BOT_CMD_NULL)
1176 bot_command_executed(this, true);
1177 LOG_INFO( "WARNING: Commands are ignored while the bot is paused. Use the command 'continue' instead.\n");
1182 // Keep pressing keys raised by the "presskey" command
1183 ispressingkey = boolean(bot_presskeys(this));
1185 // Handle conditions
1186 if (!(bot_cmd.bot_cmd_type==BOT_CMD_FI||bot_cmd.bot_cmd_type==BOT_CMD_ELSE))
1187 if(this.bot_cmd_condition_status & CMD_CONDITION_true && this.bot_cmd_condition_status & CMD_CONDITION_false_BLOCK)
1189 bot_command_executed(this, true);
1192 else if(this.bot_cmd_condition_status & CMD_CONDITION_false && this.bot_cmd_condition_status & CMD_CONDITION_true_BLOCK)
1194 bot_command_executed(this, true);
1198 // Map commands to functions
1199 switch(bot_cmd.bot_cmd_type)
1202 return ispressingkey;
1205 status = bot_cmd_pause(this);
1207 case BOT_CMD_CONTINUE:
1208 status = bot_cmd_continue(this);
1211 status = bot_cmd_wait(this);
1213 case BOT_CMD_WAIT_UNTIL:
1214 status = bot_cmd_wait_until(this);
1217 status = bot_cmd_turn(this);
1219 case BOT_CMD_MOVETO:
1220 status = bot_cmd_moveto(this);
1222 case BOT_CMD_MOVETOTARGET:
1223 status = bot_cmd_movetotarget(this);
1225 case BOT_CMD_RESETGOAL:
1226 status = bot_cmd_resetgoal(this);
1229 status = bot_cmd_cc(this);
1232 status = bot_cmd_if(this);
1235 status = bot_cmd_else(this);
1238 status = bot_cmd_fi(this);
1240 case BOT_CMD_RESETAIM:
1241 status = bot_cmd_resetaim(this);
1244 status = bot_cmd_aim(this);
1246 case BOT_CMD_AIMTARGET:
1247 status = bot_cmd_aimtarget(this);
1249 case BOT_CMD_PRESSKEY:
1250 status = bot_cmd_presskey(this);
1252 case BOT_CMD_RELEASEKEY:
1253 status = bot_cmd_releasekey(this);
1255 case BOT_CMD_SELECTWEAPON:
1256 status = bot_cmd_select_weapon(this);
1258 case BOT_CMD_IMPULSE:
1259 status = bot_cmd_impulse(this);
1261 case BOT_CMD_BARRIER:
1262 status = bot_cmd_barrier(this);
1264 case BOT_CMD_CONSOLE:
1265 localcmd(strcat(bot_cmd.bot_cmd_parm_string, "\n"));
1266 status = CMD_STATUS_FINISHED;
1269 status = bot_cmd_sound(this);
1271 case BOT_CMD_DEBUG_ASSERT_CANFIRE:
1272 status = bot_cmd_debug_assert_canfire(this);
1275 LOG_INFO(strcat("ERROR: Invalid command on queue with id '",ftos(bot_cmd.bot_cmd_type),"'\n"));
1279 if (status==CMD_STATUS_ERROR)
1280 LOG_INFO(strcat("ERROR: The command '",bot_cmd_string[bot_cmd.bot_cmd_type],"' returned an error status\n"));
1282 // Move execution pointer
1283 if(status==CMD_STATUS_EXECUTING)
1289 if(autocvar_g_debug_bot_commands)
1293 switch(bot_cmd_parm_type[bot_cmd.bot_cmd_type])
1295 case BOT_CMD_PARAMETER_FLOAT:
1296 parms = ftos(bot_cmd.bot_cmd_parm_float);
1298 case BOT_CMD_PARAMETER_STRING:
1299 parms = bot_cmd.bot_cmd_parm_string;
1301 case BOT_CMD_PARAMETER_VECTOR:
1302 parms = vtos(bot_cmd.bot_cmd_parm_vector);
1308 clientcommand(this,strcat("say ^7", bot_cmd_string[bot_cmd.bot_cmd_type]," ",parms,"\n"));
1311 bot_command_executed(this, true);
1314 if(status == CMD_STATUS_FINISHED)
1317 return CMD_STATUS_ERROR;
1320 // This function should be (the only) called directly from the bot ai loop
1321 int bot_execute_commands(entity this)
1326 f = bot_execute_commands_once(this);