X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fxonotic-data.pk3dir.git;a=blobdiff_plain;f=qcsrc%2Fcommon%2Fgamemodes%2Fgamemode%2Fonslaught%2Fsv_onslaught.qc;h=1f3e43378c71919fce84baf73f2d26e2e59d4587;hp=d4303efbd97124579a115c916b86aee7a0a54056;hb=8e5d3750fe6c2938222b1a6547b0d26b7a1ede60;hpb=f785b8a76c2336cb00e78fe9e738d55512a086f5 diff --git a/qcsrc/common/gamemodes/gamemode/onslaught/sv_onslaught.qc b/qcsrc/common/gamemodes/gamemode/onslaught/sv_onslaught.qc index d4303efbd9..1f3e43378c 100644 --- a/qcsrc/common/gamemodes/gamemode/onslaught/sv_onslaught.qc +++ b/qcsrc/common/gamemodes/gamemode/onslaught/sv_onslaught.qc @@ -313,15 +313,15 @@ void ons_DelayedLinkSetup(entity this) // Main Control Point Functions // ============================= -int ons_ControlPoint_CanBeLinked(entity cp, int teamnumber) +int ons_ControlPoint_CanBeLinked(entity cp, int teamnum) { - if(cp.aregensneighbor & BIT(teamnumber)) return 2; - if(cp.arecpsneighbor & BIT(teamnumber)) return 1; + if(cp.aregensneighbor & BIT(teamnum)) return 2; + if(cp.arecpsneighbor & BIT(teamnum)) return 1; return 0; } -int ons_ControlPoint_Attackable(entity cp, int teamnumber) +int ons_ControlPoint_Attackable(entity cp, int teamnum) // -2: SAME TEAM, attackable by enemy! // -1: SAME TEAM! // 0: off limits @@ -339,16 +339,16 @@ int ons_ControlPoint_Attackable(entity cp, int teamnumber) else if(cp.goalentity) { // if there's already an icon built, nothing happens - if(cp.team == teamnumber) + if(cp.team == teamnum) { - a = ons_ControlPoint_CanBeLinked(cp, teamnumber); + a = ons_ControlPoint_CanBeLinked(cp, teamnum); if(a) // attackable by enemy? return -2; // EMERGENCY! return -1; } // we know it can be linked, so no need to check // but... - a = ons_ControlPoint_CanBeLinked(cp, teamnumber); + a = ons_ControlPoint_CanBeLinked(cp, teamnum); if(a == 2) // near our generator? return 3; // EMERGENCY! return 1; @@ -356,9 +356,9 @@ int ons_ControlPoint_Attackable(entity cp, int teamnumber) else { // free point - if(ons_ControlPoint_CanBeLinked(cp, teamnumber)) + if(ons_ControlPoint_CanBeLinked(cp, teamnum)) { - a = ons_ControlPoint_CanBeLinked(cp, teamnumber); // why was this here NUM_TEAM_1 + NUM_TEAM_2 - t + a = ons_ControlPoint_CanBeLinked(cp, teamnum); // why was this here NUM_TEAM_1 + NUM_TEAM_2 - t if(a == 2) return 4; // GET THIS ONE NOW! else @@ -411,7 +411,10 @@ void ons_ControlPoint_Icon_Damage(entity this, entity inflictor, entity attacker { sound(this, CH_TRIGGER, SND_GRENADE_IMPACT, VOL_BASE, ATTEN_NORM); pointparticles(EFFECT_ROCKET_EXPLODE, this.origin, '0 0 0', 1); - Send_Notification(NOTIF_ALL, NULL, MSG_INFO, APP_TEAM_NUM(this.team, INFO_ONSLAUGHT_CPDESTROYED), this.owner.message, attacker.netname); + if (this.owner.message != "") + Send_Notification(NOTIF_ALL, NULL, MSG_INFO, APP_TEAM_NUM(this.team, INFO_ONSLAUGHT_CPDESTROYED), this.owner.message, attacker.netname); + else + Send_Notification(NOTIF_ALL, NULL, MSG_INFO, APP_TEAM_NUM(this.team, INFO_ONSLAUGHT_CPDESTROYED_NONAME), attacker.netname); GameRules_scoring_add(attacker, ONS_TAKES, 1); GameRules_scoring_add(attacker, SCORE, 10); @@ -554,9 +557,18 @@ void ons_ControlPoint_Icon_BuildThink(entity this) if(IS_PLAYER(this.owner.ons_toucher)) { - Send_Notification(NOTIF_ALL, NULL, MSG_INFO, INFO_ONSLAUGHT_CAPTURE, this.owner.ons_toucher.netname, this.owner.message); - Send_Notification(NOTIF_ALL_EXCEPT, this.owner.ons_toucher, MSG_CENTER, APP_TEAM_NUM(this.owner.ons_toucher.team, CENTER_ONS_CAPTURE_TEAM), this.owner.message); - Send_Notification(NOTIF_ONE, this.owner.ons_toucher, MSG_CENTER, CENTER_ONS_CAPTURE, this.owner.message); + if(this.owner.message != "") + { + Send_Notification(NOTIF_ALL, NULL, MSG_INFO, INFO_ONSLAUGHT_CAPTURE, this.owner.ons_toucher.netname, this.owner.message); + Send_Notification(NOTIF_ALL_EXCEPT, this.owner.ons_toucher, MSG_CENTER, APP_TEAM_NUM(this.owner.ons_toucher.team, CENTER_ONS_CAPTURE_TEAM), this.owner.message); + Send_Notification(NOTIF_ONE, this.owner.ons_toucher, MSG_CENTER, CENTER_ONS_CAPTURE, this.owner.message); + } + else + { + Send_Notification(NOTIF_ALL, NULL, MSG_INFO, INFO_ONSLAUGHT_CAPTURE_NONAME, this.owner.ons_toucher.netname); + Send_Notification(NOTIF_ALL_EXCEPT, this.owner.ons_toucher, MSG_CENTER, APP_TEAM_NUM(this.owner.ons_toucher.team, CENTER_ONS_CAPTURE_TEAM_NONAME)); + Send_Notification(NOTIF_ONE, this.owner.ons_toucher, MSG_CENTER, CENTER_ONS_CAPTURE_NONAME); + } GameRules_scoring_add(this.owner.ons_toucher, ONS_CAPS, 1); GameRules_scoring_add_team(this.owner.ons_toucher, SCORE, 10); } @@ -772,8 +784,6 @@ void ons_ControlPoint_Setup(entity cp) cp.islinked = false; cp.isshielded = true; - if(cp.message == "") { cp.message = "a"; } - // appearence setmodel(cp, MDL_ONS_CP_PAD1); @@ -988,7 +998,7 @@ void ons_GeneratorThink(entity this) { Send_Notification(NOTIF_ONE, it, MSG_CENTER, CENTER_ONS_NOTSHIELDED_TEAM); msg_entity = it; - soundto(MSG_ONE, this, CHAN_AUTO, SND(KH_ALARM), VOL_BASE, ATTEN_NONE); // FIXME: unique sound? + soundto(MSG_ONE, this, CHAN_AUTO, SND(ONS_GENERATOR_ALARM), VOL_BASE, ATTEN_NONE, 0); } else Send_Notification(NOTIF_ONE, it, MSG_CENTER, APP_TEAM_NUM(this.team, CENTER_ONS_NOTSHIELDED)); @@ -1053,16 +1063,16 @@ void onslaught_generator_touch(entity this, entity toucher) void ons_GeneratorSetup(entity gen) // called when spawning a generator entity on the map as a spawnfunc { // declarations - int teamnumber = gen.team; + int teamnum = gen.team; // main setup gen.ons_worldgeneratornext = ons_worldgeneratorlist; // link generator into ons_worldgeneratorlist ons_worldgeneratorlist = gen; - gen.netname = sprintf("%s generator", Team_ColoredFullName(teamnumber)); + gen.netname = sprintf("%s generator", Team_ColoredFullName(teamnum)); gen.classname = "onslaught_generator"; gen.solid = SOLID_BBOX; - gen.team_saved = teamnumber; + gen.team_saved = teamnum; IL_PUSH(g_saved_team, gen); set_movetype(gen, MOVETYPE_NONE); gen.lasthealth = gen.max_health = autocvar_g_onslaught_gen_health; @@ -1084,7 +1094,7 @@ void ons_GeneratorSetup(entity gen) // called when spawning a generator entity o // model handled by CSQC setsize(gen, GENERATOR_MIN, GENERATOR_MAX); setorigin(gen, (gen.origin + CPGEN_SPAWN_OFFSET)); - gen.colormap = 1024 + (teamnumber - 1) * 17; + gen.colormap = 1024 + (teamnum - 1) * 17; // generator placement droptofloor(gen);