Home > Interactive Fiction > Interactive Fiction Authoring Tools

Interactive Fiction Authoring Tools

May 28th, 2013 Matt Leave a comment Go to comments
  • Tweet
  • Tweet

If you want to get into writing Interactive Fiction (IF) it can be hard to know where to get started. So here is a list of five IF authoring tools so you can pick the approach that’s best for you.

This is an update of a post I wrote way back in 2010. It’s been a long time and some helpful folks have pointed out some things I’ve missed, so it’s well overdue for an update. Enjoy!

Because this is a long one, here are some quick links in case you came here for a specific tool:
Twine     Inform     TADS     Quest     ADRIFT

Twine (Mac, Windows, Linux)

Twine Interactive Fiction editor

Summary

  • Visual interface
  • Produces HTML-based stories (that require javascript)
  • Has limited support for basic programming
  • Good entry-level system

Twine is the simplest way to create a text adventure, and therefore the easiest to use. Twine writers produce stories using a graphical interface. Each piece of text is represented within a box, and lines link each box, showing the routes the player might take through the story.

The work is compiled in HTML format, and works on any browser that supports javascript (and has it turned on. That’s practically everyone, by the way).

The graphical interface makes it immediately obvious what is going on. Editing is done by double-clicking a box and typing in the resulting form. Creating a new box is as simple as double-clicking in an empty space.

Links within the text are defined by surrounding the word(s) in double square brackets [[like this]], and choices outside of the main text are the same, only with a * character in front. And that is seriously all you need to get going.

Twine uses a graphical interface to show its simple text and links concept.

For more information, there is a video tutorial series that explains everything you need to know and will definitely help you decide if this is your software for writing Interactive Fiction.

If you want to “go deep” with Twine, you can add your own HTML and stylesheets. If you don’t know what I’m talking about, then you probably want to leave those features alone (you are basically editing web pages at that stage).

Some people may find Trine too simple for their purposes but it depends what kind of story you want to create. On the surface, it seems more geared towards Choose Your Own Adventure style stories than text adventures but there is the accompanying Twee syntax for stories that are more involved (thanks for the hint from Horace Torys in the comments).

Twee has the concept of variables and expressions, and there are tutorials for doing things like creating an inventory, or tracking the number of bullets left in a gun for example. It remains basic and abstract – it doesn’t know what a “door” is and what it can do, nor an object or player-character for that matter. But it still serves as a good entry into the more complicated aspects of interactive storytelling.

Inform 7 (Mac, Windows, Linux)

Inform 7 mosaic image

Summary

  • Code your story by writing in natural English
  • Produces a variety of formats, so can be played on any IF interpreter
  • Versatile and extensible
  • Thorough manual packed with tutorials
  • A suite of useful tools
  • Can be intimidating

Inform takes a writerly approach. In the same way Interactive Fiction uses a verb-based system to make it easy to play/read, Inform has tried to make its source code like writing English. You describe what the player sees.

The interface is split into two panes, each of which can show a variety of helpful tools and resources (or your story of course).

Inform’s coding style is an intriguing concept. Rather than write code, you can do a lot by writing a natural-English paragraph. Inform will then interpret what you’ve written and sort the various objects into types, which automagically have certain properties and available actions. Take this example from the documentation:

East of the Garden is the Gazebo. Above is the Treehouse. A billiards table is in the Gazebo. On it is a trophy cup. A starting pistol is in the cup.

There are three rooms here and three objects, each of a different type. The language is very powerful, allowing for all sorts of interaction. And it’s extensible, so if there is something you need, you might find a plugin that includes it (or write your own).

There is a caveat. Just like Interactive Fiction disengenuously promises the world with its blinking cursor, writing Interactive Fiction with Inform is not as freeform as it appears. It is still code, and beginners will run into problems because they haven’t written things in the “right” order, or they have omitted punctuation that seemed unnecessary. If you’re not used to that, I can see what was intended as a useability feature becoming frustrating.

However, once written it’s incredibly easy to understand and so learn from the work of others.

Inform 7 Interactive Fiction editor

Inform has a powerful and surprisingly complete suite of tools

