Plan ahead

This is a big assignment. Start NOW, or you will probably not finish.

I recommend laying out a plan of attack before coding. To assist in your planning, here is an outline of the steps your ray tracing program will need to do:

  1. Read file format into scene data and list of objects
  2. For each pixel:
    1. Calculate pixel location in world space
    2. Calculate ray from eye point through the pixel and into the scene
    3. Calculate ray-object intersections, choose smallest/closest.
      • I reserve the right to test your code on other legal files, including ones where the spheres are different colors so the order matters.
    4. Set the pixel to that color
  3. Write all pixels out to your PPM file

Using C++

Creating a C++ 3D vector class with addition, scalar multiplication, and dot product operators will make many operations more compact and more like the vector math equivalent.

The std::list and/or std::vector data structures may also be useful for this assignment for your list of objects.

The std::map data structure may be useful to map "surface" names to the properties for that surface

If you are doing more than one primitive type, a common effective strategy is to create a generic object class with spheres and polygon classes derived from it, each with a specialized virtual method to compute the intersection of a ray with that primitive type.

Parsing

For a file format as simple as this one, it isn't necessary to get too fancy with the parsing. The easiest method is probably to read one whitespace-delimited string at a time, then compare that to each of the keywords you handle. Once you have found a keyword, read in the expected number of numbers or strings (or for "polygon", until you find one that is not a number)

Test input

It is very difficult to find the error in one of hundreds or thousands of primitives without a systematic approach and simplified data.

Note that you can easily write your own .ray files by hand, which can be very handy for debugging. I recommend that you start with a test scene looking from (0,0,0) at (0,0,2) containing a single sphere centered at (0,0,2) with a radius of 1. With a single sphere, it's easier to tell if your loading is working, and with a simple view it is easier to tell if your ray positions are correct.

Start by trying to find intersections with a 1x1 pixel image, which should give you a ray straight down the Z axis with a closest hit at (0,0,1) and second hit at (0,0,3). Move the sphere around, making sure you get the right answer when you miss it, when you are inside the sphere, or when it is behind you. Then, you can scale up to 2x2 or 3x3 images to make sure your ray position code is correct. Once you have the basics working, move up to a larger window so you can visually tell if your sphere is rendering as a sphere.

Only when you are confident of your ray direction computation and intersection code should you switch to the SPD scenes. If you still run into problems, you can successively eliminate spheres from the SPD file to find the one that is not being computed correctly

Debugging output

It is also worthwhile getting image output working early. Printing debugging values works OK for one pixel/one primitive scenes, but for larger images and scenes, outputting values other than colors at each pixel can be a valuable debugging tool (for example, visualizing ray intersection distance as color).