Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/paulofmandown/rotLove
Roguelike Toolkit in Love. A Love2D/lua port of rot.js
https://github.com/paulofmandown/rotLove
love2d lua roguelike
Last synced: 3 days ago
JSON representation
Roguelike Toolkit in Love. A Love2D/lua port of rot.js
- Host: GitHub
- URL: https://github.com/paulofmandown/rotLove
- Owner: paulofmandown
- License: other
- Created: 2013-04-12T20:30:13.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2022-04-03T17:17:23.000Z (over 2 years ago)
- Last Synced: 2024-10-29T20:17:12.411Z (6 days ago)
- Topics: love2d, lua, roguelike
- Language: Lua
- Homepage: http://paulofmandown.github.io/rotLove/
- Size: 1.03 MB
- Stars: 261
- Watchers: 9
- Forks: 25
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
- awesome-love2d - rotLove - Roguelike Toolkit in LÖVE. A LÖVE/lua port of rot.js. (Helpers)
README
RogueLike Toolkit in Love
=========
Bringing [rot.js](http://ondras.github.io/rot.js/hp/) functionality to Love2D. The only modules that require Love2D are the display modules.See [this page](http://paulofmandown.github.io/rotLove/) for a quick and dirty run down of all the functionality provided.
Included:
* Display - via [rlLove](https://github.com/paulofmandown/rlLove), only supports cp437 emulation
rather than full font support.
* TextDisplay - Text based display, accepts supplied fonts
* RNG - via [RandomLua](http://love2d.org/forums/viewtopic.php?f=5&t=3424).
Multiply With Carry, Linear congruential generator, and Mersenne Twister.
Extended with set/getState methods.
* StringGenerator - Direct Port from [rot.js](http://ondras.github.io/rot.js/hp/)
* Map - Arena, Divided/Icey/Eller Maze, Digger/Uniform/Rogue* Dungeons.
Ported from [rot.js](http://ondras.github.io/rot.js/hp/).
* Noise Generator - Simplex Noise
* FOV - Bresenham Line based Ray Casting, Precise Shadow Casting
* Color - 147 Predefined colors; generate valid colors from string; add, multiply, or interpolate colors;
generate a random color from a reference and set of standard deviations.
(straight port from [rot.js](http://ondras.github.io/rot.js/hp/))
* Path Finding - Dijkstra and AStar pathfinding ported from [rot.js](http://ondras.github.io/rot.js/hp/).
* Lighting - compute light emission and blending, ported from [rot.js](http://ondras.github.io/rot.js/hp/).
* Dice - Roguelike based dice module ported from [RL-Dice](https://github.com/timothymtorres/RL-Dice).Getting started
==========
`git clone git://github.com/paulofmandown/rotLove.git`Add the contents of the src directory to lib/rotLove in your project and require the rot file.
```lua
ROT=require 'lib/rotLove/rot'
function love.load()
f=ROT.Display()
f:writeCenter('You did it!', math.floor(f:getHeight()/2))
end
function love.draw() f:draw() end
```Examples
==========
rotLove has a number of demo projects in `examples/` that you can use to
get a feel for each API. To see a demo in action, run
```shell
love . my-demo
```
from your shell.