Difference between revisions of "PacMath"

From Sugar Labs
Jump to navigation Jump to search
Line 120: Line 120:
 
* Collision detection does not always work - look into other pygame modules for collision detection?
 
* Collision detection does not always work - look into other pygame modules for collision detection?
 
* It seems that our PacMan sprite can only eat two ghosties and answer two questions, then the game just continues, collision detection doesn't work and a new question can never be answered
 
* It seems that our PacMan sprite can only eat two ghosties and answer two questions, then the game just continues, collision detection doesn't work and a new question can never be answered
 +
 +
==Milestones - Fall 2010==
 +
* By Week 7
 +
** <s>Gain git access</s>
 +
** Evaluate game direction and idea
 +
**Determine whether to reuse or refuse the current PacMath code
 +
<br/>
 +
* By Week 8
 +
** Document game idea and play
 +
** Decide on feedback mechanism (Score, Lives, …)
 +
** Refactor collision detection system
 +
<br/>
 +
* By Week 9
 +
** Sugarize the activity
 +
** Implement multiple level capability
 +
** Refine ghost movement
 +
<br/>
 +
* By Week 10
 +
** Improve game speed
 +
** Beautify game, intuitively redesign the UI
 +
<br/>
 +
* By Week 11
 +
** Finishing touches
 +
** Usability testing
 +
** Release evaluation
 +
** Potential release
 +
<br/>
 +
Division of Labor:
 +
<br/>
 +
*Mike:
 +
** Ghost movement
 +
** Implementation of feedback mechanism
 +
<br/>
 +
*Abbi:
 +
** Sugarization
 +
** Map/Maze representation
 +
<br>
 +
* Both:
 +
** Game design and idea
 +
** Collision Detection
 +
** Game Speed
 +
** UI redesign
  
 
==Milestones - Winter 2009==
 
==Milestones - Winter 2009==

Revision as of 11:03, 21 October 2010

Status: Active
development in progress (restarted)
Group Members: Michael Kitson, Abbi Honeycutt
Fourth grade level math game based on the classic arcade game PacMan
PacMath

Last updated February 25, 2010

Introduction

PacMath is an educational game based off a well known 80's arcade game. Using the original game concept PacMath will add fourth grade level math to the fun and exciting arcade game in order to make learning fun. The game will provide the student with different problems and in order to solve the problem correctly the student will have to eat the enemy with the correct answer.

Sketch Up

startscreen
Version 1
startscreen
Version 2
eatscreen
Version 2
eatscreen
Version 3

Pacmath2.gif

Objective

The objective of this project is to incorporate the teachings of fourth grade mathematics to students through PacMath, a fun, interactive, mathematical game based on the 1980's popular arcade game. One of our main objectives is making PacMath flexible where the teacher will be allowed to create its own group of questions and not be forced to use only a set group of questions. This would allow more flexibility in the learning plan for the teacher.

Education

Media: PacMath Lesson Plan.pdf

Current Standards to be addressed with in this project:
(As per standards of the Massachusetts Department of Education)

  • 4.N.2 - Represent, order, and compare large numbers (to at least 100,000) using various forms, including expanded notation, e.g., 853 = 8 x 100 + 5 x 10 + 3.
  • 4.N.8 - Select, use, and explain various meanings and models of multiplication and division of whole numbers. Understand and use the inverse relationship between the two operations.
  • 4.N.9 - Select, use, and explain the commutative, associative, and identity properties of operations on whole numbers in problem situations, e.g., 37 x 46 = 46 x 37, (5 x 7) x 2 = 5 x (7 x 2).
  • 4.N.11 - Know multiplication facts through 12 x 12 and related division facts. Use these facts to solve related multiplication problems and compute related problems, e.g., 3 x 5 is related to 30 x 50, 300 x 5, and 30 x 500.
  • 4.N.12 - Add and subtract (up to five-digit numbers) and multiply (up to three digits by two digits) accurately and efficiently.

Link to Mass. Department of Education

Game Elements

Activity Icon
startscreen
Version 1
startscreen
Version 2

How It Works

