From 41e2a181bac54c965ef2bf7181289c21a83883f6 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Tue, 22 Apr 2014 17:05:06 -0400 Subject: I HATE CODE --- lib/scheduling/elimination.rb | 80 +++++++++++++++++++++++++++++++++++--- lib/scheduling/elimination.svg.erb | 72 ---------------------------------- 2 files changed, 74 insertions(+), 78 deletions(-) delete mode 100644 lib/scheduling/elimination.svg.erb (limited to 'lib/scheduling') diff --git a/lib/scheduling/elimination.rb b/lib/scheduling/elimination.rb index 519d08a..e718d54 100644 --- a/lib/scheduling/elimination.rb +++ b/lib/scheduling/elimination.rb @@ -43,13 +43,81 @@ module Scheduling end def graph - require 'erb' - erb_filename = File.join(File.dirname(__FILE__), 'elimination.svg.erb') + matches = @tournament_stage.matches_ordered + # depth of SVG tree + depth = Math.log2(matches.count).floor+1; + # height of SVG + height = [200 * 2**Math.log2(matches.count).floor + 100, 500].max; + lastrx = 0 + lastry = 0 + lastrh = 0 + lastrw = 0 - erb = ERB.new(File.read(erb_filename)) - erb.filename = erb_filename - return erb.result - end + str = <<-STRING + + + + + + + +STRING + (1..matches.count).each do |i| + rh = 100/(2**(depth-1)+1) - 5 + rw = 100/(depth+1) - 5 + rx = 50/(depth+1) + 100/(depth+1)*(depth-(Math.log2(i).floor+1)) + ry = ( 100/(2**(Math.log2(i).floor)+1) + rh * 1.1 * (2**Math.log2(i).ceil-i)) + + str += "\t\n" + str += "\t\t\n" + if matches[i].teams.first + str += '\t\tTeam #{matches[i].teams.first.id}\n' + end + + str += "\t\t VS \n" + + color = matches[i].teams[1] and matches[i].teams[1].users.include?(current_user) ? "#BCED91" : "white" + str += "\t\t\n" + if matches[i].teams[1] + str += "\t\tTeam #{matches[i].teams[1].id}\n" + end + + if i > 1 + str += "\t\t\n" + end + if Math.log2(i+1) == Math.log2(i+1).ceil + lastrx = rx + lastry = ry + lastrh = rh + lastrw = rw + end + str += "\n" + end + str += '' + + return str + end end end diff --git a/lib/scheduling/elimination.svg.erb b/lib/scheduling/elimination.svg.erb deleted file mode 100644 index 91b8f6a..0000000 --- a/lib/scheduling/elimination.svg.erb +++ /dev/null @@ -1,72 +0,0 @@ -<% - -matches = @tournament_stage.matches_ordered -# depth of SVG tree -depth = Math.log2(matches.count).floor+1; -# height of SVG -height = 200 * 2**Math.log2(matches.count).floor + 100; -lastrx = 0 -lastry = 0 -lastrh = 0 -lastrw = 0 - -%> - <% %> - - - - - - - <% (1..matches.count).each do |i| %> - - - <% when 0 %> - <% if matches[i-1].teams.count < @tournament_stage.tournament.min_teams_per_match %> - stroke="red" - fill-opacity="0.6" - <% else %> - stroke="green" - <% end %> - <% when 1 %> - stroke="orange" - <% when 2 %> - stroke="yellow" - <% when 3 %> - stroke="grey" - <% end %> /> - " /> - - <% if matches[i-1].teams.first %> - Team <%= matches[i-1].teams.first.id %> - <% end %> - - VS - " /> - - <% if matches[i-1].teams[1] %> - Team <%= matches[i-1].teams[1].id %> - <% end %> - - <% if i > 1 %> - - <% end %> - <% if Math.log2(i+1) == Math.log2(i+1).ceil %> - <% lastrx = rx - lastry = ry - lastrh = rh - lastrw = rw %> - <% end %> - - <% end %> - -- cgit v1.2.3-54-g00ecf