Main Content

Quest Smith is a Raspberry Pi Zero-driven thermal printing text-based game. In each level, it gives you options to choose so every game is different than the other one depending on your choices.

After I saw one in the Game Museum in Berlin, I decided to build my own.

Here it’s in action:

Putting everything together

Well after you solder the wires as it shown in the sketch picture above, you need to fit the hardware in the empty space left from the thermal printer in the box. The only tip I can give you would be to use a short usb cable to save from the space, glue the thermal pinter and the buttons, after you put everything together glue the swicth button to the hole as well. I used a Solar panel to charge the battery, so you will need to glue the solar panel to the case when you complete eveyrthing else.

3D parts

You can get the STL files from thingiverse and print them.

Coding

1. Download and install raspbian OS from here https://www.raspberrypi.org/downloads/raspbian/

2. Update packages:

sudo apt-get update && sudo apt-get upgrade

3. Install the packages:

sudo apt-get install libpython3-dev libpython3-stdlib libqt5printsupport5 php7.0-mbstring python3-rpi.gpio python-rpi.gpio python-setuptools python-dev build-essential

4. Install composer (here are the instructions: https://getcomposer.org/download/)

5. Install python packages:

pip install setuptools pip install locustio

6. Create a dirctory under the home and get the code for the story:

mkdir quest_smith cd quest_smith git clone git@github.com:bekirdag/quest_smith.git . composer install

7. Run the Quest Smith script on reboot by adding a line on crontab

crontab -e

And add this line:

@reboot sudo /usr/bin/screen -dmS story-game /usr/bin/python3 /home/pi/thermal/push3.py

8. Add another line to crontab again to update the software on each reboot so your story will be up to date

@reboot sudo cd /home/pi/quest_smith && sudo git pull origin master

Conclusion

Well that’s it, when you turn the raspberry pi on as well as the printer, it should run the script automaticlaly! Your game is ready to be played!

Contribution

Each level requires two versions of the story which makes the possiblities grow exponentially. So it will be very difficult for me to finish a single story by myself. For the player to reach level 9, we will need to have 1023 story parts to be written. If you can help me with that it would be amazing!”

Link to article