Is there a book which covers how to make a 3D software rendering engine from the bottom up (starting with simple pixel plotting), without DirectX and the like?
|
feedback
|
|
| |||||
feedback
|
|
I am sure there are newer books, but if I remember correctly, "Flights of Fantasy - Programming 3-D Video Games in C++" had a fairly complete implementation of a 3-D engine. | |||
|
feedback
|
|
While not strictly a book, I would recommend reading the DOOM and Quake 1 source code. Many of their techniques at the rasterization level are dated optimizations that no longer apply (and are often counter-productive) on modern hardware, but a lot of the higher-level stuff like hidden surface removal, drawing order, and data structures are still very relevant, and these games were the pioneers in the field. Another under-appreciated technique for drawing order/hidden surface removal is recursion through convex spaces connected via "portals", clipping (in both 3d and 2d) drawing of the recursed-into region by the bounds of the portal you entered it by. Personally I believe this is optimal (scales optimally to huge worlds), and this technique is applicable to accelerated 3d as well. I believe Descent 1 used this method, and the source to that is available too. | |||
|
feedback
|
