-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathShadowMap.java
executable file
·280 lines (230 loc) · 11.4 KB
/
ShadowMap.java
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
package jToolkit4FixedPipeline.lighting.shadow;
import org.lwjgl.BufferUtils;
import org.lwjgl.opengl.Display;
import org.lwjgl.opengl.GLContext;
import org.lwjgl.util.vector.Matrix4f;
import org.lwjgl.util.vector.Vector3f;
import java.nio.FloatBuffer;
import java.util.logging.Level;
import java.util.logging.Logger;
import static org.lwjgl.opengl.ARBShadowAmbient.GL_TEXTURE_COMPARE_FAIL_VALUE_ARB;
import static org.lwjgl.opengl.EXTFramebufferObject.*;
import static org.lwjgl.opengl.GL11.*;
import static org.lwjgl.opengl.GL12.GL_CLAMP_TO_EDGE;
import static org.lwjgl.opengl.GL14.*;
import static org.lwjgl.util.glu.GLU.gluLookAt;
import static org.lwjgl.util.glu.GLU.gluPerspective;
/**
*
* @author Astemir Eleev
*/
public class ShadowMap {
// This represents if the clients computer has the ambient shadow extention
private static boolean ambientShadowsAvailable = false;
// Disable this if your computer doesn't support the FBO extension
private static boolean useFBO = true;
// The amount of polygon offset to use
private static float factor = 4;
private static float shadowTransparanceIntensity = 0.1f;
public static int maxTextureSize;
private static float sceneBoundingRadius = 90.0F;
private static int shadowWidth = 512;
private static int shadowHeight = 512;
private static int frameBuffer;
private static int renderBuffer;
private static FloatBuffer lightPosition = BufferUtils.createFloatBuffer(4);
private static FloatBuffer tempBuffer = BufferUtils.createFloatBuffer(4);
private static FloatBuffer lightModelView = BufferUtils.createFloatBuffer(16);
private static FloatBuffer lightProjection = BufferUtils.createFloatBuffer(16);
private static Matrix4f lightProjectionTemp = new Matrix4f();
private static Matrix4f lightModelViewTemp = new Matrix4f();
private static Matrix4f textureMatrix = new Matrix4f();
public static void initShadow (final int shadowWidth, final int shadowHeight, final float shadowTransparanceIntensity, final float polyOffset, final float sceneBoundingRadius, final float[] lPosition) {
ShadowMap.shadowWidth = shadowWidth;
ShadowMap.shadowHeight = shadowHeight;
ShadowMap.shadowTransparanceIntensity = shadowTransparanceIntensity;
ShadowMap.factor = polyOffset;
ShadowMap.sceneBoundingRadius = sceneBoundingRadius;
lightPosition.put(lPosition);
lightPosition.flip();
}
/**
* Sets up the OpenGL states.
*/
public static void initGLForShadowMapping() {
int maxRenderbufferSize = glGetInteger(GL_MAX_RENDERBUFFER_SIZE_EXT);
StringBuilder loggerERROR = new StringBuilder();
StringBuilder loggerINFO = new StringBuilder();
if (!GLContext.getCapabilities().OpenGL14 && GLContext.getCapabilities().GL_ARB_shadow) {
loggerERROR.append("\nCan't create shadows at all. Requires OpenGL 1.4 or the GL_ARB_shadow extension");
System.exit(0);
}
if (GLContext.getCapabilities().GL_ARB_shadow_ambient) {
ambientShadowsAvailable = true;
loggerINFO.append("\nAmbient Shadows are available");
} else {
loggerERROR.append("\nGL_ARB_shadow_ambient extension not available.\n An extra rendering pass will be required.");
}
if (GLContext.getCapabilities().OpenGL20|| GLContext.getCapabilities().GL_EXT_framebuffer_object) {
loggerINFO.append("\nHigher quality shadows are available");
}
maxTextureSize = glGetInteger(GL_MAX_TEXTURE_SIZE);
// Check to see if the maximum texture size is bigger than 8192. Performance drops too much if it much bigger than that.
if (maxTextureSize > 8192) {
maxTextureSize = 8192;
if (maxRenderbufferSize < maxTextureSize) {
maxTextureSize = maxRenderbufferSize;
}
}
if ((shadowWidth > maxTextureSize || shadowHeight > maxRenderbufferSize) ||
(shadowWidth > maxRenderbufferSize && shadowHeight > maxRenderbufferSize)) {
shadowHeight = maxRenderbufferSize;
shadowWidth = maxRenderbufferSize;
}
if (useFBO) {
shadowWidth = maxTextureSize;
shadowHeight = maxTextureSize;
}
glClearColor(0.0F, 0.0F, 0.0F, 1.0F);
glEnable(GL_DEPTH_TEST);
glDepthFunc(GL_LEQUAL);
glPolygonOffset(factor, 0.0F);
glShadeModel(GL_SMOOTH);
glEnable(GL_LIGHTING);
glEnable(GL_COLOR_MATERIAL);
glEnable(GL_NORMALIZE);
// glEnable(GL_LIGHT0);
// Setup some texture states
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
glTexParameteri(GL_TEXTURE_2D, GL_DEPTH_TEXTURE_MODE, GL_INTENSITY);
// If ambient shadows are availible then we can skip a rendering pass.
if (ambientShadowsAvailable) {
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_COMPARE_FAIL_VALUE_ARB, shadowTransparanceIntensity);
}
glTexGeni(GL_S, GL_TEXTURE_GEN_MODE, GL_EYE_LINEAR);
glTexGeni(GL_T, GL_TEXTURE_GEN_MODE, GL_EYE_LINEAR);
glTexGeni(GL_R, GL_TEXTURE_GEN_MODE, GL_EYE_LINEAR);
glTexGeni(GL_Q, GL_TEXTURE_GEN_MODE, GL_EYE_LINEAR);
// If we are using a FBO, we need to setup the framebuffer.
if (useFBO) {
frameBuffer = glGenFramebuffersEXT();
glBindFramebufferEXT(GL_FRAMEBUFFER_EXT, frameBuffer);
renderBuffer = glGenRenderbuffersEXT();
glBindRenderbufferEXT(GL_RENDERBUFFER_EXT, renderBuffer);
glRenderbufferStorageEXT(GL_RENDERBUFFER_EXT, GL_DEPTH_COMPONENT32, maxTextureSize, maxTextureSize);
glFramebufferRenderbufferEXT(GL_FRAMEBUFFER_EXT, GL_DEPTH_ATTACHMENT_EXT, GL_RENDERBUFFER_EXT, renderBuffer);
glDrawBuffer(GL_NONE);
glReadBuffer(GL_NONE);
int FBOStatus = glCheckFramebufferStatusEXT(GL_FRAMEBUFFER_EXT);
if (FBOStatus != GL_FRAMEBUFFER_COMPLETE_EXT) {
loggerERROR.append("\nFramebuffer error");
}
glBindFramebufferEXT(GL_FRAMEBUFFER_EXT, 0);
}
loggerINFO.append("\nMaximum texture size: ").append(maxTextureSize).append("\nMaximum renderbuffer size: ").append(maxRenderbufferSize);
Logger.getLogger(ShadowMap.class.getName()).log(Level.INFO, loggerINFO.toString());
if (loggerERROR.length() != 0) {
Logger.getLogger(ShadowMap.class.getName()).log(Level.WARNING, loggerERROR.toString());
}
}
public static void startGenerate () {
float lightToSceneDistance, nearPlane, fieldOfView;
lightToSceneDistance = (float) Math.sqrt(lightPosition.get(0) * lightPosition.get(0) + lightPosition.get(1) *
lightPosition.get(1) + lightPosition.get(2) * lightPosition.get(2));
nearPlane = lightToSceneDistance - sceneBoundingRadius;
fieldOfView = (float) Math.toDegrees(2.0F * Math.atan(sceneBoundingRadius / lightToSceneDistance));
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
gluPerspective(fieldOfView, 1.0F, nearPlane, nearPlane + (2.0F * sceneBoundingRadius));
glGetFloat(GL_PROJECTION_MATRIX, lightProjection);
glMatrixMode(GL_MODELVIEW);
glLoadIdentity();
gluLookAt(lightPosition.get(0), lightPosition.get(1), lightPosition.get(2), 0.0F, 0.0F, 0.0F, 0.0F, 1.0F, 0.0F);
glGetFloat(GL_MODELVIEW_MATRIX, lightModelView);
glViewport(0, 0, shadowWidth, shadowHeight);
if (useFBO) glBindFramebufferEXT(GL_FRAMEBUFFER_EXT, frameBuffer);
glClear(GL_DEPTH_BUFFER_BIT);
// Set rendering states to the minimum required, for speed.
// glShadeModel(GL_FLAT);
glShadeModel(GL_SMOOTH);
glDisable(GL_LIGHTING);
glDisable(GL_COLOR_MATERIAL);
glDisable(GL_NORMALIZE);
glColorMask(false, false, false, false);
glEnable(GL_POLYGON_OFFSET_FILL);
}
public static void endGenerate () {
// instead of GL_DEPTH_COMPONENT_32 there was just GL_DEPTH_COMPONENT
glCopyTexImage2D(GL_TEXTURE_2D, 0, GL_DEPTH_COMPONENT24, 0, 0, shadowWidth, shadowHeight, 0);
// Unbind the framebuffer if we are using them.
if (useFBO) glBindFramebufferEXT(GL_FRAMEBUFFER_EXT, 0);
// Setup the rendering states.
glShadeModel(GL_SMOOTH);
glEnable(GL_LIGHTING);
glEnable(GL_COLOR_MATERIAL);
glEnable(GL_NORMALIZE);
glColorMask(true, true, true, true);
glDisable(GL_POLYGON_OFFSET_FILL);
lightProjectionTemp.load(lightProjection);
lightModelViewTemp.load(lightModelView);
lightProjection.flip();
lightModelView.flip();
Matrix4f tempMatrix = new Matrix4f();
tempMatrix.setIdentity();
tempMatrix.translate(new Vector3f(0.5F, 0.5F, 0.5F));
tempMatrix.scale(new Vector3f(0.5F, 0.5F, 0.5F));
Matrix4f.mul(tempMatrix, lightProjectionTemp, textureMatrix);
Matrix4f.mul(textureMatrix, lightModelViewTemp, tempMatrix);
Matrix4f.transpose(tempMatrix, textureMatrix);
}
public static void startRender () {
glEnable(GL_TEXTURE_2D);
glTexEnvi(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_COMPARE_MODE, GL_COMPARE_R_TO_TEXTURE);
glEnable(GL_TEXTURE_GEN_S);
glEnable(GL_TEXTURE_GEN_T);
glEnable(GL_TEXTURE_GEN_R);
glEnable(GL_TEXTURE_GEN_Q);
tempBuffer.put(0, textureMatrix.m00);
tempBuffer.put(1, textureMatrix.m01);
tempBuffer.put(2, textureMatrix.m02);
tempBuffer.put(3, textureMatrix.m03);
glTexGen(GL_S, GL_EYE_PLANE, tempBuffer);
tempBuffer.put(0, textureMatrix.m10);
tempBuffer.put(1, textureMatrix.m11);
tempBuffer.put(2, textureMatrix.m12);
tempBuffer.put(3, textureMatrix.m13);
glTexGen(GL_T, GL_EYE_PLANE, tempBuffer);
tempBuffer.put(0, textureMatrix.m20);
tempBuffer.put(1, textureMatrix.m21);
tempBuffer.put(2, textureMatrix.m22);
tempBuffer.put(3, textureMatrix.m23);
glTexGen(GL_R, GL_EYE_PLANE, tempBuffer);
tempBuffer.put(0, textureMatrix.m30);
tempBuffer.put(1, textureMatrix.m31);
tempBuffer.put(2, textureMatrix.m32);
tempBuffer.put(3, textureMatrix.m33);
glTexGen(GL_Q, GL_EYE_PLANE, tempBuffer);
}
public static void endRender () {
glDisable(GL_ALPHA_TEST);
glDisable(GL_TEXTURE_2D);
glDisable(GL_TEXTURE_GEN_S);
glDisable(GL_TEXTURE_GEN_T);
glDisable(GL_TEXTURE_GEN_R);
glDisable(GL_TEXTURE_GEN_Q);
glDisable(GL_TEXTURE_2D);
if (glGetError() != GL_NO_ERROR) System.out.println("An OpenGL error occurred");
}
/**
* Cleanup after the program.
*/
public static void cleanUp() {
glDeleteFramebuffersEXT(frameBuffer);
glDeleteRenderbuffersEXT(renderBuffer);
Display.destroy();
}
}