summaryrefslogtreecommitdiff
path: root/playoff.py
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2017-02-26 11:43:54 +0100
committeremkael <emkael@tlen.pl>2017-02-26 11:43:54 +0100
commit82098a333b2a128c415653a6c67cefcccf7441bf (patch)
treee6202bdb18b5c170806fc2a0e319d6dfa143dc3f /playoff.py
parenta7a9fb9315729ef124371ad7a07094b2500e4318 (diff)
Dummy placeholders for better visualisation within a phase
Diffstat (limited to 'playoff.py')
-rw-r--r--playoff.py27
1 files changed, 17 insertions, 10 deletions
diff --git a/playoff.py b/playoff.py
index d5d9b1b..578f29b 100644
--- a/playoff.py
+++ b/playoff.py
@@ -58,7 +58,7 @@ def get_match_grid(grid, matches, width, height):
col_no = 0
for column in grid:
grid_x = col_no * (settings['page']['width'] + settings['page']['margin'])
- grid_header = p_temp.MATCH_GRID_PHASE_RUNNING if len([match for match in column if matches[match].running > 0]) > 0 else p_temp.MATCH_GRID_PHASE
+ grid_header = p_temp.MATCH_GRID_PHASE_RUNNING if len([match for match in column if match is not None and matches[match].running > 0]) > 0 else p_temp.MATCH_GRID_PHASE
grid_boxes += grid_header % (
settings['phases'][col_no]['link'],
settings['page']['width'],
@@ -69,13 +69,14 @@ def get_match_grid(grid, matches, width, height):
column_height = height / len(column)
for match in column:
grid_y = int(row_no * column_height + 0.5 * (column_height - settings['page']['height']))
- grid_boxes += p_temp.MATCH_BOX % (
- grid_x, grid_y,
- match,
- ' '.join([str(m) for m in matches[match].winner_matches]) if matches[match].winner_matches is not None else '',
- ' '.join([str(m) for m in matches[match].loser_matches]) if matches[match].loser_matches is not None else '',
- get_match_table(matches[match])
- )
+ if match is not None:
+ grid_boxes += p_temp.MATCH_BOX % (
+ grid_x, grid_y,
+ match,
+ ' '.join([str(m) for m in matches[match].winner_matches]) if matches[match].winner_matches is not None else '',
+ ' '.join([str(m) for m in matches[match].loser_matches]) if matches[match].loser_matches is not None else '',
+ get_match_table(matches[match])
+ )
row_no += 1
col_no += 1
return p_temp.MATCH_GRID % (width, height, width, height, grid_boxes)
@@ -171,11 +172,17 @@ def get_match_info(match):
grid = []
for phase in settings['phases']:
- grid.append([])
+ phase_grid = [None] * (len(phase['dummies']) + len(phase['matches']) if 'dummies' in phase else len(phase['matches']))
+ phase_pos = 0
for match in phase['matches']:
+ if 'dummies' in phase:
+ while phase_pos in phase['dummies']:
+ phase_pos += 1
match_info[match['id']] = get_match_info(match)
match_info[match['id']].link = phase['link'] if match_info[match['id']].link is None else urljoin(phase['link'], match_info[match['id']].link)
- grid[-1].append(match['id'])
+ phase_grid[phase_pos] = match['id']
+ phase_pos += 1
+ grid.append(phase_grid)
for team in settings['teams']:
if len(team) > 3: