This repository was archived by the owner on Jan 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscore.py
142 lines (119 loc) · 4.16 KB
/
score.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
139
140
141
142
import sqlite3
import os.path
import sys
class Scores:
def __init__(self, test=False):
# Connect to the high scores database
if test:
path = "test_scores.sqlite"
else:
path = "scores.sqlite"
self.__connect(path)
# Create the table if it doesn't exist
self.__query_table('''
CREATE TABLE IF NOT EXISTS Scores (
points SMALLINT NOT NULL,
name VARCHAR(24) NOT NULL,
mode VARCHAR(16) NOT NULL,
difficulty VARCHAR(32) NOT NULL
);
''')
def __connect(self, path):
'''
Will attempt to connect to database. Will try to create one if it can't.
If it can't do that, it will ask the user to manually create one.
:param path:
:return:
'''
try:
self.connection = sqlite3.connect(path)
self.cursor = self.connection.cursor()
except:
if not os.path.exists(path):
# Create it, and close it
f = open(path, "w+")
f.close()
# And try again
return self.__connect(path)
else:
print(f"No database exists, and could not create one.\nPlease create file in app directory called: {path}\nThen restart application.")
raise
def __query_table(self, sql, args=False):
# Attempt to write to database
try:
if args is False:
return self.cursor.execute(sql)
else:
return self.cursor.execute(sql, args)
except:
print(f"{sql[0:160]}\n\nDatabase could not execute with above query; error message:\n\n{sys.exc_info()[0]}")
raise
def get_highscores(self, mode="classic", difficulty=False):
'''
Gets the high scores for the mode
:param difficulty:
:return:
'''
if difficulty is False:
# Get total high scores for all gamemodes
return self.__query_table("""
SELECT name, points
FROM Scores
ORDER BY points desc
""", (difficulty))
# Else, get it for a particular difficulty.
# Guard: Difficulty must be in expected difficulties
expected_difficulties = ("test", "beginner", "intermediate", "expert")
if difficulty not in expected_difficulties:
return False
data = self.__query_table(f"""
SELECT name, points
FROM Scores
WHERE difficulty LIKE '{difficulty}'
AND mode LIKE '{mode}'
ORDER BY points desc
""")
score_list = []
for row in data:
score_list.append(row)
self.connection.close()
return score_list
def clear_testscores(self):
'''
Deletes test data from database
:return:
'''
self.__query_table(f"""
DELETE FROM Scores
WHERE difficulty LIKE 'test'
""")
def write_highscore(self, name, points, mode, difficulty):
'''
Accepts high score dict
:param new_score: {name: "", difficulty: "", points: 0}
:return: successful(Bool)
'''
# Guards: Arguments must exist
if not name:
return
if not difficulty:
return
if not points:
return
# Guard: Difficulty must be in expected difficulties
expected_difficulties = ("test", "beginner", "intermediate", "expert")
if difficulty not in expected_difficulties:
return False
self.__query_table(f"""
INSERT INTO Scores
VALUES (?, ?, ?, ?)
""", (points, name, mode, difficulty))
return True
def __sanitise(self, s):
return
def save(self):
try:
self.connection.commit()
return self.connection.close()
except sqlite3.ProgrammingError:
print("Warning: Attempted to close already closed database.")