Shuffling player seats in multi player

This commit is contained in:
magenoxx 2012-07-18 12:12:12 +04:00
parent fce6756d77
commit 9c6dc78842
2 changed files with 14 additions and 5 deletions

View file

@ -389,10 +389,15 @@ class UpdateSeatsTask extends SwingWorker<Void, TableView> {
} else {
int current = getPlayersCount(tableView);
if (current != count) {
count = current;
if (count > 0) {
if (current > count) {
MageTray.getInstance().displayMessage("New player joined your game.");
} else {
MageTray.getInstance().displayMessage("A player left your game.");
}
MageTray.getInstance().blink();
}
count = current;
}
}
dialog.update(tableView);

View file

@ -28,9 +28,6 @@
package mage.game.match;
import java.util.ArrayList;
import java.util.List;
import java.util.UUID;
import mage.cards.decks.Deck;
import mage.game.Game;
import mage.game.GameException;
@ -40,6 +37,8 @@ import mage.game.events.TableEvent.EventType;
import mage.game.events.TableEventSource;
import mage.players.Player;
import java.util.*;
/**
*
* @author BetaSteward_at_googlemail.com
@ -132,6 +131,7 @@ public abstract class MatchImpl implements Match {
}
protected void initGame(Game game) throws GameException {
shufflePlayers();
for (MatchPlayer matchPlayer: this.players) {
matchPlayer.getPlayer().init(game);
game.loadCards(matchPlayer.getDeck().getCards(), matchPlayer.getPlayer().getId());
@ -140,6 +140,10 @@ public abstract class MatchImpl implements Match {
}
}
protected void shufflePlayers() {
Collections.shuffle(this.players, new Random());
}
@Override
public void endGame() {
Game game = getGame();