diff --git a/README.md b/README.md index f375b48..6a11da3 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,5 @@ # 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. @@ -10,22 +9,15 @@ Designed as a set of examples for developing [interactive fiction](http://www.if ## How to play -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. +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 -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. +### List of interpreters -### 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); + - 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). @@ -40,19 +32,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 yet_another_experiment +t3make -f experiment ``` ### Incremental build ``` -watch -n 1 t3make -d -we -nobanner -f yet_another_experiment +watch -n 1 t3make -d -we -nobanner -f experiment ``` ## Tutorials and documentation