X-Git-Url: https://de.git.xonotic.org/?p=xonotic%2Fxonotic-data.pk3dir.git;a=blobdiff_plain;f=qcsrc%2Fserver%2Farena.qc;fp=qcsrc%2Fserver%2Farena.qc;h=c89c2b2efada451a84b1990255d437641088195b;hp=09db36618aeae5934dffe40dcf4eb29263632b2e;hb=9c40c25078426ed90e985c402c648fea3e3a8832;hpb=01e79c17c82c10622708fb4e2ce2efc818d1a0ef diff --git a/qcsrc/server/arena.qc b/qcsrc/server/arena.qc index 09db36618a..c89c2b2efa 100644 --- a/qcsrc/server/arena.qc +++ b/qcsrc/server/arena.qc @@ -8,7 +8,6 @@ float arena_roundbased; entity spawnqueue_first; entity spawnqueue_last; entity champion; -string champion_name; float warmup; float ca_teams_ok; .float caplayer; @@ -133,7 +132,7 @@ void reset_map(float dorespawn) } if(g_keyhunt) - kh_Controller_SetThink(autocvar_g_balance_keyhunt_delay_round+(game_starttime - time), "", kh_StartRound); + kh_Controller_SetThink_NoMsg(autocvar_g_balance_keyhunt_delay_round+(game_starttime - time), kh_StartRound); if(g_arena) if(champion && champion.classname == "player" && player_count > 1) @@ -203,15 +202,12 @@ float roundStartTime_prev; // prevent networkspam void Arena_Warmup() { float f; - string msg; entity e; if((!g_arena && !g_ca && !g_freezetag) || (g_arena && !arena_roundbased) || (time < game_starttime)) return; f = ceil(warmup - time); - if(f > 0) - champion = world; // this is done because a if(champion) will not execute if champion = world allowed_to_spawn = 0; @@ -220,18 +216,17 @@ void Arena_Warmup() if(g_ca && !ca_teams_ok) allowed_to_spawn = 1; - msg = NEWLINES; if(time < warmup && !inWarmupStage) { if (g_ca) allowed_to_spawn = 1; if(champion && g_arena) - msg = strcat("The Champion is ", champion_name, "^7\n"); - //centerprint(self, strcat(msg, "The Champion is ", champion.netname, "^7\n")); + { + FOR_EACH_PLAYER(e) + centerprint(e, strcat("The Champion is ", champion.netname)); + } if(f != roundStartTime_prev) { - msg = strcat(msg, "Round will start in ", ftos(f),"\n"); - //centerprint(self, strcat("Round will start in ", ftos(f),"\n")); roundStartTime_prev = f; if(f == 5) Announce("prepareforbattle"); @@ -242,8 +237,8 @@ void Arena_Warmup() else if(f == 1) Announce("1"); - FOR_EACH_PLAYER(e) - centerprint(e, msg); + FOR_EACH_PLAYER(e) + Send_CSQC_Centerprint_Generic(e, CPID_ROUND_STARTING, "Round will start in %d", 1, f); } if (g_arena) { @@ -255,12 +250,12 @@ void Arena_Warmup() self.movement = '0 0 0'; } } - else if(f > -1 && f != roundStartTime_prev) { roundStartTime_prev = f; Announce("begin"); - centerprint(self, "^1Begin!\n"); + FOR_EACH_PLAYER(e) + Send_CSQC_Centerprint_Generic(e, CPID_ROUND_STARTING, "^1Begin!", 1, 0); if(g_ca) { float start_red_ca_players, start_blue_ca_players; @@ -277,7 +272,12 @@ void Arena_Warmup() if(self.classname == "player" && self.health > 0 && self.movetype == MOVETYPE_NONE) self.movetype = MOVETYPE_WALK; + } + + // clear champion to avoid centerprinting again the champion msg + if (champion) + champion = world; } void count_players() @@ -372,6 +372,7 @@ void count_alive_players() * * Gets called in StartFrame() */ +float warntime; void Spawnqueue_Check() { count_players(); @@ -387,20 +388,20 @@ void Spawnqueue_Check() reset_map(TRUE); } else if(!ca_teams_ok) { - FOR_EACH_PLAYER(self) - centerprint(self, strcat("^1Need at least 1 player in each team to play CA", "^7\n")); + if (time > warntime) + { + FOR_EACH_PLAYER(self) + Send_CSQC_Centerprint_Generic(self, CPID_ROUND_STARTING, "^1Need at least 1 player in each team to play CA", 2, 0); + warntime = time + 1; + } return; } else if(!next_round) { if((red_players && !blue_players) || (blue_players && !red_players)) { next_round = time + 5; - champion = find(world, classname, "player"); - if(champion_name) - strunzone(champion_name); - champion_name = strzone(champion.netname); } else if((!red_players && !blue_players) || time - warmup > autocvar_g_ca_round_timelimit) { - FOR_EACH_CLIENT(self) centerprint(self, strcat("^7Round tied.", "^7\n")); + FOR_EACH_CLIENT(self) centerprint(self, "^7Round tied"); next_round = time + 5; } @@ -410,14 +411,14 @@ void Spawnqueue_Check() if(redalive && !bluealive) { play2all("ctf/red_capture.wav"); - FOR_EACH_CLIENT(self) centerprint(self, "^1 RED ^7team wins the round.\n"); + FOR_EACH_CLIENT(self) centerprint(self, "^1RED ^7team wins the round"); TeamScore_AddToTeam(COLOR_TEAM1, ST_SCORE, +1); stopalivecheck = TRUE; } else if(bluealive && !redalive) { play2all("ctf/blue_capture.wav"); - FOR_EACH_CLIENT(self) centerprint(self, "^4 BLUE ^7team wins the round.\n"); + FOR_EACH_CLIENT(self) centerprint(self, "^4BLUE ^7team wins the round"); TeamScore_AddToTeam(COLOR_TEAM2, ST_SCORE, +1); stopalivecheck = TRUE; }