Update root README to reflect recent improvements
This commit is contained in:
parent
f862319f3b
commit
6abc3c7783
3 changed files with 48 additions and 12 deletions
30
README.md
30
README.md
|
@ -8,28 +8,46 @@ The CLI interface includes a REPL for running scripts.
|
||||||
The REPL interactive mode also provides more details about using MPS through the `?help` command.
|
The REPL interactive mode also provides more details about using MPS through the `?help` command.
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
To access the REPL, simply run `cargo run`. You will need the [Rust toolchain installed](https://rustup.rs/).
|
To access the REPL, simply run `cargo run`. You will need the [Rust toolchain installed](https://rustup.rs/). For a bit of extra performance, run `cargo run --release` instead.
|
||||||
|
|
||||||
## Examples
|
## Examples
|
||||||
|
|
||||||
|
### One-liners
|
||||||
|
|
||||||
|
All songs by artist `<artist>` (in your library), sorted by similarity to a random first song by the artist.
|
||||||
|
```mps
|
||||||
|
files().(artist? like "<artist>")~(shuffle)~(advanced bliss_next);
|
||||||
|
```
|
||||||
|
|
||||||
|
All songs with a `.flac` file extension (anywhere in their path -- not necessarily at the end).
|
||||||
|
```mps
|
||||||
|
files().(filename? like ".flac");
|
||||||
|
```
|
||||||
|
|
||||||
|
All songs by artist `<artist1>` or `<artist2>`, sorted by similarity to a random first song by either artist.
|
||||||
|
```mps
|
||||||
|
files().(artist? like "<artist1>" || artist? like "<artist2>")~(shuffle)~(advanced bliss_next);
|
||||||
|
```
|
||||||
|
|
||||||
|
### Bigger examples
|
||||||
|
|
||||||
For now, check out `./src/tests`, `./mps-player/tests`, and `./mps-interpreter/tests` for examples.
|
For now, check out `./src/tests`, `./mps-player/tests`, and `./mps-interpreter/tests` for examples.
|
||||||
One day I'll add pretty REPL example pictures and some script files...
|
One day I'll add pretty REPL example pictures and some script files...
|
||||||
// TODO
|
// TODO
|
||||||
|
|
||||||
## FAQ
|
## FAQ
|
||||||
### Is MPS Turing-Complete?
|
|
||||||
**No**. It can't perform arbitrary calculations (yet), which easily disqualifies MPS from being Turing-complete.
|
|
||||||
|
|
||||||
### Can I use MPS right now?
|
### Can I use MPS right now?
|
||||||
**Sure!** It's not complete, but MPS is completely useable for basic music queries right now. Hopefully most of the bugs have been ironed out as well...
|
**Sure!** It's not complete, but MPS is completely useable for basic music queries right now. Hopefully most of the bugs have been ironed out as well :)
|
||||||
|
|
||||||
### Why write a new language?
|
### Why write a new language?
|
||||||
**I thought it would be fun**. I also wanted to be able to play my music without having to be at the whim of someone else's algorithm (and music), and playing just by album or artist was getting boring. I also thought designing a language specifically for iteration would be a novel approach to a language (though every approach is a novel approach for me).
|
**I thought it would be fun**. I also wanted to be able to play my music without having to be at the whim of someone else's algorithm (and music), and playing just by album or artist was getting boring. Designing a language specifically for iteration seemed like a cool & novel way of doing it, too (though every approach is a novel approach for me).
|
||||||
|
|
||||||
### What is MPS?
|
### What is MPS?
|
||||||
**Music Playlist Script (MPS) is technically a query language for music files.** It uses an (auto-generated) SQLite3 database for SQL queries and can also directly query the filesystem. Queries can be modified by using filters, functions, and sorters built-in to MPS (see mps-interpreter's README.md).
|
**Music Playlist Script (MPS) is technically a query language for music files.** It uses an (auto-generated) SQLite3 database for SQL queries and can also directly query the filesystem. Queries can be modified by using filters, functions, and sorters built-in to MPS (see mps-interpreter's README.md).
|
||||||
|
|
||||||
### Is MPS a scripting language?
|
### Is MPS a scripting language?
|
||||||
**No**. Technically, it was designed to be one, but it doesn't meet the requirements of a scripting language (yet). One day, I would like it be Turing-complete and then it could be considered a scripting language. At the moment it is barely a query language.
|
**Yes**. It evolved from a simple query language into something that can do arbitrary calculations. Whether it's Turing-complete is still unproved, but it's powerful enough to do what I want it to do.
|
||||||
|
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
BIN
extras/demo.png
BIN
extras/demo.png
Binary file not shown.
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 26 KiB |
30
src/main.rs
30
src/main.rs
|
@ -4,28 +4,46 @@
|
||||||
//! The REPL interactive mode also provides more details about using MPS through the `?help` command.
|
//! The REPL interactive mode also provides more details about using MPS through the `?help` command.
|
||||||
//!
|
//!
|
||||||
//! # Usage
|
//! # Usage
|
||||||
//! To access the REPL, simply run `cargo run`. You will need the [Rust toolchain installed](https://rustup.rs/).
|
//! To access the REPL, simply run `cargo run`. You will need the [Rust toolchain installed](https://rustup.rs/). For a bit of extra performance, run `cargo run --release` instead.
|
||||||
//!
|
//!
|
||||||
//! # Examples
|
//! # Examples
|
||||||
|
//!
|
||||||
|
//! ## One-liners
|
||||||
|
//!
|
||||||
|
//! All songs by artist `<artist>` (in your library), sorted by similarity to a random first song by the artist.
|
||||||
|
//! ```mps
|
||||||
|
//! files().(artist? like "<artist>")~(shuffle)~(advanced bliss_next);
|
||||||
|
//! ```
|
||||||
|
//!
|
||||||
|
//! All songs with a `.flac` file extension (anywhere in their path -- not necessarily at the end).
|
||||||
|
//! ```mps
|
||||||
|
//! files().(filename? like ".flac");
|
||||||
|
//! ```
|
||||||
|
//!
|
||||||
|
//! All songs by artist `<artist1>` or `<artist2>`, sorted by similarity to a random first song by either artist.
|
||||||
|
//! ```mps
|
||||||
|
//! files().(artist? like "<artist1>" || artist? like "<artist2>")~(shuffle)~(advanced bliss_next);
|
||||||
|
//! ```
|
||||||
|
//!
|
||||||
|
//! ## Bigger examples
|
||||||
|
//!
|
||||||
//! For now, check out `./src/tests`, `./mps-player/tests`, and `./mps-interpreter/tests` for examples.
|
//! For now, check out `./src/tests`, `./mps-player/tests`, and `./mps-interpreter/tests` for examples.
|
||||||
//! One day I'll add pretty REPL example pictures and some script files...
|
//! One day I'll add pretty REPL example pictures and some script files...
|
||||||
//! // TODO
|
//! // TODO
|
||||||
//!
|
//!
|
||||||
//! # FAQ
|
//! # FAQ
|
||||||
//! ## Is MPS Turing-Complete?
|
|
||||||
//! **No**. It can't perform arbitrary calculations (yet), which easily disqualifies MPS from being Turing-complete.
|
|
||||||
//!
|
//!
|
||||||
//! ## Can I use MPS right now?
|
//! ## Can I use MPS right now?
|
||||||
//! **Sure!** It's not complete, but MPS is completely useable for basic music queries right now. Hopefully most of the bugs have been ironed out as well...
|
//! **Sure!** It's not complete, but MPS is completely useable for basic music queries right now. Hopefully most of the bugs have been ironed out as well :)
|
||||||
//!
|
//!
|
||||||
//! ## Why write a new language?
|
//! ## Why write a new language?
|
||||||
//! **I thought it would be fun**. I also wanted to be able to play my music without having to be at the whim of someone else's algorithm (and music), and playing just by album or artist was getting boring. I also thought designing a language specifically for iteration would be a novel approach to a language (though every approach is a novel approach for me).
|
//! **I thought it would be fun**. I also wanted to be able to play my music without having to be at the whim of someone else's algorithm (and music), and playing just by album or artist was getting boring. Designing a language specifically for iteration seemed like a cool & novel way of doing it, too (though every approach is a novel approach for me).
|
||||||
//!
|
//!
|
||||||
//! ## What is MPS?
|
//! ## What is MPS?
|
||||||
//! **Music Playlist Script (MPS) is technically a query language for music files.** It uses an (auto-generated) SQLite3 database for SQL queries and can also directly query the filesystem. Queries can be modified by using filters, functions, and sorters built-in to MPS (see mps-interpreter's README.md).
|
//! **Music Playlist Script (MPS) is technically a query language for music files.** It uses an (auto-generated) SQLite3 database for SQL queries and can also directly query the filesystem. Queries can be modified by using filters, functions, and sorters built-in to MPS (see mps-interpreter's README.md).
|
||||||
//!
|
//!
|
||||||
//! ## Is MPS a scripting language?
|
//! ## Is MPS a scripting language?
|
||||||
//! **No**. Technically, it was designed to be one, but it doesn't meet the requirements of a scripting language (yet). One day, I would like it be Turing-complete and then it could be considered a scripting language. At the moment it is barely a query language.
|
//! **Yes**. It evolved from a simple query language into something that can do arbitrary calculations. Whether it's Turing-complete is still unproved, but it's powerful enough to do what I want it to do.
|
||||||
//!
|
//!
|
||||||
|
|
||||||
mod channel_io;
|
mod channel_io;
|
||||||
|
|
Loading…
Reference in a new issue