mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-04-06 06:28:33 +00:00
135 lines
6.0 KiB
Ruby
135 lines
6.0 KiB
Ruby
class DoubleEliminationGenerateLoserNames
|
|
def initialize(tournament)
|
|
@tournament = tournament
|
|
end
|
|
|
|
def assign_loser_names
|
|
@tournament.weights.each do |weight|
|
|
assign_loser_names_for_weight(weight)
|
|
advance_bye_matches_championship(weight.matches.reload)
|
|
end
|
|
end
|
|
|
|
def define_losername_championship_mappings(bracket_size)
|
|
# Use hashes instead of arrays for mappings
|
|
case bracket_size
|
|
when 4
|
|
[
|
|
# have to use total rounds here because if other weights have bigger brackets, then the finals round 3/4 won't be round 2
|
|
{ conso_round: @tournament.total_rounds, conso_bracket_position: "3/4", championship_round: 1, championship_bracket_position: "Semis", cross_bracket: false, both_wrestlers: true }
|
|
]
|
|
when 8
|
|
[
|
|
{ conso_round: 2, conso_bracket_position: "Conso Quarter", championship_round: 1, championship_bracket_position: "Quarter", cross_bracket: false, both_wrestlers: true },
|
|
{ conso_round: 3, conso_bracket_position: "Conso Semis", championship_round: 2, championship_bracket_position: "Semis", cross_bracket: true, both_wrestlers: false }
|
|
]
|
|
when 16
|
|
[
|
|
{ conso_round: 2, conso_bracket_position: "Conso", championship_round: 1, championship_bracket_position: "Bracket", cross_bracket: false, both_wrestlers: true },
|
|
{ conso_round: 3, conso_bracket_position: "Conso", championship_round: 2, championship_bracket_position: "Quarter", cross_bracket: true, both_wrestlers: false },
|
|
{ conso_round: 5, conso_bracket_position: "Conso Semis", championship_round: 4, championship_bracket_position: "Semis", cross_bracket: false, both_wrestlers: false }
|
|
]
|
|
when 32
|
|
[
|
|
{ conso_round: 2, conso_bracket_position: "Conso", championship_round: 1, championship_bracket_position: "Bracket", cross_bracket: false, both_wrestlers: true },
|
|
{ conso_round: 3, conso_bracket_position: "Conso", championship_round: 2, championship_bracket_position: "Bracket", cross_bracket: true, both_wrestlers: false },
|
|
{ conso_round: 5, conso_bracket_position: "Conso", championship_round: 4, championship_bracket_position: "Quarter", cross_bracket: false, both_wrestlers: false },
|
|
{ conso_round: 7, conso_bracket_position: "Conso Semis", championship_round: 6, championship_bracket_position: "Semis", cross_bracket: true, both_wrestlers: false },
|
|
|
|
]
|
|
else
|
|
nil
|
|
end
|
|
end
|
|
|
|
def assign_loser_names_for_weight(weight)
|
|
number_of_placers = @tournament.number_of_placers
|
|
bracket_size = weight.calculate_bracket_size
|
|
matches_by_weight = weight.matches.reload
|
|
|
|
loser_name_championship_mappings = define_losername_championship_mappings(bracket_size)
|
|
|
|
loser_name_championship_mappings.each do |mapping|
|
|
conso_round = mapping[:conso_round]
|
|
conso_bracket_position = mapping[:conso_bracket_position]
|
|
championship_round = mapping[:championship_round]
|
|
championship_bracket_position = mapping[:championship_bracket_position]
|
|
cross_bracket = mapping[:cross_bracket]
|
|
both_wrestlers = mapping[:both_wrestlers]
|
|
|
|
conso_matches = matches_by_weight.select do |match|
|
|
match.round == conso_round && match.bracket_position == conso_bracket_position
|
|
end.sort_by(&:bracket_position_number)
|
|
|
|
championship_matches = matches_by_weight.select do |match|
|
|
match.round == championship_round && match.bracket_position == championship_bracket_position
|
|
end.sort_by(&:bracket_position_number)
|
|
|
|
conso_matches.reverse! if cross_bracket
|
|
|
|
championship_bracket_position_number = 1
|
|
conso_matches.each do |match|
|
|
bout_number1 = championship_matches.find do |bout_match|
|
|
bout_match.bracket_position_number == championship_bracket_position_number
|
|
end.bout_number
|
|
|
|
match.loser1_name = "Loser of #{bout_number1}"
|
|
if both_wrestlers
|
|
championship_bracket_position_number += 1
|
|
bout_number2 = championship_matches.find do |bout_match|
|
|
bout_match.bracket_position_number == championship_bracket_position_number
|
|
end.bout_number
|
|
match.loser2_name = "Loser of #{bout_number2}"
|
|
end
|
|
championship_bracket_position_number += 1
|
|
end
|
|
end
|
|
|
|
conso_semi_matches = matches_by_weight.select { |match| match.bracket_position == "Conso Semis" }
|
|
conso_quarter_matches = matches_by_weight.select { |match| match.bracket_position == "Conso Quarter" }
|
|
|
|
if number_of_placers >= 6 && weight.wrestlers.size >= 5
|
|
five_six_match = matches_by_weight.find { |match| match.bracket_position == "5/6" }
|
|
bout_number1 = conso_semi_matches.find { |match| match.bracket_position_number == 1 }.bout_number
|
|
bout_number2 = conso_semi_matches.find { |match| match.bracket_position_number == 2 }.bout_number
|
|
five_six_match.loser1_name = "Loser of #{bout_number1}"
|
|
five_six_match.loser2_name = "Loser of #{bout_number2}"
|
|
end
|
|
|
|
if number_of_placers >= 8 && weight.wrestlers.size >= 7
|
|
seven_eight_match = matches_by_weight.find { |match| match.bracket_position == "7/8" }
|
|
bout_number1 = conso_quarter_matches.find { |match| match.bracket_position_number == 1 }.bout_number
|
|
bout_number2 = conso_quarter_matches.find { |match| match.bracket_position_number == 2 }.bout_number
|
|
seven_eight_match.loser1_name = "Loser of #{bout_number1}"
|
|
seven_eight_match.loser2_name = "Loser of #{bout_number2}"
|
|
end
|
|
|
|
save_matches(matches_by_weight)
|
|
end
|
|
|
|
def save_matches(matches)
|
|
matches.each(&:save!)
|
|
end
|
|
|
|
def advance_bye_matches_championship(matches)
|
|
matches.select do |m|
|
|
m.round == 1 && %w[Bracket Quarter].include?(m.bracket_position)
|
|
end.sort_by(&:bracket_position_number).each do |match|
|
|
next unless match.w1.nil? || match.w2.nil?
|
|
|
|
match.finished = 1
|
|
match.win_type = "BYE"
|
|
if match.w1
|
|
match.winner_id = match.w1
|
|
match.loser2_name = "BYE"
|
|
elsif match.w2
|
|
match.winner_id = match.w2
|
|
match.loser1_name = "BYE"
|
|
end
|
|
match.score = ""
|
|
match.save
|
|
match.advance_wrestlers
|
|
end
|
|
end
|
|
end
|