Media: PacMan_User_Manual.pdf

  • One Player
  • Board Setup like the Original Arcade Game (one Maze to start off)
  • If the player eats a Power Pellet (4 per level)
    • Question Appears (4 per level -> 1 per Power Pellet)
    • After the four Power Pellets have been eaten and answered correctly, a new 'level' (so to speak) begins
    • Player has to eat the Enemy with the correct answer (answers will be displayed on the enemies throughout the entire 'level'
    • If the player eats the wrong answer they lose a token and return to the center of the maze and continue playing
    • If the player eats 100 (may change) regular pellets they gain a token
      • A token is an attempt, if you run out of tokens the game ends
  • Questions
    • Some default ones to start off with (come with the activity)
    • GUI/Prompt for the teacher to input their own questions, saves as an XML (the activity will load the file)
    • The answer will have a digit limit (thinking 3 digits)

Features

  • PacMath
    • User will control a yellow sprite
    • User will attempt to touch numbered sprites based on mathematical questions
  • Difficulty settings
    • EASY - slower game speed / easy difficulty questions
    • NORMAL - average game speed / easy and average difficulty questions
    • HARD - fast game speed / easy, average and hard difficulty questions
    • PRODUCT MADNESS - fast game speed / only multiplication tables from 1-12
  • Questions
    • Instructor will be able to alter the questions the students will have to answer
    • Instructor will be able to see the rankings of a particular student
  • Ranking
    • Top 10 scores will be recorded and displayed while game is paused

Controls

User will be able to interact with the game through two input devices

  • Keyboard
    • UP-ARROW will move sprite up
    • DOWN-ARROW will move sprite down
    • RIGHT-ARROW will move sprite right
    • LEFT-ARROW will move sprite left
    • P will pause and resume the game while displaying Rankings
  • Game-Pad
    • UP-ANGLE will move sprite up
    • DOWN-ANGLE will move sprite down
    • RIGHT-ANGLE will move sprite right
    • LEFT-ANGLE will move sprite left
    • SQUARE will pause and resume the game while displaying Rankings

Code Structure Plan

Update: 2/25/2010, as of this date we have our latest up to date code structure with comments and modules on the following website http://people.rit.edu/yah3133/

We will be using a mix and match of two existing classic arcade games implemented in Python. The first one is from Berkeley.edu and it is a very simple implementation. The second game comes from PyGames and it is more complicated in its design and implementation. We will be using a bit of both to try to come up with an optimal one that would work at a good speed in the XO.


  • Questions (default question list provided)
  • Maze (single maze to start)
  • Player
  • Enemies
  • Game (control)
  • Activity (main)
  • Setup (for loading on the XO)

Development

The code for this project is located at the Git.SugarLabs.org repositories.

The current group of people working on the development are:

Bugs

  • Collision detection does not always work - look into other pygame modules for collision detection?
  • It seems that our PacMan sprite can only eat two ghosties and answer two questions, then the game just continues, collision detection doesn't work and a new question can never be answered

Milestones - Fall 2010

  • By Week 7
    • Gain git access
    • Evaluate game direction and idea
    • Determine whether to reuse or refuse the current PacMath code


  • By Week 8
    • Document game idea and play
    • Decide on feedback mechanism (Score, Lives, …)
    • Refactor collision detection system


  • By Week 9
    • Sugarize the activity
    • Implement multiple level capability
    • Refine ghost movement


  • By Week 10
    • Improve game speed
    • Beautify game, intuitively redesign the UI


  • By Week 11
    • Finishing touches
    • Usability testing
    • Release evaluation
    • Potential release


Division of Labor:

  • Mike:
    • Ghost movement
    • Implementation of feedback mechanism


  • Abbi:
    • Sugarization
    • Map/Maze representation


  • Both:
    • Game design and idea
    • Collision Detection
    • Game Speed
    • UI redesign

Milestones - Winter 2009

Weeks correspond to RIT Quarter Schedule

  • Week 6 ( January 15th 2010 - January 22nd 2010 )
    • Get git working on git.sugarlabs.org
    • Finish adding details to the PacMath Wiki
    • Make a Sketch-Up for the game
    • E-mail Math4 Mailing List informing everyone about our project and ask for ideas and volunteers


  • Week 7 ( January 22nd 2010 - January 29th 2010 )
    • Get all the code sections defined well
    • Split up code sections
    • Start initial basic coding
    • Test an initial simple blank screen


  • Week 8 ( January 29th 2010 - February 5th 2010 )
    • Test segments of PacMath
      • Just Maze
      • Just PacMath
      • Just Enemies


  • Week 9 ( February 5th 2010 - February 12th 2010 )
    • Test the basic activity
    • Put the pieces together
    • User Group Test
    • Pick a License for the project


  • Week 10 ( February 12th 2010 - February 19th 2010 )
    • Wrap Up


  • Week 11 ( February 19th 2010 - February 26th 2010 )
    • Final Push!
    • Final presentation

Community

Feedback from the community

Gary (January 21, 2010)

The PacMath sketches look great, can't wait to give it a play through :-)
Regarding questions/game settings, make sure you have a play of Walter's VisualMatch activity and see how the toolbar provides lots of flexibility to the game challenge type. It would seem like a good approach to let the user choose the starting case (perhaps via a teachers verbal guidance in class) and then have the general math difficulty level increase as they complete level to level. It would be very desirable if you would perform the gettext internationalization (i18n) that is needed to get this set up in Pootle for localization into other languages (i.e. generate POT file, set po directory in git repo, make user:pootle a committer, file Trac bug with component = localization requesting Pootle hosting, etc.). Cjl 07:01, 12 February 2010 (UTC)

Walter Bender (February 11, 2010)

I would recommend you look at how other pygame-based activities are
packaged. For example, Maze.

Tomeu Vizoso (February 12, 2010)

Also, Jim's book could help clarifying several concepts, though I
don't see anything specific to pygame/sugargame.

Jim Simmons (February 12, 2010)

There is a project in Gitorious that sounds like it might be of use to you:
http://git.sugarlabs.org/projects/sugargame
I haven't tried it myself, but the description sounds promising.

License

88x31.png
http://creativecommons.org/licenses/by-sa/3.0/us/