mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-04-09 23:44:52 +00:00
Simplify construction a bit on some methods
This commit is contained in:
@@ -3,7 +3,7 @@ class Pool
|
||||
@pools = weight.pools
|
||||
@pool = 1
|
||||
while @pool <= @pools
|
||||
matches = roundRobin(weight.wrestlers, weight, tournament , matches)
|
||||
matches = roundRobin(weight.wrestlers, weight, tournament, matches)
|
||||
@pool += 1
|
||||
end
|
||||
return matches
|
||||
@@ -12,19 +12,16 @@ class Pool
|
||||
def roundRobin(wrestlers,weight,tournament,matches)
|
||||
@wrestlers = wrestlers.select{|w| w.generatePoolNumber == @pool}.to_a
|
||||
@poolMatches = RoundRobinTournament.schedule(@wrestlers).reverse
|
||||
@poolMatches.each_with_index do |b,index|
|
||||
@poolMatches.each_with_index do |b, index|
|
||||
round = index + 1
|
||||
@bout = b.map
|
||||
@bout.each do |bout|
|
||||
if bout[0] != nil and bout[1] != nil
|
||||
@match = Match.new
|
||||
@match.w1 = bout[0].id
|
||||
@match.w2 = bout[1].id
|
||||
@match.weight_id = weight.id
|
||||
@match.round = index + 1
|
||||
@match = Match.new(w1: bout[0].id, w2: bout[1].id, weight_id: weight.id, round: round)
|
||||
matches << @match
|
||||
end
|
||||
end
|
||||
end
|
||||
return matches
|
||||
matches
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user