minesweeper/src/main/java/org/apidesign/demo/minesweeper/MinesModel.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sun, 25 May 2014 21:29:22 +0200
changeset 152 e2c6e9a946f1
parent 138 f4d6b81c2f07
child 153 6d2eb47e966b
permissions -rw-r--r--
If possible, move the mine into just clicked square
jtulach@63
     1
/**
jtulach@63
     2
 * The MIT License (MIT)
jtulach@63
     3
 *
jtulach@63
     4
 * Copyright (C) 2013 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
jtulach@63
     5
 *
jtulach@63
     6
 * Permission is hereby granted, free of charge, to any person obtaining a copy
jtulach@63
     7
 * of this software and associated documentation files (the "Software"), to deal
jtulach@63
     8
 * in the Software without restriction, including without limitation the rights
jtulach@63
     9
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
jtulach@63
    10
 * copies of the Software, and to permit persons to whom the Software is
jtulach@63
    11
 * furnished to do so, subject to the following conditions:
jtulach@63
    12
 *
jtulach@63
    13
 * The above copyright notice and this permission notice shall be included in
jtulach@63
    14
 * all copies or substantial portions of the Software.
jtulach@63
    15
 *
jtulach@63
    16
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
jtulach@63
    17
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
jtulach@63
    18
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
jtulach@63
    19
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
jtulach@63
    20
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
jtulach@63
    21
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
jtulach@63
    22
 * THE SOFTWARE.
jtulach@63
    23
 */
jtulach@63
    24
package org.apidesign.demo.minesweeper;
jtulach@63
    25
jtulach@63
    26
import java.util.ArrayList;
jtulach@63
    27
import java.util.List;
jtulach@63
    28
import java.util.Random;
jtulach@63
    29
import net.java.html.json.ComputedProperty;
jtulach@63
    30
import net.java.html.json.Function;
jtulach@63
    31
import net.java.html.json.Model;
jtulach@63
    32
import net.java.html.json.ModelOperation;
jtulach@63
    33
import net.java.html.json.Property;
jtulach@79
    34
import net.java.html.sound.AudioClip;
jtulach@63
    35
jtulach@63
    36
/** Model of the mine field.
jtulach@63
    37
 */
jtulach@63
    38
@Model(className = "Mines", properties = {
jtulach@63
    39
    @Property(name = "state", type = MinesModel.GameState.class),
jtulach@63
    40
    @Property(name = "rows", type = Row.class, array = true),
jtulach@63
    41
})
jtulach@90
    42
