2 Copyright © 1998, The AROS Development Team. All rights reserved.
5 Desc: Test for graphics.hidd
9 /*****************************************************************************
17 GCCopyArea HIDD/K,WIDTH/N/K,HEIGHT/N/K,DEPTH/N/K,CHUNKY/S,DISPLAYABLE=DP/S
25 Creates a gc, copies the left, upper corner to the center of the
26 gc and disposes the gc.
29 HIDD - name of the hidd to use e.g. "graphics-X11.hidd"
30 (default: graphics.hidd)
31 WIDTH - width of bitmap (default: 320)
32 HEIGHT - height of bitmap (default: 200)
33 DEPTH - depth of bitmap (default: 8)
34 CHUNKY - create bitmap in chunky-mode (default: planar)
35 DISPLAYABLE - show bitmap (default: FALSE)
38 RETURN_OK - hidd works
39 RETURN_ERROR - hidd produce errors
40 RETURN_FAIL - could not test hidd i.e. OpenLibrary() fails
54 ******************************************************************************/
61 #include <aros/config.h>
63 #include <exec/types.h>
65 #include <proto/exec.h>
66 #include <proto/dos.h>
67 #include <proto/oop.h>
68 #include <proto/utility.h>
70 #include <utility/tagitem.h>
73 #include <hidd/graphics.h>
74 #include <hidd/graphics-amiga-intuition.h>
76 #include "gfxhiddtool.h"
81 #include <aros/debug.h>
83 struct DosLibrary
*DOSBase
;
84 struct Library
*OOPBase
;
85 struct Library
*HIDDGraphicsBase
;
87 struct ght_OpenLibs LibsArray
[] =
89 GHT_LIB("dos.library" , 37, &DOSBase
),
90 GHT_LIB(AROSOOP_NAME
, 0, &OOPBase
),
91 GHT_LIB(NULL
, 0, NULL
)
93 /***************************************************************/
95 int main(int argc
, char **argv
)
97 ULONG ret
= RETURN_FAIL
;
99 OOP_AttrBase HiddGCAttrBase
;
100 OOP_AttrBase HiddGfxAttrBase
;
101 OOP_AttrBase HiddBitMapAttrBase
;
107 STRPTR hiddName
= "graphics.hidd";
111 ULONG format
= vHidd_BitMap_Format_Planar
;
124 struct Args args
= {hiddName
, &width
, &height
, &depth
, 0, 0};
128 if(ght_OpenLibs(LibsArray
))
130 rda
= ReadArgs("HIDD/K,WIDTH/N/K,HEIGHT/N/K,DEPTH/N/K,CHUNKY/S,DISPLAYABLE=DP/S", (IPTR
*)&args
, NULL
);
133 if(args
.chunky
!= 0) format
= vHidd_BitMap_Format_Chunky
;
134 if(args
.displayable
!= 0) args
.displayable
= (ULONG
) TRUE
;
136 HIDDGraphicsBase
= OpenLibrary(args
.hiddName
, 0);
141 HiddGfxAttrBase
= OOP_ObtainAttrBase(IID_Hidd_Gfx
);
142 HiddBitMapAttrBase
= OOP_ObtainAttrBase(IID_Hidd_BitMap
);
143 HiddGCAttrBase
= OOP_ObtainAttrBase(IID_Hidd_GC
);
145 if(HiddGfxAttrBase
&& HiddBitMapAttrBase
&& HiddGCAttrBase
)
147 gfxHidd
= OOP_NewObject(NULL
, args
.hiddName
, NULL
);
150 struct TagItem bm_tags
[] =
152 {aHidd_BitMap_Width
, (IPTR
) *args
.width
},
153 {aHidd_BitMap_Height
, (IPTR
) *args
.height
},
154 {aHidd_BitMap_Depth
, (IPTR
) *args
.depth
},
155 {aHidd_BitMap_Format
, (IPTR
) format
},
156 {aHidd_BitMap_Displayable
, (IPTR
) args
.displayable
},
160 bitMap
= HIDD_Gfx_NewBitMap(gfxHidd
, bm_tags
);
163 struct TagItem gc_tags
[] =
165 {aHidd_GC_BitMap
, (IPTR
) bitMap
},
169 gc
= HIDD_Gfx_NewGC(gfxHidd
, gc_tags
);
172 HIDD_BM_CopyArea(gc
, 0, 0, gc
, 140, 80, 40, 10);
174 printf("Press enter to continue");
180 HIDD_Gfx_DisposeBitMap(gfxHidd
, bitMap
);
183 if(gfxHidd
) OOP_DisposeObject(gfxHidd
);
185 } /* if(HiddGfxAttrBase && HiddBitMapAttrBase && HiddGCAttrBase) */
187 if(HiddGfxAttrBase
) OOP_ReleaseAttrBase(IID_Hidd_Gfx
);
188 if(HiddBitMapAttrBase
) OOP_ReleaseAttrBase(IID_Hidd_BitMap
);
189 if(HiddGCAttrBase
) OOP_ReleaseAttrBase(IID_Hidd_GC
);
191 CloseLibrary(HIDDGraphicsBase
);
192 } /* if(HIDDGraphicsBase) */
197 PrintFault(IoErr(), "");
198 } /* if (rda != NULL) */
199 } /* if OpenLibs() */
201 ght_CloseLibs(LibsArray
);