]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/tturrets/system/system_damage.qc
Netlink turrets in the right place
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / tturrets / system / system_damage.qc
1 /*
2 * Spawn a boom, trow fake bits arround
3 * and hide the real ones.
4 */
5 void turret_hide()
6 {
7     self.effects   |= EF_NODRAW;
8     self.nextthink = time + self.respawntime - 0.2;
9     self.think     = turret_stdproc_respawn;
10 }
11
12 void turret_stdproc_die()
13 {
14     self.deadflag           = DEAD_DEAD;
15     self.tur_head.deadflag  = self.deadflag;
16
17 // Unsolidify and hide real parts
18     self.solid              = SOLID_NOT;
19     self.tur_head.solid     = self.solid;
20
21     self.event_damage           = SUB_Null;
22     self.takedamage             = DAMAGE_NO;
23
24     self.health             = 0;
25
26 // Go boom
27     //RadiusDamage (self,self, min(self.ammo,50),min(self.ammo,50) * 0.25,250,world,min(self.ammo,50)*5,DEATH_TURRET,world);
28
29     if(self.damage_flags & TFL_DMG_DEATH_NORESPAWN)
30     {
31         if (self.turret_diehook)
32             self.turret_diehook();
33
34         remove(self.tur_head);
35         remove(self);
36     }
37     else
38     {
39                 // Setup respawn
40         self.SendFlags      |= TNSF_STATUS;
41         self.nextthink      = time + 0.2;
42         self.think          = turret_hide;
43         
44         if (self.turret_diehook)
45             self.turret_diehook();
46     }
47 }
48
49 void turret_stdproc_respawn()
50 {
51     // Make sure all parts belong to the same team since
52     // this function doubles as "teamchange" function.
53     self.tur_head.team  = self.team;
54
55     self.effects             &~= EF_NODRAW;
56     self.deadflag           = DEAD_NO;
57     self.effects            = EF_LOWPRECISION;
58     self.solid              = SOLID_BBOX;
59     
60     self.takedamage                     = DAMAGE_AIM;
61     self.event_damage           = turret_stdproc_damage;
62
63     self.avelocity              = '0 0 0';
64     self.tur_head.avelocity     = self.avelocity;
65     self.tur_head.angles        = self.idle_aim;
66     self.health                 = self.tur_health;
67
68     self.enemy                  = world;
69     self.volly_counter          = self.shot_volly;
70     self.ammo                   = self.ammo_max;
71
72     self.nextthink  = time + self.ticrate;
73     self.think      = turret_think;
74     
75     self.SendFlags  = TNSF_FULL_UPDATE;
76
77     if (self.turret_respawnhook)
78         self.turret_respawnhook();
79 }
80
81 /*
82 * Standard damage proc.
83 */
84 void turret_stdproc_damage (entity inflictor, entity attacker, float damage, float deathtype, vector hitloc, vector vforce)
85 {
86     // Enougth allready!
87     if (self.health <= 0)
88         return;
89
90     // Inactive turrets take no damage. (hm..)
91     if not (self.tur_active)
92         return;
93
94     if (teamplay)
95     if (self.team == attacker.team)
96     {
97         // This does not happen anymore. Re-enable if you fix that.
98         if(clienttype(attacker) == CLIENTTYPE_REAL)
99             sprint(attacker, "\{1}Turret tells you: I'm on your team!\n");
100
101         if(autocvar_g_friendlyfire)
102             damage = damage * autocvar_g_friendlyfire;
103         else
104             return;
105     }
106
107     self.health = self.health - damage;
108
109     // thorw head slightly off aim when hit?
110     if (self.damage_flags & TFL_DMG_HEADSHAKE)
111     {
112         self.tur_head.angles_x = self.tur_head.angles_x + (-0.5 + random()) * damage;
113         self.tur_head.angles_y = self.tur_head.angles_y + (-0.5 + random()) * damage;
114         
115         self.SendFlags  |= TNSF_ANG;
116
117     }
118
119     if (self.turrcaps_flags & TFL_TURRCAPS_MOVE)
120         self.velocity = self.velocity + vforce;
121
122     // FIXME: Better damage feedback?
123     
124     if (self.health <= 0)
125     {
126         self.event_damage           = SUB_Null;
127         self.tur_head.event_damage  = SUB_Null;
128         self.takedamage             = DAMAGE_NO;
129         self.nextthink = time;
130         self.think = turret_stdproc_die;
131     }
132     
133     self.SendFlags  |= TNSF_STATUS;
134 }