File: game.c

package info (click to toggle)
xinv3d 1.3.6-6
  • links: PTS
  • area: main
  • in suites: bullseye, buster, jessie, jessie-kfreebsd, squeeze, stretch, wheezy
  • size: 272 kB
  • ctags: 563
  • sloc: ansic: 3,678; makefile: 82
file content (781 lines) | stat: -rw-r--r-- 19,347 bytes parent folder | download | duplicates (6)
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
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
/*------------------------------------------------------------------
  game.c:

    XINVADERS 3D - 3d Shoot'em up
    Copyright (C) 2000 Don Llopis

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

------------------------------------------------------------------*/
#include "game.h"
#include "gtext.h"

#define SW_UPDATE  gv->sw_t += gv->msec
#define SW_PAUSE   gv->sw_save = gv->sw_t
#define SW_UNPAUSE gv->sw_t = gv->sw_save
#define SW_RESET   gv->sw_t = gv->sw_save = 0

static void  Add_obj_2_world ( OBJECT * );
static void  Clear_obj_list ( void );
static void  Sort_obj_list ( void );
static void  Draw_obj_list ( MATRIX4 );
static int   Z_compare ( const void *obj0, const void *obj1 );
static float Dist_pt_2_line ( VECTOR4 p, VECTOR4 l0, VECTOR4 l1 );

static void  Draw_vector_font ( int *s[], int x, int y, unsigned int color );

/*------------------------------------------------------------------
 * Variables
 *  
 *
------------------------------------------------------------------*/

GAMEVARS gvars, *gv;
TIMER    gtimer, *gt;

static long 
score_table[ZONE_HEIGHT_MAX] = { 10L, 50L, 100L, 150L, 200L };

/*================================================================*/

void Game_main ( void )
{
   while ( Handle_events() )
   {
      /* get start-time of current frame */
      gv->msec    = Timer_msec ( gt );
      gv->ftime   = (double)gv->msec/1000L;
      gv->fps     = 1.0 / gv->ftime;
      gv->fadjust = gv->rfps / gv->fps;
      
      (*Game_actionfn)(); 
      
      Update_display (); 
   }
}

/*================================================================*/

void (*Game_actionfn) ();

/*================================================================*/

int Game_init ( float win_width, float win_height )
{
   /* initialize variables and timers */
   gv = &gvars;
   Game_init_vars ( INITGAME );
   Game_init_keys ();
   
   Stars_init ();
   Jumpgate_init ();
   Camera_init ( win_width, win_height, 0.785398163 );

   gt = &gtimer;
   Timer_init( gt );

   /* setup stopwatch timer and run menu */
   SW_RESET;
   Game_actionfn = Game_menu;

   return TRUE;
}

/*================================================================*/

void Game_init_vars ( int init_type )
{
   /* Help me! I'm using the evil goto !!! */
   switch ( init_type )
   {
      case INITGAME:
         gv->rfps         = REFERENCE_FRAMERATE;
         gv->display_fps  = FALSE;
         gv->hi_score     = HISCORE;

      case NEWGAME:
         gv->paused       = FALSE;
         gv->gameover     = FALSE;
         gv->pscore       = 0;
         gv->pbonus       = 0;
         gv->plives       = PLAYER_LIVES_START;

      case NEWLEVEL:
         gv->fcount       = 0;
         gv->msec         = 0;
         gv->ftime        = 0.0;
         gv->fps          = 0.0;
         gv->fadjust      = 0.0;
         gv->new_level    = FALSE;

      default:
      break;
   }
}

/*================================================================*/

void Game_init_keys ( void )
{
   gv->key_QUIT  = FALSE;
   gv->key_FIRE  = FALSE;
   gv->key_UP    = FALSE;
   gv->key_DOWN  = FALSE;
   gv->key_LEFT  = FALSE;
   gv->key_RIGHT = FALSE;
}

/*================================================================*/

void Game_newlevel ( void )
{
   srand ( time( NULL ) );
   Game_init_vars ( NEWLEVEL );
   Game_init_keys ();

   Stars_init ();
   Explosions_clear ();
   Jumpgate_init ();
   One_up_init ();

   Player_init ();
   Aliens_init ();

   SW_RESET;
   Game_actionfn = Game_ready;
}

/*================================================================*/

