#include<iostream> # include <windows.h> # include <stdlib.h> using namespace std; int main() { fighter f; f.drawPicture(); } class fighter{ public: int height = 40, width = 20; //游戏画面尺寸 int fighter_x = height / 2, fighter_y = width / 2; //飞机位置 int bullet_x, bullet_y; //子弹位置 int life = 3, mark = 0;//生命值和分数 int enemy_x = rand() % (width - 5) + 2, enemy_y = 1;//敌机位置 //fighter(int fighter_x, int fighter_y); void HideCursor() { CONSOLE_CURSOR_INFO cursor_info = { 1,0 }; //第二个值为О表示隐藏光标 SetConsoleCursorInfo(GetStdHandle(STD_OUTPUT_HANDLE), &cursor_info); } void zeroXy(int x, int y) { HANDLE handle = GetStdHandle(STD_OUTPUT_HANDLE); COORD pos; pos.X = x; pos.Y = y; SetConsoleCursorPosition(handle, pos); } void floatBullet() { } void drawPicture() { zeroXy(0, 0); cout << "生命值:" << life << " " << "分数:" << mark << endl;; for (int y = 0; y <= width; y++) { for (int x = 0; x <= height; x++) { if (y == 0 || y == width) { cout << "*"; } else if (x == 0 || x == height) { cout << "*"; } else if (x == fighter_x && y == fighter_y || y == fighter_y - 1 && x == fighter_x || y == fighter_y - 2 && x == fighter_x || x == fighter_x + 1 && y == fighter_y || x == fighter_x - 1 && y == fighter_y) { cout << "+";//飞机 } else if (x == enemy_x && y == enemy_y) { cout << "#";//敌机 } else if (x == bullet_x && y == bullet_y) { cout << "|"; } else { cout << " "; }//画出范围 } cout << endl; } } };如何优化
时间: 2024-04-04 12:02:15 浏览: 54
#include <iostream>
这份代码的优化方向取决于你想要达到的效果和目标。但是,以下是一些可以考虑的优化方案:
1. 将类的定义和实现分离:将类的定义放在头文件中,将实现放在源文件中,这样可以提高代码的可读性和维护性。
2. 使用 const 关键字:将不会被修改的变量标记为 const,这样可以避免不必要的错误和提高代码的清晰度。
3. 使用命名空间:使用命名空间可以避免命名冲突,提高代码的可读性和可维护性。
4. 减少重复代码:例如,可以将重复的画出范围代码提取出来,避免重复实现。
5. 合理使用 STL 库:例如,可以使用 vector 容器来存储多个敌机的位置信息,避免使用多个变量来存储敌机位置信息。
6. 添加注释:添加注释可以提高代码的可读性和维护性,使得代码更易于理解和修改。
7. 优化随机数生成:可以考虑使用更好的随机数生成算法,例如 Mersenne Twister 算法,避免使用 rand() 函数。
这些只是一些可以考虑的优化方案,具体取决于你的需求和目标。
阅读全文