Rewrite block definitions
This commit is contained in:
parent
f00b40e945
commit
f09b6c51e2
1 changed files with 37 additions and 8 deletions
45
src/Main.cpp
45
src/Main.cpp
|
@ -43,13 +43,42 @@ class BlockType {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
BlockType BlockType::i(&TileType::white, {{0, 0, 0, 0}, {1, 1, 1, 1}});
|
// https://gamedev.stackexchange.com/a/17978
|
||||||
BlockType BlockType::j(&TileType::red, {{1, 0, 0, 0}, {1, 1, 1, 0}});
|
BlockType BlockType::i(&TileType::white, {
|
||||||
BlockType BlockType::l(&TileType::green, {{0, 0, 0, 1}, {0, 1, 1, 1}});
|
{0, 0, 0, 0},
|
||||||
BlockType BlockType::o(&TileType::blue, {{0, 1, 1, 0}, {0, 1, 1, 0}});
|
{1, 1, 1, 1},
|
||||||
BlockType BlockType::s(&TileType::yellow, {{0, 1, 1, 0}, {1, 1, 0, 0}});
|
{0, 0, 0, 0},
|
||||||
BlockType BlockType::t(&TileType::magenta, {{0, 1, 0, 0}, {1, 1, 1, 0}});
|
{0, 0, 0, 0}
|
||||||
BlockType BlockType::z(&TileType::cyan, {{1, 1, 0, 0}, {0, 1, 1, 0}});
|
});
|
||||||
|
BlockType BlockType::j(&TileType::red, {
|
||||||
|
{1, 0, 0},
|
||||||
|
{1, 1, 1},
|
||||||
|
{0, 0, 0}
|
||||||
|
});
|
||||||
|
BlockType BlockType::l(&TileType::green, {
|
||||||
|
{0, 0, 1},
|
||||||
|
{1, 1, 1},
|
||||||
|
{0, 0, 0}
|
||||||
|
});
|
||||||
|
BlockType BlockType::o(&TileType::blue, {
|
||||||
|
{1, 1},
|
||||||
|
{1, 1}
|
||||||
|
});
|
||||||
|
BlockType BlockType::s(&TileType::yellow, {
|
||||||
|
{0, 1, 1},
|
||||||
|
{1, 1, 0},
|
||||||
|
{0, 0, 0}
|
||||||
|
});
|
||||||
|
BlockType BlockType::t(&TileType::magenta, {
|
||||||
|
{0, 1, 0},
|
||||||
|
{1, 1, 1},
|
||||||
|
{0, 0, 0}
|
||||||
|
});
|
||||||
|
BlockType BlockType::z(&TileType::cyan, {
|
||||||
|
{1, 1, 0},
|
||||||
|
{0, 1, 1},
|
||||||
|
{0, 0, 0}
|
||||||
|
});
|
||||||
BlockType* BlockType::list[] = {&i, &j, &l, &o, &s, &t, &z};
|
BlockType* BlockType::list[] = {&i, &j, &l, &o, &s, &t, &z};
|
||||||
|
|
||||||
class Block {
|
class Block {
|
||||||
|
@ -66,7 +95,7 @@ class Block {
|
||||||
int rotation_state;
|
int rotation_state;
|
||||||
Block() {
|
Block() {
|
||||||
type = BlockType::random();
|
type = BlockType::random();
|
||||||
position = sf::Vector2i(GRID_WIDTH / 2 - 2, 0);
|
position = sf::Vector2i(GRID_WIDTH / 2 - type->grid[0].size() / 2, 0);
|
||||||
rotation_state = 0;
|
rotation_state = 0;
|
||||||
}
|
}
|
||||||
std::vector<sf::Vector2i> get_tiles() {
|
std::vector<sf::Vector2i> get_tiles() {
|
||||||
|
|
Loading…
Add table
Reference in a new issue