|
@@ -5,11 +5,10 @@ import com.incubator.common.log4j.Log;
|
|
|
import com.incubator.common.util.RandomUtil;
|
|
|
import com.incubator.game.data.po.RoomPO;
|
|
|
import com.incubator.game.player.Player;
|
|
|
-import com.incubator.game.util.CardUtils;
|
|
|
+import com.incubator.game.util.FSGDUtil;
|
|
|
import com.incubator.game.util.GDUtils;
|
|
|
import com.incubator.game.util.Struct;
|
|
|
import com.incubator.message.proto.CommonProto;
|
|
|
-import org.apache.commons.lang3.StringUtils;
|
|
|
|
|
|
import java.util.*;
|
|
|
|
|
@@ -34,7 +33,7 @@ public class FSGDRoom extends Room {
|
|
|
this.data.ownerId = player != null? player.getId() : "";
|
|
|
this.data.maxNum = jsonData.getInteger("playerNum");
|
|
|
this.data.maxRound = jsonData.getInteger("maxRound");
|
|
|
- this.data.playerMap = new Player[this.data.maxRound];
|
|
|
+ this.data.playerMap = new Player[8];
|
|
|
// 是否有进还贡规则
|
|
|
this.data.isTribute = jsonData.getInteger("advanceType") == 0;
|
|
|
// 初始化级牌点数
|
|
@@ -75,10 +74,11 @@ public class FSGDRoom extends Room {
|
|
|
int tableIndex = (this.actors.size() - 1) / 4;
|
|
|
FSGDTable table = this.tableMap.getOrDefault(tableIndex, null);
|
|
|
if (table != null) {
|
|
|
+ // 加入桌子
|
|
|
table.joinTable(player);
|
|
|
|
|
|
// 设置队伍
|
|
|
-
|
|
|
+ player.data.teamId = FSGDUtil.assignTeam(this.actors.size() - 1);
|
|
|
|
|
|
// 推送房间其他7个玩家
|
|
|
for (Player tmPlayer : this.actors.values()) {
|