public final class MinesModel {
jtulach@63
    43
    enum GameState {
jtulach@63
    44
        IN_PROGRESS, WON, LOST;
jtulach@63
    45
    }
jtulach@63
    46
    
jtulach@63
    47
    @Model(className = "Row", properties = {
jtulach@63
    48
        @Property(name = "columns", type = Square.class, array = true)
jtulach@63
    49
    })
jtulach@63
    50
    static class RowModel {
jtulach@63
    51
    }
jtulach@63
    52
jtulach@63
    53
    @Model(className = "Square", properties = {
jtulach@63
    54
        @Property(name = "state", type = SquareType.class),
jtulach@63
    55
        @Property(name = "mine", type = boolean.class)
jtulach@63
    56
    })
jtulach@63
    57
    static class SquareModel {
jtulach@71
    58
        @ComputedProperty static String html(SquareType state) {
jtulach@75
    59
            if (state == null) return "&nbsp;";
jtulach@63
    60
            switch (state) {
jtulach@75
    61
                case EXPLOSION: return "&#x2717;";
jtulach@75
    62
                case UNKNOWN: return "&nbsp;";
jtulach@71
    63
                case DISCOVERED: return "&#x2714;";  
jtulach@71
    64
                case N_0: return "&nbsp;";
jtulach@63
    65
            }
jtulach@75
    66
            return "&#x278" + (state.ordinal() - 1);
jtulach@63
    67
        }
jtulach@65
    68
        
jtulach@65
    69
        @ComputedProperty static String style(SquareType state) {
jtulach@65
    70
            return state == null ? null : state.toString();
jtulach@65
    71
        }
jtulach@63
    72
    }
jtulach@63
    73
    
jtulach@63
    74
    enum SquareType {
jtulach@63
    75
        N_0, N_1, N_2, N_3, N_4, N_5, N_6, N_7, N_8,
jtulach@68
    76
        UNKNOWN, EXPLOSION, DISCOVERED;
jtulach@64
    77
        
jtulach@64
    78
        final boolean isVisible() {
jtulach@64
    79
            return name().startsWith("N_");
jtulach@64
    80
        }
jtulach@64
    81
jtulach@69
    82
        final SquareType moreBombsAround() {
jtulach@68
    83
            switch (this) {
jtulach@68
    84
                case EXPLOSION:
jtulach@68
    85
                case UNKNOWN:
jtulach@68
    86
                case DISCOVERED:
jtulach@68
    87
                case N_8:
jtulach@68
    88
                    return this;
jtulach@64
    89
            }
jtulach@64
    90
            return values()[ordinal() + 1];
jtulach@64
    91
        }
jtulach@63
    92
    }
jtulach@63
    93
    
jtulach@76
    94
    @ComputedProperty static boolean fieldShowing(GameState state) {
jtulach@76
    95
        return state != null;
jtulach@76
    96
    }
jtulach@76
    97
    
jtulach@76
    98
    @Function static void showHelp(Mines model) {
jtulach@76
    99
        model.setState(null);
jtulach@76
   100
    }
jtulach@76
   101
    
jtulach@70
   102
    @Function static void smallGame(Mines model) {
jtulach@70
   103
        model.init(5, 5, 5);
jtulach@70
   104
    }
jtulach@70
   105
    @Function static void normalGame(Mines model) {
jtulach@70
   106
        model.init(10, 10, 10);
jtulach@70
   107
    }
jtulach@70
   108
    
jtulach@72
   109
    @Function static void giveUp(Mines model) {
jtulach@72
   110
        showAllBombs(model, SquareType.EXPLOSION);
jaroslav@152
   111
        model.setState(GameState.LOST);
jtulach@72
   112
    }
jtulach@72
   113
    
jtulach@63
   114
    @ModelOperation static void init(Mines model, int width, int height, int mines) {
jtulach@107
   115
        List<Row> rows = model.getRows();
jtulach@107
   116
        if (rows.size() != height || rows.get(0).getColumns().size() != width) {
jtulach@107
   117
            rows = new ArrayList<Row>(height);
jtulach@107
   118
            for (int y = 0; y < height; y++) {
jtulach@107
   119
                Square[] columns = new Square[width];
jtulach@107
   120
                for (int x = 0; x < width; x++) {
jtulach@107
   121
                    columns[x] = new Square(SquareType.UNKNOWN, false);
jtulach@107
   122
                }
jtulach@107
   123
                rows.add(new Row(columns));
jtulach@63
   124
            }
jtulach@107
   125
        } else {
jtulach@107
   126
            for (Row row : rows) {
jtulach@107
   127
                for (Square sq : row.getColumns()) {
jtulach@107
   128
                    sq.setState(SquareType.UNKNOWN);
jtulach@107
   129
                    sq.setMine(false);
jtulach@107
   130
                }
jtulach@107
   131
            }
jtulach@63
   132
        }
jtulach@63
   133
        
jtulach@63
   134
        Random r = new Random();
jtulach@63
   135
        while (mines > 0) {
jtulach@63
   136
            int x = r.nextInt(width);
jtulach@63
   137
            int y = r.nextInt(height);
jtulach@63
   138
            final Square s = rows.get(y).getColumns().get(x);
jtulach@63
   139
            if (s.isMine()) {
jtulach@63
   140
                continue;
jtulach@63
   141
            }
jtulach@63
   142
            s.setMine(true);
jtulach@63
   143
            mines--;
jtulach@63
   144
        }
jtulach@63
   145
jtulach@63
   146
        model.setState(GameState.IN_PROGRESS);
jtulach@107
   147
        if (rows != model.getRows()) {
jtulach@107
   148
            model.getRows().clear();
jtulach@107
   149
            model.getRows().addAll(rows);
jtulach@107
   150
        }
jtulach@63
   151
    }
jtulach@63
   152
    
jtulach@64
   153
    @ModelOperation static void computeMines(Mines model) {
jtulach@64
   154
        List<Integer> xBombs = new ArrayList<Integer>();
jtulach@64
   155
        List<Integer> yBombs = new ArrayList<Integer>();
jtulach@64
   156
        final List<Row> rows = model.getRows();
jtulach@66
   157
        boolean emptyHidden = false;
jtulach@69
   158
        SquareType[][] arr = new SquareType[rows.size()][];
jtulach@64
   159
        for (int y = 0; y < rows.size(); y++) {
jtulach@64
   160
            final List<Square> columns = rows.get(y).getColumns();
jtulach@69
   161
            arr[y] = new SquareType[columns.size()];
jtulach@64
   162
            for (int x = 0; x < columns.size(); x++) {
jtulach@64
   163
                Square sq = columns.get(x);
jtulach@64
   164
                if (sq.isMine()) {
jtulach@64
   165
                    xBombs.add(x);
jtulach@64
   166
                    yBombs.add(y);
jtulach@64
   167
                }
jtulach@64
   168
                if (sq.getState().isVisible()) {
jtulach@69
   169
                    arr[y][x] = SquareType.N_0;
jtulach@66
   170
                } else {
jtulach@66
   171
                    if (!sq.isMine()) {
jtulach@66
   172
                        emptyHidden = true;
jtulach@66
   173
                    }
jtulach@64
   174
                }
jtulach@64
   175
            }
jtulach@64
   176
        }
jtulach@64
   177
        for (int i = 0; i < xBombs.size(); i++) {
jtulach@64
   178
            int x = xBombs.get(i);
jtulach@64
   179
            int y = yBombs.get(i);
jtulach@64
   180
            
jtulach@69
   181
            incrementAround(arr, x, y);
jtulach@69
   182
        }
jtulach@69
   183
        for (int y = 0; y < rows.size(); y++) {
jtulach@69
   184
            final List<Square> columns = rows.get(y).getColumns();
jtulach@69
   185
            for (int x = 0; x < columns.size(); x++) {
jtulach@69
   186
                Square sq = columns.get(x);
jtulach@69
   187
                final SquareType newState = arr[y][x];
jtulach@69
   188
                if (newState != null && newState != sq.getState()) {
jtulach@69
   189
                    sq.setState(newState);
jtulach@69
   190
                }
jtulach@69
   191
            }
jtulach@64
   192
        }
jtulach@66
   193
        
jtulach@66
   194
        if (!emptyHidden) {
jtulach@66
   195
            model.setState(GameState.WON);
jtulach@68
   196
            showAllBombs(model, SquareType.DISCOVERED);
jaroslav@136
   197
            AudioClip applause = AudioClip.create("applause.wav");
jaroslav@136
   198
            applause.play();
jtulach@66
   199
        }
jtulach@64
   200
    }
jtulach@64
   201
    
jtulach@69
   202
    private static void incrementAround(SquareType[][] arr, int x, int y) {
jtulach@69
   203
        incrementAt(arr, x - 1, y - 1);
jtulach@69
   204
        incrementAt(arr, x - 1, y);
jtulach@69
   205
        incrementAt(arr, x - 1, y + 1);
jtulach@64
   206
jtulach@69
   207
        incrementAt(arr, x + 1, y - 1);
jtulach@69
   208
        incrementAt(arr, x + 1, y);
jtulach@69
   209
        incrementAt(arr, x + 1, y + 1);
jtulach@64
   210
        
jtulach@69
   211
        incrementAt(arr, x, y - 1);
jtulach@69
   212
        incrementAt(arr, x, y + 1);
jtulach@64
   213
    }
jtulach@64
   214
    
jtulach@69
   215
    private static void incrementAt(SquareType[][] arr, int x, int y) {
jtulach@69
   216
        if (y >= 0 && y < arr.length) {
jtulach@69
   217
            SquareType[] r = arr[y];
jtulach@69
   218
            if (x >= 0 && x < r.length) {
jtulach@69
   219
                SquareType sq = r[x];
jtulach@69
   220
                if (sq != null) {
jtulach@69
   221
                    r[x] = sq.moreBombsAround();
jtulach@69
   222
                }
jtulach@64
   223
            }
jtulach@64
   224
        }
jtulach@64
   225
    }
jtulach@64
   226
    
jtulach@68
   227
    static void showAllBombs(Mines model, SquareType state) {
jtulach@63
   228
        for (Row row : model.getRows()) {
jtulach@63
   229
            for (Square square : row.getColumns()) {
jtulach@63
   230
                if (square.isMine()) {
jtulach@68
   231
                    square.setState(state);
jtulach@63
   232
                }
jtulach@63
   233
            }
jtulach@63
   234
        }
jtulach@63
   235
    }
jtulach@63
   236
    
jtulach@63
   237
    @Function static void click(Mines model, Square data) {
jtulach@63
   238
        if (model.getState() != GameState.IN_PROGRESS) {
jtulach@63
   239
            return;
jtulach@63
   240
        }
jaroslav@152
   241
        if (data.getState() != SquareType.UNKNOWN) {
jaroslav@152
   242
            return;
jaroslav@152
   243
        }
jaroslav@152
   244
        if (data.isMine()) {
jaroslav@152
   245
            Square fair = atLeastOnePlaceWhereBombCantBe(model);
jaroslav@152
   246
            if (fair == null) {
jaroslav@152
   247
                if (placeBombElseWhere(model, data)) {
jaroslav@152
   248
                    cleanedUp(model, data);
jaroslav@152
   249
                    return;
jtulach@63
   250
                }
jaroslav@152
   251
            }
jaroslav@152
   252
            explosion(model);
jaroslav@152
   253
        } else {
jaroslav@152
   254
            Square takeFrom = tryStealBomb(model, data);
jaroslav@152
   255
            if (takeFrom != null) {
jaroslav@152
   256
                final Square fair = atLeastOnePlaceWhereBombCantBe(model);
jaroslav@152
   257
                if (fair != null) {
jaroslav@152
   258
                    takeFrom.setMine(false);
jaroslav@152
   259
                    data.setMine(true);
jaroslav@152
   260
                    explosion(model);
jaroslav@152
   261
                    return;
jaroslav@152
   262
                }
jaroslav@152
   263
            }
jaroslav@152
   264
            cleanedUp(model, data);
jtulach@63
   265
        }
jtulach@63
   266
    }
jaroslav@152
   267
jaroslav@152
   268
    private static void cleanedUp(Mines model, Square data) {
jaroslav@152
   269
        AudioClip touch = AudioClip.create("move.mp3");
jaroslav@152
   270
        touch.play();
jaroslav@152
   271
        expandKnown(model, data);
jaroslav@152
   272
        model.computeMines();
jaroslav@152
   273
    }
jaroslav@152
   274
jaroslav@152
   275
    private static void explosion(Mines model) {
jaroslav@152
   276
        showAllBombs(model, SquareType.EXPLOSION);
jaroslav@152
   277
        model.setState(GameState.LOST);
jaroslav@152
   278
        AudioClip oops = AudioClip.create("oops.wav");
jaroslav@152
   279
        oops.play();
jaroslav@152
   280
    }
jaroslav@152
   281
    
jaroslav@152
   282
    private static Square tryStealBomb(Mines model, Square data) {
jaroslav@152
   283
        data.setMine(true);
jaroslav@152
   284
        final List<Row> rows = model.getRows();
jaroslav@152
   285
        for (int y = 0; y < rows.size(); y++) {
jaroslav@152
   286
            final List<Square> columns = rows.get(y).getColumns();
jaroslav@152
   287
            for (int x = 0; x < columns.size(); x++) {
jaroslav@152
   288
                Square sq = columns.get(x);
jaroslav@152
   289
                if (sq == data) {
jaroslav@152
   290
                    continue;
jaroslav@152
   291
                }
jaroslav@152
   292
                if (sq.isMine()) {
jaroslav@152
   293
                    sq.setMine(false);
jaroslav@152
   294
                    final boolean ok = isConsistent(model);
jaroslav@152
   295
                    sq.setMine(true);
jaroslav@152
   296
                    if (ok) {
jaroslav@152
   297
                        data.setMine(false);
jaroslav@152
   298
                        return sq;
jaroslav@152
   299
                    }
jaroslav@152
   300
                }
jaroslav@152
   301
            }
jaroslav@152
   302
        }
jaroslav@152
   303
        data.setMine(false);        
jaroslav@152
   304
        return null;
jaroslav@152
   305
    }
jaroslav@152
   306
    
jaroslav@152
   307
    private static Square atLeastOnePlaceWhereBombCantBe(Mines model) {
jaroslav@152
   308
        final List<Row> rows = model.getRows();
jaroslav@152
   309
        Square cantBe = null;
jaroslav@152
   310
        int discovered = 0;
jaroslav@152
   311
        for (int y = 0; y < rows.size(); y++) {
jaroslav@152
   312
            final List<Square> columns = rows.get(y).getColumns();
jaroslav@152
   313
            for (int x = 0; x < columns.size(); x++) {
jaroslav@152
   314
                Square sq = columns.get(x);
jaroslav@152
   315
                if (sq.getState() == SquareType.UNKNOWN) {
jaroslav@152
   316
                    if (!sq.isMine()) {
jaroslav@152
   317
                        if (tryStealBomb(model, sq) == null) {
jaroslav@152
   318
                            cantBe = sq;
jaroslav@152
   319
                        }
jaroslav@152
   320
                    }
jaroslav@152
   321
                } else {
jaroslav@152
   322
                    discovered++;
jaroslav@152
   323
                }
jaroslav@152
   324
            }
jaroslav@152
   325
        }
jaroslav@152
   326
        
jaroslav@152
   327
        if (discovered > 5) {
jaroslav@152
   328
            return cantBe;
jaroslav@152
   329
        }
jaroslav@152
   330
        
jaroslav@152
   331
        return null;
jaroslav@152
   332
    }
jaroslav@152
   333
    
jaroslav@152
   334
    private static boolean placeBombElseWhere(Mines model, Square moveBomb) {
jaroslav@152
   335
        List<Square> ok = new ArrayList<Square>();
jaroslav@152
   336
        moveBomb.setMine(false);
jaroslav@152
   337
        final List<Row> rows = model.getRows();
jaroslav@152
   338
        for (int y = 0; y < rows.size(); y++) {
jaroslav@152
   339
            final List<Square> columns = rows.get(y).getColumns();
jaroslav@152
   340
            for (int x = 0; x < columns.size(); x++) {
jaroslav@152
   341
                Square sq = columns.get(x);
jaroslav@152
   342
                if (sq == moveBomb || sq.isMine() || sq.getState().isVisible()) {
jaroslav@152
   343
                    continue;
jaroslav@152
   344
                }
jaroslav@152
   345
                sq.setMine(true);
jaroslav@152
   346
                if (isConsistent(model)) {
jaroslav@152
   347
                    ok.add(sq);
jaroslav@152
   348
                }
jaroslav@152
   349
                sq.setMine(false);
jaroslav@152
   350
            }
jaroslav@152
   351
        }
jaroslav@152
   352
        if (ok.isEmpty()) {
jaroslav@152
   353
            moveBomb.setMine(true);
jaroslav@152
   354
            return false;
jaroslav@152
   355
        } else {
jaroslav@152
   356
            int r = new Random().nextInt(ok.size());
jaroslav@152
   357
            ok.get(r).setMine(true);
jaroslav@152
   358
            return true;
jaroslav@152
   359
        }
jaroslav@152
   360
    }
jaroslav@152
   361
    
jtulach@68
   362
    private static void expandKnown(Mines model, Square data) {
jtulach@68
   363
        final List<Row> rows = model.getRows();
jtulach@68
   364
        for (int y = 0; y < rows.size(); y++) {
jtulach@68
   365
            final List<Square> columns = rows.get(y).getColumns();
jtulach@68
   366
            for (int x = 0; x < columns.size(); x++) {
jtulach@68
   367
                Square sq = columns.get(x);
jtulach@68
   368
                if (sq == data) {
jtulach@68
   369
                    expandKnown(model, x, y);
jtulach@68
   370
                    return;
jtulach@68
   371
                }
jtulach@68
   372
            }
jtulach@68
   373
        }
jtulach@68
   374
    }
jtulach@68
   375
    private static void expandKnown(Mines model, int x , int y) {
jtulach@68
   376
        if (y < 0 || y >= model.getRows().size()) {
jtulach@68
   377
            return;
jtulach@68
   378
        }
jtulach@68
   379
        final List<Square> columns = model.getRows().get(y).getColumns();
jtulach@68
   380
        if (x < 0 || x >= columns.size()) {
jtulach@68
   381
            return;
jtulach@68
   382
        }
jtulach@68
   383
        final Square sq = columns.get(x);
jtulach@68
   384
        if (sq.getState() == SquareType.UNKNOWN) {
jaroslav@152
   385
            int around = around(model, x, y);
jtulach@107
   386
            final SquareType t = SquareType.valueOf("N_" + around);
jtulach@107
   387
            sq.setState(t);
jtulach@107
   388
            if (t == SquareType.N_0) {
jtulach@68
   389
                expandKnown(model, x - 1, y - 1);
jtulach@68
   390
                expandKnown(model, x - 1, y);
jtulach@68
   391
                expandKnown(model, x - 1, y + 1);
jtulach@68
   392
                expandKnown(model, x , y - 1);
jtulach@68
   393
                expandKnown(model, x, y + 1);
jtulach@68
   394
                expandKnown(model, x + 1, y - 1);
jtulach@68
   395
                expandKnown(model, x + 1, y);
jtulach@68
   396
                expandKnown(model, x + 1, y + 1);
jtulach@68
   397
            }
jtulach@68
   398
        }
jtulach@68
   399
    }
jaroslav@152
   400
jaroslav@152
   401
    private static int around(Mines model, int x, int y) {
jaroslav@152
   402
        return 
jaroslav@152
   403
            minesAt(model, x - 1, y - 1) +
jaroslav@152
   404
            minesAt(model, x - 1, y) +
jaroslav@152
   405
            minesAt(model, x - 1, y + 1) +
jaroslav@152
   406
            minesAt(model, x , y - 1) +
jaroslav@152
   407
            minesAt(model, x, y + 1) +
jaroslav@152
   408
            minesAt(model, x + 1, y - 1) +
jaroslav@152
   409
            minesAt(model, x + 1, y) +
jaroslav@152
   410
            minesAt(model, x + 1, y + 1);
jaroslav@152
   411
    }
jtulach@90
   412
    
jtulach@107
   413
    private static int minesAt(Mines model, int x, int y) {
jtulach@107
   414
        if (y < 0 || y >= model.getRows().size()) {
jtulach@107
   415
            return 0;
jtulach@107
   416
        }
jtulach@107
   417
        final List<Square> columns = model.getRows().get(y).getColumns();
jtulach@107
   418
        if (x < 0 || x >= columns.size()) {
jtulach@107
   419
            return 0;
jtulach@107
   420
        }
jtulach@107
   421
        Square sq = columns.get(x);
jtulach@107
   422
        return sq.isMine() ? 1 : 0;
jtulach@107
   423
    }
jaroslav@152
   424
    
jaroslav@152
   425
    private static boolean isConsistent(Mines m) {
jaroslav@152
   426
        for (int row = 0; row < m.getRows().size(); row++) {
jaroslav@152
   427
            Row r = m.getRows().get(row);
jaroslav@152
   428
            for (int col = 0; col < r.getColumns().size(); col++) {
jaroslav@152
   429
                Square sq = r.getColumns().get(col);
jaroslav@152
   430
                if (sq.getState().isVisible()) {
jaroslav@152
   431
                    int around = around(m, col, row);
jaroslav@152
   432
                    if (around != sq.getState().ordinal()) {
jaroslav@152
   433
                        return false;
jaroslav@152
   434
                    }
jaroslav@152
   435
                }
jaroslav@152
   436
            }
jaroslav@152
   437
        }
jaroslav@152
   438
        return true;
jaroslav@152
   439
    }
jtulach@116
   440
jtulach@90
   441
    /**
jtulach@90
   442
     * Called when page is ready
jtulach@90
   443
     */
jtulach@90
   444
    public static void main(String... args) throws Exception {
jtulach@90
   445
        Mines m = new Mines();
jtulach@90
   446
        m.applyBindings();
jtulach@90
   447
    }
jtulach@63
   448
}