Steve Thielemann 211c3778ec Fixed size issue. "September". | 3 年 前 | |
---|---|---|
ansi | 3 年 前 | |
.gitignore | 3 年 前 | |
CMakeLists.txt | 3 年 前 | |
DOOR.SYS | 3 年 前 | |
LICENSE | 3 年 前 | |
NOTES.md | 3 年 前 | |
README.md | 3 年 前 | |
ansi-to-src.py | 3 年 前 | |
backup.sh | 3 年 前 | |
build_images.sh | 3 年 前 | |
db.cpp | 3 年 前 | |
db.h | 3 年 前 | |
deck.cpp | 3 年 前 | |
deck.h | 3 年 前 | |
door_2023.sh | 3 年 前 | |
doxy.config | 3 年 前 | |
grind.sh | 3 年 前 | |
main.ans | 3 年 前 | |
main.cpp | 3 年 前 | |
make_docs.sh | 3 年 前 | |
play.cpp | 3 年 前 | |
play.h | 3 年 前 | |
rlinetd.conf | 3 年 前 | |
scores.cpp | 3 年 前 | |
scores.h | 3 年 前 | |
space.h | 3 年 前 | |
starfield.cpp | 3 年 前 | |
starfield.h | 3 年 前 | |
try_inet.sh | 3 年 前 | |
utils.cpp | 3 年 前 | |
utils.h | 3 年 前 | |
version.h | 3 年 前 |
The git ... --depth 1
is a sparse checkout. It only pulls the latest source, it doesn't pull down the full git history.
git clone github:stevet11/space-ace.git --depth 1
cd space-ace
git clone https://github.com/stevet11/door.git door++ --depth 1
git clone https://github.com/SRombauts/SQLiteCpp.git --depth 1
git clone https://github.com/jbeder/yaml-cpp.git --depth 1
mkdir build
cd build
cmake ..
make
In the config/menus/*-doors.hjson file add these entries:
{
value: { command: "S" }
action: [
{
acs: EC0
action: @menu:doorAce
}
{
/* acs: EC1 */
action: @menu:doorAceU8
}
]
}
doorAce: {
desc: Space Ace
module: abracadabra
config: {
name: Space Ace
dropFileType: DOOR
cmd: /home/enigma/bbs/doors/spaceace.sh
args: [
"{dropFilePath}"
]
nodeMax: 0
tooManyArt: DOORMANY
io: stdio
}
}
doorAceU8: {
desc: Space Ace
module: abracadabra
config: {
name: Space Construct
dropFileType: DOOR
cmd: /home/enigma/bbs/doors/spaceace.sh
args: [
"{dropFilePath}"
]
nodeMax: 0
tooManyArt: DOORMANY
io: stdio
encoding: utf8
}
}
spaceace.sh
#!/bin/bash
trap "" SIGINT
cd /home/enigma/bbs/doors/spaceace/
./space-ace -d $1
While space-ace can detect CP437/unicode, under Enigma it can't.
In menus/doors.toml add an entry:
[[menuitem]]
command = "RUNDOOR"
hotkey = "S"
data = "doors/spaceace.sh"
In the doors directory, create spaceace.sh:
#!/bin/bash
trap "" SIGINT
cd doors/spaceace
./space-ace -d ../../temp/$1/door.sys
And space-ace would be in doors/spaceace directory.
Look for space-ace.yaml, space-ace.log, and space-data.db to be created on first run.