MFC PreTranslateMessage 관련 질문

ahffkqowo의 이미지

BOOL CMazeDlg::PreTranslateMessage(MSG* pMsg)
{
// TODO: 여기에 특수화된 코드를 추가 및/또는 기본 클래스를 호출합니다.
row_x = 12;
col_y = 13;

switch (pMsg->message) {
case WM_KEYDOWN:
if (pMsg->wParam == VK_UP) {
if (map_col[row_x][col_y - 1] == 0) {
map_col[row_x][col_y] = 0;
map_col[row_x][col_y - 1] = 7;

InvalidateRect(NULL, FALSE);
OnPaint();
return FALSE;
}
//return TRUE;
}
else if (pMsg->wParam == VK_DOWN) {
if (map_col[row_x][col_y + 1] == 0) {
map_col[row_x][col_y] = 0;
map_col[row_x][col_y + 1] = 7;
InvalidateRect(NULL, FALSE);
OnPaint();
return FALSE;
}
//return TRUE;
}
else if (pMsg->wParam == VK_LEFT) {
if (map_col[row_x - 1][col_y] == 0) {
map_col[row_x][col_y] = 0;
map_col[row_x - 1][col_y] = 7;

InvalidateRect(NULL, FALSE);
OnPaint();
return FALSE;
}
//return TRUE;
}
else if (pMsg->wParam == VK_RIGHT) {
if (map_col[row_x + 1][col_y] == 0) {
map_col[row_x][col_y] = 0;
map_col[row_x + 1][col_y] = 7;

InvalidateRect(NULL, FALSE);
OnPaint();
return FALSE;
}
//return TRUE;
}
else if (pMsg->wParam == VK_ESCAPE) return TRUE;
else if (pMsg->wParam == VK_RETURN) return TRUE;

}
return CDialog::PreTranslateMessage(pMsg);

}

=====================================================================
방향키 입력을 받아서 미로의 캐릭터를 움직여주려고합니다.
이렇게 작성은 했는데 처음 한칸은 움직이지만 두칸째는 이동하지 않는데
계속 입력할수있게 하려면 어떻게해야할까요?

shint의 이미지

- 배열의 범위 확인
- InvalidateRect()를 호출하면. OnPaint()가 호출됩니다.
- 마지막 else if() 에서 {} 를 확인해보시기 바랍니다.
- PreTranslateMessage() 에 리턴값을 확인해보시기 바랍니다.
return CDialog:: PreTranslateMessage(pMsg);

CWnd::PreTranslateMessage()
https://msdn.microsoft.com/ko-kr/library/kkbhxcs2.aspx
클래스에 의해 사용 되는 CWinApp 창 메시지를 디스패치하기 전에 변환 하는 TranslateMessage 및 DispatchMessage Windows 기능.

반환값 - 메시지 변환 및 발송 되어야 하는 경우에 0이 아닌. 메시지가 변환 되지 및 발송 되어야 하는 경우 0입니다.

CWinApp::PreTranslateMessage
https://msdn.microsoft.com/ko-kr/library/cw1sb70c.aspx
Windows 함수를 디스패치하기 전에 창 메시지를 필터링 하려면이 함수를 재정의 합니다. TranslateMessage 및 DispatchMessage 호출 하 여 기본 구현은 액셀러레이터 키 변환 수행의 CWinApp::PreTranslateMessage 멤버 함수를 재정의 된 버전에서.

반환값 - 메시지를 완벽 하 게 처리 된 경우 0이 아닌 PreTranslateMessage 더 이상 처리할 수 없습니다. 일반적인 방법으로 메시지를 처리 해야 하는 경우 0입니다.

//GetClientRect()
//https://msdn.microsoft.com/ko-kr/library/windows/desktop/ms633503(v=vs.85).aspx

//CWnd::GetClientRect()
//https://msdn.microsoft.com/ko-kr/library/hkzy4k3x.aspx

BOOL WINAPI GetClientRect(
_In_ HWND hWnd,
_Out_ LPRECT lpRect
);

//MFC 에서 사용 : CRect 를 사용해도 됨.
RECT rt;
GetClientRect(&rt);
InvalidateRect(&rt, TRUE);

//WIN32 API 에서 사용
RECT rt;
::GetClientRect(hWnd, &rt);
InvalidateRect(&rt, TRUE);

깜빡임이 발생한다면. 메모리DC를 하나 더 만들어서. 더블버퍼링을 적용해야 함.
http://search.naver.com/search.naver?ie=utf8&sm=stp_hty&where=se&query=%EB%8D%94%EB%B8%94%EB%B2%84%ED%8D%BC%EB%A7%81

'\0' == 0x00 == NULL 3가지는 같은 내용임.
memset(map_col, '\0', sizeof(map_col));
memset(map_col, 0x00, sizeof(map_col));
memset(map_col, NULL, sizeof(map_col)); --- 이건 문법상으로 안될지도 모름.

숫자 0 과 16진수 0x00 은 다름. 0 != 0x00

이 값이 고정되어 있는것이 맞는지 확인해야 함.
row_x = 12;
col_y = 13;

BOOL CMazeDlg::PreTranslateMessage(MSG* pMsg) 
{
    // TODO: 여기에 특수화된 코드를 추가 및/또는 기본 클래스를 호출합니다.
    row_x = 12;
    col_y = 13;
 
    switch (pMsg->message) 
    {
        case WM_KEYDOWN:
       	if (pMsg->wParam == VK_UP) 
        {
            if (map_col[row_x][col_y - 1] == 0) 
            {
                map_col[row_x][col_y] = 0;
                map_col[row_x][col_y - 1] = 7;
                InvalidateRect(NULL, FALSE);
            }
        }
        else if (pMsg->wParam == VK_DOWN) 
        {
            if (map_col[row_x][col_y + 1] == 0) 
            {
                map_col[row_x][col_y] = 0;
                map_col[row_x][col_y + 1] = 7;
                InvalidateRect(NULL, FALSE);
            }
        }
        else if (pMsg->wParam == VK_LEFT) 
        {
            if (map_col[row_x - 1][col_y] == 0) 
            {
                map_col[row_x][col_y] = 0;
                map_col[row_x - 1][col_y] = 7;
                InvalidateRect(NULL, FALSE);
            }
        }
        else if (pMsg->wParam == VK_RIGHT) 
        {
            if (map_col[row_x + 1][col_y] == 0) 
            {
                map_col[row_x][col_y] = 0;
                map_col[row_x + 1][col_y] = 7;
                InvalidateRect(NULL, FALSE);
            }
        }
        else if (pMsg->wParam == VK_ESCAPE)
       	{
       	}
        else if (pMsg->wParam == VK_RETURN)
       	{
       	}
       	break;
       	default:
       	break;
    }
 
    return CDialog:: PreTranslateMessage(pMsg);
}

----------------------------------------------------------------------------
젊음'은 모든것을 가능하게 만든다.

매일 1억명이 사용하는 프로그램을 함께 만들어보고 싶습니다.
정규 근로 시간을 지키는. 야근 없는 회사와 거래합니다.

각 분야별. 좋은 책'이나 사이트' 블로그' 링크 소개 받습니다. shintx@naver.com

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.