-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTexture.cpp
123 lines (110 loc) · 3.46 KB
/
Texture.cpp
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/******************************************************************************
* @file Texture.cpp
* @author Andrés Gavín Murillo, 716358
* @author Abel Naya Forcano, 544125
* @date Enero 2020
* @coms Informática Gráfica - Trabajo 4: Path tracer
******************************************************************************/
#include <cmath>
#include "Texture.hpp"
using namespace std;
Texture colored(const Color &color) {
return {
.type = Texture::COLORED,
.colorType = Texture::SOLID_COLOR,
.color = {.solidColor = color}
};
}
Texture colored(const VertexColor &color) {
return Texture{
.type = Texture::COLORED,
.colorType = Texture::VERTEX_COLOR,
.color = {.vertexColor = color}
};
}
// 2D Textures
Texture sin2D(const Color &color) {
return {
.type = Texture::SIN_2D,
.colorType = Texture::SOLID_COLOR,
.color = {.solidColor = color}
};
}
Texture sin2D(const VertexColor &color) {
return Texture{
.type = Texture::SIN_2D,
.colorType = Texture::VERTEX_COLOR,
.color = {.vertexColor = color}
};
}
Texture sin22D(const Color &color) {
return {
.type = Texture::SIN2_2D,
.colorType = Texture::SOLID_COLOR,
.color = {.solidColor = color}
};
}
Texture sin22D(const VertexColor &color) {
return Texture{
.type = Texture::SIN2_2D,
.colorType = Texture::VERTEX_COLOR,
.color = {.vertexColor = color}
};
}
Texture sinCos2D(const Color &color) {
return {
.type = Texture::SIN_COS_2D,
.colorType = Texture::SOLID_COLOR,
.color = {.solidColor = color}
};
}
Texture sinCos2D(const VertexColor &color) {
return Texture{
.type = Texture::SIN_COS_2D,
.colorType = Texture::VERTEX_COLOR,
.color = {.vertexColor = color}
};
}
Color getColor(const Texture &texture, const HCoord &position) {
float r, g, b;
if (texture.colorType == Texture::SOLID_COLOR) {
r = texture.color.solidColor.r;
g = texture.color.solidColor.g;
b = texture.color.solidColor.b;
}
else {
Color c = getColor(texture.color.vertexColor, position);
r = c.r;
g = c.g;
b = c.b;
}
switch (texture.type) {
case Texture::SIN_2D: {
return {
r * static_cast<float>(abs(sin(position.x()))),
g * static_cast<float>(abs(sin(position.y()))),
b * static_cast<float>(abs(sin(position.z())))
};
}
case Texture::SIN_COS_2D: {
return {
r * static_cast<float>(abs(sin(position.x()) * cos(position.x()))),
g * static_cast<float>(abs(sin(position.y()) * cos(position.y()))),
b * static_cast<float>(abs(sin(position.z()) * cos(position.z())))
};
}
case Texture::SIN2_2D: {
return {
r * static_cast<float>(abs(sin(position.x() * position.y() * position.z()))),
g * static_cast<float>(abs(sin(position.x() * position.y() * position.z()))),
b * static_cast<float>(abs(sin(position.x() * position.y() * position.z())))
};
}
default:
return {
r,
g,
b
};
}
}