6.0.0-alpha.2 • Published 3 years ago

puzzlescript-cli v6.0.0-alpha.2

Weekly downloads
8
License
-
Repository
-
Last release
3 years ago

Terminal PuzzleScript

gh-board NPM version Downloads build status dependency status dev dependency status code coverage

This is a program that you can run in your terminal to play PuzzleScript games.

Also, it is accessible, meaning that blind or visually impaired people can play these games too!

Install

  1. Run npm install -g puzzlescript-cli
  2. Run puzzlescript to start playing

Embed in a Browser

See ./test/browser/html-table.xhtml for an example of embedding in a browser.

// Include <script src="node_modules/puzzlescript/dist/puzzlescript.js"></script>
// and then the following:
table = document.querySelector('table') // selector to the <table> that will be used
engine = new PuzzleScript.HTMLTableEngine(table)
engine.setGame(gameSourceString, 0 /*startLevel*/)
engine.start()

Screencaps

Here are some screencaps of games being played.

Pot Wash Panic! (original)

Hack the Net (original)

Skipping Stones to Lonely Homes (original)

Entanglement (original)

Video games that blind people can play?

PuzzleScript lends itself nicely to be playable by people with low or no vision:

  1. each level is small (~10x10)
  2. each sprite has a human-readable name (since the whole game is in 1 text file and the logic refers to the sprites)
  3. a blind person has 2 sets of directions (one to move the player and one to move the “eye” which reads off which sprite is in that spot)
  4. the games do not require quick reflexes and have Undo built-in so it is easy to think and try different options
  5. we can just print to the terminal whenever something needs to be read (presumably the terminal is read aloud to the person)

Screencap

This screencap is a visual demonstration of exploring and then playing a level.

This screencap is the non-visual version of the same steps as shown above. This is what vision-impaired people will read when they move the Inspector cursor around and then move the player to play the game.

About

The goal of this project is to do 3 things:

  1. make PuzzleScript easier to embed (like in 404 pages, easter eggs, etc). See docs
  2. allow blind people to play video games (by passing the --no-ui argument)
  3. use the terminal as a GUI for playing games

Dev Notes

This is a remake of PuzzleScript that has the following features:

Commands

  • npm run docs generates docs in the ./docs/ directory
  • npm start runs a game in the ./gists/ directory without debugging info (10x faster) (uses NODE_ENV=production)
  • npm run start:dev runs a game in the ./gists/ directory with sprite info (useful for debugging)
  • npm run start:debug runs a game in the ./gists/ directory with a Chrome Debugger open so you can set breakpoints
  • npm demo runs all of the games in the ./gists/ directory with a few sample moves (up/down/left/right/action)
  • npm test runs all of the unit tests (including solutions in the ./gist-solutions/ directory)
  • npm run watch Run the tests and when you update the source, it re-runs the tests
  • npm run test:debug Run the tests but opens a debugger (remember to add a debugger line into the JavaScript)
  • npm test; open coverage/lcov-report/index.html to see test coverage
  • npm run coverage generates a coverage report which includes the JS code as well as any games that you ran in dev mode (using npm run dev)
  • See the module dependency tree by running npm run build:stats and then uploading webpack-stats.json to https://webpack.github.io/analyse/#modules

Objects

  • Level contains a table of Cells which contain a set of Sprites that should be rendered
  • Rule contains the conditions and actions to be executed.
    • It also contains methods for checking if the Rule matches a Cell and methods for how to change the Cell
  • Cell contains a set of Sprites and is used to represent the current state of the Game

TODO

Want to help? Here is a roadmap of things that need to be implemented:

  • support tabbing through the sprites to say where they are and how many of them are in the puzzle
  • output which sprites changed when the player moves or presses undo
  • improve the sound effects (needs an implementation of BiquadFilter in NodeJS)
  • support the RIGID keyword
  • output a simple BEL (ASCII character 7) when the speaker package is not installed
  • output sound effects when any of the following occur:
    • a sprite is CREATE, DESTROY, CANTMOVE
    • a sprite is moved
    • RESTART, UNDO, TITLESCREEN, STARTGAME, STARTLEVEL, ENDLEVEL, ENDGAME, SHOWMESSAGE, CLOSEMESSAGE
  • use HTML Tables to render in the browser (see ./test/browser/html-table.xhtml)
  • Cache Improvements
    • cache the SimpleNeighbor.matchesCell() function so we do not have to recompute if a cell matches a Neighbor
    • de-duplicate SimpleNeighbor that have a direction but none of the tiles depend on the direction (causes fewer caches to be updated)
    • improve getMatches(level) by storing a cache of all the sprites in each row/column so we can skip the row/column entirely if the necessary sprites are not available
6.0.0-alpha.0

3 years ago

6.0.0-alpha.2

3 years ago

2.1.1

6 years ago

2.1.0

6 years ago

2.0.6

6 years ago

2.0.5

6 years ago

2.0.4

6 years ago

2.0.3

6 years ago

2.0.2

6 years ago

2.0.1

6 years ago

2.0.0

6 years ago

1.11.1

6 years ago

1.11.0

6 years ago

1.10.1

6 years ago

1.10.0

6 years ago

1.9.0

6 years ago

1.8.1

6 years ago

1.8.0

6 years ago

1.7.1

6 years ago

1.7.0

6 years ago

1.6.3

6 years ago

1.6.2

6 years ago

1.6.1

6 years ago

1.6.0

6 years ago

1.5.0

6 years ago

1.4.0

6 years ago

1.3.1

6 years ago

1.3.0

6 years ago

1.2.6

6 years ago

1.2.5

6 years ago

1.2.4

6 years ago

1.2.3

6 years ago

1.2.2

6 years ago

1.2.1

6 years ago

1.2.0

6 years ago

1.1.1

6 years ago

1.1.0

6 years ago

1.0.7

6 years ago

1.0.6

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago