This is the source code to the Spanish language version of "Faute De Servo", an interactive fiction game (or more commonly known as "text adventure".) This version was created in 2018.
The code is released under the MIT license, which you can find in the LICENSE file.
The game is written in the Inform 7 programming language, using version 6M62, the most recent version available at the time of writing. This version is built with Vorple 3 (preview), which leverages Javascript and CSS i/o and formatting.
You can download the Inform compiler and IDE as a single package from http://www.inform7.com
Vorple is available at http://vorple-if.com/doc/
The game's source code lives in a single file called 'story.ni' -- this file, some .i7x extensions, along with the 'uuid.txt', are the primary things kept under version control.
1. Create a working Inform project from your source tree:
$ git clone URL fds-es
$ cd fds-es
$ mv fds-es.inform/ temp.inform/
[...launch Inform, create new project in this dir called 'fds-es'…]
$ cp temp.inform/Source/story.ni fds-es.inform/Source/
$ cp temp.inform/uuid.txt fds-es.inform/
$ rm -rf temp.inform/
2. Install extensions. The extensions used in this project are all "stock" --
none have been modified, but there's always the concern about versions and
compatability. For that reason, I've put copies of all used extensions in the
fds-es/extensions directory. If the whole project is cloned, these files will
come along for the ride. Be sure to install them into your local copy of inform
when you compile.
3. Launch the Inform IDE and load the fds-es.inform project. The source code
should be visible, and it should compile fine. Make sure that Inform's
settings are are set to "Glulx" as the target VM. Remember to force-reload the game
in a web browser to dump whatever is in the cache and be sure that you are running
the most recent version of the game. See vorple documentation for details on how
this all works.
4. This version of the game is not intended to work in an interpreter -- it is only
for the web.
WARNING!!
DO NOT do any version control operations (commit, push, and particularly,
pull, update, and merge) while the Inform IDE is still open. When the IDE
'saves', it destroys and recreates the whole cerveux.inform/ directory, thus
possibly eradicating and changes you may have downloaded.