Compare commits

...

2 Commits

3 changed files with 39 additions and 37 deletions
Split View
  1. +4
    -6
      subs.txt
  2. +6
    -5
      teampicker.py
  3. +29
    -26
      teams.txt

+ 4
- 6
subs.txt View File

@@ -1,8 +1,6 @@
costello_
ksyme99
hil42
rarestmonkey
mattgamerguy666
meblu42
burgiuk
mattgamerguy666
maothecat
idiotictendencies
costello_
ksyme99

+ 6
- 5
teampicker.py View File

@@ -4,7 +4,7 @@
#
# Two files provided:
# - subs.txt -- 8 subscribers
# - teams.txt -- 26 teams
# - teams.txt -- 30 teams
#
# Pseudocode:
# Split screen in 1:3
@@ -31,7 +31,7 @@ SIZE = WIDTH, HEIGHT = 1920, 1080

BGIMG = pygame.image.load("sub_crown_bg_2.png")

FONT = pygame.font.SysFont("Fetamont", 50)
FONT = pygame.font.SysFont("Fetamont", 45)
SUBFONTHEIGHT = 35
SUBFONT = pygame.font.SysFont("Fetamont", SUBFONTHEIGHT)
OFFWHITE = (224, 224, 224)
@@ -41,7 +41,7 @@ RED = (186, 20, 31)
PURPLE = (121, 35, 158)

screen = pygame.display.set_mode(SIZE)
pygame.display.set_caption("Sub Crown Nov 2020 Team Picker")
pygame.display.set_caption("Sub Crown May 2021 Team Picker")

# Set up team text positioning references
#
@@ -56,7 +56,7 @@ ROWHEIGHT = int((HEIGHT-ROWSTART)/10)
TEAMSFILE = "teams.txt"

TEAMNUMCOLS = 3
TEAMNUMROWS = 9
TEAMNUMROWS = 10

TEAMCOLS = []
TEAMROWS = []
@@ -72,7 +72,7 @@ for i in range(TEAMNUMROWS):
SUBSFILE = "subs.txt"
SUBS = []

SUBNUMROWS = 8
SUBNUMROWS = 9
SUBROWHEIGHT = int((HEIGHT-ROWSTART)/9)
SUBROWS = []

@@ -160,6 +160,7 @@ def setup_team_board():
name = fh.readline().strip()
if name == "":
continue
name = name.split(' ', 1)[1]
print("Adding {} at {},{}".format(name,
TEAMCOLS[col],
TEAMROWS[row]))


+ 29
- 26
teams.txt View File

@@ -1,26 +1,29 @@
Anaheim
Boston
Buffalo
Calgary
Chicago
Dallas
Detroit
Edmonton
Florida
Hartford
Los Angeles
Montreal
New Jersey
NY Islanders
NY Rangers
Ottawa
Philadelphia
Pittsburgh
Quebec
San Jose
St Louis
Tampa Bay
Toronto
Vancouver
Washington
Winnipeg
Atlanta Hawks
Boston Celtics
Charlotte Hornets
Chicago Bulls
Cleveland Cavaliers
Dallas Mavericks
Denver Nuggets
Detroit Pistons
Golden State Warriors
Houston Rockets
Indiana Pacers
LA Clippers
LA Lakers
Miami Heat
Milwaukee Bucks
Minnesota Timberwolves
NJ Nets
NY Knicks
Orlando Magic
Philadelphia 76ers
Phoenix Suns
Portland Trailblazers
Sacramento Kings
SanAntonio Spurs
Seattle SuperSonics
Toronto Raptors
Utah Jazz
Vancouver Grizzlies
Washington Wizards

Loading…
Cancel
Save