Giter Site home page Giter Site logo

sp22_cs240_infinite-maze-shared's Introduction

Infinite Maze API

0. Course-Wide Microservice

This microservice will be used as the middleware for the entire CS 240 course. You are encouraged (and be eligible for EC) by contributing pull requests to this repository to improve the middleware. Your MGs must work with this middleware.

Attribution

  • The basis of this work came from Peter's Week #1 submission.
  • CS 240 TA, Patrick, transformed the proof-of-concept frontend to a paper.js rendering.
  • The server page was contributed by "Team aaryab2-atanwar2"'s Week #1 submission.
  • You will be adding the next big thing to this maze! :)

1. Introduction

This API is designed to work properly with the proof-of-concept front-end implementation, while being flexible enough to accommodate for future changes. It allows an indefinite number of back-end maze generators (MGs) to be registered and subsequently selected to provide the front-end with maze segments.

The API itself is a Flask application that keeps track of available MGs. MGs can be registered and unregistered at any point with a PUT request. When called, the API will randomly select a registered MG server and send a request for maze data. The data in the response is then forwarded to the front-end.

MG servers may specify their RNG weight when registering. The API will use these weights when selecting a random MG.

To allow for extensibility, the front-end may pass additional URL parameters to the API. These parameters are forwarded directly to the selected MG. MGs may also pass information back to the front-end by including it in their JSON responses.

Setup and run

The API relies on MongoDB to keep track of MGs. Make sure you have a MongoDB instance running in a Docker container before proceeding.

The included API and MG servers require Python 3. To install required modules, run:

pip install -r requirements.txt

To start the API server:

flask run

or

python3 -m flask run

2. Communication with maze generators

Once a generator is selected, the API sends a GET request to <MG_url>/generate. The maze generator (MG) server must return a JSON, which is forwarded to the front-end.

For example, if the API selects a generator added with URL localhost:24000, the API will send a GET request to localhost:24000/generate. If the MG server responds with a 200-level response, the included JSON is sent in the response to the front-end.

The MG server's response must include the HTTP header:

Content-Type: application/json

The JSON sent by the MG server may have any form. With the current front-end implementation, it may look like:

{"geom": ["92c", "4a1", "386"]}

MG servers may include any additional keys and values in the JSON if needed for extra functionality.

The MG server must respond with an HTTP status code between 200 and 299 inclusive. If the response code is outside this range, an error will be sent to the front-end.

3. Communication with front-end

A GET request to <API_URL>/generateSegment will return a maze segment generated by a randomly selected maze generator (MG) server in JSON form. For example, to request a maze segment from an API running at localhost:5000:

curl -X GET localhost:5000/generateSegment

To specify a particular MG server, send a GET request to <API_URL>/generateSegment/<MG_name> where <MG_name> is the name given when the MG server was added (see Adding maze generator servers). For example, to request the MG server 'generator1':

curl -X GET localhost:5000/generateSegment/generator1

If the requested MG server has not been added, the API will return a 404 response.

Additional URL parameters may be included for additional functionality. See Passing parameters.

4. Adding MGs

The API maintains a list of available maze generator (MG) servers. Users may add and remove MG servers at any time, and may request a list of all available MG servers.

Adding maze generator servers

To add an MG server, send a PUT request to <API_URL>/addMG. This request must include a JSON with keys 'name', 'url', and 'author'. For example:

{ "name": "generator1",
  "url": "http://127.0.0.1:24000/",
  "author": "Your Name",
  "weight": 0.5 }

The 'name' value will be needed to remove the MG server from the API's list of available servers.

An optional 'weight' key may be included to increase or decrease the probability of being randomly selected. The value must be a number greater than 0. If omitted, the weight will default to 1.

If the 'name' provided is already in use, the stored URL will be overwritten.

The API will respond with status code 400 if the JSON is malformed.

5. Passing parameters

GET requests to <API_URL>/generateSegment or <API_URL>/generateSegment/<MG_name> may include URL parameters to request additional functionality from maze generator (MG) servers. The API includes these URL parameters in its subsequent request to the selected MG server.

