FyreVM: Difference between revisions

From IFWiki

No edit summary
No edit summary
Line 1: Line 1:
'''FyreVM''' is an IF interpreter type for the [[Glulx]] virtual machine. The first implementation was written by [[Jesse McGrew]] in C# in 2007 as [https://github.com/ChicagoDave/fyrevm-dotnet fyrevm-dotnet]. It was then ported to TypeScript by [[Thilo Planz]] in 2015 as as [https://github.com/thiloplanz/glulx-typescript glulx-typescript].
'''FyreVM''' is an IF interpreter 'format' for the [[Glulx]] virtual machine. The first implementation was written by [[Jesse McGrew]] in C# in 2007 as [https://github.com/ChicagoDave/fyrevm-dotnet fyrevm-dotnet]. It was then ported to TypeScript by [[Thilo Planz]] in 2015 as as [https://github.com/thiloplanz/glulx-typescript glulx-typescript].


==History with Textfyre==
==History with Textfyre==

Revision as of 00:26, 30 April 2022

FyreVM is an IF interpreter 'format' for the Glulx virtual machine. The first implementation 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-typescript.

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

FyreVM 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