Skip to content

Commit

Permalink
Adding ChimerasSNES, TI-83 (Numero) and MicroW8 (UW8) to Pacman exper…
Browse files Browse the repository at this point in the history
…t section
  • Loading branch information
schmurtzm committed Apr 9, 2023
1 parent 83545dd commit 42472a2
Show file tree
Hide file tree
Showing 13 changed files with 91 additions and 0 deletions.
Binary file added static/build/Icons/Default/rapp/chimerasnes.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 static/build/Icons/Default/rapp/ti-83.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 static/build/Icons/Default/rapp/uw8.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
mouse_speed = "2"
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"label":"uw8",
"icon":"../../Icons/Default/rapp/uw8.png",
"iconsel":"../../Icons/Default/rapp/uw8.png",
"launch":"launch.sh",
"rompath":"../../Roms/MICROW8",
"imgpath":"../../Roms/MICROW8/Imgs",
"useswap":1,
"shortname":0,
"hidebios":0,
"extlist":"uw8|wasm"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/bin/sh
echo $0 $*
progdir=`dirname "$0"`
homedir=`dirname "$1"`

# Timer initialisation
cd /mnt/SDCARD/App/PlayActivity
./playActivity "init"

cd /mnt/SDCARD/RetroArch/
HOME=/mnt/SDCARD/RetroArch/ $progdir/../../RetroArch/retroarch -v -L $progdir/../../RetroArch/.retroarch/cores/uw8_libretro.so "$1"

# Timer registration
cd /mnt/SDCARD/App/PlayActivity
./playActivity "$1"
Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"label":"chimerasnes",
"icon":"../../Icons/Default/rapp/chimerasnes.png",
"iconsel":"../../Icons/Default/rapp/chimerasnes.png",
"launch":"launch.sh",
"rompath":"../../Roms/SFC",
"imgpath":"../../Roms/SFC/Imgs",
"useswap":1,
"shortname":0,
"hidebios":0,
"extlist":"sfc|smc|fig|bs|st|zip|7z"
}

Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/bin/sh
echo $0 $*
progdir=`dirname "$0"`
homedir=`dirname "$1"`

# Timer initialisation
cd /mnt/SDCARD/App/PlayActivity
./playActivity "init"

cd /mnt/SDCARD/RetroArch/
HOME=/mnt/SDCARD/RetroArch/ $progdir/../../RetroArch/retroarch -v -L $progdir/../../RetroArch/.retroarch/cores/chimerasnes_libretro.so "$1"

# Timer registration
cd /mnt/SDCARD/App/PlayActivity
./playActivity "$1"
Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"label":"ti-83",
"icon":"../../Icons/Default/rapp/ti-83.png",
"iconsel":"../../Icons/Default/rapp/ti-83.png",
"launch":"launch.sh",
"rompath":"../../Roms/TI83",
"imgpath":"../../Roms/TI83/Imgs",
"useswap":1,
"shortname":0,
"hidebios":1,
"extlist":"8xp|8xk|8xg"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
#!/bin/sh
echo $0 $*
progdir=`dirname "$0"`
homedir=`dirname "$1"`

filename=`basename "$1"`

# Timer initialisation
cd /mnt/SDCARD/App/PlayActivity
./playActivity "init"

cd /mnt/SDCARD/RetroArch/

if [ "$filename" = "~Run TI-83.8xp" ]; then
HOME=/mnt/SDCARD/RetroArch/ $progdir/../../RetroArch/retroarch -v -L $progdir/../../RetroArch/.retroarch/cores/numero_libretro.so
else
HOME=/mnt/SDCARD/RetroArch/ $progdir/../../RetroArch/retroarch -v -L $progdir/../../RetroArch/.retroarch/cores/numero_libretro.so "$1"
fi


# Timer registration
cd /mnt/SDCARD/App/PlayActivity
./playActivity "$1"
Empty file.

0 comments on commit 42472a2

Please sign in to comment.