-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTetromino.cpp
More file actions
83 lines (64 loc) · 1.21 KB
/
Tetromino.cpp
File metadata and controls
83 lines (64 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#include "Tetromino.h"
#include <iostream>
#include <conio2.h>
using namespace std;
Tetromino::Tetromino() {
}
void Tetromino::setPosition(int x, int y){
x_pos = x;
y_pos = y;
}
int Tetromino::getXPosition(){
return x_pos;
}
int Tetromino::getYPosition(){
return y_pos;
}
void Tetromino::fall(){
y_pos++;
}
void Tetromino::moveRight(){
x_pos++;
}
void Tetromino::moveLeft(){
x_pos--;
}
void Tetromino::rotateRight(){
int auxShape[4][4];
for (int i = 3; i >= 0; i--) {
for (int j = 0; j < 4; j++) {
auxShape[i][j] = shape[3 - j][i];
}
}
setShapeOfTetromino(auxShape);
}
void Tetromino::rotateLeft(){
int auxShape[4][4];
for (int i = 0; i < 4; i++) {
for (int j = 0; j < 4; j++) {
auxShape[i][j] = shape[j][3-i];
}
}
setShapeOfTetromino(auxShape);
}
void Tetromino::setShapeOfTetromino(int auxShape[4][4]){
for (int i = 0; i < 4; i++){
for (int j = 0; j < 4; j++){
shape[i][j] = auxShape[i][j];
}
}
}
bool Tetromino::bottomCollides(){
int bottomLimit = 0;
for(int i = 3; i >= 0; i--){
for(int j = 0; j < 4; j++){
if(shape[i][j] == 2 && i > bottomLimit){
bottomLimit = i;
}
}
}
if(y_pos + bottomLimit + 1 >= 21){
return true;
}
return false;
}