webidor/src/main/java/cz/xelfi/quoridor/webidor/Game.java
author Jaroslav Tulach <jtulach@netbeans.org>
Sun, 12 Jul 2009 13:59:07 +0200
changeset 35 2e85dd878f04
child 37 782d925cb5a1
permissions -rw-r--r--
Converting the webidor into Jersey based REST server
     1 /*
     2  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     3  *
     4  * The contents of this file are subject to the terms of either the GNU
     5  * General Public License Version 2 only ("GPL") or the Common
     6  * Development and Distribution License("CDDL") (collectively, the
     7  * "License"). You may not use this file except in compliance with the
     8  * License. You can obtain a copy of the License at
     9  * http://www.netbeans.org/cddl-gplv2.html
    10  * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
    11  * specific language governing permissions and limitations under the
    12  * License.  When distributing the software, include this License Header
    13  * Notice in each file and include the License file at
    14  * nbbuild/licenses/CDDL-GPL-2-CP.  Sun designates this
    15  * particular file as subject to the "Classpath" exception as provided
    16  * by Sun in the GPL Version 2 section of the License file that
    17  * accompanied this code. If applicable, add the following below the
    18  * License Header, with the fields enclosed by brackets [] replaced by
    19  * your own identifying information:
    20  * "Portions Copyrighted [year] [name of copyright owner]"
    21  *
    22  * Contributor(s):
    23  *
    24  * Portions Copyrighted 2009 Jaroslav Tulach
    25  */
    26 
    27 package cz.xelfi.quoridor.webidor;
    28 
    29 import cz.xelfi.quoridor.Board;
    30 import cz.xelfi.quoridor.IllegalPositionException;
    31 import cz.xelfi.quoridor.Move;
    32 import cz.xelfi.quoridor.Player;
    33 import java.util.UUID;
    34 import javax.xml.bind.annotation.XmlAccessType;
    35 import javax.xml.bind.annotation.XmlAccessorType;
    36 import javax.xml.bind.annotation.XmlAttribute;
    37 import javax.xml.bind.annotation.XmlID;
    38 import javax.xml.bind.annotation.XmlRootElement;
    39 
    40 /**
    41  *
    42  * @author Jaroslav Tulach <jtulach@netbeans.org>
    43  */
    44 @XmlRootElement
    45 @XmlAccessorType(XmlAccessType.FIELD)
    46 public final class Game {
    47     @XmlAttribute
    48     private String white;
    49     @XmlAttribute
    50     private String black;
    51     @XmlID
    52     private String id;
    53 
    54     private transient Board board;
    55 
    56     Game() {
    57     }
    58 
    59     public Game(String first, String second) {
    60         this.white = first;
    61         this.black = second;
    62         this.id = UUID.randomUUID().toString();
    63     }
    64 
    65     public String getId() {
    66         return id;
    67     }
    68 
    69     public String getWhite() {
    70         return white;
    71     }
    72 
    73     public String getBlack() {
    74         return black;
    75     }
    76 
    77     public Board getBoard() {
    78         if (board == null) {
    79             board = Board.empty();
    80         }
    81         return board;
    82     }
    83 
    84     public void apply(String player, Move m) throws IllegalPositionException {
    85         Player p = null;
    86         if (getWhite().equals(player)) {
    87             p = getBoard().getPlayers().get(0);
    88         } else {
    89             if (getBlack().equals(player)) {
    90                 p = getBoard().getPlayers().get(1);
    91             }
    92         }
    93         if (p != getBoard().getCurrentPlayer()) {
    94             throw new IllegalArgumentException("Wrong player: " + player);
    95         }
    96 
    97         board = getBoard().apply(m);
    98     }
    99 }