C++实现俄罗斯方块(Windows控制台版)

2024-09-08 14:28

本文主要是介绍C++实现俄罗斯方块(Windows控制台版),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

C++实现俄罗斯方块(Windows控制台版)

在油管上看到一个使用C++控制台编写的俄罗斯方块小游戏,源代码200多行,B站上也有相关的讲解视频,非常不错,值得学习。
B站讲解视频地址为:【百万好评】国外技术大神C++游戏编程实战教程,油管580W收藏,新手10小时入门,并快速达到游戏开发能力(中英字幕) B站
CSDN博主千帐灯无此声还为此写了一篇博客:C++实现俄罗斯方块(源码+详解),讲解得已经非常详细了,为此我就不赘余了。
Github源代码地址为:https://github.com/OneLoneCoder/Javidx9/blob/master/SimplyCode/OneLoneCoder_Tetris.cpp

特此贴上对应的C++源代码,记录一下:

/*OneLoneCoder.com - Command Line Tetris"Put Your Money Where Your Mouth Is" - @Javidx9License~~~~~~~Copyright (C) 2018  Javidx9This program comes with ABSOLUTELY NO WARRANTY.This is free software, and you are welcome to redistribute itunder certain conditions; See license for details.Original works located at:https://www.github.com/onelonecoderhttps://www.onelonecoder.comhttps://www.youtube.com/javidx9GNU GPLv3https://github.com/OneLoneCoder/videos/blob/master/LICENSEFrom Javidx9 :)~~~~~~~~~~~~~~~Hello! Ultimately I don't care what you use this for. It's intended to beeducational, and perhaps to the oddly minded - a little bit of fun.Please hack this, change it and use it in any way you see fit. You acknowledgethat I am not responsible for anything bad that happens as a result ofyour actions. However this code is protected by GNU GPLv3, see the license in thegithub repo. This means you must attribute me if you use it. You can view thislicense here: https://github.com/OneLoneCoder/videos/blob/master/LICENSECheers!Background~~~~~~~~~~I made a video "8-Bits of advice for new programmers" (https://youtu.be/vVRCJ52g5m4)and suggested that building a tetris clone instead of Dark Sould IV might be a betterapproach to learning to code. Tetris is nice as it makes you think about algorithms.Controls are Arrow keys Left, Right & Down. Use Z to rotate the piece.You score 25pts per tetronimo, and 2^(number of lines)*100 when you get lines.Future Modifications~~~~~~~~~~~~~~~~~~~~1) Show next block and line counterAuthor~~~~~~Twitter: @javidx9Blog: www.onelonecoder.comVideo:~~~~~~https://youtu.be/8OK8_tHeCIALast Updated: 30/03/2017
*/#include <iostream>
#include <thread>
#include <vector>
using namespace std;#include <stdio.h>
#include <Windows.h>int nScreenWidth = 80;			// Console Screen Size X (columns)
int nScreenHeight = 30;			// Console Screen Size Y (rows)
wstring tetromino[7];
int nFieldWidth = 12;			// 表示场地的宽度,它的值为 12。这意味着在水平方向上,场地被分割成了 12 个单元格或列
int nFieldHeight = 18;			// nFieldHeight 表示场地的高度,它的值为 18。这意味着在垂直方向上,场地被分割成了 18 个单元格或行
// 一个指向无符号字符的指针,初始化为 nullptr。这个指针通常用于动态分配内存,并表示场地的状态或布局。
// 通过使用指针,可以在程序运行时为场地分配所需的内存空间
unsigned char* pField = nullptr;// 方块旋转
// 据给定的方块坐标(px, py)和旋转次数r,返回旋转后方块的索引位置
int Rotate(int px, int py, int r)
{int pi = 0;switch (r % 4){case 0: // 0 degrees			// 0  1  2  3pi = py * 4 + px;			// 4  5  6  7break;						// 8  9 10 11//12 13 14 15case 1: // 90 degrees			//12  8  4  0pi = 12 + py - (px * 4);	//13  9  5  1break;						//14 10  6  2//15 11  7  3case 2: // 180 degrees			//15 14 13 12pi = 15 - (py * 4) - px;	//11 10  9  8break;						// 7  6  5  4// 3  2  1  0case 3: // 270 degrees			// 3  7 11 15pi = 3 - py + (px * 4);		// 2  6 10 14break;						// 1  5  9 13}								// 0  4  8 12return pi;
}// 检查方块是否适合放置在指定位置
/******************************************
* 判断给定的方块是否适合放置在指定的位置(nPosX, nPosY)上。
* 通过遍历方块的每个格子,并将其与场地进行匹配,判断方块是否和场地中的其他方块冲突
* nTetromino:表示方块的类型(编号)
* nRotation:表示方块的旋转状态
* nPosX:表示要放置方块的水平位置(X 坐标)
* nPosY:表示要放置方块的垂直位置(Y 坐标)
*******************************************/
bool DoesPieceFit(int nTetromino, int nRotation, int nPosX, int nPosY)
{// All Field cells >0 are occupiedfor (int px = 0; px < 4; px++)	// 循环遍历方块的水平位置for (int py = 0; py < 4; py++)	// 循环遍历方块的垂直位置{// Get index into piece// 获取方块内部位置的索引int pi = Rotate(px, py, nRotation);// Get index into field// 获取方块在游戏区域中的索引int fi = (nPosY + py) * nFieldWidth + (nPosX + px);// Check that test is in bounds. Note out of bounds does// not necessarily mean a fail, as the long vertical piece// can have cells that lie outside the boundary, so we'll// just ignore themif (nPosX + px >= 0 && nPosX + px < nFieldWidth)	// 检查方块是否在横向范围内{if (nPosY + py >= 0 && nPosY + py < nFieldHeight)	// 检查方块是否在纵向范围内{// In Bounds so do collision checkif (tetromino[nTetromino][pi] != L'.' && pField[fi] != 0)	// 检查方块和游戏区域是否有重叠// 第一个碰撞就返回失败return false; // fail on first hit}}}// 方块适合放置在指定位置return true;
}/*****************************************************
游戏的主函数。包括创建方块、初始化场地和屏幕,
控制游戏逻辑的循环,处理用户输入,更新方块的位置和状态,
判断方块能否放置,渲染输出到屏幕,计分和游戏结束
*****************************************************/
int main()
{// Create Screen Buffer// 创建一个带有空格字符初始化的屏幕缓冲区,并将其设置为活动的屏幕缓冲区,以便后续可以将字符输出到控制台屏幕上wchar_t* screen = new wchar_t[nScreenWidth * nScreenHeight];for (int i = 0; i < nScreenWidth * nScreenHeight; i++) screen[i] = L' ';HANDLE hConsole = CreateConsoleScreenBuffer(GENERIC_READ | GENERIC_WRITE, 0, NULL, CONSOLE_TEXTMODE_BUFFER, NULL);SetConsoleActiveScreenBuffer(hConsole);// 用于记录写入到控制台屏幕缓冲区的字节数DWORD dwBytesWritten = 0;tetromino[0].append(L"..X...X...X...X."); // Tetronimos 4x4tetromino[1].append(L"..X..XX...X.....");tetromino[2].append(L".....XX..XX.....");tetromino[3].append(L"..X..XX..X......");tetromino[4].append(L".X...XX...X.....");tetromino[5].append(L".X...X...XX.....");tetromino[6].append(L"..X...X..XX.....");pField = new unsigned char[nFieldWidth * nFieldHeight]; // Create play field bufferfor (int x = 0; x < nFieldWidth; x++) // Board Boundaryfor (int y = 0; y < nFieldHeight; y++)pField[y * nFieldWidth + x] = (x == 0 || x == nFieldWidth - 1 || y == nFieldHeight - 1) ? 9 : 0;// Game Logicbool bKey[4];int nCurrentPiece = 0;int nCurrentRotation = 0;int nCurrentX = nFieldWidth / 2;int nCurrentY = 0;int nSpeed = 20;			// 控制方块下落速度的变量,初始化为20int nSpeedCount = 0;		// 一个计数器,用于记录方块下落的帧数,初始化为0bool bForceDown = false;	// 用于标记是否强制方块向下移动,初始化为falsebool bRotateHold = true;	// 是否连续旋转,表明用户是否按住了旋转按钮int nPieceCount = 0;int nScore = 0;vector<int> vLines;bool bGameOver = false;// 绘制游戏界面并更新显示while (!bGameOver) // Main Loop{// Timing =======================// 将当前线程暂停执行,等待50毫秒,以控制游戏帧率this_thread::sleep_for(50ms); // Small Step = 1 Game TicknSpeedCount++;				  // 将计数器nSpeedCounter的值加1,表示经过了一个帧bForceDown = (nSpeedCount == nSpeed);	// 判断计数器是否等于设定数量,如果相等,则将bForceDown设置为true,表示需要强制方块向下移动// Input ========================for (int k = 0; k < 4; k++)								// R   L   D Z// 判断了指定键码对应的按键是否处于按下状态。如果按键被按下,则结果为真,否则为假。bKey[k] = (0x8000 & GetAsyncKeyState((unsigned char)("\x27\x25\x28Z"[k]))) != 0;// Game Logic ===================// 游戏逻辑// Handle player movement// 处理玩家的移动// 按下右键 rightnCurrentX += (bKey[0] && DoesPieceFit(nCurrentPiece, nCurrentRotation, nCurrentX + 1, nCurrentY)) ? 1 : 0;// 按下左键 leftnCurrentX -= (bKey[1] && DoesPieceFit(nCurrentPiece, nCurrentRotation, nCurrentX - 1, nCurrentY)) ? 1 : 0;// 按下下键 downnCurrentY += (bKey[2] && DoesPieceFit(nCurrentPiece, nCurrentRotation, nCurrentX, nCurrentY + 1)) ? 1 : 0;// Rotate, but latch to stop wild spinning// 按下Z键,旋转if (bKey[3])	// 按下Z键{nCurrentRotation += (bRotateHold && DoesPieceFit(nCurrentPiece, nCurrentRotation + 1, nCurrentX, nCurrentY)) ? 1 : 0;bRotateHold = false;}elsebRotateHold = true;	// 无法连续旋转// Force the piece down the playfield if it's time// 如果是时候,将棋子强行推向游戏场地if (bForceDown){// Update difficulty every 50 pieces// 每 50 件更新一次难度nSpeedCount = 0;nPieceCount++;if (nPieceCount % 50 == 0)if (nSpeed >= 10) nSpeed--;// Test if piece can be moved down// 测试是否可以向下移动if (DoesPieceFit(nCurrentPiece, nCurrentRotation, nCurrentX, nCurrentY + 1))nCurrentY++; // It can, so do it!else{// It can't! Lock the piece in place// 它不能!将工件锁定到位for (int px = 0; px < 4; px++)for (int py = 0; py < 4; py++)if (tetromino[nCurrentPiece][Rotate(px, py, nCurrentRotation)] != L'.')pField[(nCurrentY + py) * nFieldWidth + (nCurrentX + px)] = nCurrentPiece + 1;// Check for linesfor (int py = 0; py < 4; py++)if (nCurrentY + py < nFieldHeight - 1){bool bLine = true;for (int px = 1; px < nFieldWidth - 1; px++)bLine &= (pField[(nCurrentY + py) * nFieldWidth + px]) != 0;if (bLine){// Remove Line, set to =for (int px = 1; px < nFieldWidth - 1; px++)pField[(nCurrentY + py) * nFieldWidth + px] = 8;vLines.push_back(nCurrentY + py);}}nScore += 25;if (!vLines.empty())	nScore += (1 << vLines.size()) * 100;// Pick New PiecenCurrentX = nFieldWidth / 2;nCurrentY = 0;nCurrentRotation = 0;nCurrentPiece = rand() % 7;// If piece does not fit straight away, game over!bGameOver = !DoesPieceFit(nCurrentPiece, nCurrentRotation, nCurrentX, nCurrentY);}}// Display ======================// Draw Field// nFieldWidth游戏界面宽度,nFieldHeight游戏界面高度;注意与屏幕宽度和高度区分// nScreenWidth屏幕宽度,nScreenHeight屏幕高度for (int x = 0; x < nFieldWidth; x++)for (int y = 0; y < nFieldHeight; y++)screen[(y + 2) * nScreenWidth + (x + 2)] = L" ABCDEFG=#"[pField[y * nFieldWidth + x]];// Draw Current Piece// 绘制当前方块for (int px = 0; px < 4; px++)	// 循环遍历方块的水平位置for (int py = 0; py < 4; py++)	// 循环遍历方块的垂直位置if (tetromino[nCurrentPiece][Rotate(px, py, nCurrentRotation)] != L'.')	// 检查方块是否存在于当前位置// 注意:65代表大写的Ascreen[(nCurrentY + py + 2) * nScreenWidth + (nCurrentX + px + 2)] = nCurrentPiece + 65;	// 将方块绘制到屏幕上(加上适当的偏移量)// Draw Scoreswprintf_s(&screen[2 * nScreenWidth + nFieldWidth + 6], 16, L"SCORE: %8d", nScore);// Animate Line Completionif (!vLines.empty()){// Display Frame (cheekily to draw lines)WriteConsoleOutputCharacter(hConsole, screen, nScreenWidth * nScreenHeight, { 0,0 }, &dwBytesWritten);this_thread::sleep_for(400ms); // Delay a bitfor (auto& v : vLines)for (int px = 1; px < nFieldWidth - 1; px++){for (int py = v; py > 0; py--)pField[py * nFieldWidth + px] = pField[(py - 1) * nFieldWidth + px];pField[px] = 0;}vLines.clear();}// Display Frame// 将字符写入控制台的输出缓冲区// 将 screen 数组中的字符数据写入到控制台的输出缓冲区中,并显示在控制台窗口上WriteConsoleOutputCharacter(hConsole, screen, nScreenWidth * nScreenHeight, { 0,0 }, &dwBytesWritten);}// Oh Dear// 游戏结束 查看分数CloseHandle(hConsole);cout << "Game Over!! Score:" << nScore << endl;system("pause");return 0;
}

VS2022中运行上述代码:

C++控制台版俄罗斯方块
其中有一点需要注意:窗口大小的问题,git clone源码100%相同,但输出不一样。

窗口大小的问题。
Windows11中Win+R键打开cmd命令行窗口,鼠标移动到窗口上方白色横条处,右键 - 设置 - 启动 - 启动大小👇改成下面这个,列改成80,行改成30,如下图所示:
在这里插入图片描述
对应代码中的:

int nScreenWidth = 80;			// Console Screen Size X (columns)
int nScreenHeight = 30;			// Console Screen Size Y (rows)

参考资料

  • 【百万好评】国外技术大神C++游戏编程实战教程,油管580W收藏,新手10小时入门,并快速达到游戏开发能力(中英字幕) B站
  • C++实现俄罗斯方块(源码+详解)
  • OneLoneCoder_Tetris.cpp
  • 如何做一个俄罗斯方块4:形状碰撞检测(上)

这篇关于C++实现俄罗斯方块(Windows控制台版)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1148358

相关文章

hdu1043(八数码问题,广搜 + hash(实现状态压缩) )

利用康拓展开将一个排列映射成一个自然数,然后就变成了普通的广搜题。 #include<iostream>#include<algorithm>#include<string>#include<stack>#include<queue>#include<map>#include<stdio.h>#include<stdlib.h>#include<ctype.h>#inclu

【C++ Primer Plus习题】13.4

大家好,这里是国中之林! ❥前些天发现了一个巨牛的人工智能学习网站,通俗易懂,风趣幽默,忍不住分享一下给大家。点击跳转到网站。有兴趣的可以点点进去看看← 问题: 解答: main.cpp #include <iostream>#include "port.h"int main() {Port p1;Port p2("Abc", "Bcc", 30);std::cout <<

C++包装器

包装器 在 C++ 中,“包装器”通常指的是一种设计模式或编程技巧,用于封装其他代码或对象,使其更易于使用、管理或扩展。包装器的概念在编程中非常普遍,可以用于函数、类、库等多个方面。下面是几个常见的 “包装器” 类型: 1. 函数包装器 函数包装器用于封装一个或多个函数,使其接口更统一或更便于调用。例如,std::function 是一个通用的函数包装器,它可以存储任意可调用对象(函数、函数

C++11第三弹:lambda表达式 | 新的类功能 | 模板的可变参数

🌈个人主页: 南桥几晴秋 🌈C++专栏: 南桥谈C++ 🌈C语言专栏: C语言学习系列 🌈Linux学习专栏: 南桥谈Linux 🌈数据结构学习专栏: 数据结构杂谈 🌈数据库学习专栏: 南桥谈MySQL 🌈Qt学习专栏: 南桥谈Qt 🌈菜鸡代码练习: 练习随想记录 🌈git学习: 南桥谈Git 🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈�

【C++】_list常用方法解析及模拟实现

相信自己的力量,只要对自己始终保持信心,尽自己最大努力去完成任何事,就算事情最终结果是失败了,努力了也不留遗憾。💓💓💓 目录   ✨说在前面 🍋知识点一:什么是list? •🌰1.list的定义 •🌰2.list的基本特性 •🌰3.常用接口介绍 🍋知识点二:list常用接口 •🌰1.默认成员函数 🔥构造函数(⭐) 🔥析构函数 •🌰2.list对象

【Prometheus】PromQL向量匹配实现不同标签的向量数据进行运算

✨✨ 欢迎大家来到景天科技苑✨✨ 🎈🎈 养成好习惯,先赞后看哦~🎈🎈 🏆 作者简介:景天科技苑 🏆《头衔》:大厂架构师,华为云开发者社区专家博主,阿里云开发者社区专家博主,CSDN全栈领域优质创作者,掘金优秀博主,51CTO博客专家等。 🏆《博客》:Python全栈,前后端开发,小程序开发,人工智能,js逆向,App逆向,网络系统安全,数据分析,Django,fastapi

让树莓派智能语音助手实现定时提醒功能

最初的时候是想直接在rasa 的chatbot上实现,因为rasa本身是带有remindschedule模块的。不过经过一番折腾后,忽然发现,chatbot上实现的定时,语音助手不一定会有响应。因为,我目前语音助手的代码设置了长时间无应答会结束对话,这样一来,chatbot定时提醒的触发就不会被语音助手获悉。那怎么让语音助手也具有定时提醒功能呢? 我最后选择的方法是用threading.Time

Android实现任意版本设置默认的锁屏壁纸和桌面壁纸(两张壁纸可不一致)

客户有些需求需要设置默认壁纸和锁屏壁纸  在默认情况下 这两个壁纸是相同的  如果需要默认的锁屏壁纸和桌面壁纸不一样 需要额外修改 Android13实现 替换默认桌面壁纸: 将图片文件替换frameworks/base/core/res/res/drawable-nodpi/default_wallpaper.*  (注意不能是bmp格式) 替换默认锁屏壁纸: 将图片资源放入vendo

06 C++Lambda表达式

lambda表达式的定义 没有显式模版形参的lambda表达式 [捕获] 前属性 (形参列表) 说明符 异常 后属性 尾随类型 约束 {函数体} 有显式模版形参的lambda表达式 [捕获] <模版形参> 模版约束 前属性 (形参列表) 说明符 异常 后属性 尾随类型 约束 {函数体} 含义 捕获:包含零个或者多个捕获符的逗号分隔列表 模板形参:用于泛型lambda提供个模板形参的名

C#实战|大乐透选号器[6]:实现实时显示已选择的红蓝球数量

哈喽,你好啊,我是雷工。 关于大乐透选号器在前面已经记录了5篇笔记,这是第6篇; 接下来实现实时显示当前选中红球数量,蓝球数量; 以下为练习笔记。 01 效果演示 当选择和取消选择红球或蓝球时,在对应的位置显示实时已选择的红球、蓝球的数量; 02 标签名称 分别设置Label标签名称为:lblRedCount、lblBlueCount