The third iteration of the Advanced Cockpit Emulator.
- Install Rust and toolchain
- Clone the repo and
cdinto it npm inpm start
- Project Name : The project name is simply the name you want to give to the project, for exemple
A380X. - Project Root : It is the root of youre project it will also contain the
.acedirectory wich contains the project simvars, ... (exemple for the A380X:/fbw-a380x/) - Instruments : The instruments directory contains multiple subdirectories for each instruments. (exemple for the A380X:
/fbw-a380x/src/systems/instruments/src/) - Bundles : Bundles directory is generated as a side-effect of your build system. If you use rollup or webpack, you'll have to configure it by yourself, a simpler option is mach where it is done automaticlly. (exemple for the A380X (the FBW builder generates a bundles directory by default):
/fbw-a380x/bundles) - HTML_UI : Wherever you throw in the files for the MSFS virtual file system. This is the directory used for resource GET requests such as fonts loaded with the url function. (exemple for the A380X:
/fbw-A380X/out/)
The config.json of your instruments should look like this
{
"index": "./instrument.tsx",
"name": "MFD",
"dimensions": {
"width": 1536,
"height": 1024
},
"isInteractive": true
}(exemple from the A380X MFD config.json)