home *** CD-ROM | disk | FTP | other *** search
/ Collection of Hack-Phreak Scene Programs / cleanhpvac.zip / cleanhpvac / FAQSYS18.ZIP / FAQS.DAT / KARMADOC.TXT < prev    next >
Text File  |  1995-12-20  |  26KB  |  612 lines

  1. ┌──────────────────────────────────────────────────────────────────────────────┐
  2. │       Previous notes:                                                        │
  3. │       -The author assume no responsability for any effects/damage            │
  4. │        this file can produce.                                                │
  5. │       -This file cannot be modified without the author's permission.         │
  6. │       -This file can be (and must be !) freely distributed                   │
  7. └──────────────────────────────────────────────────────────────────────────────┘
  8.  
  9.  
  10. ================================================================================
  11.         MORE ABOUT SHADING, Z-BUFFER, AND TEXTURES
  12. ================================================================================
  13.  
  14.  
  15.         I heard not so long ago talking about method of shading called
  16.         Gouraud shading, mainly based on the interpolation of the
  17.         light intensity along the edge of the polygon and then along
  18.         each scanline of it.
  19.         The book in wich I read it was saying: "very approximative but
  20.         very fast, this method is often used in real-time applications,
  21.         because of its low cost in calculation time"(or sumthin like that..).
  22.         After, I've seen it in many demos, and didn't understand how
  23.         a so slow and uncomfortable algorithm could be used for animating
  24.         thousand of vectors at a reasonnable frame-rate on my computer.
  25.         It's only a few months ago I realized how fast and comfortable
  26.         This method was and how many doors in the domain of 3d animation
  27.         it opened to me.
  28.         It's the principle of interpolating values along a polygon using
  29.         fixed point math that is the key of many other algorithms,
  30.         such as:
  31.                 - the degenerated Gouraud's: Z-gouraud, distance-based Gouraud
  32.                 - Phong shading
  33.                 - Z-buffer
  34.                 - texture mapping
  35.                 - many other more advanced techniques like:
  36.                         - environment/reflection mapping
  37.                         - bump mapping
  38.                         - A-buffer
  39.                 - and much more I expect you'll find and write to me !..
  40.  
  41.        ┌───────────────────────────────────┐
  42.        │1) The first step: Gouraud shading │
  43.        └───────────────────────────────────┘
  44.  
  45.         I won't repeat here what many other docs already told,
  46.         but just make a brief recapitulation.
  47.         Here's your polygon:
  48.  
  49.                   I ->          * At each vertice constituing the poly,
  50.                   I N1          you can compute a normal vector,
  51.                  /\             (preferably precalculated and rotated
  52.                 /  \            like the other vertices).
  53.                /    \           using this normal vector, you can
  54.               /      \--->      find the light intensity, which is
  55.              /       /->        simply the cosine of the angle between
  56.         <---/       / N2        the normal vector and the light vector,
  57.         ->  \      /            given by:
  58.         N4   \    /                       ->  ->
  59.               \  /               cos a = (N . L)/[L]*[N]
  60.                \/
  61.                I                where N and L are respectively the
  62.                I                normal and the light vector and
  63.                I ->             [N] and [L] are the length of these two
  64.                v N3             vectors.
  65.  
  66.         It's obvious that these two lengths should value 1.
  67.         The intensity is then just the dot product of the two vectors.
  68.  
  69.         * The next step is to know, or just approximate, the intensity
  70.         at each point of the poly. to do this, just IN-TER-PO-LA-TE !!
  71.         For example: we just compute the intensity at each point of the
  72.         poly nicely drawed above, you got for ex. the values a1 and a2
  73.         corresponding to the two vectors N1 and N2.
  74.         The value of the intensity at the point x,y of the first right
  75.         edge is given by:
  76.  
  77.                          a = a1 + (y - y1)*((a2 - a1)/(y2 - y1))
  78.  
  79.         where a1 and a2 are the intensity of the points 1 and 2
  80.               y1 and y2 are the y-coord ON THE SCREEN of these two points.
  81.  
  82.         You got now all the values of the intensity along each edge
  83.         of the poly. the second part of the algorithm concern
  84.         the interpolation of these values along each scanline
  85.         of the poly, thus obtaining the intensity at each pixel...
  86.         This is done using the same scheme:
  87.  
  88.                          a = a1 + (x - x1)*((a2 - a1)/(x2 - x1))
  89.  
  90.         where a1 and a2 are the intensity of the points 1 and 2
  91.               x1 and x2 are the x-coord   "    "        "     "
  92.  
  93.  
  94.                           /\
  95.                          /  \
  96.                         /    \
  97.                        /      \
  98.                       /        \
  99.                    a1<__________>a2   <--- scanline
  100.                     /    <--a--> \
  101.                    /              \
  102.                   /                \
  103.                  /                  \
  104.                  \                  /
  105.                   \                /
  106.                    \              /
  107.                     \            /
  108.                      \          /
  109.                       \        /
  110.                        \      /
  111.                         \    /
  112.                          \  /
  113.                           \/
  114.  
  115.  
  116.         Of coz it shouldn't be done using one MUL and one DIV per
  117.         pixel ! The values (for ex. in the last formula) :
  118.             (a2-a1) and (x2-x1) are precalculated for each scanline,
  119.             and so is the value (a2-a1)/(x2-x1)...
  120.         Then you set the first 'a' at the value a1 and the only
  121.         operation you'll have to do for each pixel is just an addition
  122.         between two fixed-point values. (a and (a2-a1)/(x2-x1))
  123.  
  124.         A brief example for the implementation :
  125.             for each point of the scanline do:
  126.  
  127.             {asm code}              {pseudo-code}
  128.  
  129.             MOV     AL,DH       ; al = a shr 8
  130.             ADD     DX,BP       ; a = a+((a2-a1)/(x2-x1))
  131.             STOSB               ; es:[di] = a ; di = di+1
  132.  
  133.  
  134.  
  135.         'GoT It ??
  136.  
  137.        ┌──────────────────────────────────────────┐
  138.        │2) The next step : Z-Gouraud and Z-buffer │
  139.        └──────────────────────────────────────────┘
  140.  
  141.         So now you got the code (how that 'not yet !!' ??) for
  142.         interpolate one single value along a polygon.
  143.  
  144.         you can interpolate this famous intensity, as in the
  145.         most classic Gourauds, but there is much more amusing:
  146.         just approximate the Z component of each point of the
  147.         polygon, using the same method.
  148.  
  149.         If you plot the intensity corresponding to this value
  150.         you'll have some kind of 'depth shading' effect.
  151.         (also known as 'Z-Gouraud', which is quite comprehensible!)
  152.  
  153.         Having the Z component of each point is very interesting
  154.         when you have two faces intersecting each other.
  155.         (f.e. when two objx are colliding !..)
  156.  
  157.         Just set up a huge (320*200 is good) buffer in your mem, where
  158.         you put the Z-value of every pixel on the screen.
  159.         when you try to write a pixel, first ask yourself:
  160.             'ain't there any point recovering the one I wanna write ?'
  161.         In computer language, this is called a 'test'!:
  162.         It just means : look if the Z-value of the current point
  163.         is greater than the corresponding value in the Z_buffer.
  164.         If it is, don't write it ! if not, you can write it
  165.         on the screen (or in a screen-equivalent buffer..) and
  166.         write its Z value in the Z-buffer !
  167.  
  168.         This method is -let's be reasonnable- very slow, it means
  169.         one test per pixel, plus the refreshment of the Z_buffer
  170.         (all points should be set to (-infiny) at every frame !),
  171.         and a writing operation two times slower than the Gouraud
  172.         shading one...
  173.         But it is also the most realistic and impressive method
  174.         for intersecting objects, Z-clipping (which can be done
  175.         automatically using an unsigned test..),it allows
  176.         immediate depth-shading, etc...
  177.  
  178.         If you didn't understood everything, these littal schemas
  179.         are gonna help you:
  180.  
  181.         Z-buff:                  screen:
  182.  
  183.         ┌────────────┐           ┌────────────┐
  184.         │            │           │            │   ░ poly #1
  185.         │            │           │            │
  186.         │  1111      │           │  ░░░░      │   ▒ poly #2
  187.         │ 2222       │           │ ░░░░       │
  188.         │334444      │           │░░▒▒▒▒      │   █ poly #3
  189.         │   5555     │           │   ▒▒▒▒     │
  190.         │ 2366766    │           │ ██▒▒█▒▒    │
  191.         │ 23457      │           │ █████      │
  192.         │ 23457      │           │ █████      │
  193.         │ 23457      │           │ █████      │
  194.         │ 23457      │           │ █████      │
  195.         └────────────┘           └────────────┘
  196.  
  197.         The poly #3 is intersecting the poly #2, which is itself
  198.         recovering the poly #1...
  199.  
  200.         WARNING !!  these drawings assume that the Z-axis is
  201.                     pointing towards the observer.
  202.                     (the greater is the nearer..)
  203.  
  204.         And of coz, again a tiny example of the main loop
  205.         implementation: (the rasterizer)
  206.         (in 386 assembler, quite more easy than 8088..)
  207.  
  208.         @@:
  209.             SHRD    EBX,EDX,24          ; ebx = edx shr 8
  210.             ADD     EDX,EBP             ; compute the Z value
  211.             CMP     BX,Z_BUFF[EDI*2]    ; Z > z_buff[di] ??
  212.             JG      PLOT_IT             ; yes ..
  213.             INC     EDI                 ; no: nothing
  214.             LOOP    @B
  215.  
  216.             JMP     @F
  217.  
  218.         PLOT_IT:
  219.             MOV     SCREEN[EDI],AL      ; store the color..
  220.             MOV     Z_BUFF[EDI*2],BX    ; store the Z-value
  221.             INC     EDI                 ; next one!...
  222.             LOOP    @B
  223.  
  224.         @@:
  225.  
  226.         Again, don't forget to reverse the test if you are using another
  227.         orientation..
  228.  
  229.        ┌────────────┐
  230.        │3) Textures │
  231.        └────────────┘
  232.  
  233.         So now you passed two months trying to understand this shit,
  234.         you got it, nicely shaded polys rotating around each other and
  235.         intersecting,and so on...
  236.         But what about mapping?
  237.         It just means put a bitmap onto a polygon, just as if
  238.         the bitmap was itself rotating in the space.
  239.         (I'm sure you've already seen that somewhere...)
  240.  
  241.         How to do it?
  242.         we'll pass over the boring 'it's-not-possible-to-do-free-direction-
  243.         texture-mapping-in-real-time-so-I'll-just-show-you-how-to-make-
  244.         floors'
  245.         real-time free direction texture-mapping IS possible and I'm
  246.         gonna show you how...
  247.  
  248.         You know how to interpolate one value along a polygon:
  249.         free distorsion/linear mapping , which are the true names
  250.         of the method I use,only consists in interpolating
  251.         TWO values instead of one.
  252.         These two values are just the coordinates (UVs or IJs) of the point in
  253.         the texture-map corresponding to the point on the poly.
  254.  
  255.         Well, just consider the poly we used in the Gouraud shading example:
  256.  
  257. ┌───────────────────────────────────────────┬──────────────────────────────────┐
  258. │                   iB,jB                   │                                  │
  259. │                 /\                        │<--- on the screen, it looks like:│
  260. │                /  \                       │                                  │
  261. │               /    \                      ├──────────────────────────────────┤
  262. │              /      \                     │                                  │
  263. │       i1,j1 /        \ i2,j2              │                                  │
  264. │            <---------->       <-- scanline│   in the texture, it looks like: │
  265. │           /  <-i,j->   \                  ├──────────────────────────────────┤
  266. │          /              \                 │                                  │
  267. │         /                \                │               i1,j1              │
  268. │        /                  \               │  iA,jA <-------+-----> iB,jB     │
  269. │  iA,jA \                  /               │     ┌───────────\──────┐         │
  270. │         \                /                │     │            \     │         │
  271. │          \              /                 │     │  B   I  T  -\    │         │
  272. │           \            /                  │     │              \   │         │
  273. │            \          /                   │     │               \  │         │
  274. │             \        /                    │     │    -  M  A  P  \ │         │
  275. │              \      /                     │     │                 \+ i2,j2   │
  276. │               \    /                      │     │                  │         │
  277. │                \  /                       │     │                  │         │
  278. │                 \/                        │     └──────────────────┘         │
  279. │                                           │                                  │
  280. │                                           │                                  │
  281. │                                           │                                  │
  282. └───────────────────────────────────────────┴──────────────────────────────────┘
  283.  
  284.         As you can see, there are two interpolations, and, for each point, you
  285.         got to find the offset corresponding to the two interpolated
  286.         coordinates.
  287.  
  288.         The pseudo-code looks like:
  289.  
  290.         for each point on the scanline:
  291.         {   i=i+inc_i ;
  292.             j=j+inc_j ;
  293.             c=texture[i,j] ;
  294.             plot (c) ;
  295.         }
  296.  
  297.         The main difficulty is to code it in assembler, and using the less
  298.         instructions as possible.
  299.         I think it is possible to do it in six instructions per pixel.
  300.         Has anybody got better ?
  301.  
  302.         code sample:
  303.         (assuming a 256*X bit-map)
  304.         ; EDX and ESI     are the shifted coord.
  305.         ; EBP and INC_J   are the corresponding shifted increments.
  306.         ; ECX is the nb. of points on the scanline
  307.         ; EDI is the offset in the screen
  308.  
  309.         @@:
  310.         MOV     BX,SI           ; bx <- l2 shl 8
  311.         MOV     BL,DH           ; bx <- l2 shl 8 + l1
  312.         MOV     AL,TEXTURE[BX]  ; get the pixel in the bitmap
  313.         STOSB                   ; aff. le pixel
  314.         ADD     EDX,EBP         ; incr. i
  315.         ADD     ESI,INC_J       ; incr. j
  316.         LOOP    @B
  317.  
  318.         (I'll tell you later how to get rid of the 'INC_J' var...
  319.         asm fans don't worry ! cf. tricks&tips: unrolled loops )
  320.  
  321.         Well, OK, this is not true texture-mapping (As I said, this
  322.         is only free-disto), but the illusion works, and the method
  323.         is fast.
  324.         (the game DESCENT implements true texture-mapping, if
  325.         there is a guy somewhere who knows how: please tell me !!)
  326.  
  327.        ┌──────────────────────────────┐
  328.        │4) A word about Phong shading │
  329.        └──────────────────────────────┘
  330.  
  331.         Well, I ain't gonna give here THE method for Phong-shade
  332.         your polys, I don't know wich is the fastest one, but
  333.         I am able to tell you some tricks I collected here and there..
  334.         (Usenet discussions,f.e..).
  335.         First you should know that many Phong that you've seen in
  336.         demos or other are fakes, I mean they are just modified
  337.         Gouraud shading. We can demonstrate that with a sufficient amount
  338.         of polygons and using the Phong illumination model
  339.         ( the shadings in the palette are non-linear ), the differences
  340.         between G-shading and P-shading are very small (but they do exist..).
  341.  
  342.         The main principle is that instead of interpolating intensities, like
  343.         in Gouraud, just interpolate normal vectors along your scanlines..
  344.         It means three values to compute for every pixel (x,y and z coords).
  345.         Then, when you've got your normal vector for each point, you gotta
  346.         renormalise it,it means divide each coordinate by the current length
  347.         of your interpolated vector. It must be done to compute properly the dot
  348.         product between this vector and the light vector, then you've got your
  349.         intensity !..
  350.  
  351.         A little drawing ?:           x
  352.                                      /  light src
  353.                                     /
  354.                                    /
  355.  
  356.  
  357.                       ..... N ....
  358.                  .....      :     ....
  359.           N1  ...           :         ....  N2
  360.             ................:...............
  361.             \               I              /
  362.              \              I             /
  363.               \             I            /
  364.                \____________I___________/
  365.                                             <-- scanline
  366.  
  367.         N1 and N2 are the start-and-end vectors,
  368.         N is the interpolated vector,
  369.         the part of the N vector in  ':' is the result of the renormalisation..
  370.  
  371.         As you can expect, this is impossible to compute in real-time..
  372.         (using this algorithm, I mean!..)
  373.         you've got to update 3 values (the coordinates of the
  374.         interpolated vector), find the length, divide
  375.         the coords by this length and then compute a dot product...
  376.         It takes something like 3 ADDs, 3 DIVs and 6 MULs per pixel !!
  377.  
  378.         There are some speed-up tech.. I'm gonna make here a brief overview.
  379.  
  380.         First: don't compute every pixel: you can easily display three
  381.         pixels of the same color together, or better: compute the true
  382.         values every 4 pixels and interpolate between them...
  383.         (I already told ya: 'interpolation' is THE word..)
  384.  
  385.         next: linear approximation is good, but quadratic is better !
  386.         I've read a very interesting article in IMPHOBIA mag N°10,
  387.         written by .. mhh .. don't remember .. (greetingz!),
  388.         talking about QUAD-ADDERS : a very efficient method for
  389.         interpolating between three values using a parabolic curve.
  390.         It only takes 2 ADD's per pixel !
  391.         you just have to compute three values on your scanline (with kewl
  392.         MUL's and DIV's !!), and then interpolate (again!) between 'em.
  393.         Just read this article, coz the development is too long for this txt...
  394.  
  395.         another one: 'FAST PHONG' by Mister Bishop (??), using taylor
  396.         approximations... I didn't read it. :/
  397.         see ACM computer graphics 20(4) pp.103-106  '1986
  398.  
  399.         Some other methods were developped, using angular or bi-angular
  400.         interpolations.. (see f.e. 'faster Phong shading via angular interpo-
  401.         -lation', Kujik & Blake, computer graphics forum 8 (1989)).
  402.  
  403.         Also think about spherical coordinates and look-up tables.. ;)
  404.  
  405.        ┌───────────────────┐
  406.        │5) Tricks and tips │
  407.        └───────────────────┘
  408.  
  409.         a)- fixed-point maths
  410.         ---------------------
  411.  
  412.         For those who didn't understand how I was doing my incrementations,
  413.         here's a brief recap of the fixed-point principle:
  414.  
  415.         We assume the values you're computing are made of two parts:
  416.         the integer part and the decimal part, the one after the point.
  417.         these two parts are contained in one number and you can decide
  418.         which bits are significant for the int. or dec. part.
  419.         It's very easy to implement : You just have to shift your numbers
  420.         of n bits, meaning you multiply them by 2^n. When you want your
  421.         integer approx., just 'de-shift' them by the right number of bits.
  422.  
  423.         It's even more easier when you shift your values of 8 bits.
  424.         The 80X88 architecture allows you to split your regs in two
  425.         8-bits parts. So if you've got your shifted value in AX,
  426.         the integer approximation will be contained in AH.
  427.         If you work with 16 bits values, for ex. in AX, your shifted
  428.         val should be in EAX, so that the extended part contains the
  429.         integer.(You can even work with 24 bits values, easy to implement
  430.         when smartly using the SHLD/SHRD 386 instr.)
  431.  
  432.  
  433.         b)- single bytes suckz
  434.         ----------------------
  435.  
  436.         All the main-loops examples I wrote only write one byte at each loop.
  437.         It's much more efficient -when possible- to write two bytes (also
  438.         called a word huhu!) at the same time.
  439.         For example, here's the new Gouraud main loop :
  440.         (5 inst. for two pixels!)
  441.  
  442.         SHR     ECX,1
  443.         @@:
  444.         MOV     AL,DH
  445.         ADD     EDX,EBP
  446.         MOV     AH,DH
  447.         STOSW
  448.         ADD     EDX,EBP
  449.         LOOP    @B
  450.  
  451.         But warning ! This only works when you are writing at even offsets.
  452.         Otherwise it won't speed up much, because when the CPU write a word on
  453.         a byte border, it's as slow as writing two bytes 'manually'.
  454.         So you'll have to check - before entering the loop - the parity
  455.         of your first offset, first write one byte if it's odd, and the same
  456.         when the loop is finished...
  457.  
  458.         c)- about the 'loop' instruction
  459.         --------------------------------
  460.  
  461.         A word about the 'loop' instruction: I used it for clarity in my codes,
  462.         but the fastest method for looping is the following:
  463.  
  464.         instead of:     use:
  465.         LOOP @B         DEC     ECX
  466.                         JNZ     @B
  467.  
  468.         The result is the same but it works much more faster !
  469.         (Perhaps no more on P5, ..must be verified..)
  470.  
  471.         d)- unrolled loops
  472.         ------------------
  473.  
  474.         The last tip is fine but the real fastest method for looping
  475.         is ... not to loop !
  476.         Don't you guess ?
  477.         The trick is to 'unroll' your loop, I mean when you know the
  478.         maximum number of times you may loop (usually 320 for a scanline ,
  479.         let's say MAX) you write all the instruction one after one.
  480.         When you enter your loop just jump at the offset LABEL+(MAX-ECX)*N,
  481.         where N is the number of bytes of the instr. constituing your loop.
  482.         Of coz you gotta use the 'REPEAT MAX (...) ENDM' macro-inst for
  483.         writing the code, which induces a space loss, but it's really
  484.         worth it.
  485.         For the Gouraud:
  486.  
  487.             JMP     ...         ; do it yourself, big boy !
  488.  
  489.             REPEAT  320
  490.             MOV     AL,DH       ; al = a shr 8
  491.             ADD     DX,BP       ; a = a+((a2-a1)/(x2-x1))
  492.             STOSB               ; es:[di] = a ; di = di+1
  493.             ENDM
  494.  
  495.         I said when talking about the texture mapping that it was possible
  496.         to get rid of the var : just replace it by ECX which is not used
  497.         anymore in the loop !
  498.  
  499.                         ***** last minute *****
  500.         It seems that the unrolled loops are not so efficient
  501.         -if not less- on the new pipe-lined/"RISC" architecture of the Pentium..
  502.         I am not a hardware freak, but so many people told me that
  503.         I think I just have to believe it !
  504.         It's your matter to know wich config your prodz should work on..
  505.         And one way to know is TESTING.
  506.  
  507.         e)- Z-buffer optimizations
  508.         --------------------------
  509.  
  510.         Yes, there are many !
  511.         DO you know what a depth-sort is ?
  512.         Well, it's just an implementation of the famous painter's algorithm:
  513.         sort your polygons 'back-to-front', so that the nearest polys are
  514.         recovering the furthest.
  515.         For Z-buffer, just reverse : sort your polys 'front-to-back',
  516.         so that -with a bit of luck- you just write the necessary pixels
  517.         on the screen, and not the one which are going to be recovered.
  518.  
  519.         John De Goes - creditz ! - told me some other trickz too:
  520.         f.e:
  521.         - you normally don't have to clear your Z-buffer every frame
  522.         - in some special cases, you don't have to test every pixel
  523.           on your scanline
  524.         - You should be careful too on the Pentium branch-prediction
  525.           chip(see 'last-minute' above): if most of the pixel of the
  526.           poly will be written,execute the jump only if the current
  527.           point is not written..
  528.         - I heard talking about 'fuzzy' algorithms wich may be helpful
  529.           (just heard..)
  530.  
  531.         (see 'Zbuffinf.txt', kewl doc)
  532.  
  533.        ┌────────────────────┐
  534.        │6)- conclusion words│
  535.        └────────────────────┘
  536.  
  537.         I hope this doc will be helpful for beginners in 3d coding.
  538.         It's the kind of help I would have appreciated when I was
  539.         beginning one year ago.
  540.         It perhaps seems a bit confused and the level of each part
  541.         may be variable, but I didn't write it in one time, so
  542.         if some explanations are not clear, don't hesitate to ask me..
  543.         (Sorry for the bad english. I speak french, so be indulgent..)
  544.  
  545.         I still have much to do in 3d coding:
  546.         - implement a TRUE texture-mapping algo,
  547.           not a linear distorsion.
  548.         - I will probably releaze a txt about Phong shading,
  549.           including a (more or less) efficient implementation.
  550.         - BSP trees and/or Z-buffer for a 3d virtual world.
  551.         - The use of extended VESA/SVGA graphic modes such as
  552.           Hi-color or 8bits-Hi-rez modes.
  553.         - Pentium optimizations trix.
  554.         any help is appreciated..!
  555.  
  556.        ┌──────────────────────────┐
  557.        │7)- Credits and greetingz │
  558.        └──────────────────────────┘
  559.  
  560.         Doc written by :
  561.         ----------------
  562.                             KARMA    [ Tfl/TdV = The Flamoots/The Dark Vision ]
  563.                             (Jean Cardinal)
  564.         CONTACT ME !!
  565.         for anything: discussion,advices,remarks,flaming,collaboration...
  566.         E-mail:
  567.                             jcardin@is1.ulb.ac.be
  568.  
  569.         Thanx &/or greetingz to:
  570.         ------------------------
  571.  
  572.                             MORFLAME        [TfL/TdV]
  573.                                 -we gonna do good work together!
  574.  
  575.                             JOHN DE GOES    [on Compuserve]
  576.                                 -Cool docs !
  577.  
  578.                             ALL THE MEMBS OF MY CREW :
  579.                                     type one,sam,cybersurfer,
  580.                                     fred,bismarck,gopi,fly,zoltan,Rod...
  581.  
  582.                             IMPHOBIA
  583.                                 -'nice' is the word
  584.  
  585.                             and everyone I forgot...
  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.