Click here to Skip to main content
15,891,529 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: C - error while passing parameters Pin
Tony Richards26-Dec-10 9:53
Tony Richards26-Dec-10 9:53 
GeneralRe: C - error while passing parameters Pin
Manfred Rudolf Bihy26-Dec-10 10:08
professionalManfred Rudolf Bihy26-Dec-10 10:08 
GeneralRe: C - error while passing parameters Pin
Chuck O'Toole26-Dec-10 15:39
Chuck O'Toole26-Dec-10 15:39 
GeneralRe: C - error while passing parameters Pin
Manfred Rudolf Bihy27-Dec-10 4:06
professionalManfred Rudolf Bihy27-Dec-10 4:06 
AnswerRe: C - error while passing parameters Pin
jadughar26-Dec-10 21:02
jadughar26-Dec-10 21:02 
QuestionIntegrating OpenCV with MFC in VC 6.0 SP 6 Pin
Vaclav_26-Dec-10 6:32
Vaclav_26-Dec-10 6:32 
AnswerRe: Integrating OpenCV with MFC in VC 6.0 SP 6 Pin
Tony Richards26-Dec-10 9:50
Tony Richards26-Dec-10 9:50 
QuestionHow can I draw an animation on a transparent window using Windows API? Pin
Asaf Pinhassi26-Dec-10 3:42
Asaf Pinhassi26-Dec-10 3:42 
I'm trying to draw an animation on a window with a transparent background using Windows API. The problem is that I can't delete the previous drawing from the window.

I set the following parameters:
InvalidateRect(m_hWnd, &sClientRect, TRUE);  // we set the bErase parameter as TRUE
paintParams.dwFlags = BPPF_ERASE; // erase window content while copying backbuffer
paintParams.pBlendFunction = &m_sBlendfunc; // copy source image to backbuffer


But it still doesn't work. The animation I wanted is moving the circles across the screen. What I get instead is artifacts of their motion because the window is not cleared before each draw.

See my full code below:
#include "DrawTest.h"

DrawTest* m_sDrawTest;

DrawTest::DrawTest()
{
 m_pAnimation = NULL;
 m_sDrawTest = NULL;
 m_nFrameindex = 0;
}

DrawTest::~DrawTest(void)
{
 if(m_pAnimation)
  delete m_pAnimation;
 m_pAnimation = NULL;
 if(m_sDrawTest)
  delete m_sDrawTest;
 m_sDrawTest = NULL;
}

int DrawTest::Init(AnimationManager* pAnimationManager,HINSTANCE hInstance,int nCmdShow)
{
 //listener
 m_sDrawTest = this;

 //get anemation (sequence of frames containing location and png's);
 m_pAnimation = pAnimationManager->GetAnimation(2);


 //set window class information
 WNDCLASSEX wcex;

    wcex.cbSize = sizeof(WNDCLASSEX);
    wcex.style          = CS_HREDRAW | CS_VREDRAW;
 wcex.lpfnWndProc    = WndDrawTestProc;
    wcex.cbClsExtra     = 0;
    wcex.cbWndExtra     = 0;
    wcex.hInstance      = hInstance;
    wcex.hIcon          = LoadIcon(hInstance, MAKEINTRESOURCE(IDI_APPLICATION));
    wcex.hCursor        = LoadCursor(NULL, IDC_ARROW);
    wcex.hbrBackground  = (HBRUSH)GetStockObject(HOLLOW_BRUSH);//configures the window to use transparrent brush
    wcex.lpszMenuName   = NULL;
    wcex.lpszClassName  = sWindowClass;
    wcex.hIconSm        = LoadIcon(wcex.hInstance, MAKEINTRESOURCE(IDI_APPLICATION));

    if (!RegisterClassEx(&wcex))
    {
        MessageBox(NULL,
            _T("Call to RegisterClassEx failed!"),
            _T("Win32 Guided Tour"),
            NULL);

        return 1;
    }

 m_hInst = hInstance; // Store instance handle in our global variable

 m_hWnd = CreateWindow(
        sWindowClass,
        sTitle,
  WS_POPUP,
        200, 200,
        1024, 600,
        NULL,
        NULL,
        hInstance,
        NULL
    );


 if (!m_hWnd)
    {
        MessageBox(NULL,
            _T("Call to CreateWindow failed!"),
            _T("Win32 Guided Tour"),
            NULL);

        return 1;
    }

 SetWindowPos(m_hWnd,   // handle to window
     HWND_TOPMOST,  // top z
     0,             // ignored
     0,             // ignored
     0,             // ignored
     0,             // ignored
     SWP_NOSIZE | SWP_NOMOVE);

 // The parameters to ShowWindow explained:
    // hWnd: the value returned from CreateWindow
    // nCmdShow: the fourth parameter from WinMain
    ShowWindow(m_hWnd,
        nCmdShow);
    UpdateWindow(m_hWnd);

   return 1;

}



