fixed input controllerism - fixes #28

This commit is contained in:
Logsol 2013-07-30 18:13:39 +02:00
parent a59a258ad6
commit f5eacb6335
13 changed files with 163 additions and 223 deletions

View file

@ -1,31 +0,0 @@
define([
"Game/Core/Control/InputController",
"Game/Core/NotificationCenter",
"Game/Core/Protocol/Parser"
],
function(Parent, NotificationCenter, Parser) {
function InputController(player) {
Parent.call(this, player);
}
InputController.prototype = Object.create(Parent.prototype);
InputController.prototype.applyCommand = function(options) {
var message;
if (typeof options == "string") {
message = Parser.decode(options);
} else {
message = options;
}
for (var command in message) {
this[command].call(this, message[command]);
}
};
return InputController;
});