d3d9: Add a test testing two texbem instructions in one shader.
[wine] / dlls / comctl32 / animate.c
1 /* -*- tab-width: 8; c-basic-offset: 4 -*- */
2 /*
3  * Animation control
4  *
5  * Copyright 1998, 1999 Eric Kohl
6  * Copyright 1999 Eric Pouech
7  * Copyright 2005 Dimitrie O. Paun
8  *
9  * This library is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public
11  * License as published by the Free Software Foundation; either
12  * version 2.1 of the License, or (at your option) any later version.
13  *
14  * This library is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with this library; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22  *
23  * NOTES
24  *
25  * This code was audited for completeness against the documented features
26  * of Comctl32.dll version 6.0 on Mar. 15, 2005, by Dimitrie O. Paun.
27  * 
28  * Unless otherwise noted, we believe this code to be complete, as per
29  * the specification mentioned above.
30  * If you discover missing features, or bugs, please note them below.
31  * 
32  * TODO:
33  *   - check for the 'rec ' list in some AVI files
34  */
35
36 #include <stdarg.h>
37 #include <string.h>
38 #include "windef.h"
39 #include "winbase.h"
40 #include "wingdi.h"
41 #include "winuser.h"
42 #include "winnls.h"
43 #include "commctrl.h"
44 #include "vfw.h"
45 #include "mmsystem.h"
46 #include "comctl32.h"
47 #include "wine/debug.h"
48
49 WINE_DEFAULT_DEBUG_CHANNEL(animate);
50
51 static struct {
52     HMODULE     hModule;
53     HIC         (WINAPI *fnICOpen)(DWORD, DWORD, UINT);
54     LRESULT     (WINAPI *fnICClose)(HIC);
55     LRESULT     (WINAPI *fnICSendMessage)(HIC, UINT, DWORD_PTR, DWORD_PTR);
56     DWORD       (WINAPIV *fnICDecompress)(HIC,DWORD,LPBITMAPINFOHEADER,LPVOID,LPBITMAPINFOHEADER,LPVOID);
57 } fnIC;
58
59 typedef struct
60 {
61    /* reference to input stream (file or resource) */
62    HGLOBAL              hRes;
63    HMMIO                hMMio;  /* handle to mmio stream */
64    HWND                 hwndSelf;
65    HWND                 hwndNotify;
66    DWORD                dwStyle;
67    /* information on the loaded AVI file */
68    MainAVIHeader        mah;
69    AVIStreamHeader      ash;
70    LPBITMAPINFOHEADER   inbih;
71    LPDWORD              lpIndex;
72    /* data for the decompressor */
73    HIC                  hic;
74    LPBITMAPINFOHEADER   outbih;
75    LPVOID               indata;
76    LPVOID               outdata;
77    /* data for the background mechanism */
78    CRITICAL_SECTION     cs;
79    HANDLE               hStopEvent;
80    HANDLE               hThread;
81    DWORD                threadId;
82    UINT                 uTimer;
83    /* data for playing the file */
84    int                  nFromFrame;
85    int                  nToFrame;
86    int                  nLoop;
87    int                  currFrame;
88    /* transparency info*/
89    COLORREF             transparentColor;
90    HBRUSH               hbrushBG;
91    HBITMAP              hbmPrevFrame;
92 } ANIMATE_INFO;
93
94 #define ANIMATE_COLOR_NONE      0xffffffff
95
96 static void ANIMATE_Notify(const ANIMATE_INFO *infoPtr, UINT notif)
97 {
98     SendMessageW(infoPtr->hwndNotify, WM_COMMAND,
99                  MAKEWPARAM(GetDlgCtrlID(infoPtr->hwndSelf), notif),
100                  (LPARAM)infoPtr->hwndSelf);
101 }
102
103 static BOOL ANIMATE_LoadResW(ANIMATE_INFO *infoPtr, HINSTANCE hInst, LPCWSTR lpName)
104 {
105     static const WCHAR aviW[] = { 'A', 'V', 'I', 0 };
106     HRSRC       hrsrc;
107     MMIOINFO    mminfo;
108     LPVOID      lpAvi;
109
110     hrsrc = FindResourceW(hInst, lpName, aviW);
111     if (!hrsrc)
112         return FALSE;
113
114     infoPtr->hRes = LoadResource(hInst, hrsrc);
115     if (!infoPtr->hRes)
116         return FALSE;
117
118     lpAvi = LockResource(infoPtr->hRes);
119     if (!lpAvi)
120         return FALSE;
121
122     memset(&mminfo, 0, sizeof(mminfo));
123     mminfo.fccIOProc = FOURCC_MEM;
124     mminfo.pchBuffer = (LPSTR)lpAvi;
125     mminfo.cchBuffer = SizeofResource(hInst, hrsrc);
126     infoPtr->hMMio = mmioOpenW(NULL, &mminfo, MMIO_READ);
127     if (!infoPtr->hMMio) 
128     {
129         FreeResource(infoPtr->hRes);
130         return FALSE;
131     }
132
133     return TRUE;
134 }
135
136
137 static BOOL ANIMATE_LoadFileW(ANIMATE_INFO *infoPtr, LPWSTR lpName)
138 {
139     infoPtr->hMMio = mmioOpenW(lpName, 0, MMIO_ALLOCBUF | MMIO_READ | MMIO_DENYWRITE);
140
141     if(!infoPtr->hMMio) return FALSE;
142     return TRUE;
143 }
144
145
146 static BOOL ANIMATE_DoStop(ANIMATE_INFO *infoPtr)
147 {
148     BOOL stopped = FALSE;
149
150     EnterCriticalSection(&infoPtr->cs);
151
152     /* should stop playing */
153     if (infoPtr->hThread)
154     {
155         HANDLE handle = infoPtr->hThread;
156
157         TRACE("stopping animation thread\n");
158         infoPtr->hThread = 0;
159         SetEvent( infoPtr->hStopEvent );
160
161         if (infoPtr->threadId != GetCurrentThreadId())
162         {
163             LeaveCriticalSection(&infoPtr->cs);  /* leave it a chance to run */
164             MsgWaitForMultipleObjects( 1, &handle, FALSE, INFINITE, QS_ALLINPUT );
165             TRACE("animation thread stopped\n");
166             EnterCriticalSection(&infoPtr->cs);
167         }
168
169         CloseHandle( handle );
170         CloseHandle( infoPtr->hStopEvent );
171         infoPtr->hStopEvent = 0;
172         stopped = TRUE;
173     }
174     if (infoPtr->uTimer) {
175         KillTimer(infoPtr->hwndSelf, infoPtr->uTimer);
176         infoPtr->uTimer = 0;
177         stopped = TRUE;
178     }
179
180     LeaveCriticalSection(&infoPtr->cs);
181
182     if (stopped)
183         ANIMATE_Notify(infoPtr, ACN_STOP);
184
185     return TRUE;
186 }
187
188
189 static void ANIMATE_Free(ANIMATE_INFO *infoPtr)
190 {
191     if (infoPtr->hMMio) {
192         ANIMATE_DoStop(infoPtr);
193         mmioClose(infoPtr->hMMio, 0);
194         if (infoPtr->hRes) {
195             FreeResource(infoPtr->hRes);
196             infoPtr->hRes = 0;
197         }
198         Free (infoPtr->lpIndex);
199         infoPtr->lpIndex = NULL;
200         if (infoPtr->hic) {
201             fnIC.fnICClose(infoPtr->hic);
202             infoPtr->hic = 0;
203         }
204         Free (infoPtr->inbih);
205         infoPtr->inbih = NULL;
206         Free (infoPtr->outbih);
207         infoPtr->outbih = NULL;
208         Free (infoPtr->indata);
209         infoPtr->indata = NULL;
210         Free (infoPtr->outdata);
211         infoPtr->outdata = NULL;
212         if( infoPtr->hbmPrevFrame )
213         {
214             DeleteObject(infoPtr->hbmPrevFrame);
215             infoPtr->hbmPrevFrame = 0;
216         }
217
218         memset(&infoPtr->mah, 0, sizeof(infoPtr->mah));
219         memset(&infoPtr->ash, 0, sizeof(infoPtr->ash));
220         infoPtr->nFromFrame = infoPtr->nToFrame = infoPtr->nLoop = infoPtr->currFrame = 0;
221     }
222     infoPtr->transparentColor = ANIMATE_COLOR_NONE;
223 }
224
225 static void ANIMATE_TransparentBlt(ANIMATE_INFO const *infoPtr, HDC hdcDest, HDC hdcSource)
226 {
227     HDC hdcMask;
228     HBITMAP hbmMask;
229     HBITMAP hbmOld;
230
231     /* create a transparency mask */
232     hdcMask = CreateCompatibleDC(hdcDest);
233     hbmMask = CreateBitmap(infoPtr->inbih->biWidth, infoPtr->inbih->biHeight, 1,1,NULL);
234     hbmOld = SelectObject(hdcMask, hbmMask);
235
236     SetBkColor(hdcSource,infoPtr->transparentColor);
237     BitBlt(hdcMask,0,0,infoPtr->inbih->biWidth, infoPtr->inbih->biHeight,hdcSource,0,0,SRCCOPY);
238
239     /* mask the source bitmap */
240     SetBkColor(hdcSource, RGB(0,0,0));
241     SetTextColor(hdcSource, RGB(255,255,255));
242     BitBlt(hdcSource, 0, 0, infoPtr->inbih->biWidth, infoPtr->inbih->biHeight, hdcMask, 0, 0, SRCAND);
243
244     /* mask the destination bitmap */
245     SetBkColor(hdcDest, RGB(255,255,255));
246     SetTextColor(hdcDest, RGB(0,0,0));
247     BitBlt(hdcDest, 0, 0, infoPtr->inbih->biWidth, infoPtr->inbih->biHeight, hdcMask, 0, 0, SRCAND);
248
249     /* combine source and destination */
250     BitBlt(hdcDest,0,0,infoPtr->inbih->biWidth, infoPtr->inbih->biHeight,hdcSource,0,0,SRCPAINT);
251
252     SelectObject(hdcMask, hbmOld);
253     DeleteObject(hbmMask);
254     DeleteDC(hdcMask);
255 }
256
257 static BOOL ANIMATE_PaintFrame(ANIMATE_INFO* infoPtr, HDC hDC)
258 {
259     void const *pBitmapData;
260     BITMAPINFO const *pBitmapInfo;
261     HDC hdcMem;
262     HBITMAP hbmOld;
263     int nOffsetX = 0;
264     int nOffsetY = 0;
265     int nWidth;
266     int nHeight;
267
268     if (!hDC || !infoPtr->inbih)
269         return TRUE;
270
271     if (infoPtr->hic )
272     {
273         pBitmapData = infoPtr->outdata;
274         pBitmapInfo = (LPBITMAPINFO)infoPtr->outbih;
275
276         nWidth = infoPtr->outbih->biWidth;
277         nHeight = infoPtr->outbih->biHeight;
278     } 
279     else
280     {
281         pBitmapData = infoPtr->indata;
282         pBitmapInfo = (LPBITMAPINFO)infoPtr->inbih;
283
284         nWidth = infoPtr->inbih->biWidth;
285         nHeight = infoPtr->inbih->biHeight;
286     }
287
288     if(!infoPtr->hbmPrevFrame)
289     {
290         infoPtr->hbmPrevFrame=CreateCompatibleBitmap(hDC, nWidth,nHeight );
291     }
292
293     hdcMem = CreateCompatibleDC(hDC);
294     hbmOld = SelectObject(hdcMem, infoPtr->hbmPrevFrame);
295
296     SetDIBits(hdcMem, infoPtr->hbmPrevFrame, 0, nHeight, pBitmapData, pBitmapInfo, DIB_RGB_COLORS);
297
298     /*
299      * we need to get the transparent color even without ACS_TRANSPARENT,
300      * because the style can be changed later on and the color should always
301      * be obtained in the first frame
302      */
303     if(infoPtr->transparentColor == ANIMATE_COLOR_NONE)
304     {
305         infoPtr->transparentColor = GetPixel(hdcMem,0,0);
306     }
307
308     if(infoPtr->dwStyle & ACS_TRANSPARENT)
309     {
310         HDC hdcFinal = CreateCompatibleDC(hDC);
311         HBITMAP hbmFinal = CreateCompatibleBitmap(hDC,nWidth, nHeight);
312         HBITMAP hbmOld2 = SelectObject(hdcFinal, hbmFinal);
313         RECT rect;
314
315         rect.left = 0;
316         rect.top = 0;
317         rect.right = nWidth;
318         rect.bottom = nHeight;
319
320         if(!infoPtr->hbrushBG)
321             infoPtr->hbrushBG = GetCurrentObject(hDC, OBJ_BRUSH);
322
323         FillRect(hdcFinal, &rect, infoPtr->hbrushBG);
324         ANIMATE_TransparentBlt(infoPtr, hdcFinal, hdcMem);
325
326         SelectObject(hdcFinal, hbmOld2);
327         SelectObject(hdcMem, hbmFinal);
328         DeleteDC(hdcFinal);
329         DeleteObject(infoPtr->hbmPrevFrame);
330         infoPtr->hbmPrevFrame = hbmFinal;
331     }
332
333     if (infoPtr->dwStyle & ACS_CENTER)
334     {
335         RECT rect;
336
337         GetWindowRect(infoPtr->hwndSelf, &rect);
338         nOffsetX = ((rect.right - rect.left) - nWidth)/2;
339         nOffsetY = ((rect.bottom - rect.top) - nHeight)/2;
340     }
341     BitBlt(hDC, nOffsetX, nOffsetY, nWidth, nHeight, hdcMem, 0, 0, SRCCOPY);
342
343     SelectObject(hdcMem, hbmOld);
344     DeleteDC(hdcMem);
345     return TRUE;
346 }
347
348 static BOOL ANIMATE_DrawFrame(ANIMATE_INFO *infoPtr, HDC hDC)
349 {
350     TRACE("Drawing frame %d (loop %d)\n", infoPtr->currFrame, infoPtr->nLoop);
351
352     mmioSeek(infoPtr->hMMio, infoPtr->lpIndex[infoPtr->currFrame], SEEK_SET);
353     mmioRead(infoPtr->hMMio, infoPtr->indata, infoPtr->ash.dwSuggestedBufferSize);
354
355     if (infoPtr->hic &&
356         fnIC.fnICDecompress(infoPtr->hic, 0, infoPtr->inbih, infoPtr->indata,
357                      infoPtr->outbih, infoPtr->outdata) != ICERR_OK) {
358         WARN("Decompression error\n");
359         return FALSE;
360     }
361
362     ANIMATE_PaintFrame(infoPtr, hDC);
363
364     if (infoPtr->currFrame++ >= infoPtr->nToFrame) {
365         infoPtr->currFrame = infoPtr->nFromFrame;
366         if (infoPtr->nLoop != -1) {
367             if (--infoPtr->nLoop == 0) {
368                 ANIMATE_DoStop(infoPtr);
369             }
370         }
371     }
372
373     return TRUE;
374 }
375
376 static LRESULT ANIMATE_Timer(ANIMATE_INFO *infoPtr)
377 {
378     HDC hDC;
379
380     if ((hDC = GetDC(infoPtr->hwndSelf)) != 0)
381     {
382         if (infoPtr->dwStyle & ACS_TRANSPARENT)
383             infoPtr->hbrushBG = (HBRUSH)SendMessageW(infoPtr->hwndNotify,
384                                                      WM_CTLCOLORSTATIC,
385                                                      (WPARAM)hDC, (LPARAM)infoPtr->hwndSelf);
386         EnterCriticalSection(&infoPtr->cs);
387         ANIMATE_DrawFrame(infoPtr, hDC);
388         LeaveCriticalSection(&infoPtr->cs);
389
390         ReleaseDC(infoPtr->hwndSelf, hDC);
391     }
392
393     return 0;
394 }
395
396 static DWORD CALLBACK ANIMATE_AnimationThread(LPVOID ptr_)
397 {
398     ANIMATE_INFO *infoPtr = (ANIMATE_INFO *)ptr_;
399     HANDLE event;
400     DWORD timeout;
401
402     while(1)
403     {
404         HDC hDC = GetDC(infoPtr->hwndSelf);
405
406         if (infoPtr->dwStyle & ACS_TRANSPARENT)
407             infoPtr->hbrushBG = (HBRUSH)SendMessageW(infoPtr->hwndNotify,
408                                                      WM_CTLCOLORSTATIC,
409                                                      (WPARAM)hDC, (LPARAM)infoPtr->hwndSelf);
410         EnterCriticalSection(&infoPtr->cs);
411         ANIMATE_DrawFrame(infoPtr, hDC);
412         timeout = infoPtr->mah.dwMicroSecPerFrame;
413         event = infoPtr->hStopEvent;
414         LeaveCriticalSection(&infoPtr->cs);
415
416         ReleaseDC(infoPtr->hwndSelf, hDC);
417
418         /* time is in microseconds, we should convert it to milliseconds */
419         if ((event == 0) || WaitForSingleObject( event, (timeout+500)/1000) == WAIT_OBJECT_0)
420             break;
421     }
422     return TRUE;
423 }
424
425 static LRESULT ANIMATE_Play(ANIMATE_INFO *infoPtr, UINT cRepeat, WORD wFrom, WORD wTo)
426 {
427     /* nothing opened */
428     if (!infoPtr->hMMio)
429         return FALSE;
430
431     if (infoPtr->hThread || infoPtr->uTimer) {
432         TRACE("Already playing\n");
433         return TRUE;
434     }
435
436     infoPtr->nFromFrame = wFrom;
437     infoPtr->nToFrame   = wTo;
438     infoPtr->nLoop      = cRepeat;
439
440     if (infoPtr->nToFrame == 0xFFFF)
441         infoPtr->nToFrame = infoPtr->mah.dwTotalFrames - 1;
442
443     TRACE("(repeat=%d from=%d to=%d);\n",
444           infoPtr->nLoop, infoPtr->nFromFrame, infoPtr->nToFrame);
445
446     if (infoPtr->nFromFrame >= infoPtr->mah.dwTotalFrames &&
447         (SHORT)infoPtr->nFromFrame < 0)
448         infoPtr->nFromFrame = 0;
449
450     if (infoPtr->nFromFrame > infoPtr->nToFrame ||
451         infoPtr->nToFrame >= infoPtr->mah.dwTotalFrames)
452         return FALSE;
453
454     infoPtr->currFrame = infoPtr->nFromFrame;
455
456     /* seek - doesn't need to start a thread or set a timer and neither
457      * does it send a notification */
458     if (infoPtr->nFromFrame == infoPtr->nToFrame)
459     {
460         HDC hDC;
461
462         if ((hDC = GetDC(infoPtr->hwndSelf)) != 0)
463         {
464             if (infoPtr->dwStyle & ACS_TRANSPARENT)
465                 infoPtr->hbrushBG = (HBRUSH)SendMessageW(infoPtr->hwndNotify,
466                                                          WM_CTLCOLORSTATIC,
467                                                          (WPARAM)hDC, (LPARAM)infoPtr->hwndSelf);
468             ANIMATE_DrawFrame(infoPtr, hDC);
469
470             ReleaseDC(infoPtr->hwndSelf, hDC);
471         }
472         return TRUE;
473     }
474
475     if (infoPtr->dwStyle & ACS_TIMER) 
476     {
477         TRACE("Using a timer\n");
478         /* create a timer to display AVI */
479         infoPtr->uTimer = SetTimer(infoPtr->hwndSelf, 1, 
480                                    infoPtr->mah.dwMicroSecPerFrame / 1000, NULL);
481     } 
482     else 
483     {
484         if(infoPtr->dwStyle & ACS_TRANSPARENT)
485             infoPtr->hbrushBG = (HBRUSH)SendMessageW(infoPtr->hwndNotify,
486                                                      WM_CTLCOLORSTATIC, 0,
487                                                      (LPARAM)infoPtr->hwndSelf);
488
489         TRACE("Using an animation thread\n");
490         infoPtr->hStopEvent = CreateEventW( NULL, TRUE, FALSE, NULL );
491         infoPtr->hThread = CreateThread(0, 0, ANIMATE_AnimationThread,
492                                         (LPVOID)infoPtr, 0, &infoPtr->threadId);
493         if(!infoPtr->hThread) return FALSE;
494
495     }
496
497     ANIMATE_Notify(infoPtr, ACN_START);
498
499     return TRUE;
500 }
501
502
503 static BOOL ANIMATE_GetAviInfo(ANIMATE_INFO *infoPtr)
504 {
505     MMCKINFO            ckMainRIFF;
506     MMCKINFO            mmckHead;
507     MMCKINFO            mmckList;
508     MMCKINFO            mmckInfo;
509     DWORD               numFrame;
510     DWORD               insize;
511
512     if (mmioDescend(infoPtr->hMMio, &ckMainRIFF, NULL, 0) != 0) {
513         WARN("Can't find 'RIFF' chunk\n");
514         return FALSE;
515     }
516
517     if ((ckMainRIFF.ckid != FOURCC_RIFF) ||
518         (ckMainRIFF.fccType != mmioFOURCC('A', 'V', 'I', ' '))) {
519         WARN("Can't find 'AVI ' chunk\n");
520         return FALSE;
521     }
522
523     mmckHead.fccType = mmioFOURCC('h', 'd', 'r', 'l');
524     if (mmioDescend(infoPtr->hMMio, &mmckHead, &ckMainRIFF, MMIO_FINDLIST) != 0) {
525         WARN("Can't find 'hdrl' list\n");
526         return FALSE;
527     }
528
529     mmckInfo.ckid = mmioFOURCC('a', 'v', 'i', 'h');
530     if (mmioDescend(infoPtr->hMMio, &mmckInfo, &mmckHead, MMIO_FINDCHUNK) != 0) {
531         WARN("Can't find 'avih' chunk\n");
532         return FALSE;
533     }
534
535     mmioRead(infoPtr->hMMio, (LPSTR)&infoPtr->mah, sizeof(infoPtr->mah));
536
537     TRACE("mah.dwMicroSecPerFrame=%d\n",        infoPtr->mah.dwMicroSecPerFrame);
538     TRACE("mah.dwMaxBytesPerSec=%d\n",          infoPtr->mah.dwMaxBytesPerSec);
539     TRACE("mah.dwPaddingGranularity=%d\n",      infoPtr->mah.dwPaddingGranularity);
540     TRACE("mah.dwFlags=%d\n",                   infoPtr->mah.dwFlags);
541     TRACE("mah.dwTotalFrames=%d\n",             infoPtr->mah.dwTotalFrames);
542     TRACE("mah.dwInitialFrames=%d\n",           infoPtr->mah.dwInitialFrames);
543     TRACE("mah.dwStreams=%d\n",                 infoPtr->mah.dwStreams);
544     TRACE("mah.dwSuggestedBufferSize=%d\n",     infoPtr->mah.dwSuggestedBufferSize);
545     TRACE("mah.dwWidth=%d\n",                   infoPtr->mah.dwWidth);
546     TRACE("mah.dwHeight=%d\n",                  infoPtr->mah.dwHeight);
547
548     mmioAscend(infoPtr->hMMio, &mmckInfo, 0);
549
550     mmckList.fccType = mmioFOURCC('s', 't', 'r', 'l');
551     if (mmioDescend(infoPtr->hMMio, &mmckList, &mmckHead, MMIO_FINDLIST) != 0) {
552         WARN("Can't find 'strl' list\n");
553         return FALSE;
554     }
555
556     mmckInfo.ckid = mmioFOURCC('s', 't', 'r', 'h');
557     if (mmioDescend(infoPtr->hMMio, &mmckInfo, &mmckList, MMIO_FINDCHUNK) != 0) {
558         WARN("Can't find 'strh' chunk\n");
559         return FALSE;
560     }
561
562     mmioRead(infoPtr->hMMio, (LPSTR)&infoPtr->ash, sizeof(infoPtr->ash));
563
564     TRACE("ash.fccType='%c%c%c%c'\n",           LOBYTE(LOWORD(infoPtr->ash.fccType)),
565                                                 HIBYTE(LOWORD(infoPtr->ash.fccType)),
566                                                 LOBYTE(HIWORD(infoPtr->ash.fccType)),
567                                                 HIBYTE(HIWORD(infoPtr->ash.fccType)));
568     TRACE("ash.fccHandler='%c%c%c%c'\n",        LOBYTE(LOWORD(infoPtr->ash.fccHandler)),
569                                                 HIBYTE(LOWORD(infoPtr->ash.fccHandler)),
570                                                 LOBYTE(HIWORD(infoPtr->ash.fccHandler)),
571                                                 HIBYTE(HIWORD(infoPtr->ash.fccHandler)));
572     TRACE("ash.dwFlags=%d\n",                   infoPtr->ash.dwFlags);
573     TRACE("ash.wPriority=%d\n",                 infoPtr->ash.wPriority);
574     TRACE("ash.wLanguage=%d\n",                 infoPtr->ash.wLanguage);
575     TRACE("ash.dwInitialFrames=%d\n",           infoPtr->ash.dwInitialFrames);
576     TRACE("ash.dwScale=%d\n",                   infoPtr->ash.dwScale);
577     TRACE("ash.dwRate=%d\n",                    infoPtr->ash.dwRate);
578     TRACE("ash.dwStart=%d\n",                   infoPtr->ash.dwStart);
579     TRACE("ash.dwLength=%d\n",                  infoPtr->ash.dwLength);
580     TRACE("ash.dwSuggestedBufferSize=%d\n",     infoPtr->ash.dwSuggestedBufferSize);
581     TRACE("ash.dwQuality=%d\n",                 infoPtr->ash.dwQuality);
582     TRACE("ash.dwSampleSize=%d\n",              infoPtr->ash.dwSampleSize);
583     TRACE("ash.rcFrame=(%d,%d,%d,%d)\n",        infoPtr->ash.rcFrame.top, infoPtr->ash.rcFrame.left,
584           infoPtr->ash.rcFrame.bottom, infoPtr->ash.rcFrame.right);
585
586     mmioAscend(infoPtr->hMMio, &mmckInfo, 0);
587
588     mmckInfo.ckid = mmioFOURCC('s', 't', 'r', 'f');
589     if (mmioDescend(infoPtr->hMMio, &mmckInfo, &mmckList, MMIO_FINDCHUNK) != 0) {
590         WARN("Can't find 'strh' chunk\n");
591         return FALSE;
592     }
593
594     infoPtr->inbih = Alloc(mmckInfo.cksize);
595     if (!infoPtr->inbih) {
596         WARN("Can't alloc input BIH\n");
597         return FALSE;
598     }
599
600     mmioRead(infoPtr->hMMio, (LPSTR)infoPtr->inbih, mmckInfo.cksize);
601
602     TRACE("bih.biSize=%d\n",            infoPtr->inbih->biSize);
603     TRACE("bih.biWidth=%d\n",           infoPtr->inbih->biWidth);
604     TRACE("bih.biHeight=%d\n",          infoPtr->inbih->biHeight);
605     TRACE("bih.biPlanes=%d\n",          infoPtr->inbih->biPlanes);
606     TRACE("bih.biBitCount=%d\n",        infoPtr->inbih->biBitCount);
607     TRACE("bih.biCompression=%d\n",     infoPtr->inbih->biCompression);
608     TRACE("bih.biSizeImage=%d\n",       infoPtr->inbih->biSizeImage);
609     TRACE("bih.biXPelsPerMeter=%d\n",   infoPtr->inbih->biXPelsPerMeter);
610     TRACE("bih.biYPelsPerMeter=%d\n",   infoPtr->inbih->biYPelsPerMeter);
611     TRACE("bih.biClrUsed=%d\n",         infoPtr->inbih->biClrUsed);
612     TRACE("bih.biClrImportant=%d\n",    infoPtr->inbih->biClrImportant);
613
614     mmioAscend(infoPtr->hMMio, &mmckInfo, 0);
615
616     mmioAscend(infoPtr->hMMio, &mmckList, 0);
617
618 #if 0
619     /* an AVI has 0 or 1 video stream, and to be animated should not contain
620      * an audio stream, so only one strl is allowed
621      */
622     mmckList.fccType = mmioFOURCC('s', 't', 'r', 'l');
623     if (mmioDescend(infoPtr->hMMio, &mmckList, &mmckHead, MMIO_FINDLIST) == 0) {
624         WARN("There should be a single 'strl' list\n");
625         return FALSE;
626     }
627 #endif
628
629     mmioAscend(infoPtr->hMMio, &mmckHead, 0);
630
631     /* no need to read optional JUNK chunk */
632
633     mmckList.fccType = mmioFOURCC('m', 'o', 'v', 'i');
634     if (mmioDescend(infoPtr->hMMio, &mmckList, &ckMainRIFF, MMIO_FINDLIST) != 0) {
635         WARN("Can't find 'movi' list\n");
636         return FALSE;
637     }
638
639     /* FIXME: should handle the 'rec ' LIST when present */
640
641     infoPtr->lpIndex = Alloc(infoPtr->mah.dwTotalFrames * sizeof(DWORD));
642     if (!infoPtr->lpIndex) 
643         return FALSE;
644
645     numFrame = insize = 0;
646     while (mmioDescend(infoPtr->hMMio, &mmckInfo, &mmckList, 0) == 0 &&
647            numFrame < infoPtr->mah.dwTotalFrames) {
648         infoPtr->lpIndex[numFrame] = mmckInfo.dwDataOffset;
649         if (insize < mmckInfo.cksize)
650             insize = mmckInfo.cksize;
651         numFrame++;
652         mmioAscend(infoPtr->hMMio, &mmckInfo, 0);
653     }
654     if (numFrame != infoPtr->mah.dwTotalFrames) {
655         WARN("Found %d frames (/%d)\n", numFrame, infoPtr->mah.dwTotalFrames);
656         return FALSE;
657     }
658     if (insize > infoPtr->ash.dwSuggestedBufferSize) {
659         WARN("insize=%d suggestedSize=%d\n", insize, infoPtr->ash.dwSuggestedBufferSize);
660         infoPtr->ash.dwSuggestedBufferSize = insize;
661     }
662
663     infoPtr->indata = Alloc(infoPtr->ash.dwSuggestedBufferSize);
664     if (!infoPtr->indata) 
665         return FALSE;
666
667     return TRUE;
668 }
669
670
671 static BOOL ANIMATE_GetAviCodec(ANIMATE_INFO *infoPtr)
672 {
673     DWORD       outSize;
674
675     /* check uncompressed AVI */
676     if ((infoPtr->ash.fccHandler == mmioFOURCC('D', 'I', 'B', ' ')) ||
677        (infoPtr->ash.fccHandler == mmioFOURCC('R', 'L', 'E', ' ')) ||
678        (infoPtr->ash.fccHandler == mmioFOURCC(0, 0, 0, 0)))
679     {
680         infoPtr->hic = 0;
681         return TRUE;
682     }
683
684     /* try to get a decompressor for that type */
685     infoPtr->hic = fnIC.fnICOpen(ICTYPE_VIDEO, infoPtr->ash.fccHandler, ICMODE_DECOMPRESS);
686     if (!infoPtr->hic) {
687         WARN("Can't load codec for the file\n");
688         return FALSE;
689     }
690
691     outSize = fnIC.fnICSendMessage(infoPtr->hic, ICM_DECOMPRESS_GET_FORMAT,
692                             (DWORD_PTR)infoPtr->inbih, 0L);
693
694     infoPtr->outbih = Alloc(outSize);
695     if (!infoPtr->outbih)
696         return FALSE;
697
698     if (fnIC.fnICSendMessage(infoPtr->hic, ICM_DECOMPRESS_GET_FORMAT,
699                       (DWORD_PTR)infoPtr->inbih, (DWORD_PTR)infoPtr->outbih) != ICERR_OK) 
700     {
701         WARN("Can't get output BIH\n");
702         return FALSE;
703     }
704
705     infoPtr->outdata = Alloc(infoPtr->outbih->biSizeImage);
706     if (!infoPtr->outdata) 
707         return FALSE;
708
709     if (fnIC.fnICSendMessage(infoPtr->hic, ICM_DECOMPRESS_BEGIN,
710                       (DWORD_PTR)infoPtr->inbih, (DWORD_PTR)infoPtr->outbih) != ICERR_OK) {
711         WARN("Can't begin decompression\n");
712         return FALSE;
713     }
714
715     return TRUE;
716 }
717
718
719 static BOOL ANIMATE_OpenW(ANIMATE_INFO *infoPtr, HINSTANCE hInstance, LPWSTR lpszName)
720 {
721     ANIMATE_Free(infoPtr);
722
723     if (!lpszName) 
724     {
725         TRACE("Closing avi!\n");
726         /* installer of thebat! v1.62 requires FALSE here */
727         return (infoPtr->hMMio != 0);
728     }
729
730     if (!hInstance)
731         hInstance = (HINSTANCE)GetWindowLongPtrW(infoPtr->hwndSelf, GWLP_HINSTANCE);
732
733     TRACE("(%s)\n", debugstr_w(lpszName));
734
735     if (HIWORD(lpszName))
736     {
737         if (!ANIMATE_LoadResW(infoPtr, hInstance, lpszName)) 
738         {
739             TRACE("No AVI resource found!\n");
740             if (!ANIMATE_LoadFileW(infoPtr, lpszName)) 
741             {
742                 WARN("No AVI file found!\n");
743                 return FALSE;
744             }
745         }
746     } 
747     else 
748     {
749         if (!ANIMATE_LoadResW(infoPtr, hInstance, lpszName))
750         {
751             WARN("No AVI resource found!\n");
752             return FALSE;
753         }
754     }
755
756     if (!ANIMATE_GetAviInfo(infoPtr)) 
757     {
758         WARN("Can't get AVI information\n");
759         ANIMATE_Free(infoPtr);
760         return FALSE;
761     }
762
763     if (!ANIMATE_GetAviCodec(infoPtr)) 
764     {
765         WARN("Can't get AVI Codec\n");
766         ANIMATE_Free(infoPtr);
767         return FALSE;
768     }
769
770     if (!(infoPtr->dwStyle & ACS_CENTER))
771         SetWindowPos(infoPtr->hwndSelf, 0, 0, 0, infoPtr->mah.dwWidth, infoPtr->mah.dwHeight,
772                      SWP_NOACTIVATE | SWP_NOMOVE | SWP_NOZORDER);
773
774     if (infoPtr->dwStyle & ACS_AUTOPLAY) 
775         return ANIMATE_Play(infoPtr, -1, 0, infoPtr->mah.dwTotalFrames - 1);
776
777     return TRUE;
778 }
779
780
781 static BOOL ANIMATE_OpenA(ANIMATE_INFO *infoPtr, HINSTANCE hInstance, LPSTR lpszName)
782 {
783     LPWSTR lpwszName;
784     LRESULT result;
785     INT len;
786
787     if (!HIWORD(lpszName))
788         return ANIMATE_OpenW(infoPtr, hInstance, (LPWSTR)lpszName);
789
790     len = MultiByteToWideChar(CP_ACP, 0, lpszName, -1, NULL, 0);
791     lpwszName = Alloc(len * sizeof(WCHAR));
792     if (!lpwszName) return FALSE;
793     MultiByteToWideChar(CP_ACP, 0, lpszName, -1, lpwszName, len);
794
795     result = ANIMATE_OpenW(infoPtr, hInstance, lpwszName);
796     Free (lpwszName);
797     return result;
798 }
799
800
801 static BOOL ANIMATE_Stop(ANIMATE_INFO *infoPtr)
802 {
803     /* nothing opened */
804     if (!infoPtr->hMMio)
805         return FALSE;
806
807     ANIMATE_DoStop(infoPtr);
808     return TRUE;
809 }
810
811
812 static BOOL ANIMATE_Create(HWND hWnd, const CREATESTRUCTW *lpcs)
813 {
814     static const WCHAR msvfw32W[] = { 'm', 's', 'v', 'f', 'w', '3', '2', '.', 'd', 'l', 'l', 0 };
815     ANIMATE_INFO *infoPtr;
816
817     if (!fnIC.hModule)
818     {
819         fnIC.hModule = LoadLibraryW(msvfw32W);
820         if (!fnIC.hModule) return FALSE;
821
822         fnIC.fnICOpen        = (void*)GetProcAddress(fnIC.hModule, "ICOpen");
823         fnIC.fnICClose       = (void*)GetProcAddress(fnIC.hModule, "ICClose");
824         fnIC.fnICSendMessage = (void*)GetProcAddress(fnIC.hModule, "ICSendMessage");
825         fnIC.fnICDecompress  = (void*)GetProcAddress(fnIC.hModule, "ICDecompress");
826     }
827
828     /* allocate memory for info structure */
829     infoPtr = (ANIMATE_INFO *)Alloc(sizeof(ANIMATE_INFO));
830     if (!infoPtr) return FALSE;
831
832     /* store crossref hWnd <-> info structure */
833     SetWindowLongPtrW(hWnd, 0, (DWORD_PTR)infoPtr);
834     infoPtr->hwndSelf = hWnd;
835     infoPtr->hwndNotify = lpcs->hwndParent;
836     infoPtr->transparentColor = ANIMATE_COLOR_NONE;
837     infoPtr->hbmPrevFrame = 0;
838     infoPtr->dwStyle = lpcs->style;
839
840     TRACE("Animate style=0x%08x, parent=%p\n", infoPtr->dwStyle, infoPtr->hwndNotify);
841
842     InitializeCriticalSection(&infoPtr->cs);
843     infoPtr->cs.DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": ANIMATE_INFO*->cs");
844
845     return TRUE;
846 }
847
848
849 static LRESULT ANIMATE_Destroy(ANIMATE_INFO *infoPtr)
850 {
851     /* free avi data */
852     ANIMATE_Free(infoPtr);
853
854     /* free animate info data */
855     SetWindowLongPtrW(infoPtr->hwndSelf, 0, 0);
856
857     infoPtr->cs.DebugInfo->Spare[0] = 0;
858     DeleteCriticalSection(&infoPtr->cs);
859     Free(infoPtr);
860
861     return 0;
862 }
863
864
865 static BOOL ANIMATE_EraseBackground(ANIMATE_INFO const *infoPtr, HDC hdc)
866 {
867     RECT rect;
868     HBRUSH hBrush = 0;
869
870     if(infoPtr->dwStyle & ACS_TRANSPARENT)
871     {
872         hBrush = (HBRUSH)SendMessageW(infoPtr->hwndNotify, WM_CTLCOLORSTATIC,
873                                       (WPARAM)hdc, (LPARAM)infoPtr->hwndSelf);
874     }
875
876     GetClientRect(infoPtr->hwndSelf, &rect);
877     FillRect(hdc, &rect, hBrush ? hBrush : GetCurrentObject(hdc, OBJ_BRUSH));
878
879     return TRUE;
880 }
881
882
883 static LRESULT ANIMATE_StyleChanged(ANIMATE_INFO *infoPtr, WPARAM wStyleType, const STYLESTRUCT *lpss)
884 {
885     TRACE("(styletype=%lx, styleOld=0x%08x, styleNew=0x%08x)\n",
886           wStyleType, lpss->styleOld, lpss->styleNew);
887
888     if (wStyleType != GWL_STYLE) return 0;
889   
890     infoPtr->dwStyle = lpss->styleNew;
891
892     InvalidateRect(infoPtr->hwndSelf, NULL, TRUE);
893     return 0;
894 }
895
896
897 static LRESULT WINAPI ANIMATE_WindowProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
898 {
899     ANIMATE_INFO *infoPtr = (ANIMATE_INFO *)GetWindowLongPtrW(hWnd, 0);
900
901     TRACE("hwnd=%p msg=%x wparam=%lx lparam=%lx\n", hWnd, uMsg, wParam, lParam);
902     if (!infoPtr && (uMsg != WM_NCCREATE))
903         return DefWindowProcW(hWnd, uMsg, wParam, lParam);
904     switch (uMsg)
905     {
906     case ACM_OPENA:
907         return ANIMATE_OpenA(infoPtr, (HINSTANCE)wParam, (LPSTR)lParam);
908
909     case ACM_OPENW:
910         return ANIMATE_OpenW(infoPtr, (HINSTANCE)wParam, (LPWSTR)lParam);
911
912     case ACM_PLAY:
913         return ANIMATE_Play(infoPtr, (INT)wParam, LOWORD(lParam), HIWORD(lParam));
914
915     case ACM_STOP:
916         return ANIMATE_Stop(infoPtr);
917
918     case WM_CLOSE:
919         ANIMATE_Free(infoPtr);
920         return 0;
921
922     case WM_NCCREATE:
923         return ANIMATE_Create(hWnd, (LPCREATESTRUCTW)lParam);
924
925     case WM_NCHITTEST:
926         return HTTRANSPARENT;
927
928     case WM_DESTROY:
929         return ANIMATE_Destroy(infoPtr);
930
931     case WM_ERASEBKGND:
932         return ANIMATE_EraseBackground(infoPtr, (HDC)wParam);
933
934     case WM_STYLECHANGED:
935         return ANIMATE_StyleChanged(infoPtr, wParam, (LPSTYLESTRUCT)lParam);
936
937     case WM_TIMER:
938         return ANIMATE_Timer(infoPtr);
939
940     case WM_PRINTCLIENT:
941     case WM_PAINT:
942         {
943             /* the animation has not decompressed
944              * (and displayed) the first frame yet, don't paint
945              */
946             if (!infoPtr->hbmPrevFrame)
947             {
948                 /* default paint handling */
949                 return DefWindowProcW(hWnd, uMsg, wParam, lParam);
950             }
951
952             if (wParam)
953             {
954                 EnterCriticalSection(&infoPtr->cs);
955                 ANIMATE_PaintFrame(infoPtr, (HDC)wParam);
956                 LeaveCriticalSection(&infoPtr->cs);
957             }
958             else
959             {
960                 PAINTSTRUCT ps;
961                 HDC hDC = BeginPaint(infoPtr->hwndSelf, &ps);
962
963                 EnterCriticalSection(&infoPtr->cs);
964                 ANIMATE_PaintFrame(infoPtr, hDC);
965                 LeaveCriticalSection(&infoPtr->cs);
966
967                 EndPaint(infoPtr->hwndSelf, &ps);
968             }
969         }
970         break;
971
972     case WM_SIZE:
973         if (infoPtr->dwStyle & ACS_CENTER) 
974             InvalidateRect(infoPtr->hwndSelf, NULL, TRUE);
975         return DefWindowProcW(hWnd, uMsg, wParam, lParam);
976
977     default:
978         if ((uMsg >= WM_USER) && (uMsg < WM_APP))
979             ERR("unknown msg %04x wp=%08lx lp=%08lx\n", uMsg, wParam, lParam);
980
981         return DefWindowProcW(hWnd, uMsg, wParam, lParam);
982     }
983     return 0;
984 }
985
986 void ANIMATE_Register(void)
987 {
988     WNDCLASSW wndClass;
989
990     ZeroMemory(&wndClass, sizeof(WNDCLASSW));
991     wndClass.style         = CS_GLOBALCLASS | CS_DBLCLKS;
992     wndClass.lpfnWndProc   = ANIMATE_WindowProc;
993     wndClass.cbClsExtra    = 0;
994     wndClass.cbWndExtra    = sizeof(ANIMATE_INFO *);
995     wndClass.hCursor       = LoadCursorW(0, (LPCWSTR)IDC_ARROW);
996     wndClass.hbrBackground = (HBRUSH)(COLOR_BTNFACE + 1);
997     wndClass.lpszClassName = ANIMATE_CLASSW;
998
999     RegisterClassW(&wndClass);
1000 }
1001
1002
1003 void ANIMATE_Unregister(void)
1004 {
1005     UnregisterClassW(ANIMATE_CLASSW, NULL);
1006 }