1
0
mirror of https://github.com/jcwimer/wrestlingApp synced 2026-03-25 01:14:43 +00:00

Extracted a method

This commit is contained in:
R.J. Osborne
2015-05-18 18:38:39 -04:00
parent 7e913870ba
commit ecb4c3d7de

View File

@@ -10,12 +10,7 @@ class Tournamentmatchgen
tournament.destroyAllMatches
@matches = []
tournament.weights.sort_by{|x|[x.max]}.each do |w|
@wrestlers = w.wrestlers
@matches = Pool.new.generatePools(w.pools,@wrestlers,w,tournament.id,@matches)
@weight_matches = @matches.select{|m|m.weight_id == w.id}
@last_match = @weight_matches.sort_by{|m| m.round}.last
@highest_round = @last_match.round
@matches = Poolbracket.new.generateBracketMatches(@matches,w,@highest_round)
buildTournamentWeights(tournament.id, w)
end
@matches = Boutgen.new.assignBouts(@matches,tournament.weights)
@matches = Losernamegen.new.assignLoserNames(@matches,tournament.weights)
@@ -23,6 +18,15 @@ class Tournamentmatchgen
return @matches
end
def buildTournamentWeights(tournament_id, weight)
@wrestlers = weight.wrestlers
@matches = Pool.new.generatePools(weight.pools,@wrestlers, weight, tournament_id, @matches)
@weight_matches = @matches.select{|m| m.weight_id == weight.id }
@last_match = @weight_matches.sort_by{|m| m.round}.last
@highest_round = @last_match.round
@matches = Poolbracket.new.generateBracketMatches(@matches, weight, @highest_round)
end
def saveMatches(tournament,matches)
matches.each do |m|
m.tournament_id = tournament.id
@@ -30,4 +34,3 @@ class Tournamentmatchgen
end
end
end