reshuffling of dlls
[reactos.git] / reactos / dll / win32 / glu32 / libnurbs / nurbtess / primitiveStream.cc
1 /*
2 ** License Applicability. Except to the extent portions of this file are
3 ** made subject to an alternative license as permitted in the SGI Free
4 ** Software License B, Version 1.1 (the "License"), the contents of this
5 ** file are subject only to the provisions of the License. You may not use
6 ** this file except in compliance with the License. You may obtain a copy
7 ** of the License at Silicon Graphics, Inc., attn: Legal Services, 1600
8 ** Amphitheatre Parkway, Mountain View, CA 94043-1351, or at:
9 **
10 ** http://oss.sgi.com/projects/FreeB
11 **
12 ** Note that, as provided in the License, the Software is distributed on an
13 ** "AS IS" basis, with ALL EXPRESS AND IMPLIED WARRANTIES AND CONDITIONS
14 ** DISCLAIMED, INCLUDING, WITHOUT LIMITATION, ANY IMPLIED WARRANTIES AND
15 ** CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A
16 ** PARTICULAR PURPOSE, AND NON-INFRINGEMENT.
17 **
18 ** Original Code. The Original Code is: OpenGL Sample Implementation,
19 ** Version 1.2.1, released January 26, 2000, developed by Silicon Graphics,
20 ** Inc. The Original Code is Copyright (c) 1991-2000 Silicon Graphics, Inc.
21 ** Copyright in any portions created by third parties is as indicated
22 ** elsewhere herein. All Rights Reserved.
23 **
24 ** Additional Notice Provisions: The application programming interfaces
25 ** established by SGI in conjunction with the Original Code are The
26 ** OpenGL(R) Graphics System: A Specification (Version 1.2.1), released
27 ** April 1, 1999; The OpenGL(R) Graphics System Utility Library (Version
28 ** 1.3), released November 4, 1998; and OpenGL(R) Graphics with the X
29 ** Window System(R) (Version 1.3), released October 19, 1998. This software
30 ** was created using the OpenGL(R) version 1.2.1 Sample Implementation
31 ** published by SGI, but has not been independently verified as being
32 ** compliant with the OpenGL(R) version 1.2.1 Specification.
33 **
34 ** $Date$ $Revision: 1.1 $
35 */
36 /*
37 ** $Header: /cygdrive/c/RCVS/CVS/ReactOS/reactos/lib/glu32/libnurbs/nurbtess/primitiveStream.cc,v 1.1 2004/02/02 16:39:13 navaraf Exp $
38 */
39
40 #include "gluos.h"
41 #include <stdlib.h>
42 #include <stdio.h>
43 #include <assert.h>
44 #include <GL/gl.h>
45
46 #include "primitiveStream.h"
47
48 Int primStream::num_triangles()
49 {
50 Int i;
51 Int ret=0;
52 for(i=0; i<index_lengths; i++)
53 {
54 ret += lengths[i]-2;
55 }
56 return ret;
57 }
58
59
60
61 /*the begining of inserting a new primitive.
62 *reset counter to be 0.
63 */
64 void primStream::begin()
65 {
66 counter = 0;
67 }
68
69 void primStream::insert(Real u, Real v)
70 {
71 /*if the space cannot hold u and v,
72 *we have to expand the array
73 */
74 if(index_vertices+1 >= size_vertices) {
75 Real* temp = (Real*) malloc (sizeof(Real) * (2*size_vertices + 2));
76 assert(temp);
77
78 /*copy*/
79 for(Int i=0; i<index_vertices; i++)
80 temp[i] = vertices[i];
81
82 free(vertices);
83 vertices = temp;
84 size_vertices = 2*size_vertices + 2;
85 }
86
87 vertices[index_vertices++] = u;
88 vertices[index_vertices++] = v;
89 counter++;
90 }
91
92 /*the end of a primitive.
93 *increase index_lengths
94 */
95 void primStream::end(Int type)
96 {
97 Int i;
98 /*if there is no vertex in this primitive,
99 *nothing needs to be done
100 */
101 if(counter == 0) return ;
102
103 if(index_lengths >= size_lengths){
104 Int* temp = (Int*) malloc(sizeof(Int) * (2*size_lengths + 2));
105 assert(temp);
106 Int* tempTypes = (Int*) malloc(sizeof(Int) * (2*size_lengths + 2));
107 assert(tempTypes);
108
109 /*copy*/
110 for(i=0; i<index_lengths; i++){
111 temp[i] = lengths[i];
112 tempTypes[i] = types[i];
113 }
114
115 free(lengths);
116 free(types);
117 lengths = temp;
118 types = tempTypes;
119 size_lengths = 2*size_lengths + 2;
120 }
121 lengths[index_lengths] = counter;
122 types[index_lengths] = type;
123 index_lengths++;
124 }
125
126 void primStream::print()
127 {
128 Int i,j,k;
129 printf("index_lengths=%i,size_lengths=%i\n", index_lengths, size_lengths);
130 printf("index_vertices=%i,size_vertices=%i\n", index_vertices, size_vertices);
131 k=0;
132 for(i=0; i<index_lengths; i++)
133 {
134 if(types[i] == PRIMITIVE_STREAM_FAN)
135 printf("primitive-FAN:\n");
136 else
137 printf("primitive-STRIP:\n");
138 for(j=0; j<lengths[i]; j++)
139 {
140 printf("(%f,%f) ", vertices[k], vertices[k+1]);
141 k += 2;
142 }
143 printf("\n");
144 }
145 }
146
147 primStream::primStream(Int sizeLengths, Int sizeVertices)
148 {
149 lengths = (Int*)malloc (sizeof(Int) * sizeLengths);
150 assert(lengths);
151 types = (Int*)malloc (sizeof(Int) * sizeLengths);
152 assert(types);
153
154 vertices = (Real*) malloc(sizeof(Real) * sizeVertices);
155 assert(vertices);
156
157 index_lengths = 0;
158 index_vertices = 0;
159 size_lengths = sizeLengths;
160 size_vertices = sizeVertices;
161 }
162
163 primStream::~primStream()
164 {
165 free(lengths);
166 free(types);
167 free(vertices);
168 }
169
170 void primStream::draw()
171 {
172 Int i,j,k;
173 k=0;
174 for(i=0; i<index_lengths; i++)
175 {
176 switch(types[i]){
177 case PRIMITIVE_STREAM_FAN:
178 glBegin(GL_TRIANGLE_FAN);
179 break;
180 case PRIMITIVE_STREAM_STRIP:
181 glBegin(GL_TRIANGLE_STRIP);
182 break;
183 }
184
185 for(j=0; j<lengths[i]; j++){
186 glVertex2fv(vertices+k);
187 k += 2;
188 }
189 glEnd();
190 }
191 }
192