home *** CD-ROM | disk | FTP | other *** search
/ Loadstar 231 / 231.d81 / t.vobject < prev    next >
Text File  |  2022-08-26  |  2KB  |  104 lines

  1. u
  2.             V O B J E C T
  3.            by Dave Moorman
  4.  
  5.  
  6.     DOTBASIC gives you the power to
  7. cut Screen Objects into Collections,
  8. which can be returned to the screen
  9. using only an index number and the X,Y
  10. position of the upper left corner.
  11. Moreover, a Screen Object Collection
  12. can be BSAVEd and BLOADed anywhere in
  13. memory (except under I/O) and used in
  14. your main program.
  15.  
  16.     VOBJECT is a simple utility that
  17. allows you to load a MED or TBS file
  18. (created with VDOT), cut Screen
  19. Objects into a Collection, and save
  20. the collection as an SOC (Screen
  21. Object Collection) file.
  22.  
  23.  
  24. FILE
  25.  
  26.     LOAD allows you to load a MED,
  27. TBS, or SOC file. The MED file format
  28. includes font, screen, and color data.
  29. The TBS file contains only screen and
  30. color information. Screens designed
  31. with VDOT can be saved in either
  32. format. The SOC file contains a Screen
  33. Object Collection created with
  34. VOBJECT.
  35.  
  36.     SAVE allows you to save the SOC
  37. file created with VOBJECT.
  38.  
  39.     DISK allows choosing the disk
  40. drive.
  41.  
  42.     EXIT leaves the program.
  43.  
  44.  
  45. EDIT
  46.  
  47.     COLOR <F1> presents the
  48. Unhighlighted and Highlighted colors
  49. used with the menus of VOBJECT. Click
  50. <-> or <+> to change colors. Click
  51. <DONE> to exit, using the chosen
  52. colors.
  53.  
  54.     CAPTURE allows marking an area of
  55. the screen and adding it to the Screen
  56. Object Collection. Place the square
  57. marker in the upper left corner of the
  58. area you wish to capture. Click. Move
  59. the mouse down and right to bracket
  60. the desired area. Click. A dialog box
  61. shows the Object Number, Memory Used,
  62. and Remaining Memory in the Screen
  63. Object Collection. Click <Yes> to add
  64. the selected screen area to the
  65. Collection.
  66.  
  67.     DEL CAP # removes the last Screen
  68. Object in the Collection.
  69.  
  70.     VIEW CAPS allows you to flip
  71. through the existing Screen Object in
  72. the Collection. Just press a key to
  73. cycle through the Objects.
  74.  
  75.  
  76.     The Collection memory is limited
  77. to 4096 bytes. After saving a
  78. Collection, used DEL CAP # repeatedly
  79. to empty the Collection, then build a
  80. new Collection.
  81.  
  82.     The Screen Object Collection
  83. memory begins with a byte that
  84. indicates how many Objects are
  85. present. This is followed by a
  86. two-byte relative pointer to the
  87. beginning of the next object. The next
  88. two bytes contain the Width and Height
  89. of the Screen Object. Then comes the
  90. actualy data of the Object,
  91. alternating screen code and color
  92. code.
  93.  
  94.   INDEX!HASHLO!HASHHI!WIDE!HIGH!DATA>>
  95.  
  96.  
  97.  
  98.     VOBJECT was the first "serious"
  99. program written with DOTBASIC, and was
  100. completed in about 3 hours.
  101.  
  102.  DMM
  103.  
  104.  
  105.