summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--db/seeds.rb19
-rw-r--r--lib/scheduling/elimination.rb17
-rw-r--r--lib/scheduling/roundrobin.rb24
-rw-r--r--lib/scoring/ScoringAlgorithm.rb6
4 files changed, 58 insertions, 8 deletions
diff --git a/db/seeds.rb b/db/seeds.rb
index 78c8ea0..7628efe 100644
--- a/db/seeds.rb
+++ b/db/seeds.rb
@@ -138,6 +138,25 @@ if Rails.env.development?
tourn6.join(guntas)
tourn6.join(luke)
tourn6.join(marco)
+=begin
+ hash1 = {:username => "TeslasMind", :id => id}
+ hash2 = {:username => "Alpha142", :id => id}
+ hash3 = {:username => "ImFromNasa", :id => id}
+ hash4 = {:username => "NalfeinX", :id => id}
+ hash5 = {:username => "GTBPhoenix", :id => id}
+ hash6 = {:username => , :id => id}
+ hash7 = {:username => username, :id => id}
+ hash8 = {:username => username, :id => id}
+ hash9 = {:username => username, :id => id}
+ hash10 = {:username => username, :id => id}
+
+FOR ROUNG ROBIN
+
+http://stackoverflow.com/questions/6648512/scheduling-algorithm-for-a-round-robin-tournament
+
+
+=end
+
end
diff --git a/lib/scheduling/elimination.rb b/lib/scheduling/elimination.rb
index 0e93f7a..543df52 100644
--- a/lib/scheduling/elimination.rb
+++ b/lib/scheduling/elimination.rb
@@ -7,14 +7,6 @@ module Scheduling
@tournament_stage = tournament_stage
end
- def tournament_stage
- @tournament_stage
- end
-
- def tournament
- self.tournament_stage.tournament
- end
-
def create_matches
num_teams = (self.tournament.players.count/self.tournament.min_players_per_team).floor
num_matches = (Float(num_teams - tournament.min_teams_per_match)/(tournament.min_teams_per_match - 1)).ceil + 1
@@ -138,5 +130,14 @@ STRING
return str
end
+ private
+
+ def tournament_stage
+ @tournament_stage
+ end
+
+ def tournament
+ self.tournament_stage.tournament
+ end
end
end
diff --git a/lib/scheduling/roundrobin.rb b/lib/scheduling/roundrobin.rb
new file mode 100644
index 0000000..e050c41
--- /dev/null
+++ b/lib/scheduling/roundrobin.rb
@@ -0,0 +1,24 @@
+
+module Scheduling
+ class RoundRobin
+ include Rails.application.routes.url_helpers
+
+ def initialize(tournament_stage)
+ @tournament_stage = tournament_stage
+ end
+
+ def create_matches
+ num_teams = (self.tournament.players.count/self.tournament.min_players_per_team).floor
+ num_matches = Float(num_teams/2)*(num_teams-1)
+
+ end
+
+ def match_finished(match)
+
+ end
+
+ def graph(current_user)
+
+ end
+ end
+end
diff --git a/lib/scoring/ScoringAlgorithm.rb b/lib/scoring/ScoringAlgorithm.rb
new file mode 100644
index 0000000..f2afa6f
--- /dev/null
+++ b/lib/scoring/ScoringAlgorithm.rb
@@ -0,0 +1,6 @@
+module Scoring
+ class ScoringAlgorithm
+ def self.score(match, interface)
+ end
+ end
+end