Game templates: Difference between revisions

From OLPC
Jump to navigation Jump to search
(New page: == Game Genres == The following game genres are common genres when designing educational games. At least one template is needed for each genre. === Adventure === The character moves thr...)
 
 
(18 intermediate revisions by 4 users not shown)
Line 1: Line 1:
The target audience for game templates is kids who are novice programmers with some Python and Pygame experience, but who have never built a large project on their own before. We want to give the students a sense of accomplishment and an outlet for creativity without overwhelming them by starting from scratch. Game skeletons make it easy and quick for a student to develop a simple game, without much frustration or experience, by just filling in the blanks using code snippets and adding images. But they also don't restrict the student from going above and beyond by extending the template to make a more complex game.

== Game Genres ==
== Game Genres ==


The following game genres are common genres when designing educational games. At least one template is needed for each genre.
The following game genres are common genres when designing educational games. At least one template is needed for each genre.
These genres are based on game designs created by high school girls (see Pilot Program).


The game templates are stored at: http://itgirl.dreamhosters.com/itgirlgames/templates/
=== Adventure ===
The character moves through a world or a story. The character may have a set of tasks to complete before moving forward, or must solve problems/puzzles when they meet another character to move forward.


=== Adventure (Path-Based) ===
Example games:
The character moves through a world or along a path. As the character moves along, she will come across situations or other characters that make her complete a task, problem, or puzzle before they can move forward. For our purposes, the character’s path will be straight (there are no branches or forks in the road).
* [http://www.darfurisdying.com/ Darfur is Dying]
* [http://www.persuasivegames.com/games/game.aspx?game=arcadewirexmas Xtreme Xmas Shopping]


Example game: [http://upload.wikimedia.org/wikipedia/en/1/1e/Supermarioworld_map.PNG Super Mario World]
=== Arcade ===
The user only completes a few possible actions with the keyboard or mouse, but they must be done quickly and involve hand-eye coordination. Emphasis is on speed and timing.


Full template description: http://itgirl.wikispot.org/PathBasedAdventure
Example games:
* [http://youth.tearfund.org/make+poverty+history/water+game EU Water Funding Game]
* [http://education.jlab.org/sminequality/index.html SpeedMath]


=== Maze ===
=== Adventure (Room-Based) ===
The main character is in a closed room with several tasks to complete. The character can move around the room and complete the tasks in any order, but all the tasks must be completed.
The playing field is entirely a maze. Some are simple puzzles in which the player must navigate to the exit; others are action-based in which the player must collect or avoid items in the maze.


Example game: [http://www.persuasivegames.com/games/game.aspx?game=arcadewirexmas Xtreme Xmas Shopping]
Example games:

* [http://www.learningpython.com/2006/03/12/creating-a-game-in-python-using-pygame-part-one/ PyMan]
Full template description: http://itgirl.wikispot.org/RoomBasedAdventure
* [http://www.ci.austin.tx.us/sws/downloads/rr.swf City of Austin Recycling Roundup]


=== Practice drills ===
=== Practice drills ===
Drill and practice games teach or improve on a specific skill, such as addition, typing, or playing the piano. The game can either provide rigid drills or encourage experimentation.
Practice drills teach or improve on a specific skill, such as addition, typing, or playing the piano. The game can either provide rigid drills or encourage experimentation. The task given to the player to practice must be completely correctly and quickly to make something good happen or prevent something bad from happening.


Example game: [http://www.freetypinggame.net/play3.asp The Frogs Are Off Their Diet!]
Example games:
* [http://www.powertyping.com/baracuda/baracuda.htm Typing Barracuda]


Full template description: http://itgirl.wikispot.org/PracticeDrillsGame
=== Strategy ===
The game requires careful thinking and planning in order to achieve victory. The user makes several decisions that affect the game's outcome, and the user learns the consequences of each decision.


=== Simulation and Strategy ===
Example games:
Simulation and Strategy Games aim to simulate an experience that requires careful and skillful thinking and planning in order to achieve success. The player has a large project to complete and is asked to make multiple decisions. The player makes several decisions during the project that affect the game's outcome, and the user learns the consequences of each decision. Success is determined by an equation that takes into account the decisions the player made. The player must often complete the project within an allotted amount of time.
* [http://education.jlab.org/placevalue/index.html Place Value]
* [http://www.shockwave.com/gamelanding/bacteriasalad.jsp Bacteria Salad]


Example game: [http://www.shockwave.com/gamelanding/bacteriasalad.jsp Bacteria Salad]
== Game Actions Cookbook ==


Full template description: http://itgirl.wikispot.org/SimulationStrategyGame
Along with full game templates, we also need recipes for game actions that could be used in ANY game and that can be inserted into any game template. This is similar to [http://www.pygame.org/wiki/CookBook Pygame's Cookbook], but for much simpler actions.


=== Opening Screen ===
== Game Cookbook ==
Displays instructions for the game and waits for the user to press a key or click the mouse to start the game.


Along with full game templates, we also need recipes for code snippets that could be used in ANY game and that can be inserted into any game template. This is similar to [http://www.pygame.org/wiki/CookBook Pygame's Cookbook], but for much simpler actions.
=== Closing Screen ===
The initial list of cookbook recipe ideas were based on high school girls' game design ideas (see Pilot Program below).
Informs the user that they have won or lost the game. The user can restart the game or close the game.


The cookbook recipes are stored at: http://itgirl.dreamhosters.com/itgirlgames/cookbook/
=== Math Question ===
Asking the user to solve a math problem, then allowing them to input a numeric answer. Check to see if their answer is correct.


'''General:'''
=== Quiz Question ===
* Release your code under the GPL
Asking the user a multiple choice question, then checking to see if their answer is correct.
* Move a sprite using arrow keys
* Move a sprite using mouse
* Time a game, end a game after a specific time period
* Insert instructions screen
* Insert game over and credits screen
* How to end the game based on a condition
* Play a sound
* Choose your character's avatar – whether you play as a girl or a boy, etc.
* Animation of sprites (without user input) – moving to a point, image transformations
* Changing "costumes". Examples:
** make Pacman open and close mouth when he moves
** make costume change based on which direction the sprite is moving in
** make costume change when certain button is clicked
<br>
'''User Activities:'''
* Allow user to collect items in a basket
* Ask the user a question
** Multiple choice questions, and check correctness
** Questions that allow player to type in words or numbers, and check correctness
** Control how many times the user can try the question
* Paint using bucket fill (similar to a paint program)
* Fire a missile/object at another sprite
<br>
'''Maze Specific:'''
* How to form the maze layout
* How to check if you've reached a dead end
* How to check if you've eaten all the pellets
* Add another kind of object to the maze
* Create stationary obstacles (oils slicks, etc) i.e. set the speed of a monster
* Trigger user activity if character gets touched by monster
* Change the size of the game and the blocks


== Pilot Program ==
== Pilot Program ==
The goal for these game templates is that novice programmer students using the XO laptop will be able to easily create games for their peers and for younger students. [http://www.girlstart.org/itgirl/ Project IT Girl] will test these templates with 60 high school girls (16 - 17 years old).
The goal for these game templates is that novice programmer students using the XO laptop will be able to easily create games for their peers and for younger students. [[Project IT Girl]] tested these templates with 44 high school girls (16 - 17 years old) during the Spring 2008 semester.

Project IT Girl is a [http://www.girlstart.org/ Girlstart] after-school program in Austin, Texas. During the Fall 2007 semester, IT Girls learn basic programming concepts, Python, and Pygame. Over 90% of the girls have no programming experience before this semester. Throughout the semester, the girls work on a game based on litter prevention to practice using Python and Pygame ([http://www.girlstart.org/itgirl/download/LitterGame.zip download the sample code]). Each girl also designs a unique educational game ([http://itgirl.wikispot.org/ see the current game designs]).


[[Category:Software ideas]]
During the Spring 2008 semester, IT Girls implement their game designs using Python, Pygame, and the game templates. They have a total of '''only 10 hours''' to write the code for their games. At the end of the semester, the games will be made available to the OLPC community.
[[Category:Games]]

Latest revision as of 13:39, 8 September 2010

The target audience for game templates is kids who are novice programmers with some Python and Pygame experience, but who have never built a large project on their own before. We want to give the students a sense of accomplishment and an outlet for creativity without overwhelming them by starting from scratch. Game skeletons make it easy and quick for a student to develop a simple game, without much frustration or experience, by just filling in the blanks using code snippets and adding images. But they also don't restrict the student from going above and beyond by extending the template to make a more complex game.

Game Genres

The following game genres are common genres when designing educational games. At least one template is needed for each genre. These genres are based on game designs created by high school girls (see Pilot Program).

The game templates are stored at: http://itgirl.dreamhosters.com/itgirlgames/templates/

Adventure (Path-Based)

The character moves through a world or along a path. As the character moves along, she will come across situations or other characters that make her complete a task, problem, or puzzle before they can move forward. For our purposes, the character’s path will be straight (there are no branches or forks in the road).

Example game: Super Mario World

Full template description: http://itgirl.wikispot.org/PathBasedAdventure

Adventure (Room-Based)

The main character is in a closed room with several tasks to complete. The character can move around the room and complete the tasks in any order, but all the tasks must be completed.

Example game: Xtreme Xmas Shopping

Full template description: http://itgirl.wikispot.org/RoomBasedAdventure

Practice drills

Practice drills teach or improve on a specific skill, such as addition, typing, or playing the piano. The game can either provide rigid drills or encourage experimentation. The task given to the player to practice must be completely correctly and quickly to make something good happen or prevent something bad from happening.

Example game: The Frogs Are Off Their Diet!

Full template description: http://itgirl.wikispot.org/PracticeDrillsGame

Simulation and Strategy

Simulation and Strategy Games aim to simulate an experience that requires careful and skillful thinking and planning in order to achieve success. The player has a large project to complete and is asked to make multiple decisions. The player makes several decisions during the project that affect the game's outcome, and the user learns the consequences of each decision. Success is determined by an equation that takes into account the decisions the player made. The player must often complete the project within an allotted amount of time.

Example game: Bacteria Salad

Full template description: http://itgirl.wikispot.org/SimulationStrategyGame

Game Cookbook

Along with full game templates, we also need recipes for code snippets that could be used in ANY game and that can be inserted into any game template. This is similar to Pygame's Cookbook, but for much simpler actions. The initial list of cookbook recipe ideas were based on high school girls' game design ideas (see Pilot Program below).

The cookbook recipes are stored at: http://itgirl.dreamhosters.com/itgirlgames/cookbook/

General:

  • Release your code under the GPL
  • Move a sprite using arrow keys
  • Move a sprite using mouse
  • Time a game, end a game after a specific time period
  • Insert instructions screen
  • Insert game over and credits screen
  • How to end the game based on a condition
  • Play a sound
  • Choose your character's avatar – whether you play as a girl or a boy, etc.
  • Animation of sprites (without user input) – moving to a point, image transformations
  • Changing "costumes". Examples:
    • make Pacman open and close mouth when he moves
    • make costume change based on which direction the sprite is moving in
    • make costume change when certain button is clicked


User Activities:

  • Allow user to collect items in a basket
  • Ask the user a question
    • Multiple choice questions, and check correctness
    • Questions that allow player to type in words or numbers, and check correctness
    • Control how many times the user can try the question
  • Paint using bucket fill (similar to a paint program)
  • Fire a missile/object at another sprite


Maze Specific:

  • How to form the maze layout
  • How to check if you've reached a dead end
  • How to check if you've eaten all the pellets
  • Add another kind of object to the maze
  • Create stationary obstacles (oils slicks, etc) i.e. set the speed of a monster
  • Trigger user activity if character gets touched by monster
  • Change the size of the game and the blocks

Pilot Program

The goal for these game templates is that novice programmer students using the XO laptop will be able to easily create games for their peers and for younger students. Project IT Girl tested these templates with 44 high school girls (16 - 17 years old) during the Spring 2008 semester.