Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAbbi Honeycutt <amh7732@rit.edu>2010-11-11 08:48:09 (GMT)
committer Abbi Honeycutt <amh7732@rit.edu>2010-11-11 08:48:09 (GMT)
commit029ce578c9e978b42309b2d4fa971a8002fbb6e5 (patch)
tree9b67ed26352338f391b6027921c547dddc7ecf65
parent94aff5e347a9f220283407dde8ca21c335c6c33f (diff)
Changed power pellets to green, removed unecessary modules and debugging prints
-rw-r--r--dev/pacmath.activity/gameMain.py1
-rw-r--r--dev/pacmath.activity/mazeSetup.py2
-rw-r--r--dev/pacmath.activity/questionGenerator.py2
3 files changed, 1 insertions, 4 deletions
diff --git a/dev/pacmath.activity/gameMain.py b/dev/pacmath.activity/gameMain.py
index 224c780..eee3e72 100644
--- a/dev/pacmath.activity/gameMain.py
+++ b/dev/pacmath.activity/gameMain.py
@@ -13,7 +13,6 @@ from mazeSetup import mazeSetup
from questionGenerator import questionGenerator
from question import question
import random
-import string
import pygame
import sys
diff --git a/dev/pacmath.activity/mazeSetup.py b/dev/pacmath.activity/mazeSetup.py
index d6a6030..f8a20ee 100644
--- a/dev/pacmath.activity/mazeSetup.py
+++ b/dev/pacmath.activity/mazeSetup.py
@@ -64,7 +64,7 @@ class mazeSetup:
#4
pygame.draw.rect(screen, (0, 0, 0), rect, 0)
dot = rect.inflate(-self.tileSizeX/2, -self.tileSizeY/2)
- pygame.draw.ellipse(screen, (255, 255, 0), dot, 0)
+ pygame.draw.ellipse(screen, (94,246,0), dot, 0)
elif tile == self.maze.PELLET_INT:
#5
pygame.draw.rect(screen, (0, 0, 0), rect, 0)
diff --git a/dev/pacmath.activity/questionGenerator.py b/dev/pacmath.activity/questionGenerator.py
index c95dac5..a612077 100644
--- a/dev/pacmath.activity/questionGenerator.py
+++ b/dev/pacmath.activity/questionGenerator.py
@@ -23,8 +23,6 @@ class questionGenerator:
self.minOp = minOp
self.maxOp = maxOp
self.operation = operation
-
- print operation
def getQuestion(self):
"""