Reading joystick 5 when we only support 4 should fail instead of
[wine/multimedia.git] / windows / timer.c
blob5339d940abdaefde49326502a336dc07923d310d
1 /*
2 * Timer functions
4 * Copyright 1993 Alexandre Julliard
5 */
7 #include "windows.h"
8 #include "queue.h"
9 #include "task.h"
10 #include "winproc.h"
11 #include "debug.h"
14 typedef struct tagTIMER
16 HWND32 hwnd;
17 HQUEUE16 hq;
18 UINT16 msg; /* WM_TIMER or WM_SYSTIMER */
19 UINT32 id;
20 UINT32 timeout;
21 struct tagTIMER *next;
22 DWORD expires; /* Next expiration, or 0 if already expired */
23 HWINDOWPROC proc;
24 } TIMER;
26 #define NB_TIMERS 34
27 #define NB_RESERVED_TIMERS 2 /* for SetSystemTimer */
29 static TIMER TimersArray[NB_TIMERS];
31 static TIMER * pNextTimer = NULL; /* Next timer to expire */
33 /* Duration from 'time' until expiration of the timer */
34 #define EXPIRE_TIME(pTimer,time) \
35 (((pTimer)->expires <= (time)) ? 0 : (pTimer)->expires - (time))
38 /***********************************************************************
39 * TIMER_InsertTimer
41 * Insert the timer at its place in the chain.
43 static void TIMER_InsertTimer( TIMER * pTimer )
45 if (!pNextTimer || (pTimer->expires < pNextTimer->expires))
47 pTimer->next = pNextTimer;
48 pNextTimer = pTimer;
50 else
52 TIMER * ptr = pNextTimer;
53 while (ptr->next && (pTimer->expires >= ptr->next->expires))
54 ptr = ptr->next;
55 pTimer->next = ptr->next;
56 ptr->next = pTimer;
61 /***********************************************************************
62 * TIMER_RemoveTimer
64 * Remove the timer from the chain.
66 static void TIMER_RemoveTimer( TIMER * pTimer )
68 TIMER **ppTimer = &pNextTimer;
70 while (*ppTimer && (*ppTimer != pTimer)) ppTimer = &(*ppTimer)->next;
71 if (*ppTimer) *ppTimer = pTimer->next;
72 pTimer->next = NULL;
73 if (!pTimer->expires) QUEUE_DecTimerCount( pTimer->hq );
77 /***********************************************************************
78 * TIMER_ClearTimer
80 * Clear and remove a timer.
82 static void TIMER_ClearTimer( TIMER * pTimer )
84 TIMER_RemoveTimer( pTimer );
85 pTimer->hwnd = 0;
86 pTimer->msg = 0;
87 pTimer->id = 0;
88 pTimer->timeout = 0;
89 WINPROC_FreeProc( pTimer->proc, WIN_PROC_TIMER );
93 /***********************************************************************
94 * TIMER_SwitchQueue
96 void TIMER_SwitchQueue( HQUEUE16 old, HQUEUE16 new )
98 TIMER * pT = pNextTimer;
100 while (pT)
102 if (pT->hq == old) pT->hq = new;
103 pT = pT->next;
108 /***********************************************************************
109 * TIMER_RemoveWindowTimers
111 * Remove all timers for a given window.
113 void TIMER_RemoveWindowTimers( HWND32 hwnd )
115 int i;
116 TIMER *pTimer;
118 for (i = NB_TIMERS, pTimer = TimersArray; i > 0; i--, pTimer++)
119 if ((pTimer->hwnd == hwnd) && pTimer->timeout)
120 TIMER_ClearTimer( pTimer );
124 /***********************************************************************
125 * TIMER_RemoveQueueTimers
127 * Remove all timers for a given queue.
129 void TIMER_RemoveQueueTimers( HQUEUE16 hqueue )
131 int i;
132 TIMER *pTimer;
134 for (i = NB_TIMERS, pTimer = TimersArray; i > 0; i--, pTimer++)
135 if ((pTimer->hq == hqueue) && pTimer->timeout)
136 TIMER_ClearTimer( pTimer );
140 /***********************************************************************
141 * TIMER_RestartTimers
143 * Restart an expired timer.
145 static void TIMER_RestartTimer( TIMER * pTimer, DWORD curTime )
147 TIMER_RemoveTimer( pTimer );
148 pTimer->expires = curTime + pTimer->timeout;
149 TIMER_InsertTimer( pTimer );
153 /***********************************************************************
154 * TIMER_GetNextExpiration
156 * Return next timer expiration time, or -1 if none.
158 LONG TIMER_GetNextExpiration(void)
160 return pNextTimer ? EXPIRE_TIME( pNextTimer, GetTickCount() ) : -1;
164 /***********************************************************************
165 * TIMER_ExpireTimers
167 * Mark expired timers and wake the appropriate queues.
169 void TIMER_ExpireTimers(void)
171 TIMER *pTimer = pNextTimer;
172 DWORD curTime = GetTickCount();
174 while (pTimer && !pTimer->expires) /* Skip already expired timers */
175 pTimer = pTimer->next;
176 while (pTimer && (pTimer->expires <= curTime))
178 pTimer->expires = 0;
179 QUEUE_IncTimerCount( pTimer->hq );
180 pTimer = pTimer->next;
185 /***********************************************************************
186 * TIMER_GetTimerMsg
188 * Build a message for an expired timer.
190 BOOL32 TIMER_GetTimerMsg( MSG16 *msg, HWND32 hwnd,
191 HQUEUE16 hQueue, BOOL32 remove )
193 TIMER *pTimer = pNextTimer;
194 DWORD curTime = GetTickCount();
196 if (hwnd) /* Find first timer for this window */
197 while (pTimer && (pTimer->hwnd != hwnd)) pTimer = pTimer->next;
198 else /* Find first timer for this queue */
199 while (pTimer && (pTimer->hq != hQueue)) pTimer = pTimer->next;
201 if (!pTimer || (pTimer->expires > curTime)) return FALSE; /* No timer */
202 if (remove) TIMER_RestartTimer( pTimer, curTime ); /* Restart it */
204 TRACE(timer, "Timer expired: %04x, %04x, %04x, %08lx\n",
205 pTimer->hwnd, pTimer->msg, pTimer->id, (DWORD)pTimer->proc);
207 /* Build the message */
208 msg->hwnd = (HWND16)pTimer->hwnd;
209 msg->message = pTimer->msg;
210 msg->wParam = (UINT16)pTimer->id;
211 msg->lParam = (LONG)pTimer->proc;
212 msg->time = curTime;
213 return TRUE;
217 /***********************************************************************
218 * TIMER_SetTimer
220 static UINT32 TIMER_SetTimer( HWND32 hwnd, UINT32 id, UINT32 timeout,
221 WNDPROC16 proc, WINDOWPROCTYPE type, BOOL32 sys )
223 int i;
224 TIMER * pTimer;
226 if (!timeout) return 0;
228 /* Check if there's already a timer with the same hwnd and id */
230 for (i = 0, pTimer = TimersArray; i < NB_TIMERS; i++, pTimer++)
231 if ((pTimer->hwnd == hwnd) && (pTimer->id == id) &&
232 (pTimer->timeout != 0))
234 /* Got one: set new values and return */
235 TIMER_RemoveTimer( pTimer );
236 pTimer->timeout = timeout;
237 WINPROC_FreeProc( pTimer->proc, WIN_PROC_TIMER );
238 pTimer->proc = (HWINDOWPROC)0;
239 if (proc) WINPROC_SetProc( &pTimer->proc, proc,
240 type, WIN_PROC_TIMER );
241 pTimer->expires = GetTickCount() + timeout;
242 TIMER_InsertTimer( pTimer );
243 return id;
246 /* Find a free timer */
248 for (i = 0, pTimer = TimersArray; i < NB_TIMERS; i++, pTimer++)
249 if (!pTimer->timeout) break;
251 if (i >= NB_TIMERS) return 0;
252 if (!sys && (i >= NB_TIMERS-NB_RESERVED_TIMERS)) return 0;
253 if (!hwnd) id = i + 1;
255 /* Add the timer */
257 pTimer->hwnd = hwnd;
258 pTimer->hq = (hwnd) ? GetThreadQueue( GetWindowThreadProcessId( hwnd, NULL ) )
259 : GetFastQueue( );
260 pTimer->msg = sys ? WM_SYSTIMER : WM_TIMER;
261 pTimer->id = id;
262 pTimer->timeout = timeout;
263 pTimer->expires = GetTickCount() + timeout;
264 pTimer->proc = (HWINDOWPROC)0;
265 if (proc) WINPROC_SetProc( &pTimer->proc, proc, type, WIN_PROC_TIMER );
266 TRACE(timer, "Timer added: %p, %04x, %04x, %04x, %08lx\n",
267 pTimer, pTimer->hwnd, pTimer->msg, pTimer->id,
268 (DWORD)pTimer->proc );
269 TIMER_InsertTimer( pTimer );
270 if (!id) return TRUE;
271 else return id;
275 /***********************************************************************
276 * TIMER_KillTimer
278 static BOOL32 TIMER_KillTimer( HWND32 hwnd, UINT32 id, BOOL32 sys )
280 int i;
281 TIMER * pTimer;
283 /* Find the timer */
285 for (i = 0, pTimer = TimersArray; i < NB_TIMERS; i++, pTimer++)
286 if ((pTimer->hwnd == hwnd) && (pTimer->id == id) &&
287 (pTimer->timeout != 0)) break;
288 if (i >= NB_TIMERS) return FALSE;
289 if (!sys && (i >= NB_TIMERS-NB_RESERVED_TIMERS)) return FALSE;
290 if (!sys && (pTimer->msg != WM_TIMER)) return FALSE;
291 else if (sys && (pTimer->msg != WM_SYSTIMER)) return FALSE;
293 /* Delete the timer */
295 TIMER_ClearTimer( pTimer );
296 return TRUE;
300 /***********************************************************************
301 * SetTimer16 (USER.10)
303 UINT16 WINAPI SetTimer16( HWND16 hwnd, UINT16 id, UINT16 timeout,
304 TIMERPROC16 proc )
306 TRACE(timer, "%04x %d %d %08lx\n",
307 hwnd, id, timeout, (LONG)proc );
308 return TIMER_SetTimer( hwnd, id, timeout, (WNDPROC16)proc,
309 WIN_PROC_16, FALSE );
313 /***********************************************************************
314 * SetTimer32 (USER32.511)
316 UINT32 WINAPI SetTimer32( HWND32 hwnd, UINT32 id, UINT32 timeout,
317 TIMERPROC32 proc )
319 TRACE(timer, "%04x %d %d %08lx\n",
320 hwnd, id, timeout, (LONG)proc );
321 return TIMER_SetTimer( hwnd, id, timeout, (WNDPROC16)proc,
322 WIN_PROC_32A, FALSE );
326 /***********************************************************************
327 * SetSystemTimer16 (USER.11)
329 UINT16 WINAPI SetSystemTimer16( HWND16 hwnd, UINT16 id, UINT16 timeout,
330 TIMERPROC16 proc )
332 TRACE(timer, "%04x %d %d %08lx\n",
333 hwnd, id, timeout, (LONG)proc );
334 return TIMER_SetTimer( hwnd, id, timeout, (WNDPROC16)proc,
335 WIN_PROC_16, TRUE );
339 /***********************************************************************
340 * SetSystemTimer32 (USER32.509)
342 UINT32 WINAPI SetSystemTimer32( HWND32 hwnd, UINT32 id, UINT32 timeout,
343 TIMERPROC32 proc )
345 TRACE(timer, "%04x %d %d %08lx\n",
346 hwnd, id, timeout, (LONG)proc );
347 return TIMER_SetTimer( hwnd, id, timeout, (WNDPROC16)proc,
348 WIN_PROC_32A, TRUE );
352 /***********************************************************************
353 * KillTimer16 (USER.12)
355 BOOL16 WINAPI KillTimer16( HWND16 hwnd, UINT16 id )
357 TRACE(timer, "%04x %d\n", hwnd, id );
358 return TIMER_KillTimer( hwnd, id, FALSE );
362 /***********************************************************************
363 * KillTimer32 (USER32.354)
365 BOOL32 WINAPI KillTimer32( HWND32 hwnd, UINT32 id )
367 TRACE(timer, "%04x %d\n", hwnd, id );
368 return TIMER_KillTimer( hwnd, id, FALSE );
372 /***********************************************************************
373 * KillSystemTimer16 (USER.182)
375 BOOL16 WINAPI KillSystemTimer16( HWND16 hwnd, UINT16 id )
377 TRACE(timer, "%04x %d\n", hwnd, id );
378 return TIMER_KillTimer( hwnd, id, TRUE );
382 /***********************************************************************
383 * KillSystemTimer32 (USER32.353)
385 BOOL32 WINAPI KillSystemTimer32( HWND32 hwnd, UINT32 id )
387 TRACE(timer, "%04x %d\n", hwnd, id );
388 return TIMER_KillTimer( hwnd, id, TRUE );