LiSE: Difference between revisions

From Game Making Tools Wiki
m (jargon link)
(OS categories)
Line 4: Line 4:
| release_date = Alpha
| release_date = Alpha
| made_by      = [https://cybre.space/@LogicalDash Zachary Spector]
| made_by      = [https://cybre.space/@LogicalDash Zachary Spector]
| runs_on      =  
| runs_on      = [[:Category:Linux|Linux]]<br>[[:Category:Mac OS|Mac OS]]<br>[[:Category:Windows|Windows]]
| exports_to  =  
| exports_to  = [[:Category:Linux Export|Linux]]<br>[[:Category:Mac OS Export|Mac OS]]<br>[[:Category:Windows Export|Windows]]
}}
}}


Line 27: Line 27:
* Rule constructor: Build rules out of functions represented as cards. Looks like deckbuilding in a card game like Magic.
* Rule constructor: Build rules out of functions represented as cards. Looks like deckbuilding in a card game like Magic.
* Autosave. Actually, anything you do gets put in a transaction that gets committed when you quit. In any case you never need to save
* Autosave. Actually, anything you do gets put in a transaction that gets committed when you quit. In any case you never need to save
== Links ==
* [https://github.com/LogicalDash/LiSE github.com/LogicalDash/LiSE]


[[Category:Game Builder]]
[[Category:Game Builder]]
[[Category:Open-Source]]
[[Category:Linux]][[Category:Mac OS]][[Category:Windows]]
[[Category:Linux Export]][[Category:Mac OS Export]][[Category:Windows Export]]

Revision as of 22:16, 10 May 2022

LiSE
Release date: Alpha
Made by: Zachary Spector
Runs on: Linux
Mac OS
Windows
Exports to: Linux
Mac OS
Windows


LiSE is an engine for life simulation games. It is currently in alpha. The source code is available under the GPL3.

Though there is a graphical frontend available, with the option to export your game planned, the engine itself runs in a server. It's meant to handle the parts of game logic termed the "simulation," here meaning the abstract sort of simulation present in life simulators of the kind that Maxis once made. The intent is to enable a workflow where one developer can focus solely on the logic of the game, while others worry about making it look good and respond well to user input and so forth — and these developers never need to even talk to one another. Building your game in LiSE means you get a modding API for free.

Core features

  • Object relational mapper for graph based world models.
  • Journaling to allow world state changes to be rewound and replayed.
  • Integration with NetworkX for convenient access to various graph algorithms, particularly pathfinding.
  • Rules engine: define your game's behavior in terms of actions that are performed in response to triggers. Change the connection from trigger to action without effort. Copy triggers and actions between games easily.
  • Can be run as a web server, so that you can control LiSE and query its world state from any other game engine you please.

Frontend features

  • View and edit state graphs in a drag-and-drop interface.
  • Rewind time and the interface will show you the state of the world back then.
  • Code editor with syntax highlighting.
  • Rule constructor: Build rules out of functions represented as cards. Looks like deckbuilding in a card game like Magic.
  • Autosave. Actually, anything you do gets put in a transaction that gets committed when you quit. In any case you never need to save

Links