[WINGDI.H]
[reactos.git] / reactos / dll / win32 / glu32 / libnurbs / internals / trimline.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
35 /*
36 * trimline.c++
37 *
38 * $Date$ $Revision: 1.1 $
39 * $Header: /cygdrive/c/RCVS/CVS/ReactOS/reactos/lib/glu32/libnurbs/internals/trimline.cc,v 1.1 2004/02/02 16:39:13 navaraf Exp $
40 */
41
42 #include "glimports.h"
43 #include "myassert.h"
44 #include "mystdio.h"
45 #include "trimline.h"
46 #include "backend.h"
47
48 Trimline::Trimline()
49 {
50 size = 0; pts = 0; numverts = 0;
51 tinterp = &t; binterp = &b;
52 }
53
54 Trimline::~Trimline()
55 {
56 if( pts ) delete[] pts;
57 }
58
59 void
60 Trimline::init( TrimVertex *v )
61 {
62 reset();
63 grow(1);
64 append(v);
65 }
66
67 inline void
68 Trimline::grow( long npts )
69 {
70 if( size < npts ) {
71 size = 2 * npts;
72 if( pts ) delete[] pts;
73 pts = new TrimVertex_p[size];
74 }
75 }
76
77 inline void
78 Trimline::append( TrimVertex *v )
79 {
80 assert( numverts != size );
81 pts[numverts++] = v;
82 }
83
84 void
85 Trimline::init( long npts, Arc_ptr jarc, long last )
86 {
87 jarcl.init( jarc, 0, last );
88 grow( npts + 2 );
89 }
90
91 inline void
92 Trimline::swap()
93 {
94 TrimVertex *tmp=tinterp;
95 tinterp=binterp;
96 binterp=tmp;
97 }
98
99 void
100 Trimline::getNextPt()
101 {
102 *binterp = *jarcl.getnextpt();
103 }
104
105 void
106 Trimline::getPrevPt()
107 {
108 *binterp = *jarcl.getprevpt();
109 }
110
111 /*----------------------------------------------------------------------
112 * getNextPts - make arrays of pointers to trim points on left and right
113 * hulls of trim strip.
114 *----------------------------------------------------------------------
115 */
116 void
117 Trimline::getNextPts( REAL vval, Backend& backend )
118 {
119 reset(); swap(); append( tinterp );
120 assert( tinterp->param[1] >= vval );
121
122 register TrimVertex *p;
123 for( p=jarcl.getnextpt() ; p->param[1] >= vval; p=jarcl.getnextpt() ) {
124 append( p );
125 }
126
127 /* compute and copy pointer to final point on left hull */
128 if( interpvert( last(), p, binterp, vval ) ) {
129 binterp->nuid = p->nuid;
130 backend.triangle( p, binterp, last() );
131 append( binterp );
132 }
133 jarcl.reverse();
134 (void) jarcl.getprevpt(); /* reset jarcl to proper position */
135 jarcl.reverse();
136 }
137
138 void
139 Trimline::getPrevPts( REAL vval, Backend& backend )
140 {
141 reset(); swap(); append( tinterp );
142 assert( tinterp->param[1] >= vval );
143
144 register TrimVertex *q;
145 for( q=jarcl.getprevpt(); q->param[1] >= vval; q=jarcl.getprevpt() ) {
146 append( q );
147 }
148
149 /* compute and copy pointer to final point on right hull */
150 if( interpvert( q, last(), binterp, vval ) ) {
151 binterp->nuid = q->nuid;
152 backend.triangle( last(), binterp, q );
153 append( binterp );
154 }
155 jarcl.reverse();
156 (void) jarcl.getnextpt(); /* reset jarcl to proper position */
157 jarcl.reverse();
158 }
159
160 void
161 Trimline::getNextPts( Arc_ptr botarc )
162 {
163 reset(); swap(); append( tinterp );
164
165 PwlArc *lastpwl = botarc->prev->pwlArc;
166 TrimVertex *lastpt1 = &lastpwl->pts[lastpwl->npts-1];
167 TrimVertex *lastpt2 = botarc->pwlArc->pts;
168
169 register TrimVertex *p = jarcl.getnextpt();
170 for( append( p ); p != lastpt2; append( p ) ) {
171 assert( p != lastpt1 );
172 p = jarcl.getnextpt();
173 }
174 }
175
176 void
177 Trimline::getPrevPts( Arc_ptr botarc )
178 {
179 reset(); swap(); append( tinterp );
180
181 PwlArc *lastpwl = botarc->prev->pwlArc;
182 TrimVertex *lastpt1 = &lastpwl->pts[lastpwl->npts-1];
183 TrimVertex *lastpt2 = botarc->pwlArc->pts;
184
185 register TrimVertex *q = jarcl.getprevpt();
186 for( append( q ); q != lastpt1; append( q ) ) {
187 assert( q != lastpt2 );
188 q = jarcl.getprevpt();
189 }
190 }
191
192
193 long
194 Trimline::interpvert( TrimVertex *a, TrimVertex *b, TrimVertex *c, REAL vval )
195 {
196 REAL denom = a->param[1] - b->param[1];
197
198 if(denom != 0) {
199 if( vval == a->param[1] ) {
200 c->param[0] = a->param[0];
201 c->param[1] = a->param[1];
202 c->nuid = a->nuid;
203 return 0;
204 } else if( vval == b->param[1] ) {
205 c->param[0] = b->param[0];
206 c->param[1] = b->param[1];
207 c->nuid = b->nuid;
208 return 0;
209 } else {
210 REAL r = (a->param[1] - vval)/denom;
211 c->param[0] = a->param[0] - r * (a->param[0] - b->param[0]);
212 c->param[1] = vval;
213 return 1;
214 }
215 } else {
216 c->param[0] = a->param[0];
217 c->param[1] = a->param[1];
218 c->nuid = a->nuid;
219 return 0;
220 }
221 }
222