From 42d6e3b1cc05ef5172081682b53675e4827254d3 Mon Sep 17 00:00:00 2001 From: tkimia Date: Tue, 29 Apr 2014 16:41:35 -0400 Subject: elimination works SOMETIMES... other times it just can't put down a damned winner --- lib/sampling/manual.html.erb | 30 ++++++++++++++++++++++++------ lib/sampling/manual.rb | 28 ++++++++++++++++++++++------ lib/scheduling/elimination.rb | 30 ++++++++++++++++++++++-------- lib/scoring/winner_takes_all.rb | 10 ++-------- 4 files changed, 70 insertions(+), 28 deletions(-) (limited to 'lib') diff --git a/lib/sampling/manual.html.erb b/lib/sampling/manual.html.erb index 187f002..2bbd6da 100644 --- a/lib/sampling/manual.html.erb +++ b/lib/sampling/manual.html.erb @@ -1,12 +1,30 @@ <% if @tournament.hosts.include? @current_user %> - +
Winner + +
<% @match.teams.each do |team| %> - +
Statistics for Team <%= team.id %> + <% team.users.each do |user| %> +
<%= user.name %> + <% @stats.reject{|s|s=="win"}.each do |stat| %> +

+ +

+ <% end %> +
+ <% end %> +
<% end %> -
<% else %>

The match is running; the host has yet to post the scores of the match.

diff --git a/lib/sampling/manual.rb b/lib/sampling/manual.rb index 01f6835..a9f9de4 100644 --- a/lib/sampling/manual.rb +++ b/lib/sampling/manual.rb @@ -33,7 +33,6 @@ module Sampling def render_user_interaction(user) @tournament = @match.tournament_stage.tournament @current_user = user - @users = @match.users @stats = @match.stats_from(self.class) require 'erb' @@ -43,11 +42,28 @@ module Sampling return erb.result(binding).html_safe end - def handle_user_interaction(user, sampling_params) + def handle_user_interaction(user, params) # => Save sampling_params as statistics - sampling_params.select {|name, value| @match.stats_from(self.class).include? name }.each do |name, value| - Statistic.create(name: value, user: user, match: @match) - end - end + require 'pp' + puts('>'*80) + pp @match + puts('>'*80) + if (@match.tournament_stage.tournament.hosts.include? user) + manual_params = params.require(:manual) + winner = Team.find(manual_params[:winner]) + @match.users.each do |user| + puts('>'*80) + pp "MAKING statistics BIIIIIIIITCH" + puts('>'*80) + Statistic.create(match: @match, user: user, + name: "win", value: winner.users.include?(user)) + @match.stats_from(self.class).reject{|s|s=="win"}.each do |stat| + Statistic.create(match: @match, user: user, + name: stat, value: manual_params[:statistics][user.id][stat].to_i) + end # stats + end # users + end # permission + end # def + end end diff --git a/lib/scheduling/elimination.rb b/lib/scheduling/elimination.rb index 44ce81e..a95101c 100644 --- a/lib/scheduling/elimination.rb +++ b/lib/scheduling/elimination.rb @@ -7,6 +7,7 @@ module Scheduling @tournament_stage = tournament_stage end + def create_matches num_teams = (tournament.players.count/tournament.min_players_per_team).floor num_matches = (Float(num_teams - tournament.min_teams_per_match)/(tournament.min_teams_per_match - 1)).ceil + 1 @@ -15,29 +16,42 @@ module Scheduling end match_num = num_matches-1 - team_num = 0 + team_num = 1 tournament.players.shuffle # for each grouping of min_players_per_team tournament.players.each_slice(tournament.min_players_per_team) do |team_members| + # create a new team in the current match + tournament_stage.matches.order(:id)[match_num].teams.push(Team.create(users: team_members)) + # if the match is full, move to the next match, otherwise move to the next team if (team_num == tournament.min_teams_per_match) + tournament_stage.matches[match_num].update(status: 1); match_num -= 1 team_num = 1 else team_num += 1 end - # create a new team in the current match - tournament_stage.matches[match_num].teams.push(Team.create(users: team_members)) end end def finish_match(match) + require 'pp' + puts('>'*80) + pp match + puts('>'*80) + logBase = match.tournament_stage.tournament.min_teams_per_match matches = match.tournament_stage.matches_ordered cur_match_num = matches.invert[match] unless cur_match_num == 1 - match.winner.matches.push(matches[cur_match_num/2]) + match.winner.matches.push(matches[(cur_match_num+logBase-2)/logBase]) + end + if matches[(cur_match_num+logBase-2)/logBase].teams.count == match.tournament_stage.tournament.min_teams_per_match + puts(80*'><') + puts "making the status 1" + puts(80*'><') + matches[(cur_match_num+logBase-2)/logBase].status = 1 end end @@ -89,16 +103,16 @@ module Scheduling str += "\t\t