#include "gameDefines.h" extern Meteos*game; Board::Board() :colorHandler({}){} Board::Board(vi2d boardSize,float gravity,float maxGravity,float launchSpd,float launchTime,float spawnRate,std::array colorRates,Renderable&tileset) :boardSize(boardSize),gravity(gravity),maxGravity(maxGravity),launchSpd(launchSpd),launchTime(launchTime),spawnRate(spawnRate),colorHandler(colorRates),tileset(tileset.Decal()){ drawOffset={(float)game->ScreenWidth()/2-boardSize.x/2*12,(float)game->ScreenHeight()/2-boardSize.y/2*12}; yBottom=(boardSize.y-1)*12; for (int i=0;i()); } cols[3].push_back({{3*12,6*12},BlockColor::RED}); cols[4].push_back({{4*12,8*12},BlockColor::RED}); cols[4].push_back({{4*12,7*12},BlockColor::RED}); cols[4].push_back({{4*12,6*12},BlockColor::RED}); cols[5].push_back({{5*12,6*12},BlockColor::RED}); } void Board::spawnBlock(int col){ BlockClump c=BlockClump(); c.y-=128; c.vspeed=maxGravity; c.addBlock(col,0,colorHandler.getRandomColor()); clumps.push_back(c); } void Board::addClump(BlockClump&c){ clumps.push_back(c); } std::vector&Board::getBlocks(int col){ return cols[col]; } std::vector&Board::getBlockClumps(){ return clumps; } void Board::removeClump(int ind){ clumps.erase(clumps.begin()+ind); } void Board::convertClump(int ind){ BlockClump&c=clumps[ind]; std::vector clumpsToAdd; for (Block&b:c.getBlocks()){ if (b.markedForDeletion) continue; bool emptyAirBelow=true; for (int i=0;i=b2.pos.y&&c.getBlockPosition(b).y<=b2.pos.y+12) { emptyAirBelow=false; break; } } if (c.getBlockPosition(b).y>=yBottom) { emptyAirBelow=false; } if (emptyAirBelow) { BlockClump c2; for (int i=0;igen); for (int i=0;i<10;i++) { if (rangeTable[i].first!=-1&& rangeTable[i].first<=val&& rangeTable[i].second>val) { return (BlockColor)i; } } return BlockColor::WHITE; } void Board::removeBlock(int col,int ind){ cols[col].erase(cols[col].begin()+ind); }