00001
00002
00003
00004 #include "main.h"
00005 #include "SceneTitle.h"
00006 #include "DrawMain.h"
00007
00008
00009
00010
00011 HWND hWindow = NULL;
00012 HINSTANCE hInstance = NULL;
00013 RECT rcClientRect;
00014
00015
00016
00017
00018 LPSCENE pNowLoop;
00019 LPSCENE pNowRelease;
00020
00021
00022
00023
00024
00025 LRESULT CALLBACK WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039 int WINAPI WinMain(HINSTANCE hInst, HINSTANCE hPrevInst, LPSTR pCmdLine, int nCmdShow)
00040 {
00041 HWND hWnd = NULL;
00042 MSG msg;
00043
00044
00045 MEMLEAKCHECK();
00046
00047
00048 static char szAppName[] = "実験用サンプル";
00049 WNDCLASSEX wc;
00050 wc.cbSize = sizeof(wc);
00051 wc.style = CS_HREDRAW | CS_VREDRAW;
00052 wc.lpfnWndProc = WndProc;
00053 wc.cbClsExtra = 0;
00054 wc.cbWndExtra = 0;
00055 wc.hInstance = hInst;
00056 wc.hIcon = LoadIcon(NULL, IDI_APPLICATION);
00057 wc.hCursor = LoadCursor(NULL, IDC_ARROW);
00058 wc.hbrBackground = (HBRUSH)GetStockObject(BLACK_BRUSH);
00059 wc.lpszMenuName = NULL;
00060 wc.lpszClassName = szAppName;
00061 wc.hIconSm = LoadIcon(NULL, IDI_ASTERISK);
00062
00063
00064 if(!RegisterClassEx(&wc))
00065 return 0;
00066
00067
00068 rcClientRect.right = WINDOW_WIDTH;
00069 rcClientRect.bottom = WINDOW_HEIGHT;
00070 AdjustWindowRect(&rcClientRect,
00071 WS_OVERLAPPEDWINDOW,
00072 FALSE
00073 );
00074
00075
00076 hWnd = CreateWindow(szAppName,
00077 szAppName,
00078 WS_OVERLAPPEDWINDOW,
00079 CW_USEDEFAULT, CW_USEDEFAULT,
00080 rcClientRect.right - rcClientRect.left,
00081 rcClientRect.bottom - rcClientRect.top,
00082 NULL, NULL, hInst, NULL);
00083 if(hWnd == NULL)
00084 return 0;
00085
00086 ShowWindow(hWnd, SW_SHOW);
00087 UpdateWindow(hWnd);
00088
00089 hWindow = hWnd;
00090 hInstance = hInst;
00091
00092
00093
00094
00095 pNowLoop = TitleInit;
00096
00097
00098
00099 ZeroMemory(&msg, sizeof(msg));
00100 while(msg.message != WM_QUIT)
00101 {
00102
00103 if(PeekMessage(&msg, NULL, 0, 0, PM_REMOVE))
00104 {
00105 TranslateMessage(&msg);
00106 DispatchMessage(&msg);
00107 }
00108 else
00109 {
00110
00111
00112 pNowLoop = (LPSCENE)pNowLoop();
00113 if(pNowLoop == NULL)
00114 break;
00115
00116
00117
00118 Sleep(1);
00119 }
00120 }
00121
00122
00123
00124 pNowRelease();
00125
00126
00127 return (int)msg.wParam;
00128 }
00129
00130
00131
00132
00133
00134
00135
00136
00137
00138
00139
00140
00141
00142
00143 LRESULT CALLBACK WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
00144 {
00145
00146 if(!MyWndProc(hWnd,uMsg,wParam,lParam))
00147 return 0;
00148
00149 switch(uMsg)
00150 {
00151
00152 case WM_DESTROY:
00153 PostQuitMessage(0);
00154 return 0;
00155
00156 case WM_KEYDOWN:
00157 if(wParam == VK_ESCAPE)
00158 PostMessage(hWnd,WM_CLOSE,0,0);
00159 return 0;
00160 }
00161
00162
00163 return DefWindowProc(hWnd, uMsg, wParam, lParam);
00164 }
00165