### Desciprtion An Apple //e native client for . Fully describing this will take too long--just watch the video: . ### Download ``` git clone https://github.com/datajerk/gameserverclient.git ``` *or* Download and extract. ### Build Notes #### Prerequisites - `cl65` () - `c2d` () - `libqrencode` () - `perl` - `gcc` - `figlet` #### Build ``` make ``` ### Test #### Prerequisites - MacOS - Virtual ][ 9.2 - `curl` - `zbarimg` (Google for `zbar-0.10.tar.bz2`) - `tifftopnm` and `pnmtojpeg` from Netpbm () - `sox` and `soxi` from SoX () ``` make test ``` #### Ad Hoc Testing ``` ./quick.sh [search string or "random"] ./demo.sh [search string or "random"] ``` Example Ad Hoc Session: ``` $ ./demo.sh alien 1 Alien Ambush 2 Alien Downpour 3 Alien Game 4 Alien Munchies 5 Alien Typhoon pick one: 2 Alien Downpour...LAUNCHED ``` Ad hoc example session video output: ### Appendix #### Zbar MacOS Build ``` sudo port install imagemagick qrencode tar zxvf zbar-0.10.tar.bz2 cd zbar-0.10 ./configure --disable-video --without-python --without-gtk --without-qt --with-libiconv-prefix=/opt/local make -j sudo make install ```