After a wee delay in starting the workshop, we got going. At least it was an excuse to get folks make them selves a cuppa and take a biccie or two.
@CodingGrace workshop starting and will make a game tonight! How exciting! pic.twitter.com/IZw9bpyYZ9
— Sung-Yueh Perng (@syperng) April 28, 2014
There were a few things to set up which I forgot to ask people to install, a text editor. PyCharm IDE and Sublime Text Editor are my recommended editors to use. PyCharm IDE is handy as it has the terminal and Python interpreter all in one place. Personally I just use Sublime Text Editor and a seperate terminal.
Once we got going, I started to show how to get user input via command line. Showing some examples of strings, and got folks comfortable in using basic command line, and the Python interpreter.
Reference: Coding Grace Basic Command Line Workshop
Once people know how to create a Python file, run it, I pretty much walked through by typing a few lines of code and running it. Mick and Ursula were fantastic, they went around helping people. I've introduced strings (touching a little on string manipulation), printing out text, escaping characters, new string formatting, numbers, if statements (various ways of comparing text input), calling other functions from a function, exiting the program, lists (accessing its elements), for loops, while loops (caution using this), booleans (people were starting to get tired here), and finally returning something after calling a function.And in the process of learning Python, this is the simple story I wanted to base the game on:
- You are in a room and you have a red and blue door to choose from.
Red door leads to the Painful Truth of Reality Room where you will encouter Cthulhu. You have two options, flee for your life or eat your own head. (This is Cthulhu.)
- flee: go back out to the room with two doors
- die
Blue door leads to the Blissful Ignorance of Illusion room where you encounter a wooden treasure chest and a sleeping guard in front of a door.
- wooden treasure chest, option to open or leave it;
If you open it, you will take treasure, pick up the shiney sword and drop your crappy one in the chest, and head towards the guard in front of the door.
If you leave it, you will check out the guard in front of the door.
- check out the guard in front of the door
As you walk towards the guard, you clumsily walk into a wooden cask knocking the mug off with and it crashed to the ground, waking the guard.
Pending on following outcomes, you either get out alive or be killed by the guard.
- You run and the guard hasn't moved, but stupidly looks the other way; you are still alive.
- You run and the guard has moved, the guard kills you.
- You go for the door and the guard hasn't moved, the guard kills you.
- You go for the door and the guard has moved, freedom, and you win the game, alive and well.
- wooden treasure chest, option to open or leave it;
Here's a sample run through of the game when I run the game:
batou:text_based_adventure_game whykay$ python 10_game.py What's your name? > vicky Your name is RAINBOW UNICORN, is that correct? [Y|N] > y You are fun, RAINBOW UNICORN! Let's begin our adventure! You enter a room, and you see a red door to your left and a blue door to your right. Do you pick the red door or blue door? > red There you see the great evil Cthulhu. He, it, whatever stares at you and you go insane. Do you flee for your life or eat your head? > flee You enter a room, and you see a red door to your left and a blue door to your right. Do you pick the red door or blue door? > blue You see a room with a wooden treasure chest on the left, and a sleeping guard on the right in front of the door What do you do? > left Oooh, treasure! Open it? Press '1' Leave it alone. Press '2' > 1 Let's see what's in here... /grins The chest creaks open, and the guard is still sleeping. That's one heavy sleeper! You find some diamonds gold silver sword What do you want to do? Take all 4 treasure, press '1' Leave it, press '2' > 1 Woohoo! Bounty and a shiney new sword. /drops your crappy sword in the empty treasure chest. You just received [diamonds, gold, silver, sword] You approach the guard, he's still sleeping. Suddenly you knocked a wooden cask with a mug on it... CRASSH!
Oi, what you doing 'ere? [run | door] > run Guard jumps up and looks the other way, missing you entirely. [run | door] > door You just slipped through the door before the guard realised it. You are now outside, home free! Huzzah!
The end
Thanks for playing, RAINBOW UNICORN
You can find all the steps to the final game here: Python Project Workshop - Make text-based game in Python
There are follow-on suggested activities for tweaking the game to do more stuff.
Questions/Suggestions
Feel free to join in our Coding Grace mailing list: https://groups.google.com/forum/#!forum/coding-grace
Finally
Thanks to Adverts.ie for hosting our event.
A big thank you to the mentors, Mick and Ursula.
And a final big thank you to all who came along and participated in the workshop.