mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-03-25 01:14:43 +00:00
36 lines
741 B
Ruby
36 lines
741 B
Ruby
class PoolGeneration
|
|
def initialize(weight)
|
|
@weight = weight
|
|
@tournament = @weight.tournament
|
|
@pool = 1
|
|
end
|
|
|
|
def generatePools
|
|
GeneratePoolNumbers.new(@weight).savePoolNumbers
|
|
pools = @weight.pools
|
|
while @pool <= pools
|
|
roundRobin
|
|
@pool += 1
|
|
end
|
|
end
|
|
|
|
def roundRobin
|
|
wrestlers = @weight.wrestlers_in_pool(@pool)
|
|
pool_matches = RoundRobinTournament.schedule(wrestlers).reverse
|
|
pool_matches.each_with_index do |b, index|
|
|
round = index + 1
|
|
bouts = b.map
|
|
bouts.each do |bout|
|
|
if bout[0] != nil and bout[1] != nil
|
|
@tournament.matches.create(
|
|
w1: bout[0].id,
|
|
w2: bout[1].id,
|
|
weight_id: @weight.id,
|
|
bracket_position: "Pool",
|
|
round: round)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|