first render
[retroray] / src / scene.h
1 /*
2 RetroRay - integrated standalone vintage modeller/renderer
3 Copyright (C) 2023  John Tsiombikas <nuclear@mutantstargoat.com>
4
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program.  If not, see <https://www.gnu.org/licenses/>.
17 */
18 #ifndef SCENE_H_
19 #define SCENE_H_
20
21 #include "cgmath/cgmath.h"
22 #include "material.h"
23
24 enum {
25         OBJ_NULL,
26         OBJ_SPHERE,
27         OBJ_CSG
28 };
29
30 #define OBJ_COMMON_ATTR \
31         int type; \
32         char *name; \
33         cgm_vec3 pos, scale, pivot; \
34         cgm_quat rot; \
35         float xform[16], inv_xform[16]; \
36         int xform_valid; \
37         struct material *mtl
38
39 struct object {
40         OBJ_COMMON_ATTR;
41 };
42
43 struct sphere {
44         OBJ_COMMON_ATTR;
45         float rad;
46 };
47
48 struct csgnode {
49         OBJ_COMMON_ATTR;
50         int op;
51         struct object *subobj;  /* darr */
52 };
53
54 struct light {
55         char *name;
56         cgm_vec3 pos;
57         cgm_vec3 color, orig_color;
58         float energy;
59 };
60
61 struct scene {
62         struct object **objects;        /* darr */
63         struct light **lights;
64         struct material **mtl;          /* darr */
65 };
66
67 struct rayhit;  /* declared in rt.h */
68
69 struct scene *create_scene(void);
70 void free_scene(struct scene *scn);
71
72 int scn_add_object(struct scene *scn, struct object *obj);
73 int scn_rm_object(struct scene *scn, int idx);
74 int scn_num_objects(const struct scene *scn);
75 int scn_object_index(const struct scene *scn, const struct object *obj);
76
77 int scn_add_material(struct scene *scn, struct material *mtl);
78 int scn_rm_material(struct scene *scn, struct material *mtl);
79 int scn_num_materials(const struct scene *scn);
80 int scn_material_index(const struct scene *scn, const struct material *mtl);
81 struct material *scn_find_material(const struct scene *scn, const char *mname);
82
83 int scn_add_light(struct scene *scn, struct light *mtl);
84 int scn_rm_light(struct scene *scn, struct light *mtl);
85 int scn_num_lights(const struct scene *scn);
86 int scn_light_index(const struct scene *scn, const struct light *mtl);
87 struct light *scn_find_light(const struct scene *scn, const char *mname);
88
89 int scn_intersect(const struct scene *scn, const cgm_ray *ray, struct rayhit *hit);
90
91 /* --- objects --- */
92 struct object *create_object(int type);
93 void free_object(struct object *obj);
94
95 int set_object_name(struct object *obj, const char *name);
96
97 void calc_object_matrix(struct object *obj);
98
99 /* --- lights --- */
100 struct light *create_light(void);
101 void free_light(struct light *lt);
102
103 int set_light_name(struct light *lt, const char *name);
104 void set_light_color(struct light *lt, float r, float g, float b);
105 void set_light_energy(struct light *lt, float e);
106
107 #endif  /* SCENE_H_ */