void Game_menu ( void )
{
   static int blink = 0;
   static int color = 0;
   int        i, *tmp_score[20];
   char       buffer[256], tmp_num[2];
   
   VECTOR4 up = { 0.0f, 1.0f, 0.0f, 1.0f };
   VECTOR4 from = { 0.0f, 0.0f, 100.0f, 1.0f };
   VECTOR4 at = { 0.0f, 0.0f, 0.0f, 1.0f };
   MATRIX4 cam_mat;

   /* convert hi-score into a vector-font */
   sprintf ( buffer, "%ld", gv->hi_score );
   tmp_num[0] = '0';
   tmp_num[1] = '\0';
   for ( i=0; buffer[i]; i++ )
   {
      tmp_num[0] = buffer[i];
      tmp_score[i] = NUMBER[atoi(tmp_num)];
   }
   tmp_score[strlen(buffer)] = NULL;
   Draw_vector_font ( HI_SCORE, 120, 15, GREEN );
   Draw_vector_font ( tmp_score, 360, 15, GREEN );

   Camera_transform ( cam_mat, up, from, at );
   Stars_draw ( cam_mat );
   
   blink += gv->msec;
   if ( blink > 250 )
   {
      color++;
      blink -= 250;
      if ( color > 3 ) color = 0;
   }

   i = RED - ( color * 15 );

   Draw_vector_font ( XINVADERS3D_LOGO, 155, 150, GREEN );
   Draw_vector_font ( PRESS, 40, 400, i );
   Draw_vector_font ( FIRE, 220, 400, i );
   Draw_vector_font ( TO, 370, 400, i );
   Draw_vector_font ( START, 460, 400, i );

   if ( gv->key_FIRE )
   {
      Game_actionfn = Game_newlevel;
   }
}

/*================================================================*/

void Game_ready ( void )
{
   static int blink = 0;
   static int color = 0;
   int i;

   VECTOR4 up = { 0.0f, 1.0f, 0.0f, 1.0f };
   VECTOR4 from = { 0.0f, 0.0f, 100.0f, 1.0f };
   VECTOR4 at = { 0.0f, 0.0f, 0.0f, 1.0f };
   MATRIX4 cam_mat;
   
   Camera_transform ( cam_mat, up, from, at );
   Stars_draw ( cam_mat );

   blink += gv->msec;
   if ( blink > 250 )
   {
      blink -= 250;
      color++;
      if ( color == 3 )
         color = 0;
   }

   i = RED - ( color * 15 );
   Draw_vector_font ( GET, 140, 200, i );
   Draw_vector_font ( READY, 260, 200, i );

   Game_overlay ();
   SW_UPDATE;
   
   if ( gv->key_FIRE || 
      ( gv->sw_t > READY_TIME ) )
   {
      SW_RESET;
      Game_actionfn = Game_run;
   }
}

/*================================================================*/

void Game_paused_toggle ( void )
{
   static void (*saved_action_fn)( void ) = NULL;
   
   gv->paused ^= TRUE;
   
   if ( gv->paused )
   {
      SW_PAUSE;
      saved_action_fn = Game_actionfn;
      Game_actionfn = Game_paused;
   }
   else
   {
      SW_UNPAUSE;
      Game_actionfn = saved_action_fn;
   }
}

void Game_paused ( void )
{
   VECTOR4 up = { 0.0f, 1.0f, 0.0f, 1.0f };
   VECTOR4 from = { 0.0f, 0.0f, 100.0f, 1.0f };
   VECTOR4 at = { 0.0f, 0.0f, 0.0f, 1.0f };
   MATRIX4 cam_mat;
   
   Camera_transform ( cam_mat, up, from, at );
   Stars_draw ( cam_mat );
   Draw_vector_font ( PAUSED, 230, 200, RED );

   Game_overlay ();
   SW_UPDATE;
}

/*================================================================*/

void Game_reset ( void )
{
   SW_RESET;
   Game_init_vars ( INITGAME );
   Game_init_keys ();
   Game_actionfn = Game_menu;
}

void Game_gameover ( void )
{
   VECTOR4 up = { 0.0f, 1.0f, 0.0f, 1.0f };
   VECTOR4 from = { 0.0f, 0.0f, 100.0f, 1.0f };
   VECTOR4 at = { 0.0f, 0.0f, 0.0f, 1.0f };
   MATRIX4 cam_mat;
   
   Camera_transform ( cam_mat, up, from, at );
   Stars_draw ( cam_mat );
   Draw_vector_font ( GAME, 165, 200, RED );
   Draw_vector_font ( OVER, 315, 200, RED );
   Game_overlay ();
   SW_UPDATE;

   if ( gv->key_FIRE || (gv->sw_t > GAMEOVER_TIME) )
   {
      SW_RESET;
      Game_init_vars ( NEWGAME );
      Game_init_keys ();
      Game_actionfn = Game_menu;
   }
}

