skulls/README.md

45 lines
1.3 KiB
Markdown
Raw Normal View History

2021-05-24 23:21:01 -04:00
### Skulls is simple Columns-like strategy game developed in Golang with the Ebiten library (for Android)
2021-05-24 23:41:00 -04:00
<img src="https://images2.imgbox.com/a6/ab/4hlQKK3q_o.png" alt="ex2"/>
2021-05-24 23:32:24 -04:00
###### Run in a local testing environment:
2021-05-24 23:21:01 -04:00
<pre>
<code>
// Navigate to skulls/ and generate a <code>.apk</code> with skullsgomobile/:
gomobile build -target=android github.com/rootVIII/skulls/skullsgomobile
// Install the newly created .apk into an already running Android Emulator (from Android Studio):
adb -s emulator-5554 install skullsgomobile.apk
// view logging output from the game:
adb logcat
// Note that I use a pixel4 emulator. I have an alias stored in my profile to open it easily via terminal:
alias pixel4='$ANDROID_HOME/emulator/emulator -avd "Pixel_4_API_30"'
</code>
</pre>
2021-05-24 23:41:00 -04:00
<img src="https://images2.imgbox.com/1d/4c/i9yuv83m_o.png" alt="ex1"/></a>
2021-05-24 23:21:01 -04:00
2021-05-27 00:41:06 -04:00
<ul>
<li>
All development/debugging was done with the <b>gomobile</b> tool and <b>adb</b>.
</li>
2021-05-27 00:39:51 -04:00
<li>
Font used for text: <a href="https://www.dafont.com/radioland.font">RADIOLAND.TTF</a>
</li>
<li>
All assets (images, audio, and font) were converted to <code>[]byte</code> using <a href="https://github.com/hajimehoshi/file2byteslice">file2byteslice</a>
</li>
2021-05-27 00:41:06 -04:00
</ul>
2021-05-27 00:39:51 -04:00
2021-05-24 23:21:01 -04:00
This was developed on macOS Big Sur.
<hr>
<b>Author: rootVIII 2021</b>
<br><br>