【C++/控制台】2048小游戏

news/2025/1/12 15:06:20/

源代码:

#include <iostream>
#include <windows.h>
#include <stdio.h>
#include <math.h>
#include <stdlib.h>
#include <conio.h>
#include <time.h>// #define KEY_DOWN(VK_NONAME) ((GetAsyncKeyState(VK_NONAME) & 0x8000) ? 1:0)const int W = 4;
const int H = 4;
int board[H][W];
int score;
const int keymap[4] = {72, 80, 75, 77}; // 依次为上下左右
const int dx[4] = {-1, 1, 0, 0};        // 依次对应上下左右
const int dy[4] = {0, 0, -1, 1};// 2 4 8 16 32 64 128 256 512 1024 2048 4096 8192 16384  (超过这个数字的从头开始)
const int color[] = {15,8,6,14,4,2,12,5,13,3,10,11,1,9,
};/*  颜色说明:* 0 = 黑色       8 = 灰色* 1 = 蓝色       9 = 淡蓝色* 2 = 绿色       10 = 淡绿色* 3 = 浅绿色     11 = 淡浅绿色* 4 = 红色       12 = 淡红色* 5 = 紫色       13 = 淡紫色* 6 = 黄色       14 = 淡黄色* 7 = 白色       15 = 亮白色*/
bool judge() {for (int i = 0; i < H; i++)for (int j = 0; j < W; j++) {if (board[i][j] == 0)return false;else if (i < 3 && j < 3)if (board[i][j] == board[i + 1][j] || board[i][j] == board[i][j + 1])return false;}return true;
}void Set_Color(int color) {HANDLE handle = GetStdHandle(STD_OUTPUT_HANDLE);SetConsoleTextAttribute(handle, FOREGROUND_INTENSITY | color);
}void display() {system("cls");for (int i = 0; i < H; i++) {for (int j = 0; j < W; j++) {if (board[i][j] == 0)printf("     ");else {Set_Color(color[(int)log2(board[i][j]) - 1]); // 根据数字设置颜色printf("%-5d", board[i][j]);Set_Color(7);}if (j < 3)putchar('|');}putchar('\n');for (int r = 0; r < 23; r++)putchar('-');putchar('\n');}printf("当前得分: %d", score);
}void move(int dir) {int x = 0, y = 0;if (dy[dir]) {// 水平移动for (int i = 0; i < H; i++) {// 遍历每一行y = (dy[dir] == 1) ? 3 : 0;int j = y;int top = y;while (abs(j - y) < 3) {j -= dy[dir];if (board[i][top] == 0 && board[i][j] != 0) {board[i][top] = board[i][j];board[i][j] = 0;} else if (board[i][top] != 0 && board[i][j] == board[i][top]) {board[i][top] *= 2;score += board[i][top];board[i][j] = 0;} else if (board[i][top] * board[i][j] != 0 && board[i][top] != board[i][j]) {top -= dy[dir];if (j != top) {board[i][top] = board[i][j];board[i][j] = 0;}}}}} else if (dx[dir]) {// 垂直移动for (int j = 0; j < W; j++) {// 遍历每一列x = (dx[dir] == 1) ? 3 : 0;int i = x;int top = x;while (abs(i - x) < 3) {i -= dx[dir];if (board[top][j] == 0 && board[i][j] != 0) {board[top][j] = board[i][j];board[i][j] = 0;} else if (board[top][j] != 0 && board[i][j] == board[top][j]) {board[top][j] *= 2;score += board[top][j];board[i][j] = 0;} else if (board[top][j] * board[i][j] != 0 && board[top][j] != board[i][j]) {top -= dx[dir];if (i != top) {board[top][j] = board[i][j];board[i][j] = 0;}}}}}
}void newNum() {int flag = 0;int n = 0;for (int i = 0; i < 4; i++)for (int j = 0; j < 4; j++)if (board[i][j] == 0)n++;srand((unsigned)time(NULL));if (n == 0)return;int end = rand() % n;int t = 0;for (int i = 0; i < 4 && !flag; i++)for (int j = 0; j < 4 && !flag; j++) {if (board[i][j] == 0) {if (t == end) {board[i][j] += 2;flag = 1;} elset++;}}
}void play() {newNum();display();while (true) {int ch = _getch();for (int i = 0; i < 4; i++) {if (ch == keymap[i]) {move(i);if (judge())return;newNum();display();}}Sleep(10); // 防止连按}
}void init() {system("mode con:cols=24 lines=10");memset(board, 0, sizeof(board));score = 0;
}int main() {init();play();system("cls");printf("\n\n\tGAME OVER!");printf("\n\n\tSCORE:%d", score);getchar();
}

运行结果:


http://www.ppmy.cn/news/1562541.html

相关文章

VSCode Live Server 插件安装和使用

VSCode Live Server是一个由Ritwick Dey开发的Visual Studio Code扩展插件&#xff0c;它提供了一个带有实时重载功能的本地开发服务器。在VSCode中安装和使用Live Server插件进行实时预览和调试Web应用程序。这将大大提高前端开发效率&#xff0c;使网页设计和开发变得更为流畅…

rabbitmq的三个交换机及简单使用

提前说一下&#xff0c;创建队列&#xff0c;交换机&#xff0c;绑定交换机和队列都是在生产者。消费者只负责监听就行了&#xff0c;不用配其他的。 完成这个场景需要两个服务哦。 1直连交换机-生产者的代码。 在配置类中创建队列&#xff0c;交换机&#xff0c;绑定交换机…

如何轻松反转C# List<T>中的元素顺序

在C#中&#xff0c;有多种方法可以反转 List<T> 的元素顺序。以下是几种常见的方法&#xff1a; 方法一&#xff1a;使用 List<T>.Reverse 方法 List<T> 类提供了一个内置的 Reverse 方法&#xff0c;可以就地反转列表中的元素顺序。 using System; using…

elasticsearch常见故障汇总

es的入库突然出现异常&#xff0c;大量超时 查看集群状态&#xff0c;状态为红色 GET _cluster/health 具体查看&#xff0c;实体&#xff0c;看看是那些索引状态异常&#xff0c;看到wb_info_2025-01-08索引状态异常 GET _cat/indices?v 注&#xff1a;其他上面的步骤可以在…

5种IO模型

目录 一、认识IO二、5种IO模型三、非阻塞IO代码 一、认识IO 什么是IO&#xff1f; Input(输入)和Output(输出)。 冯诺依曼体系结构中&#xff0c;数据从输入设备拷贝到内存&#xff0c;经过处理后&#xff0c;再从内存拷贝到输出设备。现实情况中&#xff0c;数据并不是那么流…

pandas与sql对应关系【帮助sql使用者快速上手pandas】

本页旨在提供一些如何使用pandas执行各种SQL操作的示例&#xff0c;来帮助SQL使用者快速上手使用pandas。 目录 SQL语法一、选择SELECT1、选择2、添加计算列 二、连接JOIN ON1、内连接2、左外连接3、右外连接4、全外连接 三、过滤WHERE1、AND2、OR3、IS NULL4、IS NOT NULL5、B…

基于单片机的粮仓环境监测系统设计

本设计是以单片机为核心的粮仓环境监测系统&#xff0c;由单片机、温湿度检测模块、烟雾检测模块、显示模块、继电器模块、NB-IoT通信模块、报警电路等组成&#xff0c;以实现对粮仓内环境的监测功能&#xff0c;使用NB-IoT通信技术将环境信息上传至云平台&#xff0c;以便管理…

【HUAWEI】HCIP-AI-MindSpore Developer V1.0 | 第五章 自然语言处理原理与应用(3 And 4) | 学习笔记

目录 第五章 自然语言处理原理与应用 3 自然语言处理应用系统 ■ 对话系统 ■ 任务型对话系统架构 ■ 对话系统关键技术-自然语言理解 ■ 对话系统关键技术-对话管理 ■ 对话系统关键技术-自然语言生成 4 基于 MindSpore 的自然语言处理实践 ■ 模型实现 ▲ MindSpor…