-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDrawingMethods.java
288 lines (244 loc) · 9.54 KB
/
DrawingMethods.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
281
282
283
284
285
286
287
288
package tasks;
import jToolkit4FixedPipeline.vector.Vector3f;
import org.lwjgl.BufferUtils;
import java.nio.FloatBuffer;
import static org.lwjgl.opengl.GL11.*;
import static org.lwjgl.opengl.GL15.*;
/**
* Created with IntelliJ IDEA.
* User: Astemir Eleev
* Date: 8/25/13
* Time: 10:19 AM
* To change this template use File | Settings | File Templates.
*/
public class DrawingMethods {
// data fields only for vbo
private FloatBuffer vertexData;
private FloatBuffer colorData;
private int amountOfVertices;
private int vertexSize;
private int colorSize;
private int vboVertexHandle;
private int vboColorHandle;
/**
*
* This method simply draws a 3d pyramid using immediate mode.
* @param size - of pyramid
* @param position - physical position
*/
public void immediateMode (final float size, final Vector3f position) {
glPushMatrix(); {
glTranslatef(position.getX(), position.getY(), position.getZ());
glScalef(size, size, size);
glShadeModel(GL_SMOOTH);
glBegin(GL_TRIANGLES); {
// 1st side
glColor3f(1.0f, .0f, .0f); glVertex3f(-1, -1, 1);
glColor3f(.0f, 1.0f, .0f); glVertex3f(1, -1, 1);
glColor3f(.0f, .0f, 1.0f); glVertex3f(.0f, 1.0f, 0.0f);
// 2d side
glColor3f(1.0f, .0f, .0f); glVertex3f(-1, -1, 1);
glColor3f(.0f, 1.0f, .0f); glVertex3f(.0f, -1.0f, -1.0f);
glColor3f(.0f, .0f, 1.0f); glVertex3f(.0f, 1.0f, .0f);
// 3d side
glColor3f(.0f, 1.0f, .0f); glVertex3f(1, -1, 1);
glColor3f(.0f, 1.0f, .0f); glVertex3f(.0f, -1.0f, -1.0f);
glColor3f(.0f, .0f, 1.0f); glVertex3f(.0f, 1.0f, .0f);
// bottom side
glColor3f(1.0f, .0f, .0f); glVertex3f(-1, -1, 1);
glColor3f(.0f, 1.0f, .0f); glVertex3f(.0f, -1.0f, -1.0f);
glColor3f(.0f, 1.0f, .0f); glVertex3f(1, -1, 1);
}
glEnd();
}
glPopMatrix();
}
/**
* Simple pyramid drawing by display lists technique. It means that before rendering object we compile this object, and
* after that simply call OGLs functions which will draw compiled object.
* @param size - of pyramid
* @param position - physical position
* @param displayListIndex - integer index of this primitive. Simply after compilation of this code call function
* glCallList(YOUR_INDEX); in OGLs pipeline for drawing this object
*/
public void displayLists (final float size, final Vector3f position, final int displayListIndex) {
glPushMatrix(); {
glTranslatef(position.getX(), position.getY(), position.getZ());
glScalef(size, size, size);
glShadeModel(GL_SMOOTH);
glGenLists(displayListIndex);{
glBegin(GL_TRIANGLES); {
// 1st side
glColor3f(1.0f, .0f, .0f); glVertex3f(-1.0f, -1.0f, 1.0f);
glColor3f(.0f, 1.0f, .0f); glVertex3f(1.0f, -1.0f, 1.0f);
glColor3f(.0f, .0f, 1.0f); glVertex3f(.0f, 1.0f, 0.0f);
// 2d side
glColor3f(1.0f, .0f, .0f); glVertex3f(-1.0f, -1.0f, 1.0f);
glColor3f(.0f, 1.0f, .0f); glVertex3f(.0f, -1.0f, -1.0f);
glColor3f(.0f, .0f, 1.0f); glVertex3f(.0f, 1.0f, .0f);
// 3d side
glColor3f(.0f, 1.0f, .0f); glVertex3f(1.0f, -1.0f, 1.0f);
glColor3f(.0f, 1.0f, .0f); glVertex3f(.0f, -1.0f, -1.0f);
glColor3f(.0f, .0f, 1.0f); glVertex3f(.0f, 1.0f, .0f);
// bottom side
glColor3f(1.0f, .0f, .0f); glVertex3f(-1.0f, -1.0f, 1.0f);
glColor3f(.0f, 1.0f, .0f); glVertex3f(.0f, -1.0f, -1.0f);
glColor3f(.0f, 1.0f, .0f); glVertex3f(1.0f, -1.0f, 1.0f);
}
glEnd();
}
glEndList();
}
glPopMatrix();
}
/**
* Initialization method for vao rendering mode
*/
public void initVertexArrayObject () {
amountOfVertices = 12;
vertexSize = 3;
colorSize = 3;
vertexData = BufferUtils.createFloatBuffer(amountOfVertices * vertexSize);
vertexData.put(new float[] {
// 1st
-1.0f, -1.0f, 1.0f,
1.0f, -1.0f, 1.0f,
.0f, 1.0f, 0.0f,
// 2d
-1.0f, -1.0f, 1.0f,
.0f, -1.0f, -1.0f,
.0f, 1.0f, .0f,
// 3d
1.0f, -1.0f, 1.0f,
.0f, -1.0f, -1.0f,
.0f, 1.0f, .0f,
// bottom
-1.0f, -1.0f, 1.0f,
.0f, -1.0f, -1.0f,
1.0f, -1.0f, 1.0f
});
vertexData.flip();
colorData = BufferUtils.createFloatBuffer(amountOfVertices * colorSize);
colorData.put(new float[] {
// 1st triangle
1.0f, .0f, .0f,
.0f, 1.0f, .0f,
.0f, .0f, 1.0f,
// 2nd triangle
1.0f, .0f, .0f,
.0f, 1.0f, .0f,
.0f, .0f, 1.0f,
// 3d triangle
.0f, 1.0f, .0f,
.0f, 1.0f, .0f,
.0f, .0f, 1.0f,
// bottom triangle
1.0f, .0f, .0f,
.0f, 1.0f, .0f,
.0f, 1.0f, .0f
});
colorData.flip();
glEnableClientState(GL_VERTEX_ARRAY);
glEnableClientState(GL_COLOR_ARRAY);
glVertexPointer(vertexSize, 0, vertexData);
glColorPointer(colorSize, 0, colorData);
}
public void drawVertexArrayObject (final float size, final Vector3f position) {
glPushMatrix(); {
glTranslated(position.getX(), position.getY(), position.getZ());
glScalef(size, size, size);
glEnableClientState(GL_VERTEX_ARRAY);
glEnableClientState(GL_COLOR_ARRAY);
glDrawArrays(GL_TRIANGLES, 0, amountOfVertices);
glDisableClientState(GL_VERTEX_ARRAY);
glDisableClientState(GL_COLOR_ARRAY);
}
glPopMatrix();
}
/**
* Initialization method for vbo rendering mode
*/
public void initVertexBufferObject () {
amountOfVertices = 12;
vertexSize = 3;
colorSize = 3;
vertexData = BufferUtils.createFloatBuffer(amountOfVertices * vertexSize);
vertexData.put(new float[] {
// 1st
-1.0f, -1.0f, 1.0f,
1.0f, -1.0f, 1.0f,
.0f, 1.0f, 0.0f,
// 2d
-1.0f, -1.0f, 1.0f,
.0f, -1.0f, -1.0f,
.0f, 1.0f, .0f,
// 3d
1.0f, -1.0f, 1.0f,
.0f, -1.0f, -1.0f,
.0f, 1.0f, .0f,
// bottom
-1.0f, -1.0f, 1.0f,
.0f, -1.0f, -1.0f,
1.0f, -1.0f, 1.0f
});
vertexData.flip();
colorData = BufferUtils.createFloatBuffer(amountOfVertices * colorSize);
colorData.put(new float[] {
// 1st triangle
1.0f, .0f, .0f,
.0f, 1.0f, .0f,
.0f, .0f, 1.0f,
// 2nd triangle
1.0f, .0f, .0f,
.0f, 1.0f, .0f,
.0f, .0f, 1.0f,
// 3d triangle
.0f, 1.0f, .0f,
.0f, 1.0f, .0f,
.0f, .0f, 1.0f,
// bottom triangle
1.0f, .0f, .0f,
.0f, 1.0f, .0f,
.0f, 1.0f, .0f
});
colorData.flip();
vboVertexHandle = glGenBuffers();
glBindBuffer(GL_ARRAY_BUFFER, vboVertexHandle);
glBufferData(GL_ARRAY_BUFFER, vertexData, GL_STATIC_DRAW);
glBindBuffer(GL_ARRAY_BUFFER, 0);
vboColorHandle = glGenBuffers();
glBindBuffer(GL_ARRAY_BUFFER, vboColorHandle);
glBufferData(GL_ARRAY_BUFFER, colorData, GL_STATIC_DRAW);
glBindBuffer(GL_ARRAY_BUFFER, 0);
glBindBuffer(GL_ARRAY_BUFFER, vboVertexHandle);
glVertexPointer(vertexSize, GL_FLOAT, 0, 0L);
glBindBuffer(GL_ARRAY_BUFFER, vboColorHandle);
glColorPointer(colorSize, GL_FLOAT, 0, 0L);
}
/**
* In addition to vertex and color arrays, there could be passed normal array by the way :)
* This rendering mode not so hard as many people think about it.
* Just simply init VBOs data, enable some states and by glDrawArrays() function draw geometry. Pretty simple.
* @param size - of object
* @param position - of object
*/
public void drawVertexBufferObject (final float size, final Vector3f position) {
glPushMatrix(); {
glTranslatef(position.getX(), position.getY(), position.getZ());
glScaled(size, size, size);
glEnableClientState(GL_VERTEX_ARRAY);
glEnableClientState(GL_COLOR_ARRAY);
glDrawArrays(GL_TRIANGLES, 0, amountOfVertices);
glDisableClientState(GL_COLOR_ARRAY);
glDisableClientState(GL_VERTEX_ARRAY);
}
glPopMatrix();
}
/**
* This method deallocates vertex buffer objects memory
*/
public void deleteVertexBufferObject () {
glDeleteBuffers(vboVertexHandle);
glDeleteBuffers(vboColorHandle);
}
}