Website: COVID-GAME
This is a simple terminal-based simulation of resource allocation game.
The game runs for four iterations of the game in a 10*10 grid.
User inputs are simulated with 10% of cells tested, and 5% containment in every step.
Tested cells are visualzed with * like *red*, and disconnected cells are visualized with [] like [red].
Steps to run the game on the console/terminal:
- Install node
- Open terminal or npm console in windows
- Navigate to the folder
- Run> node index.js
- Open browser: https://localhost:3002
To be clear on the rules
- testing means that it is testing + quarantine: continues to influennce the cells state, until is reconnected
- disconnect means that the cell does not influence neighbouring cells
- connect stops testing, and disconnection and resumes normal activity
Some initial thoughts on playing the first version of the game:
-
Without containment that game moves to red cells in two steps
-
We have to set the starting configuraiton of the game such that some regions are already contained and there are still resources available to use - and where testing is being done
-
This could mirror the actual data from the city' administration,
-
In this way, players will not be start from a clean slate, but start out with an existing city in crisis. This will be much more accurate to current context in which the game is used.