home *** CD-ROM | disk | FTP | other *** search
- // Think that there are two components to a position. If I can find
- // the x,y component, I can make it move forward if the x,y hasn't changed.
-
- // Changed frames for walking
- // Added more gibbage
-
- /*
- ==============================================================================
-
- BG BOT AI
-
- ==============================================================================
- */
-
- // Prototypes
-
- float () BotFindTarget;
- float () BotFindStuff;
- void () bot_ai_stand;
- void (entity attacker, float damage) bot_pain;
- void () bot_die;
- void () BotFoundTarget;
- void () BotHuntTarget;
- void () BotFoundStuff;
- void () BotHuntStuff;
- void (float dist) bot_ai_walk;
- void (float dist) bot_ai_run;
- void (float dist) bot_ai_stuff;
- void () BotSelfDeActivate;
- void () spike_touch;
- // Frame macros
-
- $cd /raid/quake/id1/models/player_4
- $origin 0 -6 24
- $base base
- $skin skin
-
- $frame axrun1 axrun2 axrun3 axrun4 axrun5 axrun6
-
- $frame rockrun6 rockrun5 rockrun4 rockrun3 rockrun2 rockrun1
-
- //
- // standing
- //
- $frame stand1 stand2 stand3 stand4 stand5
-
- $frame axstnd1 axstnd2 axstnd3 axstnd4 axstnd5 axstnd6
- $frame axstnd7 axstnd8 axstnd9 axstnd10 axstnd11 axstnd12
-
-
- //
- // pain
- //
- $frame axpain1 axpain2 axpain3 axpain4 axpain5 axpain6
-
- $frame pain1 pain2 pain3 pain4 pain5 pain6
-
-
- //
- // death
- //
-
- $frame axdeth1 axdeth2 axdeth3 axdeth4 axdeth5 axdeth6
- $frame axdeth7 axdeth8 axdeth9
-
- $frame deatha1 deatha2 deatha3 deatha4 deatha5 deatha6 deatha7 deatha8
- $frame deatha9 deatha10 deatha11
-
- $frame deathb1 deathb2 deathb3 deathb4 deathb5 deathb6 deathb7 deathb8
- $frame deathb9
-
- $frame deathc1 deathc2 deathc3 deathc4 deathc5 deathc6 deathc7 deathc8
- $frame deathc9 deathc10 deathc11 deathc12 deathc13 deathc14 deathc15
-
- $frame deathd1 deathd2 deathd3 deathd4 deathd5 deathd6 deathd7
- $frame deathd8 deathd9
-
- $frame deathe1 deathe2 deathe3 deathe4 deathe5 deathe6 deathe7
- $frame deathe8 deathe9
-
- //
- // attacks
- //
-
- $frame axatt1 axatt2 axatt3 axatt4 axatt5 axatt6
-
- $frame stand1 stand2 stand3 stand4 stand5
-
- $frame stand1 stand2 stand3 stand4 stand5
-
- $frame rockatt1 rockatt2 rockatt3 rockatt4 rockatt5 rockatt6
-
- $frame stand1 stand2 stand3 stand4 stand5
-
- $frame stand1 stand2 stand3 stand4 stand5
-
- $frame stand1 stand2 stand3 stand4 stand5
-
- $frame stand1 stand2 stand3 stand4 stand5
-
- $frame stand1 stand2 stand3 stand4 stand5
-
- void() bot_stand1 =[ $stand1, bot_stand2 ] {bot_ai_stand();};
- void() bot_stand2 =[ $stand2, bot_stand3 ] {bot_ai_stand();};
- void() bot_stand3 =[ $stand3, bot_stand4 ] {bot_ai_stand();};
- void() bot_stand4 =[ $stand4, bot_stand5 ] {bot_ai_stand();};
- void() bot_stand5 =[ $stand5, bot_stand1 ] {bot_ai_stand();};
-
- void() bot_walk1 =[ $axrun1, bot_walk2 ] {bot_ai_walk(14);};
- void() bot_walk2 =[ $axrun2, bot_walk3 ] {bot_ai_walk(12);};
- void() bot_walk3 =[ $axrun3, bot_walk4 ] {bot_ai_walk(15);};
- void() bot_walk4 =[ $axrun4, bot_walk5 ] {bot_ai_walk(10);};
- void() bot_walk5 =[ $axrun5, bot_walk6 ] {bot_ai_walk(19);};
- void() bot_walk6 =[ $axrun6, bot_walk7 ] {bot_ai_walk(14);};
- void() bot_walk7 =[ $axrun1, bot_walk8 ] {bot_ai_walk(13);};
- void() bot_walk8 =[ $axrun2, bot_walk9 ] {bot_ai_walk(17);};
- void() bot_walk9 =[ $axrun3, bot_walk10 ] {bot_ai_walk(12);};
- void() bot_walk10 =[ $axrun4, bot_walk11 ] {bot_ai_walk(20);};
- void() bot_walk11 =[ $axrun5, bot_walk12 ] {bot_ai_walk(10);};
- void() bot_walk12 =[ $axrun6, bot_walk1 ] {bot_ai_walk(14);};
-
- /*
- void() bot_run1 =[ $rockrun1, bot_run2 ] {bot_ai_run(18);};
- void() bot_run2 =[ $rockrun2, bot_run3 ] {bot_ai_run(14);};
- void() bot_run3 =[ $rockrun3, bot_run4 ] {bot_ai_run(9);};
- void() bot_run4 =[ $rockrun4, bot_run5 ] {bot_ai_run(12);};
- void() bot_run5 =[ $rockrun5, bot_run6 ] {bot_ai_run(14);};
- void() bot_run6 =[ $rockrun6, bot_run1 ] {bot_ai_run(20);};
- */ // old one
-
- void() bot_run1 =[ $axrun1, bot_run2 ] {bot_ai_run(18);};
- void() bot_run2 =[ $axrun2, bot_run3 ] {bot_ai_run(14);};
- void() bot_run3 =[ $axrun3, bot_run4 ] {bot_ai_run(9);};
- void() bot_run4 =[ $axrun4, bot_run5 ] {bot_ai_run(12);};
- void() bot_run5 =[ $axrun5, bot_run6 ] {bot_ai_run(14);};
- void() bot_run6 =[ $axrun6, bot_run1 ] {bot_ai_run(20);};
-
- void() bot_stuff1 =[ $axrun1, bot_stuff2 ] {bot_ai_stuff(18);};
- void() bot_stuff2 =[ $axrun2, bot_stuff3 ] {bot_ai_stuff(14);};
- void() bot_stuff3 =[ $axrun3, bot_stuff4 ] {bot_ai_stuff(7);};
- void() bot_stuff4 =[ $axrun4, bot_stuff5 ] {bot_ai_stuff(12);};
- void() bot_stuff5 =[ $axrun5, bot_stuff6 ] {bot_ai_stuff(14);};
- void() bot_stuff6 =[ $axrun6, bot_walk1 ] {bot_ai_stuff(11);};
-
- void() bot_atk1 =[ $axatt1, bot_atk2 ] {ai_face();};
- void() bot_atk2 =[ $axatt2, bot_atk3 ] {ai_face();};
- void() bot_atk3 =[ $axatt3, bot_atk4 ] {ai_face();};
- void() bot_atk4 =[ $axatt4, bot_atk5 ] {}; //{bot_attack();};
- void() bot_atk5 =[ $axatt5, bot_atk6 ] {ai_face();};
- void() bot_atk6 =[ $axatt6, bot_run1 ]
- {
- ai_face();
- // BotCheckRefire (bot_atk1);
- };
-
- void() bot_pain1 =[ $axpain1 , bot_pain2 ] {};
- void() bot_pain2 =[ $axpain2 , bot_pain3 ] {};
- void() bot_pain3 =[ $axpain4 , bot_pain4 ] {ai_painforward(2);};
- void() bot_pain4 =[ $axpain3 , bot_pain5 ] {};
- void() bot_pain5 =[ $axpain4 , bot_pain6 ] {ai_pain(1);};
- void() bot_pain6 =[ $axpain6 , bot_run1 ] {};
-
- void() bot_die1 =[ $axdeth1, bot_die2 ] {};
- void() bot_die2 =[ $axdeth2, bot_die3 ] {};
- void() bot_die3 =[ $axdeth3, bot_die4 ]
- {
- self.solid = SOLID_NOT;
- DropBackpack();
- };
- void() bot_die4 =[ $axdeth4, bot_die5 ] {ai_forward(14);};
- void() bot_die5 =[ $axdeth5, bot_die6 ] {ai_forward(2);};
- void() bot_die6 =[ $axdeth6, bot_die7 ] {};
- void() bot_die7 =[ $axdeth7, bot_die8 ] {};
- void() bot_die8 =[ $axdeth8, bot_die9 ] {};
- void() bot_die9 =[ $axdeth9, bot_die10 ] {};
- void() bot_die10 =[ $axdeth9, bot_die11 ] {};
- void() bot_die11 =[ $axdeth9, bot_die11 ] {BotSelfDeActivate();};
-
- void() bot_fdie1 =[ $axdeth1, bot_fdie2 ] {};
- void() bot_fdie2 =[ $axdeth2, bot_fdie3 ] {};
- void() bot_fdie3 =[ $axdeth3, bot_fdie4 ]
- {
- self.solid = SOLID_NOT;
- DropBackpack();
- };
- void() bot_fdie4 =[ $axdeth4, bot_fdie5 ] {};
- void() bot_fdie5 =[ $axdeth5, bot_fdie6 ] {};
- void() bot_fdie6 =[ $axdeth6, bot_fdie7 ] {};
- void() bot_fdie7 =[ $axdeth7, bot_fdie8 ] {};
- void() bot_fdie8 =[ $axdeth8, bot_fdie9 ] {};
- void() bot_fdie9 =[ $axdeth9, bot_fdie9 ] {BotSelfDeActivate();};
-
- void() BotJump =
- { local float r;
- if (self.flags & FL_ONGROUND)
- {
- // Code ala David Wiedenmann THANK YOU!!!!!!!!
- self.flags=self.flags-(self.flags & FL_ONGROUND);
- // next line is for horizontal
- r = random();
-
- if (r < 0.25)
- self.velocity=self.velocity+(v_forward* -150);
- else
- self.velocity=self.velocity+(v_forward* 150);
- // next line is for vertical
- self.velocity_z=self.velocity_z+275;
- self.velocity_y=self.velocity_y+100;
- // sound(self,CHAN_BODY,"player/plyrjmp8.wav",1,ATTN_NORM);
- }
- };
-
- // Thanks to WACko for CheckJump!
- void() CheckJump =
- {
- self.lastpos=self.origin;
- movetogoal (1);
- if (self.lastpos == self.origin) BotJump();
-
- };
- float() BotFindTarget =
- {
-
-
- local entity head, selected;
- local float dist;
- dist = 1500; // awareness radius of bot, increasing it slows down game
- selected = world;
-
- head = findradius(self.origin, 1500);
- while(head)
- { if (head.classname == "player")
- // if (((deathmatch) && (!(head.flags & FL_NOTARGET) && ((head.flags & FL_CLIENT) || (head.flags & FL_MONSTER)))) ||
- // ((!deathmatch) && (!(head.flags & FL_NOTARGET) && (head.flags & FL_MONSTER))))
- // if (((teamplay) && (head.team != self.team)) || (!teamplay))
- if ((head.health > 1) && (head != self))
- if (!(head.items & IT_INVISIBILITY))
- if (visible(head))
- if (trace_plane_dist < dist)
- if ((head.health > 0) && (head !=self))
- {
- selected = head;
- dist = trace_plane_dist;
- }
- head = head.chain;
- }
- self.enemy = selected;
-
- if (self.enemy == world)
- return FALSE;
- else
- {
- BotFoundTarget();
- return TRUE;
- }
-
- };
-
- // BG Bot - begin hack to check for items
- float() BotFindStuff =
- {
- local entity head, selected;
- local float dist;
- dist = 50;
- selected = world;
-
- head = findradius(self.origin, 50);
- while(head)
- {
- if ((head.classname == "weapon_supernailgun") ||
- (head.classname == "weapon_supershotgun") ||
- (head.classname == "weapon_rocketlauncher") ||
- (head.classname == "weapon_nailgun") ||
- (head.classname == "backpack") ||
- ((self.ammo_shells < 100) && (head.classname == "botshells")) ||
- ((self.ammo_nails < 200) && (head.classname == "botnails")) ||
- ((self.ammo_rockets < 100) && (head.classname == "botrock")) ||
- (head.classname == "item_armor1") ||
- (head.classname == "item_armor2") ||
- (head.classname == "item_armorInv") ||
- ((head.healtype == 1) && (self.health < 100)) ||
- ((head.healtype == 2) && (self.health < 100)))
- if (visible(head))
- if (trace_plane_dist < dist)
- {
- selected = head;
- dist = trace_plane_dist;
- }
- head = head.chain;
- }
- self.stuff = selected;
-
- if (self.stuff == world)
- return FALSE;
- else
- {
- BotFoundStuff();
- return TRUE;
- }
- };
- // BG Bot - end hack to check for items
-
- //=============================================================
- // bot_ai_stand - bot stands in place until target acquired,
- // and starts to walk if pausetime has expired
- //=============================================================
- void() bot_ai_stand =
- {
- if (BotFindTarget ())
- return;
-
- if (BotFindStuff ())
- return;
-
- self.th_walk ();
- };
-
-
- //=============================================================
- // bot_pain
- //=============================================================
- void(entity attacker, float damage) bot_pain =
- {
- local float r;
- local entity oldself;
-
- r = rint((random() * 5) + 1);
- if (self.pain_finished > time)
- return;
-
-
- if (r == 1)
- sound (self, CHAN_VOICE, "player/pain1.wav", 1, ATTN_NORM);
- else if (r == 2)
- sound (self, CHAN_VOICE, "player/pain2.wav", 1, ATTN_NORM);
- else if (r == 3)
- sound (self, CHAN_VOICE, "player/pain3.wav", 1, ATTN_NORM);
- else if (r == 4)
- sound (self, CHAN_VOICE, "player/pain4.wav", 1, ATTN_NORM);
- else if (r == 5)
- sound (self, CHAN_VOICE, "player/pain5.wav", 1, ATTN_NORM);
- else
- sound (self, CHAN_VOICE, "player/pain6.wav", 1, ATTN_NORM);
-
- self.pain_finished = time + 1;
- bot_pain1 ();
-
- };
-
- //=============================================================
- // bot_die
- //=============================================================
- void() bot_die =
- {
- local string blah;
- blah = ftos(self.frags);
-
- if (deathmatch)
- {
- bprint(self.netname);
- bprint(" ");
- bprint("died with");
- bprint(" ");
- bprint(blah);
- bprint(" ");
- if (self.frags == 1)
- bprint("frag!\n");
- else
- bprint("frags!\n");
- }
-
- if (self.health < -40)
- {
- GibPlayer ();
- if (deathmatch)
- botrespawn();
- return;
- }
-
- sound (self, CHAN_VOICE, "player/death1.wav", 1, ATTN_NORM);
- if (random() > 0.5)
- bot_die1 ();
- else
- bot_fdie1 ();
-
- // death frame sequence includes bot deactivation
- };
-
- //=============================================================
- // BotTarget
- //=============================================================
- void() BotHuntTarget =
- {
- self.goalentity = self.enemy;
- self.think = self.th_run;
- self.ideal_yaw = vectoyaw(self.enemy.origin - self.origin);
- self.nextthink = time + 0.1;
- SUB_AttackFinished (0.1); // wait a while before first attack
- };
-
- //=============================================================
- // BotHuntStuff - Look for items
- //=============================================================
- void() BotHuntStuff =
- {
- self.goalentity = self.stuff;
- self.think = self.th_stuff;
- if (CheckAnyAttack ())
- return;
- self.ideal_yaw = vectoyaw(self.stuff.origin - self.origin);
- self.nextthink = time + 0.1;
- };
-
-
- //=============================================================
- // BotFoundTarget
- //=============================================================
- void() BotFoundTarget =
- {
- local float f_dist;
- local string s_dist;
- f_dist = vlen (self.enemy.origin - self.origin);
- s_dist = ftos (f_dist);
-
- self.show_hostile = time + 1; // wake up other monsters
-
- BotHuntTarget ();
- };
-
- //=============================================================
- // BotFoundStuff - Items
- //=============================================================
- void() BotFoundStuff =
- {
- local float f_dist;
- local string s_dist;
- f_dist = vlen (self.stuff.origin - self.origin);
- s_dist = ftos (f_dist);
-
- BotHuntStuff ();
- };
-
-
- //=============================================================
- // bot_ai_walk - bot is walking, looking for enemies
- //=============================================================
- void(float dist) bot_ai_walk =
- {
- if (BotFindTarget ())
- return;
-
- if (BotFindStuff ())
- return;
- traceline (self.origin, self.origin + '0 20 0', FALSE, self);
- if (trace_plane_dist < 0.02)
- {
- self.angles_y = self.angles_y - 11.5;
- }
- CheckJump();
- self.lastpos=self.origin;
- movetogoal (dist);
- };
-
-
- //=============================================================
- // bot_ai_run - still needs a little work
- //=============================================================
- void(float dist) bot_ai_run =
- {
- local float r,f,rs;
- local vector delta;
- local float axis;
- local float direct, ang_rint, ang_floor, ang_ceil;
-
- movedist = dist;
-
- if (self.enemy.health <= 0)
- {
- self.enemy = world;
- if (self.oldenemy.health > 0)
- {
- self.enemy = self.oldenemy;
- BotHuntTarget ();
- }
- else
- {
- if (BotFindTarget())
- return;
- else
- {
- self.th_walk ();
- return;
- }
- }
- }
-
- enemy_vis = visible(self.enemy);
- if (enemy_vis)
- self.search_time = time+15; // used to be +5
-
- enemy_infront = infront(self.enemy);
- enemy_range = range(self.enemy);
- enemy_yaw = vectoyaw(self.enemy.origin - self.origin);
-
- if (self.attack_state == AS_MISSILE)
- {
- ai_run_missile ();
- return;
- if (self.lastpos == self.origin) BotJump();
-
- }
-
- // if (CheckAnyAttack ())
- // return;
-
- r = random();
-
- if (r < 0.05)
- {
- BotJump();
- }
- if (self.watertype == CONTENT_LAVA)
- {
- bot_die();
- }
- if (self.attack_state == AS_SLIDING)
- {
- ai_run_slide ();
- return;
-
- }
-
- rs = rint((random() * 400) + 1);
-
- if (rs ==1)
- sound(self,CHAN_BODY,"noshoot.wav",1,ATTN_NORM);
- if (rs ==2)
- sound(self,CHAN_BODY,"agh1.wav",1,ATTN_NORM);
- if (rs ==3)
- sound(self,CHAN_BODY,"agh2.wav",1,ATTN_NORM);
- if (rs ==4)
- sound(self,CHAN_BODY,"runaway.wav",1,ATTN_NORM);
- if (rs ==5)
- sound(self,CHAN_BODY,"helpme.wav",1,ATTN_NORM);
-
-
- CheckJump();
- movetogoal (dist); // done in C code...
- };
-
- //=============================================================
- // bot_ai_stuff - crappy hack
- //=============================================================
- void(float dist) bot_ai_stuff =
- {
- local vector delta;
- local float axis;
- local float direct, ang_rint, ang_floor, ang_ceil;
-
- movedist = dist;
-
- enemy_vis = visible(self.stuff);
- if (enemy_vis)
- self.search_time = time + 5;
-
- enemy_infront = infront(self.stuff);
- enemy_range = range(self.stuff);
- enemy_yaw = vectoyaw(self.stuff.origin - self.origin);
-
- movetogoal (dist); // done in C code...
- };
-
-
- //=============================================================
- // BotSelfDeActivate - Bot deactivates itself
- //=============================================================
- void () BotSelfDeActivate =
- {
- self.solid = SOLID_NOT;
- self.deadflag = DEAD_DEAD;
- if (deathmatch)
- botrespawn();
- };
-