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

Mini-project # 3 - "Stopwatch: The Game"

An Introduction to Interactive Programming in Python

Mini-project description - "Stopwatch: The Game"

Mini-project development process

  1. Construct a timer with an associated interval of 0.1 seconds whose event handler increments a global integer. (Remember that create_timer takes the interval specified in milliseconds.) This integer will keep track of the time in tenths of seconds. Test your timer by printing this global integer to the console. Use the CodeSkulptor reset button in the blue menu bar to terminate your program and stop the timer and its print statements. Important: Do not use floating point numbers to keep track of tenths of a second! While it's certainly possible to get it working, the imprecision of floating point can make your life miserable. Use an integer instead, i.e., 12 represents 1.2 seconds.
  2. Write the event handler function for the canvas that draws the current time (simply as an integer, you should not worry about formatting it yet) in the middle of the canvas. Remember that you will need to convert the current time into a string using str before drawing it.
  3. Add "Start" and "Stop" buttons whose event handlers start and stop the timer. Next, add a "Reset" button that stops the timer and reset the current time to zero. The stopwatch should be stopped when the frame opens.
  4. Next, write a helper function format(t) that returns a string of the form A:BC.D where A, C and D are digits in the range 0-9 and B is in the range 0-5. Test this function independent of your project using this testing template http://www.codeskulptor.org/#examples-format_template.py. (Just cut and paste your definition of  format into the template.) Note that the string returned by your helper function format should always correctly include leading zeros. For example
    • format(0) = 0:00.0
    • format(11) = 0:01.1
    • format(321) = 0:32.1
    • format(613) = 1:01.3
    Hint: Use integer division and remainder (modular arithmetic) to extract various digits for the formatted time from the global integer timer.
  5. Insert a call to the format function into your draw handler to complete the stopwatch. (Note that the stopwatch need only work correctly up to 10 minutes, beyond that its behavior is your choice.)
  6. Finally, to turn your stopwatch into a test of reflexes, add to two numerical counters that keep track of the number of times that you have stopped the watch and how many times you manage to stop the watch on a whole second (1.0, 2.0, 3.0, etc.). These counters should be drawn in the upper right-hand part of the stopwatch canvas in the form "x/y" where xis the number of successful stops and y is number of total stops. My best effort at this simple game is around a 25% success rate.
  7. Add code to ensure that hitting the "Stop" button when the timer is already stopped does not change your score. We suggest that you add a global Boolean variable that is Truewhen the stopwatch is running and False when the stopwatch is stopped. You can then use this value to determine whether to update the score when the "Stop" button is pressed.
  8. Modify "Reset" so as to set these numbers back to zero when clicked.
Steps 1-3 and 5-7 above are relatively straightforward. However, step 4 requires some adept use of integer division and modular arithmetic. So, we again emphasize that you build and debug the helper function format(t) separately following the tips in the Code Clinic thread. Following this process will save you time. For an example of a full implementation, we suggest that you watch the video lecture on this mini-project.


SOLUTION
# template for "Stopwatch: The Game"

# define global variables
import simplegui

watch = 0
attempt = 0
win = 0
score = "0/0"
work_timer = True

# define helper function format that converts time
# in tenths of seconds into formatted string A:BC.D
def format(t):
    A = str(t // 600)
    B = str(t // 100 % 6 )
    C = str(t % 100 / 10)
    D = str(t % 10)
    return A + ":" + B + C + "." + D
    
# define event handlers for buttons; "Start", "Stop", "Reset"
def start_handler():
    global work_timer
    timer.start()
    work_timer = True
        
def stop_handler():
    global attempt, win, score, work_timer
    timer.stop()
    if work_timer == True:
        attempt += 1
        win_template = '.0'
        if win_template in format(watch):
            win += 1
        score = str(win) + '/' + str(attempt)
    work_timer = False
        
def reset_handler():
    global watch, attempt, win, score, work_timer
    timer.stop()
    watch = 0
    attempt = 0
    win = 0
    score = str(win) + '/' + str(attempt)
    work_timer = False

# define event handler for timer with 0.1 sec interval
def timer_handler():
    global watch
    if watch < 5999:
        watch += 1
    
# define draw handler
def draw_handler(canvas):
    canvas.draw_text(format(watch), (200 // 2 - 55, 200 // 2 + 15), 48, 'Red')
    canvas.draw_text(score, (200 // 2 + 45 , 200 // 2 - 70), 24, 'Green')
    
# create frame
f = simplegui.create_frame("Stopwatch: The Game", 200, 200)
f.add_button('Start', start_handler, 100)
f.add_button('Stop', stop_handler, 100)
f.add_button('Reset', reset_handler, 100)
f.set_draw_handler(draw_handler)

# register event handlers
timer = simplegui.create_timer(100, timer_handler)

# start frame
f.start()
# Please remember to review the grading rubric

The code reference (CodeSkulptor )

1 комментарий: