Skip to content

Commit

Permalink
Drop the rotLove file, update README 'Getting Started'
Browse files Browse the repository at this point in the history
  • Loading branch information
paulofmandown committed Jul 5, 2017
1 parent 2b60f50 commit 54d1197
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5,827 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,19 @@ See [this page](http://paulofmandown.github.io/rotLove/) for a quick and dirty r

Included:

* Display - via [rlLove](https://github.com/paulofmandown/rlLove), only supports cp437 emulation
* 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 [RandmLua](http://love2d.org/forums/viewtopic.php?f=5&t=3424).
Multiply With Carry, Linear congruential generator, and Mersenne Twister.
* 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.
* 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.
* 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/).
Expand All @@ -28,9 +28,9 @@ Getting started
==========
`git clone git://github.com/paulofmandown/rotLove.git`

Add the rotLove folder/directory to your project and require the rotLove file.
Add the contents of the src directory to lib/rotLove in your project and require the rot file.
```lua
ROT=require 'rotLove/rotLove'
ROT=require 'lib/rotLove/rot'
function love.load()
f=ROT.Display()
f:writeCenter('You did it!', math.floor(f:getHeight()/2))
Expand Down
Binary file removed rotLove/img/cp437.png
Binary file not shown.
Loading

0 comments on commit 54d1197

Please sign in to comment.