]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/bot/aim.qc
Merge remote branch 'origin/master' into terencehill/centerprint_stuff
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / bot / aim.qc
1
2 entity ka_ball;
3 // traces multiple trajectories to find one that will impact the target
4 // 'end' vector is the place it aims for,
5 // returns TRUE only if it hit targ (don't target non-solid entities)
6
7 float findtrajectorywithleading(vector org, vector m1, vector m2, entity targ, float shotspeed, float shotspeedupward, float maxtime, float shotdelay, entity ignore)
8 {
9         local float c, savesolid, shottime;
10         local vector dir, end, v, o;
11         if (shotspeed < 1)
12                 return FALSE; // could cause division by zero if calculated
13         if (targ.solid < SOLID_BBOX) // SOLID_NOT and SOLID_TRIGGER
14                 return FALSE; // could never hit it
15         if (!tracetossent)
16                 tracetossent = spawn();
17         tracetossent.owner = ignore;
18         setsize(tracetossent, m1, m2);
19         savesolid = targ.solid;
20         targ.solid = SOLID_NOT;
21         o = (targ.absmin + targ.absmax) * 0.5;
22         shottime = ((vlen(o - org) / shotspeed) + shotdelay);
23         v = targ.velocity * shottime + o;
24         tracebox(o, targ.mins, targ.maxs, v, FALSE, targ);
25         v = trace_endpos;
26         end = v + (targ.mins + targ.maxs) * 0.5;
27         if ((vlen(end - org) / shotspeed + 0.2) > maxtime)
28         {
29                 // out of range
30                 targ.solid = savesolid;
31                 return FALSE;
32         }
33
34         if (!tracetossfaketarget)
35                 tracetossfaketarget = spawn();
36         tracetossfaketarget.solid = savesolid;
37         tracetossfaketarget.movetype = targ.movetype;
38         setmodel(tracetossfaketarget, targ.model); // no low precision
39         tracetossfaketarget.model = targ.model;
40         tracetossfaketarget.modelindex = targ.modelindex;
41         setsize(tracetossfaketarget, targ.mins, targ.maxs);
42         setorigin(tracetossfaketarget, v);
43
44         c = 0;
45         dir = normalize(end - org);
46         while (c < 10) // 10 traces
47         {
48                 setorigin(tracetossent, org); // reset
49                 tracetossent.velocity = findtrajectory_velocity = normalize(dir) * shotspeed + shotspeedupward * '0 0 1';
50                 tracetoss(tracetossent, ignore); // love builtin functions...
51                 if (trace_ent == tracetossfaketarget) // done
52                 {
53                         targ.solid = savesolid;
54
55                         // make it disappear
56                         tracetossfaketarget.solid = SOLID_NOT;
57                         tracetossfaketarget.movetype = MOVETYPE_NONE;
58                         tracetossfaketarget.model = "";
59                         tracetossfaketarget.modelindex = 0;
60                         // relink to remove it from physics considerations
61                         setorigin(tracetossfaketarget, v);
62
63                         return TRUE;
64                 }
65                 dir_z = dir_z + 0.1; // aim up a little more
66                 c = c + 1;
67         }
68         targ.solid = savesolid;
69
70         // make it disappear
71         tracetossfaketarget.solid = SOLID_NOT;
72         tracetossfaketarget.movetype = MOVETYPE_NONE;
73         tracetossfaketarget.model = "";
74         tracetossfaketarget.modelindex = 0;
75         // relink to remove it from physics considerations
76         setorigin(tracetossfaketarget, v);
77
78         // leave a valid one even if it won't reach
79         findtrajectory_velocity = normalize(end - org) * shotspeed + shotspeedupward * '0 0 1';
80         return FALSE;
81 };
82
83 void lag_update()
84 {
85         if (self.lag1_time) if (time > self.lag1_time) {self.lag_func(self.lag1_time, self.lag1_float1, self.lag1_float2, self.lag1_entity1, self.lag1_vec1, self.lag1_vec2, self.lag1_vec3, self.lag1_vec4);self.lag1_time = 0;}
86         if (self.lag2_time) if (time > self.lag2_time) {self.lag_func(self.lag2_time, self.lag2_float1, self.lag2_float2, self.lag2_entity1, self.lag2_vec1, self.lag2_vec2, self.lag2_vec3, self.lag2_vec4);self.lag2_time = 0;}
87         if (self.lag3_time) if (time > self.lag3_time) {self.lag_func(self.lag3_time, self.lag3_float1, self.lag3_float2, self.lag3_entity1, self.lag3_vec1, self.lag3_vec2, self.lag3_vec3, self.lag3_vec4);self.lag3_time = 0;}
88         if (self.lag4_time) if (time > self.lag4_time) {self.lag_func(self.lag4_time, self.lag4_float1, self.lag4_float2, self.lag4_entity1, self.lag4_vec1, self.lag4_vec2, self.lag4_vec3, self.lag4_vec4);self.lag4_time = 0;}
89         if (self.lag5_time) if (time > self.lag5_time) {self.lag_func(self.lag5_time, self.lag5_float1, self.lag5_float2, self.lag5_entity1, self.lag5_vec1, self.lag5_vec2, self.lag5_vec3, self.lag5_vec4);self.lag5_time = 0;}
90 };
91
92 float lag_additem(float t, float f1, float f2, entity e1, vector v1, vector v2, vector v3, vector v4)
93 {
94         if (self.lag1_time == 0) {self.lag1_time = t;self.lag1_float1 = f1;self.lag1_float2 = f2;self.lag1_entity1 = e1;self.lag1_vec1 = v1;self.lag1_vec2 = v2;self.lag1_vec3 = v3;self.lag1_vec4 = v4;return TRUE;}
95         if (self.lag2_time == 0) {self.lag2_time = t;self.lag2_float1 = f1;self.lag2_float2 = f2;self.lag2_entity1 = e1;self.lag2_vec1 = v1;self.lag2_vec2 = v2;self.lag2_vec3 = v3;self.lag2_vec4 = v4;return TRUE;}
96         if (self.lag3_time == 0) {self.lag3_time = t;self.lag3_float1 = f1;self.lag3_float2 = f2;self.lag3_entity1 = e1;self.lag3_vec1 = v1;self.lag3_vec2 = v2;self.lag3_vec3 = v3;self.lag3_vec4 = v4;return TRUE;}
97         if (self.lag4_time == 0) {self.lag4_time = t;self.lag4_float1 = f1;self.lag4_float2 = f2;self.lag4_entity1 = e1;self.lag4_vec1 = v1;self.lag4_vec2 = v2;self.lag4_vec3 = v3;self.lag4_vec4 = v4;return TRUE;}
98         if (self.lag5_time == 0) {self.lag5_time = t;self.lag5_float1 = f1;self.lag5_float2 = f2;self.lag5_entity1 = e1;self.lag5_vec1 = v1;self.lag5_vec2 = v2;self.lag5_vec3 = v3;self.lag5_vec4 = v4;return TRUE;}
99         // no room for it (what is the best thing to do here??)
100         return FALSE;
101 };
102
103 float bot_shouldattack(entity e)
104 {
105         if (e.team == self.team)
106         {
107                 if (e == self)
108                         return FALSE;
109                 if (teamplay)
110                 if (e.team != 0)
111                         return FALSE;
112         }
113
114         if(g_freezetag)
115                 if(e.freezetag_frozen)
116                         return FALSE;
117
118         // If neither player has ball then don't attack unless the ball is on the
119         // ground.
120         if (g_keepaway)
121                 if (!e.ballcarried && !self.ballcarried && ka_ball.owner)
122                         return FALSE;
123
124         if(teamplay)
125         {
126                 if(e.team==0)
127                         return FALSE;
128         }
129         else if(bot_ignore_bots)
130                 if(clienttype(e) == CLIENTTYPE_BOT)
131                         return FALSE;
132
133         if (!e.takedamage)
134                 return FALSE;
135         if (e.deadflag)
136                 return FALSE;
137         if (e.BUTTON_CHAT)
138                 return FALSE;
139         if(g_minstagib)
140         if(e.items & IT_STRENGTH)
141                 return FALSE;
142         if(e.flags & FL_NOTARGET)
143                 return FALSE;
144         return TRUE;
145 };
146
147 void bot_lagfunc(float t, float f1, float f2, entity e1, vector v1, vector v2, vector v3, vector v4)
148 {
149         if(self.flags & FL_INWATER)
150         {
151                 self.bot_aimtarg = world;
152                 return;
153         }
154         self.bot_aimtarg = e1;
155         self.bot_aimlatency = self.ping; // FIXME?  Shouldn't this be in the lag item?
156         self.bot_aimselforigin = v1;
157         self.bot_aimselfvelocity = v2;
158         self.bot_aimtargorigin = v3;
159         self.bot_aimtargvelocity = v4;
160         if(skill <= 0)
161                 self.bot_canfire = (random() < 0.8);
162         else if(skill <= 1)
163                 self.bot_canfire = (random() < 0.9);
164         else if(skill <= 2)
165                 self.bot_canfire = (random() < 0.95);
166         else
167                 self.bot_canfire = 1;
168 };
169
170 float bot_aimdir(vector v, float maxfiredeviation)
171 {
172         local float dist, delta_t, blend;
173         local vector desiredang, diffang;
174
175         //dprint("aim ", self.netname, ": old:", vtos(self.v_angle));
176         // make sure v_angle is sane first
177         self.v_angle_y = self.v_angle_y - floor(self.v_angle_y / 360) * 360;
178         self.v_angle_z = 0;
179
180         // get the desired angles to aim at
181         //dprint(" at:", vtos(v));
182         v = normalize(v);
183         //te_lightning2(world, self.origin + self.view_ofs, self.origin + self.view_ofs + v * 200);
184         if (time >= self.bot_badaimtime)
185         {
186                 self.bot_badaimtime = max(self.bot_badaimtime + 0.3, time);
187                 self.bot_badaimoffset = randomvec() * bound(0, 5 - 0.5 * (skill+self.bot_offsetskill), 5) * autocvar_bot_ai_aimskill_offset;
188         }
189         desiredang = vectoangles(v) + self.bot_badaimoffset;
190         //dprint(" desired:", vtos(desiredang));
191         if (desiredang_x >= 180)
192                 desiredang_x = desiredang_x - 360;
193         desiredang_x = bound(-90, 0 - desiredang_x, 90);
194         desiredang_z = self.v_angle_z;
195         //dprint(" / ", vtos(desiredang));
196
197         //// pain throws off aim
198         //if (self.bot_painintensity)
199         //{
200         //      // shake from pain
201         //      desiredang = desiredang + randomvec() * self.bot_painintensity * 0.2;
202         //}
203
204         // calculate turn angles
205         diffang = (desiredang - self.bot_olddesiredang);
206         // wrap yaw turn
207         diffang_y = diffang_y - floor(diffang_y / 360) * 360;
208         if (diffang_y >= 180)
209                 diffang_y = diffang_y - 360;
210         self.bot_olddesiredang = desiredang;
211         //dprint(" diff:", vtos(diffang));
212
213         delta_t = time-self.bot_prevaimtime;
214         self.bot_prevaimtime = time;
215         // Here we will try to anticipate the comming aiming direction
216         self.bot_1st_order_aimfilter= self.bot_1st_order_aimfilter
217                 + (diffang * (1 / delta_t)    - self.bot_1st_order_aimfilter) * bound(0, autocvar_bot_ai_aimskill_order_filter_1st,1);
218         self.bot_2nd_order_aimfilter= self.bot_2nd_order_aimfilter
219                 + (self.bot_1st_order_aimfilter - self.bot_2nd_order_aimfilter) * bound(0, autocvar_bot_ai_aimskill_order_filter_2nd,1);
220         self.bot_3th_order_aimfilter= self.bot_3th_order_aimfilter
221                 + (self.bot_2nd_order_aimfilter - self.bot_3th_order_aimfilter) * bound(0, autocvar_bot_ai_aimskill_order_filter_3th,1);
222         self.bot_4th_order_aimfilter= self.bot_4th_order_aimfilter
223                 + (self.bot_3th_order_aimfilter - self.bot_4th_order_aimfilter) * bound(0, autocvar_bot_ai_aimskill_order_filter_4th,1);
224         self.bot_5th_order_aimfilter= self.bot_5th_order_aimfilter
225                 + (self.bot_4th_order_aimfilter - self.bot_5th_order_aimfilter) * bound(0, autocvar_bot_ai_aimskill_order_filter_5th,1);
226
227         //blend = (bound(0,skill,10)*0.1)*pow(1-bound(0,skill,10)*0.05,2.5)*5.656854249; //Plot formule before changing !
228         blend = bound(0,skill+self.bot_aimskill,10)*0.1;
229         desiredang = desiredang + blend *
230         (
231                   self.bot_1st_order_aimfilter * autocvar_bot_ai_aimskill_order_mix_1st
232                 + self.bot_2nd_order_aimfilter * autocvar_bot_ai_aimskill_order_mix_2nd
233                 + self.bot_3th_order_aimfilter * autocvar_bot_ai_aimskill_order_mix_3th
234                 + self.bot_4th_order_aimfilter * autocvar_bot_ai_aimskill_order_mix_4th
235                 + self.bot_5th_order_aimfilter * autocvar_bot_ai_aimskill_order_mix_5th
236         );
237
238         // calculate turn angles
239         diffang = desiredang - self.bot_mouseaim;
240         // wrap yaw turn
241         diffang_y = diffang_y - floor(diffang_y / 360) * 360;
242         if (diffang_y >= 180)
243                 diffang_y = diffang_y - 360;
244         //dprint(" diff:", vtos(diffang));
245
246         if (time >= self.bot_aimthinktime)
247         {
248                 self.bot_aimthinktime = max(self.bot_aimthinktime + 0.5 - 0.05*(skill+self.bot_thinkskill), time);
249                 self.bot_mouseaim = self.bot_mouseaim + diffang * (1-random()*0.1*bound(1,10-(skill+self.bot_thinkskill),10));
250         }
251
252         //self.v_angle = self.v_angle + diffang * bound(0, r * frametime * (skill * 0.5 + 2), 1);
253
254         diffang = self.bot_mouseaim - desiredang;
255         // wrap yaw turn
256         diffang_y = diffang_y - floor(diffang_y / 360) * 360;
257         if (diffang_y >= 180)
258                 diffang_y = diffang_y - 360;
259         desiredang = desiredang + diffang * bound(0,autocvar_bot_ai_aimskill_think,1);
260
261         // calculate turn angles
262         diffang = desiredang - self.v_angle;
263         // wrap yaw turn
264         diffang_y = diffang_y - floor(diffang_y / 360) * 360;
265         if (diffang_y >= 180)
266                 diffang_y = diffang_y - 360;
267         //dprint(" diff:", vtos(diffang));
268
269         // jitter tracking
270         dist = vlen(diffang);
271         //diffang = diffang + randomvec() * (dist * 0.05 * (3.5 - bound(0, skill, 3)));
272
273         // turn
274         local float r, fixedrate, blendrate;
275         fixedrate = autocvar_bot_ai_aimskill_fixedrate / bound(1,dist,1000);
276         blendrate = autocvar_bot_ai_aimskill_blendrate;
277         r = max(fixedrate, blendrate);
278         //self.v_angle = self.v_angle + diffang * bound(frametime, r * frametime * (2+skill*skill*0.05-random()*0.05*(10-skill)), 1);
279         self.v_angle = self.v_angle + diffang * bound(delta_t, r * delta_t * (2+pow(skill+self.bot_mouseskill,3)*0.005-random()), 1);
280         self.v_angle = self.v_angle * bound(0,autocvar_bot_ai_aimskill_mouse,1) + desiredang * bound(0,(1-autocvar_bot_ai_aimskill_mouse),1);
281         //self.v_angle = self.v_angle + diffang * bound(0, r * frametime * (skill * 0.5 + 2), 1);
282         //self.v_angle = self.v_angle + diffang * (1/ blendrate);
283         self.v_angle_z = 0;
284         self.v_angle_y = self.v_angle_y - floor(self.v_angle_y / 360) * 360;
285         //dprint(" turn:", vtos(self.v_angle));
286
287         makevectors(self.v_angle);
288         shotorg = self.origin + self.view_ofs;
289         shotdir = v_forward;
290
291         //dprint(" dir:", vtos(v_forward));
292         //te_lightning2(world, shotorg, shotorg + shotdir * 100);
293
294         // calculate turn angles again
295         //diffang = desiredang - self.v_angle;
296         //diffang_y = diffang_y - floor(diffang_y / 360) * 360;
297         //if (diffang_y >= 180)
298         //      diffang_y = diffang_y - 360;
299
300         //dprint("e ", vtos(diffang), " < ", ftos(maxfiredeviation), "\n");
301
302         // decide whether to fire this time
303         // note the maxfiredeviation is in degrees so this has to convert to radians first
304         //if ((normalize(v) * shotdir) >= cos(maxfiredeviation * (3.14159265358979323846 / 180)))
305         if ((normalize(v) * shotdir) >= cos(maxfiredeviation * (3.14159265358979323846 / 180)))
306         if (vlen(trace_endpos-shotorg) < 500+500*bound(0, skill+self.bot_aggresskill, 10) || random()*random()>bound(0,(skill+self.bot_aggresskill)*0.05,1))
307                 self.bot_firetimer = time + bound(0.1, 0.5-(skill+self.bot_aggresskill)*0.05, 0.5);
308         //traceline(shotorg,shotorg+shotdir*1000,FALSE,world);
309         //dprint(ftos(maxfiredeviation),"\n");
310         //dprint(" diff:", vtos(diffang), "\n");
311
312         return self.bot_canfire && (time < self.bot_firetimer);
313 };
314
315 vector bot_shotlead(vector targorigin, vector targvelocity, float shotspeed, float shotdelay)
316 {
317         // Try to add code here that predicts gravity effect here, no clue HOW to though ... well not yet atleast...
318         return targorigin + targvelocity * (shotdelay + vlen(targorigin - shotorg) / shotspeed);
319 };
320
321 float bot_aim(float shotspeed, float shotspeedupward, float maxshottime, float applygravity)
322 {
323         local float f, r;
324         local vector v;
325         /*
326         eprint(self);
327         dprint("bot_aim(", ftos(shotspeed));
328         dprint(", ", ftos(shotspeedupward));
329         dprint(", ", ftos(maxshottime));
330         dprint(", ", ftos(applygravity));
331         dprint(");\n");
332         */
333         shotspeed *= g_weaponspeedfactor;
334         shotspeedupward *= g_weaponspeedfactor;
335         if (!shotspeed)
336         {
337                 dprint("bot_aim: WARNING: weapon ", W_Name(self.weapon), " shotspeed is zero!\n");
338                 shotspeed = 1000000;
339         }
340         if (!maxshottime)
341         {
342                 dprint("bot_aim: WARNING: weapon ", W_Name(self.weapon), " maxshottime is zero!\n");
343                 maxshottime = 1;
344         }
345         makevectors(self.v_angle);
346         shotorg = self.origin + self.view_ofs;
347         shotdir = v_forward;
348         v = bot_shotlead(self.bot_aimtargorigin, self.bot_aimtargvelocity, shotspeed, self.bot_aimlatency);
349         local float distanceratio;
350         distanceratio =sqrt(bound(0,skill,10000))*0.3*(vlen(v-shotorg)-100)/autocvar_bot_ai_aimskill_firetolerance_distdegrees;
351         distanceratio = bound(0,distanceratio,1);
352         r =  (autocvar_bot_ai_aimskill_firetolerance_maxdegrees-autocvar_bot_ai_aimskill_firetolerance_mindegrees)
353                 * (1-distanceratio) + autocvar_bot_ai_aimskill_firetolerance_mindegrees;
354         if (applygravity && self.bot_aimtarg)
355         {
356                 if (!findtrajectorywithleading(shotorg, '0 0 0', '0 0 0', self.bot_aimtarg, shotspeed, shotspeedupward, maxshottime, 0, self))
357                         return FALSE;
358                 f = bot_aimdir(findtrajectory_velocity - shotspeedupward * '0 0 1', r);
359         }
360         else
361         {
362                 f = bot_aimdir(v - shotorg, r);
363                 //dprint("AIM: ");dprint(vtos(self.bot_aimtargorigin));dprint(" + ");dprint(vtos(self.bot_aimtargvelocity));dprint(" * ");dprint(ftos(self.bot_aimlatency + vlen(self.bot_aimtargorigin - shotorg) / shotspeed));dprint(" = ");dprint(vtos(v));dprint(" : aimdir = ");dprint(vtos(normalize(v - shotorg)));dprint(" : ");dprint(vtos(shotdir));dprint("\n");
364                 //traceline(shotorg, shotorg + shotdir * 10000, FALSE, self);
365                 //if (trace_ent.takedamage)
366                 //if (trace_fraction < 1)
367                 //if (!bot_shouldattack(trace_ent))
368                 //      return FALSE;
369                 traceline(shotorg, self.bot_aimtargorigin, FALSE, self);
370                 if (trace_fraction < 1)
371                 if (trace_ent != self.enemy)
372                 if (!bot_shouldattack(trace_ent))
373                         return FALSE;
374         }
375
376         //if (r > maxshottime * shotspeed)
377         //      return FALSE;
378         return TRUE;
379 };