Load done event now created by the server.
[wine/multimedia.git] / dlls / comctl32 / animate.c
blob2344279a998c71d79d248a758cf2ec037e8288c6
1 /* -*- tab-width: 8; c-basic-offset: 4 -*- */
2 /*
3 * Animation control
5 * Copyright 1998, 1999 Eric Kohl
6 * 1999 Eric Pouech
8 * NOTES
9 * I will only improve this control once in a while.
10 * Eric <ekohl@abo.rhein-zeitung.de>
12 * TODO:
13 * - check for the 'rec ' list in some AVI files
14 * - implement some missing flags (ACS_TRANSPARENT and ACS_CENTER)
15 * - protection between service thread and wndproc messages handling
16 * concurrent access to infoPtr
20 #include "winbase.h"
21 #include "commctrl.h"
22 #include "driver.h"
23 #include "animate.h"
24 #include "mmsystem.h"
25 #include "services.h"
26 #include "debugtools.h"
28 DEFAULT_DEBUG_CHANNEL(animate)
30 #define ANIMATE_GetInfoPtr(hWnd) ((ANIMATE_INFO *)GetWindowLongA(hWnd, 0))
32 HMODULE hModWinmm;
34 static void ANIMATE_Notify(ANIMATE_INFO* infoPtr, UINT notif)
36 SendMessageA(GetParent(infoPtr->hWnd), WM_COMMAND,
37 MAKEWPARAM(GetDlgCtrlID(infoPtr->hWnd), notif),
38 (LPARAM)infoPtr->hWnd);
41 static BOOL ANIMATE_LoadResA(ANIMATE_INFO *infoPtr, HINSTANCE hInst, LPSTR lpName)
43 HRSRC hrsrc;
44 MMIOINFO mminfo;
45 LPVOID lpAvi;
47 hrsrc = FindResourceA(hInst, lpName, "AVI");
48 if (!hrsrc)
49 return FALSE;
51 infoPtr->hRes = LoadResource(hInst, hrsrc);
52 if (!infoPtr->hRes)
53 return FALSE;
55 lpAvi = LockResource(infoPtr->hRes);
56 if (!lpAvi)
57 return FALSE;
59 memset(&mminfo, 0, sizeof(mminfo));
60 mminfo.fccIOProc = FOURCC_MEM;
61 mminfo.pchBuffer = (LPSTR)lpAvi;
62 mminfo.cchBuffer = SizeofResource(hInst, hrsrc);
63 infoPtr->hMMio = mmioOpenA(NULL, &mminfo, MMIO_READ);
65 if (!infoPtr->hMMio) {
66 GlobalFree((HGLOBAL)lpAvi);
67 return FALSE;
70 return TRUE;
74 static BOOL ANIMATE_LoadFileA(ANIMATE_INFO *infoPtr, LPSTR lpName)
76 infoPtr->hMMio = mmioOpenA((LPSTR)lpName, NULL,
77 MMIO_ALLOCBUF | MMIO_READ | MMIO_DENYWRITE);
79 if (!infoPtr->hMMio)
80 return FALSE;
82 return TRUE;
86 static LRESULT ANIMATE_DoStop(ANIMATE_INFO *infoPtr)
88 EnterCriticalSection(&infoPtr->cs);
90 /* should stop playing */
91 if (infoPtr->hService) {
92 SERVICE_Delete(infoPtr->hService);
93 infoPtr->hService = 0;
95 if (infoPtr->uTimer) {
96 KillTimer(infoPtr->hWnd, infoPtr->uTimer);
97 infoPtr->uTimer = 0;
100 LeaveCriticalSection(&infoPtr->cs);
102 ANIMATE_Notify(infoPtr, ACN_STOP);
104 return TRUE;
108 static void ANIMATE_Free(ANIMATE_INFO *infoPtr)
110 if (infoPtr->hMMio) {
111 ANIMATE_DoStop(infoPtr);
112 mmioClose(infoPtr->hMMio, 0);
113 if (infoPtr->hRes) {
114 FreeResource(infoPtr->hRes);
115 infoPtr->hRes = 0;
117 if (infoPtr->lpIndex) {
118 HeapFree(GetProcessHeap(), 0, infoPtr->lpIndex);
119 infoPtr->lpIndex = NULL;
121 if (infoPtr->hic) {
122 (infoPtr->fnICClose)(infoPtr->hic);
123 infoPtr->hic = 0;
125 if (infoPtr->inbih) {
126 HeapFree(GetProcessHeap(), 0, infoPtr->inbih);
127 infoPtr->inbih = NULL;
129 if (infoPtr->outbih) {
130 HeapFree(GetProcessHeap(), 0, infoPtr->outbih);
131 infoPtr->outbih = NULL;
133 HeapFree(GetProcessHeap(), 0, infoPtr->indata);
134 HeapFree(GetProcessHeap(), 0, infoPtr->outdata);
135 infoPtr->indata = infoPtr->outdata = NULL;
136 infoPtr->hWnd = 0;
137 infoPtr->hMMio = 0;
138 memset(&infoPtr->mah, 0, sizeof(infoPtr->mah));
139 memset(&infoPtr->ash, 0, sizeof(infoPtr->ash));
140 infoPtr->nFromFrame = infoPtr->nToFrame = infoPtr->nLoop = infoPtr->currFrame = 0;
145 static LRESULT ANIMATE_PaintFrame(ANIMATE_INFO* infoPtr, HDC hDC)
147 if (!hDC || !infoPtr->inbih)
148 return TRUE;
149 if (infoPtr->hic)
150 StretchDIBits(hDC, 0, 0, infoPtr->outbih->biWidth, infoPtr->outbih->biHeight,
151 0, 0, infoPtr->outbih->biWidth, infoPtr->outbih->biHeight,
152 infoPtr->outdata, (LPBITMAPINFO)infoPtr->outbih, DIB_RGB_COLORS,
153 SRCCOPY);
154 else
155 StretchDIBits(hDC, 0, 0, infoPtr->inbih->biWidth, infoPtr->inbih->biHeight,
156 0, 0, infoPtr->inbih->biWidth, infoPtr->inbih->biHeight,
157 infoPtr->indata, (LPBITMAPINFO)infoPtr->inbih, DIB_RGB_COLORS,
158 SRCCOPY);
160 return TRUE;
163 static LRESULT ANIMATE_DrawFrame(ANIMATE_INFO* infoPtr)
165 HDC hDC;
167 TRACE("Drawing frame %d (loop %d)\n", infoPtr->currFrame, infoPtr->nLoop);
169 EnterCriticalSection(&infoPtr->cs);
171 mmioSeek(infoPtr->hMMio, infoPtr->lpIndex[infoPtr->currFrame], SEEK_SET);
172 mmioRead(infoPtr->hMMio, infoPtr->indata, infoPtr->ash.dwSuggestedBufferSize);
174 if (infoPtr->hic &&
175 (infoPtr->fnICDecompress)(infoPtr->hic, 0, infoPtr->inbih, infoPtr->indata,
176 infoPtr->outbih, infoPtr->outdata) != ICERR_OK) {
177 LeaveCriticalSection(&infoPtr->cs);
178 WARN("Decompression error\n");
179 return FALSE;
182 if ((hDC = GetDC(infoPtr->hWnd)) != 0) {
183 ANIMATE_PaintFrame(infoPtr, hDC);
184 ReleaseDC(infoPtr->hWnd, hDC);
187 if (infoPtr->currFrame++ >= infoPtr->nToFrame) {
188 infoPtr->currFrame = infoPtr->nFromFrame;
189 if (infoPtr->nLoop != -1) {
190 if (--infoPtr->nLoop == 0) {
191 ANIMATE_DoStop(infoPtr);
195 LeaveCriticalSection(&infoPtr->cs);
197 return TRUE;
200 static void CALLBACK ANIMATE_ServiceCallback(ULONG_PTR ptr_)
202 ANIMATE_INFO* infoPtr = (ANIMATE_INFO*)ptr_;
204 EnterCriticalSection(&infoPtr->cs);
205 ANIMATE_DrawFrame(infoPtr);
206 LeaveCriticalSection(&infoPtr->cs);
209 static LRESULT ANIMATE_Play(HWND hWnd, WPARAM wParam, LPARAM lParam)
211 ANIMATE_INFO *infoPtr = ANIMATE_GetInfoPtr(hWnd);
213 /* nothing opened */
214 if (!infoPtr->hMMio)
215 return FALSE;
217 if (infoPtr->hService || infoPtr->uTimer) {
218 FIXME("Already playing ? what should I do ??\n");
219 ANIMATE_DoStop(infoPtr);
222 infoPtr->nFromFrame = (INT)LOWORD(lParam);
223 infoPtr->nToFrame = (INT)HIWORD(lParam);
224 infoPtr->nLoop = (INT)wParam;
226 if (infoPtr->nToFrame == 0xFFFF)
227 infoPtr->nToFrame = infoPtr->mah.dwTotalFrames - 1;
229 TRACE("(repeat=%d from=%d to=%d);\n",
230 infoPtr->nLoop, infoPtr->nFromFrame, infoPtr->nToFrame);
232 if (infoPtr->nFromFrame >= infoPtr->nToFrame ||
233 infoPtr->nToFrame >= infoPtr->mah.dwTotalFrames)
234 return FALSE;
236 infoPtr->currFrame = infoPtr->nFromFrame;
238 if (GetWindowLongA(hWnd, GWL_STYLE) & ACS_TIMER) {
239 TRACE("Using a timer\n");
240 /* create a timer to display AVI */
241 infoPtr->uTimer = SetTimer(hWnd, 1, infoPtr->mah.dwMicroSecPerFrame / 1000, NULL);
242 } else {
243 TRACE("Using the service thread\n");
244 /* time is in µs */
245 infoPtr->hService = SERVICE_AddTimer(infoPtr->mah.dwMicroSecPerFrame,
246 ANIMATE_ServiceCallback, (DWORD)infoPtr);
249 ANIMATE_Notify(infoPtr, ACN_START);
251 return TRUE;
255 static BOOL ANIMATE_GetAviInfo(ANIMATE_INFO *infoPtr)
257 MMCKINFO ckMainRIFF;
258 MMCKINFO mmckHead;
259 MMCKINFO mmckList;
260 MMCKINFO mmckInfo;
261 DWORD numFrame;
262 DWORD insize;
264 if (mmioDescend(infoPtr->hMMio, &ckMainRIFF, NULL, 0) != 0) {
265 WARN("Can't find 'RIFF' chunk\n");
266 return FALSE;
269 if ((ckMainRIFF.ckid != FOURCC_RIFF) ||
270 (ckMainRIFF.fccType != mmioFOURCC('A', 'V', 'I', ' '))) {
271 WARN("Can't find 'AVI ' chunk\n");
272 return FALSE;
275 mmckHead.fccType = mmioFOURCC('h', 'd', 'r', 'l');
276 if (mmioDescend(infoPtr->hMMio, &mmckHead, &ckMainRIFF, MMIO_FINDLIST) != 0) {
277 WARN("Can't find 'hdrl' list\n");
278 return FALSE;
281 mmckInfo.ckid = mmioFOURCC('a', 'v', 'i', 'h');
282 if (mmioDescend(infoPtr->hMMio, &mmckInfo, &mmckHead, MMIO_FINDCHUNK) != 0) {
283 WARN("Can't find 'avih' chunk\n");
284 return FALSE;
287 mmioRead(infoPtr->hMMio, (LPSTR)&infoPtr->mah, sizeof(infoPtr->mah));
288 TRACE("mah.dwMicroSecPerFrame=%ld\n", infoPtr->mah.dwMicroSecPerFrame);
289 TRACE("mah.dwMaxBytesPerSec=%ld\n", infoPtr->mah.dwMaxBytesPerSec);
290 TRACE("mah.dwPaddingGranularity=%ld\n", infoPtr->mah.dwPaddingGranularity);
291 TRACE("mah.dwFlags=%ld\n", infoPtr->mah.dwFlags);
292 TRACE("mah.dwTotalFrames=%ld\n", infoPtr->mah.dwTotalFrames);
293 TRACE("mah.dwInitialFrames=%ld\n", infoPtr->mah.dwInitialFrames);
294 TRACE("mah.dwStreams=%ld\n", infoPtr->mah.dwStreams);
295 TRACE("mah.dwSuggestedBufferSize=%ld\n", infoPtr->mah.dwSuggestedBufferSize);
296 TRACE("mah.dwWidth=%ld\n", infoPtr->mah.dwWidth);
297 TRACE("mah.dwHeight=%ld\n", infoPtr->mah.dwHeight);
298 mmioAscend(infoPtr->hMMio, &mmckInfo, 0);
300 mmckList.fccType = mmioFOURCC('s', 't', 'r', 'l');
301 if (mmioDescend(infoPtr->hMMio, &mmckList, &mmckHead, MMIO_FINDLIST) != 0) {
302 WARN("Can't find 'strl' list\n");
303 return FALSE;
306 mmckInfo.ckid = mmioFOURCC('s', 't', 'r', 'h');
307 if (mmioDescend(infoPtr->hMMio, &mmckInfo, &mmckList, MMIO_FINDCHUNK) != 0) {
308 WARN("Can't find 'strh' chunk\n");
309 return FALSE;
312 mmioRead(infoPtr->hMMio, (LPSTR)&infoPtr->ash, sizeof(infoPtr->ash));
313 TRACE("ash.fccType='%c%c%c%c'\n", LOBYTE(LOWORD(infoPtr->ash.fccType)),
314 HIBYTE(LOWORD(infoPtr->ash.fccType)),
315 LOBYTE(HIWORD(infoPtr->ash.fccType)),
316 HIBYTE(HIWORD(infoPtr->ash.fccType)));
317 TRACE("ash.fccHandler='%c%c%c%c'\n", LOBYTE(LOWORD(infoPtr->ash.fccHandler)),
318 HIBYTE(LOWORD(infoPtr->ash.fccHandler)),
319 LOBYTE(HIWORD(infoPtr->ash.fccHandler)),
320 HIBYTE(HIWORD(infoPtr->ash.fccHandler)));
321 TRACE("ash.dwFlags=%ld\n", infoPtr->ash.dwFlags);
322 TRACE("ash.wPriority=%d\n", infoPtr->ash.wPriority);
323 TRACE("ash.wLanguage=%d\n", infoPtr->ash.wLanguage);
324 TRACE("ash.dwInitialFrames=%ld\n", infoPtr->ash.dwInitialFrames);
325 TRACE("ash.dwScale=%ld\n", infoPtr->ash.dwScale);
326 TRACE("ash.dwRate=%ld\n", infoPtr->ash.dwRate);
327 TRACE("ash.dwStart=%ld\n", infoPtr->ash.dwStart);
328 TRACE("ash.dwLength=%ld\n", infoPtr->ash.dwLength);
329 TRACE("ash.dwSuggestedBufferSize=%ld\n", infoPtr->ash.dwSuggestedBufferSize);
330 TRACE("ash.dwQuality=%ld\n", infoPtr->ash.dwQuality);
331 TRACE("ash.dwSampleSize=%ld\n", infoPtr->ash.dwSampleSize);
332 TRACE("ash.rcFrame=(%d,%d,%d,%d)\n", infoPtr->ash.rcFrame.top, infoPtr->ash.rcFrame.left,
333 infoPtr->ash.rcFrame.bottom, infoPtr->ash.rcFrame.right);
334 mmioAscend(infoPtr->hMMio, &mmckInfo, 0);
336 mmckInfo.ckid = mmioFOURCC('s', 't', 'r', 'f');
337 if (mmioDescend(infoPtr->hMMio, &mmckInfo, &mmckList, MMIO_FINDCHUNK) != 0) {
338 WARN("Can't find 'strh' chunk\n");
339 return FALSE;
342 infoPtr->inbih = HeapAlloc(GetProcessHeap(), 0, mmckInfo.cksize);
343 if (!infoPtr->inbih) {
344 WARN("Can't alloc input BIH\n");
345 return FALSE;
348 mmioRead(infoPtr->hMMio, (LPSTR)infoPtr->inbih, mmckInfo.cksize);
349 TRACE("bih.biSize=%ld\n", infoPtr->inbih->biSize);
350 TRACE("bih.biWidth=%ld\n", infoPtr->inbih->biWidth);
351 TRACE("bih.biHeight=%ld\n", infoPtr->inbih->biHeight);
352 TRACE("bih.biPlanes=%d\n", infoPtr->inbih->biPlanes);
353 TRACE("bih.biBitCount=%d\n", infoPtr->inbih->biBitCount);
354 TRACE("bih.biCompression=%ld\n", infoPtr->inbih->biCompression);
355 TRACE("bih.biSizeImage=%ld\n", infoPtr->inbih->biSizeImage);
356 TRACE("bih.biXPelsPerMeter=%ld\n", infoPtr->inbih->biXPelsPerMeter);
357 TRACE("bih.biYPelsPerMeter=%ld\n", infoPtr->inbih->biYPelsPerMeter);
358 TRACE("bih.biClrUsed=%ld\n", infoPtr->inbih->biClrUsed);
359 TRACE("bih.biClrImportant=%ld\n", infoPtr->inbih->biClrImportant);
360 mmioAscend(infoPtr->hMMio, &mmckInfo, 0);
362 mmioAscend(infoPtr->hMMio, &mmckList, 0);
364 #if 0
365 /* an AVI has 0 or 1 video stream, and to be animated should not contain
366 * an audio stream, so only one strl is allowed
368 mmckList.fccType = mmioFOURCC('s', 't', 'r', 'l');
369 if (mmioDescend(infoPtr->hMMio, &mmckList, &mmckHead, MMIO_FINDLIST) == 0) {
370 WARN("There should be a single 'strl' list\n");
371 return FALSE;
373 #endif
375 mmioAscend(infoPtr->hMMio, &mmckHead, 0);
377 /* no need to read optional JUNK chunk */
379 mmckList.fccType = mmioFOURCC('m', 'o', 'v', 'i');
380 if (mmioDescend(infoPtr->hMMio, &mmckList, &ckMainRIFF, MMIO_FINDLIST) != 0) {
381 WARN("Can't find 'movi' list\n");
382 return FALSE;
385 /* FIXME: should handle the 'rec ' LIST when present */
387 infoPtr->lpIndex = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY,
388 infoPtr->mah.dwTotalFrames * sizeof(DWORD));
389 if (!infoPtr->lpIndex) {
390 WARN("Can't alloc index array\n");
391 return FALSE;
394 numFrame = insize = 0;
395 while (mmioDescend(infoPtr->hMMio, &mmckInfo, &mmckList, 0) == 0 &&
396 numFrame < infoPtr->mah.dwTotalFrames) {
397 infoPtr->lpIndex[numFrame] = mmckInfo.dwDataOffset;
398 if (insize < mmckInfo.cksize)
399 insize = mmckInfo.cksize;
400 numFrame++;
401 mmioAscend(infoPtr->hMMio, &mmckInfo, 0);
403 if (numFrame != infoPtr->mah.dwTotalFrames) {
404 WARN("Found %ld frames (/%ld)\n", numFrame, infoPtr->mah.dwTotalFrames);
405 return FALSE;
407 if (insize > infoPtr->ash.dwSuggestedBufferSize) {
408 WARN("insize=%ld suggestedSize=%ld\n", insize, infoPtr->ash.dwSuggestedBufferSize);
409 infoPtr->ash.dwSuggestedBufferSize = insize;
412 infoPtr->indata = HeapAlloc(GetProcessHeap(), 0, infoPtr->ash.dwSuggestedBufferSize);
413 if (!infoPtr->indata) {
414 WARN("Can't alloc input buffer\n");
415 return FALSE;
418 return TRUE;
422 static BOOL ANIMATE_GetAviCodec(ANIMATE_INFO *infoPtr)
424 DWORD outSize;
426 /* check uncompressed AVI */
427 if (infoPtr->ash.fccHandler == mmioFOURCC('D', 'I', 'B', ' ')) {
428 infoPtr->hic = 0;
429 return TRUE;
432 /* try to get a decompressor for that type */
433 infoPtr->hic = (infoPtr->fnICOpen)(ICTYPE_VIDEO,
434 infoPtr->ash.fccHandler,
435 ICMODE_DECOMPRESS);
436 if (!infoPtr->hic) {
437 WARN("Can't load codec for the file\n");
438 return FALSE;
441 outSize = (infoPtr->fnICSendMessage)(infoPtr->hic,
442 ICM_DECOMPRESS_GET_FORMAT,
443 (DWORD)infoPtr->inbih, 0L);
444 infoPtr->outbih = HeapAlloc(GetProcessHeap(), 0, outSize);
445 if (!infoPtr->outbih) {
446 WARN("Can't alloc output BIH\n");
447 return FALSE;
450 if ((infoPtr->fnICSendMessage)(infoPtr->hic, ICM_DECOMPRESS_GET_FORMAT,
451 (DWORD)infoPtr->inbih,
452 (DWORD)infoPtr->outbih) != ICERR_OK) {
453 WARN("Can't get output BIH\n");
454 return FALSE;
457 infoPtr->outdata = HeapAlloc(GetProcessHeap(), 0, infoPtr->outbih->biSizeImage);
458 if (!infoPtr->outdata) {
459 WARN("Can't alloc output buffer\n");
460 return FALSE;
463 if ((infoPtr->fnICSendMessage)(infoPtr->hic, ICM_DECOMPRESS_BEGIN,
464 (DWORD)infoPtr->inbih,
465 (DWORD)infoPtr->outbih) != ICERR_OK) {
466 WARN("Can't begin decompression\n");
467 return FALSE;
470 return TRUE;
473 static LRESULT ANIMATE_OpenA(HWND hWnd, WPARAM wParam, LPARAM lParam)
475 ANIMATE_INFO *infoPtr = ANIMATE_GetInfoPtr(hWnd);
476 HINSTANCE hInstance = (HINSTANCE)wParam;
478 ANIMATE_Free(infoPtr);
480 if (!lParam) {
481 TRACE("Closing avi!\n");
482 return TRUE;
485 if (!hInstance)
486 hInstance = GetWindowLongA(hWnd, GWL_HINSTANCE);
488 if (HIWORD(lParam)) {
489 TRACE("(\"%s\");\n", (LPSTR)lParam);
491 if (!ANIMATE_LoadResA(infoPtr, hInstance, (LPSTR)lParam)) {
492 TRACE("No AVI resource found!\n");
493 if (!ANIMATE_LoadFileA(infoPtr, (LPSTR)lParam)) {
494 WARN("No AVI file found!\n");
495 return FALSE;
498 } else {
499 TRACE("(%u);\n", (WORD)LOWORD(lParam));
501 if (!ANIMATE_LoadResA(infoPtr, hInstance,
502 MAKEINTRESOURCEA((INT)lParam))) {
503 WARN("No AVI resource found!\n");
504 return FALSE;
508 if (!ANIMATE_GetAviInfo(infoPtr)) {
509 WARN("Can't get AVI information\n");
510 ANIMATE_Free(infoPtr);
511 return FALSE;
514 if (!ANIMATE_GetAviCodec(infoPtr)) {
515 WARN("Can't get AVI Codec\n");
516 ANIMATE_Free(infoPtr);
517 return FALSE;
520 if (GetWindowLongA(hWnd, GWL_STYLE) & ACS_CENTER) {
521 FIXME("ACS_CENTER: NIY\n");
522 } else {
523 /* MoveWindow(hWnd, 0, 0, infoPtr->mah.dwWidth, infoPtr->mah.dwHeight, FALSE);*/
524 SetWindowPos(hWnd, 0, 0, 0, infoPtr->mah.dwWidth, infoPtr->mah.dwHeight,
525 SWP_NOACTIVATE | SWP_NOMOVE | SWP_NOZORDER);
528 if (GetWindowLongA(hWnd, GWL_STYLE) & ACS_TRANSPARENT) {
529 FIXME("ACS_TRANSPARENT: NIY\n");
532 if (GetWindowLongA(hWnd, GWL_STYLE) & ACS_AUTOPLAY) {
533 return ANIMATE_Play(hWnd, -1, (LPARAM)MAKELONG(0, infoPtr->mah.dwTotalFrames-1));
536 return TRUE;
540 /* << ANIMATE_Open32W >> */
542 static LRESULT ANIMATE_Stop(HWND hWnd, WPARAM wParam, LPARAM lParam)
544 ANIMATE_INFO *infoPtr = ANIMATE_GetInfoPtr(hWnd);
546 /* nothing opened */
547 if (!infoPtr->hMMio)
548 return FALSE;
550 ANIMATE_DoStop(infoPtr);
551 return TRUE;
555 static LRESULT ANIMATE_Create(HWND hWnd, WPARAM wParam, LPARAM lParam)
557 ANIMATE_INFO* infoPtr;
558 HMODULE hModule = LoadLibraryA("msvfw32.dll");
560 if (!hModule)
561 return FALSE;
563 /* allocate memory for info structure */
564 infoPtr = (ANIMATE_INFO *)COMCTL32_Alloc(sizeof(ANIMATE_INFO));
565 if (!infoPtr) {
566 ERR("could not allocate info memory!\n");
567 return 0;
570 /* Temporary hack until we get dllglue up and running */
571 infoPtr->fnICOpen = (void*)GetProcAddress(hModule, "ICOpen");
572 infoPtr->fnICClose = (void*)GetProcAddress(hModule, "ICClose");
573 infoPtr->fnICSendMessage = (void*)GetProcAddress(hModule, "ICSendMessage");
574 infoPtr->fnICDecompress = (void*)GetProcAddress(hModule, "ICDecompress");
576 TRACE("Animate style=0x%08lx, parent=%08lx\n", GetWindowLongA(hWnd, GWL_STYLE), (DWORD)GetParent(hWnd));
578 /* store crossref hWnd <-> info structure */
579 SetWindowLongA(hWnd, 0, (DWORD)infoPtr);
580 infoPtr->hWnd = hWnd;
582 hModWinmm = LoadLibraryA("WINMM");
584 InitializeCriticalSection(&infoPtr->cs);
586 return 0;
590 static LRESULT ANIMATE_Destroy(HWND hWnd, WPARAM wParam, LPARAM lParam)
592 ANIMATE_INFO *infoPtr = ANIMATE_GetInfoPtr(hWnd);
595 /* free avi data */
596 ANIMATE_Free(infoPtr);
598 /* free animate info data */
599 COMCTL32_Free(infoPtr);
601 FreeLibrary(hModWinmm);
602 return 0;
606 static LRESULT ANIMATE_EraseBackground(HWND hWnd, WPARAM wParam, LPARAM lParam)
608 RECT rect;
610 GetClientRect(hWnd, &rect);
611 #if 0
612 HBRUSH hBrush = CreateSolidBrush(infoPtr->clrBk);
614 FillRect((HDC)wParam, &rect, hBrush);
615 DeleteObject(hBrush);
616 #else
617 FillRect((HDC)wParam, &rect, GetSysColorBrush(COLOR_WINDOW));
618 #endif
619 return TRUE;
622 static LRESULT WINAPI ANIMATE_Size(HWND hWnd, WPARAM wParam, LPARAM lParam)
624 ANIMATE_INFO *infoPtr = ANIMATE_GetInfoPtr(hWnd);
626 if (GetWindowLongA(hWnd, GWL_STYLE) & ACS_CENTER) {
627 FIXME("NIY\n");
628 if (infoPtr->hMMio) {
629 /* centers the animation in the control, invalidates the control
632 InvalidateRect(hWnd, NULL, TRUE);
634 return TRUE;
637 static LRESULT WINAPI ANIMATE_WindowProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
639 switch (uMsg)
641 case ACM_OPENA:
642 return ANIMATE_OpenA(hWnd, wParam, lParam);
644 /* case ACM_OPEN32W: FIXME!! */
645 /* return ANIMATE_Open32W(hWnd, wParam, lParam); */
647 case ACM_PLAY:
648 return ANIMATE_Play(hWnd, wParam, lParam);
650 case ACM_STOP:
651 return ANIMATE_Stop(hWnd, wParam, lParam);
653 case WM_NCCREATE:
654 ANIMATE_Create(hWnd, wParam, lParam);
655 return DefWindowProcA(hWnd, uMsg, wParam, lParam);
657 case WM_NCHITTEST:
658 return HTTRANSPARENT;
660 case WM_DESTROY:
661 ANIMATE_Destroy(hWnd, wParam, lParam);
662 return DefWindowProcA(hWnd, uMsg, wParam, lParam);
664 case WM_ERASEBKGND:
665 ANIMATE_EraseBackground(hWnd, wParam, lParam);
666 break;
668 /* case WM_STYLECHANGED: FIXME shall we do something ?? */
670 case WM_TIMER:
671 return ANIMATE_DrawFrame(ANIMATE_GetInfoPtr(hWnd));
673 case WM_CLOSE:
674 ANIMATE_Free(ANIMATE_GetInfoPtr(hWnd));
675 return TRUE;
677 case WM_PAINT:
678 if (wParam) {
679 ANIMATE_PaintFrame(ANIMATE_GetInfoPtr(hWnd), (HDC)wParam);
680 } else {
681 PAINTSTRUCT ps;
682 HDC hDC = BeginPaint(hWnd, &ps);
683 ANIMATE_PaintFrame(ANIMATE_GetInfoPtr(hWnd), hDC);
684 EndPaint(hWnd, &ps);
686 break;
688 case WM_SIZE:
689 ANIMATE_Size(hWnd, wParam, lParam);
690 return DefWindowProcA(hWnd, uMsg, wParam, lParam);
692 default:
693 if (uMsg >= WM_USER)
694 ERR("unknown msg %04x wp=%08x lp=%08lx\n", uMsg, wParam, lParam);
696 return DefWindowProcA(hWnd, uMsg, wParam, lParam);
698 return 0;
702 void ANIMATE_Register(void)
704 WNDCLASSA wndClass;
706 ZeroMemory(&wndClass, sizeof(WNDCLASSA));
707 wndClass.style = CS_GLOBALCLASS | CS_DBLCLKS;
708 wndClass.lpfnWndProc = (WNDPROC)ANIMATE_WindowProc;
709 wndClass.cbClsExtra = 0;
710 wndClass.cbWndExtra = sizeof(ANIMATE_INFO *);
711 wndClass.hCursor = LoadCursorA(0, IDC_ARROWA);
712 wndClass.hbrBackground = (HBRUSH)(COLOR_BTNFACE + 1);
713 wndClass.lpszClassName = ANIMATE_CLASSA;
715 RegisterClassA(&wndClass);
719 void ANIMATE_Unregister(void)
721 UnregisterClassA(ANIMATE_CLASSA, (HINSTANCE)NULL);