The documentation is excellent; full of examples, sensibly organised, and viewable alongside your source code, thanks to the two panes of the interface. It is also well-written – concise, thorough and informative. It is not often I enjoy reading a manual!

Other tools include a Skein (a visual representation of a reader’s journey through the story) a full transcript of any given playthrough, and an automatically generated map of your world. All powerful stuff, if a little intimidating to the beginner.

Inform is my favourite. Not only does it tick all of my joy buttons by combining writing and coding, but it’s impressively complete, and takes a professional stance on useability that is missing from the others. The Mac version especially, is a joy to use.

If you’re familiar with Scrivener (and you should be), consider this the Scrivener of Interactive Fiction.

TADS (Mac, Windows, Linux)

N.B. The TADS site recommends using frobTABS if you’re on Mac/Linux. Below I’ve looked at the TADS 3 Author’s Kit for Windows. See the download page for more info.

TADS 3: the programmer's choice

Summary

  • Written with a strict syntax
  • TADS 3 format can be played on any IF interpreter
  • Should allow for complicated stories
  • Comes with familiar debugging tools
  • Suitable for programmers

TADS stands for Text Adventure Development System, and is as techy as that sounds. This is Interactive Fiction software for programmers.

It is written in a text editor (TADS Workbench is a specially designed text editor for this purpose), and each room, object, interaction, description is defined in a strict syntax. The TADS 3 format that’s produced can be played on any interpreter.

Here is an example of the code (with comments removed), just for the sake of comparison:

entryway: Room ‘Entryway’
“This large, formal entryway is slightly intimidating:
the walls are lined with somber portraits of gray-haired
men from decades past; a medieval suit of armor<<describeAxe>>
towers over a single straight-backed wooden chair. The
front door leads back outside to the south. A hallway leads
north. ”

describeAxe
{
if (axe.isIn(suitOfArmor))
“, posed with a battle axe at the ready,”;
}

north = hallway

south = frontDoor

out = frontDoor
;

+ frontDoor: Door ‘front door’ ‘front door’
“It’s a heavy wooden door, currently closed. ”

initiallyOpen = nil

dobjFor(Open)
{
action() { “You’d rather stay in the house for now. “; }
}
;

If you can understand what’s going on here, you should be fine. If the sight of it sends you into waves of panic, TADS is probably not for you.

The manual is large, but I found it tended to waffle a bit. I recommend starting a new project on the “easiest” setting and opening the .t file within. This contains basic structure for your story that you can edit. Most importantly, it is heavily commented. It’s a great place to start and very instructive.

You are not restricted to one file of code. In fact you can have as many as you want, allowing you to organise your project how you like. The manual recommends splitting your project up one file per room, for example.

Debugging tools are available that will be familiar to programmers. Break points stop running code at a specific line so you can check the status of watched variables. For simple text adventures, this won’t be necessary, but when it comes to testing complicated logic, they can be invaluable.

Although Inform’s text approach is easier to read, you do have to read it. If you’re a programmer you’ll understand how TADS layout may make a room easier to understand “at a glance”. Plus, its strict syntax could make it easier to debug (I haven’t spent enough time with both to know for sure, but this is going from my knowledge as a programmer).

Quest (any browser, or there’s a Windows app too)

Thanks to mistermole for pointing out Quest in the comments.

quest logo

Summary

  • Created and played in a browser
  • Entirely form-based
  • Easy to understand
  • Does allow for more customisation via scripting for each object (but this isn’t required)

Quest is a browser-based, form-driven editor. The game maker can be loaded in Internet Explorer (or Firefox, Chrome etc.), and the finished games can also be played straight in the browser.

Because of this, it’s very easy to get started – there is nothing to download and signing up can be done using your Facebook or Google account.

Once inside, click to start a game and you’re presented with an intuitive interface. Your project tree is down the left hand side of the screen and contains all of your rooms, characters and objects.

Each element of your game is created by filling out a form. In the screenshot below, you can see that I’ve added one room, which I’ve called “Cave”, a direction the player can look, and some rocks as an object.

