FyreVM: Difference between revisions

From IFWiki

No edit summary
m (LIttle typo)
Line 15: Line 15:
==Links==
==Links==
* [https://github.com/ChicagoDave/fyrevm-dotnet FyreVM C#]
* [https://github.com/ChicagoDave/fyrevm-dotnet FyreVM C#]
* [https://github.com/thiloplanz/glulx-typescript glulx-typesript]
* [https://github.com/thiloplanz/glulx-typescript glulx-typescript]
* [https://github.com/ChicagoDave/fyrevm-web FyreVM client template]
* [https://github.com/ChicagoDave/fyrevm-web FyreVM client template]


[[Category:Interpreter]]
[[Category:Interpreter]]

Revision as of 22:24, 4 February 2018

FyreVM is an IF interpreter library for the Glulx virtual machine. The library was written by Jesse McGrew in C# in 2007 as fyrevm-dotnet. It was then ported to TypeScript by Thilo Planz in 2015 as as glulx-typesript.

History with Textfyre

FyreVM was originally intended as the gaming platform for a commerical IF venture called Textfyre, founded by David Cornelson in 2007 and closed in 2012.

Differences from Standard Glulx

The fyrevm interpreter implements the Channel IO system instead of Glk. The standard IF interpreter controls both the story output as well as its layout. Using fyrevm and Channel IO, only the story is managed and text emitted to key/value pairs (channels). Layout is delegated to the "client" or "container" hosting the fyrevm library. In the C# version this could be a console application, a windows application, a bot, or some client/server implementation (partially attempted - see zifmia). In the TypeScript version everything is hosted in a browser.

Example

In fyrevm, the pieces of layout are emitted by context. So the score is in the score channel. The time is in the time channel. The main text is in the main channel. This allows the the HTML template designer to place the various channel emissions anywhere on the web page.

Status

FyreVM-dotnet is now open sourced under an MIT license and can be used in any type of project without any additional license or permission. FyreVM-web is public domain. Glulx-Typescript is public domain, but the repository is managed by Thilo Planz.

Links