minesweeper/src/main/java/org/apidesign/demo/minesweeper/Main.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Thu, 24 Apr 2014 12:37:28 +0200
branchibrwsr
changeset 134 dad4f0d41b9f
parent 125 d7b40912b16d
child 140 6dfda3dedf1a
permissions -rw-r--r--
Version that works with latest ibrwsr
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
jaroslav@134
    26
import java.io.File;
jaroslav@134
    27
import java.net.URL;
jaroslav@134
    28
import java.util.logging.ConsoleHandler;
jaroslav@134
    29
import java.util.logging.Level;
jaroslav@134
    30
import java.util.logging.Logger;
jtulach@63
    31
import net.java.html.boot.BrowserBuilder;
jtulach@112
    32
import org.netbeans.api.nbrwsr.OpenHTMLRegistration;
jtulach@112
    33
import org.openide.awt.ActionID;
jtulach@112
    34
import org.openide.awt.ActionReference;
jtulach@112
    35
import org.openide.awt.ActionReferences;
jtulach@63
    36
jtulach@63
    37
jtulach@63
    38
/** Bootstrap and initialization. */
jtulach@63
    39
public final class Main {
jtulach@63
    40
    private Main() {
jtulach@63
    41
    }
jtulach@90
    42
jtulach@63
    43
    /** Launches the browser */
jtulach@63
    44
    public static void main(String... args) throws Exception {
jaroslav@134
    45
        File h = new File(System.getProperty("user.home"));
jaroslav@134
    46
        File m = new File(h, "MineSweeper.app");
jaroslav@134
    47
        System.err.println("mwd : " + m.getPath());
jaroslav@134
    48
        System.setProperty("browser.rootdir", m.getPath());
jaroslav@134
    49
        
jtulach@125
    50
        BrowserBuilder.newBrowser().
jtulach@63
    51
            loadPage("pages/index.html").
jtulach@90
    52
            loadClass(MinesModel.class).
jtulach@90
    53
            invoke("main", args).
jtulach@63
    54
            showAndWait();
jtulach@63
    55
        System.exit(0);
jtulach@63
    56
    }
jtulach@63
    57
    
jtulach@112
    58
    //
jtulach@112
    59
    // the following annotations generate registration for NetBeans,
jtulach@112
    60
    // they are harmless in other packaging schemes
jtulach@112
    61
    //
jtulach@112
    62
    
jtulach@112
    63
    @ActionID(
jtulach@112
    64
            category = "Games",
jtulach@112
    65
            id = "org.apidesign.demo.minesweeper"
jtulach@112
    66
    )
jtulach@112
    67
    @OpenHTMLRegistration(
jtulach@112
    68
        url="index.html",
jtulach@119
    69
        displayName = "Play Minesweeper!",
jtulach@119
    70
        iconBase = "org/apidesign/demo/minesweeper/ko4j.png"
jtulach@112
    71
    )
jtulach@112
    72
    @ActionReferences({
jtulach@112
    73
        @ActionReference(path = "Menu/Window"),
jtulach@120
    74
        @ActionReference(path = "Toolbars/Games")
jtulach@112
    75
    })
jtulach@112
    76
    //
jtulach@112
    77
    // end of NetBeans actions registration
jtulach@112
    78
    //
jtulach@112
    79
    
jtulach@63
    80
    /** Called when page is ready */
jtulach@112
    81
    public static void onPageLoad() throws Exception {
jtulach@63
    82
        Mines m = new Mines();
jtulach@63
    83
        m.applyBindings();
jtulach@63
    84
    }
jtulach@63
    85
}