summaryrefslogtreecommitdiff
path: root/lib/sampling/manual.rb
diff options
context:
space:
mode:
authorguntasgrewal <guntasgrewal@gmail.com>2014-04-26 23:42:56 -0400
committerguntasgrewal <guntasgrewal@gmail.com>2014-04-26 23:42:56 -0400
commit9dd899559e4533c61089c3f9429574d2de20925e (patch)
tree4b9fda45ad70a1b8898cfa4c695dc69e51abfec8 /lib/sampling/manual.rb
parent506486a6a38fc73b49dd35077cfaafbdf891c664 (diff)
parentf320bb3bad4f2c3445714f0b45c3a61857203d3f (diff)
Merge branch 'master' of https://github.com/LukeShu/leaguer
Diffstat (limited to 'lib/sampling/manual.rb')
-rw-r--r--lib/sampling/manual.rb35
1 files changed, 35 insertions, 0 deletions
diff --git a/lib/sampling/manual.rb b/lib/sampling/manual.rb
new file mode 100644
index 0000000..17c8104
--- /dev/null
+++ b/lib/sampling/manual.rb
@@ -0,0 +1,35 @@
+module Sampling
+ module HostEntry
+ 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)
+
+ end
+
+ def self.handle_user_interaction(match, user, sampling_params)
+ match.statistics.create(user: nil, name: "blowout",
+ end
+ end
+end