| 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" |
|---|
| 2 | "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> |
|---|
| 3 | |
|---|
| 4 | <html> |
|---|
| 5 | |
|---|
| 6 | <head> |
|---|
| 7 | <title>Quantum Wolf Hunt</title> |
|---|
| 8 | |
|---|
| 9 | <link rel="stylesheet" href="style/style.css" type="text/css" /> |
|---|
| 10 | |
|---|
| 11 | <script src="frameworks/AIRAliases.js" type="text/javascript"></script> |
|---|
| 12 | <script src="frameworks/AIRIntrospector.js" type="text/javascript"></script> |
|---|
| 13 | <script src="frameworks/AIRLocalizer.js" type="text/javascript"></script> |
|---|
| 14 | <script src="frameworks/AIRMenuBuilder.js" type="text/javascript"></script> |
|---|
| 15 | <script src="frameworks/AIRSourceViewer.js" type="text/javascript"></script> |
|---|
| 16 | <script src="frameworks/jquery-1.3.2.min.js" type="text/javascript"></script> |
|---|
| 17 | <script src="frameworks/json2.js" type="text/javascript"></script> |
|---|
| 18 | |
|---|
| 19 | <script src="code/board.js" type="text/javascript"></script> |
|---|
| 20 | <script src="code/sheep.js" type="text/javascript"></script> |
|---|
| 21 | <script src="code/wolf.js" type="text/javascript"></script> |
|---|
| 22 | <script src="code/gameEngine.js" type="text/javascript"></script> |
|---|
| 23 | <script src="code/main.js" type="text/javascript"></script> |
|---|
| 24 | </head> |
|---|
| 25 | |
|---|
| 26 | <body> |
|---|
| 27 | <div id="intro"> |
|---|
| 28 | <h1>Quantum Wolf Hunt</h1> |
|---|
| 29 | |
|---|
| 30 | <p>Welcome to the Quantum Wolf Hunt. This is a simple game developed in about five hours to be used as an example |
|---|
| 31 | in my lecture on Web technology for the desktop at the 2009 php conference in Ljubljana. Please do not expect perfection.</p> |
|---|
| 32 | |
|---|
| 33 | <p>The rules are very simple and straightforward. Each playing wolf (big red W) gets their own quantum plane and their |
|---|
| 34 | own sheep to catch. However, other wolves playing this moment also appear on your board, but since they're on a different |
|---|
| 35 | quantum plane they just spook your sheep without being able to eat them.</p> |
|---|
| 36 | |
|---|
| 37 | <p>Once the conference is under way each caught sheep and every game win will be tweeted to a special account for that extra fun.</p> |
|---|
| 38 | |
|---|
| 39 | <p><button>BEGIN</button></p> |
|---|
| 40 | |
|---|
| 41 | <p>PS: the game board is a torus.</p> |
|---|
| 42 | </div> |
|---|
| 43 | |
|---|
| 44 | <div id="score"></div> |
|---|
| 45 | </body> |
|---|
| 46 | |
|---|
| 47 | </html> |
|---|