일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- modeling
- shader
- 오픈지엘
- MFC
- 윈도우프로그래밍
- c4d
- 그래픽스기초
- Graphics
- Win32 API
- OpenGL
- bezier curve
- 렌더링
- denoising
- 윈도우
- 컴퓨터 구조
- 운영체제
- 셰이더
- window programming
- Mesh Processing
- 윈도우 구조
- 컴퓨터 아키텍쳐
- 그래픽스
- Geometry Modeling
- 베지에 곡선
- 핵심 API로 배우는 윈도우프로그래밍
- MFC 윈도우 프로그래밍
- 윈도우 프로그래밍
- shader programming
- 셰이더프로그래밍
- win32
Archives
- Today
- Total
오다기리 박의 알고리즘 노트
[핵심 API로 배우는 윈도우프로그래밍(강경우, 한빛아카데미)] 9장 5번 풀이 본문
-서버 cpp파일-
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 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 | //논블로킹 단방향통신에서 서버가 클라이언트로 메시지를 보내는 코드를 추가한다. #include <Windows.h> #include<tchar.h> #include<string.h> #include<stdio.h> #define WM_ASYNC WM_USER+2 //#pragma comment(linker,"/entry:WinMainCRTStartup /subsystem:console") 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; 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("Server Window"), WS_OVERLAPPEDWINDOW, 50, 50, 600, 600, NULL, NULL, hInstance, NULL); ShowWindow(hwnd, nCmdShow); UpdateWindow(hwnd); while (GetMessage(&msg, NULL, 0, 0)) { TranslateMessage(&msg); DispatchMessage(&msg); } return (int)msg.wParam; } #define GAP 25 LRESULT CALLBACK WndProc(HWND hwnd, UINT iMsg, WPARAM wParam, LPARAM lParam) { HDC hdc; PAINTSTRUCT ps; static WSADATA wsadata; static SOCKET s, cs; static TCHAR msg[10]; static HWND hButton1; static SOCKADDR_IN addr = { 0 }, c_addr; static int recv_x1 = 0, recv_x2 = 0, recv_y1 = 0, recv_y2 = 0; static int recv_shape = 0; static int pos_y = 0; static int mx = 0, my = 0; static bool Drag = false; static bool MyTurn = TRUE; static int x1 = 0, x2 = 0, y1 = 0, y2 = 0; static int shape = 0; static int token2[2]; HPEN redPen, blackPen, bluePen; static int mX, mY; static int circle[20][20] = { 0, }; static int recv_circle[20][20] = { 0, }; int size, msgLen; char buffer[100]; char *context; char *token; int i = 0; switch (iMsg) { case WM_CREATE: WSAStartup(MAKEWORD(2, 2), &wsadata); //1.윈속사용시작하기 s = socket(AF_INET, SOCK_STREAM, 0); //2.소켓 생성-클라이언트가 접속하기를 기다리는 소켓 addr.sin_family = AF_INET; addr.sin_port = 20; addr.sin_addr.s_addr = inet_addr("127.0.0.1"); bind(s, (LPSOCKADDR)&addr, sizeof(addr)); //3.주소와 소켓 연결하기 WSAAsyncSelect(s, hwnd, WM_ASYNC, FD_ACCEPT); //4.소켓s에서 상대방이 접속을 시도하는 이벤트가 발생하면 WM_ASYNC를 hwnd 윈도우에 발생시키위해 설정 if (listen(s, 5) == -1) //5.연결 요구 기다리기 return 0; break; case WM_ASYNC: //WM_ASYNC메시지 발생시 lParam으로 어떤 이벤트가 발생했는지 구분 switch (lParam) { case FD_ACCEPT: //클라이언트가 접속을 시도하면 size = sizeof(c_addr); //클라이언트와 통신하기 위한 소켓cs를 만들어 클라이언트와의 통신을 전담시킨다. cs = accept(s, (LPSOCKADDR)&c_addr, &size); WSAAsyncSelect(cs, hwnd, WM_ASYNC, FD_READ);//클라이언트가 메시지를 보낼 때까지 무한정 기다릴 수 없으므로 FD_READ를 WM_ASYNC에 등록 break; case FD_READ: recv(cs, buffer, 100, 0); if (!_tcscmp(buffer, _T("-1"))) { MessageBox(hwnd, _T("아쉽네요. 졌습니다"), _T("다음에 한번 더"), NULL); MyTurn = FALSE; return 0; } strcpy_s(msg, buffer); context = NULL; token = strtok_s(msg, ",", &context); //context에는 분리된 후 남은 문자열이 들어간다. while (token != NULL) { token2[i++] = atoi(token); //TextOut(hdc, 0, pos_y, token, _tcslen(token)); token = strtok_s(NULL, ",", &context); pos_y += 20; } recv_circle[token2[0]][token2[1]] = 1; MyTurn = TRUE; InvalidateRgn(hwnd, NULL, TRUE); break; default: break; } break; case WM_LBUTTONDOWN: if (MyTurn) { int sum[8] = { 0, }; mX = LOWORD(lParam); mY = HIWORD(lParam); if ((mY / GAP) < 20 && (mX / GAP) < 20 && circle[mY / GAP][mX / GAP] == 0 && recv_circle[mY / GAP][mX / GAP] == 0) { circle[mY / GAP][mX / GAP] = 1; _stprintf_s(buffer, _T("%d,%d"), mY / GAP, mX / GAP); send(cs, (LPSTR)buffer, 10, 0); MyTurn = FALSE; for (int i = 1; i <= 4; i++) { if (mY / GAP - i >= 0 && mY / GAP + i < 20) //위아래 { sum[0] += circle[mY / GAP - i][mX / GAP]; sum[1] += circle[mY / GAP + i][mX / GAP]; } if (mY / GAP - i >= 0 && mY / GAP + i < 20 && mX / GAP - i >= 0 && mX / GAP + i < 20) //오른쪽위,왼쪽아래 { sum[2] += circle[mY / GAP - i][mX / GAP + i]; sum[3] += circle[mY / GAP + i][mX / GAP - i]; } if (mX / GAP - i >= 0 && mX / GAP + i < 20) //오른쪽,왼쪽 { sum[4] += circle[mY / GAP][mX / GAP + i]; sum[5] += circle[mY / GAP][mX / GAP - i]; } if (mY / GAP - i >= 0 && mY / GAP + i < 20 && mX / GAP - i >= 0 && mX / GAP + i < 20) //오른쪽아래,왼쪽위 { sum[6] += circle[mY / GAP + i][mX / GAP + i]; sum[7] += circle[mY / GAP - i][mX / GAP - i]; } } } InvalidateRgn(hwnd, NULL, TRUE); if (sum[0] + sum[1] >= 4 || sum[2] + sum[3] >= 4 || sum[4] + sum[5] >= 4 || sum[6] + sum[7] >= 4) { MessageBox(hwnd, _T("축하 합니다. 당신이 이겼습니다"), _T("승리 축하"), NULL); MyTurn = FALSE; _stprintf_s(buffer, _T("-1")); send(cs, (LPSTR)buffer, 10, 0); } } break; case WM_MOUSEMOVE: if (Drag) { x2 = LOWORD(lParam); y2 = HIWORD(lParam); InvalidateRgn(hwnd, NULL, TRUE); } break; case WM_LBUTTONUP: Drag = false; x2 = LOWORD(lParam); y2 = HIWORD(lParam); break; case WM_PAINT: hdc = BeginPaint(hwnd, &ps); for (int i = 0; i < 21; i++) //--------------프레임 { MoveToEx(hdc, 0, i * GAP, NULL); LineTo(hdc, GAP * 20, i * GAP); } for (int i = 0; i < 21; i++) { MoveToEx(hdc, i * GAP, 0, NULL); LineTo(hdc, i * GAP, GAP * 20); } //--------------프레임 redPen = CreatePen(PS_SOLID, 1, RGB(255, 0, 0)); for (int i = 0; i < 20; i++) { for (int j = 0; j < 20; j++) { SelectObject(hdc, redPen); if (circle[i][j]) Ellipse(hdc, GAP * j, GAP * i, GAP * j + GAP, GAP * i + GAP); } } bluePen = CreatePen(PS_SOLID, 1, RGB(0, 0, 255)); for (int i = 0; i < 20; i++) { for (int j = 0; j < 20; j++) { SelectObject(hdc, bluePen); if (recv_circle[i][j]) Ellipse(hdc, GAP * j, GAP * i, GAP * j + GAP, GAP * i + GAP); } } EndPaint(hwnd, &ps); break; case WM_DESTROY: closesocket(s); WSACleanup(); PostQuitMessage(0); break; } return DefWindowProc(hwnd, iMsg, wParam, lParam); } | cs |
-클라이언트 cpp파일-
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 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 | //6번소스와 동일 #include <Windows.h> #include<tchar.h> #include<string.h> #include<stdio.h> #include<stdlib.h> #include<iostream> LRESULT CALLBACK WndProc(HWND hwnd, UINT iMsg, WPARAM wParam, LPARAM lParam); HINSTANCE hInst; #define WM_ASYNC WM_USER+2 int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpszCmdLine, int nCmdShow) { HWND hwnd; MSG msg; WNDCLASS WndClass; 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("Client Window"), WS_OVERLAPPEDWINDOW, 50, 50, 600, 600, NULL, NULL, hInstance, NULL); ShowWindow(hwnd, nCmdShow); UpdateWindow(hwnd); while (GetMessage(&msg, NULL, 0, 0)) { TranslateMessage(&msg); DispatchMessage(&msg); } return (int)msg.wParam; } #define GAP 25 LRESULT CALLBACK WndProc(HWND hwnd, UINT iMsg, WPARAM wParam, LPARAM lParam) { HDC hdc; PAINTSTRUCT ps; static WSADATA wsadata; static SOCKET s; static SOCKADDR_IN addr = { 0 }; static TCHAR msg[10]; static int x1 = 0, x2 = 0, y1 = 0, y2 = 0; static int shape = 0; static int recv_x1 = 0, recv_x2 = 0, recv_y1 = 0, recv_y2 = 0; static int recv_shape = 0; static int token2[5]; static int mx = 0, my = 0; static bool Drag = false; static bool MyTurn = FALSE; HPEN redPen, blackPen, bluePen; static int mX, mY; static int circle[20][20] = { 0, }; static int recv_circle[20][20] = { 0, }; int msgLen; char buffer[100]; char *context; char *token; int pos_y = 0; int i = 0; switch (iMsg) { case WM_CREATE: WSAStartup(MAKEWORD(2, 2), &wsadata); //1.윈속 사용시작하기 s = socket(AF_INET, SOCK_STREAM, 0); //2.소켓 생성하기 addr.sin_family = AF_INET; addr.sin_port = 20; addr.sin_addr.s_addr = inet_addr("127.0.0.1"); WSAAsyncSelect(s, hwnd, WM_ASYNC, FD_READ); //서버에서 보낸 데이터를 받아야 하므로 FD_READ 이벤트에 대해 WM_ASYNC윈도우 메시지를 등록 if (connect(s, (LPSOCKADDR)&addr, sizeof(addr)) == -1) //3.연결 요구하기(접속실패시 종료) return 0; break; case WM_ASYNC: //양방향 통신이므로 클라이언트가 다른 메시지를 처리하는 도중 서버에서 데이터를 보내면 switch (lParam) //WM_ASYNC와 lParam이 같이 도착한다. { case FD_READ: recv(s, buffer, 100, 0); if (!_tcscmp(buffer, _T("-1"))) { MessageBox(hwnd, _T("아쉽네요. 졌습니다"), _T("다음에 한번 더"), NULL); MyTurn = FALSE; return 0; } strcpy_s(msg, buffer); context = NULL; token = strtok_s(msg, ",", &context); //context에는 분리된 후 남은 문자열이 들어간다. while (token != NULL) { token2[i++] = atoi(token); //TextOut(hdc, 0, pos_y, token, _tcslen(token)); token = strtok_s(NULL, ",", &context); pos_y += 20; } recv_circle[token2[0]][token2[1]] = 1; MyTurn = TRUE; InvalidateRgn(hwnd, NULL, TRUE); break; default: break; } break; case WM_LBUTTONDOWN: if (MyTurn) { int sum[8] = { 0, }; mX = LOWORD(lParam); mY = HIWORD(lParam); if ((mY / GAP) < 20 && (mX / GAP) < 20 && circle[mY / GAP][mX / GAP] == 0 && recv_circle[mY / GAP][mX / GAP] == 0) { circle[mY / GAP][mX / GAP] = 1; _stprintf_s(buffer, _T("%d,%d"), mY / GAP, mX / GAP); send(s, (LPSTR)buffer, 10, 0); MyTurn = FALSE; for (int i = 1; i <= 4; i++) { if (mY / GAP - i >= 0 && mY / GAP + i < 20) //위아래 { sum[0] += circle[mY / GAP - i][mX / GAP]; sum[1] += circle[mY / GAP + i][mX / GAP]; } if (mY / GAP - i >= 0 && mY / GAP + i < 20 && mX / GAP - i >= 0 && mX / GAP + i < 20) //오른쪽위,왼쪽아래 { sum[2] += circle[mY / GAP - i][mX / GAP + i]; sum[3] += circle[mY / GAP + i][mX / GAP - i]; } if (mX / GAP - i >= 0 && mX / GAP + i < 20) //오른쪽,왼쪽 { sum[4] += circle[mY / GAP][mX / GAP + i]; sum[5] += circle[mY / GAP][mX / GAP - i]; } if (mY / GAP - i >= 0 && mY / GAP + i < 20 && mX / GAP - i >= 0 && mX / GAP + i < 20) //오른쪽아래,왼쪽위 { sum[6] += circle[mY / GAP + i][mX / GAP + i]; sum[7] += circle[mY / GAP - i][mX / GAP - i]; } } } InvalidateRgn(hwnd, NULL, TRUE); if (sum[0] + sum[1] >= 4 || sum[2] + sum[3] >= 4 || sum[4] + sum[5] >= 4 || sum[6] + sum[7] >= 4) { MessageBox(hwnd, _T("축하 합니다. 당신이 이겼습니다"), _T("승리 축하"), NULL); MyTurn = FALSE; _stprintf_s(buffer, _T("-1")); send(s, (LPSTR)buffer, 10, 0); } } break; case WM_MOUSEMOVE: if (Drag) { x2 = LOWORD(lParam); y2 = HIWORD(lParam); InvalidateRgn(hwnd, NULL, TRUE); } break; case WM_LBUTTONUP: break; case WM_PAINT: hdc = BeginPaint(hwnd, &ps); for (int i = 0; i < 21; i++) //--------------프레임 { MoveToEx(hdc, 0, i * GAP, NULL); LineTo(hdc, GAP * 20, i * GAP); } for (int i = 0; i < 21; i++) { MoveToEx(hdc, i * GAP, 0, NULL); LineTo(hdc, i * GAP, GAP * 20); } //--------------프레임 bluePen = CreatePen(PS_SOLID, 1, RGB(0, 0, 255)); for (int i = 0; i < 20; i++) { for (int j = 0; j < 20; j++) { SelectObject(hdc, bluePen); if (circle[i][j]) Ellipse(hdc, GAP * j, GAP * i, GAP * j + GAP, GAP * i + GAP); } } redPen = CreatePen(PS_SOLID, 1, RGB(255, 0, 0)); for (int i = 0; i < 20; i++) { for (int j = 0; j < 20; j++) { SelectObject(hdc, redPen); if (recv_circle[i][j]) Ellipse(hdc, GAP * j, GAP * i, GAP * j + GAP, GAP * i + GAP); } } //_stprintf_s(msg, NULL); EndPaint(hwnd, &ps); break; case WM_DESTROY: closesocket(s); WSACleanup(); PostQuitMessage(0); break; } return DefWindowProc(hwnd, iMsg, wParam, lParam); } | cs |
'WIN32 API' 카테고리의 다른 글
[핵심 API로 배우는 윈도우프로그래밍(강경우, 한빛아카데미)] 9장 9번 풀이(미완성) (0) | 2018.01.09 |
---|---|
[핵심 API로 배우는 윈도우프로그래밍(강경우, 한빛아카데미)] 9장 8번 풀이 (0) | 2018.01.09 |
[핵심 API로 배우는 윈도우프로그래밍(강경우, 한빛아카데미)] 9장 4번 풀이 (0) | 2018.01.09 |
[핵심 API로 배우는 윈도우프로그래밍(강경우, 한빛아카데미)] 9장 3번 풀이 (0) | 2018.01.09 |
[핵심 API로 배우는 윈도우프로그래밍(강경우, 한빛아카데미)] 9장 2번 풀이 (0) | 2018.01.09 |