GithubHelp home page GithubHelp logo

ts-connascent-mars-rover's Introduction

This exercise is a TypeScript port of https://github.com/AgileTechPraxis/connascent-mars-rover. All credits to the authors. Follow them for more examples https://github.com/AgileTechPraxis


Connascent Mars Rover

Problem

The squad of rovers has been proved hard to manage, so in this version there will be only one rover deployed to Mars. The plateau, which is curiously rectangular, must be navigated by the rovers so that their on-board cameras can get a complete view of the surrounding terrain to send back to Earth.

The rover’s position and location is represented by a combination of x and y co-ordinates and a letter representing one of the four cardinal compass points. The plateau is divided up into a grid to simplify navigation. An example position might be 0, 0, N, which means the rover is in the bottom left corner and facing North.

In order to control a rover, NASA has found some problems in the past way to communicate. The issue is that some messages get lost, so they came out with a way of communicate able to do some self-check in order to validate the correctness of the messages.

Communication it is now broken into packages and every package is sent indepndently from others.

The possible letters are ‘L’, ‘R’ and ‘F’. ‘L’ and ‘R’ makes the rover spin 90 degrees left or right respectively, without moving from its current spot. ‘F’ means move forward one grid point, and maintain the same heading.

Assume that the square directly North from (x, y) is (x, y+1).

The plateau is always 100 by 100 where (0,0) is the bottom left corner.

INPUT:

The input comes in form of packages and it is always formed by 2 streams of data: the initial position and the list of moves.

The position is a sequence of 4 packages containing the following strings: X2 Y75 DN which would mean that the rover will start from the coordinates (2,75) facing North.

The sequence of commands will be an indefined number of packages of this form: M5 1F 2L 3F 4R 5F where the M message contains a check for the total number of commands expected and the following messages are the commands, with a number indicating their order.

OUTPUT:

When the rover has completed the execution of the commands, it will send back to Earth the current position and direction, in form of packages broken down in the same way as per the receiving input.

If the rover is not able to verify the completenss of the message in 3 seconds after the last package arrives, it has to send back to Earth an error message in form of a single package containing ER.

EXAMPLE:

GOAL OF THE EXERCISE

We have implemented a version of this exercise with a few connascent elements in it. There are at least 5 types of Connascence of the bad kind, either static and dynamic.

Can you find them all? Could you improve them?

ts-connascent-mars-rover's People

Contributors

jchacana-codurance avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.