diff options
author | nfoy <nfoy@purdue.edu> | 2014-04-26 23:45:25 -0400 |
---|---|---|
committer | nfoy <nfoy@purdue.edu> | 2014-04-26 23:45:25 -0400 |
commit | 6f19b51f0adf95b1d9bd8317388ecdbcb3756be7 (patch) | |
tree | c4be583ba9db126ef58db7a1900468ec0929df25 /lib/scheduling/elimination.rb | |
parent | 9d8d6b023ce3390f3ccf9808e630505a15ebebe6 (diff) | |
parent | 9dd899559e4533c61089c3f9429574d2de20925e (diff) |
Merge branch 'master' of https://github.com/LukeShu/leaguer
Diffstat (limited to 'lib/scheduling/elimination.rb')
-rw-r--r-- | lib/scheduling/elimination.rb | 25 |
1 files changed, 12 insertions, 13 deletions
diff --git a/lib/scheduling/elimination.rb b/lib/scheduling/elimination.rb index 074cb5c..4518cff 100644 --- a/lib/scheduling/elimination.rb +++ b/lib/scheduling/elimination.rb @@ -33,8 +33,7 @@ module Scheduling end end - def match_finished(match) - #what in the goddamn fuck does this mean + def finish_match(match) matches = match.tournament_stage.matches_ordered cur_match_num = matches.invert[match] unless cur_match_num == 1 @@ -55,17 +54,17 @@ module Scheduling height = [(matchHeight+50) * logBase**(depth-1) + 100, 500].max; str = <<-STRING -<svg version="1.1" baseProfile="full" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - width="100%" height="#{height}"> - <defs> - <radialGradient id="gradMatch" cx="50%" cy="50%" r="80%" fx="50%" fy="50%"> - <stop offset="0%" style="stop-color:#fff; stop-opacity:1" /> - <stop offset="100%" style="stop-color:#ccc;stop-opacity:0" /> - </radialGradient> - </defs> -STRING + <svg version="1.1" baseProfile="full" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + width="100%" height="#{height}"> + <defs> + <radialGradient id="gradMatch" cx="50%" cy="50%" r="80%" fx="50%" fy="50%"> + <stop offset="0%" style="stop-color:#fff; stop-opacity:1" /> + <stop offset="100%" style="stop-color:#ccc;stop-opacity:0" /> + </radialGradient> + </defs> + STRING base = 1 pBase = 1 (1..matches.count).each do |i| |