chess/src/main/java/org/apidesign/html/demo/chess/BoardModel.java
author Jaroslav Tulach <jtulach@netbeans.org>
Thu, 25 Jul 2013 17:14:55 +0200
branchchess
changeset 26 b675be28fc49
parent 23 827f30fbdeab
child 29 9fb64f6528b5
permissions -rw-r--r--
Can move pieces and shows how to unit test the model
jtulach@22
     1
/**
jtulach@22
     2
 * The MIT License (MIT)
jtulach@22
     3
 *
jtulach@22
     4
 * Copyright (C) 2013 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
jtulach@22
     5
 *
jtulach@22
     6
 * Permission is hereby granted, free of charge, to any person obtaining a copy
jtulach@22
     7
 * of this software and associated documentation files (the "Software"), to deal
jtulach@22
     8
 * in the Software without restriction, including without limitation the rights
jtulach@22
     9
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
jtulach@22
    10
 * copies of the Software, and to permit persons to whom the Software is
jtulach@22
    11
 * furnished to do so, subject to the following conditions:
jtulach@22
    12
 *
jtulach@22
    13
 * The above copyright notice and this permission notice shall be included in
jtulach@22
    14
 * all copies or substantial portions of the Software.
jtulach@22
    15
 *
jtulach@22
    16
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
jtulach@22
    17
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
jtulach@22
    18
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
jtulach@22
    19
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
jtulach@22
    20
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
jtulach@22
    21
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
jtulach@22
    22
 * THE SOFTWARE.
jtulach@22
    23
 */
jtulach@22
    24
package org.apidesign.html.demo.chess;
jtulach@22
    25
jtulach@23
    26
import java.util.Locale;
jtulach@22
    27
import net.java.html.json.ComputedProperty;
jtulach@22
    28
import net.java.html.json.Function;
jtulach@22
    29
import net.java.html.json.Model;
jtulach@22
    30
import net.java.html.json.Property;
jtulach@22
    31
jtulach@22
    32
@Model(className="Board", properties={
jtulach@22
    33
    @Property(name = "rows", type = Row.class, array = true)
jtulach@22
    34
})
jtulach@22
    35
