1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-06 17:00:12 -09:00

changes to support matches

This commit is contained in:
BetaSteward 2010-12-26 00:34:34 -05:00
parent 9ed6145b4b
commit 6ae4ac3c5e
34 changed files with 443 additions and 128 deletions

View file

@ -53,6 +53,7 @@ import mage.client.remote.Session;
import mage.client.table.TablePlayerPanel; import mage.client.table.TablePlayerPanel;
import mage.client.util.Event; import mage.client.util.Event;
import mage.client.util.Listener; import mage.client.util.Listener;
import mage.game.match.MatchOptions;
import mage.sets.Sets; import mage.sets.Sets;
import mage.util.Logging; import mage.util.Logging;
import mage.view.GameTypeView; import mage.view.GameTypeView;
@ -277,18 +278,16 @@ public class NewTableDialog extends MageDialog {
private void btnOKActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnOKActionPerformed private void btnOKActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnOKActionPerformed
GameTypeView gameType = (GameTypeView) cbGameType.getSelectedItem(); GameTypeView gameType = (GameTypeView) cbGameType.getSelectedItem();
List<String> playerTypes = new ArrayList<String>(); MatchOptions options = new MatchOptions("Quick Start Game", gameType.getName());
playerTypes.add("Human"); options.getPlayerTypes().add("Human");
for (TablePlayerPanel player: players) { for (TablePlayerPanel player: players) {
playerTypes.add(player.getPlayerType()); options.getPlayerTypes().add(player.getPlayerType());
} }
table = session.createTable( options.setDeckType((String) this.cbDeckType.getSelectedItem());
roomId, options.setAttackOption((MultiplayerAttackOption) this.cbAttackOption.getSelectedItem());
gameType.getName(), options.setRange((RangeOfInfluence) this.cbRange.getSelectedItem());
(String)this.cbDeckType.getSelectedItem(), options.setWinsNeeded(1);
playerTypes, table = session.createTable(roomId, options);
(MultiplayerAttackOption)this.cbAttackOption.getSelectedItem(),
(RangeOfInfluence)this.cbRange.getSelectedItem());
try { try {
if (session.joinTable(roomId, table.getTableId(), this.player1Panel.getPlayerName(), Sets.loadDeck(this.player1Panel.getDeckFile()))) { if (session.joinTable(roomId, table.getTableId(), this.player1Panel.getPlayerName(), Sets.loadDeck(this.player1Panel.getDeckFile()))) {
for (TablePlayerPanel player: players) { for (TablePlayerPanel player: players) {

View file

@ -49,7 +49,9 @@ import mage.client.components.MageUI;
import mage.client.game.GamePanel; import mage.client.game.GamePanel;
import mage.client.util.Config; import mage.client.util.Config;
import mage.game.GameException; import mage.game.GameException;
import mage.game.match.MatchType;
import mage.interfaces.MageException; import mage.interfaces.MageException;
import mage.game.match.MatchOptions;
import mage.interfaces.Server; import mage.interfaces.Server;
import mage.interfaces.ServerState; import mage.interfaces.ServerState;
import mage.interfaces.callback.CallbackClientDaemon; import mage.interfaces.callback.CallbackClientDaemon;
@ -396,9 +398,9 @@ public class Session {
return false; return false;
} }
public TableView createTable(UUID roomId, String gameType, String deckType, List<String> playerTypes, MultiplayerAttackOption attackOption, RangeOfInfluence range) { public TableView createTable(UUID roomId, MatchOptions matchOptions) {
try { try {
return server.createTable(sessionId, roomId, gameType, deckType, playerTypes, attackOption, range); return server.createTable(sessionId, roomId, matchOptions);
} catch (RemoteException ex) { } catch (RemoteException ex) {
handleRemoteException(ex); handleRemoteException(ex);
} catch (MageException ex) { } catch (MageException ex) {
@ -456,7 +458,7 @@ public class Session {
public boolean startGame(UUID roomId, UUID tableId) { public boolean startGame(UUID roomId, UUID tableId) {
try { try {
server.startGame(sessionId, roomId, tableId); server.startMatch(sessionId, roomId, tableId);
return true; return true;
} catch (RemoteException ex) { } catch (RemoteException ex) {
handleRemoteException(ex); handleRemoteException(ex);

View file

@ -37,9 +37,7 @@ package mage.client.table;
import java.awt.Color; import java.awt.Color;
import java.awt.event.ActionEvent; import java.awt.event.ActionEvent;
import java.awt.event.ActionListener; import java.awt.event.ActionListener;
import java.util.ArrayList;
import java.util.HashMap; import java.util.HashMap;
import java.util.List;
import java.util.Map; import java.util.Map;
import java.util.Observable; import java.util.Observable;
import java.util.Observer; import java.util.Observer;
@ -53,8 +51,9 @@ import javax.swing.JComponent;
import javax.swing.JOptionPane; import javax.swing.JOptionPane;
import javax.swing.Timer; import javax.swing.Timer;
import javax.swing.table.AbstractTableModel; import javax.swing.table.AbstractTableModel;
import mage.Constants.MultiplayerAttackOption;
import mage.Constants.RangeOfInfluence;
import mage.cards.decks.DeckCardLists;
import mage.client.MageFrame; import mage.client.MageFrame;
import mage.client.components.MageComponents; import mage.client.components.MageComponents;
import mage.client.dialog.JoinTableDialog; import mage.client.dialog.JoinTableDialog;
@ -63,6 +62,7 @@ import mage.client.dialog.TableWaitingDialog;
import mage.client.remote.MageRemoteException; import mage.client.remote.MageRemoteException;
import mage.client.remote.Session; import mage.client.remote.Session;
import mage.client.util.ButtonColumn; import mage.client.util.ButtonColumn;
import mage.game.match.MatchOptions;
import mage.sets.Sets; import mage.sets.Sets;
import mage.util.Logging; import mage.util.Logging;
import mage.view.TableView; import mage.view.TableView;
@ -280,16 +280,14 @@ public class TablesPanel extends javax.swing.JPanel implements Observer {
private void btnQuickStartActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnQuickStartActionPerformed private void btnQuickStartActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnQuickStartActionPerformed
TableView table; TableView table;
try { try {
List<String> playerTypes = new ArrayList<String>(); MatchOptions options = new MatchOptions("1", "Two Player Duel");
playerTypes.add("Human"); options.getPlayerTypes().add("Human");
playerTypes.add("Computer - default"); options.getPlayerTypes().add("Computer - default");
table = session.createTable( options.setDeckType("Limited");
roomId, options.setAttackOption(MultiplayerAttackOption.LEFT);
"Two Player Duel", options.setRange(RangeOfInfluence.ALL);
"Constructed", options.setWinsNeeded(1);
playerTypes, table = session.createTable(roomId, options);
null, null
);
session.joinTable( session.joinTable(
roomId, roomId,
table.getTableId(), table.getTableId(),

View file

@ -28,16 +28,14 @@
package mage.interfaces; package mage.interfaces;
import mage.game.match.MatchOptions;
import java.rmi.Remote; import java.rmi.Remote;
import java.rmi.RemoteException; import java.rmi.RemoteException;
import java.util.List; import java.util.List;
import java.util.UUID; import java.util.UUID;
import mage.Constants.MultiplayerAttackOption;
import mage.Constants.RangeOfInfluence;
import mage.cards.decks.DeckCardLists; import mage.cards.decks.DeckCardLists;
import mage.game.GameException; import mage.game.GameException;
import mage.interfaces.callback.CallbackServer; import mage.interfaces.callback.CallbackServer;
import mage.view.GameTypeView;
import mage.view.TableView; import mage.view.TableView;
import mage.view.GameView; import mage.view.GameView;
@ -54,7 +52,7 @@ public interface Server extends Remote, CallbackServer {
public ServerState getServerState() throws RemoteException, MageException; public ServerState getServerState() throws RemoteException, MageException;
//table methods //table methods
public TableView createTable(UUID sessionId, UUID roomId, String gameType, String deckType, List<String> playerTypes, MultiplayerAttackOption attackOption, RangeOfInfluence range) throws RemoteException, MageException; public TableView createTable(UUID sessionId, UUID roomId, MatchOptions matchOptions) throws RemoteException, MageException;
public boolean joinTable(UUID sessionId, UUID roomId, UUID tableId, String name, DeckCardLists deckList) throws RemoteException, MageException, GameException; public boolean joinTable(UUID sessionId, UUID roomId, UUID tableId, String name, DeckCardLists deckList) throws RemoteException, MageException, GameException;
public boolean watchTable(UUID sessionId, UUID roomId, UUID tableId) throws RemoteException, MageException; public boolean watchTable(UUID sessionId, UUID roomId, UUID tableId) throws RemoteException, MageException;
public boolean replayTable(UUID sessionId, UUID roomId, UUID tableId) throws RemoteException, MageException; public boolean replayTable(UUID sessionId, UUID roomId, UUID tableId) throws RemoteException, MageException;
@ -77,7 +75,7 @@ public interface Server extends Remote, CallbackServer {
public UUID getMainRoomId() throws RemoteException, MageException; public UUID getMainRoomId() throws RemoteException, MageException;
//game methods //game methods
public void startGame(UUID sessionId, UUID roomId, UUID tableId) throws RemoteException, MageException; public void startMatch(UUID sessionId, UUID roomId, UUID tableId) throws RemoteException, MageException;
public void joinGame(UUID gameId, UUID sessionId) throws RemoteException, MageException; public void joinGame(UUID gameId, UUID sessionId) throws RemoteException, MageException;
public void watchGame(UUID gameId, UUID sessionId) throws RemoteException, MageException; public void watchGame(UUID gameId, UUID sessionId) throws RemoteException, MageException;
public void stopWatching(UUID gameId, UUID sessionId) throws RemoteException, MageException; public void stopWatching(UUID gameId, UUID sessionId) throws RemoteException, MageException;

View file

@ -29,7 +29,7 @@
package mage.view; package mage.view;
import java.io.Serializable; import java.io.Serializable;
import mage.game.GameType; import mage.game.match.MatchType;
/** /**
* *
@ -45,7 +45,7 @@ public class GameTypeView implements Serializable {
private boolean useRange; private boolean useRange;
private boolean useAttackOption; private boolean useAttackOption;
public GameTypeView(GameType gameType) { public GameTypeView(MatchType gameType) {
this.name = gameType.getName(); this.name = gameType.getName();
this.minPlayers = gameType.getMinPlayers(); this.minPlayers = gameType.getMinPlayers();
this.maxPlayers = gameType.getMaxPlayers(); this.maxPlayers = gameType.getMaxPlayers();

View file

@ -28,6 +28,7 @@
package mage.game; package mage.game;
import mage.game.match.MatchType;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.HashSet; import java.util.HashSet;
import java.util.List; import java.util.List;
@ -59,7 +60,7 @@ public class FreeForAll extends GameImpl<FreeForAll> {
} }
@Override @Override
public GameType getGameType() { public MatchType getGameType() {
return new FreeForAllType(); return new FreeForAllType();
} }

View file

@ -0,0 +1,51 @@
/*
* Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are
* permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this list of
* conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
* of conditions and the following disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* The views and conclusions contained in the software and documentation are those of the
* authors and should not be interpreted as representing official policies, either expressed
* or implied, of BetaSteward_at_googlemail.com.
*/
package mage.game;
import mage.game.match.MatchImpl;
import mage.game.match.MatchOptions;
/**
*
* @author BetaSteward_at_googlemail.com
*/
public class FreeForAllMatch extends MatchImpl<FreeForAll> {
public FreeForAllMatch(MatchOptions options) {
super(options);
}
@Override
public void startGame() throws GameException {
FreeForAll game = new FreeForAll(options.getAttackOption(), options.getRange());
initGame(game);
games.add(game);
}
}

View file

@ -28,11 +28,13 @@
package mage.game; package mage.game;
import mage.game.match.MatchType;
/** /**
* *
* @author BetaSteward_at_googlemail.com * @author BetaSteward_at_googlemail.com
*/ */
public class FreeForAllType extends GameType { public class FreeForAllType extends MatchType<FreeForAllType> {
public FreeForAllType() { public FreeForAllType() {
this.name = "Free For All"; this.name = "Free For All";
@ -42,4 +44,13 @@ public class FreeForAllType extends GameType {
this.useAttackOption = true; this.useAttackOption = true;
this.useRange = true; this.useRange = true;
} }
protected FreeForAllType(final FreeForAllType matchType) {
super(matchType);
}
@Override
public FreeForAllType copy() {
return new FreeForAllType(this);
}
} }

View file

@ -28,6 +28,7 @@
package mage.game; package mage.game;
import mage.game.match.MatchType;
import java.util.HashSet; import java.util.HashSet;
import java.util.Set; import java.util.Set;
import java.util.UUID; import java.util.UUID;
@ -39,7 +40,7 @@ import mage.game.turn.TurnMod;
public class TwoPlayerDuel extends GameImpl<TwoPlayerDuel> { public class TwoPlayerDuel extends GameImpl<TwoPlayerDuel> {
public TwoPlayerDuel(MultiplayerAttackOption attackOption, RangeOfInfluence range) { public TwoPlayerDuel(MultiplayerAttackOption attackOption, RangeOfInfluence range) {
super(MultiplayerAttackOption.LEFT, RangeOfInfluence.ALL); super(attackOption, range);
} }
public TwoPlayerDuel(final TwoPlayerDuel game) { public TwoPlayerDuel(final TwoPlayerDuel game) {
@ -47,7 +48,7 @@ public class TwoPlayerDuel extends GameImpl<TwoPlayerDuel> {
} }
@Override @Override
public GameType getGameType() { public MatchType getGameType() {
return new TwoPlayerDuelType(); return new TwoPlayerDuelType();
} }

View file

@ -28,11 +28,13 @@
package mage.game; package mage.game;
import mage.game.match.MatchType;
/** /**
* *
* @author BetaSteward_at_googlemail.com * @author BetaSteward_at_googlemail.com
*/ */
public class TwoPlayerDuelType extends GameType { public class TwoPlayerDuelType extends MatchType<TwoPlayerDuelType> {
public TwoPlayerDuelType() { public TwoPlayerDuelType() {
this.name = "Two Player Duel"; this.name = "Two Player Duel";
@ -43,4 +45,13 @@ public class TwoPlayerDuelType extends GameType {
this.useRange = false; this.useRange = false;
} }
protected TwoPlayerDuelType(final TwoPlayerDuelType matchType) {
super(matchType);
}
@Override
public TwoPlayerDuelType copy() {
return new TwoPlayerDuelType(this);
}
} }

View file

@ -0,0 +1,51 @@
/*
* Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are
* permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this list of
* conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
* of conditions and the following disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* The views and conclusions contained in the software and documentation are those of the
* authors and should not be interpreted as representing official policies, either expressed
* or implied, of BetaSteward_at_googlemail.com.
*/
package mage.game;
import mage.game.match.MatchImpl;
import mage.game.match.MatchOptions;
/**
*
* @author BetaSteward_at_googlemail.com
*/
public class TwoPlayerMatch extends MatchImpl<TwoPlayerDuel> {
public TwoPlayerMatch(MatchOptions options) {
super(options);
}
@Override
public void startGame() throws GameException {
TwoPlayerDuel game = new TwoPlayerDuel(options.getAttackOption(), options.getRange());
initGame(game);
games.add(game);
}
}

View file

@ -9,8 +9,8 @@
<playerType name="Computer - minimax hybrid" jar="mage-player-aiminimax.jar" className="mage.player.ai.ComputerPlayer3"/> <playerType name="Computer - minimax hybrid" jar="mage-player-aiminimax.jar" className="mage.player.ai.ComputerPlayer3"/>
</playerTypes> </playerTypes>
<gameTypes> <gameTypes>
<gameType name="Two Player Duel" jar="mage-game-twoplayerduel.jar" className="mage.game.TwoPlayerDuel" typeName="mage.game.TwoPlayerDuelType"/> <gameType name="Two Player Duel" jar="mage-game-twoplayerduel.jar" className="mage.game.TwoPlayerMatch" typeName="mage.game.TwoPlayerDuelType"/>
<gameType name="Free For All" jar="mage-game-freeforall.jar" className="mage.game.FreeForAll" typeName="mage.game.FreeForAllType"/> <gameType name="Free For All" jar="mage-game-freeforall.jar" className="mage.game.FreeForAllMatch" typeName="mage.game.FreeForAllType"/>
</gameTypes> </gameTypes>
<deckTypes> <deckTypes>
<deckType name="Constructed" jar="mage-deck-constructed.jar" className="mage.deck.Constructed"/> <deckType name="Constructed" jar="mage-deck-constructed.jar" className="mage.deck.Constructed"/>

View file

@ -35,7 +35,7 @@ import java.io.FilenameFilter;
import java.net.InetAddress; import java.net.InetAddress;
import java.util.logging.Level; import java.util.logging.Level;
import java.util.logging.Logger; import java.util.logging.Logger;
import mage.game.GameType; import mage.game.match.MatchType;
import mage.server.game.DeckValidatorFactory; import mage.server.game.DeckValidatorFactory;
import mage.server.game.GameFactory; import mage.server.game.GameFactory;
import mage.server.game.PlayerFactory; import mage.server.game.PlayerFactory;
@ -119,11 +119,11 @@ public class Main {
return null; return null;
} }
private static GameType loadGameType(GamePlugin plugin) { private static MatchType loadGameType(GamePlugin plugin) {
try { try {
classLoader.addURL(new File(pluginFolder + "/" + plugin.getJar()).toURI().toURL()); classLoader.addURL(new File(pluginFolder + "/" + plugin.getJar()).toURI().toURL());
logger.info("Loading game type: " + plugin.getClassName()); logger.info("Loading game type: " + plugin.getClassName());
return (GameType) Class.forName(plugin.getTypeName(), true, classLoader).newInstance(); return (MatchType) Class.forName(plugin.getTypeName(), true, classLoader).newInstance();
} catch (ClassNotFoundException ex) { } catch (ClassNotFoundException ex) {
logger.log(Level.SEVERE, "Game type not found:" + plugin.getJar() + " - check plugin folder"); logger.log(Level.SEVERE, "Game type not found:" + plugin.getJar() + " - check plugin folder");
} catch (Exception ex) { } catch (Exception ex) {

View file

@ -43,7 +43,9 @@ import mage.Constants.MultiplayerAttackOption;
import mage.Constants.RangeOfInfluence; import mage.Constants.RangeOfInfluence;
import mage.cards.decks.DeckCardLists; import mage.cards.decks.DeckCardLists;
import mage.game.GameException; import mage.game.GameException;
import mage.game.match.MatchType;
import mage.interfaces.MageException; import mage.interfaces.MageException;
import mage.game.match.MatchOptions;
import mage.interfaces.Server; import mage.interfaces.Server;
import mage.interfaces.ServerState; import mage.interfaces.ServerState;
import mage.interfaces.callback.ClientCallback; import mage.interfaces.callback.ClientCallback;
@ -117,9 +119,9 @@ public class ServerImpl extends RemoteServer implements Server {
} }
@Override @Override
public TableView createTable(UUID sessionId, UUID roomId, String gameType, String deckType, List<String> playerTypes, MultiplayerAttackOption attackOption, RangeOfInfluence range) throws MageException { public TableView createTable(UUID sessionId, UUID roomId, MatchOptions options) throws MageException {
try { try {
TableView table = GamesRoomManager.getInstance().getRoom(roomId).createTable(sessionId, gameType, deckType, playerTypes, attackOption, range); TableView table = GamesRoomManager.getInstance().getRoom(roomId).createTable(sessionId, options);
logger.info("Table " + table.getTableId() + " created"); logger.info("Table " + table.getTableId() + " created");
return table; return table;
} }
@ -202,13 +204,13 @@ public class ServerImpl extends RemoteServer implements Server {
} }
@Override @Override
public void startGame(final UUID sessionId, final UUID roomId, final UUID tableId) throws MageException { public void startMatch(final UUID sessionId, final UUID roomId, final UUID tableId) throws MageException {
try { try {
rmiExecutor.execute( rmiExecutor.execute(
new Runnable() { new Runnable() {
@Override @Override
public void run() { public void run() {
TableManager.getInstance().startGame(sessionId, roomId, tableId); TableManager.getInstance().startMatch(sessionId, roomId, tableId);
} }
} }
); );

View file

@ -30,17 +30,15 @@ package mage.server.game;
import java.lang.reflect.Constructor; import java.lang.reflect.Constructor;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap; import java.util.HashMap;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;
import java.util.logging.Level; import java.util.logging.Level;
import java.util.logging.Logger; import java.util.logging.Logger;
import mage.Constants.MultiplayerAttackOption; import mage.game.match.Match;
import mage.Constants.RangeOfInfluence; import mage.game.match.MatchOptions;
import mage.game.Game;
import mage.util.Logging; import mage.util.Logging;
import mage.game.GameType; import mage.game.match.MatchType;
import mage.view.GameTypeView; import mage.view.GameTypeView;
/** /**
@ -52,8 +50,8 @@ public class GameFactory {
private final static GameFactory INSTANCE = new GameFactory(); private final static GameFactory INSTANCE = new GameFactory();
private final static Logger logger = Logging.getLogger(GameFactory.class.getName()); private final static Logger logger = Logging.getLogger(GameFactory.class.getName());
private Map<String, Class<Game>> games = new HashMap<String, Class<Game>>(); private Map<String, Class<Match>> games = new HashMap<String, Class<Match>>();
private Map<String, GameType> gameTypes = new HashMap<String, GameType>(); private Map<String, MatchType> gameTypes = new HashMap<String, MatchType>();
private List<GameTypeView> gameTypeViews = new ArrayList<GameTypeView>(); private List<GameTypeView> gameTypeViews = new ArrayList<GameTypeView>();
@ -63,31 +61,31 @@ public class GameFactory {
private GameFactory() {} private GameFactory() {}
public Game createGame(String gameType, MultiplayerAttackOption attackOption, RangeOfInfluence range) { public Match createMatch(String gameType, MatchOptions options) {
Game game; Match match;
Constructor<Game> con; Constructor<Match> con;
try { try {
con = games.get(gameType).getConstructor(new Class[]{MultiplayerAttackOption.class, RangeOfInfluence.class}); con = games.get(gameType).getConstructor(new Class[]{MatchOptions.class});
game = con.newInstance(new Object[] {attackOption, range}); match = con.newInstance(new Object[] {options});
} catch (Exception ex) { } catch (Exception ex) {
logger.log(Level.SEVERE, null, ex); logger.log(Level.SEVERE, null, ex);
return null; return null;
} }
logger.info("Game created: " + game.getId().toString()); logger.info("Game created: " + gameType); // + game.getId().toString());
return game; return match;
} }
public List<GameTypeView> getGameTypes() { public List<GameTypeView> getGameTypes() {
return gameTypeViews; return gameTypeViews;
} }
public void addGameType(String name, GameType gameType, Class game) { public void addGameType(String name, MatchType matchType, Class game) {
if (game != null) { if (game != null) {
this.games.put(name, game); this.games.put(name, game);
this.gameTypes.put(name, gameType); this.gameTypes.put(name, matchType);
this.gameTypeViews.add(new GameTypeView(gameType)); this.gameTypeViews.add(new GameTypeView(matchType));
} }
} }

View file

@ -34,6 +34,8 @@ import mage.Constants.MultiplayerAttackOption;
import mage.Constants.RangeOfInfluence; import mage.Constants.RangeOfInfluence;
import mage.cards.decks.DeckCardLists; import mage.cards.decks.DeckCardLists;
import mage.game.GameException; import mage.game.GameException;
import mage.game.match.MatchType;
import mage.game.match.MatchOptions;
import mage.view.TableView; import mage.view.TableView;
/** /**
@ -44,7 +46,7 @@ public interface GamesRoom extends Room {
public List<TableView> getTables(); public List<TableView> getTables();
public boolean joinTable(UUID sessionId, UUID tableId, String name, DeckCardLists deckList) throws GameException; public boolean joinTable(UUID sessionId, UUID tableId, String name, DeckCardLists deckList) throws GameException;
public TableView createTable(UUID sessionId, String gameType, String deckType, List<String> playerTypes, MultiplayerAttackOption attackOption, RangeOfInfluence range); public TableView createTable(UUID sessionId, MatchOptions options);
public void removeTable(UUID sessionId, UUID tableId); public void removeTable(UUID sessionId, UUID tableId);
public TableView getTable(UUID tableId); public TableView getTable(UUID tableId);
public void leaveTable(UUID sessionId, UUID tableId); public void leaveTable(UUID sessionId, UUID tableId);

View file

@ -39,6 +39,8 @@ import mage.Constants.MultiplayerAttackOption;
import mage.Constants.RangeOfInfluence; import mage.Constants.RangeOfInfluence;
import mage.cards.decks.DeckCardLists; import mage.cards.decks.DeckCardLists;
import mage.game.GameException; import mage.game.GameException;
import mage.game.match.MatchType;
import mage.game.match.MatchOptions;
import mage.util.Logging; import mage.util.Logging;
import mage.view.TableView; import mage.view.TableView;
@ -71,8 +73,8 @@ public class GamesRoomImpl extends RoomImpl implements GamesRoom, Serializable {
} }
@Override @Override
public TableView createTable(UUID sessionId, String gameType, String deckType, List<String> playerTypes, MultiplayerAttackOption attackOption, RangeOfInfluence range) { public TableView createTable(UUID sessionId, MatchOptions options) {
Table table = TableManager.getInstance().createTable(sessionId, gameType, deckType, playerTypes, attackOption, range); Table table = TableManager.getInstance().createTable(sessionId, options);
tables.put(table.getId(), table); tables.put(table.getId(), table);
return new TableView(table); return new TableView(table);
} }

View file

@ -55,7 +55,10 @@ import mage.cards.decks.DeckCardLists;
import mage.game.Game; import mage.game.Game;
import mage.game.GameException; import mage.game.GameException;
import mage.game.GameStates; import mage.game.GameStates;
import mage.game.match.Match;
import mage.game.match.MatchType;
import mage.game.Seat; import mage.game.Seat;
import mage.game.match.MatchOptions;
import mage.players.Player; import mage.players.Player;
import mage.server.ChatManager; import mage.server.ChatManager;
import mage.server.Main; import mage.server.Main;
@ -73,17 +76,19 @@ public class TableController {
private UUID sessionId; private UUID sessionId;
private UUID chatId; private UUID chatId;
private UUID gameId; //private UUID gameId;
private Table table; private Table table;
private Game game; private Match match;
private MatchOptions options;
private ConcurrentHashMap<UUID, UUID> sessionPlayerMap = new ConcurrentHashMap<UUID, UUID>(); private ConcurrentHashMap<UUID, UUID> sessionPlayerMap = new ConcurrentHashMap<UUID, UUID>();
public TableController(UUID sessionId, String gameType, String deckType, List<String> playerTypes, MultiplayerAttackOption attackOption, RangeOfInfluence range) { public TableController(UUID sessionId, MatchOptions options) {
this.sessionId = sessionId; this.sessionId = sessionId;
chatId = ChatManager.getInstance().createChatSession(); chatId = ChatManager.getInstance().createChatSession();
game = GameFactory.getInstance().createGame(gameType, attackOption, range); this.options = options;
gameId = game.getId(); match = GameFactory.getInstance().createMatch(options.getGameType(), options);
table = new Table(gameType, DeckValidatorFactory.getInstance().createDeckValidator(deckType), playerTypes); //gameId = game.getId();
table = new Table(options.getGameType(), DeckValidatorFactory.getInstance().createDeckValidator(options.getDeckType()), options.getPlayerTypes());
} }
public synchronized boolean joinTable(UUID sessionId, String name, DeckCardLists deckList) throws GameException { public synchronized boolean joinTable(UUID sessionId, String name, DeckCardLists deckList) throws GameException {
@ -100,8 +105,7 @@ public class TableController {
} }
Player player = createPlayer(name, deck, seat.getPlayerType()); Player player = createPlayer(name, deck, seat.getPlayerType());
game.loadCards(deck.getCards(), player.getId()); match.addPlayer(player, deck);
game.loadCards(deck.getSideboard(), player.getId());
table.joinTable(player, seat); table.joinTable(player, seat);
logger.info("player joined " + player.getId()); logger.info("player joined " + player.getId());
//only add human players to sessionPlayerMap //only add human players to sessionPlayerMap
@ -116,7 +120,7 @@ public class TableController {
if (table.getState() != TableState.DUELING) { if (table.getState() != TableState.DUELING) {
return false; return false;
} }
SessionManager.getInstance().getSession(sessionId).watchGame(game.getId()); SessionManager.getInstance().getSession(sessionId).watchGame(match.getGame().getId());
return true; return true;
} }
@ -141,7 +145,7 @@ public class TableController {
} }
private Player createPlayer(String name, Deck deck, String playerType) { private Player createPlayer(String name, Deck deck, String playerType) {
Player player = PlayerFactory.getInstance().createPlayer(playerType, name, deck, game.getRangeOfInfluence()); Player player = PlayerFactory.getInstance().createPlayer(playerType, name, deck, options.getRange());
logger.info("Player created " + player.getId()); logger.info("Player created " + player.getId());
return player; return player;
} }
@ -151,26 +155,43 @@ public class TableController {
table.leaveTable(sessionPlayerMap.get(sessionId)); table.leaveTable(sessionPlayerMap.get(sessionId));
} }
public synchronized void startGame(UUID sessionId) { public synchronized void startMatch(UUID sessionId) {
if (sessionId.equals(this.sessionId) && table.getState() == TableState.STARTING) { if (sessionId.equals(this.sessionId) && table.getState() == TableState.STARTING) {
try { try {
table.initGame(game); match.startMatch();
startGame();
} catch (GameException ex) { } catch (GameException ex) {
logger.log(Level.SEVERE, null, ex); logger.log(Level.SEVERE, null, ex);
} }
GameManager.getInstance().createGameSession(game, sessionPlayerMap, table.getId()); }
SessionManager sessionManager = SessionManager.getInstance(); }
for (Entry<UUID, UUID> entry: sessionPlayerMap.entrySet()) {
sessionManager.getSession(entry.getKey()).gameStarted(game.getId(), entry.getValue()); private void startGame() throws GameException {
} match.startGame();
GameManager.getInstance().createGameSession(match.getGame(), sessionPlayerMap, table.getId());
SessionManager sessionManager = SessionManager.getInstance();
for (Entry<UUID, UUID> entry: sessionPlayerMap.entrySet()) {
sessionManager.getSession(entry.getKey()).gameStarted(match.getGame().getId(), entry.getValue());
} }
} }
public void endGame() { public void endGame() {
match.endGame();
table.endGame(); table.endGame();
saveGame(); saveGame();
GameManager.getInstance().removeGame(game.getId()); GameManager.getInstance().removeGame(match.getGame().getId());
game = null; try {
if (!match.isMatchOver()) {
startGame();
}
} catch (GameException ex) {
logger.log(Level.SEVERE, null, ex);
}
endMatch();
}
public void endMatch() {
match = null;
} }
public void swapSeats(int seatNum1, int seatNum2) { public void swapSeats(int seatNum1, int seatNum2) {
@ -188,17 +209,17 @@ public class TableController {
private void saveGame() { private void saveGame() {
try { try {
OutputStream file = new FileOutputStream("saved/" + game.getId().toString() + ".game"); OutputStream file = new FileOutputStream("saved/" + match.getGame().getId().toString() + ".game");
OutputStream buffer = new BufferedOutputStream(file); OutputStream buffer = new BufferedOutputStream(file);
ObjectOutput output = new ObjectOutputStream(new GZIPOutputStream(buffer)); ObjectOutput output = new ObjectOutputStream(new GZIPOutputStream(buffer));
try { try {
output.writeObject(game); output.writeObject(match.getGame());
output.writeObject(game.getGameStates()); output.writeObject(match.getGame().getGameStates());
} }
finally { finally {
output.close(); output.close();
} }
logger.log(Level.INFO, "Saved game:" + game.getId()); logger.log(Level.INFO, "Saved game:" + match.getGame().getId());
} }
catch(IOException ex) { catch(IOException ex) {
logger.log(Level.SEVERE, "Cannot save game.", ex); logger.log(Level.SEVERE, "Cannot save game.", ex);
@ -207,7 +228,7 @@ public class TableController {
private Game loadGame() { private Game loadGame() {
try{ try{
InputStream file = new FileInputStream("saved/" + gameId.toString() + ".game"); InputStream file = new FileInputStream("saved/" + match.getGame().toString() + ".game");
InputStream buffer = new BufferedInputStream(file); InputStream buffer = new BufferedInputStream(file);
ObjectInput input = new CopierObjectInputStream(Main.classLoader, new GZIPInputStream(buffer)); ObjectInput input = new CopierObjectInputStream(Main.classLoader, new GZIPInputStream(buffer));
try { try {
@ -224,7 +245,7 @@ public class TableController {
logger.log(Level.SEVERE, "Cannot load game. Class not found.", ex); logger.log(Level.SEVERE, "Cannot load game. Class not found.", ex);
} }
catch(IOException ex) { catch(IOException ex) {
logger.log(Level.SEVERE, "Cannot load game:" + game.getId(), ex); logger.log(Level.SEVERE, "Cannot load game:" + match.getGame().getId(), ex);
} }
return null; return null;
} }

View file

@ -38,6 +38,8 @@ import mage.Constants.MultiplayerAttackOption;
import mage.Constants.RangeOfInfluence; import mage.Constants.RangeOfInfluence;
import mage.cards.decks.DeckCardLists; import mage.cards.decks.DeckCardLists;
import mage.game.GameException; import mage.game.GameException;
import mage.game.match.MatchType;
import mage.game.match.MatchOptions;
import mage.util.Logging; import mage.util.Logging;
/** /**
@ -56,8 +58,8 @@ public class TableManager {
return INSTANCE; return INSTANCE;
} }
public Table createTable(UUID sessionId, String gameType, String deckType, List<String> playerTypes, MultiplayerAttackOption attackOption, RangeOfInfluence range) { public Table createTable(UUID sessionId, MatchOptions options) {
TableController tableController = new TableController(sessionId, gameType, deckType, playerTypes, attackOption, range); TableController tableController = new TableController(sessionId, options);
controllers.put(tableController.getTable().getId(), tableController); controllers.put(tableController.getTable().getId(), tableController);
tables.put(tableController.getTable().getId(), tableController.getTable()); tables.put(tableController.getTable().getId(), tableController.getTable());
return tableController.getTable(); return tableController.getTable();
@ -100,8 +102,8 @@ public class TableManager {
return controllers.get(tableId).getChatId(); return controllers.get(tableId).getChatId();
} }
public void startGame(UUID sessionId, UUID roomId, UUID tableId) { public void startMatch(UUID sessionId, UUID roomId, UUID tableId) {
controllers.get(tableId).startGame(sessionId); controllers.get(tableId).startMatch(sessionId);
} }
public boolean watchTable(UUID sessionId, UUID tableId) { public boolean watchTable(UUID sessionId, UUID tableId) {

View file

@ -21,6 +21,9 @@ import java.util.List;
import java.util.UUID; import java.util.UUID;
import java.util.logging.Level; import java.util.logging.Level;
import java.util.logging.Logger; import java.util.logging.Logger;
import mage.Constants.MultiplayerAttackOption;
import mage.Constants.RangeOfInfluence;
import mage.game.match.MatchOptions;
/** /**
* Base for starting Mage server. * Base for starting Mage server.
@ -64,14 +67,18 @@ public class MageBase {
connect("player", "localhost", 17171); connect("player", "localhost", 17171);
UUID roomId = server.getMainRoomId(); UUID roomId = server.getMainRoomId();
List<String> playerTypes = new ArrayList<String>(); MatchOptions options = new MatchOptions("1", "Two Player Duel");
playerTypes.add("Human"); options.getPlayerTypes().add("Human");
playerTypes.add("Computer - default"); options.getPlayerTypes().add("Computer - default");
TableView table = server.createTable(sessionId, roomId, "Two Player Duel", "Limited", playerTypes, null, null); options.setDeckType("Limited");
options.setAttackOption(MultiplayerAttackOption.LEFT);
options.setRange(RangeOfInfluence.ALL);
options.setWinsNeeded(1);
TableView table = server.createTable(sessionId, roomId, options);
System.out.println("Cards in the deck: " + Sets.loadDeck("UW Control.dck").getCards().size()); System.out.println("Cards in the deck: " + Sets.loadDeck("UW Control.dck").getCards().size());
server.joinTable(sessionId, roomId, table.getTableId(), "Human", Sets.loadDeck("UW Control.dck")); server.joinTable(sessionId, roomId, table.getTableId(), "Human", Sets.loadDeck("UW Control.dck"));
server.joinTable(sessionId, roomId, table.getTableId(), "Computer", Sets.loadDeck("UW Control.dck")); server.joinTable(sessionId, roomId, table.getTableId(), "Computer", Sets.loadDeck("UW Control.dck"));
server.startGame(sessionId, roomId, table.getTableId()); server.startMatch(sessionId, roomId, table.getTableId());
synchronized (syncStart) { synchronized (syncStart) {
int waitTime = 7000; int waitTime = 7000;

View file

@ -28,6 +28,7 @@
package mage.game; package mage.game;
import mage.game.match.MatchType;
import mage.cards.Card; import mage.cards.Card;
import mage.game.stack.SpellStack; import mage.game.stack.SpellStack;
import mage.MageObject; import mage.MageObject;
@ -64,7 +65,7 @@ import mage.players.Players;
public interface Game extends MageItem, Serializable { public interface Game extends MageItem, Serializable {
public GameType getGameType(); public MatchType getGameType();
public int getNumPlayers(); public int getNumPlayers();
public int getLife(); public int getLife();
public RangeOfInfluence getRangeOfInfluence(); public RangeOfInfluence getRangeOfInfluence();

View file

@ -28,6 +28,7 @@
package mage.game; package mage.game;
import mage.game.match.MatchType;
import java.io.IOException; import java.io.IOException;
import mage.game.stack.SpellStack; import mage.game.stack.SpellStack;
import java.io.Serializable; import java.io.Serializable;
@ -315,7 +316,7 @@ public abstract class GameImpl<T extends GameImpl<T>> implements Game, Serializa
player = players.getNext(this); player = players.getNext(this);
} }
winnerId = findWinner(); winnerId = findWinnersAndLosers();
saveState(); saveState();
} }
@ -380,13 +381,21 @@ public abstract class GameImpl<T extends GameImpl<T>> implements Game, Serializa
} }
} }
protected UUID findWinner() { protected UUID findWinnersAndLosers() {
UUID winner = null;
for (Player player: state.getPlayers().values()) { for (Player player: state.getPlayers().values()) {
if (player.hasWon() || (!player.hasLost() && !player.hasLeft())) { if (player.hasWon() || (!player.hasLost() && !player.hasLeft())) {
return player.getId(); player.won(this);
winner = player.getId();
break;
} }
} }
return null; for (Player player: state.getPlayers().values()) {
if (winner != null && !player.getId().equals(winner)) {
player.lost(this);
}
}
return winner;
} }
protected void endOfTurn() { protected void endOfTurn() {

View file

@ -26,10 +26,13 @@
* or implied, of BetaSteward_at_googlemail.com. * or implied, of BetaSteward_at_googlemail.com.
*/ */
package mage.game; package mage.game.match;
import java.util.List; import java.util.List;
import java.util.UUID;
import mage.cards.decks.Deck; import mage.cards.decks.Deck;
import mage.game.Game;
import mage.game.GameException;
import mage.players.Player; import mage.players.Player;
/** /**
@ -38,11 +41,13 @@ import mage.players.Player;
*/ */
public interface Match { public interface Match {
public UUID getId();
public boolean isMatchOver(); public boolean isMatchOver();
public List<MatchPlayer> getPlayers(); public List<MatchPlayer> getPlayers();
public void addPlayer(Player player, Deck deck); public void addPlayer(Player player, Deck deck);
public int getMaxPlayers(); public void startMatch() throws GameException;
public int getMinPlayers(); public void startGame() throws GameException;
public void startMatch(); public void endGame();
public Game getGame();
} }

View file

@ -26,27 +26,29 @@
* or implied, of BetaSteward_at_googlemail.com. * or implied, of BetaSteward_at_googlemail.com.
*/ */
package mage.game; package mage.game.match;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;
import java.util.UUID;
import mage.cards.decks.Deck; import mage.cards.decks.Deck;
import mage.game.Game;
import mage.game.GameException;
import mage.players.Player; import mage.players.Player;
/** /**
* *
* @author BetaSteward_at_googlemail.com * @author BetaSteward_at_googlemail.com
*/ */
public class MatchImpl implements Match { public abstract class MatchImpl<T extends Game> implements Match {
protected UUID id = UUID.randomUUID();
protected List<MatchPlayer> players = new ArrayList<MatchPlayer>(); protected List<MatchPlayer> players = new ArrayList<MatchPlayer>();
protected List<Game> games = new ArrayList<Game>(); protected List<T> games = new ArrayList<T>();
protected int winsNeeded; protected MatchOptions options;
protected int maxPlayers;
protected int minPlayers;
public MatchImpl(int winsNeeded) { public MatchImpl(MatchOptions options) {
this.winsNeeded = winsNeeded; this.options = options;
} }
@Override @Override
@ -61,14 +63,19 @@ public class MatchImpl implements Match {
} }
@Override @Override
public void startMatch() { public void startMatch() throws GameException {
} }
@Override
public UUID getId() {
return id;
}
@Override @Override
public boolean isMatchOver() { public boolean isMatchOver() {
for (MatchPlayer player: players) { for (MatchPlayer player: players) {
if (player.getWins() >= winsNeeded) { if (player.getWins() >= options.getWinsNeeded()) {
return true; return true;
} }
} }
@ -76,13 +83,29 @@ public class MatchImpl implements Match {
} }
@Override @Override
public int getMaxPlayers() { public T getGame() {
return this.maxPlayers; return games.get(games.size() -1);
}
protected void initGame(Game game) throws GameException {
for (MatchPlayer matchPlayer: this.players) {
game.addPlayer(matchPlayer.getPlayer());
game.loadCards(matchPlayer.getDeck().getCards(), matchPlayer.getPlayer().getId());
game.loadCards(matchPlayer.getDeck().getSideboard(), matchPlayer.getPlayer().getId());
}
} }
@Override @Override
public int getMinPlayers() { public void endGame() {
return this.minPlayers; Game game = getGame();
for (MatchPlayer player: this.players) {
Player p = game.getPlayer(player.getPlayer().getId());
if (p != null) {
if (p.hasWon())
player.addWin();
if (p.hasLost())
player.addLose();
}
}
} }
} }

View file

@ -0,0 +1,104 @@
/*
* Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are
* permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this list of
* conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
* of conditions and the following disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* The views and conclusions contained in the software and documentation are those of the
* authors and should not be interpreted as representing official policies, either expressed
* or implied, of BetaSteward_at_googlemail.com.
*/
package mage.game.match;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import mage.Constants.MultiplayerAttackOption;
import mage.Constants.RangeOfInfluence;
/**
*
* @author BetaSteward_at_googlemail.com
*/
public class MatchOptions implements Serializable {
protected String name;
protected MultiplayerAttackOption attackOption;
protected RangeOfInfluence range;
protected int winsNeeded;
protected String gameType;
protected String deckType;
protected List<String> playerTypes = new ArrayList<String>();
public MatchOptions(String name, String gameType) {
this.name = name;
this.gameType = gameType;
}
public String getName() {
return name;
}
public MultiplayerAttackOption getAttackOption() {
return attackOption;
}
public void setAttackOption(MultiplayerAttackOption attackOption) {
this.attackOption = attackOption;
}
public RangeOfInfluence getRange() {
return range;
}
public void setRange(RangeOfInfluence range) {
this.range = range;
}
public int getWinsNeeded() {
return winsNeeded;
}
public void setWinsNeeded(int winsNeeded) {
this.winsNeeded = winsNeeded;
}
public String getGameType() {
return gameType;
}
public void setGameType(String gameType) {
this.gameType = gameType;
}
public String getDeckType() {
return deckType;
}
public void setDeckType(String deckType) {
this.deckType = deckType;
}
public List<String> getPlayerTypes() {
return playerTypes;
}
}

View file

@ -26,7 +26,7 @@
* or implied, of BetaSteward_at_googlemail.com. * or implied, of BetaSteward_at_googlemail.com.
*/ */
package mage.game; package mage.game.match;
import mage.cards.decks.Deck; import mage.cards.decks.Deck;
import mage.players.Player; import mage.players.Player;

View file

@ -26,15 +26,17 @@
* or implied, of BetaSteward_at_googlemail.com. * or implied, of BetaSteward_at_googlemail.com.
*/ */
package mage.game; package mage.game.match;
import java.io.Serializable; import java.io.Serializable;
import mage.Constants.MultiplayerAttackOption;
import mage.Constants.RangeOfInfluence;
/** /**
* *
* @author BetaSteward_at_googlemail.com * @author BetaSteward_at_googlemail.com
*/ */
public abstract class GameType implements Serializable { public abstract class MatchType<T extends MatchType<T>> implements Serializable {
protected String name; protected String name;
protected int minPlayers; protected int minPlayers;
@ -44,6 +46,20 @@ public abstract class GameType implements Serializable {
protected boolean useRange; protected boolean useRange;
protected boolean useAttackOption; protected boolean useAttackOption;
protected MatchType() {}
protected MatchType(final MatchType matchType) {
this.name = matchType.name;
this.maxPlayers = matchType.maxPlayers;
this.minPlayers = matchType.minPlayers;
this.numTeams = matchType.numTeams;
this.playersPerTeam = matchType.playersPerTeam;
this.useRange = matchType.useRange;
this.useAttackOption = matchType.useAttackOption;
}
public abstract T copy();
@Override @Override
public String toString() { public String toString() {
return name; return name;