game/tetris.cpp

774 lines
27 KiB
C++
Raw Normal View History

2020-08-22 23:15:46 +00:00
#include "sdlpp.hpp"
#include <thread>
#include <chrono>
#include <mutex>
#include <SDL2/SDL2_framerate.h>
#define COLIDER_ID 0x00000001
#define BRICK_ID 0x00000002
#define GAME_OVER 0x00000003
#define LEFT_BORDER 0.3
#define RIGHT_BORDER 0.7
#define BOTTOM_BORDER 1
#define TOP_BORDER 0.16
#define BLOCK_SIZE 0.04
2020-08-22 23:15:46 +00:00
bool pause = false;
int pause_select = 0;
int pause_max = 1;
int ticks_till_next = 1500;
int ticks_till_fall = 500;
int ticks_till_descend = 50;
2020-08-23 07:50:05 +00:00
std::vector< std::shared_ptr< SDLPP::RectangleRender > > pause_options;
std::shared_ptr< SDLPP::TextRenderer > score_texture;
std::shared_ptr< SDLPP::Renderer > active_renderer;
2020-08-22 23:15:46 +00:00
int score = 0;
bool update_score = false;
2020-08-23 07:50:05 +00:00
std::shared_ptr< SDLPP::Font > font;
std::shared_ptr< SDLPP::Scene > active_scene;
std::shared_ptr< SDLPP::Scene > pause_scene;
2020-08-22 23:15:46 +00:00
class TetrisPiece {
public:
TetrisPiece() {
original_pos.reserve( 4 );
}
2020-08-23 07:50:05 +00:00
void addPiece( std::shared_ptr< SDLPP::RectangleRender > piece, int x,
int y ) {
pieces.push_back( piece );
pieces_rel_position.push_back( { 0, 0, 0, 0 } );
2020-08-22 23:15:46 +00:00
// done this way for SPEEEEEEED
2020-08-23 07:50:05 +00:00
// left
pieces_rel_position.back()[0] = ( x < 0 ) * ( -1 ) * x;
// right
pieces_rel_position.back()[1] = ( x > 0 ) * x;
// top
pieces_rel_position.back()[2] = ( y < 0 ) * ( -1 ) * y;
// bottom
pieces_rel_position.back()[3] = ( y > 0 ) * y;
2020-08-22 23:15:46 +00:00
}
void rotate() {
2020-08-23 07:50:05 +00:00
for ( unsigned long i = 0; i < pieces.size(); i++ ) {
2020-08-22 23:15:46 +00:00
auto &piece = pieces[i];
auto &positions = pieces_rel_position[i];
auto position = piece->getPos();
original_pos[i] = position;
position.first += positions[0] * BLOCK_SIZE;
position.first -= positions[1] * BLOCK_SIZE;
position.second += positions[2] * BLOCK_SIZE;
position.second -= positions[3] * BLOCK_SIZE;
2020-08-22 23:15:46 +00:00
auto bottom = positions[3];
auto top = positions[2];
positions[3] = positions[1];
positions[2] = positions[0];
positions[1] = top;
positions[0] = bottom;
position.first -= positions[0] * BLOCK_SIZE;
position.first += positions[1] * BLOCK_SIZE;
position.second -= positions[2] * BLOCK_SIZE;
position.second += positions[3] * BLOCK_SIZE;
2020-08-23 07:50:05 +00:00
piece->setPos( position.first, position.second );
2020-08-22 23:15:46 +00:00
}
}
void revert() {
for ( unsigned long i = 0; i < pieces.size(); i++ ) {
pieces[i]->setPos( original_pos[i].first, original_pos[i].second );
}
}
2020-08-23 07:50:05 +00:00
std::vector< std::shared_ptr< SDLPP::RectangleRender > > &getObjects() {
2020-08-22 23:15:46 +00:00
return pieces;
}
2020-08-23 07:50:05 +00:00
void setPos( double x, double y ) {
for ( unsigned long i = 0; i < pieces.size(); i++ ) {
2020-08-22 23:15:46 +00:00
auto &piece = pieces[i];
auto pos = piece->getPos();
2020-08-23 07:50:05 +00:00
piece->setPos( x + pos.first - default_x,
y + pos.second - default_y );
2020-08-22 23:15:46 +00:00
}
2020-08-23 07:50:05 +00:00
setDefPos( x, y );
2020-08-22 23:15:46 +00:00
}
2020-08-23 07:50:05 +00:00
void setDefPos( double x, double y ) {
2020-08-22 23:15:46 +00:00
default_x = x;
default_y = y;
}
void clear() {
pieces.clear();
pieces_rel_position.clear();
}
void startDescend() {
descend = true;
}
void stopDescend() {
descend = false;
}
bool isDescending() {
return descend;
}
2020-08-23 07:50:05 +00:00
2020-08-22 23:15:46 +00:00
private:
2020-08-23 07:50:05 +00:00
std::vector< std::vector< int > > pieces_rel_position;
std::vector< std::shared_ptr< SDLPP::RectangleRender > > pieces;
std::vector< std::pair< double, double > > original_pos;
2020-08-22 23:15:46 +00:00
double default_x;
double default_y;
bool descend = false;
};
2020-08-23 07:50:05 +00:00
std::vector< std::shared_ptr< SDLPP::RectangleRender > > line_coliders;
2020-08-22 23:15:46 +00:00
TetrisPiece cur_object;
TetrisPiece next_object;
2020-08-23 07:50:05 +00:00
void doInput( std::shared_ptr< SDLPP::Scene > scene );
2020-08-22 23:15:46 +00:00
void doInputPause();
bool quit = false;
std::mutex movement_mutex;
2020-08-23 07:50:05 +00:00
std::shared_ptr< SDLPP::RectangleRender >
createTetrisBlock( double x, double y, const std::string &color,
const std::string &outline,
std::shared_ptr< SDLPP::Renderer > renderer,
std::shared_ptr< SDLPP::Scene > scene ) {
auto ret = std::make_shared< SDLPP::RectangleRender >(
x, y, BLOCK_SIZE, BLOCK_SIZE, renderer, color, true );
2020-08-23 07:50:05 +00:00
ret->setOutlineColor( outline );
ret->addCollision( SDLPP::Rect( 0.1, 0.1, 0.8, 0.8 ) );
ret->setId( BRICK_ID );
2020-08-22 23:15:46 +00:00
ret->centerX();
2020-08-23 07:50:05 +00:00
scene->addObject( ret );
2020-08-22 23:15:46 +00:00
return ret;
}
2020-08-23 07:50:05 +00:00
TetrisPiece tetrisBrick( std::shared_ptr< SDLPP::Renderer > renderer,
std::shared_ptr< SDLPP::Scene > scene ) {
2020-08-22 23:15:46 +00:00
TetrisPiece retPiece{};
auto color = "#FF0000";
auto outline = "#AA0000";
retPiece.addPiece( createTetrisBlock( 0.5 - BLOCK_SIZE, TOP_BORDER, color,
outline, renderer, scene ),
0, 0 );
2020-08-23 07:50:05 +00:00
retPiece.addPiece(
createTetrisBlock( 0.5, TOP_BORDER, color, outline, renderer, scene ),
0, 0 );
retPiece.addPiece( createTetrisBlock( 0.5 - BLOCK_SIZE,
TOP_BORDER + BLOCK_SIZE, color,
outline, renderer, scene ),
0, 0 );
retPiece.addPiece( createTetrisBlock( 0.5, TOP_BORDER + BLOCK_SIZE, color,
outline, renderer, scene ),
0, 0 );
retPiece.setDefPos( 0.5, TOP_BORDER );
2020-08-22 23:15:46 +00:00
return retPiece;
}
2020-08-23 07:50:05 +00:00
TetrisPiece tetrisT( std::shared_ptr< SDLPP::Renderer > renderer,
std::shared_ptr< SDLPP::Scene > scene ) {
2020-08-22 23:15:46 +00:00
TetrisPiece retPiece{};
auto color = "#00FF00";
auto outline = "#00AA00";
retPiece.addPiece( createTetrisBlock( 0.5 - BLOCK_SIZE,
TOP_BORDER + BLOCK_SIZE, color,
outline, renderer, scene ),
-1, 0 );
retPiece.addPiece( createTetrisBlock( 0.5, TOP_BORDER + BLOCK_SIZE, color,
outline, renderer, scene ),
0, 0 );
2020-08-23 07:50:05 +00:00
retPiece.addPiece(
createTetrisBlock( 0.5, TOP_BORDER, color, outline, renderer, scene ),
0, -1 );
retPiece.addPiece( createTetrisBlock( 0.5 + BLOCK_SIZE,
TOP_BORDER + BLOCK_SIZE, color,
outline, renderer, scene ),
1, 0 );
retPiece.setDefPos( 0.5, TOP_BORDER );
2020-08-22 23:15:46 +00:00
return retPiece;
}
2020-08-23 07:50:05 +00:00
TetrisPiece tetrisLRight( std::shared_ptr< SDLPP::Renderer > renderer,
std::shared_ptr< SDLPP::Scene > scene ) {
2020-08-22 23:15:46 +00:00
TetrisPiece retPiece{};
auto color = "#0000FF";
auto outline = "#0000AA";
retPiece.addPiece( createTetrisBlock( 0.5 - BLOCK_SIZE,
TOP_BORDER + BLOCK_SIZE, color,
outline, renderer, scene ),
-2, 0 );
retPiece.addPiece( createTetrisBlock( 0.5, TOP_BORDER + BLOCK_SIZE, color,
outline, renderer, scene ),
-1, 0 );
retPiece.addPiece( createTetrisBlock( 0.5 + BLOCK_SIZE,
TOP_BORDER + BLOCK_SIZE, color,
outline, renderer, scene ),
0, 0 );
retPiece.addPiece( createTetrisBlock( 0.5 + BLOCK_SIZE, TOP_BORDER, color,
outline, renderer, scene ),
0, -1 );
retPiece.setDefPos( 0.5, TOP_BORDER );
2020-08-22 23:15:46 +00:00
return retPiece;
}
2020-08-23 07:50:05 +00:00
TetrisPiece tetrisZRight( std::shared_ptr< SDLPP::Renderer > renderer,
std::shared_ptr< SDLPP::Scene > scene ) {
2020-08-22 23:15:46 +00:00
TetrisPiece retPiece{};
auto color = "#FF00FF";
auto outline = "#AA00AA";
retPiece.addPiece( createTetrisBlock( 0.5 - BLOCK_SIZE,
TOP_BORDER + BLOCK_SIZE, color,
outline, renderer, scene ),
-1, 0 );
retPiece.addPiece( createTetrisBlock( 0.5, TOP_BORDER + BLOCK_SIZE, color,
outline, renderer, scene ),
0, 0 );
2020-08-23 07:50:05 +00:00
retPiece.addPiece(
createTetrisBlock( 0.5, TOP_BORDER, color, outline, renderer, scene ),
0, -1 );
retPiece.addPiece( createTetrisBlock( 0.5 + BLOCK_SIZE, TOP_BORDER, color,
outline, renderer, scene ),
1, -1 );
retPiece.setDefPos( 0.5, TOP_BORDER );
2020-08-22 23:15:46 +00:00
return retPiece;
}
2020-08-23 07:50:05 +00:00
TetrisPiece tetrisLine( std::shared_ptr< SDLPP::Renderer > renderer,
std::shared_ptr< SDLPP::Scene > scene ) {
2020-08-22 23:15:46 +00:00
TetrisPiece retPiece{};
auto color = "#FFFF00";
auto outline = "#AAAA00";
retPiece.addPiece( createTetrisBlock( 0.5 - 2 * BLOCK_SIZE, TOP_BORDER,
color, outline, renderer, scene ),
-1, 0 );
retPiece.addPiece( createTetrisBlock( 0.5 - BLOCK_SIZE, TOP_BORDER, color,
outline, renderer, scene ),
0, 0 );
2020-08-23 07:50:05 +00:00
retPiece.addPiece(
createTetrisBlock( 0.5, TOP_BORDER, color, outline, renderer, scene ),
1, 0 );
retPiece.addPiece( createTetrisBlock( 0.5 + BLOCK_SIZE, TOP_BORDER, color,
outline, renderer, scene ),
2, 0 );
retPiece.setDefPos( 0.5, TOP_BORDER );
2020-08-22 23:15:46 +00:00
return retPiece;
}
2020-08-23 07:50:05 +00:00
TetrisPiece tetrisLLeft( std::shared_ptr< SDLPP::Renderer > renderer,
std::shared_ptr< SDLPP::Scene > scene ) {
2020-08-22 23:15:46 +00:00
TetrisPiece retPiece{};
auto color = "#00FFFF";
auto outline = "#00AAAA";
retPiece.addPiece( createTetrisBlock( 0.5 - BLOCK_SIZE, TOP_BORDER, color,
outline, renderer, scene ),
0, -1 );
retPiece.addPiece( createTetrisBlock( 0.5 - BLOCK_SIZE,
TOP_BORDER + BLOCK_SIZE, color,
outline, renderer, scene ),
0, 0 );
retPiece.addPiece( createTetrisBlock( 0.5, TOP_BORDER + BLOCK_SIZE, color,
outline, renderer, scene ),
1, 0 );
retPiece.addPiece( createTetrisBlock( 0.5 + BLOCK_SIZE,
TOP_BORDER + BLOCK_SIZE, color,
outline, renderer, scene ),
2, 0 );
retPiece.setDefPos( 0.5, TOP_BORDER );
2020-08-22 23:15:46 +00:00
return retPiece;
}
2020-08-23 07:50:05 +00:00
TetrisPiece tetrisZLeft( std::shared_ptr< SDLPP::Renderer > renderer,
std::shared_ptr< SDLPP::Scene > scene ) {
2020-08-22 23:15:46 +00:00
TetrisPiece retPiece{};
auto color = "#FFFFFF";
auto outline = "#AAAAAA";
retPiece.addPiece( createTetrisBlock( 0.5 - BLOCK_SIZE, TOP_BORDER, color,
outline, renderer, scene ),
-1, 0 );
2020-08-23 07:50:05 +00:00
retPiece.addPiece(
createTetrisBlock( 0.5, TOP_BORDER, color, outline, renderer, scene ),
0, 0 );
retPiece.addPiece( createTetrisBlock( 0.5, TOP_BORDER + BLOCK_SIZE, color,
outline, renderer, scene ),
0, 1 );
retPiece.addPiece( createTetrisBlock( 0.5 + BLOCK_SIZE,
TOP_BORDER + BLOCK_SIZE, color,
outline, renderer, scene ),
1, 1 );
retPiece.setDefPos( 0.5, TOP_BORDER );
2020-08-22 23:15:46 +00:00
return retPiece;
}
2020-08-23 07:50:05 +00:00
std::vector< TetrisPiece ( * )( std::shared_ptr< SDLPP::Renderer >,
std::shared_ptr< SDLPP::Scene > ) >
tetrisFunctions = {
tetrisBrick, tetrisT, tetrisLRight, tetrisZRight,
tetrisLine, tetrisLLeft, tetrisZLeft,
};
void addStuff( SDLPP::Scene &scene, std::shared_ptr< SDLPP::Renderer > &r ) {
auto bg = std::make_shared< SDLPP::RectangleRender >( 0, 0, 10, 10, r,
"#101090FF", true );
bg->setPermanent( true );
scene.addObject( bg );
auto left_barrier = std::make_shared< SDLPP::RectangleRender >(
LEFT_BORDER - 0.02, 0, 0.02, BOTTOM_BORDER, r, "#FF000080", true );
2020-08-22 23:15:46 +00:00
left_barrier->centerX();
2020-08-23 07:50:05 +00:00
scene.addObject( left_barrier );
auto right_barrier = std::make_shared< SDLPP::RectangleRender >(
RIGHT_BORDER, 0, 0.02, BOTTOM_BORDER, r, "#FF000080", true );
2020-08-22 23:15:46 +00:00
right_barrier->centerX();
2020-08-23 07:50:05 +00:00
scene.addObject( right_barrier );
auto bottom_barrier = std::make_shared< SDLPP::RectangleRender >(
LEFT_BORDER - 0.02, BOTTOM_BORDER, RIGHT_BORDER - LEFT_BORDER + 0.04,
0.02, r, "#FF000080", true );
2020-08-22 23:15:46 +00:00
bottom_barrier->centerX();
2020-08-23 07:50:05 +00:00
scene.addObject( bottom_barrier );
auto tetris = std::make_shared< SDLPP::TextRenderer >(
0.4, 0, 0.2, 0.1, r, *font, "TETRIS", "FFFFFF", "000000", 5 );
2020-08-22 23:15:46 +00:00
tetris->centerX();
2020-08-23 07:50:05 +00:00
scene.addObject( tetris );
auto next = std::make_shared< SDLPP::TextRenderer >(
RIGHT_BORDER + 0.1, 0.35, 0.2, 0.1, r, *font, "NEXT", "FFFFFF",
"000000", 5, SDLPP_TEXT_CENTER );
2020-08-22 23:15:46 +00:00
next->centerX();
2020-08-23 07:50:05 +00:00
scene.addObject( next );
2020-08-22 23:15:46 +00:00
double posy = 1;
auto gameover = std::make_shared< SDLPP::RectangleRender >(
0.5, 0, 0, TOP_BORDER + BLOCK_SIZE, r );
auto gameover_collision = SDLPP::Rect( -1, 0, -1, 0.9 );
2020-08-22 23:15:46 +00:00
gameover_collision.setInfinite();
2020-08-23 07:50:05 +00:00
gameover->addCollision( gameover_collision );
gameover->setId( GAME_OVER );
gameover->setColiderColor( "FF0000" );
scene.addObject( gameover );
auto score_text = std::make_shared< SDLPP::TextRenderer >(
RIGHT_BORDER + 0.1, 0.1, 0.2, 0.1, r, *font, "SCORE", "#FFFFFF",
"#000000", 5, SDLPP_TEXT_CENTER );
2020-08-22 23:15:46 +00:00
score_text->centerX();
2020-08-23 07:50:05 +00:00
scene.addObject( score_text );
2020-08-22 23:15:46 +00:00
2020-08-23 07:50:05 +00:00
score_texture = std::make_shared< SDLPP::TextRenderer >(
RIGHT_BORDER + 0.1, 0.2, 0.2, 0.1, r, *font, std::to_string( score ),
"FFFFFF", "000000", 5, SDLPP_TEXT_TOP );
2020-08-22 23:15:46 +00:00
score_texture->centerX();
2020-08-23 07:50:05 +00:00
scene.addObject( score_texture );
for ( int i = 0; i < 20; i++ ) {
posy -= BLOCK_SIZE;
2020-08-23 07:50:05 +00:00
auto colider = std::make_shared< SDLPP::RectangleRender >(
LEFT_BORDER, posy, BLOCK_SIZE, BLOCK_SIZE, r );
2020-08-23 07:50:05 +00:00
auto colider_colider = SDLPP::Rect( -1, 0.1, -1, 0.8 );
2020-08-22 23:15:46 +00:00
colider_colider.setInfinite();
2020-08-23 07:50:05 +00:00
colider->addCollision( colider_colider );
colider->setId( COLIDER_ID );
line_coliders.push_back( colider );
scene.addObject( colider );
2020-08-22 23:15:46 +00:00
}
}
void updateScore() {
2020-08-23 07:50:05 +00:00
score_texture->setText( *font, std::to_string( score ), "#FFFFFF",
"#000000", 5 );
2020-08-22 23:15:46 +00:00
}
2020-08-23 07:50:05 +00:00
void addPause( SDLPP::Scene &scene, std::shared_ptr< SDLPP::Renderer > &r ) {
auto bg = std::make_shared< SDLPP::RectangleRender >( 0, 0, 10, 10, r,
"#00000080", true );
bg->setId( 123 );
bg->setPermanent( true );
scene.addObject( bg );
auto y = std::make_shared< SDLPP::TextRenderer >( 0.25, 0.1, 0.5, 0.3, r );
y->setText( *font, "PAUSED", "#FFFFFF", "#000000", 5 );
y->setId( 0 );
2020-08-22 23:15:46 +00:00
y->centerX();
2020-08-23 07:50:05 +00:00
scene.addObject( y );
auto resume =
std::make_shared< SDLPP::TextRenderer >( 0.4, 0.5, 0.2, 0.1, r );
resume->setText( *font, "Resume", "#FFFFFF", "#000000", 5 );
resume->setColor( "#FFFFFF40" );
2020-08-22 23:15:46 +00:00
resume->centerX();
2020-08-23 07:50:05 +00:00
scene.addObject( resume );
pause_options.push_back( resume );
auto quit =
std::make_shared< SDLPP::TextRenderer >( 0.4, 0.7, 0.2, 0.1, r );
quit->setText( *font, "Quit Game", "#FFFFFF", "#000000", 5 );
2020-08-22 23:15:46 +00:00
quit->centerX();
2020-08-23 07:50:05 +00:00
scene.addObject( quit );
pause_options.push_back( quit );
2020-08-22 23:15:46 +00:00
}
void quitGame() {
std::cout << "Quitting!" << std::endl;
quit = true;
}
void checkRotation( TetrisPiece &piece, SDLPP::Scene &scene ) {
bool crash = true;
int left = 0x01;
int right = 0x02;
int bottom = 0x04;
int flags = 0;
while ( crash ) {
crash = false;
flags = 0;
for ( auto &block : piece.getObjects() ) {
auto pos = block->getPos();
if ( pos.first < LEFT_BORDER - 0.01 ) {
flags = left;
crash = true;
break;
} else if ( pos.first > RIGHT_BORDER - BLOCK_SIZE + 0.01 ) {
crash = true;
flags = right;
break;
} else if ( pos.second >= BOTTOM_BORDER ) {
crash = true;
flags = bottom;
break;
}
}
if ( crash ) {
if ( flags == bottom ) {
piece.revert();
} else {
for ( auto &block : piece.getObjects() ) {
auto pos = block->getPos();
switch ( flags ) {
case 1:
block->setPos( pos.first + BLOCK_SIZE, pos.second );
break;
case 2:
block->setPos( pos.first - BLOCK_SIZE, pos.second );
break;
}
}
}
}
}
}
2020-08-23 07:50:05 +00:00
void handleKeyDown( SDL_Keycode key, SDLPP::Scene &scene ) {
2020-08-22 23:15:46 +00:00
bool crash = false;
2020-08-23 07:50:05 +00:00
std::lock_guard< std::mutex > guard( movement_mutex );
switch ( key ) {
case SDLK_ESCAPE: {
pause = true;
pause_scene->updateSizeAndPosition();
std::thread pauseThread( doInputPause );
pauseThread.detach();
} break;
case SDLK_LEFT:
case SDLK_a:
for ( auto &x : cur_object.getObjects() ) {
auto pos = x->getPos();
// 0.01 because doubles
if ( pos.first < ( LEFT_BORDER + 0.01 ) )
2020-08-23 07:50:05 +00:00
crash = true;
x->setPos( pos.first - BLOCK_SIZE, pos.second );
2020-08-23 07:50:05 +00:00
}
for ( auto &x : cur_object.getObjects() ) {
auto collisions = scene.getCollisions( *x, { BRICK_ID } );
if ( collisions.size() > 1 )
crash = true;
}
if ( crash ) {
for ( auto &x : cur_object.getObjects() ) {
2020-08-22 23:15:46 +00:00
auto pos = x->getPos();
x->setPos( pos.first + BLOCK_SIZE, pos.second );
2020-08-22 23:15:46 +00:00
}
2020-08-23 07:50:05 +00:00
}
break;
case SDLK_RIGHT:
case SDLK_d:
for ( auto &x : cur_object.getObjects() ) {
auto pos = x->getPos();
// 0.01 because doubles
if ( pos.first > RIGHT_BORDER - BLOCK_SIZE - 0.01 ) {
2020-08-23 07:50:05 +00:00
crash = true;
2020-08-22 23:15:46 +00:00
}
x->setPos( pos.first + BLOCK_SIZE, pos.second );
2020-08-23 07:50:05 +00:00
}
for ( auto &x : cur_object.getObjects() ) {
auto collisions = scene.getCollisions( *x, { BRICK_ID } );
if ( collisions.size() > 1 ) {
crash = true;
2020-08-22 23:15:46 +00:00
}
2020-08-23 07:50:05 +00:00
}
if ( crash ) {
for ( auto &x : cur_object.getObjects() ) {
2020-08-22 23:15:46 +00:00
auto pos = x->getPos();
x->setPos( pos.first - BLOCK_SIZE, pos.second );
2020-08-22 23:15:46 +00:00
}
2020-08-23 07:50:05 +00:00
}
break;
case SDLK_DOWN:
case SDLK_s:
cur_object.startDescend();
break;
case SDLK_UP:
case SDLK_w:
cur_object.rotate();
checkRotation( cur_object, scene );
2020-08-23 07:50:05 +00:00
break;
case SDLK_r:
scene.getRenderer().setRenderColiders(
!scene.getRenderer().getRenderColiders() );
default:
break;
2020-08-22 23:15:46 +00:00
}
}
2020-08-23 07:50:05 +00:00
void handleKeyUp( SDL_Keycode key ) {
if ( key == SDLK_DOWN || key == SDLK_s ) {
2020-08-22 23:15:46 +00:00
cur_object.stopDescend();
}
}
2020-08-23 07:50:05 +00:00
void handleKeyDownPause( SDL_Keycode key ) {
switch ( key ) {
case SDLK_ESCAPE: {
pause = false;
active_scene->setPrevTicks( SDL_GetTicks() );
std::thread inputThread( doInput, active_scene );
inputThread.detach();
} break;
case SDLK_r:
active_scene->getRenderer().setRenderColiders(
!active_scene->getRenderer().getRenderColiders() );
break;
case SDLK_s:
case SDLK_DOWN:
pause_options[pause_select]->unsetColor();
pause_select++;
if ( pause_select > pause_max )
pause_select = 0;
pause_options[pause_select]->setColor( "FFFFFF40" );
break;
case SDLK_w:
case SDLK_UP:
pause_options[pause_select]->unsetColor();
pause_select--;
if ( pause_select < 0 )
pause_select = pause_max;
pause_options[pause_select]->setColor( "FFFFFF40" );
break;
case SDLK_RETURN:
switch ( pause_select ) {
case 0: {
pause = false;
active_scene->setPrevTicks( SDL_GetTicks() );
std::thread inputThread( doInput, active_scene );
inputThread.detach();
} break;
case 1:
quitGame();
2020-08-22 23:15:46 +00:00
default:
break;
2020-08-23 07:50:05 +00:00
}
default:
break;
2020-08-22 23:15:46 +00:00
}
}
2020-08-23 07:50:05 +00:00
void pollEvents( SDLPP::Scene &scene ) {
2020-08-22 23:15:46 +00:00
SDL_Event event;
2020-08-23 07:50:05 +00:00
while ( SDL_PollEvent( &event ) != 0 ) {
switch ( event.type ) {
case SDL_QUIT:
quitGame();
break;
case SDL_KEYDOWN:
if ( !event.key.repeat )
handleKeyDown( event.key.keysym.sym, scene );
break;
case SDL_KEYUP:
handleKeyUp( event.key.keysym.sym );
break;
case SDL_WINDOWEVENT:
if ( event.window.event == SDL_WINDOWEVENT_RESIZED )
scene.updateSizeAndPosition();
default:
break;
2020-08-22 23:15:46 +00:00
}
}
}
void pollEventsPause() {
SDL_Event event;
2020-08-23 07:50:05 +00:00
while ( SDL_PollEvent( &event ) != 0 ) {
switch ( event.type ) {
case SDL_QUIT:
quitGame();
break;
case SDL_KEYDOWN:
if ( !event.key.repeat )
handleKeyDownPause( event.key.keysym.sym );
break;
case SDL_WINDOWEVENT:
if ( event.window.event == SDL_WINDOWEVENT_RESIZED ) {
active_scene->updateSizeAndPosition();
pause_scene->updateSizeAndPosition();
}
default:
break;
2020-08-22 23:15:46 +00:00
}
}
}
2020-08-23 07:50:05 +00:00
void moveThem( std::shared_ptr< SDLPP::Scene > scene, int ticks ) {
std::lock_guard< std::mutex > guard( movement_mutex );
2020-08-22 23:15:46 +00:00
ticks_till_fall -= ticks;
2020-08-23 07:50:05 +00:00
if ( cur_object.isDescending() )
2020-08-22 23:15:46 +00:00
ticks_till_descend -= ticks;
2020-08-23 07:50:05 +00:00
if ( ticks_till_fall > 0 ) {
if ( cur_object.isDescending() && ticks_till_descend <= 0 ) {
2020-08-22 23:15:46 +00:00
ticks_till_descend = 50;
goto fall;
}
return;
}
ticks_till_fall = 500;
fall:
2020-08-23 07:50:05 +00:00
for ( auto &x : cur_object.getObjects() ) {
2020-08-22 23:15:46 +00:00
auto pos = x->getPos();
x->setPos( pos.first, pos.second + BLOCK_SIZE );
2020-08-22 23:15:46 +00:00
}
bool fell = false;
2020-08-23 07:50:05 +00:00
for ( auto &x : cur_object.getObjects() ) {
auto collisions = scene->getCollisions( *x, { BRICK_ID } );
if ( collisions.size() > 1 ) {
2020-08-22 23:15:46 +00:00
fell = true;
break;
}
2020-08-23 07:50:05 +00:00
if ( x->getPos().second >= 1 ) {
2020-08-22 23:15:46 +00:00
fell = true;
break;
}
}
2020-08-23 07:50:05 +00:00
if ( fell ) {
for ( auto &x : cur_object.getObjects() ) {
2020-08-22 23:15:46 +00:00
auto pos = x->getPos();
x->setPos( pos.first, pos.second - BLOCK_SIZE );
2020-08-22 23:15:46 +00:00
}
2020-08-23 07:50:05 +00:00
for ( auto &block : cur_object.getObjects() ) {
if ( scene->getCollisions( *block, { GAME_OVER } ).size() > 0 ) {
2020-08-22 23:15:46 +00:00
std::cout << "You lost" << std::endl;
quitGame();
}
}
cur_object.clear();
}
}
2020-08-23 07:50:05 +00:00
void doInput( std::shared_ptr< SDLPP::Scene > scene ) {
2020-08-22 23:15:46 +00:00
FPSmanager gFPS;
2020-08-23 07:50:05 +00:00
SDL_initFramerate( &gFPS );
SDL_setFramerate( &gFPS, 200 );
2020-08-22 23:15:46 +00:00
auto base = SDL_GetTicks();
2020-08-23 07:50:05 +00:00
while ( !quit && !pause ) {
2020-08-22 23:15:46 +00:00
base = SDL_GetTicks();
2020-08-23 07:50:05 +00:00
SDL_framerateDelay( &gFPS );
pollEvents( *scene );
2020-08-22 23:15:46 +00:00
scene->movement();
2020-08-23 07:50:05 +00:00
if ( cur_object.getObjects().size() != 0 ) {
moveThem( scene, SDL_GetTicks() - base );
2020-08-22 23:15:46 +00:00
continue;
}
2020-08-23 07:50:05 +00:00
std::lock_guard< std::mutex > guard( movement_mutex );
for ( auto &colider : line_coliders ) {
auto collisions = scene->getCollisions( *colider, { BRICK_ID } );
while ( collisions.size() == 10 ) {
2020-08-22 23:15:46 +00:00
score += 10;
2020-08-23 07:50:05 +00:00
// updateScore();
2020-08-22 23:15:46 +00:00
update_score = true;
2020-08-23 07:50:05 +00:00
for ( auto &col : collisions ) {
2020-08-22 23:15:46 +00:00
col->destroy();
}
auto colider_y = colider->getPos().second;
2020-08-23 07:50:05 +00:00
for ( auto &elem : scene->getObjects() ) {
if ( elem->getId() != BRICK_ID )
2020-08-22 23:15:46 +00:00
continue;
auto pos = elem->getPos();
2020-08-23 07:50:05 +00:00
if ( pos.second < colider_y ) {
elem->setPos( pos.first, pos.second + BLOCK_SIZE );
2020-08-22 23:15:46 +00:00
}
}
using namespace std::chrono_literals;
2020-08-23 07:50:05 +00:00
std::this_thread::sleep_for( 0.1s );
collisions = scene->getCollisions( *colider, { BRICK_ID } );
2020-08-22 23:15:46 +00:00
}
}
}
}
void doInputPause() {
FPSmanager gFPS;
2020-08-23 07:50:05 +00:00
SDL_initFramerate( &gFPS );
SDL_setFramerate( &gFPS, 200 );
while ( pause ) {
SDL_framerateDelay( &gFPS );
2020-08-22 23:15:46 +00:00
pollEventsPause();
2020-08-23 07:50:05 +00:00
if ( !pause )
2020-08-22 23:15:46 +00:00
break;
}
}
int main() {
SDLPP::init();
2020-08-23 07:50:05 +00:00
SDLPP::Window w( "Tetris clone!" );
auto renderer = std::make_shared< SDLPP::Renderer >( w );
2020-08-22 23:15:46 +00:00
active_renderer = renderer;
2020-08-23 07:50:05 +00:00
renderer->setBlendMode( SDL_BLENDMODE_BLEND );
auto main_scene = std::make_shared< SDLPP::Scene >( renderer );
2020-08-22 23:15:46 +00:00
active_scene = main_scene;
2020-08-23 07:50:05 +00:00
font = std::make_shared< SDLPP::Font >( "testfont.ttf", 96 );
addStuff( *main_scene, renderer );
2020-08-22 23:15:46 +00:00
2020-08-23 07:50:05 +00:00
pause_scene = std::make_shared< SDLPP::Scene >( renderer );
addPause( *pause_scene, renderer );
2020-08-22 23:15:46 +00:00
int base = SDL_GetTicks();
int frames = 0;
2020-08-23 07:50:05 +00:00
std::srand( std::time( nullptr ) );
2020-08-22 23:15:46 +00:00
FPSmanager gFPS;
2020-08-23 07:50:05 +00:00
SDL_initFramerate( &gFPS );
SDL_setFramerate( &gFPS, 60 );
std::thread inputThread( doInput, main_scene );
2020-08-22 23:15:46 +00:00
inputThread.detach();
2020-08-23 07:50:05 +00:00
next_object = tetrisFunctions[std::rand() / ( ( RAND_MAX + 1u ) / 7 )](
renderer, main_scene );
next_object.setPos( 0.9, 0.5 );
while ( !quit ) {
SDL_framerateDelay( &gFPS );
if ( cur_object.getObjects().size() != 0 ) {
2020-08-22 23:15:46 +00:00
ticks_till_next = 1500;
} else {
ticks_till_next -= SDL_GetTicks() - base;
2020-08-23 07:50:05 +00:00
if ( ticks_till_next <= 0 && cur_object.getObjects().size() == 0 ) {
std::lock_guard< std::mutex > guard( movement_mutex );
2020-08-22 23:15:46 +00:00
cur_object = next_object;
cur_object.setPos( 0.5, TOP_BORDER );
2020-08-23 07:50:05 +00:00
next_object =
tetrisFunctions[std::rand() / ( ( RAND_MAX + 1u ) / 7 )](
renderer, main_scene );
next_object.setPos( 0.9, 0.5 );
2020-08-22 23:15:46 +00:00
}
}
2020-08-23 07:50:05 +00:00
if ( update_score ) {
2020-08-22 23:15:46 +00:00
updateScore();
update_score = false;
}
main_scene->renderScene();
2020-08-23 07:50:05 +00:00
if ( pause ) {
pause_scene->renderScene( false );
2020-08-22 23:15:46 +00:00
}
main_scene->presentScene();
frames++;
2020-08-23 07:50:05 +00:00
if ( SDL_GetTicks() - base >= 1000 ) {
2020-08-22 23:15:46 +00:00
base = SDL_GetTicks();
2020-08-23 07:49:04 +00:00
std::cout << "FPS: " << frames << std::endl;
2020-08-22 23:15:46 +00:00
frames = 0;
}
}
}