-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Code to run on Linux & BizHawk 2.9.1 (#34)
* Update Code to run on Linux & BizHawk 2.9.1 * Add linux binary generation * Undo Accidental Refactoring * Add missing gitkeeps * Prepare for Pull Request * Undo gitkeep * Change savestates to correct case-sensitive extension * Comment DEBUG message * Fix Test for case-sensitive OS * Update README.md
- Loading branch information
Showing
11 changed files
with
48 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,12 @@ | ||
dist/ | ||
node_modules/ | ||
CurrentRoms/ | ||
!sessions/default/CurrentRoms/DeleteMe | ||
CurrentROMs/ | ||
CurrentSaves/ | ||
!sessions/default/CurrentROMs/.gitkeep | ||
!sessions/default/CurrentSaves/.gitkeep | ||
./config.json | ||
*.exe | ||
config.json | ||
bizhawk-crowd-shuffler-* | ||
!bizhawk-crowd-shuffler-win.bat | ||
!bizhawk-crowd-shuffler-linux.sh | ||
.env |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/bin/bash | ||
|
||
export HOST=127.0.0.1 | ||
export PORT=7070 | ||
export CHANNEL=MyTwitchChannel | ||
export BIZHAWK_PATH=..\\ | ||
export TWITCH_TOKEN= | ||
|
||
./bizhawk-crowd-shuffler-linux | ||
|
||
# node src |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/bin/bash | ||
export HOST=127.0.0.1 | ||
export PORT=7070 | ||
export BIZHAWK_PATH="${HOME}/Games/PC Games/BizHawk-2.9.1" | ||
export LUA_SCRIPT="$(realpath $(dirname ${BASH_SOURCE}))/bizhawk-crowd-shuffler.lua" | ||
|
||
bash "${BIZHAWK_PATH}/EmuHawkMono.sh" "--socket_ip=${HOST}" "--socket_port=${PORT}" "--lua=${LUA_SCRIPT}" |