revert between 56095 -> 55830 in arch
[AROS.git] / workbench / demos / winbackfill.c
blobcc741c1a2f5250aa03ff9dc7f055ae3cc516b4dc
2 #include <dos/dos.h>
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>
14 #include <stdio.h>
15 #include <string.h>
16 #include <stdlib.h>
18 #define PATTERNWIDTH 32
19 #define PATTERNHEIGHT 32
20 #define PATTERNCOL1 SHADOWPEN
21 #define PATTERNCOL2 SHINEPEN
23 struct LayerHookMsg
25 struct Layer *lay;
26 struct Rectangle bounds;
27 LONG offsetx;
28 LONG offsety;
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)
45 WORD rc;
47 if (msg)
49 printf("winbackfill: %s\n",msg);
50 rc = RETURN_WARN;
52 else
54 rc = RETURN_OK;
57 if (win) CloseWindow(win);
59 if (patternbm)
61 WaitBlit();
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);
72 exit(rc);
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)
98 struct Layer *lay;
99 WORD x1,y1,x2,y2,px,py,pw,ph;
101 lay = msg->lay;
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;
125 BltBitMap(patternbm,
128 rp->BitMap,
133 192,
134 255,
137 y1 += ph;
139 py = 0;
140 ph = PATTERNHEIGHT;
142 } while (y1 <= y2); /* while(y1 < y2) */
144 x1 += pw;
146 px = 0;
147 pw = PATTERNWIDTH;
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,
178 PATTERNHEIGHT * 2,
179 GetBitMapAttr(scr->RastPort.BitMap,BMA_DEPTH),
180 BMF_CLEAR,
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,
203 WA_Left,10,
204 WA_Top,10,
205 WA_Width,300,
206 WA_Height,150,
207 WA_Title,(IPTR)"Window Backfill Test",
208 WA_SimpleRefresh,TRUE,
209 WA_CloseGadget,TRUE,
210 WA_DepthGadget,TRUE,
211 WA_DragBar,TRUE,
212 WA_SizeGadget,TRUE,
213 WA_MinWidth,50,
214 WA_MinHeight,50,
215 WA_MaxWidth,scr->Width,
216 WA_MaxHeight,scr->Height,
217 WA_IDCMP,IDCMP_CLOSEWINDOW | IDCMP_REFRESHWINDOW,
218 WA_BackFill,(IPTR)&backfillhook,
219 TAG_DONE)))
221 Cleanup("Can't open window!");
224 ScreenToFront(win->WScreen);
229 static void HandleAll(void)
231 struct IntuiMessage *msg;
233 BOOL quitme = FALSE;
235 while (!quitme)
237 WaitPort(win->UserPort);
239 while ((msg = (struct IntuiMessage *)GetMsg(win->UserPort)))
241 switch (msg->Class)
243 case IDCMP_CLOSEWINDOW:
244 quitme = TRUE;
245 break;
247 case IDCMP_REFRESHWINDOW:
248 BeginRefresh(win);
249 EndRefresh(win,TRUE);
250 break;
253 ReplyMsg((struct Message *)msg);
259 int main(void)
261 OpenLibs();
262 InitBackfillHook();
263 GetVisual();
264 MakePattern();
265 MakeWin();
266 HandleAll();
267 Cleanup(0);
269 return 0;