]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/vehicles/vehicle/bumblebee_weapons.qc
Merge branch 'terencehill/v_deathtilt_fix' into 'master'
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / vehicles / vehicle / bumblebee_weapons.qc
1 #include "bumblebee_weapons.qh"
2
3 #ifdef IMPLEMENTATION
4
5 REGISTER_NET_LINKED(ENT_CLIENT_BUMBLE_RAYGUN)
6
7 #ifdef SVQC
8
9 void bumblebee_fire_cannon(entity this, entity _gun, string _tagname, entity _owner)
10 {
11     vector v = gettaginfo(_gun, gettagindex(_gun, _tagname));
12     vehicles_projectile(this, EFFECT_BIGPLASMA_MUZZLEFLASH.eent_eff_name, SND_VEH_BUMBLEBEE_FIRE,
13                         v, normalize(v_forward + randomvec() * autocvar_g_vehicle_bumblebee_cannon_spread) * autocvar_g_vehicle_bumblebee_cannon_speed,
14                         autocvar_g_vehicle_bumblebee_cannon_damage, autocvar_g_vehicle_bumblebee_cannon_radius, autocvar_g_vehicle_bumblebee_cannon_force,  0,
15                         DEATH_VH_BUMB_GUN.m_id, PROJECTILE_BUMBLE_GUN, 0, true, true, _owner);
16 }
17
18 bool bumble_raygun_send(entity this, entity to, float sf)
19 {
20     WriteHeader(MSG_ENTITY, ENT_CLIENT_BUMBLE_RAYGUN);
21
22     WriteByte(MSG_ENTITY, sf);
23     if(sf & BRG_SETUP)
24     {
25         WriteByte(MSG_ENTITY, etof(self.realowner));
26         WriteByte(MSG_ENTITY, self.realowner.team);
27         WriteByte(MSG_ENTITY, self.cnt);
28     }
29
30     if(sf & BRG_START)
31     {
32         WriteCoord(MSG_ENTITY, self.hook_start_x);
33         WriteCoord(MSG_ENTITY, self.hook_start_y);
34         WriteCoord(MSG_ENTITY, self.hook_start_z);
35     }
36
37     if(sf & BRG_END)
38     {
39         WriteCoord(MSG_ENTITY, self.hook_end_x);
40         WriteCoord(MSG_ENTITY, self.hook_end_y);
41         WriteCoord(MSG_ENTITY, self.hook_end_z);
42     }
43
44     return true;
45 }
46
47 #endif
48
49 #ifdef CSQC
50
51 void bumble_raygun_draw(entity this);
52
53 NET_HANDLE(ENT_CLIENT_BUMBLE_RAYGUN, bool isnew)
54 {
55     int sf = ReadByte();
56
57     if(sf & BRG_SETUP)
58     {
59         this.cnt  = ReadByte();
60         this.team = ReadByte();
61         this.cnt  = ReadByte();
62
63         if(this.cnt)
64             this.colormod = '1 0 0';
65         else
66             this.colormod = '0 1 0';
67
68         this.traileffect = EFFECT_BUMBLEBEE_HEAL_MUZZLEFLASH.m_id;
69         this.lip = particleeffectnum(EFFECT_BUMBLEBEE_HEAL_IMPACT);
70
71         this.draw = bumble_raygun_draw;
72     }
73
74
75     if(sf & BRG_START)
76     {
77         this.origin_x = ReadCoord();
78         this.origin_y = ReadCoord();
79         this.origin_z = ReadCoord();
80         setorigin(this, this.origin);
81     }
82
83     if(sf & BRG_END)
84     {
85         this.move_origin_x = ReadCoord();
86         this.move_origin_y = ReadCoord();
87         this.move_origin_z = ReadCoord();
88     }
89     return true;
90 }
91
92 .float bumble_raygun_nextdraw;
93 void bumble_raygun_draw(entity this)
94 {
95     float _len;
96     vector _dir;
97     vector _vtmp1, _vtmp2;
98
99     _len = vlen(this.origin - this.move_origin);
100     _dir = normalize(this.move_origin - this.origin);
101
102     if(this.bumble_raygun_nextdraw < time)
103     {
104         boxparticles(particleeffectnum(Effects_from(this.traileffect)), this, this.origin, this.origin + _dir * -64, _dir * -_len , _dir * -_len, 1, PARTICLES_USEALPHA);
105         boxparticles(this.lip, this, this.move_origin, this.move_origin + _dir * -64, _dir * -200 , _dir * -200, 1, PARTICLES_USEALPHA);
106         this.bumble_raygun_nextdraw = time + 0.1;
107     }
108
109     float i, df, sz, al;
110     for(i = -0.1; i < 0.2; i += 0.1)
111     {
112         df = DRAWFLAG_NORMAL; //((random() < 0.5) ? DRAWFLAG_ADDITIVE : DRAWFLAG_SCREEN);
113         sz = 5 + random() * 5;
114         al = 0.25 + random() * 0.5;
115         _vtmp1 = this.origin + _dir * _len * (0.25 + i);
116         _vtmp1 += (randomvec() * (_len * 0.2) * (frametime * 2));       //this.raygun_l1;
117         Draw_CylindricLine(this.origin, _vtmp1, sz, "gfx/colors/white.tga", 1, 1, this.colormod, al, df, view_origin);
118
119         _vtmp2 = this.origin + _dir * _len * (0.5 + i);
120         _vtmp2 += (randomvec() * (_len * 0.2) * (frametime * 5));       //this.raygun_l2;
121         Draw_CylindricLine(_vtmp1, _vtmp2, sz, "gfx/colors/white.tga", 1, 1, this.colormod, al, df, view_origin);
122
123         _vtmp1 = this.origin + _dir * _len * (0.75 + i);
124         _vtmp1 += randomvec() * (_len * 0.2) * (frametime * 10);     //this.raygun_l3;
125         Draw_CylindricLine(_vtmp2, _vtmp1, sz, "gfx/colors/white.tga", 1, 1, this.colormod, al, df, view_origin);
126
127         Draw_CylindricLine(_vtmp1, this.move_origin +  randomvec() * 32, sz, "gfx/colors/white.tga", 1, 1, this.colormod, al, df, view_origin);
128     }
129 }
130
131 #endif
132
133 #endif