Trace times joined & kicked (#4844)

* Trace times joined & kicked

* Make mindustry.* import obsolete
This commit is contained in:
Patrick 'Quezler' Mounier
2021-03-03 15:09:05 +01:00
committed by GitHub
parent 4d9a30b7c7
commit ae838b9392
5 changed files with 16 additions and 4 deletions

View File

@@ -735,7 +735,8 @@ public class NetServer implements ApplicationListener{
other.kick(KickReason.kick);
info("&lc@ has kicked @.", player.name, other.name);
}else if(action == AdminAction.trace){
TraceInfo info = new TraceInfo(other.con.address, other.uuid(), other.con.modclient, other.con.mobile);
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);
if(player.con != null){
Call.traceInfo(player.con, other, info);
}else{

View File

@@ -572,10 +572,12 @@ public class TypeIO{
writeString(write, trace.uuid);
write.b(trace.modded ? (byte)1 : 0);
write.b(trace.mobile ? (byte)1 : 0);
write.i(trace.timesJoined);
write.i(trace.timesKicked);
}
public static TraceInfo readTraceInfo(Reads read){
return new TraceInfo(readString(read), readString(read), read.b() == 1, read.b() == 1);
return new TraceInfo(readString(read), readString(read), read.b() == 1, read.b() == 1, read.i(), read.i());
}
public static void writeStringData(DataOutput buffer, String string) throws IOException{

View File

@@ -584,12 +584,15 @@ public class Administration{
public static class TraceInfo{
public String ip, uuid;
public boolean modded, mobile;
public int timesJoined, timesKicked;
public TraceInfo(String ip, String uuid, boolean modded, boolean mobile){
public TraceInfo(String ip, String uuid, boolean modded, boolean mobile, int timesJoined, int timesKicked){
this.ip = ip;
this.uuid = uuid;
this.modded = modded;
this.mobile = mobile;
this.timesJoined = timesJoined;
this.timesKicked = timesKicked;
}
}

View File

@@ -32,6 +32,10 @@ public class TraceDialog extends BaseDialog{
table.row();
table.add(Core.bundle.format("trace.mobile", info.mobile));
table.row();
table.add(Core.bundle.format("trace.times.joined", info.timesJoined));
table.row();
table.add(Core.bundle.format("trace.times.kicked", info.timesKicked));
table.row();
table.add().pad(5);
table.row();