1 /* -*- tab-width: 8; c-basic-offset: 4 -*- */
5 * Copyright 1998, 1999 Eric Kohl
6 * Copyright 1999 Eric Pouech
7 * Copyright 2005 Dimitrie O. Paun
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.
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.
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
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.
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.
33 * - check for the 'rec ' list in some AVI files
47 #include "wine/debug.h"
49 WINE_DEFAULT_DEBUG_CHANNEL(animate
);
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
);
61 /* reference to input stream (file or resource) */
63 HMMIO hMMio
; /* handle to mmio stream */
67 /* information on the loaded AVI file */
70 LPBITMAPINFOHEADER inbih
;
72 /* data for the decompressor */
74 LPBITMAPINFOHEADER outbih
;
77 /* data for the background mechanism */
83 /* data for playing the file */
88 /* transparency info*/
89 COLORREF transparentColor
;
94 #define ANIMATE_COLOR_NONE 0xffffffff
96 static void ANIMATE_Notify(const ANIMATE_INFO
*infoPtr
, UINT notif
)
98 PostMessageW(infoPtr
->hwndNotify
, WM_COMMAND
,
99 MAKEWPARAM(GetDlgCtrlID(infoPtr
->hwndSelf
), notif
),
100 (LPARAM
)infoPtr
->hwndSelf
);
103 static BOOL
ANIMATE_LoadResW(ANIMATE_INFO
*infoPtr
, HINSTANCE hInst
, LPCWSTR lpName
)
105 static const WCHAR aviW
[] = { 'A', 'V', 'I', 0 };
110 hrsrc
= FindResourceW(hInst
, lpName
, aviW
);
114 infoPtr
->hRes
= LoadResource(hInst
, hrsrc
);
118 lpAvi
= LockResource(infoPtr
->hRes
);
122 memset(&mminfo
, 0, sizeof(mminfo
));
123 mminfo
.fccIOProc
= FOURCC_MEM
;
124 mminfo
.pchBuffer
= lpAvi
;
125 mminfo
.cchBuffer
= SizeofResource(hInst
, hrsrc
);
126 infoPtr
->hMMio
= mmioOpenW(NULL
, &mminfo
, MMIO_READ
);
129 FreeResource(infoPtr
->hRes
);
137 static BOOL
ANIMATE_LoadFileW(ANIMATE_INFO
*infoPtr
, LPWSTR lpName
)
139 infoPtr
->hMMio
= mmioOpenW(lpName
, 0, MMIO_ALLOCBUF
| MMIO_READ
| MMIO_DENYWRITE
);
141 if(!infoPtr
->hMMio
) return FALSE
;
146 static BOOL
ANIMATE_DoStop(ANIMATE_INFO
*infoPtr
)
148 BOOL stopped
= FALSE
;
150 EnterCriticalSection(&infoPtr
->cs
);
152 /* should stop playing */
153 if (infoPtr
->hThread
)
155 HANDLE handle
= infoPtr
->hThread
;
157 TRACE("stopping animation thread\n");
158 infoPtr
->hThread
= 0;
159 SetEvent( infoPtr
->hStopEvent
);
161 if (infoPtr
->threadId
!= GetCurrentThreadId())
163 LeaveCriticalSection(&infoPtr
->cs
); /* leave it a chance to run */
164 WaitForSingleObject( handle
, INFINITE
);
165 TRACE("animation thread stopped\n");
166 EnterCriticalSection(&infoPtr
->cs
);
169 CloseHandle( handle
);
170 CloseHandle( infoPtr
->hStopEvent
);
171 infoPtr
->hStopEvent
= 0;
174 if (infoPtr
->uTimer
) {
175 KillTimer(infoPtr
->hwndSelf
, infoPtr
->uTimer
);
180 LeaveCriticalSection(&infoPtr
->cs
);
183 ANIMATE_Notify(infoPtr
, ACN_STOP
);
189 static void ANIMATE_Free(ANIMATE_INFO
*infoPtr
)
191 if (infoPtr
->hMMio
) {
192 ANIMATE_DoStop(infoPtr
);
193 mmioClose(infoPtr
->hMMio
, 0);
195 FreeResource(infoPtr
->hRes
);
198 Free (infoPtr
->lpIndex
);
199 infoPtr
->lpIndex
= NULL
;
201 fnIC
.fnICClose(infoPtr
->hic
);
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
)
214 DeleteObject(infoPtr
->hbmPrevFrame
);
215 infoPtr
->hbmPrevFrame
= 0;
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;
222 infoPtr
->transparentColor
= ANIMATE_COLOR_NONE
;
225 static void ANIMATE_TransparentBlt(ANIMATE_INFO
const *infoPtr
, HDC hdcDest
, HDC hdcSource
)
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
);
236 SetBkColor(hdcSource
,infoPtr
->transparentColor
);
237 BitBlt(hdcMask
,0,0,infoPtr
->inbih
->biWidth
, infoPtr
->inbih
->biHeight
,hdcSource
,0,0,SRCCOPY
);
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
);
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
);
249 /* combine source and destination */
250 BitBlt(hdcDest
,0,0,infoPtr
->inbih
->biWidth
, infoPtr
->inbih
->biHeight
,hdcSource
,0,0,SRCPAINT
);
252 SelectObject(hdcMask
, hbmOld
);
253 DeleteObject(hbmMask
);
257 static BOOL
ANIMATE_PaintFrame(ANIMATE_INFO
* infoPtr
, HDC hDC
)
259 void const *pBitmapData
;
260 BITMAPINFO
const *pBitmapInfo
;
268 if (!hDC
|| !infoPtr
->inbih
)
273 pBitmapData
= infoPtr
->outdata
;
274 pBitmapInfo
= (LPBITMAPINFO
)infoPtr
->outbih
;
276 nWidth
= infoPtr
->outbih
->biWidth
;
277 nHeight
= infoPtr
->outbih
->biHeight
;
281 pBitmapData
= infoPtr
->indata
;
282 pBitmapInfo
= (LPBITMAPINFO
)infoPtr
->inbih
;
284 nWidth
= infoPtr
->inbih
->biWidth
;
285 nHeight
= infoPtr
->inbih
->biHeight
;
288 if(!infoPtr
->hbmPrevFrame
)
290 infoPtr
->hbmPrevFrame
=CreateCompatibleBitmap(hDC
, nWidth
,nHeight
);
293 hdcMem
= CreateCompatibleDC(hDC
);
294 hbmOld
= SelectObject(hdcMem
, infoPtr
->hbmPrevFrame
);
296 SetDIBits(hdcMem
, infoPtr
->hbmPrevFrame
, 0, nHeight
, pBitmapData
, pBitmapInfo
, DIB_RGB_COLORS
);
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
303 if(infoPtr
->transparentColor
== ANIMATE_COLOR_NONE
)
305 infoPtr
->transparentColor
= GetPixel(hdcMem
,0,0);
308 if(infoPtr
->dwStyle
& ACS_TRANSPARENT
)
310 HDC hdcFinal
= CreateCompatibleDC(hDC
);
311 HBITMAP hbmFinal
= CreateCompatibleBitmap(hDC
,nWidth
, nHeight
);
312 HBITMAP hbmOld2
= SelectObject(hdcFinal
, hbmFinal
);
315 SetRect(&rect
, 0, 0, nWidth
, nHeight
);
317 if(!infoPtr
->hbrushBG
)
318 infoPtr
->hbrushBG
= GetCurrentObject(hDC
, OBJ_BRUSH
);
320 FillRect(hdcFinal
, &rect
, infoPtr
->hbrushBG
);
321 ANIMATE_TransparentBlt(infoPtr
, hdcFinal
, hdcMem
);
323 SelectObject(hdcFinal
, hbmOld2
);
324 SelectObject(hdcMem
, hbmFinal
);
326 DeleteObject(infoPtr
->hbmPrevFrame
);
327 infoPtr
->hbmPrevFrame
= hbmFinal
;
330 if (infoPtr
->dwStyle
& ACS_CENTER
)
334 GetWindowRect(infoPtr
->hwndSelf
, &rect
);
335 nOffsetX
= ((rect
.right
- rect
.left
) - nWidth
)/2;
336 nOffsetY
= ((rect
.bottom
- rect
.top
) - nHeight
)/2;
338 BitBlt(hDC
, nOffsetX
, nOffsetY
, nWidth
, nHeight
, hdcMem
, 0, 0, SRCCOPY
);
340 SelectObject(hdcMem
, hbmOld
);
345 static BOOL
ANIMATE_DrawFrame(ANIMATE_INFO
*infoPtr
, HDC hDC
)
347 TRACE("Drawing frame %d (loop %d)\n", infoPtr
->currFrame
, infoPtr
->nLoop
);
349 mmioSeek(infoPtr
->hMMio
, infoPtr
->lpIndex
[infoPtr
->currFrame
], SEEK_SET
);
350 mmioRead(infoPtr
->hMMio
, infoPtr
->indata
, infoPtr
->ash
.dwSuggestedBufferSize
);
353 fnIC
.fnICDecompress(infoPtr
->hic
, 0, infoPtr
->inbih
, infoPtr
->indata
,
354 infoPtr
->outbih
, infoPtr
->outdata
) != ICERR_OK
) {
355 WARN("Decompression error\n");
359 ANIMATE_PaintFrame(infoPtr
, hDC
);
361 if (infoPtr
->currFrame
++ >= infoPtr
->nToFrame
) {
362 infoPtr
->currFrame
= infoPtr
->nFromFrame
;
363 if (infoPtr
->nLoop
!= -1) {
364 if (--infoPtr
->nLoop
== 0) {
365 ANIMATE_DoStop(infoPtr
);
373 static LRESULT
ANIMATE_Timer(ANIMATE_INFO
*infoPtr
)
377 if ((hDC
= GetDC(infoPtr
->hwndSelf
)) != 0)
379 EnterCriticalSection(&infoPtr
->cs
);
380 ANIMATE_DrawFrame(infoPtr
, hDC
);
381 LeaveCriticalSection(&infoPtr
->cs
);
383 ReleaseDC(infoPtr
->hwndSelf
, hDC
);
389 static DWORD CALLBACK
ANIMATE_AnimationThread(LPVOID ptr_
)
391 ANIMATE_INFO
*infoPtr
= ptr_
;
397 HDC hDC
= GetDC(infoPtr
->hwndSelf
);
399 EnterCriticalSection(&infoPtr
->cs
);
400 ANIMATE_DrawFrame(infoPtr
, hDC
);
401 timeout
= infoPtr
->mah
.dwMicroSecPerFrame
;
402 event
= infoPtr
->hStopEvent
;
403 LeaveCriticalSection(&infoPtr
->cs
);
405 ReleaseDC(infoPtr
->hwndSelf
, hDC
);
407 /* time is in microseconds, we should convert it to milliseconds */
408 if ((event
== 0) || WaitForSingleObject( event
, (timeout
+500)/1000) == WAIT_OBJECT_0
)
414 static LRESULT
ANIMATE_Play(ANIMATE_INFO
*infoPtr
, UINT cRepeat
, WORD wFrom
, WORD wTo
)
420 if (infoPtr
->hThread
|| infoPtr
->uTimer
) {
421 TRACE("Already playing\n");
425 infoPtr
->nFromFrame
= wFrom
;
426 infoPtr
->nToFrame
= wTo
;
427 infoPtr
->nLoop
= cRepeat
;
429 if (infoPtr
->nToFrame
== 0xFFFF)
430 infoPtr
->nToFrame
= infoPtr
->mah
.dwTotalFrames
- 1;
432 TRACE("(repeat=%d from=%d to=%d);\n",
433 infoPtr
->nLoop
, infoPtr
->nFromFrame
, infoPtr
->nToFrame
);
435 if (infoPtr
->nFromFrame
>= infoPtr
->mah
.dwTotalFrames
&&
436 (SHORT
)infoPtr
->nFromFrame
< 0)
437 infoPtr
->nFromFrame
= 0;
439 if (infoPtr
->nFromFrame
> infoPtr
->nToFrame
||
440 infoPtr
->nToFrame
>= infoPtr
->mah
.dwTotalFrames
)
443 infoPtr
->currFrame
= infoPtr
->nFromFrame
;
445 /* seek - doesn't need to start a thread or set a timer and neither
446 * does it send a notification */
447 if (infoPtr
->nFromFrame
== infoPtr
->nToFrame
)
451 if ((hDC
= GetDC(infoPtr
->hwndSelf
)) != 0)
453 ANIMATE_DrawFrame(infoPtr
, hDC
);
455 ReleaseDC(infoPtr
->hwndSelf
, hDC
);
460 if (infoPtr
->dwStyle
& ACS_TIMER
)
462 TRACE("Using a timer\n");
463 /* create a timer to display AVI */
464 infoPtr
->uTimer
= SetTimer(infoPtr
->hwndSelf
, 1,
465 infoPtr
->mah
.dwMicroSecPerFrame
/ 1000, NULL
);
469 TRACE("Using an animation thread\n");
470 infoPtr
->hStopEvent
= CreateEventW( NULL
, TRUE
, FALSE
, NULL
);
471 infoPtr
->hThread
= CreateThread(0, 0, ANIMATE_AnimationThread
,
472 infoPtr
, 0, &infoPtr
->threadId
);
473 if(!infoPtr
->hThread
) return FALSE
;
477 ANIMATE_Notify(infoPtr
, ACN_START
);
483 static BOOL
ANIMATE_GetAviInfo(ANIMATE_INFO
*infoPtr
)
492 if (mmioDescend(infoPtr
->hMMio
, &ckMainRIFF
, NULL
, 0) != 0) {
493 WARN("Can't find 'RIFF' chunk\n");
497 if ((ckMainRIFF
.ckid
!= FOURCC_RIFF
) ||
498 (ckMainRIFF
.fccType
!= mmioFOURCC('A', 'V', 'I', ' '))) {
499 WARN("Can't find 'AVI ' chunk\n");
503 mmckHead
.fccType
= mmioFOURCC('h', 'd', 'r', 'l');
504 if (mmioDescend(infoPtr
->hMMio
, &mmckHead
, &ckMainRIFF
, MMIO_FINDLIST
) != 0) {
505 WARN("Can't find 'hdrl' list\n");
509 mmckInfo
.ckid
= mmioFOURCC('a', 'v', 'i', 'h');
510 if (mmioDescend(infoPtr
->hMMio
, &mmckInfo
, &mmckHead
, MMIO_FINDCHUNK
) != 0) {
511 WARN("Can't find 'avih' chunk\n");
515 mmioRead(infoPtr
->hMMio
, (LPSTR
)&infoPtr
->mah
, sizeof(infoPtr
->mah
));
517 TRACE("mah.dwMicroSecPerFrame=%d\n", infoPtr
->mah
.dwMicroSecPerFrame
);
518 TRACE("mah.dwMaxBytesPerSec=%d\n", infoPtr
->mah
.dwMaxBytesPerSec
);
519 TRACE("mah.dwPaddingGranularity=%d\n", infoPtr
->mah
.dwPaddingGranularity
);
520 TRACE("mah.dwFlags=%d\n", infoPtr
->mah
.dwFlags
);
521 TRACE("mah.dwTotalFrames=%d\n", infoPtr
->mah
.dwTotalFrames
);
522 TRACE("mah.dwInitialFrames=%d\n", infoPtr
->mah
.dwInitialFrames
);
523 TRACE("mah.dwStreams=%d\n", infoPtr
->mah
.dwStreams
);
524 TRACE("mah.dwSuggestedBufferSize=%d\n", infoPtr
->mah
.dwSuggestedBufferSize
);
525 TRACE("mah.dwWidth=%d\n", infoPtr
->mah
.dwWidth
);
526 TRACE("mah.dwHeight=%d\n", infoPtr
->mah
.dwHeight
);
528 mmioAscend(infoPtr
->hMMio
, &mmckInfo
, 0);
530 mmckList
.fccType
= mmioFOURCC('s', 't', 'r', 'l');
531 if (mmioDescend(infoPtr
->hMMio
, &mmckList
, &mmckHead
, MMIO_FINDLIST
) != 0) {
532 WARN("Can't find 'strl' list\n");
536 mmckInfo
.ckid
= mmioFOURCC('s', 't', 'r', 'h');
537 if (mmioDescend(infoPtr
->hMMio
, &mmckInfo
, &mmckList
, MMIO_FINDCHUNK
) != 0) {
538 WARN("Can't find 'strh' chunk\n");
542 mmioRead(infoPtr
->hMMio
, (LPSTR
)&infoPtr
->ash
, sizeof(infoPtr
->ash
));
544 TRACE("ash.fccType='%c%c%c%c'\n", LOBYTE(LOWORD(infoPtr
->ash
.fccType
)),
545 HIBYTE(LOWORD(infoPtr
->ash
.fccType
)),
546 LOBYTE(HIWORD(infoPtr
->ash
.fccType
)),
547 HIBYTE(HIWORD(infoPtr
->ash
.fccType
)));
548 TRACE("ash.fccHandler='%c%c%c%c'\n", LOBYTE(LOWORD(infoPtr
->ash
.fccHandler
)),
549 HIBYTE(LOWORD(infoPtr
->ash
.fccHandler
)),
550 LOBYTE(HIWORD(infoPtr
->ash
.fccHandler
)),
551 HIBYTE(HIWORD(infoPtr
->ash
.fccHandler
)));
552 TRACE("ash.dwFlags=%d\n", infoPtr
->ash
.dwFlags
);
553 TRACE("ash.wPriority=%d\n", infoPtr
->ash
.wPriority
);
554 TRACE("ash.wLanguage=%d\n", infoPtr
->ash
.wLanguage
);
555 TRACE("ash.dwInitialFrames=%d\n", infoPtr
->ash
.dwInitialFrames
);
556 TRACE("ash.dwScale=%d\n", infoPtr
->ash
.dwScale
);
557 TRACE("ash.dwRate=%d\n", infoPtr
->ash
.dwRate
);
558 TRACE("ash.dwStart=%d\n", infoPtr
->ash
.dwStart
);
559 TRACE("ash.dwLength=%d\n", infoPtr
->ash
.dwLength
);
560 TRACE("ash.dwSuggestedBufferSize=%d\n", infoPtr
->ash
.dwSuggestedBufferSize
);
561 TRACE("ash.dwQuality=%d\n", infoPtr
->ash
.dwQuality
);
562 TRACE("ash.dwSampleSize=%d\n", infoPtr
->ash
.dwSampleSize
);
563 TRACE("ash.rcFrame=(%d,%d,%d,%d)\n", infoPtr
->ash
.rcFrame
.top
, infoPtr
->ash
.rcFrame
.left
,
564 infoPtr
->ash
.rcFrame
.bottom
, infoPtr
->ash
.rcFrame
.right
);
566 mmioAscend(infoPtr
->hMMio
, &mmckInfo
, 0);
568 mmckInfo
.ckid
= mmioFOURCC('s', 't', 'r', 'f');
569 if (mmioDescend(infoPtr
->hMMio
, &mmckInfo
, &mmckList
, MMIO_FINDCHUNK
) != 0) {
570 WARN("Can't find 'strh' chunk\n");
574 infoPtr
->inbih
= Alloc(mmckInfo
.cksize
);
575 if (!infoPtr
->inbih
) {
576 WARN("Can't alloc input BIH\n");
580 mmioRead(infoPtr
->hMMio
, (LPSTR
)infoPtr
->inbih
, mmckInfo
.cksize
);
582 TRACE("bih.biSize=%d\n", infoPtr
->inbih
->biSize
);
583 TRACE("bih.biWidth=%d\n", infoPtr
->inbih
->biWidth
);
584 TRACE("bih.biHeight=%d\n", infoPtr
->inbih
->biHeight
);
585 TRACE("bih.biPlanes=%d\n", infoPtr
->inbih
->biPlanes
);
586 TRACE("bih.biBitCount=%d\n", infoPtr
->inbih
->biBitCount
);
587 TRACE("bih.biCompression=%d\n", infoPtr
->inbih
->biCompression
);
588 TRACE("bih.biSizeImage=%d\n", infoPtr
->inbih
->biSizeImage
);
589 TRACE("bih.biXPelsPerMeter=%d\n", infoPtr
->inbih
->biXPelsPerMeter
);
590 TRACE("bih.biYPelsPerMeter=%d\n", infoPtr
->inbih
->biYPelsPerMeter
);
591 TRACE("bih.biClrUsed=%d\n", infoPtr
->inbih
->biClrUsed
);
592 TRACE("bih.biClrImportant=%d\n", infoPtr
->inbih
->biClrImportant
);
594 mmioAscend(infoPtr
->hMMio
, &mmckInfo
, 0);
596 mmioAscend(infoPtr
->hMMio
, &mmckList
, 0);
599 /* an AVI has 0 or 1 video stream, and to be animated should not contain
600 * an audio stream, so only one strl is allowed
602 mmckList
.fccType
= mmioFOURCC('s', 't', 'r', 'l');
603 if (mmioDescend(infoPtr
->hMMio
, &mmckList
, &mmckHead
, MMIO_FINDLIST
) == 0) {
604 WARN("There should be a single 'strl' list\n");
609 mmioAscend(infoPtr
->hMMio
, &mmckHead
, 0);
611 /* no need to read optional JUNK chunk */
613 mmckList
.fccType
= mmioFOURCC('m', 'o', 'v', 'i');
614 if (mmioDescend(infoPtr
->hMMio
, &mmckList
, &ckMainRIFF
, MMIO_FINDLIST
) != 0) {
615 WARN("Can't find 'movi' list\n");
619 /* FIXME: should handle the 'rec ' LIST when present */
621 infoPtr
->lpIndex
= Alloc(infoPtr
->mah
.dwTotalFrames
* sizeof(DWORD
));
622 if (!infoPtr
->lpIndex
)
625 numFrame
= insize
= 0;
626 while (mmioDescend(infoPtr
->hMMio
, &mmckInfo
, &mmckList
, 0) == 0 &&
627 numFrame
< infoPtr
->mah
.dwTotalFrames
) {
628 infoPtr
->lpIndex
[numFrame
] = mmckInfo
.dwDataOffset
;
629 if (insize
< mmckInfo
.cksize
)
630 insize
= mmckInfo
.cksize
;
632 mmioAscend(infoPtr
->hMMio
, &mmckInfo
, 0);
634 if (numFrame
!= infoPtr
->mah
.dwTotalFrames
) {
635 WARN("Found %d frames (/%d)\n", numFrame
, infoPtr
->mah
.dwTotalFrames
);
638 if (insize
> infoPtr
->ash
.dwSuggestedBufferSize
) {
639 WARN("insize=%d suggestedSize=%d\n", insize
, infoPtr
->ash
.dwSuggestedBufferSize
);
640 infoPtr
->ash
.dwSuggestedBufferSize
= insize
;
643 infoPtr
->indata
= Alloc(infoPtr
->ash
.dwSuggestedBufferSize
);
644 if (!infoPtr
->indata
)
651 static BOOL
ANIMATE_GetAviCodec(ANIMATE_INFO
*infoPtr
)
655 /* check uncompressed AVI */
656 if ((infoPtr
->ash
.fccHandler
== mmioFOURCC('D', 'I', 'B', ' ')) ||
657 (infoPtr
->ash
.fccHandler
== mmioFOURCC('R', 'L', 'E', ' ')) ||
658 (infoPtr
->ash
.fccHandler
== mmioFOURCC(0, 0, 0, 0)))
664 /* try to get a decompressor for that type */
665 infoPtr
->hic
= fnIC
.fnICOpen(ICTYPE_VIDEO
, infoPtr
->ash
.fccHandler
, ICMODE_DECOMPRESS
);
667 WARN("Can't load codec for the file\n");
671 outSize
= fnIC
.fnICSendMessage(infoPtr
->hic
, ICM_DECOMPRESS_GET_FORMAT
,
672 (DWORD_PTR
)infoPtr
->inbih
, 0L);
674 infoPtr
->outbih
= Alloc(outSize
);
675 if (!infoPtr
->outbih
)
678 if (fnIC
.fnICSendMessage(infoPtr
->hic
, ICM_DECOMPRESS_GET_FORMAT
,
679 (DWORD_PTR
)infoPtr
->inbih
, (DWORD_PTR
)infoPtr
->outbih
) != ICERR_OK
)
681 WARN("Can't get output BIH\n");
685 infoPtr
->outdata
= Alloc(infoPtr
->outbih
->biSizeImage
);
686 if (!infoPtr
->outdata
)
689 if (fnIC
.fnICSendMessage(infoPtr
->hic
, ICM_DECOMPRESS_BEGIN
,
690 (DWORD_PTR
)infoPtr
->inbih
, (DWORD_PTR
)infoPtr
->outbih
) != ICERR_OK
) {
691 WARN("Can't begin decompression\n");
699 static BOOL
ANIMATE_OpenW(ANIMATE_INFO
*infoPtr
, HINSTANCE hInstance
, LPWSTR lpszName
)
703 ANIMATE_Free(infoPtr
);
707 TRACE("Closing avi!\n");
708 /* installer of thebat! v1.62 requires FALSE here */
709 return (infoPtr
->hMMio
!= 0);
713 hInstance
= (HINSTANCE
)GetWindowLongPtrW(infoPtr
->hwndSelf
, GWLP_HINSTANCE
);
715 TRACE("(%s)\n", debugstr_w(lpszName
));
717 if (!IS_INTRESOURCE(lpszName
))
719 if (!ANIMATE_LoadResW(infoPtr
, hInstance
, lpszName
))
721 TRACE("No AVI resource found!\n");
722 if (!ANIMATE_LoadFileW(infoPtr
, lpszName
))
724 WARN("No AVI file found!\n");
731 if (!ANIMATE_LoadResW(infoPtr
, hInstance
, lpszName
))
733 WARN("No AVI resource found!\n");
738 if (!ANIMATE_GetAviInfo(infoPtr
))
740 WARN("Can't get AVI information\n");
741 ANIMATE_Free(infoPtr
);
745 if (!ANIMATE_GetAviCodec(infoPtr
))
747 WARN("Can't get AVI Codec\n");
748 ANIMATE_Free(infoPtr
);
752 hdc
= GetDC(infoPtr
->hwndSelf
);
753 /* native looks at the top left pixel of the first frame here too. */
754 infoPtr
->hbrushBG
= (HBRUSH
)SendMessageW(infoPtr
->hwndNotify
, WM_CTLCOLORSTATIC
,
755 (WPARAM
)hdc
, (LPARAM
)infoPtr
->hwndSelf
);
756 ReleaseDC(infoPtr
->hwndSelf
, hdc
);
758 if (!(infoPtr
->dwStyle
& ACS_CENTER
))
759 SetWindowPos(infoPtr
->hwndSelf
, 0, 0, 0, infoPtr
->mah
.dwWidth
, infoPtr
->mah
.dwHeight
,
760 SWP_NOACTIVATE
| SWP_NOMOVE
| SWP_NOZORDER
);
762 if (infoPtr
->dwStyle
& ACS_AUTOPLAY
)
763 return ANIMATE_Play(infoPtr
, -1, 0, infoPtr
->mah
.dwTotalFrames
- 1);
769 static BOOL
ANIMATE_OpenA(ANIMATE_INFO
*infoPtr
, HINSTANCE hInstance
, LPSTR lpszName
)
775 if (IS_INTRESOURCE(lpszName
))
776 return ANIMATE_OpenW(infoPtr
, hInstance
, (LPWSTR
)lpszName
);
778 len
= MultiByteToWideChar(CP_ACP
, 0, lpszName
, -1, NULL
, 0);
779 lpwszName
= Alloc(len
* sizeof(WCHAR
));
780 if (!lpwszName
) return FALSE
;
781 MultiByteToWideChar(CP_ACP
, 0, lpszName
, -1, lpwszName
, len
);
783 result
= ANIMATE_OpenW(infoPtr
, hInstance
, lpwszName
);
789 static BOOL
ANIMATE_Stop(ANIMATE_INFO
*infoPtr
)
795 ANIMATE_DoStop(infoPtr
);
800 static BOOL
ANIMATE_Create(HWND hWnd
, const CREATESTRUCTW
*lpcs
)
802 static const WCHAR msvfw32W
[] = { 'm', 's', 'v', 'f', 'w', '3', '2', '.', 'd', 'l', 'l', 0 };
803 ANIMATE_INFO
*infoPtr
;
807 fnIC
.hModule
= LoadLibraryW(msvfw32W
);
808 if (!fnIC
.hModule
) return FALSE
;
810 fnIC
.fnICOpen
= (void*)GetProcAddress(fnIC
.hModule
, "ICOpen");
811 fnIC
.fnICClose
= (void*)GetProcAddress(fnIC
.hModule
, "ICClose");
812 fnIC
.fnICSendMessage
= (void*)GetProcAddress(fnIC
.hModule
, "ICSendMessage");
813 fnIC
.fnICDecompress
= (void*)GetProcAddress(fnIC
.hModule
, "ICDecompress");
816 /* allocate memory for info structure */
817 infoPtr
= Alloc(sizeof(ANIMATE_INFO
));
818 if (!infoPtr
) return FALSE
;
820 /* store crossref hWnd <-> info structure */
821 SetWindowLongPtrW(hWnd
, 0, (DWORD_PTR
)infoPtr
);
822 infoPtr
->hwndSelf
= hWnd
;
823 infoPtr
->hwndNotify
= lpcs
->hwndParent
;
824 infoPtr
->transparentColor
= ANIMATE_COLOR_NONE
;
825 infoPtr
->hbmPrevFrame
= 0;
826 infoPtr
->dwStyle
= lpcs
->style
;
828 TRACE("Animate style=0x%08x, parent=%p\n", infoPtr
->dwStyle
, infoPtr
->hwndNotify
);
830 InitializeCriticalSection(&infoPtr
->cs
);
831 infoPtr
->cs
.DebugInfo
->Spare
[0] = (DWORD_PTR
)(__FILE__
": ANIMATE_INFO*->cs");
837 static LRESULT
ANIMATE_Destroy(ANIMATE_INFO
*infoPtr
)
840 ANIMATE_Free(infoPtr
);
842 /* free animate info data */
843 SetWindowLongPtrW(infoPtr
->hwndSelf
, 0, 0);
845 infoPtr
->cs
.DebugInfo
->Spare
[0] = 0;
846 DeleteCriticalSection(&infoPtr
->cs
);
853 static BOOL
ANIMATE_EraseBackground(ANIMATE_INFO
const *infoPtr
, HDC hdc
)
858 hBrush
= (HBRUSH
)SendMessageW(infoPtr
->hwndNotify
, WM_CTLCOLORSTATIC
,
859 (WPARAM
)hdc
, (LPARAM
)infoPtr
->hwndSelf
);
860 GetClientRect(infoPtr
->hwndSelf
, &rect
);
861 FillRect(hdc
, &rect
, hBrush
? hBrush
: GetCurrentObject(hdc
, OBJ_BRUSH
));
867 static LRESULT
ANIMATE_StyleChanged(ANIMATE_INFO
*infoPtr
, WPARAM wStyleType
, const STYLESTRUCT
*lpss
)
869 TRACE("(styletype=%lx, styleOld=0x%08x, styleNew=0x%08x)\n",
870 wStyleType
, lpss
->styleOld
, lpss
->styleNew
);
872 if (wStyleType
!= GWL_STYLE
) return 0;
874 infoPtr
->dwStyle
= lpss
->styleNew
;
876 InvalidateRect(infoPtr
->hwndSelf
, NULL
, TRUE
);
881 static LRESULT WINAPI
ANIMATE_WindowProc(HWND hWnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
)
883 ANIMATE_INFO
*infoPtr
= (ANIMATE_INFO
*)GetWindowLongPtrW(hWnd
, 0);
885 TRACE("hwnd=%p msg=%x wparam=%lx lparam=%lx\n", hWnd
, uMsg
, wParam
, lParam
);
886 if (!infoPtr
&& (uMsg
!= WM_NCCREATE
))
887 return DefWindowProcW(hWnd
, uMsg
, wParam
, lParam
);
891 return ANIMATE_OpenA(infoPtr
, (HINSTANCE
)wParam
, (LPSTR
)lParam
);
894 return ANIMATE_OpenW(infoPtr
, (HINSTANCE
)wParam
, (LPWSTR
)lParam
);
897 return ANIMATE_Play(infoPtr
, (INT
)wParam
, LOWORD(lParam
), HIWORD(lParam
));
900 return ANIMATE_Stop(infoPtr
);
903 ANIMATE_Free(infoPtr
);
907 return ANIMATE_Create(hWnd
, (LPCREATESTRUCTW
)lParam
);
910 return HTTRANSPARENT
;
913 return ANIMATE_Destroy(infoPtr
);
916 return ANIMATE_EraseBackground(infoPtr
, (HDC
)wParam
);
918 case WM_STYLECHANGED
:
919 return ANIMATE_StyleChanged(infoPtr
, wParam
, (LPSTYLESTRUCT
)lParam
);
922 return ANIMATE_Timer(infoPtr
);
927 /* the animation has not decompressed
928 * (and displayed) the first frame yet, don't paint
930 if (!infoPtr
->hbmPrevFrame
)
932 /* default paint handling */
933 return DefWindowProcW(hWnd
, uMsg
, wParam
, lParam
);
938 EnterCriticalSection(&infoPtr
->cs
);
939 ANIMATE_PaintFrame(infoPtr
, (HDC
)wParam
);
940 LeaveCriticalSection(&infoPtr
->cs
);
945 HDC hDC
= BeginPaint(infoPtr
->hwndSelf
, &ps
);
947 EnterCriticalSection(&infoPtr
->cs
);
948 ANIMATE_PaintFrame(infoPtr
, hDC
);
949 LeaveCriticalSection(&infoPtr
->cs
);
951 EndPaint(infoPtr
->hwndSelf
, &ps
);
957 if (infoPtr
->dwStyle
& ACS_CENTER
)
958 InvalidateRect(infoPtr
->hwndSelf
, NULL
, TRUE
);
959 return DefWindowProcW(hWnd
, uMsg
, wParam
, lParam
);
962 if ((uMsg
>= WM_USER
) && (uMsg
< WM_APP
) && !COMCTL32_IsReflectedMessage(uMsg
))
963 ERR("unknown msg %04x wp=%08lx lp=%08lx\n", uMsg
, wParam
, lParam
);
965 return DefWindowProcW(hWnd
, uMsg
, wParam
, lParam
);
970 void ANIMATE_Register(void)
974 ZeroMemory(&wndClass
, sizeof(WNDCLASSW
));
975 wndClass
.style
= CS_GLOBALCLASS
| CS_DBLCLKS
;
976 wndClass
.lpfnWndProc
= ANIMATE_WindowProc
;
977 wndClass
.cbClsExtra
= 0;
978 wndClass
.cbWndExtra
= sizeof(ANIMATE_INFO
*);
979 wndClass
.hCursor
= LoadCursorW(0, (LPCWSTR
)IDC_ARROW
);
980 wndClass
.hbrBackground
= (HBRUSH
)(COLOR_BTNFACE
+ 1);
981 wndClass
.lpszClassName
= ANIMATE_CLASSW
;
983 RegisterClassW(&wndClass
);
987 void ANIMATE_Unregister(void)
989 UnregisterClassW(ANIMATE_CLASSW
, NULL
);