minesweeper/src/main/java/org/apidesign/demo/minesweeper/MinesModel.java
author Jaroslav Tulach <jtulach@netbeans.org>
Sat, 08 Feb 2014 09:25:53 +0100
branchminesweeper
changeset 75 4eb79fa3434a
parent 72 9dacd7d46405
child 76 55b2e1d3ad2b
permissions -rw-r--r--
Different colors and symbols
     1 /**
     2  * The MIT License (MIT)
     3  *
     4  * Copyright (C) 2013 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     5  *
     6  * Permission is hereby granted, free of charge, to any person obtaining a copy
     7  * of this software and associated documentation files (the "Software"), to deal
     8  * in the Software without restriction, including without limitation the rights
     9  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    10  * copies of the Software, and to permit persons to whom the Software is
    11  * furnished to do so, subject to the following conditions:
    12  *
    13  * The above copyright notice and this permission notice shall be included in
    14  * all copies or substantial portions of the Software.
    15  *
    16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    21  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    22  * THE SOFTWARE.
    23  */
    24 package org.apidesign.demo.minesweeper;
    25 
    26 import java.util.ArrayList;
    27 import java.util.List;
    28 import java.util.Random;
    29 import net.java.html.json.ComputedProperty;
    30 import net.java.html.json.Function;
    31 import net.java.html.json.Model;
    32 import net.java.html.json.ModelOperation;
    33 import net.java.html.json.Property;
    34 
    35 /** Model of the mine field.
    36  */
    37 @Model(className = "Mines", properties = {
    38     @Property(name = "state", type = MinesModel.GameState.class),
    39     @Property(name = "rows", type = Row.class, array = true),
    40 })
    41 final class MinesModel {
    42     enum GameState {
    43         IN_PROGRESS, WON, LOST;
    44     }
    45     
    46     @Model(className = "Row", properties = {
    47         @Property(name = "columns", type = Square.class, array = true)
    48     })
    49     static class RowModel {
    50     }
    51 
    52     @Model(className = "Square", properties = {
    53         @Property(name = "state", type = SquareType.class),
    54         @Property(name = "mine", type = boolean.class)
    55     })
    56     static class SquareModel {
    57         @ComputedProperty static String html(SquareType state) {
    58             if (state == null) return "&nbsp;";
    59             switch (state) {
    60                 case EXPLOSION: return "&#x2717;";
    61                 case UNKNOWN: return "&nbsp;";
    62                 case DISCOVERED: return "&#x2714;";  
    63                 case N_0: return "&nbsp;";
    64             }
    65             return "&#x278" + (state.ordinal() - 1);
    66         }
    67         
    68         @ComputedProperty static String style(SquareType state) {
    69             return state == null ? null : state.toString();
    70         }
    71     }
    72     
    73     enum SquareType {
    74         N_0, N_1, N_2, N_3, N_4, N_5, N_6, N_7, N_8,
    75         UNKNOWN, EXPLOSION, DISCOVERED;
    76         
    77         final boolean isVisible() {
    78             return name().startsWith("N_");
    79         }
    80 
    81         final SquareType moreBombsAround() {
    82             switch (this) {
    83                 case EXPLOSION:
    84                 case UNKNOWN:
    85                 case DISCOVERED:
    86                 case N_8:
    87                     return this;
    88             }
    89             return values()[ordinal() + 1];
    90         }
    91     }
    92     
    93     @Function static void smallGame(Mines model) {
    94         model.init(5, 5, 5);
    95     }
    96     @Function static void normalGame(Mines model) {
    97         model.init(10, 10, 10);
    98     }
    99     
   100     @Function static void giveUp(Mines model) {
   101         showAllBombs(model, SquareType.EXPLOSION);
   102     }
   103     
   104     @ModelOperation static void init(Mines model, int width, int height, int mines) {
   105         List<Row> rows = new ArrayList<Row>(height);
   106         for (int y = 0; y < height; y++) {
   107             Square[] columns = new Square[width];
   108             for (int x = 0; x < width; x++) {
   109                 columns[x] = new Square(SquareType.UNKNOWN, false);
   110             }
   111             rows.add(new Row(columns));
   112         }
   113         
   114         Random r = new Random();
   115         while (mines > 0) {
   116             int x = r.nextInt(width);
   117             int y = r.nextInt(height);
   118             final Square s = rows.get(y).getColumns().get(x);
   119             if (s.isMine()) {
   120                 continue;
   121             }
   122             s.setMine(true);
   123             mines--;
   124         }
   125 
   126         model.setState(GameState.IN_PROGRESS);
   127         model.getRows().clear();
   128         model.getRows().addAll(rows);
   129     }
   130     
   131     @ModelOperation static void computeMines(Mines model) {
   132         List<Integer> xBombs = new ArrayList<Integer>();
   133         List<Integer> yBombs = new ArrayList<Integer>();
   134         final List<Row> rows = model.getRows();
   135         boolean emptyHidden = false;
   136         SquareType[][] arr = new SquareType[rows.size()][];
   137         for (int y = 0; y < rows.size(); y++) {
   138             final List<Square> columns = rows.get(y).getColumns();
   139             arr[y] = new SquareType[columns.size()];
   140             for (int x = 0; x < columns.size(); x++) {
   141                 Square sq = columns.get(x);
   142                 if (sq.isMine()) {
   143                     xBombs.add(x);
   144                     yBombs.add(y);
   145                 }
   146                 if (sq.getState().isVisible()) {
   147                     arr[y][x] = SquareType.N_0;
   148                 } else {
   149                     if (!sq.isMine()) {
   150                         emptyHidden = true;
   151                     }
   152                 }
   153             }
   154         }
   155         for (int i = 0; i < xBombs.size(); i++) {
   156             int x = xBombs.get(i);
   157             int y = yBombs.get(i);
   158             
   159             incrementAround(arr, x, y);
   160         }
   161         for (int y = 0; y < rows.size(); y++) {
   162             final List<Square> columns = rows.get(y).getColumns();
   163             for (int x = 0; x < columns.size(); x++) {
   164                 Square sq = columns.get(x);
   165                 final SquareType newState = arr[y][x];
   166                 if (newState != null && newState != sq.getState()) {
   167                     sq.setState(newState);
   168                 }
   169             }
   170         }
   171         
   172         if (!emptyHidden) {
   173             model.setState(GameState.WON);
   174             showAllBombs(model, SquareType.DISCOVERED);
   175         }
   176     }
   177     
   178     private static void incrementAround(SquareType[][] arr, int x, int y) {
   179         incrementAt(arr, x - 1, y - 1);
   180         incrementAt(arr, x - 1, y);
   181         incrementAt(arr, x - 1, y + 1);
   182 
   183         incrementAt(arr, x + 1, y - 1);
   184         incrementAt(arr, x + 1, y);
   185         incrementAt(arr, x + 1, y + 1);
   186         
   187         incrementAt(arr, x, y - 1);
   188         incrementAt(arr, x, y + 1);
   189     }
   190     
   191     private static void incrementAt(SquareType[][] arr, int x, int y) {
   192         if (y >= 0 && y < arr.length) {
   193             SquareType[] r = arr[y];
   194             if (x >= 0 && x < r.length) {
   195                 SquareType sq = r[x];
   196                 if (sq != null) {
   197                     r[x] = sq.moreBombsAround();
   198                 }
   199             }
   200         }
   201     }
   202     
   203     static void showAllBombs(Mines model, SquareType state) {
   204         for (Row row : model.getRows()) {
   205             for (Square square : row.getColumns()) {
   206                 if (square.isMine()) {
   207                     square.setState(state);
   208                 }
   209             }
   210         }
   211     }
   212     
   213     @Function static void click(Mines model, Square data) {
   214         if (model.getState() != GameState.IN_PROGRESS) {
   215             return;
   216         }
   217         
   218         switch (data.getState()) {
   219             case UNKNOWN: 
   220                 if (data.isMine()) {
   221                     showAllBombs(model, SquareType.EXPLOSION);
   222                     model.setState(GameState.LOST);
   223                 } else {
   224                     expandKnown(model, data);
   225                 }
   226             break;
   227         }
   228     }
   229     private static void expandKnown(Mines model, Square data) {
   230         final List<Row> rows = model.getRows();
   231         for (int y = 0; y < rows.size(); y++) {
   232             final List<Square> columns = rows.get(y).getColumns();
   233             for (int x = 0; x < columns.size(); x++) {
   234                 Square sq = columns.get(x);
   235                 if (sq == data) {
   236                     expandKnown(model, x, y);
   237                     return;
   238                 }
   239             }
   240         }
   241     }
   242     private static void expandKnown(Mines model, int x , int y) {
   243         if (y < 0 || y >= model.getRows().size()) {
   244             return;
   245         }
   246         final List<Square> columns = model.getRows().get(y).getColumns();
   247         if (x < 0 || x >= columns.size()) {
   248             return;
   249         }
   250         final Square sq = columns.get(x);
   251         if (sq.getState() == SquareType.UNKNOWN) {
   252             sq.setState(SquareType.N_0);
   253             model.computeMines();
   254             if (sq.getState() == SquareType.N_0) {
   255                 expandKnown(model, x - 1, y - 1);
   256                 expandKnown(model, x - 1, y);
   257                 expandKnown(model, x - 1, y + 1);
   258                 expandKnown(model, x , y - 1);
   259                 expandKnown(model, x, y + 1);
   260                 expandKnown(model, x + 1, y - 1);
   261                 expandKnown(model, x + 1, y);
   262                 expandKnown(model, x + 1, y + 1);
   263             }
   264         }
   265     }
   266 }