Browse Source

Teamicker should respect rows and cols specified

sep-2021
bertieb 2 years ago
parent
commit
802228417f
1 changed files with 8 additions and 8 deletions
  1. +8
    -8
      teampicker.py

+ 8
- 8
teampicker.py View File

@@ -41,22 +41,22 @@ RED = (186, 20, 31)
PURPLE = (121, 35, 158)

screen = pygame.display.set_mode(SIZE)
pygame.display.set_caption("Sub Crown August 2021 Team Picker")
pygame.display.set_caption("Sub Crown September 2021 Team Picker")

# Set up team text positioning references
#
# 26 teams so 3 cols, 9 rows

COLSTART = int(WIDTH/3)
COLWIDTH = int((WIDTH-COLSTART)/3)

ROWSTART = int(HEIGHT/12)
ROWHEIGHT = int((HEIGHT-ROWSTART)/10)

TEAMSFILE = "teams.txt"

TEAMNUMCOLS = 3
TEAMNUMROWS = 10
TEAMNUMROWS = 12

COLSTART = int(WIDTH/TEAMNUMCOLS)
COLWIDTH = int((WIDTH-COLSTART)/TEAMNUMCOLS)

ROWSTART = int(HEIGHT/(TEAMNUMROWS+2))
ROWHEIGHT = int((HEIGHT-ROWSTART)/TEAMNUMROWS)

TEAMCOLS = []
TEAMROWS = []


Loading…
Cancel
Save