2018-04-21 21:24:46 +08:00
|
|
|
|
#include "..\e2dbase.h"
|
|
|
|
|
|
#include "..\e2dmanager.h"
|
2018-01-30 16:45:38 +08:00
|
|
|
|
#include <imm.h>
|
|
|
|
|
|
#pragma comment (lib ,"imm32.lib")
|
|
|
|
|
|
|
|
|
|
|
|
// <20><><EFBFBD>ھ<EFBFBD><DABE><EFBFBD>
|
|
|
|
|
|
static HWND s_HWnd = nullptr;
|
|
|
|
|
|
|
|
|
|
|
|
|
2018-04-13 00:39:27 +08:00
|
|
|
|
bool e2d::Window::__init()
|
2018-01-30 16:45:38 +08:00
|
|
|
|
{
|
|
|
|
|
|
// ע<>ᴰ<EFBFBD><E1B4B0><EFBFBD><EFBFBD>
|
2018-03-01 00:19:09 +08:00
|
|
|
|
WNDCLASSEX wcex = { 0 };
|
|
|
|
|
|
wcex.cbSize = sizeof(WNDCLASSEX);
|
2018-05-07 17:03:59 +08:00
|
|
|
|
wcex.lpszClassName = L"Easy2DApp";
|
|
|
|
|
|
wcex.hIcon = NULL;
|
2018-01-30 16:45:38 +08:00
|
|
|
|
wcex.style = CS_HREDRAW | CS_VREDRAW;
|
2018-02-07 16:37:12 +08:00
|
|
|
|
wcex.lpfnWndProc = Window::WndProc;
|
2018-01-30 16:45:38 +08:00
|
|
|
|
wcex.cbClsExtra = 0;
|
|
|
|
|
|
wcex.cbWndExtra = sizeof(LONG_PTR);
|
|
|
|
|
|
wcex.hInstance = HINST_THISCOMPONENT;
|
|
|
|
|
|
wcex.hbrBackground = NULL;
|
|
|
|
|
|
wcex.lpszMenuName = NULL;
|
2018-05-07 17:03:59 +08:00
|
|
|
|
wcex.hCursor = ::LoadCursor(NULL, IDC_ARROW);
|
2018-01-30 16:45:38 +08:00
|
|
|
|
|
|
|
|
|
|
RegisterClassEx(&wcex);
|
|
|
|
|
|
|
|
|
|
|
|
// <20><>Ϊ CreateWindow <20><><EFBFBD><EFBFBD>ʹ<EFBFBD>õ<EFBFBD><C3B5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ش<EFBFBD>С<EFBFBD><D0A1><EFBFBD><EFBFBD>ȡϵͳ<CFB5><CDB3> DPI <20><>ʹ<EFBFBD><CAB9>
|
|
|
|
|
|
// <20><>Ӧ<EFBFBD><D3A6><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
2018-04-21 23:09:59 +08:00
|
|
|
|
float dpiX = Renderer::getDpiScaleX();
|
|
|
|
|
|
float dpiY = Renderer::getDpiScaleY();
|
2018-01-30 16:45:38 +08:00
|
|
|
|
|
2018-05-05 22:58:35 +08:00
|
|
|
|
int nWidth = static_cast<int>(ceil(640 * dpiX / 96.f));
|
|
|
|
|
|
int nHeight = static_cast<int>(ceil(480 * dpiY / 96.f));
|
2018-01-30 16:45:38 +08:00
|
|
|
|
|
2018-04-13 00:39:27 +08:00
|
|
|
|
// <20><><EFBFBD>㴰<EFBFBD>ڴ<EFBFBD>С
|
2018-04-27 00:16:14 +08:00
|
|
|
|
DWORD dwStyle = WS_OVERLAPPEDWINDOW &~ WS_MAXIMIZEBOX &~ WS_THICKFRAME;
|
2018-04-13 00:39:27 +08:00
|
|
|
|
RECT wr = { 0, 0, static_cast<LONG>(nWidth), static_cast<LONG>(nHeight) };
|
|
|
|
|
|
::AdjustWindowRectEx(&wr, dwStyle, FALSE, NULL);
|
|
|
|
|
|
// <20><>ȡ<EFBFBD>µĿ<C2B5><C4BF><EFBFBD>
|
2018-05-05 22:58:35 +08:00
|
|
|
|
nWidth = static_cast<int>(wr.right - wr.left);
|
|
|
|
|
|
nHeight = static_cast<int>(wr.bottom - wr.top);
|
|
|
|
|
|
|
|
|
|
|
|
// <20><>ȡ<EFBFBD><C8A1>Ļ<EFBFBD>ֱ<EFBFBD><D6B1><EFBFBD>
|
|
|
|
|
|
int screenWidth = ::GetSystemMetrics(SM_CXSCREEN);
|
|
|
|
|
|
int screenHeight = ::GetSystemMetrics(SM_CYSCREEN);
|
2018-04-13 00:39:27 +08:00
|
|
|
|
|
2018-01-30 16:45:38 +08:00
|
|
|
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
2018-04-13 00:39:27 +08:00
|
|
|
|
s_HWnd = ::CreateWindowEx(
|
|
|
|
|
|
NULL,
|
2018-01-30 16:45:38 +08:00
|
|
|
|
L"Easy2DApp",
|
2018-04-13 00:39:27 +08:00
|
|
|
|
L"Easy2D Game",
|
|
|
|
|
|
dwStyle,
|
|
|
|
|
|
(screenWidth - nWidth) / 2, (screenHeight - nHeight) / 2,
|
|
|
|
|
|
nWidth, nHeight,
|
2018-01-30 16:45:38 +08:00
|
|
|
|
NULL,
|
|
|
|
|
|
NULL,
|
|
|
|
|
|
HINST_THISCOMPONENT,
|
|
|
|
|
|
NULL
|
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
HRESULT hr = s_HWnd ? S_OK : E_FAIL;
|
|
|
|
|
|
|
|
|
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
|
|
{
|
|
|
|
|
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>뷨
|
2018-02-07 16:37:12 +08:00
|
|
|
|
Window::setTypewritingEnable(false);
|
2018-05-03 22:21:01 +08:00
|
|
|
|
// <20><><EFBFBD>ÿ<EFBFBD><C3BF><EFBFBD>̨<EFBFBD>رհ<D8B1>ť
|
|
|
|
|
|
HWND consoleHWnd = ::GetConsoleWindow();
|
|
|
|
|
|
if (consoleHWnd)
|
2018-01-30 16:45:38 +08:00
|
|
|
|
{
|
2018-05-03 22:21:01 +08:00
|
|
|
|
HMENU hmenu = ::GetSystemMenu(consoleHWnd, FALSE);
|
2018-01-30 16:45:38 +08:00
|
|
|
|
::RemoveMenu(hmenu, SC_CLOSE, MF_BYCOMMAND);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
2018-04-13 00:39:27 +08:00
|
|
|
|
::UnregisterClass(L"Easy2DApp", HINST_THISCOMPONENT);
|
2018-01-30 16:45:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (FAILED(hr))
|
|
|
|
|
|
{
|
2018-04-13 00:39:27 +08:00
|
|
|
|
::MessageBox(nullptr, L"Create Window Failed!", L"Error", MB_OK);
|
2018-01-30 16:45:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return SUCCEEDED(hr);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-02-07 16:37:12 +08:00
|
|
|
|
void e2d::Window::__uninit()
|
2018-01-30 16:45:38 +08:00
|
|
|
|
{
|
2018-02-04 21:24:27 +08:00
|
|
|
|
// <20>رտ<D8B1><D5BF><EFBFBD>̨
|
2018-01-30 16:45:38 +08:00
|
|
|
|
if (::GetConsoleWindow())
|
|
|
|
|
|
{
|
|
|
|
|
|
::FreeConsole();
|
|
|
|
|
|
}
|
2018-02-04 21:24:27 +08:00
|
|
|
|
// <20>رմ<D8B1><D5B4><EFBFBD>
|
2018-04-13 00:39:27 +08:00
|
|
|
|
if (s_HWnd)
|
|
|
|
|
|
{
|
|
|
|
|
|
::DestroyWindow(s_HWnd);
|
|
|
|
|
|
s_HWnd = nullptr;
|
|
|
|
|
|
}
|
2018-01-30 16:45:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-02-07 16:37:12 +08:00
|
|
|
|
void e2d::Window::__poll()
|
2018-01-30 16:45:38 +08:00
|
|
|
|
{
|
|
|
|
|
|
static MSG msg;
|
|
|
|
|
|
|
|
|
|
|
|
while (::PeekMessage(&msg, NULL, 0, 0, PM_REMOVE))
|
|
|
|
|
|
{
|
|
|
|
|
|
::TranslateMessage(&msg);
|
|
|
|
|
|
::DispatchMessage(&msg);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-02-27 21:07:43 +08:00
|
|
|
|
double e2d::Window::getWidth()
|
2018-01-30 16:45:38 +08:00
|
|
|
|
{
|
2018-04-13 00:39:27 +08:00
|
|
|
|
if (s_HWnd)
|
|
|
|
|
|
{
|
|
|
|
|
|
// <20><>ȡ<EFBFBD>ͻ<EFBFBD><CDBB><EFBFBD><EFBFBD><EFBFBD>С
|
|
|
|
|
|
tagRECT rcClient;
|
|
|
|
|
|
::GetClientRect(s_HWnd, &rcClient);
|
|
|
|
|
|
return rcClient.right - rcClient.left;
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0;
|
2018-01-30 16:45:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-02-27 21:07:43 +08:00
|
|
|
|
double e2d::Window::getHeight()
|
2018-01-30 16:45:38 +08:00
|
|
|
|
{
|
2018-04-13 00:39:27 +08:00
|
|
|
|
if (s_HWnd)
|
|
|
|
|
|
{
|
|
|
|
|
|
// <20><>ȡ<EFBFBD>ͻ<EFBFBD><CDBB><EFBFBD><EFBFBD><EFBFBD>С
|
|
|
|
|
|
tagRECT rcClient;
|
|
|
|
|
|
::GetClientRect(s_HWnd, &rcClient);
|
|
|
|
|
|
return rcClient.bottom - rcClient.top;
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0;
|
2018-01-30 16:45:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-02-07 16:37:12 +08:00
|
|
|
|
e2d::Size e2d::Window::getSize()
|
2018-01-30 16:45:38 +08:00
|
|
|
|
{
|
2018-04-13 00:39:27 +08:00
|
|
|
|
if (s_HWnd)
|
|
|
|
|
|
{
|
|
|
|
|
|
// <20><>ȡ<EFBFBD>ͻ<EFBFBD><CDBB><EFBFBD><EFBFBD><EFBFBD>С
|
|
|
|
|
|
tagRECT rcClient;
|
|
|
|
|
|
::GetClientRect(s_HWnd, &rcClient);
|
|
|
|
|
|
return Size(rcClient.right - rcClient.left, rcClient.bottom - rcClient.top);
|
|
|
|
|
|
}
|
|
|
|
|
|
return Size();
|
2018-01-30 16:45:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-02-07 16:37:12 +08:00
|
|
|
|
HWND e2d::Window::getHWnd()
|
2018-01-30 16:45:38 +08:00
|
|
|
|
{
|
|
|
|
|
|
return s_HWnd;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-05-05 22:58:35 +08:00
|
|
|
|
void e2d::Window::setSize(int width, int height)
|
2018-01-30 16:45:38 +08:00
|
|
|
|
{
|
2018-04-13 00:39:27 +08:00
|
|
|
|
// <20><><EFBFBD>㴰<EFBFBD>ڴ<EFBFBD>С
|
2018-05-05 22:58:35 +08:00
|
|
|
|
DWORD dwStyle = WS_OVERLAPPEDWINDOW &~ WS_MAXIMIZEBOX &~ WS_THICKFRAME;
|
2018-04-13 00:39:27 +08:00
|
|
|
|
RECT wr = { 0, 0, static_cast<LONG>(width), static_cast<LONG>(height) };
|
|
|
|
|
|
::AdjustWindowRectEx(&wr, dwStyle, FALSE, NULL);
|
|
|
|
|
|
// <20><>ȡ<EFBFBD>µĿ<C2B5><C4BF><EFBFBD>
|
2018-05-05 22:58:35 +08:00
|
|
|
|
width = static_cast<int>(wr.right - wr.left);
|
|
|
|
|
|
height = static_cast<int>(wr.bottom - wr.top);
|
2018-01-30 16:45:38 +08:00
|
|
|
|
// <20><>ȡ<EFBFBD><C8A1>Ļ<EFBFBD>ֱ<EFBFBD><D6B1><EFBFBD>
|
|
|
|
|
|
int screenWidth = ::GetSystemMetrics(SM_CXSCREEN);
|
|
|
|
|
|
int screenHeight = ::GetSystemMetrics(SM_CYSCREEN);
|
2018-05-05 22:58:35 +08:00
|
|
|
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ĵ<EFBFBD><C4B4>ڴ<EFBFBD>С<EFBFBD>ȷֱ<C8B7><D6B1>ʴ<EFBFBD>ʱ<EFBFBD><CAB1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
|
WARN_IF(screenWidth < width || screenHeight < height, "The window is larger than screen!");
|
|
|
|
|
|
// ȡ<><C8A1>Сֵ
|
|
|
|
|
|
width = min(width, screenWidth);
|
|
|
|
|
|
height = min(height, screenHeight);
|
2018-01-30 16:45:38 +08:00
|
|
|
|
// <20>Ĵ<DEB8><C4B4>ڴ<EFBFBD>С<EFBFBD><D0A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ô<EFBFBD><C3B4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ļ<EFBFBD><C4BB><EFBFBD><EFBFBD>
|
|
|
|
|
|
::MoveWindow(s_HWnd, (screenWidth - width) / 2, (screenHeight - height) / 2, width, height, TRUE);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-05-07 15:48:06 +08:00
|
|
|
|
void e2d::Window::setTitle(const String& title)
|
2018-01-30 16:45:38 +08:00
|
|
|
|
{
|
|
|
|
|
|
// <20><><EFBFBD>ô<EFBFBD><C3B4>ڱ<EFBFBD><DAB1><EFBFBD>
|
2018-02-01 09:38:25 +08:00
|
|
|
|
::SetWindowText(s_HWnd, title);
|
2018-01-30 16:45:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-05-07 15:48:06 +08:00
|
|
|
|
void e2d::Window::setIcon(int iconID)
|
2018-04-13 00:39:27 +08:00
|
|
|
|
{
|
|
|
|
|
|
HINSTANCE hInstance = ::GetModuleHandle(NULL);
|
2018-05-07 15:48:06 +08:00
|
|
|
|
HICON hIcon = (HICON)::LoadImage(hInstance, MAKEINTRESOURCE(iconID), IMAGE_ICON, 0, 0, LR_DEFAULTCOLOR | LR_CREATEDIBSECTION | LR_DEFAULTSIZE);
|
2018-04-13 00:39:27 +08:00
|
|
|
|
// <20><><EFBFBD>ô<EFBFBD><C3B4>ڵ<EFBFBD>ͼ<EFBFBD><CDBC>
|
|
|
|
|
|
::SendMessage(s_HWnd, WM_SETICON, ICON_BIG, (LPARAM)hIcon);
|
|
|
|
|
|
::SendMessage(s_HWnd, WM_SETICON, ICON_SMALL, (LPARAM)hIcon);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-05-07 17:03:59 +08:00
|
|
|
|
void e2d::Window::setCursor(Cursor cursor)
|
|
|
|
|
|
{
|
|
|
|
|
|
LPCWSTR pCursorName = NULL;
|
|
|
|
|
|
switch (cursor)
|
|
|
|
|
|
{
|
|
|
|
|
|
case Cursor::NORMAL:
|
|
|
|
|
|
pCursorName = IDC_ARROW;
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case Cursor::HAND:
|
|
|
|
|
|
pCursorName = IDC_HAND;
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case Cursor::NO:
|
|
|
|
|
|
pCursorName = IDC_NO;
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case Cursor::WAIT:
|
|
|
|
|
|
pCursorName = IDC_WAIT;
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case Cursor::ARROW_WAIT:
|
|
|
|
|
|
pCursorName = IDC_APPSTARTING;
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
|
break;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
HCURSOR hCursor = ::LoadCursor(NULL, pCursorName);
|
|
|
|
|
|
::SetCursor(hCursor);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-02-07 16:37:12 +08:00
|
|
|
|
e2d::String e2d::Window::getTitle()
|
2018-01-30 16:45:38 +08:00
|
|
|
|
{
|
|
|
|
|
|
wchar_t wszTitle[MAX_PATH] = { 0 };
|
|
|
|
|
|
::GetWindowText(s_HWnd, wszTitle, MAX_PATH);
|
|
|
|
|
|
return wszTitle;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-05-03 22:21:01 +08:00
|
|
|
|
void e2d::Window::showConsole(bool show)
|
2018-01-30 16:45:38 +08:00
|
|
|
|
{
|
|
|
|
|
|
// <20><><EFBFBD><EFBFBD><EFBFBD>Ѵ<EFBFBD><D1B4>ڵĿ<DAB5><C4BF><EFBFBD>̨<EFBFBD><CCA8><EFBFBD><EFBFBD>
|
|
|
|
|
|
HWND hwnd = ::GetConsoleWindow();
|
|
|
|
|
|
// <20>رտ<D8B1><D5BF><EFBFBD>̨
|
|
|
|
|
|
if (show)
|
|
|
|
|
|
{
|
|
|
|
|
|
if (hwnd)
|
|
|
|
|
|
{
|
|
|
|
|
|
::ShowWindow(hwnd, SW_SHOWNORMAL);
|
|
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
|
|
|
|
|
// <20><>ʾһ<CABE><D2BB><EFBFBD>¿<EFBFBD><C2BF><EFBFBD>̨
|
|
|
|
|
|
if (::AllocConsole())
|
|
|
|
|
|
{
|
|
|
|
|
|
hwnd = ::GetConsoleWindow();
|
|
|
|
|
|
// <20>ض<EFBFBD><D8B6><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
|
FILE * stdoutStream, * stdinStream, * stderrStream;
|
|
|
|
|
|
freopen_s(&stdoutStream, "conout$", "w+t", stdout);
|
|
|
|
|
|
freopen_s(&stdinStream, "conin$", "r+t", stdin);
|
2018-02-01 22:07:44 +08:00
|
|
|
|
freopen_s(&stderrStream, "conout$", "w+t", stderr);
|
2018-01-30 16:45:38 +08:00
|
|
|
|
// <20><><EFBFBD>ÿ<EFBFBD><C3BF><EFBFBD>̨<EFBFBD>رհ<D8B1>ť
|
|
|
|
|
|
HMENU hmenu = ::GetSystemMenu(hwnd, FALSE);
|
|
|
|
|
|
::RemoveMenu(hmenu, SC_CLOSE, MF_BYCOMMAND);
|
|
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
|
|
|
|
|
MessageBox(nullptr, L"Alloc Console Failed!", L"Error", MB_OK);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
|
|
|
|
|
if (hwnd)
|
|
|
|
|
|
{
|
|
|
|
|
|
::ShowWindow(hwnd, SW_HIDE);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-05-07 15:48:06 +08:00
|
|
|
|
void e2d::Window::setTypewritingEnable(bool enable)
|
2018-01-30 16:45:38 +08:00
|
|
|
|
{
|
|
|
|
|
|
static HIMC hImc = nullptr;
|
|
|
|
|
|
|
2018-05-07 15:48:06 +08:00
|
|
|
|
if (enable)
|
2018-01-30 16:45:38 +08:00
|
|
|
|
{
|
|
|
|
|
|
if (hImc != nullptr)
|
|
|
|
|
|
{
|
2018-02-07 16:37:12 +08:00
|
|
|
|
::ImmAssociateContext(Window::getHWnd(), hImc);
|
2018-01-30 16:45:38 +08:00
|
|
|
|
hImc = nullptr;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
|
|
|
|
|
if (hImc == nullptr)
|
|
|
|
|
|
{
|
2018-02-07 16:37:12 +08:00
|
|
|
|
hImc = ::ImmAssociateContext(Window::getHWnd(), nullptr);
|
2018-01-30 16:45:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2018-02-07 16:37:12 +08:00
|
|
|
|
LRESULT e2d::Window::WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
|
2018-01-30 16:45:38 +08:00
|
|
|
|
{
|
|
|
|
|
|
LRESULT result = 0;
|
2018-05-03 22:21:01 +08:00
|
|
|
|
bool hasHandled = false;
|
2018-01-30 16:45:38 +08:00
|
|
|
|
|
|
|
|
|
|
switch (message)
|
|
|
|
|
|
{
|
2018-05-03 22:21:01 +08:00
|
|
|
|
|
2018-01-30 16:45:38 +08:00
|
|
|
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ڴ<EFBFBD>С<EFBFBD>仯<EFBFBD><E4BBAF>Ϣ
|
|
|
|
|
|
case WM_SIZE:
|
|
|
|
|
|
{
|
|
|
|
|
|
UINT width = LOWORD(lParam);
|
|
|
|
|
|
UINT height = HIWORD(lParam);
|
|
|
|
|
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>յ<EFBFBD>һ<EFBFBD><D2BB> WM_SIZE <20><>Ϣ<EFBFBD><CFA2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ⱦ
|
|
|
|
|
|
// Ŀ<><C4BF><EFBFBD>ʵ<EFBFBD><CAB5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ܻ<EFBFBD><DCBB><EFBFBD><EFBFBD><EFBFBD>ʧ<EFBFBD>ܣ<EFBFBD><DCA3><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ժ<EFBFBD><D4BA><EFBFBD><EFBFBD>п<EFBFBD><D0BF>ܵ<EFBFBD>
|
|
|
|
|
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ<EFBFBD><CEAA><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>һ<EFBFBD>ε<EFBFBD><CEB5><EFBFBD> EndDraw ʱ<><CAB1><EFBFBD><EFBFBD>
|
2018-04-17 01:11:56 +08:00
|
|
|
|
auto pRT = Renderer::getRenderTarget();
|
|
|
|
|
|
if (pRT) pRT->Resize(D2D1::SizeU(width, height));
|
2018-01-30 16:45:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
// <20><><EFBFBD><EFBFBD><EFBFBD>ֱ<EFBFBD><D6B1>ʱ仯<CAB1><E4BBAF>Ϣ
|
|
|
|
|
|
case WM_DISPLAYCHANGE:
|
|
|
|
|
|
{
|
|
|
|
|
|
// <20>ػ<EFBFBD><D8BB>ͻ<EFBFBD><CDBB><EFBFBD>
|
|
|
|
|
|
InvalidateRect(hWnd, NULL, FALSE);
|
|
|
|
|
|
}
|
|
|
|
|
|
result = 0;
|
2018-05-03 22:21:01 +08:00
|
|
|
|
hasHandled = true;
|
2018-01-30 16:45:38 +08:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
// <20>ػ洰<D8BB><E6B4B0>
|
|
|
|
|
|
case WM_PAINT:
|
|
|
|
|
|
{
|
2018-02-07 16:37:12 +08:00
|
|
|
|
e2d::Renderer::__render();
|
2018-01-30 16:45:38 +08:00
|
|
|
|
ValidateRect(hWnd, NULL);
|
|
|
|
|
|
}
|
|
|
|
|
|
result = 0;
|
2018-05-03 22:21:01 +08:00
|
|
|
|
hasHandled = true;
|
2018-01-30 16:45:38 +08:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
// <20><><EFBFBD>ڹر<DAB9><D8B1><EFBFBD>Ϣ
|
|
|
|
|
|
case WM_CLOSE:
|
|
|
|
|
|
{
|
2018-02-07 16:37:12 +08:00
|
|
|
|
e2d::Scene * pCurrentScene = e2d::SceneManager::getCurrentScene();
|
2018-01-30 16:45:38 +08:00
|
|
|
|
if (!pCurrentScene || pCurrentScene->onCloseWindow())
|
|
|
|
|
|
{
|
2018-02-07 16:37:12 +08:00
|
|
|
|
e2d::Game::quit();
|
2018-01-30 16:45:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
result = 0;
|
2018-05-03 22:21:01 +08:00
|
|
|
|
hasHandled = true;
|
2018-01-30 16:45:38 +08:00
|
|
|
|
break;
|
|
|
|
|
|
|
2018-05-03 22:21:01 +08:00
|
|
|
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϣ
|
2018-01-30 16:45:38 +08:00
|
|
|
|
case WM_DESTROY:
|
|
|
|
|
|
{
|
|
|
|
|
|
PostQuitMessage(0);
|
|
|
|
|
|
}
|
|
|
|
|
|
result = 1;
|
2018-05-03 22:21:01 +08:00
|
|
|
|
hasHandled = true;
|
2018-01-30 16:45:38 +08:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-05-03 22:21:01 +08:00
|
|
|
|
if (!hasHandled)
|
|
|
|
|
|
{
|
|
|
|
|
|
result = DefWindowProc(hWnd, message, wParam, lParam);
|
2018-01-30 16:45:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
|
}
|