Difference between revisions of "Neon"

From RogueBasin
Jump to navigation Jump to search
m (standardization of dates)
Line 3: Line 3:
|theme =  
|theme =  
|influences = The Elder Scrolls, ADOM
|influences = The Elder Scrolls, ADOM
|released = 28th of august 2007
|released = 2007/08/28
|updated = 7 Oct 2007 - 0.1.0
|updated = 2007/10/07 - 0.1.0
|licensing = GPL
|licensing = GPL
|language = Java, JavaScript
|language = Java, JavaScript

Revision as of 08:41, 20 July 2008

Neon roguelike engine
Alpha Project
Developer mdriesen
Theme
Influences The Elder Scrolls, ADOM
Released 2007/08/28
Updated 2007/10/07 - 0.1.0
Licensing GPL
P. Language Java, JavaScript
Platforms Java 6
Interface Unicode
Game Length
Official site of Neon roguelike engine


Neon is a roguelike engine. It features a huge overland map and can be modified with XML and JavaScript.

Description

Engine

Neon is not a single game, but an engine that can run roguelikes. All data needed for a specific game is stored in a set of XML files. These files are loaded when starting the engine. This allows anyone to make their own roguelike without the need to write code.

Features

The engine can handle truly huge maps. The main overland map for testing in the alpha version measures 19584 x 13152 tiles, but can be much bigger. The overland map is on the same scale as the dungeons and scrolls with the player character centered on screen. Dungeons are for now more or less limited to single-level dungeons. Multi-level dungeons can be created, but the implementation is still somewhat awkward.

Current work

Map

The cell-based map structure will be transferred to a tree structure with an xml backend. This has the advantage that the whole map is contained in a single structure, and it will make it easier to stream map data to/from the hard disk.