/*================================================================*/

void Game_overlay ( void )
{
   char buffer[256], tmp_num[2];
   int  i, x, *tmp_score[20];
   int  life[6] = { 0, 450, 25, 450, 12, 425 }; 

   if ( gv->display_fps )
   {
      if ( gv->ftime > 0.0f )
      {
         sprintf ( buffer, "FPS:%3.0f:(%1.3f):ms(%ld)", gv->fps, 
                            gv->fadjust,gv->msec );
      }
      else
         sprintf ( buffer, "FPS: n/a" );

      Draw_text ( buffer, 0, 475, RED );
   }
  
   /* convert score into a vector-font */
   sprintf ( buffer, "%ld", gv->pscore );
   tmp_num[0] = '0';
   tmp_num[1] = '\0';
   for ( i=0; buffer[i]; i++ )
   {
      tmp_num[0] = buffer[i];
      tmp_score[i] = NUMBER[atoi(tmp_num)];
   }
   tmp_score[strlen(buffer)] = NULL;
   Draw_vector_font ( SCORE, 150, 14, GREEN );
   Draw_vector_font ( tmp_score, 330, 15, GREEN );

   x=15;
   i = gv->plives;
   while ( --i > 0 )
   {
      Draw_line ( life[0]+x, life[1], life[2]+x, life[3], GREEN );
      Draw_line ( life[2]+x, life[3], life[4]+x, life[5], GREEN );
      Draw_line ( life[4]+x, life[5], life[0]+x, life[1], GREEN );
      x+= 30;
#ifdef GAME_DEBUG
      sprintf ( buffer, "Lives: %d", gv->plives-1 );
      Draw_text ( buffer, 550, 470, GREEN );
#endif
   }

#ifdef GAME_DEBUG
   sprintf ( buffer, "Time: %10.0fs", (double)gv->sw_t/1000);
   Draw_text ( buffer, 0, 470, RED );

   sprintf ( buffer, "U: %d D: %d L: %d R: %d F: %d",
         gv->key_UP, gv->key_DOWN, gv->key_LEFT, gv->key_RIGHT,
         gv->key_FIRE );
   Draw_text ( buffer, 200, 470, WHITE );
#endif

}

/*================================================================*/

