Switch from lists to vectors, clean up includes
This commit is contained in:
parent
e97ff2269a
commit
42c8414378
1 changed files with 13 additions and 16 deletions
29
src/Main.cpp
29
src/Main.cpp
|
@ -1,18 +1,15 @@
|
||||||
#include <SFML/Window/Keyboard.hpp>
|
|
||||||
#define WINDOW_WIDTH 400
|
|
||||||
#define WINDOW_HEIGHT 400
|
|
||||||
|
|
||||||
#define GRID_WIDTH 20
|
|
||||||
#define GRID_HEIGHT 20
|
|
||||||
|
|
||||||
#include <SFML/Graphics.hpp>
|
#include <SFML/Graphics.hpp>
|
||||||
#include <SFML/Graphics/Color.hpp>
|
#include <SFML/Graphics/Color.hpp>
|
||||||
#include <SFML/Graphics/RectangleShape.hpp>
|
#include <SFML/Graphics/RectangleShape.hpp>
|
||||||
#include <SFML/System/Vector2.hpp>
|
#include <SFML/System/Vector2.hpp>
|
||||||
#include <iostream>
|
#include <SFML/Window/Keyboard.hpp>
|
||||||
#include <string.h>
|
|
||||||
#include <array>
|
#define WINDOW_WIDTH 400
|
||||||
#include <list>
|
#define WINDOW_HEIGHT 400
|
||||||
|
|
||||||
|
#define GRID_WIDTH 20
|
||||||
|
#define GRID_HEIGHT 20
|
||||||
|
|
||||||
class TileType {
|
class TileType {
|
||||||
public:
|
public:
|
||||||
|
@ -39,8 +36,8 @@ class BlockType {
|
||||||
return list[rand() % 7];
|
return list[rand() % 7];
|
||||||
}
|
}
|
||||||
TileType* tile_type;
|
TileType* tile_type;
|
||||||
std::array<std::array<bool, 4>, 2> grid;
|
std::vector<std::vector<bool>> grid;
|
||||||
BlockType(TileType* _tile_type, const std::array<std::array<bool, 4>, 2>& _grid) {
|
BlockType(TileType* _tile_type, const std::vector<std::vector<bool>> _grid) {
|
||||||
tile_type = _tile_type;
|
tile_type = _tile_type;
|
||||||
grid = _grid;
|
grid = _grid;
|
||||||
}
|
}
|
||||||
|
@ -73,8 +70,8 @@ class Block {
|
||||||
position = sf::Vector2i(GRID_WIDTH / 2 - 2, 0);
|
position = sf::Vector2i(GRID_WIDTH / 2 - 2, 0);
|
||||||
rotation_state = 0;
|
rotation_state = 0;
|
||||||
}
|
}
|
||||||
std::list<sf::Vector2i> get_tiles() {
|
std::vector<sf::Vector2i> get_tiles() {
|
||||||
std::list<sf::Vector2i>list = {};
|
std::vector<sf::Vector2i>tiles = {};
|
||||||
for (int y = 0; y < 2; y++) {
|
for (int y = 0; y < 2; y++) {
|
||||||
for (int x = 0; x < 4; x++) {
|
for (int x = 0; x < 4; x++) {
|
||||||
if (!type->grid[y][x]) {
|
if (!type->grid[y][x]) {
|
||||||
|
@ -97,10 +94,10 @@ class Block {
|
||||||
}
|
}
|
||||||
int global_x = rotated_x + position.x;
|
int global_x = rotated_x + position.x;
|
||||||
int global_y = rotated_y + position.y;
|
int global_y = rotated_y + position.y;
|
||||||
list.push_front(sf::Vector2i(global_x, global_y));
|
tiles.push_back(sf::Vector2i(global_x, global_y));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return list;
|
return tiles;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue