Skip to content

Commit

Permalink
Update itch graphics and WIP on embedding emulator on the itch.io page
Browse files Browse the repository at this point in the history
  • Loading branch information
Issung committed Aug 13, 2024
1 parent 4702833 commit 6d88690
Show file tree
Hide file tree
Showing 9 changed files with 27 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ My first and hopefully not last Game Boy Advance game! Written in C++ with Butan

## Credits
* [Butano](https://github.com/GValiente/butano) by [GValiente](https://github.com/GValiente/butano).
* SFX made with [Bfxr](https://www.bfxr.net/).
* Font by [2Pblog1](https://x.com/2pblog1).
* Menu music: [pms_are1.it by Powerack](https://modarchive.org/index.php?request=view_by_moduleid&query=162054)
* Game music #1: [4_RNDD!.xm by Drozerix](https://modarchive.org/index.php?request=view_by_moduleid&query=172898).
* Game music #2: [biotech.rth by Kokesz](https://modarchive.org/index.php?request=view_by_moduleid&query=174348).
* Game music #3: [Cirno.it by Maris](https://modarchive.org/index.php?request=view_by_moduleid&query=185072).
* Game music #4: [Fckdarules.xm by JAM](https://modarchive.org/index.php?request=view_by_moduleid&query=169181).
* Game music #5: [L3V3L_33 by Drozerix](https://modarchive.org/index.php?request=view_by_moduleid&query=172183).
* SFX made with [Bfxr](https://www.bfxr.net/).

## Development

Expand All @@ -30,6 +30,7 @@ My first and hopefully not last Game Boy Advance game! Written in C++ with Butan
#### Guides Used
* [Butano Getting Started](https://gvaliente.github.io/butano/getting_started.html).
* [GDB Debugging with mGBA](https://felixjones.co.uk/mgba_gdb/vscode.html).
* [Embedding emulator on itch.io](https://www.matthughson.com/2020/07/17/nesdev-embedding-an-emulator-on-itch-io/).
* Help from the lovely folks in the gbadev Discord.

### Build / Debug
Expand Down
Binary file modified itch/a.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified itch/b.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified itch/dpad.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 25 additions & 0 deletions itch/embed/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<html>
<head>
<style>
body, html {
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<div style="width:100%; height:100%; max-width:100%;">
<div id="game"></div>
</div>
<script>
EJS_player = "#game";
EJS_core = "gba";
EJS_gameName = "hex";
EJS_color = "#000000";
EJS_startOnLoaded = true;
EJS_pathtodata = "https://cdn.emulatorjs.org/stable/data/";
EJS_gameUrl = "https://html-classic.itch.zone/html/11139369/hex.gba";
</script>
<script src="https://cdn.emulatorjs.org/stable/data/loader.js"></script>
</body>
</html>
Binary file added itch/menu.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added itch/ss1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added itch/ss2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified itch/start.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 6d88690

Please sign in to comment.