|
@@ -90,7 +90,8 @@ public class Contest {
|
|
|
this.data = new ContestPO();
|
|
|
this.data.contestId = contestId;
|
|
|
|
|
|
- this.data.startTime = LocalDateTime.parse(prop.getOpenTime(), DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss")).atZone(ZoneId.systemDefault()).toInstant().toEpochMilli();
|
|
|
+ this.data.startTime = LocalDateTime.parse(this.prop.openTime, DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss")).atZone(ZoneId.of("Asia/Shanghai")).toInstant().toEpochMilli();
|
|
|
+ Log.info("比赛开始时间:{}",this.data.startTime);
|
|
|
|
|
|
|
|
|
this.data.contestType = 1;
|
|
@@ -133,6 +134,11 @@ public class Contest {
|
|
|
Log.error("根据报名人数刷新晋级配置出错...比赛 : {}, {}, 人数 : {}",
|
|
|
this.data.contestId, this.prop.desc, this.actors.size());
|
|
|
}
|
|
|
+
|
|
|
+ this.actors.forEach((id, p) -> {
|
|
|
+ Map<String, Object> map = ProtoUtil.contestInfoToMessage(this);
|
|
|
+ p.receive(CommonProto.Cmd.GetSignUpNum_VALUE,map);
|
|
|
+ });
|
|
|
}
|
|
|
|
|
|
|
|
@@ -150,6 +156,11 @@ public class Contest {
|
|
|
Log.error("根据报名人数刷新晋级配置出错...比赛 : {}, {}, 人数 : {}",
|
|
|
this.data.contestId, this.prop.desc, this.actors.size());
|
|
|
}
|
|
|
+
|
|
|
+ this.actors.forEach((id, p) -> {
|
|
|
+ Map<String, Object> map = ProtoUtil.contestInfoToMessage(this);
|
|
|
+ p.receive(CommonProto.Cmd.GetSignUpNum_VALUE,map);
|
|
|
+ });
|
|
|
}
|
|
|
|
|
|
|
|
@@ -382,6 +393,8 @@ public class Contest {
|
|
|
* 比赛开始
|
|
|
*/
|
|
|
public void doStart() {
|
|
|
+ cn.hutool.json.JSONObject object = new cn.hutool.json.JSONObject();
|
|
|
+ object.put("type","updateCompete");
|
|
|
|
|
|
this.data.curRound += 1;
|
|
|
|
|
@@ -393,14 +406,28 @@ public class Contest {
|
|
|
data.put("contestState", 3);
|
|
|
data.put("contestTime", new Date());
|
|
|
Log.debug("比赛结束 : 比赛 : {}, 结束时间 : {}, 人数 : {}", this.data.contestId, DateUtils.formatFullDate(new Date(this.data.startTime)), this.actors.size());
|
|
|
- tmPlayer.receive(CommonProto.Cmd.EndOfRace_VALUE, data);
|
|
|
+ tmPlayer.receive(CommonProto.Cmd.FlowOffice_VALUE, data);
|
|
|
tmPlayer.data.contestId = 0;
|
|
|
}
|
|
|
}
|
|
|
this.state = 3;
|
|
|
this.isActive = false;
|
|
|
+ object.put("status","5");
|
|
|
+ object.put("competeId",this.data.contestId);
|
|
|
+ try {
|
|
|
+ RabbitMQUtil.sendMessage(object.toString());
|
|
|
+ } catch (Exception e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ }
|
|
|
return;
|
|
|
}
|
|
|
+ object.put("status","3");
|
|
|
+ object.put("competeId",this.data.contestId);
|
|
|
+ try {
|
|
|
+ RabbitMQUtil.sendMessage(object.toString());
|
|
|
+ } catch (Exception e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ }
|
|
|
|
|
|
this.allocateRooms();
|
|
|
Log.info("当前轮次 :{}", this.data.curRound);
|