For example, if the API is running at localhost:5000 and one wants to send URL parameters random=true&size=7 directly to the MG added with name generator1, send a GET request to:

http://localhost:5000/generator1?random=true&size=7

Since MG servers are allowed to respond with JSON of any form, they have complete flexibility over any additional information to send to the front-end. Additional key-value pairs may be added besides the 'geom' key required by the current front-end implementation.

For a proof-of-concept, see the static_given MG.

6. Appendix

HTTP status codes reference

Route Response code Situation
(all) 200 Request was fulfilled normally.
(all) 500 An internal error occurred.
/generateSegment 503 No maze generators are available. Add more with /addMG.
/generateSegment/<MG_name> 404 Provided MG name has not been added.
/addMG 400 Provided JSON is malformed and missing a required key, or provides an invalid weight.

Tips and tricks

  • Configure your MG server to add itself to the API on startup, as manually sending the required JSON can be tedious (see Adding maze generator servers). Note that if the MG server has already been added, sending a second identical request to /addMG will have no effect.

Implemented Advanced Features

1. Arbitrary communication

See Passing parameters.

Front-end clients and back-end MG servers can send additional data directly to each other. The front-end can include additional URL parameters, and the back-end can include additional data in the returned JSON.

This allows for flexibility and extensibility with future features. Here are some ideas:

  • The front-end can send data about the player's current position to adjust MG behavior.
  • The front-end can send data about available space to allow for maze segments of varying dimensions.
  • Back-end MGs can send additional data about maze segments and cells, such as cell colors and image backgrounds.
  • The front-end can send player-specific data through URL parameters to generate maze segments customized to individual players.

2. Weighted RNG

When adding an MG to the API, you may specify a "weight" value (see Adding maze generator servers). The RNG will use these values as weights when selecting a random MG server (after a request to <API_URL>/generateSegment).

The 'weight' key is optional, and the default weight is 1. Floating-point weight values like 0.1 are allowed, but weights must be greater than 0.

3. Global maze state

GET requests to <API_URL>/generateSegment can specify row and col URL parameters to retrieve data for a 7x7 maze segment in a certain position. If the segment has already been generated by a previous request to the same coordinates, the same segment will be returned without communicating with a maze generator (MG) server.

row and col will default to 0 if not specified. Negative integers are allowed. This feature does not work with requests to a specific MG (<API_URL>/generateSegment/<mg_name>).

In Flask, URL arguments can be accessed with request.args.

To reset the global maze state, send a DELETE request to <API_url>/resetMaze.

4. Multiple segments

API-to-MG request

When requesting a maze segment from an MG, the middleware will send data in the HTML packet about the location of the new segment and nearby free space in the maze (see Global maze state). The data will be a JSON in this form:

{ 
    "main": [0, 0],
    "free": [-1, 0, 0, 1, 1, 0, 0, -1, ...]
}
  • "main" will always map to a list of 2 integers, containing the row and column respectively of the segment that the MG must generate.
  • "free" maps to a list of areas where maze segments have not been generated. Every 2 integers in the list are the row and column of a free space. In the example above, (-1, 0), (0, 1), (1, 0), and (0, -1) are free. The MG may provide additional maze segments for these coordinates.
    • Only free space within 10 rows and columns (a 21x21 area) will be sent.

In Flask, this data can be accessed with request.json.

MG-to-API response

The MG can respond with data for multiple segments in this format:

{
  "geom": [...],
  "extern": {
    "-1_0": { "geom": [...] },
    "0_1": { "geom": [...] }
  }
}
  • "geom" maps to the main segment's geometry. This way, MGs that only return a single segment don't need to be adjusted.
  • "extern" maps to a dictionary where the keys denote integer coordinates separated by "_", and values contain maze data for each additional maze segment at those coordinates.

The MG does not have to provide a segment for all free spaces. In this example, (1, 0) and (0, -1) were also free but the MG did not choose to fill them in.

sp22_cs240_infinite-maze-shared's People

Contributors

aarya-bhatia avatar peteryr avatar wadefagen avatar pcrain avatar ananyaa-tanwar avatar granthale avatar blakeuser 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.