home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-3.iso / Graphics / 3d / Hidden.0.01.README < prev    next >
Encoding:
Text File  |  1992-06-01  |  9.2 KB  |  205 lines

  1.  
  2. Hidden    V0.01 alpha Preliminary
  3. ª 1992 by Stefan Holzinger
  4.  
  5. Overview
  6.  
  7. This program is only a demo. Its mainly use was to teach me the use of this machine. You may freely copy it as long as you don't delete my copyright message. It was quite a lot of work. So just be kind to this code!
  8. I don't know if this program is of any use for anyone. I guarantee for the existence for a great number of bugs, ill-designed algorithms and especially runtime inefficiencies.
  9. If you use this program you do it on your own risk!
  10. If you decide to use some of the sourcecode be aware of the deficiencies and please insert my name in your copyright message. Keep in mind that this code is copyrighted!
  11. If you haven't got the sourcecode contact me at:
  12.  
  13.     Stefan Holzinger
  14.     Klitschgasse 20/B
  15.     1130 Wien
  16.     AUSTRIA
  17.     % ((USA:01143) 222) 84 57 464
  18.  
  19. Sorry, I'm working on a single machine, no ethernet and not even a modem in sight (sigh!). So please write me or phone me if you are interested on code, updates (??) or if you want to help my billfold.
  20.  
  21. As the name of the program suggests it tries to draw objects (note the lower letter 'o' to distinguish from Objective-C Objects) as we see them in the natural way we see them every day. Note that I don't have the knowledge to implement a hidden surface algorithm or something even better – I settled down with a hidden line algorithm. Don't boo me – I'm really proud I got that far!
  22.  
  23. This program works on following data:
  24.     a list of points
  25.     a list of lines (two indices of points)
  26.     a list of facettes (a list of indices of lines)
  27. To display an object  the program first calculates a transformation (based on various user definable parameters). If you selected to display just a wire frame the rest is easy: run through all the lines and draw them (the facettes aren't even touched!). If you selected to draw the objects as if they were massive it's getting more involved:
  28.     for every line:
  29.         for every facette:
  30.             look if facette hides some part of this line. if it does mark the part
  31.         draw the (parts of the) line
  32.  
  33. Things start growing more complicated when you allow form multiple objects, multiple windows...
  34. The algorithm should work fine with multiple parts of a line invisible and parts in between still visible.
  35. Note that this program does no checking on input data. It is of great importance to validate your data or you will end up with a lot of rubbish. Note also that this program was written light-handed – I didn't have enough time to debug it thorougly. 
  36.  
  37.  
  38. Parameters:
  39.  
  40. Parallel projection:
  41. alpha:    horizontal rotation.
  42. 0 degrees:    you're looking parallel to x-axis
  43. 90 degrees:    you're looking parallel to y-axis.
  44. beta:     vertical rotation (elevation).
  45. 0 degrees:    you're looking exactly horizontal
  46. 90 degrees:    you're looking straight down.
  47. All other parameters should have no effect.
  48.  
  49. Zentral (normal) projection:
  50. alpha:    horizontal rotation.
  51. 0 degrees:    you're looking parallel to x-axis
  52. 90 degrees:    you're looking parallel to y-axis.
  53. beta:     vertical rotation (elevation). [isn't shown in View Direction Panel]
  54. 0 degrees:    you're looking exactly horizontal
  55. 90 degrees:    you're looking straight down.
  56. X displacement,
  57. Y displacement:    horizontal movement of reference point.
  58. Z displacement:    distance of eyes from the floor.
  59. eye distance:    distance of eyes from your object(s). If you get closer you'll get a stronger effect.
  60. eye separation:    distance between the eyes. This is useful for stereo projection only.
  61.  
  62. Reference Point:
  63. The lowest nearest and rightmost point for alpha >= 0 else leftmost. Note that this leads to some 'jumping' when changing sign of alpha.
  64.  
  65.  
  66. Examples:
  67.  
  68. I've included a few examples. They are:
  69.  
  70. Koordinaten.hide    x, y, z axis for better reference
  71. Pyramide.hide    a six-sided pyramid
  72. Tetraeder.hide    a tetraeder
  73. Würfel.hide    a cube
  74. Brücke.hide    a bridge; well, no facettes included
  75. Multi.hide    3 objects (beautifully assembled)
  76.  
  77. Note that it's possible to store multiple objects in one file! When saving the program looks for selected objects – not for drawn objects.
  78.  
  79.  
  80. File Format:
  81.  
  82. The file format for a single object is:
  83.  
  84. Hidden   version number (currently 1.01)
  85. SingleFile
  86. Name of object
  87. number of points
  88. number of lines
  89. number of facettes
  90. for each point:    x     y    z
  91. for each line:    index of first point    index of second point    line width    line type     color (R G B A)
  92. for each facette:
  93. number of lines in this facette
  94. for each line in this facette:    index of line
  95.  
  96. The file format for multiple objects is:
  97.  
  98. Hidden   version number (currently 1.01)
  99. Multiple file:   number of objects    name of collection
  100. Name of object
  101. number of points
  102. number of lines
  103. number of facettes
  104. for each point:    x     y    z
  105.     for each line:    index of first point    index of second point    line width    line type     color (R G B A)
  106. for each facette:
  107. number of lines in this facette
  108. for each line in this facette:    index of line
  109. < this body is repeated for every object >
  110.  
  111. Tip: look into example files
  112.  
  113.  
  114. Caveats:
  115.  
  116. •    Facettes have to be contiguous and convex (i.e. no holes, no gulfs etc).
  117.     Workaround: separate these facettes into multiple facettes using invisible lines if you wish (just set alpha to 0). This problem is inherent to the algorithm.
  118. •    Alpha not being opaque or completely transparent is ignored. 
  119. •    Avoid objects intersecting one another. 
  120. •    Unknown results for points behind the eye (think of something behind your head).
  121. •    This program should be a editor for objects not just a viewer. You'll have to create your objects manually until the next release of Hidden.
  122.  
  123.  
  124. Known Bugs:
  125.  
  126. Massive mode doesn't work for all angels for natural (and stereo) projection.
  127. Here I know where to look at – I didn't have time to fix this. Increase eye distance to avoid this.
  128. Command-number doesn't work when Inspector wasn't displayed before.
  129. I think I should add something to Menu to fix this. Does anyone have a good idea?
  130. Editing of Objects not fully implemented (insertion and deletion, cut & paste,... missing)
  131. Objects cannot be copied, pasted, deleted...
  132. Multiple windows should be allowed.
  133. It isn't (yet) possible to save your drawing into an .eps file.
  134. Program should start without displaying an object (the cube).
  135.  
  136. Note: I won't change anything on this code until NeXTstep 3.0.
  137.  
  138.  
  139. Important classes within Hidden
  140.  
  141. StoreObject class
  142. This is the Controller Object. This is currently only able to store one ObjStorage (i.e. one window). It will be added a support for multiple windows.
  143.  
  144. ObjStorage class
  145. This Object stores a list of an array of a struct containing ids pointing to the arrays of Punkte (points; a Storage containing the coordinates of the points), Geraden (lines; a Storage containing the indices of 2 points each), Facetten (facettes; a D2Storage containing indices of lines), ZweiDim (a Storage containing the transformed coordinates of the points) and a name. To do so it uses a Storage object.
  146. Additionally it is able to manage a selection: The transformation and display modules like to see only a single array of points, lines and facettes regardless of the selection by the User  (He can do so in the Inspector). The difficulty lies in the dealing with 'holes' in the selection and the need to update the indices.
  147.  
  148. D2Storage class
  149. As Storage but uses a List to hold the ids of Storage Objects. Note the ease of doing so!
  150.  
  151. ResultView class
  152. This is used to display the results. Includes the hidden lines algorithm.
  153.  
  154. BildebeneView class
  155. This is used to select the viewing direction.
  156.  
  157. ProjectType class
  158. This controls the panel to select the type of the projection.
  159.  
  160. ProjectBer class
  161. Does the real calculation.
  162.  
  163. Inspector class
  164. This is the controller of the Inspectors. It uses .nib files like the IB. It also uses NiftyMatrix and NiftyMatrixCell classes for the ScrollView to select the object.
  165.  
  166. InspectorObject class
  167. InspectorPunkte class
  168. InspectorGeraden class
  169. InspectorFacetten class
  170. used by Inspector to inspect various things.
  171.  
  172. InspectorMove class
  173. InspectorScale class
  174. InspectorRotate class
  175. same as above but allows multiple selection.
  176.  
  177. InspectorNoAvail class
  178. What would you think?
  179.  
  180. NiftyMatrix class (stolen from ScrollDoodScroll)
  181. The NiftyMatrix class differs from the Matrix class in that a NiftyMatrix allows the user to rearrange cells, as InterfaceBuilder lets you do with menu items.  If a user control-clicks on a cell, that cell will follow the mouse as the user drags it, leaving a “well” in its place.  When the user releases the cell over another cell in the matrix, the NiftyMatrix places the control-dragged cell in that location and slides the other cells up or down in order to fill the vacant spot.  
  182. Has to be added a connection to the objects themselves. (StoreObject)
  183.  
  184. NiftyMatrixCell class (stolen from ScrollDoodScroll: CustomCell)
  185. The CustomCell class demonstrates how, by overriding the drawInside:inView: method, you can display graphics and/or text at different locations within the cell.  CustomCells place a TIFF image at the cell's left-hand side, followed by a right-justified, dark-gray number, followed by a text string.
  186.  
  187. LanguageApp class (stolen from Mandelbrot)
  188. Marvellous! See there! Should be standard in Version 3.0. (Some addings are needed for soundfiles)
  189.  
  190.  
  191. Interesting Stuff
  192.  
  193. ObjStorage class
  194. How to manage a selection reindexing the database.
  195.  
  196. CustomCell
  197. How to draw whatever you want within a cell
  198.  
  199. Inspector
  200. How to load .nib files and how to change subviews.
  201.     
  202. NiftyMatrix
  203. How to implement autoscrolling
  204. Using off-screen image buffers for fast drawing
  205.