diff --git a/README.md b/README.md index 6a11da3..f375b48 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,6 @@ # Yet another experiment +[![Play online](https://img.shields.io/badge/Play-online-orange?style=flat-square)](https://he4et.github.io/elseifplayer/#/focus/https%3A%2F%2Fifarchive.org%2Fif-archive%2Fgames%2Ftads%2Fyet_another_experiment.t3/toxin/) [![IFDB](https://img.shields.io/badge/IFDB-page-lightgrey?style=flat-square)](https://ifdb.tads.org/viewgame?id=rsssdo3anjpwnt6e) A small "escape the room" style [TADS3](https://www.tads.org/) game. @@ -9,15 +10,22 @@ Designed as a set of examples for developing [interactive fiction](http://www.if ## How to play -1. Download `yet_another_experiment.t3` from the [release page](https://github.com/He4eT/tads3_experiment/releases) -1. Install the interpreter that supports TADS adventure games (see the list below) -1. See this [cheat sheet](http://pr-if.org/doc/play-if-card/play-if-card-300dpi.png) if you are not familiar with interactive fiction +You can +[play this game online](https://he4et.github.io/elseifplayer/#/focus/https%3A%2F%2Fifarchive.org%2Fif-archive%2Fgames%2Ftads%2Fyet_another_experiment.t3/toxin/) +or play it with any TADS3 interpreter. -### List of interpreters +See this [cheat sheet](http://pr-if.org/doc/play-if-card/play-if-card-300dpi.png) if you are not familiar with interactive fiction. - - Desktop: [gargoyle](https://github.com/garglk/garglk/) or [frobtads](https://github.com/realnc/frobtads) - - Android: [fabularium](https://play.google.com/store/apps/details?id=com.luxlunae.fabularium&hl=en) - - iOS: [frotz](https://apps.apple.com/au/app/frotz/id287653015) +### Play with an interpreter + +1. Download `yet_another_experiment.t3` from the [release page](https://github.com/He4eT/tads3_experiment/releases). +1. Install the interpreter that supports TADS adventure games (see the list below). + +#### List of interpreters: + - Web: [elseifplayer](https://he4et.github.io/elseifplayer/#/); + - Desktop: [gargoyle](https://github.com/garglk/garglk/) or [frobtads](https://github.com/realnc/frobtads); + - Android: [fabularium](https://play.google.com/store/apps/details?id=com.luxlunae.fabularium&hl=en); + - iOS: [frotz](https://apps.apple.com/au/app/frotz/id287653015); See the [full list](http://www.ifwiki.org/index.php/Interpreter). @@ -32,19 +40,19 @@ the full list of "bricks" on [this page](/docs/table_of_contents.md). ### Pre-build - 1. Clone this repo - 1. Install [frobtads](https://github.com/realnc/frobtads) - 1. Copy `frobtads/tads3/lib/` to `project_path/lib/` - 1. Copy `frobtads/tads3/include/` to `project_path/lib/include/` + 1. Clone this repo; + 1. Install [frobtads](https://github.com/realnc/frobtads); + 1. Copy `frobtads/tads3/lib/` to `project_path/lib/`; + 1. Copy `frobtads/tads3/include/` to `project_path/lib/include/`; ### Build ``` -t3make -f experiment +t3make -f yet_another_experiment ``` ### Incremental build ``` -watch -n 1 t3make -d -we -nobanner -f experiment +watch -n 1 t3make -d -we -nobanner -f yet_another_experiment ``` ## Tutorials and documentation