mirror of
https://github.com/captbaritone/webamp.git
synced 2026-01-24 02:36:00 +00:00
| .. | ||
| fixtures | ||
| reference/maki_decompiler_1.1 | ||
| .gitignore | ||
| constants.js | ||
| index.js | ||
| index.test.js | ||
| objects.js | ||
| package.json | ||
| readme.md | ||
| yarn.lock | ||
Maki Interpreter
One possible future for Webamp would be to support "modern" skins. The biggest blocker to this is that modern skins suport a custom scripting language called Maki.
This project is an investigation into how feasible it would be to write a .maki interpreter in JavaScript. Maki is a compiled language, so this interpreter plans to parse/evaluate the compiled byte code. Most of the hard work of figuring out how to write the parser has already been done as part of Ralf Engels' Maki Decompiler. The first stage of this project is just to reimplement the parser portion of the decompiler in JavaScript.
Roadmap
- Parse top level bytecode (constants, types, variables)
- Evaluate function code
- Implement core of standard library
- ???