MineSweeper
From APIDesign
(Difference between revisions)
Line 7: | Line 7: | ||
In case you are interested in trying the code yourself, here is a way to get sources: | In case you are interested in trying the code yourself, here is a way to get sources: | ||
- | <source lang=" | + | <source lang="bash"> |
$ hg clone http://source.apidesign.org/html~demo/ | $ hg clone http://source.apidesign.org/html~demo/ | ||
$ cd html~demo/ | $ cd html~demo/ |
Revision as of 12:22, 15 April 2014
MineSweeper is re-implementation of classical computer game available on each Microsoft Widnows since the initial introduction of version 3.0.
I needed a demonstration for DukeScript technology that is using Java to code the application logic and HTML to render its UI. I decided to write a MineSweeper game as a basic demo. I've managed to execute the demo in a browser (via TeaVM), but today I achieved another milestone: the MineSweeper module is available for every user of NetBeans 8.0!
Get the module via Tools/Plugins or visit its plugin page!
In case you are interested in trying the code yourself, here is a way to get sources:
$ hg clone http://source.apidesign.org/html~demo/ $ cd html~demo/ $ hg up -C 3d99b96ffbd4 $ mvn install $ cd minesweeper/ $ mvn -Pnbrwsr install # generates target/minesweeper-1.0-SNAPSHOT.nbm
and the system generates an NBM (NetBeans module file) which can be installed into your NetBeans!