Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- This is a C++ Win32 GDI-based Snake game code, I get the following errors when trying to build the project (after the errors I've posted my current full source code for scrutiny):
- Severity Code Description Project File Line Suppression State
- Error (active) E0513 a value of type "LRESULT (__stdcall Game::*)(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)" cannot be assigned to an entity of type "WNDPROC" Snake-Game-Win32 D:\Download\cpp-projekt\FuzenOp_SiloTest\Snake-Game-Win32\2D-Snake.cpp 281
- Error (active) E0067 expected a '}' Snake-Game-Win32 D:\Download\cpp-projekt\FuzenOp_SiloTest\Snake-Game-Win32\2D-Snake.cpp 313
- Here is my full source code for scrutiny:
- #include <windows.h>
- #include <vector>
- #include <ctime>
- #include <cstdlib>
- #define WINDOW_WIDTH 800
- #define WINDOW_HEIGHT 600
- #define GRID_SIZE 20
- #define SNAKE_INITIAL_LENGTH 5
- #define MOVE_INTERVAL 100
- enum Direction { UP, DOWN, LEFT, RIGHT };
- struct Point {
- int x, y;
- Point(int _x = 0, int _y = 0) : x(_x), y(_y) {}
- };
- class Snake {
- private:
- std::vector<Point> body;
- Direction currentDirection;
- Direction nextDirection;
- bool growing;
- public:
- Snake() : currentDirection(RIGHT), nextDirection(RIGHT), growing(false) {
- for (int i = 0; i < SNAKE_INITIAL_LENGTH; ++i) {
- body.push_back(Point(5 - i, 5));
- }
- }
- void move() {
- currentDirection = nextDirection;
- Point newHead = body.front();
- switch (currentDirection) {
- case UP: newHead.y--; break;
- case DOWN: newHead.y++; break;
- case LEFT: newHead.x--; break;
- case RIGHT: newHead.x++; break;
- }
- newHead.x = (newHead.x + WINDOW_WIDTH / GRID_SIZE) % (WINDOW_WIDTH / GRID_SIZE);
- newHead.y = (newHead.y + WINDOW_HEIGHT / GRID_SIZE) % (WINDOW_HEIGHT / GRID_SIZE);
- body.insert(body.begin(), newHead);
- if (!growing) {
- body.pop_back();
- }
- growing = false;
- }
- void grow() { growing = true; }
- void setDirection(Direction dir) {
- if ((dir == UP || dir == DOWN) && (currentDirection == LEFT || currentDirection == RIGHT)) {
- nextDirection = dir;
- }
- else if ((dir == LEFT || dir == RIGHT) && (currentDirection == UP || currentDirection == DOWN)) {
- nextDirection = dir;
- }
- }
- bool checkCollision() const {
- for (size_t i = 1; i < body.size(); ++i) {
- if (body[0].x == body[i].x && body[0].y == body[i].y) {
- return true;
- }
- }
- return false;
- }
- const std::vector<Point>& getBody() const { return body; }
- };
- class Game {
- private:
- Snake snake;
- Point food;
- bool gameOver;
- bool paused;
- int score;
- HWND hwnd;
- HDC hdc, memDC;
- HBITMAP memBitmap;
- HBRUSH snakeBrush, foodBrush, backgroundBrush;
- public:
- Game(HWND hWnd) : hwnd(hWnd), gameOver(false), paused(false), score(0) {
- srand(static_cast<unsigned>(time(nullptr)));
- spawnFood();
- hdc = GetDC(hwnd);
- memDC = CreateCompatibleDC(hdc);
- memBitmap = CreateCompatibleBitmap(hdc, WINDOW_WIDTH, WINDOW_HEIGHT);
- SelectObject(memDC, memBitmap);
- snakeBrush = CreateSolidBrush(RGB(255, 0, 0));
- foodBrush = CreateSolidBrush(RGB(255, 0, 0));
- backgroundBrush = CreateSolidBrush(RGB(0, 0, 0));
- }
- ~Game() {
- DeleteObject(snakeBrush);
- DeleteObject(foodBrush);
- DeleteObject(backgroundBrush);
- DeleteObject(memBitmap);
- DeleteDC(memDC);
- ReleaseDC(hwnd, hdc);
- }
- void spawnFood() {
- std::vector<Point> availableSpots;
- for (int x = 0; x < WINDOW_WIDTH / GRID_SIZE; ++x) {
- for (int y = 0; y < WINDOW_HEIGHT / GRID_SIZE; ++y) {
- Point p(x, y);
- if (!isSnakeOnPoint(p)) {
- availableSpots.push_back(p);
- }
- }
- }
- if (availableSpots.empty()) {
- gameOver = true;
- return;
- }
- food = availableSpots[rand() % availableSpots.size()];
- }
- bool isSnakeOnPoint(const Point& p) const {
- for (const auto& segment : snake.getBody()) {
- if (segment.x == p.x && segment.y == p.y) {
- return true;
- }
- }
- return false;
- }
- void update() {
- if (gameOver || paused) return;
- snake.move();
- if (snake.checkCollision()) {
- gameOver = true;
- return;
- }
- if (snake.getBody().front().x == food.x && snake.getBody().front().y == food.y) {
- snake.grow();
- spawnFood();
- score++;
- }
- }
- void render() {
- RECT rect = { 0, 0, WINDOW_WIDTH, WINDOW_HEIGHT };
- FillRect(memDC, &rect, backgroundBrush);
- for (const auto& segment : snake.getBody()) {
- RECT snakeRect = {
- segment.x * GRID_SIZE,
- segment.y * GRID_SIZE,
- (segment.x + 1) * GRID_SIZE,
- (segment.y + 1) * GRID_SIZE
- };
- FillRect(memDC, &snakeRect, snakeBrush);
- }
- RECT foodRect = {
- food.x * GRID_SIZE,
- food.y * GRID_SIZE,
- (food.x + 1) * GRID_SIZE,
- (food.y + 1) * GRID_SIZE
- };
- FillRect(memDC, &foodRect, foodBrush);
- WCHAR scoreText[32];
- swprintf_s(scoreText, L"Score: %d", score);
- SetBkMode(memDC, TRANSPARENT);
- SetTextColor(memDC, RGB(255, 255, 255));
- TextOut(memDC, 10, 10, scoreText, wcslen(scoreText));
- if (gameOver) {
- const WCHAR* gameOverText = L"Game Over! Press any arrow key to restart.";
- TextOut(memDC, WINDOW_WIDTH / 2 - 150, WINDOW_HEIGHT / 2, gameOverText, wcslen(gameOverText));
- }
- else if (paused) {
- const WCHAR* pausedText = L"Paused. Press any arrow key to start.";
- TextOut(memDC, WINDOW_WIDTH / 2 - 120, WINDOW_HEIGHT / 2, pausedText, wcslen(pausedText));
- }
- BitBlt(hdc, 0, 0, WINDOW_WIDTH, WINDOW_HEIGHT, memDC, 0, 0, SRCCOPY);
- }
- void togglePause() {
- paused = !paused;
- }
- void reset() {
- snake = Snake();
- spawnFood();
- score = 0;
- gameOver = false;
- paused = false;
- }
- void handleKeyPress(WPARAM wParam) {
- switch (wParam) {
- case VK_UP:
- case VK_DOWN:
- case VK_LEFT:
- case VK_RIGHT:
- if (gameOver) {
- reset();
- }
- else {
- Direction newDir;
- switch (wParam) {
- case VK_UP: newDir = UP; break;
- case VK_DOWN: newDir = DOWN; break;
- case VK_LEFT: newDir = LEFT; break;
- case VK_RIGHT: newDir = RIGHT; break;
- }
- snake.setDirection(newDir);
- if (paused) paused = false;
- }
- break;
- case VK_SPACE:
- togglePause();
- break;
- case VK_ESCAPE:
- reset();
- break;
- }
- }
- Game* game = nullptr;
- LRESULT CALLBACK WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam) {
- switch (uMsg) {
- case WM_CREATE:
- game = new Game(hwnd);
- SetTimer(hwnd, 1, MOVE_INTERVAL, nullptr);
- return 0;
- case WM_DESTROY:
- KillTimer(hwnd, 1);
- delete game;
- PostQuitMessage(0);
- return 0;
- case WM_TIMER:
- game->update();
- InvalidateRect(hwnd, nullptr, FALSE);
- return 0;
- case WM_PAINT:
- {
- PAINTSTRUCT ps;
- HDC hdc = BeginPaint(hwnd, &ps);
- game->render();
- EndPaint(hwnd, &ps);
- }
- return 0;
- case WM_KEYDOWN:
- game->handleKeyPress(wParam);
- return 0;
- }
- return DefWindowProc(hwnd, uMsg, wParam, lParam);
- }
- int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow) {
- const wchar_t CLASS_NAME[] = L"SnakeGameWindow";
- WNDCLASS wc = {};
- wc.lpfnWndProc = WindowProc;
- wc.hInstance = hInstance;
- wc.lpszClassName = CLASS_NAME;
- wc.hCursor = LoadCursor(nullptr, IDC_ARROW);
- RegisterClass(&wc);
- HWND hwnd = CreateWindowEx(
- 0,
- CLASS_NAME,
- L"Snake Game",
- WS_OVERLAPPEDWINDOW,
- CW_USEDEFAULT, CW_USEDEFAULT, WINDOW_WIDTH, WINDOW_HEIGHT,
- nullptr,
- nullptr,
- hInstance,
- nullptr
- );
- if (hwnd == nullptr) {
- return 0;
- }
- ShowWindow(hwnd, nCmdShow);
- MSG msg = {};
- while (GetMessage(&msg, nullptr, 0, 0)) {
- TranslateMessage(&msg);
- DispatchMessage(&msg);
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement