简易游戏 2048 制作
2024-07-03 17:01:10 226人阅读
- // Matrix.h
- #ifndef MATRIX_H
- #define MATRIX_H
-
- #include<iostream>
- #include<time.h>
- #include<stdlib.h>
-
- #define rows 4
- #define cols 4
- #define L 6
-
- using std::ostream;
-
- classMatrix{
- friend ostream&operator<<(ostream& out,constMatrix& matirx);
- // here is an output example
- // -----------------------------
- // | 16| 8| 4| 2|
- // | 8 | 8| 4| 2|
- // | | 4| 8| 2|
- // | | | 2| 2|
- // -----------------------------
- public:
- Matrix(int p1,int p2);
- bool moveLeft();// return true if the matrix changes
- bool moveRight();// return true if the matrix changes
- bool moveUp();// return true if the matrix changes
- bool moveDown();// return true if the matrix changes
- bool add(int p);// return true if the matrix changes
- void update2(){// add a 2 to a random position
- srand((unsigned)time(NULL));
- unsignedint seed;
- while(true){
- int n = rand_r(&seed)%(rows*cols);
- if(add(n))
- return;
- }
- }
-
- private:
- int num[rows][cols];
- };
-
- #endif
// Matrix.cpp
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉:
投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。