Skip to content

maricard18/42-miniRT

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 

Repository files navigation

miniRT

This project was graded 125/100.

📝 Authorship

🧬 Cloning

To successfully clone this repository, use this command

git clone https://github.com/maricard18/42-miniRT.git 

📒 About

Rendering a 3-dimensional image can be achieved using Ray Tracing, an expensive technique, which is based on casting rays from the camera into the space. If a ray intersects a shape, it illuminates it, based on both the shape's characteristics and also the environment around it as well.

This isn't an advanced Ray Tracer, since it's implemented in C, but it definitely is functional and has a bit of our own bonus in it too!

Mandatory Part

Images

The mandatory part features:

- Map file parser
- Ambient and diffuse lighting
- Display of planes, spheres and cylinders
- Shapes intersections
- Hard shadows
- Ray tracing (without recursive steps)

Bonus Part

Images

The bonus part features the mandatory and also the following:

- Phong Illumination Model (ambient + diffuse + specular)
- Checkerboarded planes
- Multi-spot lights
- Colored light sources
- Multithreaded rendering (our bonus)
- Interectable menu (our bonus)

🎥 Demo

Here's a small demo with one of our maps.

miniRT.mp4

🚨 Disclaimer

At 42, the C projects are built following a bunch of rules that enforce good coding style, stated in a file called Norminette. Some of them are:

- No for, do while, switch, case or goto are allowed
- No more than 25 lines per function and 5 functions per file
- No assigns and declarations in the same line (unless static)
- No more than 5 local functions in 1 function
- No more than 4 parameters in 1 function
... 

📦 Compilation

To compile the mandatory part of the ray tracer you should run make.

This rule will generate a miniRT file, which is the zipped version of all the object files. Running make bonus will compile the bonus part of the ray tracer.

Note The rules make fast and make bfast take advantage of parallel compilation to build the mandatory and bonus part, respectively.

To launch the executable you should follow this syntax...

$ ./miniRT scene_name

Where scene_name is the name of a file that represents the world map. The scene must have a .rt extension. You can find example scenes in the scenes folder.

Warning On the macOS mlx version, the mlx_destroy_display function does not exist, which will cause a compilation error, unless you comment it (world.c and world_bonus.c)

🕹️ Controls

Mandatory:

  • W - increments the camera y coordinate
  • A - decrements the camera x coordinate
  • S - decrements the camera y coordinate
  • D - increments the camera x coordinate

Bonus:

  • M - toggles/untoggles the menu, which displays several other commands you can try

💫 Testing

This project was tested using self-made tests.


Feel free to ask me any questions through Slack (maricard).
GitHub @maricard18  ·  Linkedin Mario Henriques  ·  42 Porto

Packages

No packages published

Languages

  • C 86.0%
  • Objective-C 5.7%
  • Roff 4.2%
  • Makefile 3.0%
  • C++ 0.7%
  • Shell 0.3%
  • Other 0.1%