Fixes for datatype size on amd64.
[crack-attack.git] / src / obj_garbage_thick_middle.cxx
blob0717877455de8ecadbbf94ff2e7329489c01ecdf
1 /*
2 * garbage_thick_middle.cxx
3 * Daniel Nelson - 9/1/0
5 * Copyright (C) 2000 Daniel Nelson
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 * Daniel Nelson - aluminumangel.org
22 * 174 W. 18th Ave.
23 * Columbus, OH 43210
25 * Generates a display list for the middle of thick garbage.
28 #include <GL/glut.h>
30 #include "glext.h"
32 #include "Game.h"
33 #include "Displayer.h"
35 GLuint Displayer::garbage_thick_middle_list;
37 void Displayer::generateGarbageThickMiddleList ( )
39 garbage_thick_middle_list = glGenLists(1);
41 glEnableClientState(GL_VERTEX_ARRAY);
42 glEnableClientState(GL_NORMAL_ARRAY);
43 glEnableClientState(GL_TEXTURE_COORD_ARRAY);
45 glNewList(garbage_thick_middle_list, GL_COMPILE);
47 GLfloat vertices_0[3 * 4] = {
48 1.0f, -1.0f, -1.0f,
49 -1.0f, -1.0f, -1.0f,
50 1.0f, 1.0f, -1.0f,
51 -1.0f, 1.0f, -1.0f
54 GLfloat vertices_1[3 * 4] = {
55 -1.0f, -1.0f, 1.0f,
56 1.0f, -1.0f, 1.0f,
57 -1.0f, 1.0f, 1.0f,
58 1.0f, 1.0f, 1.0f
61 GLfloat normals_0[3 * 4] = {
62 0.0f, 0.0f, -1.0f,
63 0.0f, 0.0f, -1.0f,
64 0.0f, 0.0f, -1.0f,
65 0.0f, 0.0f, -1.0f
68 GLfloat normals_1[3 * 4] = {
69 0.0f, 0.0f, 1.0f,
70 0.0f, 0.0f, 1.0f,
71 0.0f, 0.0f, 1.0f,
72 0.0f, 0.0f, 1.0f
75 GLfloat tex_coords_0[3 * 4];
76 for (int n = 3 * 4; n--; )
77 tex_coords_0[n] = vertices_0[n] * DC_GARBAGE_LIGHTMAP_COORD_CONVERTER;
79 GLfloat tex_coords_1[3 * 4];
80 for (int n = 3 * 4; n--; )
81 tex_coords_1[n] = vertices_1[n] * DC_GARBAGE_LIGHTMAP_COORD_CONVERTER;
83 glVertexPointer(3, GL_FLOAT, 0, vertices_0);
84 glNormalPointer(GL_FLOAT, 0, normals_0);
85 glTexCoordPointer(3, GL_FLOAT, 0, tex_coords_0);
86 glDrawArrays(GL_TRIANGLE_STRIP, 0, 4);
88 glVertexPointer(3, GL_FLOAT, 0, vertices_1);
89 glNormalPointer(GL_FLOAT, 0, normals_1);
90 glTexCoordPointer(3, GL_FLOAT, 0, tex_coords_1);
91 glDrawArrays(GL_TRIANGLE_STRIP, 0, 4);
93 glEndList();
95 glDisableClientState(GL_VERTEX_ARRAY);
96 glDisableClientState(GL_NORMAL_ARRAY);
97 glDisableClientState(GL_TEXTURE_COORD_ARRAY);