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
)
99 WORD x1
,y1
,x2
,y2
,px
,py
,pw
,ph
;
103 x1
= msg
->bounds
.MinX
;
104 y1
= msg
->bounds
.MinY
;
105 x2
= msg
->bounds
.MaxX
;
106 y2
= msg
->bounds
.MaxY
;
108 px
= (x1
- lay
->bounds
.MinX
) % PATTERNWIDTH
;
110 pw
= PATTERNWIDTH
- px
;
114 y1
= msg
->bounds
.MinY
;
115 py
= (y1
- lay
->bounds
.MinY
) % PATTERNHEIGHT
;
117 ph
= PATTERNHEIGHT
- py
;
119 if (pw
> (x2
- x1
+ 1)) pw
= x2
- x1
+ 1;
123 if (ph
> (y2
- y1
+ 1)) ph
= y2
- y1
+ 1;
142 } while (y1
<= y2
); /* while(y1 < y2) */
149 } while (x1
<= x2
); /* while (x1 < x2) */
153 static void InitBackfillHook(void)
155 backfillhook
.h_Entry
= HookEntry
;
156 backfillhook
.h_SubEntry
= (HOOKFUNC
)MyBackfillFunc
;
160 static void GetVisual(void)
162 if (!(scr
= LockPubScreen(0)))
164 Cleanup("Can't lock pub screen!");
167 if (!(dri
= GetScreenDrawInfo(scr
)))
169 Cleanup("Can't get drawinfo!");
173 static struct RastPort temprp
;
175 static void MakePattern(void)
177 if (!(patternbm
= AllocBitMap(PATTERNWIDTH
* 2,
179 GetBitMapAttr(scr
->RastPort
.BitMap
,BMA_DEPTH
),
181 scr
->RastPort
.BitMap
)))
183 Cleanup("Can't create pattern bitmap!");
186 InitRastPort(&temprp
);
187 temprp
.BitMap
= patternbm
;
189 SetAPen(&temprp
,dri
->dri_Pens
[PATTERNCOL1
]);
191 RectFill(&temprp
, 0, 0, 10, 10);
192 RectFill(&temprp
, 0, 0, PATTERNWIDTH
- 1, PATTERNHEIGHT
- 1);
194 SetAPen(&temprp
,dri
->dri_Pens
[PATTERNCOL2
]);
195 RectFill(&temprp
, 0, 0, PATTERNWIDTH
/ 2 - 1, PATTERNHEIGHT
/ 2 - 1);
196 RectFill(&temprp
,PATTERNWIDTH
/ 2, PATTERNHEIGHT
/ 2, PATTERNWIDTH
- 1, PATTERNHEIGHT
- 1);
200 static void MakeWin(void)
202 if (!(win
= OpenWindowTags(0,WA_PubScreen
,(IPTR
)scr
,
207 WA_Title
,(IPTR
)"Window Backfill Test",
208 WA_SimpleRefresh
,TRUE
,
215 WA_MaxWidth
,scr
->Width
,
216 WA_MaxHeight
,scr
->Height
,
217 WA_IDCMP
,IDCMP_CLOSEWINDOW
| IDCMP_REFRESHWINDOW
,
218 WA_BackFill
,(IPTR
)&backfillhook
,
221 Cleanup("Can't open window!");
224 ScreenToFront(win
->WScreen
);
229 static void HandleAll(void)
231 struct IntuiMessage
*msg
;
237 WaitPort(win
->UserPort
);
239 while ((msg
= (struct IntuiMessage
*)GetMsg(win
->UserPort
)))
243 case IDCMP_CLOSEWINDOW
:
247 case IDCMP_REFRESHWINDOW
:
249 EndRefresh(win
,TRUE
);
253 ReplyMsg((struct Message
*)msg
);