среда, 28 мая 2014 г.

Mini-project # 5 - Memory

An Introduction to Interactive Programming in Python

Mini-project # 5 - Memory

Mini-project development process

As usual, we suggest that you start from the program template for this mini-project.
  1. Model the deck of cards used in Memory as a list consisting of 16 numbers with each number lying in the range [0,8) and appearing twice. We suggest that you create this list by concatenating two list with range [0,8) together. Use the Docs to locate the list concatenation operator.
  2. Write a draw handler that iterates through the Memory deck using a for loop and uses draw_text to draw the number associated with each card on the canvas. The result should be a horizontal sequence of evenly-spaced numbers drawn on the canvas.
  3. Shuffle the deck using random.shuffle(). Remember to debug your canvas drawing code before shuffling to make debugging easier.
  4. Next, modify the draw handler to either draw a blank green rectangle or the card's value. To implement this behavior, we suggest that you create a second list called exposed. In theexposed list, the ith entry should be True if the ith card is face up and its value is visible or False if the ith card is face down and it's value is hidden. We suggest that you initialize exposed to some known values while testing your drawing code with this modification.
  5. Now, add functionality to determine which card you have clicked on with your mouse. Add an event handler for mouse clicks that takes the position of the mouse click and prints the index of the card that you have clicked on to the console. To make determining which card you have clicked on easy, we suggest sizing the canvas so that the sequence of cards entirely fills the canvas.
  6. Modify the event handler for mouse clicks to flip cards based on the location of the mouse click. If the player clicked on the ith card, you can change the value of exposed[i] fromFalse to TrueIf the card is already exposed, you should ignore the mouseclick. At this point, the basic infrastructure for Memory is done.
  7. You now need to add game logic to the mouse click handler for selecting two cards and determining if they match. We suggest following the game logic in the example codediscussed in the Memory video. State 0 corresponds to the start of the game. In state 0, if you click on a card, that card is exposed, and you switch to state 1. State 1 corresponds to a single exposed unpaired card. In state 1, if you click on an unexposed card, that card is exposed and you switch to state 2. State 2 corresponds to the end of a turn. In state 2, if you click on an unexposed card, that card is exposed and you switch to state 1.
  8. Note that in state 2, you also have to determine if the previous two cards are paired or unpaired. If they are unpaired, you have to flip them back over so that they are hidden before moving to state 1. We suggest that you use two global variables to store the index of each of the two cards that were clicked in the previous turn.
  9. Add a counter that keeps track of the number of turns and uses set_text to update this counter as a label in the control panel. (BTW, Joe's record is 12 turns.)  This counter should be incremented after either the first or second card is flipped during a turn.
  10. Finally, implement the new_game() function (if you have not already) so that the "Reset" button reshuffles the cards, resets the turn counter and restarts the game. All cards should start the game hidden.
  11. (Optional) You may replace the draw_text for each card by a draw_image that uses one of eight different images.
Once the run button is clicked in CodeSkulptor, the game should start. You should not have to hit the "Reset" button to start. Once the game is over, you should hit the "Reset" button to restart the game. 
While this project may seem daunting at first glance, our full implementation took well under 100 lines with comments and spaces. If you feel a little bit intimidated, focus on developing your project to step six. Our experience is that, at this point, you will begin to see your game come together and the going will get much easier.


SOLUTION
# implementation of card game - Memory

import simplegui
import random
list1 = range(0, 8)
list2 = range(0, 8)
lists = list1 + list2
numOpen = []
turns = 0
select = [-1, -1]
status = 0

# helper function to initialize globals
def new_game():
    global lists, numOpen, turns, select, status
    numOpen = [0] * 16
    turns = 0
    select = [-1, -1]
    status = 0
    label.set_text("Turns = 0")
    random.shuffle(lists) 
     
# define event handlers
def mouseclick(pos):
    global select, status, turns
    index = int(pos[0] / 50)
    if(status == 0):
        if(numOpen[index] == 0):
            if(lists[select[0]] != lists[select[1]]):
                numOpen[select[0]] = 0
                numOpen[select[1]] = 0
            numOpen[index] = 1
            status = 1
            select[0] = index
    elif status == 1:
        if(numOpen[index] == 0):
            status = 0
            numOpen[index] = 1
            select[1] = index
            turns += 1   
            label.set_text("Turns = " + str(turns))
            if not(0 in numOpen):
                print "The game end. "+str(turns)+" turns"
                      
# cards are logically 50x100 pixels in size    
def draw(canvas):
    for simbol in range(0,len(lists)):
        if(numOpen[simbol]==0):
            canvas.draw_polygon([(simbol * 50, 0),
                         (simbol * 50 + 50, 0),
                         (simbol * 50 + 50, 100),
                         (simbol * 50, 100)], 1, "Black", "Green")
        else:
            canvas.draw_text(str(lists[simbol]), [simbol * 50 + 10, 70], 48, "White")

# create frame and add a button and labels
frame = simplegui.create_frame("Memory", 800, 100)
frame.add_button("Reset", new_game)
label = frame.add_label("Turns = 0")

# register event handlers
frame.set_mouseclick_handler(mouseclick)
frame.set_draw_handler(draw)

# get things rolling
new_game()
frame.start()


# Always remember to review the grading rubric

The code reference (CodeSkulptor )

Комментариев нет:

Отправить комментарий