From 987b3e0d151d58c6b44e16e3ec4d13ce7f303fe7 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Sun, 27 Apr 2014 03:04:09 -0400 Subject: get the tournament creation page complete --- lib/sampling/double_blind.rb | 30 +++++++++++++++++++++++++++++- lib/sampling/manual.rb | 7 ++++--- 2 files changed, 33 insertions(+), 4 deletions(-) (limited to 'lib/sampling') diff --git a/lib/sampling/double_blind.rb b/lib/sampling/double_blind.rb index 4a5201c..409da10 100644 --- a/lib/sampling/double_blind.rb +++ b/lib/sampling/double_blind.rb @@ -1,7 +1,35 @@ module Sampling module DoubleBlind - def works_with?(game) + def self.works_with?(game) return true end + + def self.uses_remote? + return false + end + + def self.set_remote_name(user, game, value) + raise "This sampling method doesn't use remote usernames." + end + + def self.get_remote_name(value) + raise "This sampling method doesn't use remote usernames." + end + + def self.sampling_start(match) + # TODO + end + + def self.sampling_done?(match) + # TODO + end + + def self.render_user_interaction(match, user) + # TODO + end + + def self.handle_user_interaction(match, user, sampling_params) + # TODO + end end end diff --git a/lib/sampling/manual.rb b/lib/sampling/manual.rb index 17c8104..a1bf9a5 100644 --- a/lib/sampling/manual.rb +++ b/lib/sampling/manual.rb @@ -1,5 +1,5 @@ module Sampling - module HostEntry + module Manual def self.works_with?(game) return true end @@ -25,11 +25,12 @@ module Sampling end def self.render_user_interaction(match, user) - + # TODO end def self.handle_user_interaction(match, user, sampling_params) - match.statistics.create(user: nil, name: "blowout", + # TODO + #match.statistics.create(user: nil, name: "blowout", end end end -- cgit v1.2.3-2-g168b