statistics/src/main/java/cz/xelfi/quoridor/statistics/OpeningTreeNode.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Thu, 07 Jan 2010 22:34:17 +0100
branchstatistics-and-elo
changeset 178 4b78d4f028b3
child 191 c8a0edd2a392
permissions -rw-r--r--
Initial version of statistics and ELO rating. Donated by Martin Rexa
     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 2010 Martin Rexa
    25  */
    26 
    27 package cz.xelfi.quoridor.statistics;
    28 
    29 import cz.xelfi.quoridor.webidor.Game;
    30 import cz.xelfi.quoridor.webidor.GameId;
    31 import cz.xelfi.quoridor.webidor.GameStatus;
    32 import cz.xelfi.quoridor.webidor.User;
    33 import cz.xelfi.quoridor.Move;
    34 import java.util.HashMap;
    35 import java.util.Map;
    36 import java.util.List;
    37 import java.util.ArrayList;
    38 import javax.xml.bind.annotation.XmlAttribute;
    39 
    40 /**
    41  *
    42  * @author Martin Rexa
    43  */
    44 public class OpeningTreeNode {
    45     @XmlAttribute
    46     String hashCode;
    47     List<GameId> gameIds;
    48     List<GameId> finishedGames;
    49     Map<Move, OpeningTreeNode> children;
    50 
    51     public OpeningTreeNode(){
    52     }
    53 
    54     public OpeningTreeNode(String hashCode){
    55         this.hashCode = hashCode;
    56         gameIds = new ArrayList<GameId>();
    57         finishedGames = new ArrayList<GameId>();
    58         children = new HashMap<Move,OpeningTreeNode>();
    59     }
    60 
    61     public OpeningTreeNode addGame(Game game){
    62         gameIds.add(game.getId());
    63         return this;
    64     }
    65 
    66     public OpeningTreeNode addFinishedGame(Game game){
    67         finishedGames.add(game.getId());
    68         return this;
    69     }
    70 
    71     public OpeningTreeNode addGameId(GameId gameId){
    72         gameIds.add(gameId);
    73         return this;
    74     }
    75 
    76     public OpeningTreeNode addChild(Move move, OpeningTreeNode child){
    77         children.put(move, child);
    78         return this;
    79     }
    80 
    81     public OpeningNodeView getView(User user){
    82         return getView(user.getId());
    83     }
    84 
    85     public OpeningNodeView getView(String userId){
    86         OpeningNodeView view = new OpeningNodeView(hashCode);
    87         for(Map.Entry<Move, OpeningTreeNode> e: children.entrySet()){
    88             for(GameId gId: e.getValue().gameIds){
    89                 if(User.canSee(gId, userId)){
    90                     view.processGame(e.getKey(), e.getValue().hashCode, gId);
    91                 }
    92             }
    93         }
    94         for(GameId gId: finishedGames){
    95             view.addFinishedGame(gId);
    96         }
    97         return view;
    98     }
    99 
   100     public List<GameId> filterGames(String userId, GameStatus status){
   101         List<GameId> result = new ArrayList<GameId>();
   102         for(GameId gId: gameIds){
   103             if(User.canSee(gId, userId))
   104                 if(gId.getStatus().equals(status))
   105                     result.add(gId);
   106         }
   107         return result;
   108     }
   109 
   110     public List<GameId> getGameIds(){
   111         return gameIds;
   112     }
   113 
   114 //    @XmlAttribute
   115 //    @XmlElement
   116     public String getHashCode(){
   117         return this.hashCode;
   118     }
   119 
   120 
   121     @Override
   122     public boolean equals(Object obj) {
   123         if (obj == null) {
   124             return false;
   125         }
   126         if (getClass() != obj.getClass()) {
   127             return false;
   128         }
   129         OpeningTreeNode other = (OpeningTreeNode)obj;
   130         return hashCode.equals(other.hashCode);
   131     }
   132 
   133     @Override
   134     public int hashCode() {
   135         return hashCode.hashCode();
   136     }
   137 
   138 }