Skip to content
Mads Hvelplund edited this page May 13, 2019 · 2 revisions

Roguelike Library For Java

Source: http://rlforj.sourceforge.net/index.html

This is a modular easy to use Java library for developing Roguelike Games.

The purpose of this library will be to provide functions like Line of Sight, Field of View, Pathfinding, Dungeon generation, etc that you will need for writing your Roguelike, but the code that is either hard to find or hard to separate out from existing projects.

Currently this library provides the following :

  • Field of View
    • Precise Permissive
    • Shadowcasting.
  • Cone Field of Vision
    • Precise Permissive
    • Shadowcasting.
  • Line of Sight
    • Bresenham
    • Symmetric Bresenham
    • Opportunistic Bresenham
    • Precise Permissive
    • Shadowcasting.
  • Projection
    • Bresenham
    • Symmetric Bresenham
    • Opportunistic Bresenham
    • Precise Permissive
    • Shadowcasting.

I hope to provide the following in the future: Noise based world generation, dungeon generation, path finding.

Clone this wiki locally