From 34367c4a220d57d6d3a32fc5766bba3583623850 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miloslav=20=C4=8C=C3=AD=C5=BE?= Date: Sat, 29 Sep 2018 18:30:07 +0000 Subject: [PATCH 1/2] Update README.md --- README.md | 35 +++++++++++++++++++++++++++++------ 1 file changed, 29 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index cd4b436..58afc4c 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,9 @@ # raycastlib -Simple raycasting library for limited-resource computers. +Ray Casting library for (not only) limited-resource computers. -**Still WIP!** - -previews --------- +eye-candy previews +------------------ Pokitto: @@ -26,7 +24,32 @@ terminal: ![](/media/terminal.gif) +features +-------- + +- Very fast, small and efficient. +- Uses only integer math. +- No dependencies (uses only stdint standard library). +- Single header, KISS. +- Advanced rendering of variable height floor and ceiling. +- Textured walls and floor. +- Depth information (for fog). +- Camera shearing (looking up/down). +- Camera movement with collisions. +- Support for opening door. +- Pure C, tested to run as C++ as well. +- Optional framework functions that handle the whole rendering. +- Still flexible -- pixels are left for you to draw in any way you want. +- Tested on multiple platforms (PC, Arduboy, Pokitto). +- Many compile-time options to tune the performance vs quality. +- Well commented code. + +TODO +---- + +- Transparency. + license ------- -Everything is CC0 1.0. \ No newline at end of file +Everything is CC0 1.0. Please share your own software as free and open-source. \ No newline at end of file From c0775f64897cb5d8b728b4744a7324ef9d789c31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miloslav=20=C4=8C=C3=AD=C5=BE?= Date: Sun, 30 Sep 2018 10:23:07 +0000 Subject: [PATCH 2/2] Update README.md --- README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 58afc4c..6115b7e 100644 --- a/README.md +++ b/README.md @@ -44,10 +44,18 @@ features - Many compile-time options to tune the performance vs quality. - Well commented code. +**NOTE**: Backwards compatibility isn't a goal of this libraray. It is meant to +be an as-is set of tools that the users is welcome to adjust for their +specific project. So new features will be preferred to keeping the same +interface. + TODO ---- -- Transparency. +- Transparency (conditional ray passing through). +- Doors in the middle of squares. +- Rolling doors for `RCL_renderComplex`. +- Possibly merge all rendering functions into one. license -------