ascii-fluid is a face controlled ASCII fluid simulation running real time in your terminal. You can control the fluid dynamics with your face by using a webcam, but also with your mouse or touchpad.
$ go get -u -v github.com/esimov/ascii-fluid
$ cd wasm && make
The fluid solver is mainly based on Jos Stam's paper Real-Time Fluid Dynamics for Games. tcell library is used for rendering the fluid simulation in terminal and gorrilla/websocket package for communicating through a websocket connection with the Webassembly version of the Pigo face detection library.
This will start three new operation simultaneously:
- open a new terminal window
- start a new web server which is listening on the incoming websocket connection
- build the webassembly interface for accessing the webcam.
The coordinates of the first detected face will be transferred over the websocket connection to the terminal application. On each refresh rate (defined as a parameter) the terminal will update the fluid simulation.
This program has been tested on Linux and MacOS, but normally it should also run on Windows.
Because of the OS imposed security constrains there are some important steps you need to take:
In MacOS you must set the accessibility authorization for the terminal you are running from.
- CTRL-D show/hide the grid system
- TAB + mouse down activate/deactivate agents (agents generates repulsions).
- https://github.com/gdamore/tcell
- https://github.com/esimov/pigo
- https://github.com/gorilla/websocket
- Endre Simo (@simo_endre)
Copyright ยฉ 2020 Endre Simo
This software is distributed under the MIT license. See the LICENSE file for the full license text.