123 #1
@ -1,25 +1,20 @@
|
|||||||
// lab16.cpp : Îïðåäåëÿåò òî÷êó âõîäà äëÿ ïðèëîæåíèÿ.
|
// lab18.cpp : Îïðåäåëÿåò òî÷êó âõîäà äëÿ ïðèëîæåíèÿ.
|
||||||
//
|
//
|
||||||
#define _CRT_SECURE_NO_WARNINGS
|
#define _CRT_SECURE_NO_WARNINGS
|
||||||
|
|
||||||
#include <stdio.h>
|
|
||||||
#include <Windows.h>
|
|
||||||
#include "framework.h"
|
#include "framework.h"
|
||||||
#include "lab16.h"
|
#include "lab18.h"
|
||||||
#include <tchar.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
#define MAX_LOADSTRING 100
|
#define MAX_LOADSTRING 100
|
||||||
#define N 10
|
|
||||||
#define M 15
|
|
||||||
#define WIDTH 30
|
|
||||||
#define HEIGHT 20
|
|
||||||
|
|
||||||
// Ãëîáàëüíûå ïåðåìåííûå:
|
// Ãëîáàëüíûå ïåðåìåííûå:
|
||||||
int steps = 0;
|
int counter = 0;
|
||||||
int gold = 0;
|
|
||||||
HINSTANCE hInst; // òåêóùèé ýêçåìïëÿð
|
HINSTANCE hInst; // òåêóùèé ýêçåìïëÿð
|
||||||
WCHAR szTitle[MAX_LOADSTRING]; // Òåêñò ñòðîêè çàãîëîâêà
|
WCHAR szTitle[MAX_LOADSTRING]; // Òåêñò ñòðîêè çàãîëîâêà
|
||||||
WCHAR szWindowClass[MAX_LOADSTRING]; // èìÿ êëàññà ãëàâíîãî îêíà
|
WCHAR szWindowClass[MAX_LOADSTRING]; // èìÿ êëàññà ãëàâíîãî îêíà
|
||||||
|
int numImage = 0;
|
||||||
|
|
||||||
// Îòïðàâèòü îáúÿâëåíèÿ ôóíêöèé, âêëþ÷åííûõ â ýòîò ìîäóëü êîäà:
|
// Îòïðàâèòü îáúÿâëåíèÿ ôóíêöèé, âêëþ÷åííûõ â ýòîò ìîäóëü êîäà:
|
||||||
ATOM MyRegisterClass(HINSTANCE hInstance);
|
ATOM MyRegisterClass(HINSTANCE hInstance);
|
||||||
@ -39,7 +34,7 @@ int APIENTRY wWinMain(_In_ HINSTANCE hInstance,
|
|||||||
|
|
||||||
// Èíèöèàëèçàöèÿ ãëîáàëüíûõ ñòðîê
|
// Èíèöèàëèçàöèÿ ãëîáàëüíûõ ñòðîê
|
||||||
LoadStringW(hInstance, IDS_APP_TITLE, szTitle, MAX_LOADSTRING);
|
LoadStringW(hInstance, IDS_APP_TITLE, szTitle, MAX_LOADSTRING);
|
||||||
LoadStringW(hInstance, IDC_LAB16, szWindowClass, MAX_LOADSTRING);
|
LoadStringW(hInstance, IDC_LAB18, szWindowClass, MAX_LOADSTRING);
|
||||||
MyRegisterClass(hInstance);
|
MyRegisterClass(hInstance);
|
||||||
|
|
||||||
// Âûïîëíèòü èíèöèàëèçàöèþ ïðèëîæåíèÿ:
|
// Âûïîëíèòü èíèöèàëèçàöèþ ïðèëîæåíèÿ:
|
||||||
@ -48,7 +43,7 @@ int APIENTRY wWinMain(_In_ HINSTANCE hInstance,
|
|||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
HACCEL hAccelTable = LoadAccelerators(hInstance, MAKEINTRESOURCE(IDC_LAB16));
|
HACCEL hAccelTable = LoadAccelerators(hInstance, MAKEINTRESOURCE(IDC_LAB18));
|
||||||
|
|
||||||
MSG msg;
|
MSG msg;
|
||||||
|
|
||||||
@ -83,10 +78,10 @@ ATOM MyRegisterClass(HINSTANCE hInstance)
|
|||||||
wcex.cbClsExtra = 0;
|
wcex.cbClsExtra = 0;
|
||||||
wcex.cbWndExtra = 0;
|
wcex.cbWndExtra = 0;
|
||||||
wcex.hInstance = hInstance;
|
wcex.hInstance = hInstance;
|
||||||
wcex.hIcon = LoadIcon(hInstance, MAKEINTRESOURCE(IDI_LAB16));
|
wcex.hIcon = LoadIcon(hInstance, MAKEINTRESOURCE(IDI_LAB18));
|
||||||
wcex.hCursor = LoadCursor(nullptr, IDC_ARROW);
|
wcex.hCursor = LoadCursor(nullptr, IDC_ARROW);
|
||||||
wcex.hbrBackground = (HBRUSH)(COLOR_WINDOW+1);
|
wcex.hbrBackground = (HBRUSH)(COLOR_WINDOW+1);
|
||||||
wcex.lpszMenuName = MAKEINTRESOURCEW(IDC_LAB16);
|
wcex.lpszMenuName = MAKEINTRESOURCEW(IDC_LAB18);
|
||||||
wcex.lpszClassName = szWindowClass;
|
wcex.lpszClassName = szWindowClass;
|
||||||
wcex.hIconSm = LoadIcon(wcex.hInstance, MAKEINTRESOURCE(IDI_SMALL));
|
wcex.hIconSm = LoadIcon(wcex.hInstance, MAKEINTRESOURCE(IDI_SMALL));
|
||||||
|
|
||||||
@ -121,327 +116,269 @@ BOOL InitInstance(HINSTANCE hInstance, int nCmdShow)
|
|||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
int map[N][M] = {
|
//
|
||||||
{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
// ÔÓÍÊÖÈß: WndProc(HWND, UINT, WPARAM, LPARAM)
|
||||||
{0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0},
|
//
|
||||||
{0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0},
|
// ÖÅËÜ: Îáðàáàòûâàåò ñîîáùåíèÿ â ãëàâíîì îêíå.
|
||||||
{0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 3, 3, 0, 0, 0},
|
//
|
||||||
{0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 3, 3, 0, 0, 0},
|
// WM_COMMAND - îáðàáîòàòü ìåíþ ïðèëîæåíèÿ
|
||||||
|
// WM_PAINT - Îòðèñîâêà ãëàâíîãî îêíà
|
||||||
|
// WM_DESTROY - îòïðàâèòü ñîîáùåíèå î âûõîäå è âåðíóòüñÿ
|
||||||
|
//
|
||||||
|
void Image1(HDC hdc, int cx, int cy, int size) {
|
||||||
|
int x1 = cx - size / 2;
|
||||||
|
int y1 = cy - size / 2;
|
||||||
|
int x2 = cx + size / 2;
|
||||||
|
int y2 = cy - size / 2;
|
||||||
|
int x3 = cx;
|
||||||
|
int y3 = cy + size / 2;
|
||||||
|
|
||||||
{0, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0},
|
HPEN hPen = CreatePen(PS_SOLID, 2, RGB(0, 0, 0));
|
||||||
{0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 2, 0, 0, 2, 0},
|
SelectObject(hdc, hPen);
|
||||||
{0, 0, 0, 0, 0, 0, 0, 2, 0, 3, 2, 0, 0, 2, 0},
|
MoveToEx(hdc, x1, y1, NULL);
|
||||||
{0, 0, 0, 0, 3, 0, 2, 2, 2, 2, 2, 2, 2, 2, 0},
|
LineTo(hdc, x2, y2);
|
||||||
{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
LineTo(hdc, x3, y3);
|
||||||
};
|
LineTo(hdc, x1, y1);
|
||||||
void drawMap(HDC hdc) {
|
|
||||||
HBRUSH hBrushEmptyCell = CreateSolidBrush(RGB(200, 200, 200));
|
|
||||||
HBRUSH hBrushGold = CreateSolidBrush(RGB(255, 255, 0));
|
|
||||||
HBRUSH hBrushWall = CreateSolidBrush(RGB(0, 0, 0));
|
|
||||||
HBRUSH hBrushMan = CreateSolidBrush(RGB(0, 0, 255));
|
|
||||||
HBRUSH brush[4] = { hBrushEmptyCell, hBrushMan, hBrushWall, hBrushGold };
|
|
||||||
|
|
||||||
int i, j;
|
char strC[5];
|
||||||
|
sprintf(strC, "%d", counter);
|
||||||
for (i = 0; i < N; i++) {
|
TCHAR strWin[5];
|
||||||
for (j = 0; j < M; j++) {
|
|
||||||
|
|
||||||
int x1 = j * WIDTH;
|
|
||||||
int x2 = (j + 1) * WIDTH;
|
|
||||||
int y1 = i * HEIGHT;
|
|
||||||
int y2 = (i + 1) * HEIGHT;
|
|
||||||
|
|
||||||
RECT r = { x1, y1, x2, y2 };
|
|
||||||
FillRect(hdc, &r, brush[map[i][j]]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
for (i = 0; i < 4; i++)
|
|
||||||
DeleteObject(brush[i]);
|
|
||||||
|
|
||||||
char strC[80];
|
|
||||||
sprintf(strC, "steps = %d gold = %d", steps, gold);
|
|
||||||
|
|
||||||
TCHAR strWin[80];
|
|
||||||
OemToChar(strC, strWin);
|
OemToChar(strC, strWin);
|
||||||
|
TextOut(hdc, cx, cy, (LPCWSTR)strWin, _tcslen(strWin));
|
||||||
|
|
||||||
HFONT hFont = CreateFont(HEIGHT, 0, 0, 0, 0, 0, 0, 0,
|
DeleteObject(hPen);
|
||||||
DEFAULT_CHARSET, 0, 0, 0, 0, L"Courier New");
|
|
||||||
SelectObject(hdc, hFont);
|
|
||||||
SetTextColor(hdc, RGB(0, 0, 128));
|
|
||||||
|
|
||||||
TextOut(hdc, 10, HEIGHT * N, (LPCWSTR)strWin, _tcslen(strWin));
|
|
||||||
|
|
||||||
DeleteObject(hFont);
|
|
||||||
}
|
}
|
||||||
|
void RecursiveImage1_1(HDC hdc, int cx, int cy, int size) {
|
||||||
|
counter++;
|
||||||
void Left() {
|
Image1(hdc, cx, cy, size);
|
||||||
int i, j;
|
if (size < 20) {
|
||||||
|
|
||||||
for (i = 0; i < N; i++) {
|
|
||||||
for (j = 0; j < M; j++) {
|
|
||||||
if (map[i][j] == 1) {
|
|
||||||
if (map[i][j - 1] == 0) {
|
|
||||||
map[i][j - 1] = 1;
|
|
||||||
map[i][j] = 0;
|
|
||||||
steps++;
|
|
||||||
}
|
|
||||||
else if (map[i][j - 1] == 3) {
|
|
||||||
map[i][j - 1] = 1;
|
|
||||||
map[i][j] = 0;
|
|
||||||
steps++;
|
|
||||||
gold++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
void Right() {
|
|
||||||
int i, j;
|
|
||||||
|
|
||||||
for (i = 0; i < N; i++) {
|
|
||||||
for (j = M - 2; j >= 0; j--) {
|
|
||||||
if (map[i][j] == 1) {
|
|
||||||
if (map[i][j + 1] == 0) {
|
|
||||||
map[i][j + 1] = 1;
|
|
||||||
map[i][j] = 0;
|
|
||||||
steps++;
|
|
||||||
}
|
|
||||||
else if (map[i][j + 1] == 3) {
|
|
||||||
map[i][j + 1] = 1;
|
|
||||||
map[i][j] = 0;
|
|
||||||
steps++;
|
|
||||||
gold++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
void Up() {
|
|
||||||
int i, j;
|
|
||||||
|
|
||||||
for (i = 0; i < N; i++) {
|
|
||||||
for (j = 0; j < M; j++) {
|
|
||||||
if (map[i][j] == 1) {
|
|
||||||
if (map[i - 1][j] == 0) {
|
|
||||||
map[i - 1][j] = 1;
|
|
||||||
map[i][j] = 0;
|
|
||||||
steps++;
|
|
||||||
}
|
|
||||||
else if (map[i - 1][j] == 3) {
|
|
||||||
map[i - 1][j] = 1;
|
|
||||||
map[i][j] = 0;
|
|
||||||
steps++;
|
|
||||||
gold++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
void Down() {
|
|
||||||
int i, j;
|
|
||||||
|
|
||||||
for (i = N - 2; i >= 0; i--) {
|
|
||||||
for (j = 0; j < M; j++) {
|
|
||||||
if (map[i][j] == 1) {
|
|
||||||
if (map[i + 1][j] == 0) {
|
|
||||||
map[i + 1][j] = 1;
|
|
||||||
map[i][j] = 0;
|
|
||||||
steps++;
|
|
||||||
}
|
|
||||||
else if (map[i + 1][j] == 3) {
|
|
||||||
map[i + 1][j] = 1;
|
|
||||||
map[i][j] = 0;
|
|
||||||
steps++;
|
|
||||||
gold++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
void Save() {
|
|
||||||
FILE* fout;
|
|
||||||
fout = fopen("C:\\Temp\\Lection12\\game.txt", "wt");
|
|
||||||
if (fout == NULL) {
|
|
||||||
printf("\nÂûõîäíîé ôàéë íå ñîçäàëñÿ\n");
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
RecursiveImage1_1(hdc, cx - size / 2, cy - size / 2, size / 2);
|
||||||
fprintf(fout, "%d ", N);
|
RecursiveImage1_1(hdc, cx + size / 2, cy - size / 2, size / 2);
|
||||||
fprintf(fout, "%d\n", M);
|
|
||||||
int i, j;
|
|
||||||
|
|
||||||
for (i = 0; i < N; i++) {
|
|
||||||
for (j = 0; j < M; j++) {
|
|
||||||
fprintf(fout, "%d ", map[i][j]);
|
|
||||||
}
|
}
|
||||||
}
|
void RecursiveImage1_2(HDC hdc, int cx, int cy, int size) {
|
||||||
fprintf(fout, "%d ", steps);
|
counter++;
|
||||||
fprintf(fout, "%d", gold);
|
Image1(hdc, cx, cy, size);
|
||||||
|
if (size < 20) {
|
||||||
fclose(fout);
|
|
||||||
|
|
||||||
}
|
|
||||||
void Load() {
|
|
||||||
FILE* fin;
|
|
||||||
fin = fopen("C:\\Temp\\Lection12\\game.txt", "rt");
|
|
||||||
if (fin == NULL) {
|
|
||||||
printf("Âõîäíîé ôàéë íå íàéäåí");
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
RecursiveImage1_2(hdc, cx - size / 2, cy - size / 2, size / 2);
|
||||||
int n, m;
|
RecursiveImage1_2(hdc, cx, cy + size / 2, size / 2);
|
||||||
fscanf(fin, "%d", &n);
|
|
||||||
fscanf(fin, "%d", &m);
|
|
||||||
int i, j;
|
|
||||||
|
|
||||||
for (i = 0; i < n; i++) {
|
|
||||||
for (j = 0; j < m; j++) {
|
|
||||||
fscanf(fin, "%d", &map[i][j]);
|
|
||||||
}
|
}
|
||||||
}
|
void RecursiveImage1_3(HDC hdc, int cx, int cy, int size) {
|
||||||
fscanf(fin, "%d ", &steps);
|
counter++;
|
||||||
fscanf(fin, "%d", &gold);
|
Image1(hdc, cx, cy, size);
|
||||||
|
if (size < 10) {
|
||||||
fclose(fin);
|
|
||||||
}
|
|
||||||
void SaveBinary() {
|
|
||||||
FILE* fout;
|
|
||||||
fout = fopen("C:\\Temp\\Lection12\\game_bin.bin", "wb");
|
|
||||||
if (fout == NULL) {
|
|
||||||
printf("Âûõîäíîé ôàéë íå ñîçäàëñÿ");
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
int n = N, m = M;
|
RecursiveImage1_3(hdc, cx - size / 2, cy - size / 2, size / 2);
|
||||||
fwrite(&n, sizeof(n), 1, fout);
|
RecursiveImage1_3(hdc, cx + size / 2, cy - size / 2, size / 2);
|
||||||
fwrite(&m, sizeof(m), 1, fout);
|
RecursiveImage1_3(hdc, cx - size / 2, cy - size / 2, size / 2);
|
||||||
fwrite(map, sizeof(map), 1, fout);
|
RecursiveImage1_3(hdc, cx, cy + size / 2, size / 2);
|
||||||
fwrite(&steps, sizeof(steps), 1, fout);
|
|
||||||
fwrite(&gold, sizeof(gold), 1, fout);
|
|
||||||
|
|
||||||
fclose(fout);
|
|
||||||
}
|
}
|
||||||
void LoadBinary() {
|
void Image2(HDC hdc, int cx, int cy, int size) {
|
||||||
FILE* fin;
|
int x1 = cx - size / 2;
|
||||||
fin = fopen("C:\\Temp\\Lection12\\game_bin.bin", "rb");
|
int y1 = cy - size;
|
||||||
if (fin == NULL) {
|
int x2 = cx + size / 2;
|
||||||
printf("Âõîäíîé ôàéë íå ñîçäàëñÿ");
|
int y2 = cy - size;
|
||||||
|
int x3 = cx - size;
|
||||||
|
int y3 = cy + size;
|
||||||
|
int x4 = cx + size;
|
||||||
|
int y4 = cy + size;
|
||||||
|
|
||||||
|
HPEN hPen = CreatePen(PS_SOLID, 2, RGB(0, 0, 255));
|
||||||
|
SelectObject(hdc, hPen);
|
||||||
|
|
||||||
|
MoveToEx(hdc, x1, y1, NULL);
|
||||||
|
LineTo(hdc, x2, y2);
|
||||||
|
LineTo(hdc, x3, y3);
|
||||||
|
LineTo(hdc, x4, y4);
|
||||||
|
LineTo(hdc, x1, y1);
|
||||||
|
|
||||||
|
DeleteObject(hPen);
|
||||||
|
}
|
||||||
|
void RecursiveImage2_1(HDC hdc, int cx, int cy, int size) {
|
||||||
|
Image2(hdc, cx, cy, size);
|
||||||
|
if (size < 5) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
int n, m;
|
RecursiveImage2_1(hdc, cx - size / 2, cy - size, size / 2);
|
||||||
fread(&n, sizeof(n), 1, fin);
|
}
|
||||||
fread(&m, sizeof(m), 1, fin);
|
void RecursiveImage2_2(HDC hdc, int cx, int cy, int size) {
|
||||||
fread(map, sizeof(map), 1, fin);
|
Image2(hdc, cx, cy, size);
|
||||||
fread(&steps, sizeof(steps), 1, fin);
|
if (size < 5) {
|
||||||
fread(&gold, sizeof(gold), 1, fin);
|
return;
|
||||||
|
}
|
||||||
|
RecursiveImage2_2(hdc, cx - size / 2, cy - size, size / 2);
|
||||||
|
RecursiveImage2_2(hdc, cx + size / 2, cy - size, size / 2);
|
||||||
|
}
|
||||||
|
void RecursiveImage2_3(HDC hdc, int cx, int cy, int size) {
|
||||||
|
Image2(hdc, cx, cy, size);
|
||||||
|
if (size < 15) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
RecursiveImage2_3(hdc, cx - size / 2, cy - size, size / 2);
|
||||||
|
RecursiveImage2_3(hdc, cx + size / 2, cy - size, size / 2);
|
||||||
|
RecursiveImage2_3(hdc, cx - size, cy + size, size / 2);
|
||||||
|
RecursiveImage2_3(hdc, cx + size, cy + size, size / 2);
|
||||||
|
}
|
||||||
|
void Image3(HDC hdc, int cx, int cy, int size) {
|
||||||
|
int x1 = cx;
|
||||||
|
int y1 = cy - size;
|
||||||
|
|
||||||
fclose(fin);
|
int x2 = cx + size;
|
||||||
}
|
int y2 = cy;
|
||||||
void CreateWall() {
|
|
||||||
for (int i = 0; i < N; i++) {
|
|
||||||
for (int j = 0; j < M; j++) {
|
|
||||||
if (map[i][j] == 1) {
|
|
||||||
map[i][j - 1] = 2;
|
|
||||||
steps++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
int x3 = cx;
|
||||||
void CreateGold() {
|
int y3 = cy + size;
|
||||||
for (int i = 0; i < N; i++) {
|
|
||||||
for (int j = 0; j < M; j++) {
|
|
||||||
if (map[i][j] == 1) {
|
|
||||||
map[i][j + 1] = 3;
|
|
||||||
steps++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
int x4 = cx - size;
|
||||||
void Right2() {
|
int y4 = cy;
|
||||||
for (int i = 0; i < N; i++) {
|
|
||||||
for (int j = 1; j < M; j++) {
|
|
||||||
if (map[i][j] == 1) {
|
|
||||||
|
|
||||||
if (map[i - 1][j] == 2) {
|
HPEN hPen = CreatePen(PS_SOLID, 2, RGB(0, 0, 255));
|
||||||
map[i - 1][j] = 0;
|
SelectObject(hdc, hPen);
|
||||||
steps++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
MoveToEx(hdc, x1, y1, NULL);
|
||||||
void Down2() {
|
LineTo(hdc, x2, y2);
|
||||||
for (int i = 0; i < N; i++) {
|
LineTo(hdc, x3, y3);
|
||||||
for (int j = 0; j < M; j++) {
|
LineTo(hdc, x4, y4);
|
||||||
if (map[i][j] == 1) {
|
LineTo(hdc, x1, y1);
|
||||||
if (map[i + 1][j] == 0) {
|
|
||||||
map[i + 1][j] = 3;
|
|
||||||
steps++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
DeleteObject(hPen);
|
||||||
}
|
}
|
||||||
void Destroy() {
|
void RecursiveImage3_1(HDC hdc, int cx, int cy, int size) {
|
||||||
int i, j;
|
Image3(hdc, cx, cy, size);
|
||||||
for (int j = M - 1; j >= 0; j--) {
|
if (size < 20) {
|
||||||
for (int i = 0; i < N; i++) {
|
return;
|
||||||
if (map[i][j] == 1) {
|
|
||||||
int a;
|
|
||||||
for (a = j + 1; a < M && map[i][a] == 2; a++) {
|
|
||||||
map[i][a] = 0;
|
|
||||||
}
|
}
|
||||||
break;
|
RecursiveImage3_1(hdc, cx + size, cy, size / 2);
|
||||||
|
RecursiveImage3_1(hdc, cx - size, cy, size / 2);
|
||||||
}
|
}
|
||||||
|
void RecursiveImage3_2(HDC hdc, int cx, int cy, int size) {
|
||||||
|
Image3(hdc, cx, cy, size);
|
||||||
|
if (size < 20) {
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
RecursiveImage3_2(hdc, cx + size, cy, size / 2);
|
||||||
|
RecursiveImage3_2(hdc, cx - size, cy, size / 2);
|
||||||
|
RecursiveImage3_2(hdc, cx, cy + size, size / 2);
|
||||||
}
|
}
|
||||||
|
void RecursiveImage3_3(HDC hdc, int cx, int cy, int size) {
|
||||||
|
Image3(hdc, cx, cy, size);
|
||||||
|
if (size < 20) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
RecursiveImage3_3(hdc, cx + size, cy, size / 2);
|
||||||
|
RecursiveImage3_3(hdc, cx - size, cy, size / 2);
|
||||||
|
RecursiveImage3_3(hdc, cx, cy - size, size / 2);
|
||||||
|
}
|
||||||
|
void RecursiveImage3_4(HDC hdc, int cx, int cy, int size) {
|
||||||
|
Image3(hdc, cx, cy, size);
|
||||||
|
if (size < 20) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
RecursiveImage3_4(hdc, cx + size, cy, size / 2);
|
||||||
|
RecursiveImage3_4(hdc, cx - size, cy, size / 2);
|
||||||
|
RecursiveImage3_4(hdc, cx, cy - size, size / 2);
|
||||||
|
RecursiveImage3_4(hdc, cx, cy + size, size / 2);
|
||||||
|
}
|
||||||
|
void Image4(HDC hdc, int cx, int cy, int size) {
|
||||||
|
int x1 = cx;
|
||||||
|
int y1 = cy - size;
|
||||||
|
|
||||||
|
int x2 = cx + size / 4;
|
||||||
|
int y2 = cy - size / 4;
|
||||||
|
|
||||||
|
int x3 = cx + size;
|
||||||
|
int y3 = cy;
|
||||||
|
|
||||||
|
int x4 = cx + size / 4;
|
||||||
|
int y4 = cy + size / 4;
|
||||||
|
|
||||||
|
int x5 = cx;
|
||||||
|
int y5 = cy + size;
|
||||||
|
|
||||||
|
int x6 = cx - size / 4;
|
||||||
|
int y6 = cy + size / 4;
|
||||||
|
|
||||||
|
int x7 = cx - size;
|
||||||
|
int y7 = cy;
|
||||||
|
|
||||||
|
int x8 = cx - size / 4;
|
||||||
|
int y8 = cy - size / 4;
|
||||||
|
HPEN hPen = CreatePen(PS_SOLID, 2, RGB(0, 0, 255));
|
||||||
|
SelectObject(hdc, hPen);
|
||||||
|
|
||||||
|
MoveToEx(hdc, x1, y1, NULL);
|
||||||
|
LineTo(hdc, x2, y2);
|
||||||
|
LineTo(hdc, x3, y3);
|
||||||
|
LineTo(hdc, x4, y4);
|
||||||
|
LineTo(hdc, x5, y5);
|
||||||
|
LineTo(hdc, x6, y6);
|
||||||
|
LineTo(hdc, x7, y7);
|
||||||
|
LineTo(hdc, x8, y8);
|
||||||
|
LineTo(hdc, x1, y1);
|
||||||
|
|
||||||
|
DeleteObject(hPen);
|
||||||
}
|
}
|
||||||
void Destroy2() {
|
void RecursiveImage4_1(HDC hdc, int cx, int cy, int size) {
|
||||||
int i, j;
|
Image4(hdc, cx, cy, size);
|
||||||
for (i = 0; i < N; i++) {
|
if (size < 20) {
|
||||||
for (j = 0; j < M - 1; j++) {
|
return;
|
||||||
if (map[i][j] == 1) {
|
|
||||||
if (map[i][j + 1] == 2) {
|
|
||||||
map[i][j + 1] = 0;
|
|
||||||
steps++;
|
|
||||||
}
|
}
|
||||||
if (map[i][j - 1] == 2) {
|
RecursiveImage4_1(hdc, cx + size, cy, size / 2);
|
||||||
map[i][j - 1] = 0;
|
RecursiveImage4_1(hdc, cx - size, cy, size / 2);
|
||||||
steps++;
|
|
||||||
}
|
}
|
||||||
if (map[i + 1][j + 1] == 2) {
|
void RecursiveImage4_2(HDC hdc, int cx, int cy, int size) {
|
||||||
map[i + 1][j + 1] = 0;
|
Image4(hdc, cx, cy, size);
|
||||||
steps++;
|
if (size < 20) {
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
if (map[i - 1][j - 1] == 2) {
|
RecursiveImage4_2(hdc, cx, cy + size, size / 2);
|
||||||
map[i - 1][j - 1] = 0;
|
RecursiveImage4_2(hdc, cx, cy - size, size / 2);
|
||||||
steps++;
|
|
||||||
}
|
}
|
||||||
if (map[i - 1][j] == 2) {
|
void RecursiveImage4_3(HDC hdc, int cx, int cy, int size) {
|
||||||
map[i - 1][j] = 0;
|
Image4(hdc, cx, cy, size);
|
||||||
steps++;
|
if (size < 20) {
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
if (map[i + 1][j] == 2) {
|
RecursiveImage4_3(hdc, cx, cy + size, size / 2);
|
||||||
map[i + 1][j] = 0;
|
RecursiveImage4_3(hdc, cx, cy - size, size / 2);
|
||||||
steps++;
|
RecursiveImage4_3(hdc, cx - size, cy, size / 2);
|
||||||
}
|
|
||||||
if (map[i - 1][j + 1] == 2) {
|
|
||||||
map[i - 1][j + 1] = 0;
|
|
||||||
steps++;
|
|
||||||
}
|
|
||||||
if (map[i + 1][j - 1] == 2) {
|
|
||||||
map[i + 1][j - 1] = 0;
|
|
||||||
steps++;
|
|
||||||
}
|
|
||||||
j++;
|
|
||||||
}
|
}
|
||||||
|
void Image5(HDC hdc, int cx, int cy, int size) {
|
||||||
|
int x1 = cx - size;
|
||||||
|
int y1 = cy - size / 1.5;
|
||||||
|
|
||||||
|
int x2 = cx + size;
|
||||||
|
int y2 = cy - size / 1.5;
|
||||||
|
|
||||||
|
int x3 = cx + size / 2;
|
||||||
|
int y3 = cy + size / 2;
|
||||||
|
|
||||||
|
int x4 = cx - size * 1.5;
|
||||||
|
int y4 = cy + size / 2;
|
||||||
|
HPEN hPen = CreatePen(PS_SOLID, 2, RGB(0, 0, 255));
|
||||||
|
SelectObject(hdc, hPen);
|
||||||
|
|
||||||
|
MoveToEx(hdc, x1, y1, NULL);
|
||||||
|
LineTo(hdc, x2, y2);
|
||||||
|
LineTo(hdc, x3, y3);
|
||||||
|
LineTo(hdc, x4, y4);
|
||||||
|
LineTo(hdc, x1, y1);
|
||||||
|
|
||||||
|
DeleteObject(hPen);
|
||||||
}
|
}
|
||||||
|
void RecursiveImage5_1(HDC hdc, int cx, int cy, int size) {
|
||||||
|
Image5(hdc, cx, cy, size);
|
||||||
|
if (size < 20) {
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
RecursiveImage5_1(hdc, cx - size, cy - size / 1.5, size / 2);
|
||||||
|
RecursiveImage5_1(hdc, cx + size / 1.5, cy + size / 2, size / 2);
|
||||||
|
RecursiveImage5_1(hdc, cx + size, cy - size / 1.5, size / 2);
|
||||||
|
RecursiveImage5_1(hdc, cx - size * 1.5, cy + size / 2, size / 2);
|
||||||
}
|
}
|
||||||
LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
|
LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
|
||||||
{
|
{
|
||||||
@ -450,53 +387,17 @@ LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
|
|||||||
case WM_COMMAND:
|
case WM_COMMAND:
|
||||||
{
|
{
|
||||||
case WM_KEYDOWN:
|
case WM_KEYDOWN:
|
||||||
switch (wParam) {
|
switch (wParam)
|
||||||
case VK_DOWN:
|
{
|
||||||
Down();
|
case 0xbe:
|
||||||
|
numImage++;
|
||||||
|
if (numImage >= 20)
|
||||||
|
numImage = 0;
|
||||||
InvalidateRect(hWnd, NULL, TRUE);
|
InvalidateRect(hWnd, NULL, TRUE);
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case VK_LEFT:
|
|
||||||
Left();
|
|
||||||
InvalidateRect(hWnd, NULL, TRUE);
|
|
||||||
break;
|
|
||||||
case VK_UP:
|
|
||||||
Up();
|
|
||||||
InvalidateRect(hWnd, NULL, TRUE);
|
|
||||||
break;
|
|
||||||
case VK_RIGHT:
|
|
||||||
Right();
|
|
||||||
InvalidateRect(hWnd, NULL, TRUE);
|
|
||||||
break;
|
|
||||||
case 0x53: //S
|
|
||||||
//Save();
|
|
||||||
SaveBinary();
|
|
||||||
break;
|
|
||||||
case 0x4c: //L
|
|
||||||
//Load();
|
|
||||||
//LoadBinary();
|
|
||||||
CreateWall();
|
|
||||||
break;
|
|
||||||
case 0x52: //R
|
|
||||||
CreateGold();
|
|
||||||
break;
|
|
||||||
case 0x55: //U
|
|
||||||
Right2();
|
|
||||||
InvalidateRect(hWnd, NULL, TRUE);
|
|
||||||
break;
|
|
||||||
case 0x44: //D
|
|
||||||
Down2();
|
|
||||||
InvalidateRect(hWnd, NULL, TRUE);
|
|
||||||
break;
|
|
||||||
case 0x5a: //Z
|
|
||||||
Destroy();
|
|
||||||
InvalidateRect(hWnd, NULL, TRUE);
|
|
||||||
break;
|
|
||||||
case 0x41: //A
|
|
||||||
Destroy2();
|
|
||||||
InvalidateRect(hWnd, NULL, TRUE);
|
|
||||||
break;
|
|
||||||
} break;
|
|
||||||
int wmId = LOWORD(wParam);
|
int wmId = LOWORD(wParam);
|
||||||
|
// Ðàçîáðàòü âûáîð â ìåíþ:
|
||||||
switch (wmId)
|
switch (wmId)
|
||||||
{
|
{
|
||||||
case IDM_ABOUT:
|
case IDM_ABOUT:
|
||||||
@ -514,7 +415,36 @@ LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
|
|||||||
{
|
{
|
||||||
PAINTSTRUCT ps;
|
PAINTSTRUCT ps;
|
||||||
HDC hdc = BeginPaint(hWnd, &ps);
|
HDC hdc = BeginPaint(hWnd, &ps);
|
||||||
drawMap(hdc);
|
// TODO: Äîáàâüòå ñþäà ëþáîé êîä ïðîðèñîâêè, èñïîëüçóþùèé HDC...
|
||||||
|
if (numImage == 0)
|
||||||
|
counter = 0;
|
||||||
|
RecursiveImage1_1(hdc, 200, 160, 160);
|
||||||
|
if (numImage == 1)
|
||||||
|
RecursiveImage1_2(hdc, 200, 160, 160);
|
||||||
|
if (numImage == 2)
|
||||||
|
RecursiveImage1_3(hdc, 200, 160, 160);
|
||||||
|
if (numImage == 3)
|
||||||
|
RecursiveImage2_1(hdc, 200, 200, 100);
|
||||||
|
if (numImage == 4)
|
||||||
|
RecursiveImage2_2(hdc, 200, 200, 100);
|
||||||
|
if (numImage == 5)
|
||||||
|
RecursiveImage2_3(hdc, 200, 200, 100);
|
||||||
|
if (numImage == 6)
|
||||||
|
RecursiveImage3_1(hdc, 200, 200, 100);
|
||||||
|
if (numImage == 7)
|
||||||
|
RecursiveImage3_2(hdc, 350, 200, 100);
|
||||||
|
if (numImage == 8)
|
||||||
|
RecursiveImage3_3(hdc, 350, 200, 100);
|
||||||
|
if (numImage == 9)
|
||||||
|
RecursiveImage3_4(hdc, 350, 200, 100);
|
||||||
|
if (numImage == 10)
|
||||||
|
RecursiveImage4_1(hdc, 300, 200, 100);
|
||||||
|
if (numImage == 11)
|
||||||
|
RecursiveImage4_2(hdc, 300, 200, 100);
|
||||||
|
if (numImage == 12)
|
||||||
|
RecursiveImage4_3(hdc, 300, 200, 100);
|
||||||
|
if (numImage == 13)
|
||||||
|
RecursiveImage5_1(hdc, 300, 200, 100);
|
||||||
EndPaint(hWnd, &ps);
|
EndPaint(hWnd, &ps);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user