// Called by an external timer. This is the application "Next Step" proc.
void DrawTest::TimeStep(){
 PostMessage(m_hWnd, WM_PAINT, 0, 0);
}


//  WndDrawTestProc replaces the default DefWindowProc
//
//  FUNCTION: WndDrawTestProc(HWND, UINT, WPARAM, LPARAM)
//
//  PURPOSE:  Processes messages for the main window.
//
//  WM_PAINT    - Paint the main window
//  WM_DESTROY  - post a quit message and return
//
//
LRESULT CALLBACK WndDrawTestProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
{
    switch (message)
    {

 case WM_ERASEBKGND:
  return DefWindowProc(hWnd, message, wParam, lParam);
 case WM_PAINT:

  // call onNextFrame to draw current frame.
  m_sDrawTest->OnNextFrame(hWnd); 

  // ensures that the window is in top most position
  SetWindowPos(hWnd,   // handle to window
     HWND_TOPMOST,  // top z
     0,             // ignored
     0,             // ignored
     0,             // ignored
     0,             // ignored
     SWP_NOSIZE | SWP_NOMOVE);

        break;
    case WM_DESTROY:
        PostQuitMessage(0);
        break;
    default:
        return DefWindowProc(hWnd, message, wParam, lParam);
        break;
    }

    return 0;
}



/* 
DrawTest::OnNextFrame
Called by WndDrawTestProc when receving WM_PAINT message 
Configures the drawing canvas and calles DrawTest::Draw(HDC hBBDC) to do the actual drawing
*/
void DrawTest::OnNextFrame(HWND hUILoopWnd)
{
 if(m_nFrameindex > m_pAnimation->GetNumOfFrames() - 1)
  return;
 // defines paint area
 RECT sClientRect;
 GetClientRect(hUILoopWnd, &sClientRect);
 InvalidateRect(m_hWnd, &sClientRect, TRUE);  // we set the bErase parameter as TRUE


 //blending structure 
 m_sBlendfunc.BlendOp= AC_SRC_OVER;
 m_sBlendfunc.BlendFlags = 0;
 m_sBlendfunc.SourceConstantAlpha = 255;
 m_sBlendfunc.AlphaFormat = AC_SRC_ALPHA;


 HDC hdc;
 PAINTSTRUCT ps;

 hdc = BeginPaint(hUILoopWnd, &ps);

 GetClientRect(hUILoopWnd, &sClientRect);
 BP_PAINTPARAMS paintParams =  { sizeof(BP_PAINTPARAMS) };
 paintParams.dwFlags = BPPF_ERASE; // erase window content while copying backbuffer
 paintParams.pBlendFunction = &m_sBlendfunc; // how to copy source image to backbuffer
 HDC hBBDC;
 HPAINTBUFFER hPBuffer;


 paintParams.cbSize = sizeof(paintParams);

 hPBuffer = BeginBufferedPaint(hdc, &sClientRect, BPBF_COMPATIBLEBITMAP, &paintParams, &hBBDC);

 //draw animation
 Draw(hBBDC);

 m_nFrameindex ++;


 EndBufferedPaint(hPBuffer, TRUE);
 EndPaint(hUILoopWnd, &ps);
}


