An option to use separate dirs
DarthGandalf opened this issue · 5 comments
I'm trying to package this for my linux distro, and various resources belong to /usr/share
, but files like PLAYER.LST
, HALLFAME.LST
should be somewhere in $HOME
, because /usr/share
is not writeable by the user. The binary itself is in yet another dir: /usr/bin/opensupaplex
Probably resource location could even be hardcoded as a compile-time option, default to .
, and I'd override it to /usr/share/opensupaplex
Saves location can't be hardcoded like that… I don't have a good suggestion there. Maybe provide a command-line flag, also defaulting to .
?
WDYT?
Yeah I don't know what's the best option either 🤔 If you check this
Lines 60 to 70 in 3f7708b
open-supaplex/src/sdl_common/audio.c
Lines 73 to 85 in 7b62e93
The "writable" files are those which are changed by the game. Some platforms (like PS Vita) can store resources with the game binary, but then can't write them, so the game creates a specific (hardcoded) path somewhere else where those files you mentioned can be written. For that I added this:
Line 27 in 3f7708b
So in Linux we might need to do something like that, and just create a getWritableFilePath
that points to ~/.config/OpenSupaplex
? Does that sound reasonable?
Only ADVANCED.CFG seems to be reading via getWritableFilePath
, and even that file it tries to write it to getReadonlyFilePath
back.
And there need to be some way to select whether to use files in .
or in those 2 directories. Probably a compile-time option would suffice for that though
Only ADVANCED.CFG seems to be reading via getWritableFilePath, and even that file it tries to write it to getReadonlyFilePath back.
Nvm, that's me putting #endif
to the wrong line
And there need to be some way to select whether to use files in
.
or in those 2 directories. Probably a compile-time option would suffice for that though
Not super proud of what I'm gonna suggest, but why not hardcoding ./
for Linux for readonly files? And then something like ~/.config/OpenSupaplex
for writable files. It can be extracted to a compile-time param later if needed (in case some distro/package format needs it).
It's a pity how different platforms required different solutions to access the game files 😢