Sha256: 2b51c9bb765e9b6224111523ffad5a934b1416ac09142b38beb7ba8b646ce6b4

Contents?: true

Size: 1.65 KB

Versions: 160

Compression:

Stored size: 1.65 KB

Contents

class Robot {
  constructor() {
    this.coordinates = [0, 0];
    this.bearing = 'north';
  }

  at(xcoord, ycoord) {
    this.coordinates = [xcoord, ycoord];
  }

  orient(direction) {
    this.bearing = direction;
    return `The robot is pointed ${direction}`;
  }

  advance() {
    if (this.bearing === 'north') {
      this.coordinates[1] += 1;
    } else if (this.bearing === 'south') {
      this.coordinates[1] -= 1;
    } else if (this.bearing === 'east') {
      this.coordinates[0] += 1;
    } else if (this.bearing === 'west') {
      this.coordinates[0] -= 1;
    }
  }

  turnLeft() {
    if (this.bearing === 'north') {
      this.orient('west');
    } else if (this.bearing === 'south') {
      this.orient('east');
    } else if (this.bearing === 'east') {
      this.orient('north');
    } else if (this.bearing === 'west') {
      this.orient('south');
    }
  }

  turnRight() {
    if (this.bearing === 'north') {
      this.orient('east');
    } else if (this.bearing === 'south') {
      this.orient('west');
    } else if (this.bearing === 'east') {
      this.orient('south');
    } else if (this.bearing === 'west') {
      this.orient('north');
    }
  }

  instructions(s) {
    return [...s].map((character) => {
      if (character === 'L') {
        return 'turnLeft';
      } else if (character === 'R') {
        return 'turnRight';
      } else if (character === 'A') {
        return 'advance';
      }
    });
  }

  place(args) {
    this.coordinates = [args.x, args.y];
    this.bearing = args.direction;
  }

  evaluate(s) {
    this.instructions(s).forEach((instruction) => {
      this[instruction]();
    });
  }

}


export default Robot;

Version data entries

160 entries across 160 versions & 1 rubygems

Version Path
trackler-2.2.1.114 tracks/ecmascript/exercises/robot-simulator/example.js
trackler-2.2.1.113 tracks/ecmascript/exercises/robot-simulator/example.js
trackler-2.2.1.111 tracks/ecmascript/exercises/robot-simulator/example.js
trackler-2.2.1.110 tracks/ecmascript/exercises/robot-simulator/example.js
trackler-2.2.1.109 tracks/ecmascript/exercises/robot-simulator/example.js
trackler-2.2.1.108 tracks/ecmascript/exercises/robot-simulator/example.js
trackler-2.2.1.107 tracks/ecmascript/exercises/robot-simulator/example.js
trackler-2.2.1.106 tracks/ecmascript/exercises/robot-simulator/example.js
trackler-2.2.1.105 tracks/ecmascript/exercises/robot-simulator/example.js
trackler-2.2.1.104 tracks/ecmascript/exercises/robot-simulator/example.js
trackler-2.2.1.103 tracks/ecmascript/exercises/robot-simulator/example.js
trackler-2.2.1.102 tracks/ecmascript/exercises/robot-simulator/example.js
trackler-2.2.1.101 tracks/ecmascript/exercises/robot-simulator/example.js
trackler-2.2.1.100 tracks/ecmascript/exercises/robot-simulator/example.js
trackler-2.2.1.99 tracks/ecmascript/exercises/robot-simulator/example.js
trackler-2.2.1.98 tracks/ecmascript/exercises/robot-simulator/example.js
trackler-2.2.1.97 tracks/ecmascript/exercises/robot-simulator/example.js
trackler-2.2.1.96 tracks/ecmascript/exercises/robot-simulator/example.js
trackler-2.2.1.95 tracks/ecmascript/exercises/robot-simulator/example.js
trackler-2.2.1.94 tracks/ecmascript/exercises/robot-simulator/example.js