Release 941227
[wine/multimedia.git] / windows / timer.c
blob9c54240b3b56a66c939bf2f498edf89b71979f7d
1 /*
2 * Timer functions
4 * Copyright 1993 Alexandre Julliard
5 */
7 static char Copyright[] = "Copyright Alexandre Julliard, 1993";
9 #include "windows.h"
10 #include "message.h"
11 #include "stddebug.h"
12 /* #define DEBUG_TIMER */
13 #include "debug.h"
16 typedef struct tagTIMER
18 HWND hwnd;
19 WORD msg; /* WM_TIMER or WM_SYSTIMER */
20 WORD id;
21 WORD timeout;
22 struct tagTIMER *next;
23 DWORD expires;
24 FARPROC proc;
25 } TIMER;
27 #define NB_TIMERS 34
28 #define NB_RESERVED_TIMERS 2 /* for SetSystemTimer */
30 static TIMER TimersArray[NB_TIMERS];
32 static TIMER * pNextTimer = NULL; /* Next timer to expire */
34 /* Duration from 'time' until expiration of the timer */
35 #define EXPIRE_TIME(pTimer,time) \
36 (((pTimer)->expires <= (time)) ? 0 : (pTimer)->expires - (time))
39 /***********************************************************************
40 * TIMER_InsertTimer
42 * Insert the timer at its place in the chain.
44 static void TIMER_InsertTimer( TIMER * pTimer )
46 if (!pNextTimer || (pTimer->expires < pNextTimer->expires))
48 pTimer->next = pNextTimer;
49 pNextTimer = pTimer;
51 else
53 TIMER * ptr = pNextTimer;
54 while (ptr->next && (pTimer->expires >= ptr->next->expires))
55 ptr = ptr->next;
56 pTimer->next = ptr->next;
57 ptr->next = pTimer;
62 /***********************************************************************
63 * TIMER_RemoveTimer
65 * Remove the timer from the chain.
67 static void TIMER_RemoveTimer( TIMER * pTimer )
69 if (pTimer == pNextTimer) pNextTimer = pTimer->next;
70 else
72 TIMER * ptr = pNextTimer;
73 while (ptr && (ptr->next != pTimer)) ptr = ptr->next;
74 if (ptr) ptr->next = pTimer->next;
76 pTimer->next = NULL;
80 /***********************************************************************
81 * TIMER_RestartTimers
83 * Restart an expired timer.
85 static void TIMER_RestartTimer( TIMER * pTimer, DWORD curTime )
87 TIMER_RemoveTimer( pTimer );
88 pTimer->expires = curTime + pTimer->timeout;
89 TIMER_InsertTimer( pTimer );
93 /***********************************************************************
94 * TIMER_CheckTimer
96 * Check whether a timer has expired, and create a message if necessary.
97 * Otherwise, return time until next timer expiration in 'next'.
98 * If 'hwnd' is not NULL, only consider timers for this window.
99 * If 'remove' is TRUE, remove all expired timers up to the returned one.
101 BOOL TIMER_CheckTimer( LONG *next, MSG *msg, HWND hwnd, BOOL remove )
103 TIMER * pTimer = pNextTimer;
104 DWORD curTime = GetTickCount();
106 if (hwnd) /* Find first timer for this window */
107 while (pTimer && (pTimer->hwnd != hwnd)) pTimer = pTimer->next;
109 if (!pTimer) *next = -1;
110 else *next = EXPIRE_TIME( pTimer, curTime );
111 if (*next != 0) return FALSE; /* No timer expired */
113 if (remove) /* Restart all timers before pTimer, and then pTimer itself */
115 while (pNextTimer != pTimer) TIMER_RestartTimer( pNextTimer, curTime );
116 TIMER_RestartTimer( pTimer, curTime );
119 /* Build the message */
120 msg->hwnd = pTimer->hwnd;
121 msg->message = pTimer->msg;
122 msg->wParam = pTimer->id;
123 msg->lParam = (LONG)pTimer->proc;
124 msg->time = curTime;
125 return TRUE;
129 /***********************************************************************
130 * TIMER_SetTimer
132 static WORD TIMER_SetTimer( HWND hwnd, WORD id, WORD timeout,
133 FARPROC proc, BOOL sys )
135 int i;
136 TIMER * pTimer;
138 if (!timeout) return 0;
139 /* if (!hwnd && !proc) return 0; */
141 /* Check if there's already a timer with the same hwnd and id */
143 for (i = 0, pTimer = TimersArray; i < NB_TIMERS; i++, pTimer++)
144 if ((pTimer->hwnd == hwnd) && (pTimer->id == id) &&
145 (pTimer->timeout != 0))
147 /* Got one: set new values and return */
148 pTimer->timeout = timeout;
149 pTimer->expires = GetTickCount() + timeout;
150 pTimer->proc = proc;
151 TIMER_RemoveTimer( pTimer );
152 TIMER_InsertTimer( pTimer );
153 return id;
156 /* Find a free timer */
158 for (i = 0, pTimer = TimersArray; i < NB_TIMERS; i++, pTimer++)
159 if (!pTimer->timeout) break;
161 if (i >= NB_TIMERS) return 0;
162 if (!sys && (i >= NB_TIMERS-NB_RESERVED_TIMERS)) return 0;
163 if (!hwnd) id = i + 1;
165 /* Add the timer */
167 pTimer->hwnd = hwnd;
168 pTimer->msg = sys ? WM_SYSTIMER : WM_TIMER;
169 pTimer->id = id;
170 pTimer->timeout = timeout;
171 pTimer->expires = GetTickCount() + timeout;
172 pTimer->proc = proc;
173 TIMER_InsertTimer( pTimer );
174 MSG_IncTimerCount( GetTaskQueue(0) );
175 if (!id)
176 return TRUE;
177 else
178 return id;
182 /***********************************************************************
183 * TIMER_KillTimer
185 static BOOL TIMER_KillTimer( HWND hwnd, WORD id, BOOL sys )
187 int i;
188 TIMER * pTimer;
190 /* Find the timer */
192 for (i = 0, pTimer = TimersArray; i < NB_TIMERS; i++, pTimer++)
193 if ((pTimer->hwnd == hwnd) && (pTimer->id == id) &&
194 (pTimer->timeout != 0)) break;
195 if (i >= NB_TIMERS) return FALSE;
196 if (!sys && (i >= NB_TIMERS-NB_RESERVED_TIMERS)) return FALSE;
197 if (!sys && (pTimer->msg != WM_TIMER)) return FALSE;
198 else if (sys && (pTimer->msg != WM_SYSTIMER)) return FALSE;
200 /* Delete the timer */
202 pTimer->hwnd = 0;
203 pTimer->msg = 0;
204 pTimer->id = 0;
205 pTimer->timeout = 0;
206 pTimer->proc = 0;
207 TIMER_RemoveTimer( pTimer );
208 MSG_DecTimerCount( GetTaskQueue(0) );
209 return TRUE;
213 /***********************************************************************
214 * SetTimer (USER.10)
216 WORD SetTimer( HWND hwnd, WORD id, WORD timeout, FARPROC proc )
218 dprintf_timer(stddeb, "SetTimer: %d %d %d %p\n", hwnd, id, timeout, proc );
219 return TIMER_SetTimer( hwnd, id, timeout, proc, FALSE );
223 /***********************************************************************
224 * SetSystemTimer (USER.11)
226 WORD SetSystemTimer( HWND hwnd, WORD id, WORD timeout, FARPROC proc )
228 dprintf_timer(stddeb, "SetSystemTimer: %d %d %d %p\n",
229 hwnd, id, timeout, proc );
230 return TIMER_SetTimer( hwnd, id, timeout, proc, TRUE );
234 /***********************************************************************
235 * KillTimer (USER.12)
237 BOOL KillTimer( HWND hwnd, WORD id )
239 dprintf_timer(stddeb, "KillTimer: %d %d\n", hwnd, id );
240 return TIMER_KillTimer( hwnd, id, FALSE );
244 /***********************************************************************
245 * KillSystemTimer (USER.182)
247 BOOL KillSystemTimer( HWND hwnd, WORD id )
249 dprintf_timer(stddeb, "KillSystemTimer: %d %d\n", hwnd, id );
250 return TIMER_KillTimer( hwnd, id, TRUE );