-
Notifications
You must be signed in to change notification settings - Fork 4
Non Lisp Specific Resources
Many challenges in game development are relevant to all languages. The links below are not necessarily about Lisp but may be very useful. These links are those that are suitably lisp agnostic or are written in another language entirely.
- Functional Reactive Programming with Yampa (Haskell)
- John Carmack on functional programming in c++
- HaGPipe A DSL for programming the entire graphical pipeline (Haskell) (pdf)
- Functional Programming and 3D Games (pdf) (haskell)
- Opengl Resources
- Modern OpenGL (gl) (wiki or pdf) This creative commons wikibook is a good place to get started with opengl as it uses v2.1 which is common and also the programmable pipeline, which is essential to modern game graphics.
- L-Systems, Twinning Plants, Lisp (postscript) (cmucl) LSystems were introduced as a mathematical model for cellular plant growth and are commonly used in the games industry for generating all manner of plants from tiny flowers to palm trees.
Some people have collected a fantastic swathe of links themselves. Rather than reproduce them all here go have a gander at their sites.
Some code is so well written it can be read for inspiration for your own Lisp projects, if you want to see working implementations of game elements, see the following
- Ogre3D Ogre is written in c++ and is incredibly clean and readable as well as being open source.
Games are made of math! The better grasp you have on how the maths works, the easier some of the mental juggling of game mechanics can be.
- Khan Academy - Linear Algebra This is not game orientated but a lot of what you learn here will be directly relevent to game programming. Also Khan's teaching style is excelent.
- Martin Baker's All-Inclusive Learning Site For 3D Math, Graphics, Physics, Computational Geometry, And More. Includes topics on learning how to program games.
- Simple Quaternion-based Camera
- Matrix and Quaternion FAQ lots of info on matrix transformations & quaternion rotations.
- https://pomax.github.io/bezierinfo/ A Primer on Bézier Curves
- https://www.geometrictools.com/Documentation/Documentation.html lots of info on math for graphics
Although there isn't much lisp specific info in the sites below, many issues crop up in all languages so these are worth a gander.
Unfortunately, unless you are some kind of digital bloodhound, you may struggle to piece together all the disparate information regarding game development online. Sometimes you just can't beat a good book.
- Essential Mathematics for Games and Interactive Applications
- Game Engine Architecture
- Real-Time Rendering
These papers are of neat, interesting, or seminal works concerning the field of computer graphics, game design, game theory, mathematics, sound, sound design, art materials and techniques, and anything else related to game design in all aspects.
If a paper describes an algorithm and it states it is patent free, it should be notated in the linked description. Also, please denote the year of the paper.
- Splat Based Rendering
http://blog.selfshadow.com/publications/s2013-shading-course/karis/s2013_pbs_epic_notes_v2.pdf
https://fgiesen.wordpress.com/2011/07/09/a-trip-through-the-graphics-pipeline-2011-index/ this is a near unparalled resourse on how your GL/DirectX and your GPU are doing stuff. This is still relevent today (2016)
https://www.cs.rice.edu/~jwarren/papers/dmc.pdf a big improvement over marching cubes
A big thank-you to all those who wrote the articles and compiled link pages (big shout out to ogre wiki also which has been the source for a load of the above)