finishing prototype

This commit is contained in:
Debucquoy Anthony 2023-02-20 12:37:04 +01:00
parent 56ee3e943c
commit a74c78d8a9
Signed by: tonitch
GPG Key ID: A78D6421F083D42E

122
prototypes/saves_prototypes/parser.py Normal file → Executable file
View File

@ -1,23 +1,26 @@
#!/bin/python
import os
class MapNotSquareException(Exception):
"""
Matrix used is not a Square and cannot be interpretted as a piece
"""
class PieceNotSquareException(Exception):
"""
Matrix used is not a Square and cannot be interpretted as a piece
"""
class SaveParser:
"""
Parser for the game file
"""
def __init__(self):
self.filename = filename
self.map_shape = [[0]]
self.pieces = list()
self.pieces = []
def define_map(self, map_shape):
size = len(map_shape)
@ -44,11 +47,49 @@ class SaveParser:
tray = (tray << 1) | i
return tray.to_bytes(byte_ammount, 'big')
def bytes_to_shape(self, bytes_list, map_size):
list_octet = []
for octet in bytes_list:
octet_data = list(f"{octet:08b}")
[list_octet.append(d) for d in octet_data]
list_octet = list_octet[-(map_size**2):]
def load(self):
matrix = []
for i in range(map_size):
matrix.append([])
for j in range(map_size):
matrix[i].append(list_octet.pop(0))
return matrix
def load(self, filename):
"""
load the file and prepare to parse informations
"""
with open(filename, mode='br') as file:
data = list(file.read())
data_pos = [0, 0]
for i in range(len(data)):
if data[i] == 83 and data[i+1] == 77 and data[i+2] == 83: # SMS
data_pos[0] = i+3
break
for i in range(data_pos[0], len(data)):
if data[i] == 83 and data[i+1] == 77 and data[i+2] == 69: # SME
data_pos[1] = i
break
map_data = data[data_pos[0]:data_pos[1]]
self.define_map(self.bytes_to_shape(map_data[1:((map_data[0]**2)//8)+2], map_data[0]))
map_data = map_data[(map_data[0]**2) // 8 + 2:]
pieces_ammount = map_data.pop(0)
for i in range(pieces_ammount):
print(map_data)
piece_size = map_data.pop(0)
print(piece_size)
piece_data = map_data[:(piece_size**2) // 8 + 1]
print(piece_data)
map_data = map_data[(map_data[0]**2) // 8 + 2:]
print(map_data)
self.add_piece(self.bytes_to_shape(piece_data, piece_size))
def save(self, filename):
"""
@ -60,36 +101,82 @@ class SaveParser:
save_data += self.shape_to_bytes(self.map_shape)
save_data += len(self.pieces).to_bytes(1, 'big')
for piece in self.pieces:
save_data +=len(piece).to_bytes(1, 'big')
save_data += len(piece).to_bytes(1, 'big')
save_data += self.shape_to_bytes(piece)
save_data += b'SME'
with open(filename, mode='bw') as file:
file.write(save_data)
def show_matrix(matrix, highlight: tuple = None):
"""
:matrix: matrix to draw
:highlight: tuple of the coordinates to hightligh
"""
size = len(matrix)
h_x, h_y = None, None
if highlight:
h_x, h_y = highlight
if size != len(matrix[0]):
print("ERROR: The matrix is not square")
return
line_str = "+" + ''.join(['-+' for _ in range(size)])
for k, x in enumerate(matrix):
print(line_str)
print('|', end="")
for l, y in enumerate(x):
if k == h_x and l == h_y:
print("\033[42m", end="")
print(str(y) + "\033[00m" + '|', end="")
print()
print(line_str)
def cls():
'clear the screen'
for _ in range(os.get_terminal_size()[1]):
print()
def menu():
"""draw a simple menu to test the SaveParser class"""
P = SaveParser()
def menu(P):
"""draw a simple menu to test the SaveParser class"""
print("1) define terrain")
print("2) add a piece")
print("3) show data")
print("4) save data")
print("5) load data")
item = input("Select an option :")
print("6) quit")
item = int(input("Select an option :"))
cls()
match item:
case 1:
pass
size = int(input("what is the size of the map: "))
P.map_shape = [[0 for _ in range(size)] for _ in range(size)]
for i in range(size):
for j in range(size):
cls()
show_matrix(P.map_shape, (i,j))
P.map_shape[i][j] = int(input("0: empty; 1: filled :"))
case 2:
pass
size = int(input("what is the size of the piece: "))
temp = [[0 for _ in range(size)] for _ in range(size)]
for i in range(size):
for j in range(size):
cls()
show_matrix(temp, (i,j))
temp[i][j] = int(input("0: empty; 1: filled :"))
P.add_piece(temp)
case 3:
pass
if P.map_shape:
print("map:")
show_matrix(P.map_shape)
for i, v in enumerate(P.pieces):
print()
print(f"piece {i+1}")
show_matrix(v)
case 4:
filename = input('enter the file name (default: default.smap):')
filename = filename if filename else "default.smap"
@ -98,10 +185,13 @@ def menu():
filename = input('enter the file name (default: default.smap):')
filename = filename if filename else "default.smap"
P.load(filename)
case 6:
return False
return True
if __name__ == "__main__":
cls()
# p = SaveParser('test.smap')
# p.define_map([[1,0,1],[1,1,1], [1,0,0]])
# p.add_piece([[0, 1],[0, 1]])
# p.save()
# print(p.shape_to_bytes([[1,0,1],[1,1,1], [1,0,0]]))
P = SaveParser()
while menu(P):
pass