Skip to content

It's like portal, but in ASCII. And 2D. Sweet look-through mechanic, tho.

License

Notifications You must be signed in to change notification settings

Apaczer/ASCIIpOrtal

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ASCIIpOrtal for MiyooCFW

ASCIIpOrtal is a text based puzzle game in 2D (SDL).

Dependencies:

C++ compiler (GCC), SDL1.2 (libsdl1.2-dev), SDLmixer (libsdl-mixer1.2-dev), yaml-cpp (libyaml-cpp-dev), PDCurses (libpdcurses - see submodule)

Build steps:

- initialize submodules

git submodule update --init --recursive

- build libpdcurses.a

  • cross-compile via docker (MiyooCFW)
docker run --volume ./:/src/ -it miyoocfw/toolchain-static-<libc>
cd /src/PDCurses/sdl1
make -j$(nproc) libs
exit
  • nativly (PC-Linux)
cd PDCurses/sdl1
make -j$(nproc) libs
cd -

- build asciiportal

  • cross-compile via docker (MiyooCFW)
docker run --volume ./:/src/ -it miyoocfw/toolchain-static-<libc>
cd /src
make -j$(nproc) miyoo
exit

you can create ipk pkg by passing IPK=yes flag to make

  • native build (PC-Linux)
make -j$(nproc) linux

About

It's like portal, but in ASCII. And 2D. Sweet look-through mechanic, tho.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C++ 97.5%
  • Makefile 1.1%
  • Other 1.4%