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;
153 // layout: originally I wanted
157 // but then you only use forward and right key. So to make things more
158 // interesting, I swapped B with e#. Har har har...
162 case 1: note = -6; break; // Gb
163 case 2: note = -5; break; // G
164 case 3: note = -4; break; // G#
165 case 4: note = +5; break; // e#
167 case 5: note = 0; break; // c
168 case 6: note = +2; break; // d
169 case 7: note = +3; break; // eb
170 case 8: note = +4; break; // e
171 case 9: note = -1; break; // B
177 if(hittype & HITTYPE_SECONDARY)
180 // we support two kinds of tubas, those tuned in Eb and those tuned in C
181 // kind of tuba currently is player slot number, or team number if in
183 // that way, holes in the range of notes are "plugged"
186 if(pl.team == COLOR_TEAM2 || pl.team == COLOR_TEAM4)
191 if(pl.clientcolors & 1)
195 // total range of notes:
201 // *** ********************* ****
202 // -18.........................+12
203 // *** ********************* ****
204 // -18............................+15
205 // with jump: ... +24
210 float W_Tuba_NoteSendEntity(entity to, float sf)
215 if(!sound_allowed(MSG_ONE, self.realowner))
218 WriteByte(MSG_ENTITY, ENT_CLIENT_TUBANOTE);
219 WriteByte(MSG_ENTITY, sf);
222 WriteChar(MSG_ENTITY, self.cnt);
224 if(self.realowner != to)
226 f |= 2 * self.tuba_instrument;
227 WriteByte(MSG_ENTITY, f);
231 WriteCoord(MSG_ENTITY, self.origin_x);
232 WriteCoord(MSG_ENTITY, self.origin_y);
233 WriteCoord(MSG_ENTITY, self.origin_z);
238 void W_Tuba_NoteThink()
245 if(time > self.teleport_time)
250 self.nextthink = time;
251 dist_mult = autocvar_g_balance_tuba_attenuation / autocvar_snd_soundradius;
252 FOR_EACH_REALCLIENT(e)
253 if(e != self.realowner)
255 v = self.origin - (e.origin + e.view_ofs);
256 vol0 = max(0, 1 - vlen(v) * dist_mult);
258 v = self.realowner.origin - (e.origin + e.view_ofs);
259 vol1 = max(0, 1 - vlen(v) * dist_mult);
261 if(fabs(vol0 - vol1) > 0.005) // 0.5 percent change in volume
263 setorigin(self, self.realowner.origin);
267 if(dir0 * dir1 < 0.9994) // 2 degrees change in angle
269 setorigin(self, self.realowner.origin);
276 void W_Tuba_NoteOn(float hittype)
281 W_SetupShot(self, FALSE, 2, "", 0, autocvar_g_balance_tuba_damage);
283 n = Tuba_GetNote(self, hittype);
286 if(self.tuba_instrument & 1)
287 hittype |= HITTYPE_SECONDARY;
288 if(self.tuba_instrument & 2)
289 hittype |= HITTYPE_BOUNCE;
290 if(self.tuba_instrument & 4)
291 hittype |= HITTYPE_HEADSHOT;
295 if(self.tuba_note.cnt != n || self.tuba_note.tuba_instrument != self.tuba_instrument)
297 entity oldself = self;
298 self = self.tuba_note;
304 if not(self.tuba_note)
306 self.tuba_note = spawn();
307 self.tuba_note.owner = self.tuba_note.realowner = self;
308 self.tuba_note.cnt = n;
309 self.tuba_note.tuba_instrument = self.tuba_instrument;
310 self.tuba_note.think = W_Tuba_NoteThink;
311 self.tuba_note.nextthink = time;
312 self.tuba_note.spawnshieldtime = time;
313 Net_LinkEntity(self.tuba_note, FALSE, 0, W_Tuba_NoteSendEntity);
316 self.tuba_note.teleport_time = time + autocvar_g_balance_tuba_refire * 2 * W_WeaponRateFactor(); // so it can get prolonged safely
318 //sound(self, c, TUBA_NOTE(n), bound(0, VOL_BASE * cvar("g_balance_tuba_volume"), 1), autocvar_g_balance_tuba_attenuation);
319 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);
321 o = gettaginfo(self.exteriorweaponentity, 0);
322 if(time > self.tuba_smoketime)
324 pointparticles(particleeffectnum("smoke_ring"), o + v_up * 45 + v_right * -6 + v_forward * 8, v_up * 100, 1);
325 self.tuba_smoketime = time + 0.25;
329 void spawnfunc_weapon_tuba (void)
331 weapon_defaultspawnfunc(WEP_TUBA);
334 float w_tuba(float req)
338 // bots cannot play the Tuba well yet
339 // I think they should start with the recorder first
340 if(vlen(self.origin - self.enemy.origin) < autocvar_g_balance_tuba_radius)
343 self.BUTTON_ATCK = 1;
345 self.BUTTON_ATCK2 = 1;
348 else if (req == WR_THINK)
350 if (self.BUTTON_ATCK)
351 if (weapon_prepareattack(0, autocvar_g_balance_tuba_refire))
354 //weapon_thinkf(WFRAME_FIRE1, autocvar_g_balance_tuba_animtime, w_ready);
355 weapon_thinkf(WFRAME_IDLE, autocvar_g_balance_tuba_animtime, w_ready);
357 if (self.BUTTON_ATCK2)
358 if (weapon_prepareattack(1, autocvar_g_balance_tuba_refire))
360 W_Tuba_NoteOn(HITTYPE_SECONDARY);
361 //weapon_thinkf(WFRAME_FIRE2, autocvar_g_balance_tuba_animtime, w_ready);
362 weapon_thinkf(WFRAME_IDLE, autocvar_g_balance_tuba_animtime, w_ready);
366 if(!self.BUTTON_ATCK && !self.BUTTON_ATCK2)
368 entity oldself = self;
369 self = self.tuba_note;
375 else if (req == WR_PRECACHE)
377 precache_model ("models/weapons/g_tuba.md3");
378 precache_model ("models/weapons/v_tuba.md3");
379 precache_model ("models/weapons/h_tuba.iqm");
380 precache_model ("models/weapons/v_akordeon.md3");
381 precache_model ("models/weapons/h_akordeon.iqm");
382 precache_model ("models/weapons/v_kleinbottle.md3");
383 precache_model ("models/weapons/h_kleinbottle.iqm");
386 //for(i = -18; i <= +27; ++i)
387 // precache_sound(TUBA_NOTE(i));
389 else if (req == WR_SETUP)
391 weapon_setup(WEP_TUBA);
392 self.current_ammo = ammo_none;
393 self.tuba_instrument = 0;
395 else if (req == WR_RELOAD)
397 // switch to alternate instruments :)
398 if(self.weaponentity.state == WS_READY)
400 switch(self.tuba_instrument)
403 self.tuba_instrument = 1;
404 self.weaponname = "akordeon";
407 self.tuba_instrument = 2;
408 self.weaponname = "kleinbottle";
411 self.tuba_instrument = 0;
412 self.weaponname = "tuba";
415 W_SetupShot(self, FALSE, 0, "", 0, 0);
416 pointparticles(particleeffectnum("teleport"), w_shotorg, '0 0 0', 1);
417 self.weaponentity.state = WS_INUSE;
418 weapon_thinkf(WFRAME_RELOAD, 0.5, w_ready);
421 else if (req == WR_CHECKAMMO1)
422 return TRUE; // TODO use fuel?
423 else if (req == WR_CHECKAMMO2)
424 return TRUE; // TODO use fuel?
429 float w_tuba(float req)
431 if(req == WR_IMPACTEFFECT)
433 // nothing to do here; particles of tuba are handled differently
435 else if(req == WR_PRECACHE)
439 else if (req == WR_SUICIDEMESSAGE)
443 if(w_deathtype & HITTYPE_SECONDARY)
445 if(w_deathtype & HITTYPE_BOUNCE)
447 if(w_deathtype & HITTYPE_HEADSHOT)
453 w_deathtypestring = _("%s hurt his own ears with the @!#%%'n Tuba");
456 w_deathtypestring = _("%s hurt his own ears with the @!#%%'n Accordeon");
458 case 2: // Klein Bottle
459 w_deathtypestring = _("%s hurt his own ears with the @!#%%'n Klein Bottle");
463 else if (req == WR_KILLMESSAGE)
467 if(w_deathtype & HITTYPE_SECONDARY)
469 if(w_deathtype & HITTYPE_BOUNCE)
471 if(w_deathtype & HITTYPE_HEADSHOT)
477 w_deathtypestring = _("%s died of %s's great playing on the @!#%%'n Tuba");
480 w_deathtypestring = _("%s died of %s's great playing on the @!#%%'n Accordeon");
482 case 2: // Klein Bottle
483 w_deathtypestring = _("%s died of %s's great playing on the @!#%%'n Klein Bottle");