originally posted at https://canmom.tumblr.com/post/159659...
I spent several hours splitting the code into multiple files and headers that could be linked together.
The next step was to correct my program’s handling of colour. This meant rewriting the shading function to return a 3-vector of colour values instead of a single value, to use a 3-vector for the albedo, and to use the already-defined 3-vector for light colour.
I wanted to return a 3-vector of unsigned chars, but for some reason GLM removed that type a few version ago. So we have the kludgy solution of two casts to different types when really there should only be one.
Currently changing the colours requires recompiling the code, but the results are pretty sweet.
First, white light on white Suzanne:
Second, a white Suzanne with a red light and a green light on different sides, showing the colours mixing (both pointing down-ish).
Like holy shit??? that’s so cool
Naturally shining a red light on a green Suzanne results in a black frame.
I need a lights file
Anyway I need more robust ways to specify lighting setups instead of hardcoding it and recompiling every time I want to change the lighting setup. Wavefront .obj does not have a format for lights.
The easiest way seems to be to use an existing format, in this case CSV. So we’re going to add another header-only parser library.
First I’m splitting the obj loader into a new ‘fileloader’ file, then I’ll write the CSV parser in there.
…that proved easy enough.
Now, a CSV parser library. At first I was considering this one, but I found another one on Conan.
The parser is very easy to write:
I added a command line option to parse a CSV file, and created a simple three-point lighting setup in a CSV file, and the results are satisfying:
mmmm that sure is a bland studio lighting setup!
the apparent shadows round the eyes are an illusion: those triangles are simply not facing any lights. implementing shadows would be an interesting challenge, and I’d have to learn about shadow buffers to do it. possible in principle, but it will take some reading…
so the features I’m considering adding before I call this project “done”:
- diffuse maps (texture coordinate interpolation)
- smooth shading (vertex normal interpolation)
- shadow buffers
- specularity (phong? or learn more modern PBR BRDFs?)
but at some point soon though I need to call this a complete project and move on to a real graphics API like OpenGL and Vulkan.
Comments