Browse Source

fix off-by-one pixel error in cart artwork. add some text to webpage.

Thomas B 1 month ago
parent
commit
81a2007e53
6 changed files with 21 additions and 2 deletions
  1. BIN
      artwork/cart_label.png
  2. BIN
      artwork/cart_label.xcf
  3. BIN
      artwork/cartridge.png
  4. BIN
      artwork/cartridge.xcf
  5. BIN
      docs/cartridge.png
  6. 21
    2
      docs/index.html

BIN
artwork/cart_label.png View File


BIN
artwork/cart_label.xcf View File


BIN
artwork/cartridge.png View File


BIN
artwork/cartridge.xcf View File


BIN
docs/cartridge.png View File


+ 21
- 2
docs/index.html View File

36
             #controls {
36
             #controls {
37
                 margin: 0px auto;
37
                 margin: 0px auto;
38
             }
38
             }
39
+            ul {
40
+                list-style-type: none;
41
+            }
39
             body, #wrap, .text {
42
             body, #wrap, .text {
40
                 background-color: #DDDDDD;
43
                 background-color: #DDDDDD;
41
                 color: #000000;
44
                 color: #000000;
51
     <body>
54
     <body>
52
         <div class="text">
55
         <div class="text">
53
             <h1>Duality</h1>
56
             <h1>Duality</h1>
57
+            <p>A GameBoy (Color) port of the GTA San Andreas arcade game Duality.</p>
54
         </div>
58
         </div>
55
         <div id="wrap">
59
         <div id="wrap">
56
             <div id="game"></div>
60
             <div id="game"></div>
57
         </div>
61
         </div>
58
         <div class="text">
62
         <div class="text">
59
-            <p>A GameBoy (Color) port of the GTA San Andreas arcade game Duality.</p>
63
+            <h2>Controls</h2>
60
             <table id="controls" border="1">
64
             <table id="controls" border="1">
61
                 <tr><th>Key</th><th>Action</th></tr>
65
                 <tr><th>Key</th><th>Action</th></tr>
62
                 <tr><td>Arrow Left</td><td>Rotate Left</td></tr>
66
                 <tr><td>Arrow Left</td><td>Rotate Left</td></tr>
66
                 <tr><td>Start (Enter)</td><td>Pause</td></tr>
70
                 <tr><td>Start (Enter)</td><td>Pause</td></tr>
67
                 <tr><td>Select (V)</td><td>About</td></tr>
71
                 <tr><td>Select (V)</td><td>About</td></tr>
68
             </table>
72
             </table>
73
+        </div>
74
+        <div class="text">
75
+            <h2>Description</h2>
69
             <p>Press Left or Right on the title screen to show either the black or white highscores. Press Select to show the about screen and build info. In-game press Start to pause and resume. While paused press Select to return to the menu.</p>
76
             <p>Press Left or Right on the title screen to show either the black or white highscores. Press Select to show the about screen and build info. In-game press Start to pause and resume. While paused press Select to return to the menu.</p>
70
             <p>Collect small white spheres to get +5 white score. Collect small black spheres to get +5 black score. The opposite color will reduce your score when collected. Shooting while you have a white score will reduce it by one. Large black holes will attract you and damage your ship when touched. Large white spheres will repel you and replenish your health when touched. Accelerating will reduce your fuel, which will recharge when not accelerating. You can shoot large spheres for +10 points.<p>
77
             <p>Collect small white spheres to get +5 white score. Collect small black spheres to get +5 black score. The opposite color will reduce your score when collected. Shooting while you have a white score will reduce it by one. Large black holes will attract you and damage your ship when touched. Large white spheres will repel you and replenish your health when touched. Accelerating will reduce your fuel, which will recharge when not accelerating. You can shoot large spheres for +10 points.<p>
71
             <p>For a more detailed description of the original game check out the <a href="https://gta.fandom.com/wiki/Duality">Duality article on GTA Wiki</a>.</p>
78
             <p>For a more detailed description of the original game check out the <a href="https://gta.fandom.com/wiki/Duality">Duality article on GTA Wiki</a>.</p>
72
         </div>
79
         </div>
73
         <div class="text">
80
         <div class="text">
81
+            <h2>Features</h2>
82
+            <p>This port has some special features that go beyond the original arcade machine.</p>
83
+            <ul>
84
+                <li><b>Multiplayer</b> - Play against a friend with the link cable</li>
85
+                <li><b>Game Boy Printer</b> - make hard copies of the score tables</li>
86
+            </ul>
87
+            <p>To access multiplayer mode connect two Game Boy systems via link cable, then leave one device on the main menu, while opening the about screen (press SELECT two times) on the other device.</p>
88
+            <p>To print the scores open one of the score screens (by pressing LEFT or RIGHT in the main menu), then press SELECT to start printing.</p>
89
+        </div>
90
+        <div class="text">
91
+            <h2>Downloads</h2>
74
             <p>Download the <a href="https://xythobuz.github.io/Duality/duality.gb">ROM</a>!</p>
92
             <p>Download the <a href="https://xythobuz.github.io/Duality/duality.gb">ROM</a>!</p>
75
             <p>Get the source code on <a href="https://github.com/xythobuz/Duality">GitHub</a>.</p>
93
             <p>Get the source code on <a href="https://github.com/xythobuz/Duality">GitHub</a>.</p>
76
         </div>
94
         </div>
77
         <div class="text">
95
         <div class="text">
78
-            <img id="cart" src="https://xythobuz.github.io/Duality/cartridge.png">
96
+            <h2>Artwork</h2>
97
+            <img id="cart" src="cartridge.png">
79
         </div>
98
         </div>
80
         <div class="text">
99
         <div class="text">
81
             <p>Emulation supported by <a href="https://emulatorjs.org">EmulatorJS</a>.</p>
100
             <p>Emulation supported by <a href="https://emulatorjs.org">EmulatorJS</a>.</p>

Loading…
Cancel
Save