-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPuntuacion.py
88 lines (70 loc) · 2.92 KB
/
Puntuacion.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
import sqlite3
import datetime
import pygame
with sqlite3.connect("putuacion.db") as conexion:
try:
sentencia = """ create table tabla_puntuacion
(
id integer primary key autoincrement,
nombre text,
puntuacion int,
tiempo int,
fecha text
)
"""
conexion.execute(sentencia)
except:
pass
def crear_registro(nombre_jugador,score,tiempo):
nombre_jugador = str(nombre_jugador)
nombre_jugador = nombre_jugador.replace(",","")
nombre_jugador = nombre_jugador.replace("'","")
nombre_jugador = nombre_jugador.replace(" ","")
nombre_jugador = nombre_jugador.replace("[","")
nombre_jugador = nombre_jugador.replace("]","")
nombre_jugador = nombre_jugador.capitalize()
with sqlite3.connect("putuacion.db") as conexion:
conexion.execute("INSERT INTO tabla_puntuacion (nombre,puntuacion,tiempo,fecha) values (?,?,?,?)", (nombre_jugador,score,tiempo,datetime.date.today()))
print("-PUNTUACION CARGADA-")
def obtener_tabla_de_puntuaciones(screen):
pos = 200
with sqlite3.connect("putuacion.db") as conexion:
cursor = conexion.execute("SELECT nombre, puntuacion, tiempo , fecha FROM tabla_puntuacion order by puntuacion DESC")
escribir_titulo(screen)
for fila in cursor:
fila_sanitizada = sanitizar_registro(fila)
pos = pos + 25
font = pygame.font.SysFont("microsoftjhengheimicrosoftjhengheiui", 17)
fila_sanitizada = font.render(fila_sanitizada, True, "BLACK")
screen.blit(fila_sanitizada, (420, pos))
pygame.display.flip()
cursor.execute("SELECT COUNT(*) FROM tabla_puntuacion")
cantidad_registros = cursor.fetchone()[0]
if cantidad_registros > 8:
eliminar_registros()
def eliminar_registros():
with sqlite3.connect("putuacion.db") as conexion:
try:
conexion.execute("DELETE FROM tabla_puntuacion WHERE puntuacion < 30")
print("-SE ELIMINARON AQUELLAS PUNTUACIONES MENORES A 30-")
except:
print("--ERROR EN LA LIMPIEZA--")
def sanitizar_registro(fila):
elementos = [str(elemento).strip('\'\"') for elemento in fila]
lista = ' - '.join(elementos)
return lista
def escribir_titulo(screen):
font1 = pygame.font.SysFont("microsoftjhengheimicrosoftjhengheiui", 25)
font2 = pygame.font.SysFont("microsoftjhengheimicrosoftjhengheiui", 15)
text = "TABLA DE PUNTUACIONES"
text2 = "NOMBRE - SCORE - TIME - FECHA"
text = font1.render(text , True, "BLACK")
text2 = font2.render(text2 , True, "BLACK")
screen.blit(text, (380,170))
screen.blit(text2, (410,200))
# nombre,score,tiempo = fila
# linea = nombre, score, tiempo
# linea = str(linea)
# linea.replace("''"," ")
# linea = linea.replace("("," ")
# linea = linea.replace(")"," ")