home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 4 / FreshFish_May-June1994.bin / bbs / cbm / nduk-v37.lha / V37 / include / graphics / displayinfo.i < prev    next >
Text File  |  1991-11-27  |  6KB  |  206 lines

  1.     IFND    GRAPHICS_DISPLAYINFO_I
  2. GRAPHICS_DISPLAYINFO_I    SET    1
  3. **
  4. **    $Filename: graphics/displayinfo.i $
  5. **    $Release: 2.04 Includes, V37.4 $
  6. **    $Revision: 37.7 $
  7. **    $Date: 91/11/08 $
  8. **
  9. **    include define file for display control registers
  10. **
  11. **    (C) Copyright 1985-1991 Commodore-Amiga, Inc.
  12. **        All Rights Reserved
  13. **
  14.  
  15.     IFND    EXEC_TYPES_I
  16.     include 'exec/types.i'
  17.     ENDC
  18.  
  19.     IFND    GRAPHICS_GFX_I
  20.     include 'graphics/gfx.i'
  21.     ENDC
  22.  
  23.     IFND    GRAPHICS_MONITOR_I
  24.     include 'graphics/monitor.i'
  25.     ENDC
  26.  
  27.     IFND    UTILITY_TAGITEM_I
  28.     include 'utility/tagitem.i'
  29.     ENDC
  30.  
  31. * datachunk type identifiers
  32.  
  33. DTAG_DISP    equ          $80000000
  34. DTAG_DIMS    equ          $80001000
  35. DTAG_MNTR    equ          $80002000
  36. DTAG_NAME    equ          $80003000
  37.  
  38.  
  39.     STRUCTURE    QueryHeader,0
  40.     ULONG    qh_StructID    ; datachunk type identifier
  41.     ULONG    qh_DisplayID    ; copy of display record key
  42.     ULONG    qh_SkipID    ; TAG_SKIP -- see tagitems.h
  43.     ULONG    qh_Length    ; length of data in double-longwords
  44.     LABEL qh_SIZEOF
  45.  
  46.     STRUCTURE    DisplayInfo,qh_SIZEOF
  47.     UWORD    dis_NotAvailable      ; if NULL available, else see defines
  48.     ULONG    dis_PropertyFlags      ; Properties of this mode see defines
  49.     STRUCT    dis_Resolution,tpt_SIZEOF ; ticks-per-pixel X/Y
  50.     UWORD    dis_PixelSpeed          ; aproximation in nanoseconds
  51.     UWORD    dis_NumStdSprites      ; number of standard amiga sprites
  52.     UWORD    dis_PaletteRange      ; distinguishable shades available
  53.     STRUCT    dis_SpriteResolution,tpt_SIZEOF ; sprite ticks-per-pixel X/Y
  54.     STRUCT    dis_pad,4
  55.     STRUCT    dis_reserved,8          ; terminator
  56.     LABEL dis_SIZEOF
  57.  
  58. * availability
  59.  
  60. DI_AVAIL_NOCHIPS    equ    $0001
  61. DI_AVAIL_NOMONITOR    equ    $0002
  62. DI_AVAIL_NOTWITHGENLOCK    equ    $0004
  63.  
  64. * mode properties
  65.  
  66. DIPF_IS_LACE        equ    $00000001
  67. DIPF_IS_DUALPF        equ    $00000002
  68. DIPF_IS_PF2PRI        equ    $00000004
  69. DIPF_IS_HAM        equ    $00000008
  70.  
  71. DIPF_IS_ECS        equ    $00000010    ;*    note: ECS modes (SHIRES, VGA, and **
  72. *                                ;*    PRODUCTIVITY) do not support      **
  73. *                                ;*    attached sprites.          **
  74. DIPF_IS_PAL        equ    $00000020
  75. DIPF_IS_SPRITES        equ    $00000040
  76. DIPF_IS_GENLOCK        equ    $00000080
  77.  
  78. DIPF_IS_WB        equ    $00000100
  79. DIPF_IS_DRAGGABLE    equ    $00000200
  80. DIPF_IS_PANELLED    equ    $00000400
  81. DIPF_IS_BEAMSYNC    equ    $00000800
  82.  
  83. DIPF_IS_EXTRAHALFBRITE equ    $00001000
  84.  
  85.     STRUCTURE DimensionInfo,qh_SIZEOF
  86.     UWORD    dim_MaxDepth        ; log2( max number of colors
  87.     UWORD    dim_MinRasterWidth    ; minimum width in pixels
  88.     UWORD    dim_MinRasterHeight    ; minimum height in pixels
  89.     UWORD    dim_MaxRasterWidth    ; maximum width in pixels
  90.     UWORD    dim_MaxRasterHeight    ; maximum height in pixels
  91.     STRUCT    dim_Nominal,ra_SIZEOF    ; "standard" dimensions
  92.     STRUCT    dim_MaxOScan,ra_SIZEOF    ; fixed, hardware dependant
  93.     STRUCT    dim_VideoOScan,ra_SIZEOF ; fixed, hardware dependant
  94.     STRUCT    dim_TxtOScan,ra_SIZEOF    ; editable via preferences
  95.     STRUCT    dim_StdOScan,ra_SIZEOF    ; editable via preferences
  96.     STRUCT    dim_pad,14
  97.     STRUCT    dim_reserved,8        ; terminator
  98.     LABEL dim_SIZEOF
  99.  
  100.     STRUCTURE MonitorInfo,qh_SIZEOF
  101.     APTR    mtr_Mspc        ; pointer to monitor specification
  102.     STRUCT    mtr_ViewPosition,tpt_SIZEOF    ; editable via preferences
  103.     STRUCT    mtr_ViewResolution,tpt_SIZEOF    ; monitor ticks-per-pixel
  104.     STRUCT    mtr_ViewPositionRange,ra_SIZEOF    ; fixed, hardware dependant
  105.     UWORD    mtr_TotalRows        ; display height in scanlines
  106.     UWORD    mtr_TotalColorClocks    ; scanline width in 280 ns units
  107.     UWORD    mtr_MinRow        ; absolute minimum active scanline
  108.     WORD    mtr_Compatibility    ; how this coexists with others
  109.     STRUCT    mtr_pad,36
  110.     STRUCT    mtr_DefaultViewPosition,tpt_SIZEOF    ; original, never changes
  111.     ULONG    mtr_PreferredModeID                ; for preferences
  112.     STRUCT    mtr_reserved,8        ; terminator
  113.     LABEL mtr_SIZEOF
  114.  
  115. * monitor compatibility
  116.  
  117. MCOMPAT_MIXED        equ  0    ; can share display with other MCOMPAT_MIXED
  118. MCOMPAT_SELF        equ  1    ; can share only within same monitor
  119. MCOMPAT_NOBODY        equ -1    ; only one viewport at a time
  120.  
  121. DISPLAYNAMELEN        equ 32
  122.  
  123.     STRUCTURE NameInfo,qh_SIZEOF
  124.     STRUCT    nif_Name,DISPLAYNAMELEN
  125.     STRUCT    nif_reserved,8        ; terminator
  126.     LABEL nif_SIZEOF
  127.  
  128. * DisplayInfoRecord identifiers
  129.  
  130. INVALID_ID        equ    -1
  131.  
  132. *normal identifiers
  133.  
  134. MONITOR_ID_MASK        equ    $FFFF1000
  135.  
  136. DEFAULT_MONITOR_ID    equ    $00000000
  137. NTSC_MONITOR_ID        equ    $00011000
  138. PAL_MONITOR_ID        equ    $00021000
  139.  
  140. * the following 20 composite keys are for Modes on the default Monitor
  141. * ntsc & pal "flavors" of these particular keys may be made by or'ing
  142. * the ntsc or pal MONITOR_ID with the desired MODE_KEY...
  143.  
  144. LORES_KEY        equ    $00000000 
  145. HIRES_KEY        equ    $00008000 
  146. SUPER_KEY        equ    $00008020 
  147. HAM_KEY            equ    $00000800 
  148. LORESLACE_KEY        equ    $00000004 
  149. HIRESLACE_KEY        equ    $00008004 
  150. SUPERLACE_KEY        equ    $00008024 
  151. HAMLACE_KEY        equ    $00000804 
  152. LORESDPF_KEY        equ    $00000400 
  153. HIRESDPF_KEY        equ    $00008400 
  154. SUPERDPF_KEY        equ    $00008420 
  155. LORESLACEDPF_KEY    equ    $00000404 
  156. HIRESLACEDPF_KEY    equ    $00008404 
  157. SUPERLACEDPF_KEY    equ    $00008424 
  158. LORESDPF2_KEY        equ    $00000440 
  159. HIRESDPF2_KEY        equ    $00008440 
  160. SUPERDPF2_KEY        equ    $00008460 
  161. LORESLACEDPF2_KEY    equ    $00000444 
  162. HIRESLACEDPF2_KEY    equ    $00008444 
  163. SUPERLACEDPF2_KEY    equ    $00008464 
  164. EXTRAHALFBRITE_KEY    equ    $00000080
  165. EXTRAHALFBRITELACE_KEY    equ    $00000084
  166.  
  167. * vga identifiers
  168.  
  169. VGA_MONITOR_ID        equ    $00031000 
  170.  
  171. VGAEXTRALORES_KEY    equ    $00031004 
  172. VGALORES_KEY        equ    $00039004 
  173. VGAPRODUCT_KEY         equ    $00039024 
  174. VGAHAM_KEY        equ    $00031804 
  175. VGAEXTRALORESLACE_KEY    equ    $00031005 
  176. VGALORESLACE_KEY    equ    $00039005 
  177. VGAPRODUCTLACE_KEY    equ    $00039025 
  178. VGAHAMLACE_KEY        equ    $00031805 
  179. VGAEXTRALORESDPF_KEY    equ    $00031404 
  180. VGALORESDPF_KEY        equ    $00039404 
  181. VGAPRODUCTDPF_KEY    equ    $00039424 
  182. VGAEXTRALORESLACEDPF_KEY equ    $00031405 
  183. VGALORESLACEDPF_KEY    equ    $00039405 
  184. VGAPRODUCTLACEDPF_KEY    equ    $00039425 
  185. VGAEXTRALORESDPF2_KEY    equ    $00031444 
  186. VGALORESDPF2_KEY    equ    $00039444 
  187. VGAPRODUCTDPF2_KEY    equ    $00039464 
  188. VGAEXTRALORESLACEDPF2_KEY equ    $00031445 
  189. VGALORESLACEDPF2_KEY    equ    $00039445 
  190. VGAPRODUCTLACEDPF2_KEY    equ    $00039465 
  191. VGAEXTRAHALFBRITE_KEY    equ    $00031084
  192. VGAEXTRAHALFBRITELACE_KEY equ    $00031085
  193.  
  194. * a2024 identifiers
  195.  
  196. A2024_MONITOR_ID    equ    $00041000 
  197.  
  198. A2024TENHERTZ_KEY     equ    $00041000 
  199. A2024FIFTEENHERTZ_KEY   equ    $00049000 
  200.  
  201. * prototype identifiers
  202.  
  203. PROTO_MONITOR_ID    equ    $00051000 
  204.  
  205.     ENDC    ; GRAPHICS_DISPLAYINFO_I 
  206.