Spaces:
Running
Running
File size: 6,416 Bytes
87b3b3a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 |
function Player(x, y, __map, __game) {
/* private variables */
var __x = x;
var __y = y;
var __color = "#0f0";
var __lastMoveDirection = '';
var __display = __map._display;
/* unexposed variables */
this._canMove = false;
/* wrapper */
function wrapExposedMethod(f, player) {
return function () {
var args = arguments;
return __game._callUnexposedMethod(function () {
return f.apply(player, args);
});
};
};
/* exposed getters/setters */
this.getX = function () { return __x; };
this.getY = function () { return __y; };
this.getColor = function () { return __color; };
this.getLastMoveDirection = function() { return __lastMoveDirection; };
this.setColor = wrapExposedMethod(function (c) {
__color = c;
__display.drawAll(__map);
});
/* unexposed methods */
// (used for teleporters)
this._moveTo = function (dynamicObject) {
if (__game._isPlayerCodeRunning()) { throw 'Forbidden method call: player._moveTo()';}
// no safety checks or anything
// this method is about as safe as a war zone
__x = dynamicObject.getX();
__y = dynamicObject.getY();
__display.drawAll(__map);
// play teleporter sound
__game.sound.playSound('blip');
};
this._afterMove = function (x, y) {
if (__game._isPlayerCodeRunning()) { throw 'Forbidden method call: player._afterMove()';}
var player = this;
this._hasTeleported = false; // necessary to prevent bugs with teleportation
__map._hideChapter();
__map._moveAllDynamicObjects();
var onTransport = false;
// check for collision with transport object
for (var i = 0; i < __map.getDynamicObjects().length; i++) {
var object = __map.getDynamicObjects()[i];
if (object.getX() === x && object.getY() === y) {
var objectDef = __map._getObjectDefinition(object.getType());
if (objectDef.transport) {
onTransport = true;
}
}
}
// check for collision with static object UNLESS
// we are on a transport
if (!onTransport) {
var objectName = __map._getGrid()[x][y].type;
var objectDef = __map._getObjectDefinition(objectName);
if (objectDef.type === 'item') {
this._pickUpItem(objectName, objectDef);
} else if (objectDef.onCollision) {
__game.validateCallback(function () {
objectDef.onCollision(player);
});
}
}
// check for collision with any lines on the map
__map.testLineCollisions(this);
// don't run checkObjective if validation has already failed to prevent duplicate `Validation failed` errors
if (!__map._callbackValidationFailed) {
// check for nonstandard victory condition (e.g. DOM level)
__game._checkObjective()
}
};
this._pickUpItem = function (itemName, object) {
if (__game._isPlayerCodeRunning()) { throw 'Forbidden method call: player._pickUpItem()';}
var player = this;
__game.addToInventory(itemName);
__map._removeItemFromMap(__x, __y, itemName);
__map.refresh();
__game.sound.playSound('pickup');
if (object.onPickUp) {
__game.validateCallback(function () {
object.onPickUp(player);
});
}
};
/* exposed methods */
this.atLocation = wrapExposedMethod(function (x, y) {
return (__x === x && __y === y);
}, this);
this.move = wrapExposedMethod(function (direction, fromKeyboard) {
if (!this._canMove) { // mainly for key delay
return false;
}
if (fromKeyboard) {
// clear any status text
__map._status = "";
if (__map._overrideKeys[direction]) {
try {
__game.validateCallback(__map._overrideKeys[direction], true);
__map.refresh();
this._canMove = false;
__map._reenableMovementForPlayer(this); // (key delay can vary by map)
this._afterMove(__x, __y);
} catch (e) {
}
return;
}
}
var new__x;
var new__y;
if (direction === 'up') {
new__x = __x;
new__y = __y - 1;
}
else if (direction === 'down') {
new__x = __x;
new__y = __y + 1;
}
else if (direction === 'left') {
new__x = __x - 1;
new__y = __y;
}
else if (direction === 'right') {
new__x = __x + 1;
new__y = __y;
}
else if (direction === 'rest') {
new__x = __x;
new__y = __y;
}
else if (direction === 'funcPhone') {
__game.usePhone();
return;
}
if (__map._canMoveTo(new__x, new__y)) {
__x = new__x;
__y = new__y;
__map.refresh();
this._canMove = false;
__lastMoveDirection = direction;
this._afterMove(__x, __y);
__map._reenableMovementForPlayer(this); // (key delay can vary by map)
} else {
// play bump sound
__game.sound.playSound('select');
}
}, this);
this.killedBy = wrapExposedMethod(function (killer) {
__game.sound.playSound('hurt');
__game._restartLevel();
__map.displayChapter('You have been killed by \n' + killer + '!', 'death');
}, this);
this.hasItem = wrapExposedMethod(function (itemName) {
return __game.checkInventory(itemName);
}, this);
this.removeItem = wrapExposedMethod(function (itemName) {
var object = __game.objects[itemName];
__game.removeFromInventory(itemName);
__game.sound.playSound('blip');
}, this);
this.setPhoneCallback = wrapExposedMethod(function(func) {
this._phoneFunc = func;
}, this);
// call secureObject to prevent user code from tampering with private attributes
__game.secureObject(this,"player");
}
|