/FORMation

Primary LanguageJavaScript

FORMation

FORMation is scripting platform for prototyping with the shape displays of the Tangible Media Group, MIT Media Lab. It was conceived by Xiao Xiao and Donald Derek as a tool to quickly make shapes and movements with the shape display. FORMation was developed in collaboration with Zack Uhlenhuth and makes use of the following JavaScript libraries:

How to Run

Live versions of the program:

If you want to play with the underlying javascript, clone the repo and host it as your own local webserver.

In a terminal:

git clone https://github.com/xiaosquared/FORMation.git && cd FORMation
python -m SimpleHTTPServer 8000

In a browser, go to localhost:8000/cooperform.html or localhost:8000/cooperform.html

Keyboard controls:

  • Ctrm-m: opens and closes the browser
  • Enter: run the current script
  • Space: pause
  • d: clear

For MAS.834 students: FORMation has functionality to interface with the physical shape displays when its corresponding program is running on the shape display computers. Speak to Xiao Xiao if you would like to do that.

Scripting the Shape Display

xForm is the name of the virtual shape display. Each pin is addessed by its x, y position where 0, 0 is the top left corner. Heights are decimal values from 0 to 1.

Basic Functions

Set pin at position x, y to ht

xForm.setPinHeight(x, y, h);

Set all pins to a height:

xForm.clearDisplay(h)

Examples

The /examples folder has some sample scripts. To run, paste the code into the FORMation editor. Current examples:

  • pong.js:
    • A physical pong game where the shape display moves around a real ball, with paddles controlled via the keyboard.
    • Example of how to use Box feature to render boxes and detect collision between them

License

The MIT License (MIT)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.