void Game_run ( void )
{
   float  dist = 0.0f;
   OBJECT *alien, *abomb;
   VECTOR4    up = { 0.0f, 1.0f, 0.0f, 1.0f };
   VECTOR4    from = { 0.0f, 25.0f, 100.0f, 1.0f };
   VECTOR4    at = { 0.0f, 0.0f, -100.0f, 1.0f };
   MATRIX4    cam_mat;

   /* prepare for new frame */
   Clear_obj_list ();   

   /* update-player */
   if ( player->active )
      player->actionfn ( player );

   /* update camera */
   Vector_addd ( from, player->pos );
   Vector_addd ( at, player->pos );
   Camera_transform ( cam_mat, up, from, at );

   /*
    * Do collisions checking : 
    * player_missile vs aliens
    * player vs alien(s)
    * alien bombs vs player
    */

   if ( pm->active )
   {
      /* is player missile in the formation zone ?? */
      if ( pm->zone == gv->formation_zone ) 
      {
         if ( ( pm->zheight > -1 ) && (pm->zheight < ZONE_HEIGHT_MAX ) )
         {
            /* if so which height-level??             */
            alien = (af_list+pm->zheight)->head;
            while ( alien )
            {
               dist = Dist_pt_2_line ( alien->pos, pm->old_pos, pm->pos ) -
                  pm->radius_squared - 1.0f;

               if ( dist < alien->radius_squared )
               {
                  pm->active = alien->active = FALSE;
                  gv->alien_count--; 
                  Objlist_del    ( (af_list+pm->zheight), alien );
                  Explosions_add ( alien );
                  Aliens_update  ( alien );

                  /* update player score & alien count */
                  gv->pscore += score_table[pm->zheight];
                  gv->pbonus += score_table[pm->zheight];
                  if ( gv->pbonus > PLAYER_LIFE_BONUS-1 )
                  {
                     gv->pbonus -= PLAYER_LIFE_BONUS;
                     if ( gv->plives < PLAYER_LIFE_MAX )
                     {
                        gv->plives++;
                        One_up_add ( alien );
                     }
                  }
                  if ( gv->alien_count == 0 )
                     gv->new_level = TRUE;
                  
                  break;
               }
               alien = alien->next;
            }
         }
      }
      /* is player missile in the UFO zone?? */
      else
      {
         if ( (ufo->active) 
            &&  ( pm->zone == ufo->zone )
            && ( pm->zheight == ufo->zheight ) ) 
         {
            dist = Dist_pt_2_line ( ufo->pos, pm->old_pos, pm->pos ) -
              pm->radius_squared - 1.0f; 
            if ( dist < ufo->radius_squared )
            {
               pm->active = ufo->active = FALSE;
               Explosions_add ( ufo );

               /* update player score */
               gv->pscore += UFO_BONUS;
               gv->pbonus += UFO_BONUS;
               if ( gv->pbonus > PLAYER_LIFE_BONUS-1 )
               {
                  gv->pbonus -= PLAYER_LIFE_BONUS;
                  if ( gv->plives < PLAYER_LIFE_MAX )
                  {
                     gv->plives++;
                     One_up_add ( ufo );
                  }
               }
            }
         }
      }

   }
   
   /* alien bombs vs player */
   if ( player->active && !gv->gameover && !gv->pblinking )
   {
      for (abomb=abombs->head; abomb != NULL; abomb=abomb->next )
      {
         if ( (abomb->zone == player->zone) && 
              (abomb->zheight == player->zheight) )
         {
            dist = Dist_pt_2_line ( player->pos, abomb->old_pos, abomb->pos ) -
               abomb->radius_squared - 1.0f;
            if ( dist < player->radius_squared )
            {
               abomb->active = player->active = FALSE;
               Explosions_add ( player );
               Objlist_del ( abombs, abomb );

               break;
            }
         }
      }
   }
   
   /* 
    * player vs aliens:
    * if the remaining aliens reach the player_zone
    * then the game is over! Reduce the number of
    * remaining lives to zero and blowup the player and
    * then initiate a game-over!
    */

   if ( gv->formation_zone == ZONE_0 )
   {
      gv->plives   = 0;
      if ( player->active ) 
      {
         Explosions_add ( player );
         player->active = FALSE;
      }
   }
   
   /*
    *
    * Move Objects and Update Animations : 
    * formation, alien_bombs, ufo, and player_missile
    *
    */
   Aliens_move ();

   if ( pm->active ) 
      pm->actionfn ( pm );
  
   /*
    *
    *  Draw Objects : 
    *
    *  special effects
    *  alien: formation, bombs, and ufo
    *  player missile
    *  player
    *
    */
   
   Stars_draw ( cam_mat );
   Jumpgate_animate ( cam_mat );
   Explosions_draw ( cam_mat );
   One_up_draw ( cam_mat );

   /* 
    * major hack!! this is NOT the right way to draw in 3d 
    * may the universe forgive my transgression!
    *
    * */
   if ( ufo->active ) 
      Add_obj_2_world ( ufo );
   Add_obj_2_world ( &the_formation );

   for (abomb=abombs->head; abomb != NULL; abomb=abomb->next )
   {
      Add_obj_2_world ( abomb );
   }
   
   if ( pm->active )
      Add_obj_2_world ( pm );
   if ( player->active )
      Add_obj_2_world ( player );

   Sort_obj_list ();
   Draw_obj_list ( cam_mat );

   SW_UPDATE;
   Game_overlay ();

   /*
    *  Before acknowledging flags make sure ALL explosions
    *  are finished:
    *  gameover flag has precedence over newlevel flag
    *  since it is possible for a player to have killed
    *  all the aliens but then get killed by an alien bomb
    *  resulting in both a newlevel and gameover condition!!
    */
   if ( Explosions_count() == 0 )
   {
      if ( player->active == FALSE )
      {
         /* reduce player life and check for gameover */
         gv->plives--;
         if ( gv->plives <= 0 )
            gv->gameover = TRUE;

         Player_init ();
         SW_RESET;
         Game_actionfn = Game_ready;
      }

      if ( gv->gameover )
      {
         if ( gv->pscore > gv->hi_score )
            gv->hi_score = gv->pscore;

         SW_RESET;
         Game_actionfn = Game_gameover;
      }
      else 
      {
         if ( gv->new_level && ( Objlist_count ( abombs ) == 0 ) )
         {
            SW_RESET;
            Game_actionfn = Game_newlevel;
         }
      }
   }
}

/*================================================================*/

