Hello there =) Here is my second version of the ErwanEngine, implemented in C using opencl to implement a 3D engine. It has been developped from scratch without tutorial.
Currently in developpement. Some strange behaviours could occure.
This is an early buggy access
You would probably need to install :
- gcc
- freeglut3
- opencl
It may depends on you hardware and configuration, for me it was packages :
apt install gcc freeglut3-dev opencl-headers ocl-icd-opencl-dev intel-opencl-icd ndidia-opencl-icd
The lasts two packages is related to you GPU model.
Depending on you hardware, you could have to change DEVICE_ID and PLATFORM_ID in order to select you GPU (check firsts line of "main.c"). Mine is intel integrated Intel(R) UHD Graphics 620.
A Makefile is included in the project. It basically just compile and run the program. You may still need to install packages by yourself (see install section)
You can use the command :
$ gcc main.c -lm -lOpenCL -lpthread -lGL -lglut
./a.out [--optionnals arguments]
optional:
--SCN [OBJ_FILE_TO_LOAD] (default:"scn/default/default.obj") <- you should use one of the Availables scenes (see section "Available scenes").
--FOV [FIELD_OF_VIEW_IN_DEGREE] (default:70)
--RES [RESOLUTION_IN_PX] (default:800x600)
debug (experimental, notes for myself):
--XYZ
--GINFO
--KINFO
--HINFO
--RINFO
This is what files you can use using "--SCN=" argument.
default --SCN=scn/default/default.obj
minecraft --SCN=scn/minecraft/minecraft.obj
ball --SCN=scn/ball/ball.obj
cheval --SCN=scn/cheval/cheval.obj
crate --SCN=scn/crate/crate.obj
maxwell --SCN=scn/maxwell/maxwell.obj
tenet --SCN=scn/tenet/tenet.obj
test --SCN=scn/test/test.obj
To use you own file, obj file should be triangulated, new material should be used on new object only (no multiples material for one object), textures must be in ppm format (P6), and not larger than 1000x1000px. RGB:0xFF00FF is reserved for transparency.
`zqsd` -> move
`space` -> go up
`e` -> go down
`oklm` -> rotate camera
`r` -> process render of global illumination
`t/g` -> increase/decrease sun x vector property
`y/h` -> increase/decrease sun y vector property
`u/j` -> increase/decrease sun z vector property
`x`
This will also save last frame into _output/output.ppm and erase last one. Consider exporting as png using an external tool (ppm format is really row).