-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrenderer.h
47 lines (36 loc) · 1.45 KB
/
renderer.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#pragma once
#include <glad/glad.h>
#include <GLFW/glfw3.h>
#include "scene.h"
#include "frame_buffer.h"
class TillenRenderer
{
public:
TillenFrameBuffer* frame_buffer;
TillenScene* scene;
int window_width;
int window_height;
TillenVec3 camera_pos;
TillenVec3 camera_forward;
TillenVec3 camera_up;
TillenVec3 camera_right;
double near_distance;
double far_distance;
GLFWwindow* window;
unsigned int frame_texture;
unsigned int shader_program_id;
unsigned int vbo, vao, ebo;
TillenRenderer();
~TillenRenderer();
int init(int ww, int wh, TillenFrameBuffer* fb, TillenScene* s);
int process_input();
TillenVec2 canvas_to_viewport(int x, int y);
TillenColorRGBA comput_light(const TillenVec3& position, const TillenVec3& normal, const TillenVec3& light_direction, const TillenVec3& view_position, const TillenColorRGBA& light_color, double shiny);
TillenColorRGBA comput_point_light(const TillenVec3& position, const TillenVec3& normal, const PointLight& pl, double shiny);
TillenColorRGBA comput_directional_light(const TillenVec3& position, const TillenVec3& normal, const DirectionalLight& dl, double shiny);
int get_closest_intersection_sphere(double& res_t, int& res_sphere_index, const TillenVec3& start_pos, const TillenVec3& end_pos, double min_t, double max_t);
TillenColorRGBA ray_trace(const TillenVec3& start_pos, const TillenVec3& end_pos, double min_t, double max_t, int recursive_depth);
int draw_scene();
int render_loop();
int exit();
};