If I were to continue, I could make the rocks a container, and have the player be able to “open” them (I would describe this as moving them) to reveal a handy-dandy rope in a hidey-hole beneath. I could even include images for each of the things in my text adventure game. Simples.

Because it’s in a browser, there is a tiny wait time between forms. It’s not much at all, but it adds up, and is simply not as responsive and slick as a desktop application.

However, it does mean that anyone can play your game without having to download anything. As an alternative, the system even allows you to export your game as a mobile app, which is a nice touch.

ADRIFT (Windows)

Thanks to Sondar from the comments for pointing out ADRIFT

ADRIFT editor

Summary

  • Completely GUI-driven – no coding
  • Written on Windows, but can be played on Win, Mac or Linux through ADRIFT Runner
  • Maps are represented visually, with an editor for each object
  • Good for beginners and those who hate code

Adrift is another form-based editor with a few graphical flourishes for ease of use.

Here the object types are arranged in columns that go the width of the screen. Coming straight off of experimenting with Quest this threw me at first (largely due to the technical-looking tree down the left hand side, which I suspect you never have to touch).

A quick glance at the tutorial however and it all fell into place. Actually I prefer this layout, as it’s easier to see everything in your game at a glance.

Objects are added by right-clicking on the appropriate list, and once in the object editor, you can assign various properties, or add related objects.

There is also a map in the top area of the screen. You can even add rooms and connections by clicking on the map, which is a handy shortcut for mapping out your game quickly.

I have had limited time with them, but Adrift certainly seems more thorough than Quest – there seemed more options for your objects and they were immediately intuitive. While I supsect similar things can be achieved with both systems, Quest might require a bit more creativity to bend it to your will.

The downside to Adrift appears to be limited distribution. The editor itself only works on Windows, and whereas the ADRFIT Runner (the program that plays the games) can be installed on any system, it is required to play ADRFIT games. As I understand it, you can’t play them on a variety of already well-established IF players (like Inform or TADs stories), nor can they be played in a browser like Quest games.

In Conclusion

The choice comes down to what you’re comfortable with. If you’re starting out and want a testing bed, I’d suggest Twine. Quest and ADRIFT are also good places for beginners, but be prepared to at least open the manuals for these.

If the depth of interaction in your story outgrows them, take a look at Inform or TADS and go with the one that complements how you picture an IF story.

As an added bonus, here are some more resources for you to take a look at if you want to create a text adventure:

Books on Interactive Fiction*

There’s not a lot of literature on IF, but there are a couple of seminal works. If you like the sound of this medium, you should really read these

  • Twisty Little Passages: An Approach to Interactive Fiction
  • Creative Interactive Fiction With Inform 7
  • Get Lamp is a documentary by Jason Scott chronicling the history of the text adventure
  • Or you could always search on Amazon

*Note that all Amazon links go through my associates account, to help out Getmewriting.com. If that bothers you, don’t click!

Further reading on Getmewriting.com

There’s a bunch of coverage on here. Here are the highlights:

