Update readme
[small3dlib.git] / README.md
blob6a5bf5d2175696080be545d6f6d2ef9ac960967f
1 # small3dlib
3 Public domain 3D software rasterizer for (not only) resource-limited computers.
5 If you like this, you may also like my similar project: [raycastlib](https://gitlab.com/drummyfish/raycastlib). These two libraries can very easily be combined together -- here is a proof-of-concept gif (environment rendered with raycastlib, cubes with small3dlib):
7 ![](media/rcl_plus_s3l.gif)
9 ## eye-candy previews
11 Pokitto (32bit embedded console, 48 MHz, 36 kB RAM):
13 ![](media/pokitto_modelviewer.gif)
14 ![](media/pokitto_level.gif)
15 ![](media/pokitto_city.gif)
17 Gamebuino META (Arduino 32bit console, 48 MHz, 32 kB RAM):
19 ![](media/gb_modelviewer.gif)
21 PC (SDL, offline rendering, terminal):
23 ![](media/pc_modelviewer.gif)
24 ![](media/pc_level.gif)
25 ![](media/pc_city.gif)
26 ![](media/pc_term.gif)
27 ![](media/pc_island.png)
28 ![](media/pc_alligator.png)
30 ## features
32 - Very **fast, small and efficient**, runs even on tiny **bare metal embedded** with just megahertz CPUs and kilobytes of RAM.
33 - Uses **only 32bit integer math**, NO float, with a compile time option to use wider types if needed.
34 - **No dependencies** (uses only stdint standard library, NO stdio), extremely portable.
35 - **Single header**, KISS, suckless. No OOP, no design patterns, just nicely documented functions.
36 - **No dynamic heap allocation.**
37 - **Pure C99**, tested to run as C++ as well.
38 - Still **flexible** -- pixels are left for you to draw in any way you want with a custom fragment-shader like function.
39 - **Perspective correction**, 3 modes: none (linear only), full (per-pixel), approximation (per-N-pixels). 
40 - **Different drawing strategies** to choose from: none, z-buffer (none, full, reduced), triangle sorting (back-to-front, fron-to-back with stencil buffer).
41 - Triangles provide **barycentric coordinates**, thanks to which practically anything that can be achieved with OpenGL can be achieved (texturing, shading, normal-mapping, texture fitering, transparency, PBR, shadow mapping, MIP mapping, ...).
42 - **Different near plane coliision handling strategies**, several options: cull, push, geometrically correct clip, geometrically and barycentric correct clip. Choose the one that best suits you program.
43 - **Top-left rasterization rule**, pixels of adjacent triangles don't overlap or have holes (just like in OpenGL).
44 - **Tested on many platforms**:
45   - PC (little endian, 64bit GNU)
46   - PowerPC emulator (big endian)
47   - compilers: gcc, clang
48   - Arduboy (only experimental)
49   - Pokitto (32 bit resource-limited, ~80 MHz CPU, 32 kB RAM)
50   - Gamebuino META (32bit resource-limited embedded ARM)
51   - ESPboy (embedded open console, demos ported by RomanS)
52   - TODO:
53     - Android
54     - Windows
55     - emscripten (web browser, JavaScript transpile)
56 - **Extremely portable** due to no dependencies, no float, no build systems, low HW requirements, endian independence etc.
57 - **Many compile-time options** to tune the performance vs quality.
58 - **Similar to OpenGL** in principle, but simpler, easier to use, with higher-level features.
59 - **Perspective and orthographic** projections.
60 - **Tools** (Python scripts) for converting 3D models and textures to C array format used by the library.
61 - **Well commented** and formatted code. Automatic documentation (comments + provided Doxyfile).
62 - Completely **free of legal restrictions**, public domain, do literally anything you want.
64 **NOTE**: Backwards compatibility isn't a goal of this libraray. It is meant to
65 be an as-is set of tools that the users is welcome to adjust for his
66 specific project. So new features will be preferred to keeping the same
67 interface.
69 ## why?
71 You just need to make a small mini 3D game, quick 3D animation or visualization and don't want to go through the horror of learning and setting
72 up OpenGL or Vulkan, installing drivers, learning complex APIs and libraries? Don't want to be tied to HW, 3rd party API or libraries and their
73 dependencies? Don't want to install gigabytes of heavy super ultra graphics engines just to play around with a few low poly models? You need a
74 simple software renderer as a fallback to your main renderer? You want to create extremely portable 3D graphics that will run on small obscure
75 embedded platforms that don't have OpenGL, good specs, FPU unit or even standard C library? Want to just render something offline simply without
76 caring about highest rendering speed? You want to toy around with modifying something in the rendering pipeline that you can't easily do or debug
77 in big frameworks (such as the rasterization algorithm)? Want to hack around in the demo scene? Want to create something public domain and need a
78 public domain renderer? Or just don't want to be bothered by conditions such as proper attribution or copyleft? You want to create an authentic
79 retro wobbly PS1 style graphics? Then this library may help you.
81 ## limitations
83 And advantages at the same time :)
85 - **No scenegraph** (object parenting), just a scene list. Parenting can still be achieved by using cutom transform matrices.
86 - Though performance is high, due to multiplatformness it **probably can't match platform-specific rasterizers written in assembly**.
87 - There is **no far plane**.
88 - There is **no subpixel accuracy** (PS1 style graphics).
89 - There is **no antialiasing**, but you can still achieve it by supersampling (render in higher resolution and downscale) or filters like FXAA.
90 - At the moment there is no wireframe rendering, but you can simulate it easily (see model viewer example), or write it by hand (drawing lines is not that hard).
91 - Due to the limitations of using only integer arithmetics, some types of movement (particularly camera) **may look jerky, and artifact may appear** in specific situations. This can partially be fixed with `S3L_USE_WIDER_TYPES`.
92 - There's no extensive error and memory safety checking, you're supposed to not try to crash the library.
93 - There are **no built in-shaders, I/O, LOD, mipmaps, texture filtering, collision detection, sprite drawing, terrain, bone animation, font drawing, postprocessing, v-sync, sound** and other things you might find in the "big" engines. This is only a simple 3D rasterization library, you're supposed to implement the above mentioned things yourself (or use other libraries), however it's not that hard and it's usually the fun step. Check out the examples to see how it's done.
95 ## how to use
97 For start take a look at the [helloWorld.c](programs/helloWorld.c) program, then [terminalCube](programs/terminalCube.c) and then other examples (e.g. `level.c` shows simple integration with SDL).
99 For more see the other examples and **the library code itself**, it is meant to be self-documenting, i.e. the source code IS the documentation -- you'll find the description of a lot of things at the start of the file. You can also use doxygen to generate an HTML documentation.
101 The basic philosophy is:
103 - The library implements **only a rendering back-end**, it doesn't perform any drawing to the actual screen itself,
104   hence there is no dependency on any library such as OpenGL or SDL. It just calls your front-end function
105   and tells you which pixels you should write. How you do it is up to you, you can use whatever library that can draw pixels to the screen to do it (SDL, SFML, X11, QT, ncurses, ...).
106 - **Before including the header, define `S3L_PIXEL_FUNCTION`** to the name of a function you will use to
107   draw pixels. It is basically a fragment/pixel shader function that the library will call. You will
108   be passed info about the pixel and can decide what to do with it, so you can process it, discard it,
109   or simply write it to the screen.
110 - Also **init screen resolution**, either by defining `S3L_RESOLUTION_X` and `S3L_RESOLUTION_Y` (before including the library) or by setting `S3L_resolutionX` and `S3L_resolutionY` variables.
111 - Use the provided Python tools to convert your models and textures to C arrays, include them in your
112   program and set up the scene struct.
113 - Init the 3D models and the scene with provided init functions (`S3L_init*`), set the position of the camera.
114 - Call `S3L_newFrame` to prepare for rendering, then call `S3L_drawScene` on the scene to perform the frame rendering.
115   This will cause the library to start rendering and calling the `S3L_PIXEL_FUNCTION` in order to draw the frame. You can of course
116   modify the function or write a similar one of your own using the more low-level functions which are
117   also provided.
118 - Fixed point arithmetics is used as a principle, but there is no abstraction above it, everything is simply
119   an integer (`S3L_Unit` type). The space is considered to be a uniform dense grid of discrete points, and what would normally be
120   a 1.0 float value is an int value equal to `S3L_FRACTIONS_PER_UNIT` units (aka `S3L_F`). Numbers are normalized by this
121   constant, so e.g. the sin function returns a value from `-S3L_FRACTIONS_PER_UNIT` to `S3L_FRACTIONS_PER_UNIT`. You have to
122   pass numbers of this format to the library functions, but of course you may chooe to use floats in other places of your program.
124 ## tips/troubleshooting
126 - Don't forget to **compile with -O3!** This drastically improves performance.
127 - Your pixel drawing function (`S3L_PIXEL_FUNCTION`) will mostly be the performance bottleneck, try to make it as fast as possible. The number of pixels is usually much higher than the number of triangles or vertices processed, so you should focus on pixels the most.
128 - In your `S3L_PIXEL_FUNCTION` **use a per-triangle cache!** This saves a lot of CPU time. Basically make sure you don't compute per-triangle values per-pixel, but only once, with the first pixel of the triangle. You can do this by remembering the last `triangleID` and only recompute the value when the ID changes. See the examples for how this is done.
129 - Some things, such as screen resolution, can be specified as static (compile time, can't change during run time) or dynamic. If you can, prefer setting them to static and a power of two (e.g. `#define S3L_RESOLUTION_X 512`) to increase performance!
130 - Seeing buggy triangles flashing in front of the camera? With the limited 32bit arithmetic far-away things may be overflowing. Defining `S3L_USE_WIDER_TYPES` to `1` will likely help. Besides this you can try to scale down the scene. If you also don't mind it, set `S3L_STRICT_NEAR_CULLING` to `1`. With a bit of work you can implement big scene rendering even without wider types by multipass rendering (first render the far away scene scaled down, then clear z-buffer and render the near part of the scene over it).
131 - Seeing triangles weirdly deform in front of the camera? See `S3L_STRICT_NEAR_CULLING == 0`, you may set it to correctly handle near plane culling for a cost of some performance, or you may try different things like subdividing your model to more triangles which may reduce the negative effect.
132 - Seeing triangles disappear randomly in sorted modes? This is because the size of the memory for triangle sorting is limited by default -- increase `S3L_MAX_TRIANGLES_DRAWN`.
133 - Sorted mode sorts triangles before drawing, but sometimes you need to control the drawing order more precisely. This can be done by reordering the objects in the scene list or rendering the scene multiple times without clearing the screen.
135 ## license
137 Everything in this repository is CC0 1.0 (public domain, https://creativecommons.org/publicdomain/zero/1.0/) + a waiver of all other IP rights (including patents and trademarks). 
139 I've written the code completely myself, from scratch. The art used in demos is either my own released under CC0 or someone else's released under CC0.
141 This project is made out of love and to be truly helpful to everyone, not for any self interest. I want it to forever stay completely in the public domain, not owned by anyone.
143 This is not mandatory but please consider supporting free software and free culture by using free licenses and/or waivers.
145 If you'd like to support me or just read something about me and my projects, visit my site: [www.tastyfish.cz](http://www.tastyfish.cz/).
147 You can also choose to use this under the following waiver which is here to just ensure more legal safety and waiving of additional IP such as patents:
149 The intent of this waiver is to ensure that this work will never be encumbered by any exclusive intellectual property rights and will always be in the public domain world-wide, i.e. not putting any restrictions on its use.
151 Each contributor to this work agrees that they waive any exclusive rights, including but not limited to copyright, patents, trademark, trade dress, industrial design, plant varieties and trade secrets, to any and all ideas, concepts, processes, discoveries, improvements and inventions conceived, discovered, made, designed, researched or developed by the contributor either solely or jointly with others, which relate to this work or result from this work. Should any waiver of such right be judged legally invalid or ineffective under applicable law, the contributor hereby grants to each affected person a royalty-free, non transferable, non sublicensable, non exclusive, irrevocable and unconditional license to this right.