-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhighs.py
152 lines (120 loc) · 5.01 KB
/
highs.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
# File: high.py
# Description: An instance of the highscores screen
from high import *
import pygame
from pygame import *
import os
import math
import config
from config import *
import sys; sys.path.append("pgu")
from pgu import high, gui, html
def PositionText(pos):
suffix = ["st","nd","rd","th"]
if (pos < 3):
return str(pos+1) + suffix[pos]
else:
return str(pos+1) + suffix[3]
class HighScore:
def __init__(self, screen):
#Imagey type stuff
self.screen = screen
self.SCREEN_W = screen.get_size()[0]
self.SCREEN_H = screen.get_size()[1]
self.font = pygame.font.Font(None, 30)
#self.font = pygame.font.Font(None, 30)
self.highEnd = 0
self.selection = 0
self.hiScore = Highs('score.txt',Config.GAME_HIGHSCORE_ENTRIES)
self.hiScore.load()
self.myScores = self.hiScore['default']
self.scoretable = ""
#Initialisation Stuff Done
def __handleUserInteraction(self):
for event in pygame.event.get():
if(event.type == pygame.MOUSEBUTTONDOWN):
pass
self.highEnd = Config.GAME_CODE_USER_END
elif(event.type == pygame.QUIT):
self.highEnd = Config.GAME_CODE_USER_END
break
elif(event.type == pygame.KEYDOWN):
if(event.key == pygame.K_ESCAPE):
self.highEnd = Config.GAME_CODE_USER_END
break
def start(self,score):
self.highEnd = 0
clock = pygame.time.Clock()
if (score > 0):
position = self.myScores.check(score)
if(position != None):
app = gui.Desktop()
app.connect(gui.QUIT,app.quit,None)
main = gui.Container(width=500, height=400) #, background=(220, 220, 220) )
positionText = "You are " + PositionText(position) + " on the High Score table!!"
main.add(gui.Label(positionText, cls="h1"), 20, 20)
td_style = {'padding_right': 10}
t = gui.Table()
t.tr()
t.td( gui.Label('Type your name:') , style=td_style )
userName = gui.Input()
t.tr()
t.td( userName, style=td_style )
b = gui.Button("Done")
b.connect(gui.CLICK,app.quit,None)
t.td( b, style=td_style )
main.add(t, 20, 100)
app.run(main)
if (userName.value != ""):
position = self.myScores.submit(score,userName.value[0:15],None)
else:
app = gui.Desktop()
app.connect(gui.QUIT,app.quit,None)
main = gui.Container(width=500, height=400) #, background=(220, 220, 220) )
main.add(gui.Label("Sorry you didn't get a high score", cls="h1"), 20, 20)
td_style = {'padding_right': 10}
t = gui.Table()
t.tr()
b = gui.Button("Done")
b.connect(gui.CLICK,app.quit,None)
t.td( b, style=td_style )
main.add(t, 20, 100)
app.run(main)
#Draw background
pygame.draw.rect(self.screen, (255, 255, 255), pygame.Rect(0, 0, self.SCREEN_W, self.SCREEN_H))
#Draw Highscore Table
self.scoretable = ""
#data contains the html to be parsed on to the screen. This section sets up the table and the table headers
data = "<table border=1 width=100% align='center' style='border:1px; border-color: #000088; background: #ccccff; margin: 20px; padding: 20px;'>"
data += "<tr><td width=100%><b>Position</b></td><td width=100%><b>Player</b></td><td width=100%><b>Score</b></td></tr>"
count = 0
#Iterate each item in the high score list and add each as a row to the table
for e in self.myScores:
data += "<tr>"
data += "<td>"
data += PositionText(count)
data += "</td>"
data += "<td>"
data += e.name
data += "</td>"
data += "<td>"
data += str(e.score)
data += "</td>"
data += "</tr>"
count = count + 1
#Close the table
data += "</table>"
#Now that we've finished readin from the highscores, save it back to the .txt file
self.hiScore.save()
#Display the table until the user exits
while (self.highEnd == 0):
self.__handleUserInteraction()
html.write(self.screen,self.font,pygame.Rect(300,25,700,700),data)
pygame.display.flip()
return self.highEnd
if __name__ == '__main__':
display.init()
font.init()
screen = display.set_mode((1024, 768))
game_scores = HighScore(screen)
game_scores.start(470)