Refactor board_randomizer for clarity and pylint recs

This commit is contained in:
2022-08-25 13:00:20 -04:00
parent 8bbd7b61b4
commit 3288325d25
+13 -24
View File
@@ -1,41 +1,30 @@
#!/bin/python
'''Module to generate random Boggle boards for testing'''
from sys import argv
from random import randint, shuffle
from math import sqrt
def read_dice_file(path):
'''Return list of die strings from file ignoring all comments (#)'''
with open(path, 'r+', encoding="utf-8") as file:
# Ignore first two lines
file.readline()
file.readline()
dice = []
line = ''.join(file.readline().rstrip().split(','))
while(line):
dice.append(line)
line = ''.join(file.readline().rstrip().split(','))
return [''.join(line.rstrip().split(',')) for line in file.readlines() if line[0] != "#"]
return dice
def roll_die(die):
def roll_die(die: str):
'''Return a face of the given die string to simulate rolling a die'''
return str(die[randint(0, len(die) - 1)])
def roll_dice(dice):
rolls = []
for die in dice:
roll = roll_die(die)
rolls.append(roll)
return rolls
def roll_dice(dice: list[str]):
'''Return a random roll for each die'''
return [ roll_die(die) for die in dice ]
if __name__ == '__main__':
if len(argv) != 2:
print('Usage: python3 <board_randomizer.py> <dice_file>')
print('Usage: python3 board_randomizer.py <dice_file>')
else:
dice = read_dice_file(argv[1])
shuffle(dice)
rolls = roll_dice(dice)
dice_strings = read_dice_file(argv[1])
shuffle(dice_strings)
rolls = roll_dice(dice_strings)
# Format dice rolls for boards file
board_size = int(sqrt(len(rolls)))
for i in range(0, len(dice), board_size):
for i in range(0, len(dice_strings), board_size):
print("".join(rolls[i:i+board_size]))