Source Code (Use browser search to find items of interest.)

Class Index

ksirtet'TLBoard (./kdegames/ksirtet/tl_board.h:7)

class TLBoard : public Board
{
 public:
	TLBoard(bool graphic, QWidget *parent, const char *name=0);
	void copy(const GenericTetris &);

	void init(int seed);
	void remove();

 private:
	// standard methods
	void gluePiece();
	bool beforeRemove(bool first);
	AfterRemoveResult afterRemove(bool doAll, bool first);
	uint gift();
	bool putGift(uint nb);
	bool _putGift(uint nb);
	bool needRemoving();
	void removeLine(uint line);
	void moveLine(uint srcLine, uint destLine);
	void partialMoveLine(uint srcLine, uint destLine, int dec);

	QArray<uint> filled;
	uint         addRemoved;
};

ksirtet'TLBoard::TLBoard() (./kdegames/ksirtet/tl_board.cpp:16)

TLBoard::TLBoard(bool graphic, QWidget *parent, const char *name)
: Board(BLOCK_WIDTH, BLOCK_HEIGHT, BOARD_WIDTH, BOARD_HEIGHT,
		graphic, new GiftPool(NB_LEDS, MAX_TO_SEND, parent), parent, name)
{
	info.baseTime         = 1000;
	info.dropDownTime     = 10;
	info.beforeGlueTime   = 10;
	info.afterGlueTime    = 10;
	info.beforeRemoveTime = 150;
	info.afterRemoveTime  = 10;
	info.afterGiftTime    = 10;

	filled.resize(matrix().height());
}


ksirtet'TLBoard::copy() (./kdegames/ksirtet/tl_board.cpp:31)

void TLBoard::copy(const GenericTetris &g)
{
	Board::copy(g);

	const TLBoard &t = (const TLBoard &)g;
	filled     = t.filled.copy(); // deep copy
//	addRemoved = t.addRemoved;
}


ksirtet'TLBoard::init() (./kdegames/ksirtet/tl_board.cpp:40)

void TLBoard::init(int seed)
{
	Board::init(seed);
	filled.fill(0);
	addRemoved = 0;
}


ksirtet'TLBoard::needRemoving() (./kdegames/ksirtet/tl_board.cpp:47)

bool TLBoard::needRemoving()
{
	for(uint j=0; j<firstClearLine(); j++)
		if ( filled[j]==matrix().width() ) return TRUE;
	return FALSE;
}


ksirtet'TLBoard::gluePiece() (./kdegames/ksirtet/tl_board.cpp:54)

void TLBoard::gluePiece()
{
	for(uint k=0; k<currentPiece()->nbBlocks(); k++) {
		int j = currentPiece()->line(k, currentLine());
		filled[j]++;
	}
	Board::gluePiece();
}


ksirtet'TLBoard::removeLine() (./kdegames/ksirtet/tl_board.cpp:63)

void TLBoard::removeLine(uint line)
{
	for (uint i=0; i<matrix().width(); i++) removeBlock(i, line);
	filled[line] = 0;
}


ksirtet'TLBoard::moveLine() (./kdegames/ksirtet/tl_board.cpp:69)

void TLBoard::moveLine(uint srcLine, uint destLine)
{
	for (uint i=0; i<matrix().width(); i++)	moveBlock(i, srcLine, i, destLine);
	filled[destLine] = filled[srcLine];
	filled[srcLine] = 0;
}


ksirtet'TLBoard::remove() (./kdegames/ksirtet/tl_board.cpp:76)

void TLBoard::remove()
{
	uint nbFullLines = 0;
	for (uint k=0; k<firstClearLine(); k++) {
		while ( filled[k]==matrix().width() ) {
			removeLine(k);
			nbFullLines++;
			k++;
		}
	}

	updateRemoved(nbRemoved() + nbFullLines);
	addRemoved += nbFullLines;
	
	// Assign score according to level and nb of full lines (gameboy style)
	switch (nbFullLines) {
	 case 0: break;
	 case 1: updateScore( score() + 40   * level() ); break;
	 case 2: updateScore( score() + 100  * level() ); break;
	 case 3: updateScore( score() + 300  * level() ); break;
	 case 4: updateScore( score() + 1200 * level() ); break;
	}

	// If we make a multiplum of ten lines, increase level
	if ( (nbRemoved()/10)!=((nbRemoved()-nbFullLines)/10) )
		updateLevel(level()+1);
}

/*****************************************************************************/
// Multiplayers methods

ksirtet'TLBoard::gift() (./kdegames/ksirtet/tl_board.cpp:106)

uint TLBoard::gift()
{
	uint g = (addRemoved>1 ? addRemoved-1 : 0);
	addRemoved = 0;
	return g;
}


ksirtet'TLBoard::_putGift() (./kdegames/ksirtet/tl_board.cpp:113)

bool TLBoard::_putGift(uint nb)
{
	if ( nbClearLines()==0 ) return FALSE;

	// lift all the cases of one line
    // (nbClearLine!=0 --> firstClearLine!=height
	for (uint j=firstClearLine(); j>0; j--) moveLine(j-1, j);

	// fill the emptied low line with garbage :)
	uint _nb = nb;
	uint i;
	do {
		i = randomGarbage.getLong(matrix().width());
		if ( matrix()(i, 0)!=0 ) continue;
		setBlock(i, 0, currentPiece()->garbageBlock());
		_nb--;
	} while ( _nb!=0 );
	filled[0] = nb;
	addToClearLines(-1);
	return TRUE;
}


ksirtet'TLBoard::putGift() (./kdegames/ksirtet/tl_board.cpp:135)

bool TLBoard::putGift(uint nb)
{
	for (uint k=0; k<nb; k++)
		if ( !_putGift(matrix().width() - k - 1) ) return FALSE;
	return TRUE;
}

/*****************************************************************************/

ksirtet'TLBoard::beforeRemove() (./kdegames/ksirtet/tl_board.cpp:143)

bool TLBoard::beforeRemove(bool first)
{
	if (first) loop = 0;
	else loop++;

	for(uint j=0; j<firstClearLine(); j++) {
		if ( filled[j]!=matrix().width() ) continue;
		for (uint i=0; i<matrix().width(); i++)
			block(i, j)->toggleLight();
	}

	return ( loop!=3 );
}


ksirtet'TLBoard::partialMoveLine() (./kdegames/ksirtet/tl_board.cpp:157)

void TLBoard::partialMoveLine(uint srcLine, uint destLine, int dec)
{
	for (uint i=0; i<matrix().width(); i++)
		partialMoveBlock(i, srcLine, (srcLine-destLine)*dec);
}

Board::AfterRemoveResult TLBoard::afterRemove(bool doAll, bool first)
{
	int dec = 0;
	bool final = doAll;

	if ( !doAll ) {
		if (first) loop = 0;
		else loop++;

		float fdec = blockHeight();
		switch (loop) {
		case 0: fdec *= 0.3;   break;
		case 1: fdec *= 0.6;   break;
		case 2: fdec *= 1;     break;
		case 3: final = TRUE; break;
		}
		dec = (int)fdec;
	}

	uint nbFullLines = 0, j = 0;
	for (uint k=0; k<firstClearLine(); k++) {
		if ( filled[k]==0 ) {
			nbFullLines++;
			continue;
		}
		if ( j!=k ) {
			if (final) moveLine(k, j);
			else if (_animations) partialMoveLine(k, j, dec);
		}
		j++;
	}
	if (final) addToClearLines(nbFullLines);

	return final ? Done : NeedAfterRemove;
}