Fission is Synthesis' web-based robotics simulator. This app is hosted on our website, in addition to a closed, in-development version here.
- NPM (v10.2.4 recommended)
- Yarn, Bun, or any other package managers work just as well.
- NodeJS (v20.10.0 recommended)
- Needed for running the development server.
You can either run the init
command or run the following commands details in "Specific Steps":
npm i && npm init
Specific Steps
To install all dependencies:
npm i
For the asset pack that will be available in production, download the asset pack here and unzip it. Make sure that the Downloadables directory is placed inside of the public directory like so:
/fission/public/Downloadables/
This can be accomplished with the assetpack
npm script:
npm run assetpack
We use Playwright for testing consistency. The package is installed with the rest of the dependencies; however, be sure to install the playwright browsers with the following command:
npx playwright install
or
npm run playwright:install
In vite.config.ts
you'll find a number of constants that can be used to tune the project to match your development environment.
You can use the dev
command to run the development server. This will open a server on port 3000 and open your default browser at the hosted endpoint.
npm run dev
We use a combination of Vitest and Playwright for running our unit tests. A number of the unit tests rely on the asset pack data and may time out due to download speeds. By default, the unit test command uses a Chromium browser.
npm run test
We have two packaging commands: one for compiling dev for attachment to the in-development endpoint, and another for the release endpoint.
Release:
npm run build:prod
In-development:
npm run build:dev
You can alternatively run the default build command for your own hosting:
npm run build
These core systems make up the bulk of the vital technologies to make Synthesis work. The idea is that these systems will serve as a jumping off point for anything requiring real-time simulation.
The world serves as a hub for all of the core systems. It is a static class that handles system update execution order and lifetime.
The Scene Renderer is our interface for rendering within the Canvas. This is primarily done via ThreeJS, however it can be extended later on.
This Physics System is our interface with Jolt, ensuring objects are properly handled and providing utility functions that are more custom-fit to our purposes.
The Input System listens for and records key presses and joystick positions to be used by robots. It also maps robot behaviors (e.g. an arcade drivetrain or an arm) to specific keys through customizable input schemes.
These systems will extend off of the core systems to build out features in Synthesis.
The Simulation System articulates dynamic elements of the scene via the Physics System. At its core there are 3 main components:
Drivers are mostly write-only. They take in values to know how to articulate the physics objects and constraints.
Stimuli are mostly read-only. They read values from given physics objects and constraints.
Brains are the controllers of the mechanisms. They use a combination of Drivers and Stimuli to control a given mechanism.
For basic user control of the mechanisms, we'll have a Synthesis Brain. We hope to have an additional brain by the end of Summer 2024: the WPIBrain for facilitating WPILib code control over the mechanisms inside of Synthesis.
Script | Description |
---|---|
init |
Runs the initialization commands to install all dependencies, assets, and unit testing browsers. |
dev |
Starts the development server used for testing. Supports hot-reloading (though finicky with WASM module loading). |
test |
Runs the unit tests via Vitest. |
build |
Builds the project into its packaged form. Uses the root base path. |
build:prod |
Builds the project into its packaged form. Uses the /fission/ base path. |
preview |
Runs the built project for preview locally before deploying. |
lint |
Runs ESLint on the project. |
lint:fix |
Attempts to fix issues found with ESLint. |
prettier |
Runs Prettier on the project as a check. |
prettier:fix |
Runs Prettier on the project to fix any issues with formatting. |
format |
Runs prettier:fix and lint:fix . |
assetpack |
Downloads the assetpack and unzips/installs it in the correct location. |
playwright:install |
Downloads the Playwright browsers. |