2 * Acess2 Window Manager v3
3 * - By John Hodge (thePowersGang)
6 * - Window manager core
9 #include <wm_renderer.h>
13 #include <wm_messages.h>
14 #include <decorator.h>
17 extern void IPC_SendWMMessage(tIPC_Client *Client, uint32_t Src, uint32_t Dst, int Msg, int Len, const void *Data);
18 extern void IPC_SendReply(tIPC_Client *Client, uint32_t WinID, int MsgID, size_t Len, const void *Data);
19 extern tWindow *IPC_int_GetWindow(tIPC_Client *Client, uint32_t ID);
22 tWMRenderer *gpWM_Renderers;
23 tWindow *gpWM_RootWindow;
24 //! Window which will recieve the next keyboard event
25 tWindow *gpWM_FocusedWindow;
26 //! Hilighted window (owner of the currently focused window)
27 tWindow *gpWM_HilightedWindow;
30 void WM_Initialise(void)
32 WM_CreateWindow(NULL, NULL, 0, 0x0088FF, "Background");
33 gpWM_RootWindow->W = giScreenWidth;
34 gpWM_RootWindow->H = giScreenHeight;
35 gpWM_RootWindow->Flags = WINFLAG_SHOW|WINFLAG_NODECORATE;
38 void WM_RegisterRenderer(tWMRenderer *Renderer)
40 // TODO: Catch out duplicates
41 Renderer->Next = gpWM_Renderers;
42 gpWM_Renderers = Renderer;
46 tWindow *WM_CreateWindow(tWindow *Parent, tIPC_Client *Client, uint32_t ID, int RendererArg, const char *RendererName)
48 tWMRenderer *renderer;
52 for( renderer = gpWM_Renderers; renderer; renderer = renderer->Next )
54 if(strcmp(RendererName, renderer->Name) == 0)
60 // - Call create window function
61 ret = renderer->CreateWindow(RendererArg);
66 ret->Parent = gpWM_RootWindow;
68 ret->Renderer = renderer;
69 ret->Flags |= WINFLAG_CLEAN; // Needed to stop invaildate early exiting
74 if(ret->Parent->LastChild)
75 ret->Parent->LastChild->NextSibling = ret;
77 ret->Parent->FirstChild = ret;
78 ret->PrevSibling = ret->Parent->LastChild;
79 ret->Parent->LastChild = ret;
80 ret->NextSibling = NULL;
84 gpWM_RootWindow = ret;
87 // Don't decorate child windows by default
90 ret->Flags |= WINFLAG_NODECORATE;
97 tWindow *WM_GetWindowByID(tWindow *Requester, uint32_t ID)
99 return IPC_int_GetWindow(Requester->Client, ID);
102 tWindow *WM_CreateWindowStruct(size_t ExtraSize)
106 ret = calloc( sizeof(tWindow) + ExtraSize, 1 );
107 ret->RendererInfo = ret + 1; // Get end of tWindow
112 void WM_SetWindowTitle(tWindow *Window, const char *Title)
116 Window->Title = strdup(Title);
117 _SysDebug("Window %p title set to '%s'", Window, Title);
120 void WM_RaiseWindow(tWindow *Window)
122 tWindow *parent = Window->Parent;
123 if(!Window->Parent) return ;
126 if(Window->PrevSibling)
127 Window->PrevSibling->NextSibling = Window->NextSibling;
128 if(Window->NextSibling)
129 Window->NextSibling->PrevSibling = Window->PrevSibling;
130 if(parent->FirstChild == Window)
131 parent->FirstChild = Window->NextSibling;
132 if(parent->LastChild == Window)
133 parent->LastChild = Window->PrevSibling;
136 if(parent->LastChild)
137 parent->LastChild->NextSibling = Window;
139 parent->FirstChild = Window;
140 Window->PrevSibling = parent->LastChild;
141 Window->NextSibling = NULL;
142 parent->LastChild = Window;
144 _SysDebug("Raised %p", Window);
148 void WM_RaiseWindow(tWindow *Window)
150 // Move to the last render position (move to top)
151 while(Window && Window->Parent)
153 if( Window->NextSibling )
156 if( Window->PrevSibling )
157 Window->PrevSibling->NextSibling = Window->NextSibling;
158 Window->NextSibling->PrevSibling = Window->PrevSibling;
160 Window->PrevSibling = Window->Parent->LastChild;
161 Window->NextSibling = NULL;
163 Window->PrevSibling->NextSibling = Window;
164 Window->Parent->LastChild = Window;
166 _SysDebug("WM_RaiseWindow: Raised %p", Window);
167 Window = Window->Parent;
172 void WM_FocusWindow(tWindow *Destination)
174 struct sWndMsg_Bool _msg;
176 if( gpWM_FocusedWindow == Destination )
178 if( Destination && !(Destination->Flags & WINFLAG_SHOW) )
181 if( gpWM_FocusedWindow )
184 WM_SendMessage(NULL, gpWM_FocusedWindow, WNDMSG_FOCUS, sizeof(_msg), &_msg);
189 WM_SendMessage(NULL, Destination, WNDMSG_FOCUS, sizeof(_msg), &_msg);
192 WM_Invalidate(gpWM_FocusedWindow);
193 WM_Invalidate(Destination);
195 gpWM_FocusedWindow = Destination;
199 void WM_ShowWindow(tWindow *Window, int bShow)
201 struct sWndMsg_Bool _msg;
203 if( !!(Window->Flags & WINFLAG_SHOW) == bShow )
208 WM_SendMessage(NULL, Window, WNDMSG_SHOW, sizeof(_msg), &_msg);
212 Window->Flags |= WINFLAG_SHOW;
213 _SysDebug("Window %p shown", Window);
217 Window->Flags &= ~WINFLAG_SHOW;
219 if( Window == gpWM_FocusedWindow )
220 WM_FocusWindow(Window->Parent);
222 // Just a little memory saving for large hidden windows
223 if(Window->RenderBuffer) {
224 free(Window->RenderBuffer);
225 Window->RenderBuffer = NULL;
227 _SysDebug("Window %p hidden", Window);
230 WM_Invalidate(Window);
233 void WM_DecorateWindow(tWindow *Window, int bDecorate)
235 if( !(Window->Flags & WINFLAG_NODECORATE) == !!bDecorate )
239 Window->Flags &= ~WINFLAG_NODECORATE;
241 Window->Flags |= WINFLAG_NODECORATE;
243 // Needed because the window size changes
244 if(Window->RenderBuffer) {
245 free(Window->RenderBuffer);
246 Window->RenderBuffer = NULL;
249 WM_Invalidate(Window);
252 void WM_SetRelative(tWindow *Window, int bRelativeToParent)
254 // _SysDebug("WM_SetRelative: (%p{Parent=%p},%i)", Window, Window->Parent, bRelativeToParent);
255 // No meaning if no parent
256 if( !Window->Parent )
259 // Check that the flag is changing
260 if( !!bRelativeToParent == !!(Window->Flags & WINFLAG_RELATIVE) )
263 if( bRelativeToParent ) {
265 Window->Flags |= WINFLAG_RELATIVE;
266 WM_MoveWindow(Window, Window->X, Window->Y);
270 Window->Flags &= ~WINFLAG_RELATIVE;
271 WM_MoveWindow(Window, Window->X - Window->Parent->X, Window->Y - Window->Parent->Y);
275 int WM_MoveWindow(tWindow *Window, int X, int Y)
277 // _SysDebug("Move %p to (%i,%i)", Window, X, Y);
279 if(X + Window->W < 0) X = -Window->W + 1;
280 if(Y + Window->H < 0) Y = -Window->H + 1;
281 if(X >= giScreenWidth) X = giScreenWidth - 1;
282 if(Y >= giScreenHeight) Y = giScreenHeight - 1;
284 // If relative to the parent, extra checks
285 if( (Window->Flags & WINFLAG_RELATIVE) && Window->Parent )
287 if( X > Window->Parent->W ) return 1;
288 if( Y > Window->Parent->H ) return 1;
292 _SysDebug("WM_MoveWindow: (%i,%i)", X, Y);
293 Window->X = X; Window->Y = Y;
295 // Mark up the tree that a child window has changed
296 while( (Window = Window->Parent) )
297 Window->Flags &= ~WINFLAG_CHILDCLEAN;
302 int WM_ResizeWindow(tWindow *Window, int W, int H)
304 if(W <= 0 || H <= 0 ) return 1;
305 if(Window->X + W < 0) Window->X = -W + 1;
306 if(Window->Y + H < 0) Window->Y = -H + 1;
308 if( Window->W == W && Window->H == H )
311 _SysDebug("WM_Resizeindow: %ix%i", W, H);
312 Window->W = W; Window->H = H;
314 if(Window->RenderBuffer) {
315 free(Window->RenderBuffer);
316 Window->RenderBuffer = NULL;
318 WM_Invalidate(Window);
321 struct sWndMsg_Resize msg;
324 WM_SendMessage(NULL, Window, WNDMSG_RESIZE, sizeof(msg), &msg);
330 int WM_SendMessage(tWindow *Source, tWindow *Dest, int Message, int Length, const void *Data)
332 // _SysDebug("WM_SendMessage: (%p, %p, %i, %i, %p)", Source, Dest, Message, Length, Data);
334 _SysDebug("WM_SendMessage: NULL destination from %p", __builtin_return_address(0));
337 if(Length > 0 && Data == NULL) {
338 _SysDebug("WM_SendMessage: non-zero length and NULL data");
342 if( Decorator_HandleMessage(Dest, Message, Length, Data) != 1 )
344 // TODO: Catch errors from ->HandleMessage
345 // _SysDebug("WM_SendMessage: Decorator grabbed message?");
349 // ->HandleMessage returns 1 when the message was not handled
350 if( Dest->Renderer->HandleMessage(Dest, Message, Length, Data) != 1 )
352 // TODO: Catch errors from ->HandleMessage
353 // _SysDebug("WM_SendMessage: Renderer grabbed message?");
357 // TODO: Implement message masking
359 // Dispatch to client
365 else if(Source->Client != Dest->Client) {
366 // TODO: Support different client source windows
367 _SysDebug("WM_SendMessage: TODO - Support inter-client messages");
374 // _SysDebug("WM_SendMessage: IPC Dispatch");
375 IPC_SendWMMessage(Dest->Client, src_id, Dest->ID, Message, Length, Data);
381 int WM_SendIPCReply(tWindow *Window, int Message, size_t Length, const void *Data)
383 IPC_SendReply(Window->Client, Window->ID, Message, Length, Data);
387 void WM_Invalidate(tWindow *Window)
390 // _SysDebug("Invalidating %p", Window);
391 // Don't invalidate twice (speedup)
392 // if( !(Window->Flags & WINFLAG_CLEAN) ) return;
394 // Mark for re-render
395 Window->Flags &= ~WINFLAG_CLEAN;
397 // Mark up the tree that a child window has changed
398 while( (Window = Window->Parent) )
399 Window->Flags &= ~WINFLAG_CHILDCLEAN;
402 // --- Rendering / Update
403 void WM_int_UpdateWindow(tWindow *Window)
405 int bDecoratorRedraw = 0;
407 // Ignore hidden windows
408 if( !(Window->Flags & WINFLAG_SHOW) )
411 if( (Window->Flags & WINFLAG_RELATIVE) && Window->Parent )
413 Window->RealX = Window->Parent->RealX + Window->Parent->BorderL + Window->X;
414 Window->RealY = Window->Parent->RealY + Window->Parent->BorderT + Window->Y;
418 Window->RealX = Window->X;
419 Window->RealY = Window->Y;
423 if( !(Window->Flags & WINFLAG_CLEAN) )
425 // Calculate RealW/RealH
426 if( !(Window->Flags & WINFLAG_NODECORATE) )
428 //_SysDebug("Applying decorations to %p", Window);
429 Decorator_UpdateBorderSize(Window);
430 Window->RealW = Window->BorderL + Window->W + Window->BorderR;
431 Window->RealH = Window->BorderT + Window->H + Window->BorderB;
432 bDecoratorRedraw = 1;
440 Window->RealW = Window->W;
441 Window->RealH = Window->H;
444 Window->Renderer->Redraw(Window);
445 Window->Flags |= WINFLAG_CLEAN;
449 if( !(Window->Flags & WINFLAG_CHILDCLEAN) )
452 for( child = Window->FirstChild; child; child = child->NextSibling )
454 WM_int_UpdateWindow(child);
456 Window->Flags |= WINFLAG_CHILDCLEAN;
459 if( bDecoratorRedraw )
460 Decorator_Redraw(Window);
463 void WM_int_BlitWindow(tWindow *Window)
467 // Ignore hidden windows
468 if( !(Window->Flags & WINFLAG_SHOW) )
471 // Duplicated position update to handle window moving
472 if( (Window->Flags & WINFLAG_RELATIVE) && Window->Parent )
474 Window->RealX = Window->Parent->RealX + Window->Parent->BorderL + Window->X;
475 Window->RealY = Window->Parent->RealY + Window->Parent->BorderT + Window->Y;
479 Window->RealX = Window->X;
480 Window->RealY = Window->Y;
483 // _SysDebug("Blit %p (%p) to (%i,%i) %ix%i", Window, Window->RenderBuffer,
484 // Window->RealX, Window->RealY, Window->RealW, Window->RealH);
485 Video_Blit(Window->RenderBuffer, Window->RealX, Window->RealY, Window->RealW, Window->RealH);
487 if( Window == gpWM_FocusedWindow && Window->CursorW )
490 Window->RealX + Window->BorderL + Window->CursorX,
491 Window->RealY + Window->BorderT + Window->CursorY,
492 Window->CursorW, Window->CursorH,
497 for( child = Window->FirstChild; child; child = child->NextSibling )
499 WM_int_BlitWindow(child);
505 // Don't redraw if nothing has changed
506 if( (gpWM_RootWindow->Flags & WINFLAG_CHILDCLEAN) )
509 // - Iterate through visible windows, updating them as needed
510 WM_int_UpdateWindow(gpWM_RootWindow);
512 // - Draw windows from back to front to the render buffer
513 WM_int_BlitWindow(gpWM_RootWindow);