오다기리 박의 알고리즘 노트

[핵심 API로 배우는 윈도우프로그래밍(강경우, 한빛아카데미)] 5장 11번 풀이 본문

WIN32 API

[핵심 API로 배우는 윈도우프로그래밍(강경우, 한빛아카데미)] 5장 11번 풀이

오다기리 박 2017. 11. 3. 21:35
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
#include <Windows.h>
#include<tchar.h>
#include<string.h>
#include<math.h>
#include"resource.h"
LRESULT CALLBACK WndProc(HWND hwnd, UINT iMsg, WPARAM wParam, LPARAM lParam);
 
HINSTANCE hInst;
 
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpszCmdLine, int nCmdShow)
{
    HWND hwnd;
    MSG msg;
    WNDCLASS WndClass;
    HACCEL hAcc;
    hInst = hInstance;
    WndClass.style = CS_HREDRAW | CS_VREDRAW;
    WndClass.lpfnWndProc = WndProc;
    WndClass.cbClsExtra = 0;
    WndClass.cbWndExtra = 0;
    WndClass.hInstance = hInstance;
    WndClass.hIcon = LoadIcon(NULL, IDI_APPLICATION);
    WndClass.hCursor = LoadCursor(NULL, IDC_ARROW);
    WndClass.hbrBackground = (HBRUSH)GetStockObject(WHITE_BRUSH);
    WndClass.lpszMenuName = NULL;
    WndClass.lpszClassName = _T("Window Class Name");
 
    RegisterClass(&WndClass);
 
    hwnd = CreateWindow(
        _T("Window Class Name"),
        _T("홍길동의 첫 번째 윈도우"),
        WS_OVERLAPPEDWINDOW,
        100,
        100,
        1000,
        1000,
        NULL,
        NULL,
        hInstance,
        NULL);
 
    ShowWindow(hwnd, nCmdShow);
    UpdateWindow(hwnd);
 
    while (GetMessage(&msg, NULL00))
    {
        TranslateMessage(&msg);
        DispatchMessage(&msg);
    }
    return (int)msg.wParam;
}
void Animation(int xPos, int yPos, HDC hdc, HWND hwnd)
{
    HDC mem1dc, mem2dc;
    HBITMAP RunBit[10], Mask[10], hBit, old1Bit, old2Bit;
    static int count;
    int i;
 
    count++;
    count = count % 10;
    hBit = LoadBitmap(hInst, MAKEINTRESOURCE(IDB_BITMAP5));                //배경로드
    for (i = 0; i < 10; i++)
        RunBit[i] = LoadBitmap(hInst, MAKEINTRESOURCE(IDB_BITMAP8 + i));    //달리는이미지로드
    for (i = 0; i < 10; i++)
        Mask[i] = LoadBitmap(hInst, MAKEINTRESOURCE(IDB_BITMAP18 + i));        //달리는마스크로드
    mem1dc = CreateCompatibleDC(hdc);
    mem2dc = CreateCompatibleDC(hdc);
 
    old2Bit = (HBITMAP)SelectObject(mem2dc, hBit);                //배경
    BitBlt(hdc, 00819614, mem2dc, 00, SRCCOPY);
 
    old1Bit = (HBITMAP)SelectObject(mem1dc, Mask[count]);        //마스크
    BitBlt(mem1dc, 00180240, mem1dc, 00, SRCAND);
 
    SelectObject(mem2dc, RunBit[count]);                        //원본
    BitBlt(mem1dc, 00180240, mem2dc, 00, SRCPAINT);
 
    BitBlt(hdc, xPos, 400180240, mem1dc, 00, SRCAND);
    BitBlt(hdc, xPos, 400180240, mem2dc, 00, SRCPAINT);
 
    SelectObject(mem1dc, old1Bit);
    SelectObject(mem2dc, old2Bit);
    for (i = 0; i < 10; i++)
        DeleteObject(Mask[i]);
    for (i = 0; i < 10; i++)
        DeleteObject(RunBit[i]);
    DeleteDC(mem1dc);
    DeleteDC(mem2dc);
}
LRESULT CALLBACK WndProc(HWND hwnd, UINT iMsg, WPARAM wParam, LPARAM lParam)
{
    HDC hdc;
    PAINTSTRUCT ps;
    static int xPos;
    switch (iMsg)
    {
    case WM_CREATE:
        xPos = -10;
        SetTimer(hwnd, 1100NULL);
        break;
    case WM_TIMER:
        xPos += 5;
        if (xPos > 819) xPos = -10;
        InvalidateRgn(hwnd, NULLtrue);
        break;
    case WM_PAINT:
        hdc = BeginPaint(hwnd, &ps);
        Animation(xPos, 300, hdc, hwnd);
        EndPaint(hwnd, &ps);
        break;
    case WM_DESTROY:
        KillTimer(hwnd, 1);
        PostQuitMessage(0);
        break;
 
    }
    return DefWindowProc(hwnd, iMsg, wParam, lParam);
}
cs