diff --git a/src/makeRobot.js b/src/makeRobot.js index 4bcef1e4..9a3898b5 100644 --- a/src/makeRobot.js +++ b/src/makeRobot.js @@ -38,7 +38,59 @@ * @return {Robot} */ function makeRobot(name, wheels, version) { - // write code here + const EVACUATE_X = 1400; + const EVACUATE_Y = 500; + + return { + name, + wheels, + version, + get info() { + return `name: ${this.name}, chip version: ${this.version}, ` + + `wheels: ${this.wheels}`; + }, + coords: { + x: 0, + y: 0, + }, + get location() { + return `${this.name}: x=${this.coords.x}, y=${this.coords.y}`; + }, + goForward(step = 1) { + if (step > 0) { + this.coords.y += step; + } + + return this; + }, + goBack(step = 1) { + if (step > 0) { + this.coords.y -= step; + } + + return this; + }, + goRight(step = 1) { + if (step > 0) { + this.coords.x += step; + } + + return this; + }, + goLeft(step = 1) { + if (step > 0) { + this.coords.x -= step; + } + + return this; + }, + + evacuate() { + this.coords.x = EVACUATE_X; + this.coords.y = EVACUATE_Y; + }, + + }; } module.exports = makeRobot;