2019-08-27 13:27:50 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#coding=utf-8
|
|
|
|
|
2019-08-27 14:58:49 +02:00
|
|
|
import pygame, signal, sys, time, os, RPi.GPIO as GPIO
|
2019-08-27 13:27:50 +02:00
|
|
|
from pygame.locals import *
|
|
|
|
|
|
|
|
#GPIO
|
|
|
|
startPin = 32
|
|
|
|
errorPin = 31
|
|
|
|
enableErrorTimeAddingPin = 15
|
|
|
|
shutdownPin = 3
|
|
|
|
|
|
|
|
GPIO.setmode(GPIO.BOARD)
|
|
|
|
GPIO.setup(startPin, GPIO.IN)
|
|
|
|
GPIO.setup(errorPin, GPIO.IN)
|
|
|
|
GPIO.setup(enableErrorTimeAddingPin, GPIO.IN)
|
|
|
|
GPIO.setup(shutdownPin, GPIO.IN)
|
|
|
|
|
|
|
|
#other constants
|
2019-08-27 15:39:35 +02:00
|
|
|
timePerError = 5 # every time the wire is touched, some time is added as penalty. only active when enableErrorTimeAddingPin is active
|
2019-08-27 13:27:50 +02:00
|
|
|
screenSizeX = 900
|
|
|
|
screenSizeY = 900
|
|
|
|
|
|
|
|
|
|
|
|
pygame.init()
|
|
|
|
|
|
|
|
|
|
|
|
#colors
|
|
|
|
redColor = pygame.Color(255, 0, 0)
|
|
|
|
blackColor = pygame.Color(0, 0, 0)
|
|
|
|
whiteColor = pygame.Color(255, 255, 255)
|
|
|
|
grayColor = pygame.Color(128, 128, 128)
|
|
|
|
mainFontColor = redColor
|
|
|
|
|
|
|
|
#fonts
|
2019-08-29 09:22:27 +02:00
|
|
|
font1 = pygame.font.Font('freesansbold.ttf', 90)
|
2019-08-27 13:27:50 +02:00
|
|
|
|
2019-08-27 14:58:49 +02:00
|
|
|
def signal_handler(sig, frame):
|
|
|
|
print('Programm exiting')
|
|
|
|
exit_application()
|
|
|
|
|
2019-08-27 13:27:50 +02:00
|
|
|
def toggle_fullscreen():
|
|
|
|
screen = pygame.display.get_surface()
|
|
|
|
tmp = screen.convert()
|
|
|
|
caption = pygame.display.get_caption()
|
|
|
|
cursor = pygame.mouse.get_cursor() # Duoas 16-04-2007
|
|
|
|
|
|
|
|
w,h = screen.get_width(),screen.get_height()
|
|
|
|
flags = screen.get_flags()
|
|
|
|
bits = screen.get_bitsize()
|
|
|
|
|
|
|
|
pygame.display.quit()
|
|
|
|
pygame.display.init()
|
|
|
|
|
|
|
|
screen = pygame.display.set_mode((w,h),flags^FULLSCREEN,bits)
|
|
|
|
screen.blit(tmp,(0,0))
|
|
|
|
pygame.display.set_caption(*caption)
|
|
|
|
|
|
|
|
pygame.key.set_mods(0) #HACK: work-a-round for a SDL bug??
|
|
|
|
|
|
|
|
pygame.mouse.set_cursor( *cursor ) # Duoas 16-04-2007
|
|
|
|
return screen
|
|
|
|
|
|
|
|
def clearScreen():
|
|
|
|
screen.fill(blackColor)
|
|
|
|
return
|
|
|
|
|
|
|
|
def handle_events():
|
|
|
|
print("Status der Pins:")
|
|
|
|
print("Start Pin:", GPIO.input(startPin))
|
|
|
|
print("Error Pin:", GPIO.input(errorPin))
|
|
|
|
print("Stop Pin:", GPIO.input(shutdownPin))
|
|
|
|
|
|
|
|
#if GPIO.input(shutdownPin) == True:
|
|
|
|
#shutdown_raspberry()
|
|
|
|
for event in pygame.event.get():
|
|
|
|
if event.type == KEYDOWN and event.key == K_ESCAPE:
|
|
|
|
shutdown_raspberry()
|
|
|
|
else:
|
|
|
|
if event.type == pygame.QUIT or event.type == KEYDOWN:
|
|
|
|
exit_application()
|
2019-08-27 15:06:50 +02:00
|
|
|
|
|
|
|
time.sleep(0.1)
|
2019-08-27 13:27:50 +02:00
|
|
|
return
|
|
|
|
|
|
|
|
def exit_application():
|
|
|
|
pygame.quit()
|
2019-08-27 14:58:49 +02:00
|
|
|
GPIO.cleanup()
|
2019-08-27 13:27:50 +02:00
|
|
|
sys.exit()
|
|
|
|
return
|
|
|
|
|
2019-08-27 13:28:18 +02:00
|
|
|
def shutdown_raspberry():
|
2019-08-28 08:07:47 +02:00
|
|
|
pygame.quit()
|
|
|
|
GPIO.cleanup()
|
2019-08-27 13:28:18 +02:00
|
|
|
os.system("sudo shutdown -h now")
|
2019-08-27 13:27:50 +02:00
|
|
|
return
|
2019-08-27 15:06:50 +02:00
|
|
|
|
2019-08-28 14:51:28 +02:00
|
|
|
def enterName():
|
|
|
|
clearScreen()
|
|
|
|
print('text entry started')
|
|
|
|
name = ''
|
|
|
|
while True:
|
|
|
|
clearScreen()
|
|
|
|
textbox_surface = font1.render('Enter name: ' + str(name), True, mainFontColor)
|
|
|
|
textbox_rectangle = textbox_surface.get_rect()
|
|
|
|
textbox_rectangle.topleft = (10, 30)
|
|
|
|
screen.blit(textbox_surface, textbox_rectangle)
|
|
|
|
pygame.display.flip()
|
|
|
|
for event in pygame.event.get():
|
|
|
|
if len(name) < MAX_NAME_LENGTH:
|
|
|
|
if event.type == KEYDOWN:
|
|
|
|
if event.key == pygame.K_BACKSPACE:
|
|
|
|
name = name[:-1]
|
|
|
|
else:
|
|
|
|
name += event.unicode
|
|
|
|
elif event.key == pygame.K_BACKSPACE:
|
|
|
|
name = name[:-1]
|
|
|
|
|
|
|
|
elif event.type == KEYDOWN and event.key == pygame.K_RETURN:
|
|
|
|
clearScreen()
|
|
|
|
return name
|
|
|
|
clearScreen()
|
|
|
|
name = 'Error'
|
|
|
|
return name
|
|
|
|
|
2019-08-27 14:58:49 +02:00
|
|
|
#signal handing for controlled exit via ctrl+c
|
|
|
|
signal.signal(signal.SIGINT, signal_handler)
|
2019-08-27 13:27:50 +02:00
|
|
|
|
|
|
|
pygame.mouse.set_visible(False) # hide mouse
|
|
|
|
|
|
|
|
screen = pygame.display.set_mode((screenSizeX, screenSizeY), pygame.FULLSCREEN)
|
|
|
|
#pygame.display.set_caption('Heisser Draht') # not required for fullscreen application
|
|
|
|
|
|
|
|
#screen = toggle_fullscreen()
|
|
|
|
|
2019-08-28 14:51:28 +02:00
|
|
|
# preset highscores
|
|
|
|
|
|
|
|
hs1_name = "Fritz"
|
|
|
|
hs2_name = "Bernd"
|
|
|
|
hs3_name = "Max"
|
|
|
|
|
|
|
|
hs1_time = 100
|
|
|
|
hs2_time = 200
|
|
|
|
hs3_time = 300
|
2019-08-27 14:58:49 +02:00
|
|
|
|
|
|
|
|
2019-08-27 13:27:50 +02:00
|
|
|
while True: # main loop
|
|
|
|
#global label storage
|
2019-08-28 08:07:47 +02:00
|
|
|
print("New game starting")
|
2019-08-27 13:27:50 +02:00
|
|
|
time_surface = 0
|
|
|
|
errors_surface = 0
|
|
|
|
time_rectangle = 0
|
|
|
|
errors_rectangle = 0
|
|
|
|
|
2019-08-29 09:22:27 +02:00
|
|
|
header_surface = font1.render('Dr' + u'ü' + 'cken Sie Start!', True, mainFontColor)
|
2019-08-27 13:27:50 +02:00
|
|
|
header_rectangle = header_surface.get_rect()
|
2019-08-28 14:51:28 +02:00
|
|
|
header_rectangle.topleft = (10, 100)
|
|
|
|
|
2019-08-29 09:22:27 +02:00
|
|
|
highscore_header_surface = font1.render('Highscores:', True, mainFontColor)
|
2019-08-28 14:51:28 +02:00
|
|
|
highscore_header_rectangle = highscore_header_surface.get_rect()
|
|
|
|
highscore_header_rectangle = (10,190)
|
|
|
|
|
|
|
|
score1_surface = font1.render(hs1_name + ": " + str(hs1_time) + 's', True, mainFontColor)
|
|
|
|
score1_rectangle = score1_surface.get_rect()
|
|
|
|
score1_rectangle.topleft = (10, 270)
|
|
|
|
|
|
|
|
score2_surface = font1.render(hs2_name + ": " + str(hs2_time) + 's', True, mainFontColor)
|
|
|
|
score2_rectangle = score2_surface.get_rect()
|
|
|
|
score2_rectangle.topleft = (10, 360)
|
|
|
|
|
|
|
|
score3_surface = font1.render(hs3_name + ": " + str(hs3_time) + 's', True, mainFontColor)
|
|
|
|
score3_rectangle = score3_surface.get_rect()
|
|
|
|
score3_rectangle.topleft = (10, 450)
|
2019-08-27 13:27:50 +02:00
|
|
|
|
|
|
|
screen.blit(header_surface, header_rectangle)
|
2019-08-28 14:51:28 +02:00
|
|
|
screen.blit(highscore_header_surface, highscore_header_rectangle)
|
|
|
|
screen.blit(score1_surface, score1_rectangle)
|
|
|
|
screen.blit(score2_surface, score2_rectangle)
|
|
|
|
screen.blit(score3_surface, score3_rectangle)
|
2019-08-27 13:27:50 +02:00
|
|
|
pygame.display.flip()
|
|
|
|
|
|
|
|
while GPIO.input(startPin) == False: #wait for the user to press start button
|
|
|
|
handle_events()
|
|
|
|
|
|
|
|
errors = 0
|
|
|
|
errorAdded = False
|
|
|
|
|
2019-08-27 13:28:18 +02:00
|
|
|
#justStarted = True
|
2019-08-27 13:27:50 +02:00
|
|
|
|
2019-08-29 09:22:27 +02:00
|
|
|
header_surface = font1.render('Spiel l' + u'ä' + 'uft!', True, mainFontColor)
|
2019-08-27 13:28:18 +02:00
|
|
|
time.sleep(5)
|
2019-08-27 13:27:50 +02:00
|
|
|
|
2019-08-27 13:28:18 +02:00
|
|
|
start_time = int(time.time())
|
2019-08-27 13:27:50 +02:00
|
|
|
|
|
|
|
while True: # game running
|
2019-08-28 08:07:47 +02:00
|
|
|
print("Game running normally")
|
2019-08-27 13:27:50 +02:00
|
|
|
handle_events()
|
|
|
|
|
|
|
|
if GPIO.input(errorPin) == True:
|
|
|
|
if errorAdded == False:
|
|
|
|
errors += 1
|
|
|
|
errorAdded = True
|
|
|
|
else:
|
|
|
|
errorAdded = False
|
|
|
|
if GPIO.input(enableErrorTimeAddingPin) == True:
|
|
|
|
int_time = int(time.time()) - start_time + errors * timePerError
|
|
|
|
|
|
|
|
int_time = int(time.time()) - start_time
|
|
|
|
|
2019-08-29 09:22:27 +02:00
|
|
|
time_surface = font1.render('Zeit: ' + str(int_time) + 's', True, mainFontColor)
|
2019-08-27 13:27:50 +02:00
|
|
|
time_rectangle = time_surface.get_rect()
|
2019-08-28 14:51:28 +02:00
|
|
|
time_rectangle.topleft = (10, 300)
|
2019-08-27 13:27:50 +02:00
|
|
|
|
2019-08-29 09:22:27 +02:00
|
|
|
errors_surface = font1.render('Fehler: ' + str(errors), True, mainFontColor)
|
2019-08-27 13:27:50 +02:00
|
|
|
errors_rectangle = errors_surface.get_rect()
|
2019-08-28 14:51:28 +02:00
|
|
|
errors_rectangle.topleft = (10, 400)
|
2019-08-27 13:27:50 +02:00
|
|
|
|
|
|
|
clearScreen()
|
|
|
|
screen.blit(errors_surface, errors_rectangle) #errors
|
|
|
|
screen.blit(time_surface, time_rectangle) #time
|
|
|
|
screen.blit(header_surface, header_rectangle) #header
|
|
|
|
|
|
|
|
pygame.display.flip()
|
|
|
|
|
2019-08-27 13:28:18 +02:00
|
|
|
#if GPIO.input(startPin) == False:
|
|
|
|
# justStarted = False
|
|
|
|
#if GPIO.input(startPin) == True and justStarted == False:
|
2019-08-27 15:15:40 +02:00
|
|
|
if GPIO.input(startPin) != True:
|
2019-08-27 13:27:50 +02:00
|
|
|
|
2019-08-27 15:17:26 +02:00
|
|
|
print("Game ended because start pin wasnt true")
|
|
|
|
|
2019-08-27 15:15:40 +02:00
|
|
|
clearScreen()
|
2019-08-29 09:22:27 +02:00
|
|
|
header_surface = font1.render('Game over!', True, mainFontColor)
|
2019-08-27 13:27:50 +02:00
|
|
|
|
2019-08-27 15:15:40 +02:00
|
|
|
screen.blit(errors_surface, errors_rectangle) #errors
|
|
|
|
screen.blit(time_surface, time_rectangle) #time
|
|
|
|
screen.blit(header_surface, header_rectangle) #header
|
2019-08-27 13:27:50 +02:00
|
|
|
|
2019-08-27 15:15:40 +02:00
|
|
|
pygame.display.flip()
|
2019-08-27 13:27:50 +02:00
|
|
|
|
2019-08-27 15:15:40 +02:00
|
|
|
#while GPIO.input(startPin) == False:
|
|
|
|
# handle_events()
|
2019-08-27 13:27:50 +02:00
|
|
|
|
2019-08-27 15:15:40 +02:00
|
|
|
#while GPIO.input(startPin) == True:
|
|
|
|
# handle_events()
|
2019-08-27 13:27:50 +02:00
|
|
|
|
2019-08-27 15:15:40 +02:00
|
|
|
#while GPIO.input(startPin) == False:
|
|
|
|
# handle_events()
|
|
|
|
|
|
|
|
clearScreen()
|
|
|
|
time.sleep(10)
|
|
|
|
break
|
2019-08-27 13:27:50 +02:00
|
|
|
|