/*
Draw
Paint the animation frame on the backbuffer
*/

void DrawTest::Draw(HDC hBBDC)
{ 
 HDC hdcScreen = GetDC(NULL);
 HDC hdcMem = CreateCompatibleDC(hdcScreen);

 bool test = false;  

 HGDIOBJ hbmpOld = SelectObject(hdcMem, m_pAnimation->m_pFramesArray[m_nFrameindex]->hBmp);
 HBITMAP ptemp = CreateCompatibleBitmap(hdcMem,m_pAnimation->m_pFramesArray[m_nFrameindex]->nWidth,
  m_pAnimation->m_pFramesArray[m_nFrameindex]->nHeight);

 DeleteObject(ptemp);

 test = AlphaBlend(hBBDC,m_pAnimation->m_pFramesArray[m_nFrameindex]->nPtX,m_pAnimation->m_pFramesArray[m_nFrameindex]->nPtY 
  ,m_pAnimation->m_pFramesArray[m_nFrameindex]->nWidth, m_pAnimation->m_pFramesArray[m_nFrameindex]->nHeight,
   hdcMem,0,0,m_pAnimation->m_pFramesArray[m_nFrameindex]->nWidth,m_pAnimation->m_pFramesArray[m_nFrameindex]->nHeight,m_sBlendfunc);

 DWORD  test10 = GetLastError();

 SelectObject(hdcMem, hbmpOld); //placing the old object back
 test = DeleteDC(hdcMem);  // after CreateCompatibleDC
 test = ReleaseDC(NULL, hdcScreen); // after GetDC
}

AnswerRe: How can I draw an animation on a transparent window using Windows API? Pin
jk chan26-Dec-10 18:48
jk chan26-Dec-10 18:48 
QuestionShockwave object questions - strange behaviour, very frustrating Pin
sgergo25-Dec-10 23:15
sgergo25-Dec-10 23:15 
Questionresizing a dialog Pin
Krauze25-Dec-10 13:57
Krauze25-Dec-10 13:57 
AnswerRe: resizing a dialog Pin
Richard MacCutchan25-Dec-10 23:10
mveRichard MacCutchan25-Dec-10 23:10 
AnswerRe: resizing a dialog Pin
Maximilien26-Dec-10 4:11
Maximilien26-Dec-10 4:11 
QuestionHow to print from a service? Pin
martinergb24-Dec-10 21:19
martinergb24-Dec-10 21:19 
AnswerRe: How to print from a service? Pin
Dr.Walt Fair, PE25-Dec-10 7:54
professionalDr.Walt Fair, PE25-Dec-10 7:54 
GeneralRe: How to print from a service? Pin
martinergb26-Dec-10 2:04
martinergb26-Dec-10 2:04 
GeneralRe: How to print from a service? Pin
Ralf.Bue26-Dec-10 4:50
Ralf.Bue26-Dec-10 4:50 
GeneralRe: How to print from a service? Pin
martinergb26-Dec-10 8:06
martinergb26-Dec-10 8:06 
GeneralRe: How to print from a service? Pin
Ralf.Bue30-Dec-10 8:22
Ralf.Bue30-Dec-10 8:22 
QuestionImage Flicker Pin
john563224-Dec-10 0:31
john563224-Dec-10 0:31 
GeneralRe: Image Flicker Pin
Luc Pattyn24-Dec-10 1:00
sitebuilderLuc Pattyn24-Dec-10 1:00 
AnswerRe: Image Flicker Pin
followait24-Dec-10 5:14
followait24-Dec-10 5:14 
AnswerRe: Image Flicker Pin
LunaticFringe24-Dec-10 7:10
LunaticFringe24-Dec-10 7:10 
AnswerRe: Image Flicker Pin
Stephen Hewitt25-Dec-10 1:11
Stephen Hewitt25-Dec-10 1:11 
AnswerRe: Image Flicker Pin
Rozis25-Dec-10 5:36
Rozis25-Dec-10 5:36 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.