Tetris game on mikroTFT touchscreen and LPC1768

Dependencies:   Tetris

Dependents:   Tetris

Field.cpp

Committer:
sergun2311
Date:
2017-02-25
Revision:
1:b4aa36ae11ac
Parent:
0:645509d95b8d
Child:
3:36de55e63fdf

File content as of revision 1:b4aa36ae11ac:

#include "Field.h"
#include "playGround.h"

#define BLACK           0
#define MAXX            10
#define MAXY            12

extern int Field[MAXY][MAXX] = {0};

int checkLine()    {
    int x, y, score = 0;
    bool status;
    for ( y = 0 ; y < 12 ; y++ ) {
        status = true;
        for ( x = 0 ; x < 10 ; x++ )  {
            if ( Field[y][x] == BLACK )
                status = false;
        }
        if ( status )   {
            score += 100;
            int xx, yy;
            for ( yy = y ; yy > 0 ; yy-- )   {
                for (xx = 0 ; xx < 10 ; xx++ )  {
                    Field[yy][xx] = Field[yy-1][xx];
                }
                
            }
        }
    }
    if (score)
        drawMapV2();
    return score;
}

bool checkGameOver()
{
    int x;
    for ( x = 0 ; x < 10 ; x++ )
        if ( Field[0][x] != BLACK )
            return true;
    return false;        
}