Over to you:
As always, I’d like to hear your thoughts on the systems described above. And if I’ve missed one that you like using, please let me know. The comments section is below.

  • Pingback: Inform 7 Conversation Table | AllGraphicsOnline.com()

  • Pingback: Get Me Writing » 3 Interactive Fiction Authoring Tools | Interactive Fiction and Digital Game-based Learning | Scoop.it()

  • Pingback: Get Me Writing » 3 Interactive Fiction Authoring Tools | Games and education | Scoop.it()

  • Pingback: Get Me Writing » 3 Interactive Fiction Authoring Tools | Multilinear Stotytelling | Scoop.it()

  • mistermole

    look at Quest – its easy and powerful a winning combo!!!

    • http://getmewriting.com Matt Roberts

      Thanks for the recommendation mistermole! I hadn’t seen that one.

      I’m afraid I don’ know much about it save for the video on their page, but here is a link for anyone who is interested in checking it out: http://www.textadventures.co.uk/quest/

  • Sondar

    You have also missed ADRIFT from the list – http://www.textadventures.org

    • http://getmewriting.com Matt Roberts

      Many thanks for the tip off there Sondar, and welcome to the site.

      Yes I’d completely missed ADRIFT. I’ve had a quick look, and it certainly seems interesting – entirely GUI-based, which is nice, although I do wonder if that makes it less flexible than, say, Inform.

      Do you have any experience creating games in ADRIFT?

  • http://www.facebook.com/Tiffcatt Tiffany Clark-Nelson

    can someone help me code for making a gun shoot people?

    • http://getmewriting.com Matt Roberts

      I wouldn’t know. I have very little experience with these tools personally, aside from trying them out for the purposes of this article.

      What tool are you using? I’m sure you’re not the first person to try this so there is probably code for it out there somewhere. Regardless, you would have better luck on the forums for the software you are using than here I would think.

  • Pingback: Get Me Writing » 5 Interactive Fiction Au...()

  • Pingback: Get Me Writing » 5 Interactive Fiction Au...()

  • sonia

    Does someone know where I can find programmers who are experienced in coding tools for interactive storytelling/ fiction? if yes, contact me on likedin.
    Sonia Ettinger, HR Director for Quanticdream

  • Michael

    Regarding books on Interactive Fiction: I’d additionally recommend the IF Theory Reader (which also contains tips on the craft of writing IF). Available as a paperback or as a free PDF from http://www.lulu.com/shop/kevin-jackson-mead-and-j-robinson-wheeler/if-theory-reader/ebook/product-17551190.html.

    • http://getmewriting.com Matt Roberts

      Thanks Michael! Free – you can’t get much better than that.

  • John

    Although it does not seem to have much of a user community the Quandary Application is pretty simple to use and the games can be played in most browsers as well.

    • John

      Forgot to mention the site is http://www.halfbakedsoftware.com/quandary

      • http://getmewriting.com Matt Roberts

        Hi John, and thanks for the tip. The URL you quoted doesn’t work – think you missed the file extension off.
        This is the full URL:
        http://www.halfbakedsoftware.com/quandary.php

        “Action Maze” is a bit of a weird term – not heard that before.

  • Campbell

    ADRIFT games can be played in a browser, at http://play.adrift.co

  • Pingback: Get Me Writing » 5 Interactive Fiction Au...()

  • Francesco

    You forgot RenPy, another important and popular tool

    • http://getmewriting.com Matt Roberts

      Hi Francesco! Thanks for the suggestion. I hadn’t come across it, but then I was looking mainly for text-adventure type IF. If anyone’s looking to make more of a visual novel though they might want to check this out.

  • Potato

    You have missed story nexus from the list

  • KT

    This is a great source list. I decided to try Inform, especially because of the comparison to Scrivener. Your review is right on target.

    I worked for a software startup in the late ’90s that developed code to run IF games on mobile devices along with a web-based portal and marketplace for authors. Our team was acquired around that time and never got it off the ground, but with the explosion of apps, smart phones and tablets, I wonder if it would’ve taken off at some point.

    • http://getmewriting.com Matt Roberts

      Happy to help KT! I’d like to hear how you get on writing IF.

      Late 90’s? Maybe. I think perhaps it was a little too early to catch the wave.

  • Basil Baker

    There’s a new site devoted to an entirely new genre of Literature that has just emerged: http://www.MultiTouchFiction.com

    Also, for a look at an example of MultiTouchFiction check out the sample of “Venice Under Glass” here: https://itunes.apple.com/us/book/venice-under-glass/id841148129?mt=11

    Please don’t buy it – disclosure: I’m in it :-)

  • Blogger Blogger

    Quest is the best by far. I’ve tried many other IF tools just for the sake of expanding my repertoire, but I keep coming back to Quest. Main reason: I can create an IF story without requiring readers to use a command line to enter verbs; Quest offers verb buttons (as well as the command line).

    Moreover, programming is powerful yet easy to use at the same time.

    Main shortcoming: Quest has **LOTS** of room for growth, but I’m not sure about the responsiveness of its developer. Supposedly, he has been working on Quest for 10 years. It’s nice–still, it could be much better.

  • Pingback: Writers' Tools | Pearltrees()