You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+25-13Lines changed: 25 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,15 +35,27 @@ PICO-8 powered games launcher for the [PeX Console](https://pex-labs.com/)
35
35
36
36
## Getting started
37
37
38
-
### Requirements
38
+
**PicoLauncher** requires an installed version of PICO-8 (if you don't have it, you can buy it [here](https://www.lexaloffle.com/pico-8.php?#getpico8)). You can either use a pre-compiled version from the latest [release]() or build this project from source.
39
39
40
-
**PicoLauncher** requires an installed version of PICO-8 (if you don't have it, you can buy it [here](https://www.lexaloffle.com/pico-8.php?#getpico8)).
40
+
### Pre-compiled
41
41
42
-
You can either build this project from source or use a pre-compiled version for your platform.
42
+
Download the pre-compiled release for your platform and unzip it. You will then find executables for all supported platforms. The `drive/` directory will be where the PICO-8 data files will be stored. For now, you can only run **PicoLauncher** from the same directory as the executables.
43
43
44
+
On windows, if your PICO-8 binary doesn't reside at the default location of `C:\\Program Files (x86)\\PICO-8\\pico8.exe`, you need to set the environment variable `PICO8_BINARY` before launching.
45
+
```sh
46
+
set PICO8_BINARY=<path to pico8>
47
+
./picolauncher.exe
48
+
```
44
49
50
+
On linux, if PICO-8 is not in your PATH, you need to set the environment variable as well.
51
+
```sh
52
+
PICO8_BINARY=<path to pico8>
53
+
./picolauncher
54
+
```
45
55
46
-
<!--pex philosophy: _"everything is a cart"_-->
56
+
### Build from source
57
+
58
+
To build from source, you need to have a [rust toolchain](https://www.rust-lang.org/tools/install) installed. To build **PicoLauncher** for all platforms, there is a provided build script at `dev/scripts/build_linux.sh` and `dev/scripts/build_windows.sh`. The built files are present in the `build_<platform>/` directory, as well as zipped up in `build_<platform>.zip`. This is the same build that is distributed in the pre-compiled release.
47
59
48
60
## Contributing
49
61
@@ -52,13 +64,13 @@ Please see [CONTRIBUTING.md](CONTRIBUTING.md) for more details! Don't hesitate t
52
64
## Credits
53
65
54
66
Pre-bundled games
55
-
-[birds with guns]()
56
-
-[bun bun samurai]()
57
-
-[celeste]()
58
-
-[cherrybomb]()
59
-
-[mot's grand prix]()
60
-
-[oblivion eve]()
61
-
-[pico night punkin']()
62
-
-[poom]()
63
-
-[swordfish]()
67
+
-[birds with guns](https://www.lexaloffle.com/bbs/?tid=45334)
68
+
-[bun bun samurai](https://www.lexaloffle.com/bbs/?tid=54707)
0 commit comments