Tweaks to ball rendering mechanism.
[neverball] / share / solid_gl.c
1 /*
2  * Copyright (C) 2003 Robert Kooima
3  *
4  * NEVERBALL is  free software; you can redistribute  it and/or modify
5  * it under the  terms of the GNU General  Public License as published
6  * by the Free  Software Foundation; either version 2  of the License,
7  * or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT  ANY  WARRANTY;  without   even  the  implied  warranty  of
11  * MERCHANTABILITY or  FITNESS FOR A PARTICULAR PURPOSE.   See the GNU
12  * General Public License for more details.
13  */
14
15 #include <SDL.h>
16 #include <SDL_rwops.h>
17
18 #include <stdio.h>
19 #include <stdlib.h>
20 #include <string.h>
21 #include <math.h>
22
23 #include "glext.h"
24 #include "vec3.h"
25 #include "image.h"
26 #include "base_image.h"
27 #include "solid_gl.h"
28 #include "base_config.h"
29
30 /*---------------------------------------------------------------------------*/
31
32 static int sol_enum_mtrl(const struct s_file *fp,
33                          const struct s_body *bp, int mi)
34 {
35     int li, gi, c = 0;
36
37     /* Count all lump geoms with this material. */
38
39     for (li = 0; li < bp->lc; li++)
40     {
41         int g0 = fp->lv[bp->l0 + li].g0;
42         int gc = fp->lv[bp->l0 + li].gc;
43
44         for (gi = 0; gi < gc; gi++)
45             if (fp->gv[fp->iv[g0 + gi]].mi == mi)
46                 c++;
47     }
48
49     /* Count all body geoms with this material. */
50
51     for (gi = 0; gi < bp->gc; gi++)
52         if (fp->gv[fp->iv[bp->g0 + gi]].mi == mi)
53             c++;
54
55     return c;
56 }
57
58 static int sol_enum_body(const struct s_file *fp,
59                          const struct s_body *bp, int fl)
60 {
61     int mi, c = 0;
62
63     /* Count all geoms with this flag. */
64
65     for (mi = 0; mi < fp->mc; mi++)
66         if (fp->mv[mi].fl & fl)
67             c = c + sol_enum_mtrl(fp, bp, mi);
68
69     return c;
70 }
71
72 /*---------------------------------------------------------------------------*/
73
74 #define tobyte(f) ((GLubyte) (f * 255.0f))
75
76 #define color_cmp(a, b) (tobyte((a)[0]) == tobyte((b)[0]) && \
77                          tobyte((a)[1]) == tobyte((b)[1]) && \
78                          tobyte((a)[2]) == tobyte((b)[2]) && \
79                          tobyte((a)[3]) == tobyte((b)[3]))
80
81 static struct s_mtrl default_mtrl =
82 {
83     { 0.8f, 0.8f, 0.8f, 1.0f },
84     { 0.2f, 0.2f, 0.2f, 1.0f },
85     { 0.0f, 0.0f, 0.0f, 1.0f },
86     { 0.0f, 0.0f, 0.0f, 1.0f },
87     { 0.0f, }, 0.0f, M_OPAQUE, 0, ""
88 };
89
90 static const struct s_mtrl *sol_draw_mtrl(const struct s_file *fp,
91                                           const struct s_mtrl *mp,
92                                           const struct s_mtrl *mq)
93 {
94     /* Change material properties only as needed. */
95
96     if (!color_cmp(mp->a, mq->a))
97         glMaterialfv(GL_FRONT_AND_BACK, GL_AMBIENT,   mp->a);
98     if (!color_cmp(mp->d, mq->d))
99         glMaterialfv(GL_FRONT_AND_BACK, GL_DIFFUSE,   mp->d);
100     if (!color_cmp(mp->s, mq->s))
101         glMaterialfv(GL_FRONT_AND_BACK, GL_SPECULAR,  mp->s);
102     if (!color_cmp(mp->e, mq->e))
103         glMaterialfv(GL_FRONT_AND_BACK, GL_EMISSION,  mp->e);
104     if (tobyte(mp->h[0]) != tobyte(mq->h[0]))
105         glMaterialfv(GL_FRONT_AND_BACK, GL_SHININESS, mp->h);
106
107     /* Bind the texture. */
108
109     if (mp->o != mq->o)
110         glBindTexture(GL_TEXTURE_2D, mp->o);
111
112     /* Enable environment mapping. */
113
114     if ((mp->fl & M_ENVIRONMENT) && !(mq->fl & M_ENVIRONMENT))
115     {
116         glEnable(GL_TEXTURE_GEN_S);
117         glEnable(GL_TEXTURE_GEN_T);
118
119         glTexGeni(GL_S, GL_TEXTURE_GEN_MODE, GL_SPHERE_MAP);
120         glTexGeni(GL_T, GL_TEXTURE_GEN_MODE, GL_SPHERE_MAP);
121     }
122
123     /* Disable environment mapping. */
124
125     if ((mq->fl & M_ENVIRONMENT) && !(mp->fl & M_ENVIRONMENT))
126     {
127         glDisable(GL_TEXTURE_GEN_S);
128         glDisable(GL_TEXTURE_GEN_T);
129     }
130
131     /* Enable additive blending. */
132
133     if ((mp->fl & M_ADDITIVE) && !(mq->fl & M_ADDITIVE))
134         glBlendFunc(GL_ONE, GL_ONE);
135
136     /* Enable standard blending. */
137
138     if ((mq->fl & M_ADDITIVE) && !(mp->fl & M_ADDITIVE))
139         glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
140
141     /* Enable visibility-from-behind. */
142
143     if ((mp->fl & M_TWO_SIDED) && !(mq->fl & M_TWO_SIDED))
144     {
145         glDisable(GL_CULL_FACE);
146         glLightModeli(GL_LIGHT_MODEL_TWO_SIDE, 1);
147     }
148
149     /* Disable visibility-from-behind. */
150
151     if ((mq->fl & M_TWO_SIDED) && !(mp->fl & M_TWO_SIDED))
152     {
153         glEnable(GL_CULL_FACE);
154         glLightModeli(GL_LIGHT_MODEL_TWO_SIDE, 0);
155     }
156
157     /* Enable decal offset. */
158
159     if ((mp->fl & M_DECAL) && !(mq->fl & M_DECAL))
160     {
161         glEnable(GL_POLYGON_OFFSET_FILL);
162         glPolygonOffset(-1.0f, -2.0f);
163     }
164
165     /* Disable decal offset. */
166
167     if ((mq->fl & M_DECAL) && !(mp->fl & M_DECAL))
168         glDisable(GL_POLYGON_OFFSET_FILL);
169
170     return mp;
171 }
172
173 static const struct s_mtrl *sol_back_bill(const struct s_file *fp,
174                                           const struct s_bill *rp,
175                                           const struct s_mtrl *mp, float t)
176 {
177     float T = (rp->t > 0.0f) ? (fmodf(t, rp->t) - rp->t / 2) : 0.0f;
178
179     float w = rp->w[0] + rp->w[1] * T + rp->w[2] * T * T;
180     float h = rp->h[0] + rp->h[1] * T + rp->h[2] * T * T;
181
182     if (w > 0 && h > 0)
183     {
184         float rx = rp->rx[0] + rp->rx[1] * T + rp->rx[2] * T * T;
185         float ry = rp->ry[0] + rp->ry[1] * T + rp->ry[2] * T * T;
186         float rz = rp->rz[0] + rp->rz[1] * T + rp->rz[2] * T * T;
187
188         glPushMatrix();
189         {
190             float y0 = (rp->fl & B_EDGE) ? 0 : -h / 2;
191             float y1 = (rp->fl & B_EDGE) ? h : +h / 2;
192
193             glRotatef(ry, 0.0f, 1.0f, 0.0f);
194             glRotatef(rx, 1.0f, 0.0f, 0.0f);
195             glTranslatef(0.0f, 0.0f, -rp->d);
196
197             if (rp->fl & B_FLAT)
198             {
199                 glRotatef(-rx - 90.0f, 1.0f, 0.0f, 0.0f);
200                 glRotatef(-ry,         0.0f, 0.0f, 1.0f);
201             }
202             if (rp->fl & B_EDGE)
203                 glRotatef(-rx,         1.0f, 0.0f, 0.0f);
204
205             glRotatef(rz, 0.0f, 0.0f, 1.0f);
206
207             mp = sol_draw_mtrl(fp, fp->mv + rp->mi, mp);
208
209             glBegin(GL_QUADS);
210             {
211                 glTexCoord2f(0.0f, 1.0f); glVertex2f(-w / 2, y0);
212                 glTexCoord2f(1.0f, 1.0f); glVertex2f(+w / 2, y0);
213                 glTexCoord2f(1.0f, 0.0f); glVertex2f(+w / 2, y1);
214                 glTexCoord2f(0.0f, 0.0f); glVertex2f(-w / 2, y1);
215             }
216             glEnd();
217         }
218         glPopMatrix();
219     }
220
221     return mp;
222 }
223
224 /*---------------------------------------------------------------------------*/
225
226 void sol_back(const struct s_file *fp, float n, float f, float t)
227 {
228     const struct s_mtrl *mp = &default_mtrl;
229
230     int ri;
231
232     /* Render all billboards in the given range. */
233
234     glDisable(GL_LIGHTING);
235     glDepthMask(GL_FALSE);
236     {
237         for (ri = 0; ri < fp->rc; ri++)
238             if (n <= fp->rv[ri].d && fp->rv[ri].d < f)
239                 mp = sol_back_bill(fp, fp->rv + ri, mp, t);
240
241         mp = sol_draw_mtrl(fp, &default_mtrl, mp);
242     }
243     glDepthMask(GL_TRUE);
244     glEnable(GL_LIGHTING);
245 }
246
247 /*---------------------------------------------------------------------------*/
248 /*
249  * The  following code  renders a  body in  a  ludicrously inefficient
250  * manner.  It iterates the materials and scans the data structure for
251  * geometry using each.  This  has the effect of absolutely minimizing
252  * material  changes,  texture  bindings,  and  Begin/End  pairs,  but
253  * maximizing trips through the data.
254  *
255  * However, this  is only done once  for each level.   The results are
256  * stored in display lists.  Thus, it is well worth it.
257  */
258
259 static void sol_draw_geom(const struct s_file *fp,
260                           const struct s_geom *gp, int mi)
261 {
262     if (gp->mi == mi)
263     {
264         const float *ui = fp->tv[gp->ti].u;
265         const float *uj = fp->tv[gp->tj].u;
266         const float *uk = fp->tv[gp->tk].u;
267
268         const float *ni = fp->sv[gp->si].n;
269         const float *nj = fp->sv[gp->sj].n;
270         const float *nk = fp->sv[gp->sk].n;
271
272         const float *vi = fp->vv[gp->vi].p;
273         const float *vj = fp->vv[gp->vj].p;
274         const float *vk = fp->vv[gp->vk].p;
275
276         glTexCoord2fv(ui);
277         glNormal3fv(ni);
278         glVertex3fv(vi);
279
280         glTexCoord2fv(uj);
281         glNormal3fv(nj);
282         glVertex3fv(vj);
283
284         glTexCoord2fv(uk);
285         glNormal3fv(nk);
286         glVertex3fv(vk);
287     }
288 }
289
290 static void sol_draw_lump(const struct s_file *fp,
291                           const struct s_lump *lp, int mi)
292 {
293     int i;
294
295     for (i = 0; i < lp->gc; i++)
296         sol_draw_geom(fp, fp->gv + fp->iv[lp->g0 + i], mi);
297 }
298
299 static const struct s_mtrl *sol_draw_body(const struct s_file *fp,
300                                           const struct s_body *bp,
301                                           const struct s_mtrl *mp,
302                                           int fl, int decal)
303 {
304     int mi, li, gi;
305
306     /* Iterate all materials of the correct opacity. */
307
308     for (mi = 0; mi < fp->mc; mi++)
309         if ((fp->mv[mi].fl & fl) && (fp->mv[mi].fl & M_DECAL) == decal)
310         {
311             if (sol_enum_mtrl(fp, bp, mi))
312             {
313                 /* Set the material state. */
314
315                 mp = sol_draw_mtrl(fp, fp->mv + mi, mp);
316
317                 /* Render all geometry of that material. */
318
319                 glBegin(GL_TRIANGLES);
320                 {
321                     for (li = 0; li < bp->lc; li++)
322                         sol_draw_lump(fp, fp->lv + bp->l0 + li, mi);
323                     for (gi = 0; gi < bp->gc; gi++)
324                         sol_draw_geom(fp, fp->gv + fp->iv[bp->g0 + gi], mi);
325                 }
326                 glEnd();
327             }
328         }
329
330     return mp;
331 }
332
333 static void sol_draw_list(const struct s_file *fp,
334                           const struct s_body *bp, GLuint list)
335 {
336     float p[3];
337
338     sol_body_p(p, fp, bp);
339
340     glPushMatrix();
341     {
342         /* Translate a moving body. */
343
344         glTranslatef(p[0], p[1], p[2]);
345
346         /* Draw the body. */
347
348         glCallList(list);
349     }
350     glPopMatrix();
351 }
352
353 void sol_draw(const struct s_file *fp, int depthmask, int depthtest)
354 {
355     int bi;
356
357     /* Render all opaque geometry into the color and depth buffers. */
358
359     for (bi = 0; bi < fp->bc; bi++)
360         if (fp->bv[bi].ol)
361             sol_draw_list(fp, fp->bv + bi, fp->bv[bi].ol);
362
363     /* Render all translucent geometry into only the color buffer. */
364
365     if (depthtest == 0) glDisable(GL_DEPTH_TEST);
366     if (depthmask == 0) glDepthMask(GL_FALSE);
367     {
368         for (bi = 0; bi < fp->bc; bi++)
369             if (fp->bv[bi].tl)
370                 sol_draw_list(fp, fp->bv + bi, fp->bv[bi].tl);
371     }
372     if (depthmask == 0) glDepthMask(GL_TRUE);
373     if (depthtest == 0) glEnable(GL_DEPTH_TEST);
374 }
375
376 void sol_bill(const struct s_file *fp, const float *M)
377 {
378     float t = SDL_GetTicks() / 1000.f + 120.0f;
379     const struct s_mtrl *mp = &default_mtrl;
380
381     int ri;
382
383     for (ri = 0; ri < fp->rc; ++ri)
384     {
385         const struct s_bill *rp = fp->rv + ri;
386
387         float T = rp->t * t;
388
389         float w  = rp->w [0] + rp->w [1] * T + rp->w [2] * fsinf(T);
390         float h  = rp->h [0] + rp->h [1] * T + rp->h [2] * fsinf(T);
391         float rz = rp->rz[0] + rp->rz[1] * T + rp->rz[2] * fsinf(T);
392
393         mp = sol_draw_mtrl(fp, fp->mv + rp->mi, mp);
394
395         glPushMatrix();
396         {
397             glTranslatef(rp->p[0], rp->p[1], rp->p[2]);
398
399             if (M) glMultMatrixf(M);
400
401             glRotatef(rz, 0.0f, 0.0f, 1.0f);
402
403             glBegin(GL_QUADS);
404             {
405                 glTexCoord2f(0.0f, 1.0f); glVertex2f(-w / 2, -h / 2);
406                 glTexCoord2f(1.0f, 1.0f); glVertex2f(+w / 2, -h / 2);
407                 glTexCoord2f(1.0f, 0.0f); glVertex2f(+w / 2, +h / 2);
408                 glTexCoord2f(0.0f, 0.0f); glVertex2f(-w / 2, +h / 2);
409             }
410             glEnd();
411         }
412         glPopMatrix();
413     }
414
415     mp = sol_draw_mtrl(fp, &default_mtrl, mp);
416 }
417
418 void sol_refl(const struct s_file *fp)
419 {
420     int bi;
421
422     /* Render all reflective geometry into the color and depth buffers. */
423
424     for (bi = 0; bi < fp->bc; bi++)
425         if (fp->bv[bi].rl)
426             sol_draw_list(fp, fp->bv + bi, fp->bv[bi].rl);
427 }
428
429 /*---------------------------------------------------------------------------*/
430
431 static void sol_shad_geom(const struct s_file *fp,
432                           const struct s_geom *gp, int mi)
433 {
434     if (gp->mi == mi)
435     {
436         const float *vi = fp->vv[gp->vi].p;
437         const float *vj = fp->vv[gp->vj].p;
438         const float *vk = fp->vv[gp->vk].p;
439
440         glTexCoord2f(vi[0], vi[2]);
441         glVertex3fv(vi);
442
443         glTexCoord2f(vj[0], vj[2]);
444         glVertex3fv(vj);
445
446         glTexCoord2f(vk[0], vk[2]);
447         glVertex3fv(vk);
448     }
449 }
450
451 static void sol_shad_lump(const struct s_file *fp,
452                           const struct s_lump *lp, int mi)
453 {
454     int i;
455
456     for (i = 0; i < lp->gc; i++)
457         sol_shad_geom(fp, fp->gv + fp->iv[lp->g0 + i], mi);
458 }
459
460 static void sol_shad_body(const struct s_file *fp,
461                           const struct s_body *bp,
462                           int fl, int decal)
463 {
464     int mi, li, gi;
465
466     if (fl & M_DECAL)
467     {
468         glEnable(GL_POLYGON_OFFSET_FILL);
469         glPolygonOffset(-1.0f, -2.0f);
470     }
471
472     glBegin(GL_TRIANGLES);
473     {
474         for (mi = 0; mi < fp->mc; mi++)
475             if ((fp->mv[mi].fl & fl) && (fp->mv[mi].fl & M_DECAL) == decal)
476             {
477                 for (li = 0; li < bp->lc; li++)
478                     sol_shad_lump(fp, fp->lv + bp->l0 + li, mi);
479                 for (gi = 0; gi < bp->gc; gi++)
480                     sol_shad_geom(fp, fp->gv + fp->iv[bp->g0 + gi], mi);
481             }
482     }
483     glEnd();
484
485     if (fl & M_DECAL)
486         glDisable(GL_POLYGON_OFFSET_FILL);
487 }
488
489 static void sol_shad_list(const struct s_file *fp,
490                           const struct s_body *bp, GLuint list)
491 {
492     float p[3];
493
494     sol_body_p(p, fp, bp);
495
496     glPushMatrix();
497     {
498         /* Translate a moving body. */
499
500         glTranslatef(p[0], p[1], p[2]);
501
502         /* Translate the shadow on a moving body. */
503
504         glMatrixMode(GL_TEXTURE);
505         {
506             glPushMatrix();
507             glTranslatef(p[0], p[2], 0.0f);
508         }
509         glMatrixMode(GL_MODELVIEW);
510
511         /* Draw the body. */
512
513         glCallList(list);
514
515         /* Pop the shadow translation. */
516
517         glMatrixMode(GL_TEXTURE);
518         {
519             glPopMatrix();
520         }
521         glMatrixMode(GL_MODELVIEW);
522     }
523     glPopMatrix();
524 }
525
526 void sol_shad(const struct s_file *fp)
527 {
528     int bi;
529
530     /* Render all shadowed geometry. */
531
532     glDepthMask(GL_FALSE);
533     {
534         for (bi = 0; bi < fp->bc; bi++)
535             if (fp->bv[bi].sl)
536                 sol_shad_list(fp, fp->bv + bi, fp->bv[bi].sl);
537     }
538     glDepthMask(GL_TRUE);
539 }
540
541 /*---------------------------------------------------------------------------*/
542
543 static void sol_load_objects(struct s_file *fp, int s)
544 {
545     int i;
546
547     /* Here we sort geometry into display lists by material type. */
548
549     for (i = 0; i < fp->bc; i++)
550     {
551         struct s_body *bp = fp->bv + i;
552
553         int on = sol_enum_body(fp, bp, M_OPAQUE);
554         int tn = sol_enum_body(fp, bp, M_TRANSPARENT);
555         int rn = sol_enum_body(fp, bp, M_REFLECTIVE);
556         int dn = sol_enum_body(fp, bp, M_DECAL);
557
558         /* Draw all opaque geometry, decals last. */
559
560         if (on)
561         {
562             fp->bv[i].ol = glGenLists(1);
563
564             glNewList(fp->bv[i].ol, GL_COMPILE);
565             {
566                 const struct s_mtrl *mp = &default_mtrl;
567
568                 mp = sol_draw_body(fp, fp->bv + i, mp, M_OPAQUE, 0);
569                 mp = sol_draw_body(fp, fp->bv + i, mp, M_OPAQUE, M_DECAL);
570                 mp = sol_draw_mtrl(fp, &default_mtrl, mp);
571             }
572             glEndList();
573         }
574         else fp->bv[i].ol = 0;
575
576         /* Draw all translucent geometry, decals first. */
577
578         if (tn)
579         {
580             fp->bv[i].tl = glGenLists(1);
581
582             glNewList(fp->bv[i].tl, GL_COMPILE);
583             {
584                 const struct s_mtrl *mp = &default_mtrl;
585
586                 mp = sol_draw_body(fp, fp->bv + i, mp, M_TRANSPARENT, M_DECAL);
587                 mp = sol_draw_body(fp, fp->bv + i, mp, M_TRANSPARENT, 0);
588                 mp = sol_draw_mtrl(fp, &default_mtrl, mp);
589             }
590             glEndList();
591         }
592         else fp->bv[i].tl = 0;
593
594         /* Draw all reflective geometry. */
595
596         if (rn)
597         {
598             fp->bv[i].rl = glGenLists(1);
599
600             glNewList(fp->bv[i].rl, GL_COMPILE);
601             {
602                 const struct s_mtrl *mp = &default_mtrl;
603
604                 mp = sol_draw_body(fp, fp->bv + i, mp, M_REFLECTIVE, 0);
605                 mp = sol_draw_mtrl(fp, &default_mtrl, mp);
606             }
607             glEndList();
608         }
609         else fp->bv[i].rl = 0;
610
611         /* Draw all shadowed geometry. */
612
613         if (s && (on || rn))
614         {
615             fp->bv[i].sl = glGenLists(1);
616
617             glNewList(fp->bv[i].sl, GL_COMPILE);
618             {
619                 if (on) sol_shad_body(fp, fp->bv + i, M_OPAQUE, 0);
620                 if (rn) sol_shad_body(fp, fp->bv + i, M_REFLECTIVE, 0);
621                 if (dn) sol_shad_body(fp, fp->bv + i, M_OPAQUE, M_DECAL);
622             }
623             glEndList();
624         }
625         else fp->bv[i].sl = 0;
626     }
627 }
628
629 static GLuint sol_find_texture(const char *name)
630 {
631     char png[MAXSTR];
632     char jpg[MAXSTR];
633
634     GLuint o;
635
636     /* Prefer a lossless copy of the texture over a lossy compression. */
637
638     strncpy(png, name, PATHMAX); strcat(png, ".png");
639     strncpy(jpg, name, PATHMAX); strcat(jpg, ".jpg");
640
641     /* Check for a PNG. */
642
643     if ((o = make_image_from_file(png)))
644         return o;
645
646     /* Check for a JPG. */
647
648     if ((o = make_image_from_file(jpg)))
649         return o;
650
651     return 0;
652 }
653
654 static void sol_load_textures(struct s_file *fp, int k)
655 {
656     int i;
657
658     /* Load the image referenced by each material. */
659
660     for (i = 0; i < fp->mc; i++)
661         if ((fp->mv[i].o = sol_find_texture(fp->mv[i].f)))
662         {
663             /* Set the texture to clamp or repeat based on material type. */
664
665             if (fp->mv[i].fl & M_CLAMPED)
666             {
667                 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP);
668                 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP);
669             }
670             else
671             {
672                 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);
673                 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT);
674             }
675         }
676 }
677
678 /*---------------------------------------------------------------------------*/
679
680 int sol_load_gl(struct s_file *fp, const char *filename, int k, int s)
681 {
682     if (sol_load_only_file(fp, filename))
683     {
684         sol_load_textures(fp, k);
685         sol_load_objects (fp, s);
686         return 1;
687     }
688     return 0;
689 }
690
691 /*---------------------------------------------------------------------------*/
692
693 void sol_free_gl(struct s_file *fp)
694 {
695     int i;
696
697     for (i = 0; i < fp->mc; i++)
698     {
699         if (glIsTexture(fp->mv[i].o))
700             glDeleteTextures(1, &fp->mv[i].o);
701     }
702
703     for (i = 0; i < fp->bc; i++)
704     {
705         if (glIsList(fp->bv[i].ol))
706             glDeleteLists(fp->bv[i].ol, 1);
707         if (glIsList(fp->bv[i].tl))
708             glDeleteLists(fp->bv[i].tl, 1);
709         if (glIsList(fp->bv[i].rl))
710             glDeleteLists(fp->bv[i].rl, 1);
711     }
712
713     sol_free(fp);
714 }
715
716 /*---------------------------------------------------------------------------*/