webidor/src/main/java/cz/xelfi/quoridor/webidor/GameId.java
author Jaroslav Tulach <jtulach@netbeans.org>
Tue, 08 Dec 2009 18:47:49 +0100
branchstrict-games-access
changeset 164 2949998db4f6
parent 131 19e81456eef2
permissions -rw-r--r--
Keeping the current game finished status when showing its history
     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 java.util.Comparator;
    30 import java.util.Date;
    31 import java.util.UUID;
    32 import javax.xml.bind.annotation.XmlAccessType;
    33 import javax.xml.bind.annotation.XmlAccessorType;
    34 import javax.xml.bind.annotation.XmlAttribute;
    35 import javax.xml.bind.annotation.XmlID;
    36 import javax.xml.bind.annotation.XmlRootElement;
    37 
    38 /** Basic identification of a game.
    39  *
    40  * @author Jaroslav Tulach <jtulach@netbeans.org>
    41  */
    42 @XmlRootElement
    43 @XmlAccessorType(XmlAccessType.FIELD)
    44 public class GameId {
    45     public static final Comparator<GameId> NEWEST_FIRST = new NewestFirst();
    46 
    47     @XmlAttribute
    48     private String white;
    49     @XmlAttribute
    50     private String black;
    51     @XmlAttribute
    52     private long started;
    53     @XmlAttribute
    54     private long modified;
    55     @XmlAttribute
    56     private GameStatus status;
    57     @XmlID @XmlAttribute
    58     private String id;
    59     @XmlAttribute
    60     private int comments;
    61     @XmlAttribute
    62     private boolean finished;
    63 
    64     GameId() {
    65     }
    66 
    67     public GameId(String first, String second) {
    68         this(first, second, new Date());
    69     }
    70     private GameId(String first, String second, Date d) {
    71         this(
    72             UUID.randomUUID().toString(),
    73             first, second, d, d, GameStatus.whiteMove, 0, false
    74         );
    75     }
    76 
    77     public GameId(
    78         String id, String first, String second,
    79         Date started, Date last, GameStatus result,
    80         int comments, boolean finished
    81     ) {
    82         this.white = first;
    83         this.black = second;
    84         this.id = id;
    85         this.started = started.getTime();
    86         this.modified = last.getTime();
    87         this.status = result;
    88         this.comments = comments;
    89         this.finished = finished;
    90     }
    91 
    92     public String getId() {
    93         return id;
    94     }
    95 
    96     public String getWhite() {
    97         return white;
    98     }
    99 
   100     public String getBlack() {
   101         return black;
   102     }
   103 
   104     public long getStarted() {
   105         return started;
   106     }
   107 
   108     public long getModified() {
   109         return modified;
   110     }
   111 
   112     public GameStatus getStatus() {
   113         return status;
   114     }
   115 
   116     public int getComments() {
   117         return comments;
   118     }
   119 
   120     public boolean isFinished() {
   121         return finished;
   122     }
   123 
   124     private static final class NewestFirst implements Comparator<GameId> {
   125         public int compare(GameId o1, GameId o2) {
   126             if (o1 == o2) {
   127                 return 0;
   128             }
   129             long diff = o2.getModified() - o1.getModified();
   130             if (diff != 0) {
   131                 return diff < 0 ? -1 : 1;
   132             }
   133             return o1.getId().compareTo(o2.getId());
   134         }
   135     }
   136 }