2 REGISTER_WEAPON(TUBA, w_tuba, 0, 1, WEP_FLAG_HIDDEN | WEP_TYPE_SPLASH, BOT_PICKUP_RATING_MID, "tuba", "tuba", _("@!#%'n Tuba"))
5 //#define TUBA_NOTE(n) strcat("weapons/tuba_note", ftos(n), ".wav")
8 .float tuba_instrument;
10 #define MAX_TUBANOTES 32
11 .float tuba_lastnotes_last;
12 .float tuba_lastnotes_cnt; // over
13 .vector tuba_lastnotes[MAX_TUBANOTES];
15 float W_Tuba_HasPlayed(entity pl, string melody, float instrument, float ignorepitch, float mintempo, float maxtempo)
17 float i, j, mmin, mmax, nolength;
18 float n = tokenize_console(melody);
19 if(n > pl.tuba_lastnotes_cnt)
24 if(pl.tuba_instrument != instrument)
29 for(i = 0; i < n; ++i)
31 vector v = pl.(tuba_lastnotes[mod(pl.tuba_lastnotes_last - i + MAX_TUBANOTES, MAX_TUBANOTES)]);
32 float ai = stof(argv(n - i - 1));
36 // n counts the last played notes BACKWARDS
40 if(ignorepitch && i == 0)
42 pitchshift = np - v_z;
46 if(v_z + pitchshift != np)
51 // now we know the right NOTES were played
57 mmin = 240 / maxtempo; // 60 = "0.25 means 1 sec", at 120 0.5 means 1 sec, at 240 1 means 1 sec
61 mmax = 240 / mintempo; // 60 = "0.25 means 1 sec", at 120 0.5 means 1 sec, at 240 1 means 1 sec
63 mmax = 240; // you won't try THAT hard... (tempo 1)
64 //print(sprintf("initial tempo rules: %f %f\n", mmin, mmax));
66 for(i = 0; i < n; ++i)
68 vector vi = pl.(tuba_lastnotes[mod(pl.tuba_lastnotes_last - i + MAX_TUBANOTES, MAX_TUBANOTES)]);
69 float ai = stof(argv(n - i - 1));
70 ti -= 1 / (ai - floor(ai));
72 for(j = i+1; j < n; ++j)
74 vector vj = pl.(tuba_lastnotes[mod(pl.tuba_lastnotes_last - j + MAX_TUBANOTES, MAX_TUBANOTES)]);
75 float aj = stof(argv(n - j - 1));
76 tj -= (aj - floor(aj));
78 // note i should be at m*ti+b
79 // note j should be at m*tj+b
81 // we have a LINE l, so that
82 // vi_x <= l(ti) <= vi_y
83 // vj_x <= l(tj) <= vj_y
86 // vi_x <= vi_y <= vj_x <= vj_y
88 //print(sprintf("first note: %f to %f, should be %f\n", vi_x, vi_y, ti));
89 //print(sprintf("second note: %f to %f, should be %f\n", vj_x, vj_y, tj));
90 //print(sprintf("m1 = %f\n", (vi_x - vj_y) / (ti - tj)));
91 //print(sprintf("m2 = %f\n", (vi_y - vj_x) / (ti - tj)));
92 mmin = max(mmin, (vi_x - vj_y) / (ti - tj)); // lower bound
93 mmax = min(mmax, (vi_y - vj_x) / (ti - tj)); // upper bound
97 if(mmin > mmax) // rhythm fail
101 pl.tuba_lastnotes_cnt = 0;
106 void W_Tuba_NoteOff()
109 // on: self.spawnshieldtime
112 if(self.owner.tuba_note == self)
114 self.owner.tuba_lastnotes_last = mod(self.owner.tuba_lastnotes_last + 1, MAX_TUBANOTES);
115 self.owner.(tuba_lastnotes[self.owner.tuba_lastnotes_last]) = eX * self.spawnshieldtime + eY * time + eZ * self.cnt;
116 self.owner.tuba_note = world;
117 self.owner.tuba_lastnotes_cnt = bound(0, self.owner.tuba_lastnotes_cnt + 1, MAX_TUBANOTES);
120 s = trigger_magicear_processmessage_forallears(self.owner, 0, world, string_null);
123 // simulate a server message
124 switch(self.tuba_instrument)
128 bprint(strcat("\{1}\{13}* ^3", self.owner.netname, "^3 played on the @!#%'n Tuba: ^7", s, "\n"));
131 bprint(strcat("\{1}\{13}* ^3", self.owner.netname, "^3 played on the @!#%'n Accordeon: ^7", s, "\n"));
134 bprint(strcat("\{1}\{13}* ^3", self.owner.netname, "^3 played on the @!#%'n Klein Bottle: ^7", s, "\n"));
142 float Tuba_GetNote(entity pl, float hittype)
147 if(pl.movement_x < 0) movestate -= 3;
148 if(pl.movement_x > 0) movestate += 3;
149 if(pl.movement_y < 0) movestate -= 1;
150 if(pl.movement_y > 0) movestate += 1;
156 // layout: originally I wanted
160 // but then you only use forward and right key. So to make things more
161 // interesting, I swapped B with e#. Har har har...
165 case 1: note = -6; break; // Gb
166 case 2: note = -5; break; // G
167 case 3: note = -4; break; // G#
168 case 4: note = +5; break; // e#
170 case 5: note = 0; break; // c
171 case 6: note = +2; break; // d
172 case 7: note = +3; break; // eb
173 case 8: note = +4; break; // e
174 case 9: note = -1; break; // B
180 if(hittype & HITTYPE_SECONDARY)
183 // we support two kinds of tubas, those tuned in Eb and those tuned in C
184 // kind of tuba currently is player slot number, or team number if in
186 // that way, holes in the range of notes are "plugged"
189 if(pl.team == COLOR_TEAM2 || pl.team == COLOR_TEAM4)
194 if(pl.clientcolors & 1)
198 // total range of notes:
204 // *** ********************* ****
205 // -18.........................+12
206 // *** ********************* ****
207 // -18............................+15
208 // with jump: ... +24
213 float W_Tuba_NoteSendEntity(entity to, float sf)
218 if(!sound_allowed(MSG_ONE, self.realowner))
221 WriteByte(MSG_ENTITY, ENT_CLIENT_TUBANOTE);
222 WriteByte(MSG_ENTITY, sf);
225 WriteChar(MSG_ENTITY, self.cnt);
227 if(self.realowner != to)
229 f |= 2 * self.tuba_instrument;
230 WriteByte(MSG_ENTITY, f);
234 WriteCoord(MSG_ENTITY, self.origin_x);
235 WriteCoord(MSG_ENTITY, self.origin_y);
236 WriteCoord(MSG_ENTITY, self.origin_z);
241 void W_Tuba_NoteThink()
248 if(time > self.teleport_time)
253 self.nextthink = time;
254 dist_mult = autocvar_g_balance_tuba_attenuation / autocvar_snd_soundradius;
255 FOR_EACH_REALCLIENT(e)
256 if(e != self.realowner)
258 v = self.origin - (e.origin + e.view_ofs);
259 vol0 = max(0, 1 - vlen(v) * dist_mult);
261 v = self.realowner.origin - (e.origin + e.view_ofs);
262 vol1 = max(0, 1 - vlen(v) * dist_mult);
264 if(fabs(vol0 - vol1) > 0.005) // 0.5 percent change in volume
266 setorigin(self, self.realowner.origin);
270 if(dir0 * dir1 < 0.9994) // 2 degrees change in angle
272 setorigin(self, self.realowner.origin);
279 void W_Tuba_NoteOn(float hittype)
284 W_SetupShot(self, FALSE, 2, "", 0, autocvar_g_balance_tuba_damage);
286 n = Tuba_GetNote(self, hittype);
289 if(self.tuba_instrument & 1)
290 hittype |= HITTYPE_SECONDARY;
291 if(self.tuba_instrument & 2)
292 hittype |= HITTYPE_BOUNCE;
293 if(self.tuba_instrument & 4)
294 hittype |= HITTYPE_HEADSHOT;
298 if(self.tuba_note.cnt != n || self.tuba_note.tuba_instrument != self.tuba_instrument)
300 entity oldself = self;
301 self = self.tuba_note;
307 if not(self.tuba_note)
309 self.tuba_note = spawn();
310 self.tuba_note.owner = self.tuba_note.realowner = self;
311 self.tuba_note.cnt = n;
312 self.tuba_note.tuba_instrument = self.tuba_instrument;
313 self.tuba_note.think = W_Tuba_NoteThink;
314 self.tuba_note.nextthink = time;
315 self.tuba_note.spawnshieldtime = time;
316 Net_LinkEntity(self.tuba_note, FALSE, 0, W_Tuba_NoteSendEntity);
319 self.tuba_note.teleport_time = time + autocvar_g_balance_tuba_refire * 2 * W_WeaponRateFactor(); // so it can get prolonged safely
321 //sound(self, c, TUBA_NOTE(n), bound(0, VOL_BASE * cvar("g_balance_tuba_volume"), 1), autocvar_g_balance_tuba_attenuation);
322 RadiusDamage(self, self, autocvar_g_balance_tuba_damage, autocvar_g_balance_tuba_edgedamage, autocvar_g_balance_tuba_radius, world, autocvar_g_balance_tuba_force, hittype | WEP_TUBA, world);
324 o = gettaginfo(self.exteriorweaponentity, 0);
325 if(time > self.tuba_smoketime)
327 pointparticles(particleeffectnum("smoke_ring"), o + v_up * 45 + v_right * -6 + v_forward * 8, v_up * 100, 1);
328 self.tuba_smoketime = time + 0.25;
332 void spawnfunc_weapon_tuba (void)
334 weapon_defaultspawnfunc(WEP_TUBA);
337 float w_tuba(float req)
341 // bots cannot play the Tuba well yet
342 // I think they should start with the recorder first
343 if(vlen(self.origin - self.enemy.origin) < autocvar_g_balance_tuba_radius)
346 self.BUTTON_ATCK = 1;
348 self.BUTTON_ATCK2 = 1;
351 else if (req == WR_THINK)
353 if (self.BUTTON_ATCK)
354 if (weapon_prepareattack(0, autocvar_g_balance_tuba_refire))
357 //weapon_thinkf(WFRAME_FIRE1, autocvar_g_balance_tuba_animtime, w_ready);
358 weapon_thinkf(WFRAME_IDLE, autocvar_g_balance_tuba_animtime, w_ready);
360 if (self.BUTTON_ATCK2)
361 if (weapon_prepareattack(1, autocvar_g_balance_tuba_refire))
363 W_Tuba_NoteOn(HITTYPE_SECONDARY);
364 //weapon_thinkf(WFRAME_FIRE2, autocvar_g_balance_tuba_animtime, w_ready);
365 weapon_thinkf(WFRAME_IDLE, autocvar_g_balance_tuba_animtime, w_ready);
369 if(!self.BUTTON_ATCK && !self.BUTTON_ATCK2)
371 entity oldself = self;
372 self = self.tuba_note;
378 else if (req == WR_PRECACHE)
380 precache_model ("models/weapons/g_tuba.md3");
381 precache_model ("models/weapons/v_tuba.md3");
382 precache_model ("models/weapons/h_tuba.iqm");
383 precache_model ("models/weapons/v_akordeon.md3");
384 precache_model ("models/weapons/h_akordeon.iqm");
385 precache_model ("models/weapons/v_kleinbottle.md3");
386 precache_model ("models/weapons/h_kleinbottle.iqm");
389 //for(i = -18; i <= +27; ++i)
390 // precache_sound(TUBA_NOTE(i));
392 else if (req == WR_SETUP)
394 weapon_setup(WEP_TUBA);
395 self.current_ammo = ammo_none;
396 self.tuba_instrument = 0;
398 else if (req == WR_RELOAD)
400 // switch to alternate instruments :)
401 if(self.weaponentity.state == WS_READY)
403 switch(self.tuba_instrument)
406 self.tuba_instrument = 1;
407 self.weaponname = "akordeon";
410 self.tuba_instrument = 2;
411 self.weaponname = "kleinbottle";
414 self.tuba_instrument = 0;
415 self.weaponname = "tuba";
418 W_SetupShot(self, FALSE, 0, "", 0, 0);
419 pointparticles(particleeffectnum("teleport"), w_shotorg, '0 0 0', 1);
420 self.weaponentity.state = WS_INUSE;
421 weapon_thinkf(WFRAME_RELOAD, 0.5, w_ready);
424 else if (req == WR_CHECKAMMO1)
425 return TRUE; // TODO use fuel?
426 else if (req == WR_CHECKAMMO2)
427 return TRUE; // TODO use fuel?
432 float w_tuba(float req)
434 if(req == WR_IMPACTEFFECT)
436 // nothing to do here; particles of tuba are handled differently
438 else if(req == WR_PRECACHE)
442 else if (req == WR_SUICIDEMESSAGE)
446 if(w_deathtype & HITTYPE_SECONDARY)
448 if(w_deathtype & HITTYPE_BOUNCE)
450 if(w_deathtype & HITTYPE_HEADSHOT)
456 w_deathtypestring = _("%s hurt his own ears with the @!#%%'n Tuba");
459 w_deathtypestring = _("%s hurt his own ears with the @!#%%'n Accordeon");
461 case 2: // Klein Bottle
462 w_deathtypestring = _("%s hurt his own ears with the @!#%%'n Klein Bottle");
466 else if (req == WR_KILLMESSAGE)
470 if(w_deathtype & HITTYPE_SECONDARY)
472 if(w_deathtype & HITTYPE_BOUNCE)
474 if(w_deathtype & HITTYPE_HEADSHOT)
480 w_deathtypestring = _("%s died of %s's great playing on the @!#%%'n Tuba");
483 w_deathtypestring = _("%s died of %s's great playing on the @!#%%'n Accordeon");
485 case 2: // Klein Bottle
486 w_deathtypestring = _("%s died of %s's great playing on the @!#%%'n Klein Bottle");