Compare commits

..

2 commits

Author SHA1 Message Date
25166edb13
minesweeper 2024-10-18 15:41:40 -04:00
5831a45bdd
LEGO Island 2024-10-18 15:34:43 -04:00
13 changed files with 52 additions and 1 deletions

3
LEGO Island/.gitignore vendored Normal file
View file

@ -0,0 +1,3 @@
bin
iso
wine

6
LEGO Island/README.md Normal file
View file

@ -0,0 +1,6 @@
#### Lego Island
Store the Lego Island iso into the `bin` folder and name it `game.iso`.
Then run `setup`.
> Note: broken

5
LEGO Island/env Executable file
View file

@ -0,0 +1,5 @@
#!/bin/sh
export WINEPREFIX="$(pwd)/wine"
export WINEARCH=win64
export WINEESYNC=1

5
LEGO Island/run Executable file
View file

@ -0,0 +1,5 @@
#!/bin/sh
source ./env
cd 'wine/drive_c/Program Files (x86)/LEGO Island/' && wine 'ISLE.EXE'

10
LEGO Island/setup Executable file
View file

@ -0,0 +1,10 @@
#!/bin/sh
source ./env
rm -fr ./iso
mkdir ./iso
7z x ./bin/game.iso -oiso
winetricks winxp
wine ./iso/setup.exe
#cp ../dxvk/x32/*.dll ./wine/drive_c/windows/system32
#cp ../dxvk/x64/*.dll ./wine/drive_c/windows/syswow64

View file

@ -6,3 +6,8 @@ export LC_ALL=ja_JP.UTF-8
export WINEPREFIX="$(pwd)/wine" export WINEPREFIX="$(pwd)/wine"
export WINEARCH=win32 export WINEARCH=win32
export WINEESYNC=1 export WINEESYNC=1
export GAMESCOPE=gamescope
if command -v "gamescope-legacy"; then
export GAMESCOPE="gamescope-legacy"
fi

View file

@ -5,5 +5,5 @@ source ./env
#Xwayland :1 -fullscreen -geometry 800x600 & #Xwayland :1 -fullscreen -geometry 800x600 &
#cd data && DISPLAY=:1 wine 'Lamento -BEYOND THE VOID-.exe' #cd data && DISPLAY=:1 wine 'Lamento -BEYOND THE VOID-.exe'
cd data && gamescope-legacy -W 800 -H 600 -- \ cd data && "$GAMESCOPE" -W 800 -H 600 -- \
wine 'Lamento -BEYOND THE VOID-.exe' wine 'Lamento -BEYOND THE VOID-.exe'

1
Minesweeper/.gitignore vendored Normal file
View file

@ -0,0 +1 @@
wine

BIN
Minesweeper/bin/WINMINE.CHM Normal file

Binary file not shown.

BIN
Minesweeper/bin/WINMINE.EXE Normal file

Binary file not shown.

BIN
Minesweeper/bin/WINMINE.HLP Normal file

Binary file not shown.

10
Minesweeper/env Executable file
View file

@ -0,0 +1,10 @@
#!/bin/sh
export WINEPREFIX="$(pwd)/wine"
export WINEARCH=win64
export WINEESYNC=1
export GAMESCOPE=gamescope
if command -v "gamescope-legacy"; then
export GAMESCOPE="gamescope-legacy"
fi

6
Minesweeper/run Executable file
View file

@ -0,0 +1,6 @@
#!/bin/sh
source ./env
cd bin && "$GAMESCOPE" -W 800 -H 600 -- \
wine 'WINMINE.EXE'