void Object_update_zone ( OBJECT *obj )
{
   obj->zone    = (int) floor ( (double)obj->pos[ZPOS]/-ZONE_WIDTH  );
   obj->zheight = (int) floor ( (double)obj->pos[YPOS]/ZONE_HEIGHT );
}

/*================================================================*/

static void Draw_vector_font ( int *s[], int x, int y, unsigned int color )
{
   int i, j, X, segments;
   int *letter;

   i = 0;
   X = x;
   letter = s[0];

   do
   {
      /* first integer of pointer array is always # of line segments */
      segments = *letter++;
      for ( j=0; j<segments; j++ )
      {
         Draw_line ( (*(letter+(j*4)))+X, (*(letter+(j*4)+1))+y,
                     (*(letter+(j*4)+2))+X, (*(letter+(j*4)+3))+y, color );
      }
      letter = s[++i];
      X += 30;
   }
   while ( letter );
}

/*================================================================*/

void Add_obj_2_world ( OBJECT *obj )
{
   int i;

   i = gv->gobjcount;
   if ( i < MAX_OBJECTS-1 )
   {
      gv->gobjs[i] = obj;
      gv->gobjcount++;
   }
}

void Clear_obj_list ( void )
{
   gv->gobjcount = 0;
}

void Sort_obj_list ( void )
{
   qsort ( gv->gobjs, gv->gobjcount, sizeof ( OBJECT * ), Z_compare );
}

int Z_compare ( const void *obj0, const void *obj1 )
{
   OBJECT *o0, *o1;

   o0 = ( OBJECT * ) obj0;
   o1 = ( OBJECT * ) obj1;
   
   if ( o0->pos[ZPOS] < o1->pos[ZPOS] )
      return -1;
   else if ( o0->pos[ZPOS] > o1->pos[ZPOS] )
      return 1;
   else
      return 0;
}

void Draw_obj_list ( MATRIX4 r )
{
   int i;
   OBJECT *obj;

   i = 0;
   while ( i<gv->gobjcount )
   {
      obj = gv->gobjs[i++];
      obj->drawfn ( obj, r );
   }
}
/*================================================================*/

float Dist_pt_2_line ( VECTOR4 p, VECTOR4 l0, VECTOR4 l1 )
{
   VECTOR4 l0_p;
   VECTOR4 l0_l1;
   VECTOR4 q;
   float n, d, w, t, dist;

   /* 
    * calc adjusted position of projectile along the
    * line segment formed by old_pos to new_pos
    * use this for calculating distance between moving
    * objects. This must be done since movement is
    * not in discreet amounts due to varying framerates.
    *
    * routine uses the properties of the unit vector
    * and dot product. see ``Computer Graphics:
    * principles and practice'' appendix for
    * explaination. Then checks to see if generated
    * line falls within the line segment l0l1
    *
    */

   Vector_sub ( p, l0, l0_p );
   Vector_sub ( l1, l0, l0_l1 );

   /* 
    * don't try to take Vector_norm if division by zero
    * will result. TBB
    *
    * check using Vec_mag_squared instead of 
    * xpos == 0 && ypos == 0 && zpos == 0 
    * Don
    */
   
   if ( Vector_mag_squared ( l0_l1 ) < 1.0f )
   {
      q[XPOS] = l0[XPOS];
      q[YPOS] = l0[YPOS];
      q[ZPOS] = l0[ZPOS];

      dist = Vector_dist_squared ( q, p );
   } 
   else 
   {
      d = l1[ZPOS] - l0[ZPOS];

      /* l0 and l1 are very close */
      if ( (d > -0.025 ) && ( d < 0.025 ) )
      {
         q[XPOS] = l0[XPOS];
         q[YPOS] = l0[YPOS];
         q[ZPOS] = l0[ZPOS];

         dist = Vector_dist_squared ( q, p );
      }
      else
      {
         Vector_norm ( l0_l1 );
         w = Vector_dot ( l0_p, l0_l1 );

         q[XPOS] = l0[XPOS] + ( l0_l1[XPOS] * w );
         q[YPOS] = l0[YPOS] + ( l0_l1[YPOS] * w );
         q[ZPOS] = l0[ZPOS] + ( l0_l1[ZPOS] * w );
            
         n = q[ZPOS] - l0[ZPOS];

         t = n / d;
         if ( ( t > -0.025f ) && ( t < 1.5f ) )
            dist = Vector_dist_squared ( q, p );
         else
            dist = 1000000.0f;
      }
   }

   return dist;
}