public class BoardModel {
jtulach@26
    36
    @Function static void selected(Board b, Square data) {
jtulach@26
    37
        Square previoslySelected = findSelectedSquare(b);
jtulach@26
    38
        if (previoslySelected == null) {
jtulach@26
    39
            if (data.getPiece() != null) {
jtulach@26
    40
                data.setSelected(true);
jtulach@26
    41
            }
jtulach@26
    42
        } else {
jtulach@26
    43
            data.setPieceColor(previoslySelected.getPieceColor());
jtulach@26
    44
            data.setPiece(previoslySelected.getPiece());
jtulach@26
    45
            previoslySelected.setPiece(null);
jtulach@26
    46
            previoslySelected.setPieceColor(null);
jtulach@26
    47
            previoslySelected.setSelected(false);
jtulach@26
    48
        }
jtulach@26
    49
    }
jtulach@26
    50
    
jtulach@26
    51
    static Square findSquare(Board b, char column, int row) {
jtulach@26
    52
        for (Row r : b.getRows()) {
jtulach@26
    53
            for (Square square : r.getColumns()) {
jtulach@26
    54
                if (square.getX() == column && square.getY() == row) {
jtulach@26
    55
                    return square;
jtulach@26
    56
                }
jtulach@26
    57
            }
jtulach@26
    58
        }
jtulach@26
    59
        return null;
jtulach@26
    60
    }
jtulach@26
    61
    
jtulach@26
    62
    static Square findSelectedSquare(Board b) {
jtulach@26
    63
        for (Row row : b.getRows()) {
jtulach@26
    64
            for (Square square : row.getColumns()) {
jtulach@26
    65
                if (square.isSelected()) {
jtulach@26
    66
                    return square;
jtulach@26
    67
                }
jtulach@26
    68
            }
jtulach@26
    69
        }
jtulach@26
    70
        return null;
jtulach@26
    71
    }
jtulach@26
    72
    
jtulach@26
    73
    @Model(className="Row", properties = {
jtulach@22
    74
        @Property(name = "columns", type = Square.class, array = true)
jtulach@22
    75
    })
jtulach@22
    76
    static class RowsImpl {
jtulach@22
    77
    }
jtulach@22
    78
    
jtulach@22
    79
    enum PieceType {
jtulach@23
    80
        PAWN(5), ROCK(2), KNIGHT(4), BISHOP(3), QUEEN(1), KING(0);
jtulach@23
    81
        
jtulach@23
    82
        final int entityIndex;
jtulach@23
    83
        
jtulach@23
    84
        PieceType(int ei) {
jtulach@23
    85
            this.entityIndex = ei;
jtulach@23
    86
        }
jtulach@23
    87
        
jtulach@23
    88
        String computeEntity(ColorType color) {
jtulach@23
    89
            if (color == null) {
jtulach@23
    90
                color = ColorType.WHITE;
jtulach@23
    91
            }
jtulach@23
    92
            int base;
jtulach@23
    93
            switch (color) {
jtulach@23
    94
                case WHITE: base = 12; break;
jtulach@23
    95
                case BLACK: base = 18; break;
jtulach@23
    96
                default:
jtulach@23
    97
                    throw new AssertionError();
jtulach@23
    98
            }
jtulach@23
    99
            return "&#98" + String.valueOf(base + entityIndex) + ";";
jtulach@23
   100
        }
jtulach@22
   101
    }
jtulach@22
   102
    enum ColorType {
jtulach@22
   103
        WHITE, BLACK;
jtulach@22
   104
    }
jtulach@22
   105
    
jtulach@22
   106
    @Model(className="Square", properties = {
jtulach@22
   107
        @Property(name = "piece", type = PieceType.class),
jtulach@22
   108
        @Property(name = "pieceColor", type = ColorType.class),
jtulach@22
   109
        @Property(name = "color", type = ColorType.class),
jtulach@22
   110
        @Property(name = "x", type = int.class),
jtulach@22
   111
        @Property(name = "y", type = int.class),
jtulach@26
   112
        @Property(name = "selected", type = boolean.class)
jtulach@22
   113
    })
jtulach@22
   114
    static class PieceImpl {
jtulach@23
   115
        @ComputedProperty static String pieceEntity(
jtulach@23
   116
            PieceType piece, ColorType pieceColor
jtulach@23
   117
        ) {
jtulach@22
   118
            if (piece == null) {
jtulach@22
   119
                return "";
jtulach@22
   120
            }
jtulach@23
   121
            return piece.computeEntity(pieceColor);
jtulach@23
   122
        }
jtulach@23
   123
        
jtulach@26
   124
        @ComputedProperty static String squareColor(ColorType color, boolean selected) {
jtulach@26
   125
            if (selected) {
jtulach@26
   126
                return "selected";
jtulach@26
   127
            }
jtulach@26
   128
            
jtulach@23
   129
            if (color == null) {
jtulach@23
   130
                return "";
jtulach@23
   131
            } else {
jtulach@23
   132
                return color.toString().toLowerCase(Locale.US);
jtulach@22
   133
            }
jtulach@22
   134
        }
jtulach@22
   135
    }
jtulach@22
   136
    
jtulach@22
   137
    public static void initialize(String[] args) {
jtulach@22
   138
        Board b = createBoard();
jtulach@22
   139
        b.applyBindings();
jtulach@22
   140
    }
jtulach@22
   141
jtulach@26
   142
    static Board createBoard() {
jtulach@22
   143
        Board b = new Board();
jtulach@22
   144
        for (int i = 8; i > 0; i--) {
jtulach@22
   145
            Row r = new Row();
jtulach@22
   146
            b.getRows().add(r);
jtulach@22
   147
            for (int j = 'A'; j <= 'H'; j++) {
jtulach@22
   148
                Square s = new Square();
jtulach@22
   149
                s.setX(j);
jtulach@22
   150
                s.setY(i);
jtulach@23
   151
                s.setColor((i + j) % 2 == 1 ? ColorType.WHITE : ColorType.BLACK);
jtulach@22
   152
                r.getColumns().add(s);
jtulach@22
   153
                if (i == 2) {
jtulach@22
   154
                    s.setPiece(PieceType.PAWN);
jtulach@22
   155
                    s.setPieceColor(ColorType.WHITE);
jtulach@22
   156
                } else if (i == 7) {
jtulach@22
   157
                    s.setPiece(PieceType.PAWN);
jtulach@22
   158
                    s.setPieceColor(ColorType.BLACK);
jtulach@22
   159
                } else if (i == 8 || i == 1) {
jtulach@23
   160
                    s.setPieceColor(i == 1 ? ColorType.WHITE : ColorType.BLACK);
jtulach@22
   161
                    PieceType t;
jtulach@22
   162
                    switch (j) {
jtulach@22
   163
                        case 'A': case 'H': t = PieceType.ROCK; break;
jtulach@22
   164
                        case 'B': case 'G': t = PieceType.KNIGHT; break;
jtulach@22
   165
                        case 'C': case 'F': t = PieceType.BISHOP; break;
jtulach@22
   166
                        case 'D': t = PieceType.QUEEN; break;
jtulach@22
   167
                        default: t = PieceType.KING; break;
jtulach@22
   168
                    }
jtulach@22
   169
                    s.setPiece(t);
jtulach@22
   170
                }
jtulach@22
   171
            }
jtulach@22
   172
        }
jtulach@22
   173
        return b;
jtulach@22
   174
    }
jtulach@22
   175
}