3 #include <intuition/intuition.h>
4 #include <graphics/gfx.h>
5 #include <utility/hooks.h>
7 #include <proto/exec.h>
8 #include <proto/intuition.h>
9 #include <proto/graphics.h>
10 #include <proto/layers.h>
12 #include <clib/alib_protos.h>
18 #define PATTERNWIDTH 32
19 #define PATTERNHEIGHT 32
20 #define PATTERNCOL1 SHADOWPEN
21 #define PATTERNCOL2 SHINEPEN
26 struct Rectangle bounds
;
31 struct IntuitionBase
*IntuitionBase
;
32 struct GfxBase
*GfxBase
;
33 struct Library
*LayersBase
;
35 static struct Screen
*scr
;
36 static struct Window
*win
;
37 static struct DrawInfo
*dri
;
38 static struct BitMap
*patternbm
;
40 static struct Hook backfillhook
;
43 static void Cleanup(char *msg
)
49 printf("winbackfill: %s\n",msg
);
57 if (win
) CloseWindow(win
);
62 FreeBitMap(patternbm
);
65 if (dri
) FreeScreenDrawInfo(scr
,dri
);
66 UnlockPubScreen(0,scr
);
68 if (LayersBase
) CloseLibrary(LayersBase
);
69 if (GfxBase
) CloseLibrary((struct Library
*)GfxBase
);
70 if (IntuitionBase
) CloseLibrary((struct Library
*)IntuitionBase
);
76 static void OpenLibs(void)
78 if (!(IntuitionBase
= (struct IntuitionBase
*)OpenLibrary("intuition.library",39)))
80 Cleanup("Can't open intuition.library V39!");
83 if (!(GfxBase
= (struct GfxBase
*)OpenLibrary("graphics.library",39)))
85 Cleanup("Can't open graphics.library V39!");
88 if (!(LayersBase
= OpenLibrary("layers.library",39)))
90 Cleanup("Can't open layers.library V39!");
95 static void MyBackfillFunc(struct Hook
*hook
,struct RastPort
*rp
,
96 struct LayerHookMsg
*msg
)
100 WORD x1
,y1
,x2
,y2
,px
,py
,pw
,ph
;
107 x1
= msg
->bounds
.MinX
;
108 y1
= msg
->bounds
.MinY
;
109 x2
= msg
->bounds
.MaxX
;
110 y2
= msg
->bounds
.MaxY
;
112 px
= (x1
- lay
->bounds
.MinX
) % PATTERNWIDTH
;
114 pw
= PATTERNWIDTH
- px
;
118 y1
= msg
->bounds
.MinY
;
119 py
= (y1
- lay
->bounds
.MinY
) % PATTERNHEIGHT
;
121 ph
= PATTERNHEIGHT
- py
;
123 if (pw
> (x2
- x1
+ 1)) pw
= x2
- x1
+ 1;
127 if (ph
> (y2
- y1
+ 1)) ph
= y2
- y1
+ 1;
146 } while (y1
<= y2
); /* while(y1 < y2) */
153 } while (x1
<= x2
); /* while (x1 < x2) */
157 static void InitBackfillHook(void)
159 backfillhook
.h_Entry
= HookEntry
;
160 backfillhook
.h_SubEntry
= (HOOKFUNC
)MyBackfillFunc
;
164 static void GetVisual(void)
166 if (!(scr
= LockPubScreen(0)))
168 Cleanup("Can't lock pub screen!");
171 if (!(dri
= GetScreenDrawInfo(scr
)))
173 Cleanup("Can't get drawinfo!");
178 static void MakePattern(void)
180 struct RastPort
*temprp
;
182 if (!(patternbm
= AllocBitMap(PATTERNWIDTH
* 2,
184 GetBitMapAttr(scr
->RastPort
.BitMap
,BMA_DEPTH
),
186 scr
->RastPort
.BitMap
)))
188 Cleanup("Can't create pattern bitmap!");
191 if (!(temprp
= CreateRastPort()))
193 Cleanup("Can't create rastport!");
196 temprp
->BitMap
= patternbm
;
198 SetAPen(temprp
,dri
->dri_Pens
[PATTERNCOL1
]);
200 RectFill(temprp
,0,0,10,10);
202 RectFill(temprp
,0,0,PATTERNWIDTH
- 1,PATTERNHEIGHT
- 1);
204 SetAPen(temprp
,dri
->dri_Pens
[PATTERNCOL2
]);
207 PATTERNWIDTH
/ 2 - 1,
208 PATTERNHEIGHT
/ 2 - 1);
210 RectFill(temprp
,PATTERNWIDTH
/ 2,
215 FreeRastPort(temprp
);
219 static void MakeWin(void)
221 if (!(win
= OpenWindowTags(0,WA_PubScreen
,(IPTR
)scr
,
226 WA_Title
,(IPTR
)"Window Backfill Test",
227 WA_SimpleRefresh
,TRUE
,
234 WA_MaxWidth
,scr
->Width
,
235 WA_MaxHeight
,scr
->Height
,
236 WA_IDCMP
,IDCMP_CLOSEWINDOW
| IDCMP_REFRESHWINDOW
,
237 WA_BackFill
,(IPTR
)&backfillhook
,
240 Cleanup("Can't open window!");
243 ScreenToFront(win
->WScreen
);
248 static void HandleAll(void)
250 struct IntuiMessage
*msg
;
256 WaitPort(win
->UserPort
);
258 while ((msg
= (struct IntuiMessage
*)GetMsg(win
->UserPort
)))
262 case IDCMP_CLOSEWINDOW
:
266 case IDCMP_REFRESHWINDOW
:
268 EndRefresh(win
,TRUE
);
272 ReplyMsg((struct Message
*)msg
);