Apply color stripping to player names in console wherever applicable. (#6672)
* utility method * plainName for all console outputs * plainLastName for all console outputs * some formats * slightly reformat trace output * Slightly nicer admin indicator * A space
This commit is contained in:
committed by
GitHub
parent
8ec2e40610
commit
580fcd1fbc
@@ -233,7 +233,7 @@ public class NetClient implements ApplicationListener{
|
||||
//log commands before they are handled
|
||||
if(message.startsWith(netServer.clientCommands.getPrefix())){
|
||||
//log with brackets
|
||||
Log.info("<&fi@: @&fr>", "&lk" + player.name, "&lw" + message);
|
||||
Log.info("<&fi@: @&fr>", "&lk" + player.plainName(), "&lw" + message);
|
||||
}
|
||||
|
||||
//check if it's a command
|
||||
@@ -251,7 +251,7 @@ public class NetClient implements ApplicationListener{
|
||||
}
|
||||
|
||||
//server console logging
|
||||
Log.info("&fi@: @", "&lc" + player.name, "&lw" + message);
|
||||
Log.info("&fi@: @", "&lc" + player.plainName(), "&lw" + message);
|
||||
|
||||
//invoke event for all clients but also locally
|
||||
//this is required so other clients get the correct name even if they don't know who's sending it yet
|
||||
|
||||
@@ -481,7 +481,7 @@ public class NetServer implements ApplicationListener{
|
||||
}
|
||||
|
||||
int sign = switch(arg[0].toLowerCase()){
|
||||
case "y", "yes" -> 1;
|
||||
case "y", "yes" -> 1;
|
||||
case "n", "no" -> -1;
|
||||
default -> 0;
|
||||
};
|
||||
@@ -560,7 +560,7 @@ public class NetServer implements ApplicationListener{
|
||||
Call.playerDisconnect(player.id());
|
||||
}
|
||||
|
||||
String message = Strings.format("&lb@&fi&lk has disconnected. &fi&lk[&lb@&fi&lk] (@)", player.name, player.uuid(), reason);
|
||||
String message = Strings.format("&lb@&fi&lk has disconnected. [&lb@&fi&lk] (@)", player.plainName(), player.uuid(), reason);
|
||||
if(Config.showConnectMessages.bool()) info(message);
|
||||
}
|
||||
|
||||
@@ -773,12 +773,12 @@ public class NetServer implements ApplicationListener{
|
||||
public static void adminRequest(Player player, Player other, AdminAction action){
|
||||
if(!player.admin && !player.isLocal()){
|
||||
warn("ACCESS DENIED: Player @ / @ attempted to perform admin action '@' on '@' without proper security access.",
|
||||
player.name, player.con == null ? "null" : player.con.address, action.name(), other == null ? null : other.name);
|
||||
player.plainName(), player.con == null ? "null" : player.con.address, action.name(), other == null ? null : other.plainName());
|
||||
return;
|
||||
}
|
||||
|
||||
if(other == null || ((other.admin && !player.isLocal()) && other != player)){
|
||||
warn("@ attempted to perform admin action on nonexistant or admin player.", player.name);
|
||||
warn("@ &fi&lk[&lb@&fi&lk]&fb attempted to perform admin action on nonexistant or admin player.", player.plainName(), player.uuid());
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -788,15 +788,15 @@ public class NetServer implements ApplicationListener{
|
||||
//no verification is done, so admins can hypothetically spam waves
|
||||
//not a real issue, because server owners may want to do just that
|
||||
logic.skipWave();
|
||||
info("&lc@ has skipped the wave.", player.name);
|
||||
info("&lc@ &fi&lk[&lb@&fi&lk]&fb has skipped the wave.", player.plainName(), player.uuid());
|
||||
}else if(action == AdminAction.ban){
|
||||
netServer.admins.banPlayerID(other.con.uuid);
|
||||
netServer.admins.banPlayerIP(other.con.address);
|
||||
other.kick(KickReason.banned);
|
||||
info("&lc@ has banned @.", player.name, other.name);
|
||||
info("&lc@ &fi&lk[&lb@&fi&lk]&fb has banned @ &fi&lk[&lb@&fi&lk]&fb.", player.plainName(), player.uuid(), other.plainName(), other.uuid());
|
||||
}else if(action == AdminAction.kick){
|
||||
other.kick(KickReason.kick);
|
||||
info("&lc@ has kicked @.", player.name, other.name);
|
||||
info("&lc@ &fi&lk[&lb@&fi&lk]&fb has kicked @ &fi&lk[&lb@&fi&lk]&fb.", player.plainName(), player.uuid(), other.plainName(), other.uuid());
|
||||
}else if(action == AdminAction.trace){
|
||||
PlayerInfo stats = netServer.admins.getInfo(other.uuid());
|
||||
TraceInfo info = new TraceInfo(other.con.address, other.uuid(), other.con.modclient, other.con.mobile, stats.timesJoined, stats.timesKicked);
|
||||
@@ -805,7 +805,7 @@ public class NetServer implements ApplicationListener{
|
||||
}else{
|
||||
NetClient.traceInfo(other, info);
|
||||
}
|
||||
info("&lc@ has requested trace info of @.", player.name, other.name);
|
||||
info("&lc@ &fi&lk[&lb@&fi&lk]&fb has requested trace info of @ &fi&lk[&lb@&fi&lk]&fb.", player.plainName(), player.uuid(), other.plainName(), other.uuid());
|
||||
}
|
||||
}
|
||||
|
||||
@@ -823,7 +823,7 @@ public class NetServer implements ApplicationListener{
|
||||
|
||||
if(Config.showConnectMessages.bool()){
|
||||
Call.sendMessage("[accent]" + player.name + "[accent] has connected.");
|
||||
String message = Strings.format("&lb@&fi&lk has connected. &fi&lk[&lb@&fi&lk]", player.name, player.uuid());
|
||||
String message = Strings.format("&lb@&fi&lk has connected. &fi&lk[&lb@&fi&lk]", player.plainName(), player.uuid());
|
||||
info(message);
|
||||
}
|
||||
|
||||
@@ -895,7 +895,7 @@ public class NetServer implements ApplicationListener{
|
||||
short sent = 0;
|
||||
for(Building entity : Groups.build){
|
||||
if(!entity.block.sync) continue;
|
||||
sent ++;
|
||||
sent++;
|
||||
|
||||
dataStream.writeInt(entity.pos());
|
||||
dataStream.writeShort(entity.block.id);
|
||||
@@ -935,7 +935,7 @@ public class NetServer implements ApplicationListener{
|
||||
|
||||
//write basic state data.
|
||||
Call.stateSnapshot(player.con, state.wavetime, state.wave, state.enemies, state.serverPaused, state.gameOver,
|
||||
universe.seconds(), tps, GlobalConstants.rand.seed0, GlobalConstants.rand.seed1, syncStream.toByteArray());
|
||||
universe.seconds(), tps, GlobalConstants.rand.seed0, GlobalConstants.rand.seed1, syncStream.toByteArray());
|
||||
|
||||
syncStream.reset();
|
||||
|
||||
@@ -963,7 +963,7 @@ public class NetServer implements ApplicationListener{
|
||||
Call.entitySnapshot(player.con, (short)sent, syncStream.toByteArray());
|
||||
}
|
||||
|
||||
player.con.snapshotsSent ++;
|
||||
player.con.snapshotsSent++;
|
||||
}
|
||||
|
||||
String fixName(String name){
|
||||
|
||||
@@ -314,6 +314,10 @@ abstract class PlayerComp implements UnitController, Entityc, Syncc, Timerc, Dra
|
||||
return "[#" + color.toString().toUpperCase() + "]" + name;
|
||||
}
|
||||
|
||||
String plainName(){
|
||||
return Strings.stripColors(name);
|
||||
}
|
||||
|
||||
void sendMessage(String text){
|
||||
if(isLocal()){
|
||||
if(ui != null){
|
||||
|
||||
@@ -568,6 +568,10 @@ public class Administration{
|
||||
|
||||
public PlayerInfo(){
|
||||
}
|
||||
|
||||
public String plainLastName(){
|
||||
return Strings.stripColors(lastName);
|
||||
}
|
||||
}
|
||||
|
||||
/** Handles chat messages from players and changes their contents. */
|
||||
|
||||
Reference in New Issue
Block a user