package sig; import java.awt.Graphics; import java.awt.event.MouseEvent; import java.awt.Color; import java.awt.Rectangle; import java.util.ArrayList; import java.util.Arrays; import java.util.List; import java.util.stream.Collectors; public class Board { List blockData; int width; int height; double gravity; double launch_power; double max_rise_spd; double max_fall_spd; double[] combo_power_bonus; int x,y; int block_width,block_height; double vspeed; int attack_counter=0; BlockClump clumpClickId; Block clickBlock; final static BlockState[] STARTINGSTATES = {BlockState.BLUE, BlockState.GREEN, BlockState.ORANGE, BlockState.PURPLE, BlockState.RED, BlockState.WHITE, BlockState.YELLOW,}; List blockClumpDeleteList = new ArrayList(); List blockClumpAddList = new ArrayList(); public Board(int centerX,int centerY,int block_width,int block_height,int boardWidth, int boardHeight, double gravity, double launch_power, double max_rise_spd, double max_fall_spd, double[] combo_power_bonus) { this.x=centerX; this.y=centerY; this.block_width=block_width; this.block_height=block_height; this.width = boardWidth; this.height = boardHeight; this.gravity = gravity; this.launch_power = launch_power; this.max_rise_spd = max_rise_spd; this.max_fall_spd = max_fall_spd; this.combo_power_bonus = combo_power_bonus; this.blockData = new ArrayList(); } public void run(long frames) { if (frames%20==0) { blockData.add(new BlockClump(Arrays.asList(new Block((int)(Meteo.r.nextInt(width)),0)),0,590,0,width,-1)); } outerloop: for (int i=0;iblocks2.y+(blocks2.collisionColumnRanges[x][0]+1)*block_height) { HandleBlockLand(blocks, x, blocks2.y+(blocks2.collisionColumnRanges[x][0]+1)*block_height); continue outerloop; } } else { if (FUTURE_FALL_POSITION+blocks.collisionColumnRanges[x][0]*block_height0) { blocks.yspd=Math.max(blocks.yspd+gravity,max_fall_spd); blocks.y+=blocks.yspd; } else { //We have hit the bottom. HandleBlockLand(blocks, x, 0); } //System.out.println(blocks.y); } MergeAllGroundedClumps(); if (blockClumpDeleteList.size()>0) { blockData.removeAll(blockClumpDeleteList); blockClumpDeleteList.clear(); } if (blockClumpAddList.size()>0) { blockData.addAll(blockClumpAddList); blockClumpAddList.clear(); } } private void DestroyOutsideBlocks(BlockClump blocks) { if (blocks.yspd>0) { for (int[] range : blocks.collisionColumnRanges) { if (range[1]*block_height+blocks.y>block_height*height) { List removedBlocks = blocks.getBlocks().stream().filter((block)->block.y*block_height+blocks.y>block_height*height).collect(Collectors.toList()); RemoveBlocks(blocks,removedBlocks.toArray(new Block[removedBlocks.size()])); } } } } private void RemoveBlocks(BlockClump bc,Block...blocks) { bc.removeBlock(blocks); if (bc.getBlocks().size()==0) { blockClumpDeleteList.add(bc); } } private void MergeAllGroundedClumps() { List groundedClumps = blockData.stream().filter((cl)->cl.y==0).collect(Collectors.toList()); if (groundedClumps.size()>1) { BlockClump base = groundedClumps.remove(0); for (int i=0;i markedBlocks = new ArrayList(); for (int y=0;y blockList = blocks.getSortedBlocksOnRow(y); //System.out.println(" "+blockList); addAllToListUnique(markedBlocks,FindMatches(blockList)); } for (int x=0;x blockList = blocks.getSortedBlocksOnCol(x); addAllToListUnique(markedBlocks,FindMatches(blockList)); } if (markedBlocks.size()>0) { int minY=Integer.MAX_VALUE; List newClumpBlocks = new ArrayList(); newClumpBlocks.addAll(markedBlocks); for (int i=0;i!newClumpBlocks.contains(block)&&block.y>b.y).collect(Collectors.toList())); minY=Math.min(minY,b.y); } //For now just get rid of them. RemoveBlocks(blocks,newClumpBlocks.toArray(new Block[newClumpBlocks.size()])); for (int i=0;i0; } private void addAllToListUnique(List list, List listToAddFrom) { list.addAll(listToAddFrom.stream().filter((block)->!list.contains(block)).collect(Collectors.toList())); } private List FindMatches(List blockList) { List markedBlocks = new ArrayList(); List tempMarkedBlocks = new ArrayList(); if (blockList.size()==0) {return markedBlocks;} BlockState col = blockList.get(0).state; int matches= 1; int prevX = blockList.get(0).x; int prevY = blockList.get(0).y; while (blockList.size()>0) { Block currentBlock = blockList.get(0); if (Math.abs(currentBlock.x-prevX)==1||Math.abs(currentBlock.y-prevY)==1) { if (col!=BlockState.IGNITED&¤tBlock.state==col) { matches++; tempMarkedBlocks.add(blockList.remove(0)); } else { if (matches>=3) { markedBlocks.addAll(tempMarkedBlocks); } matches=1; col=currentBlock.state; tempMarkedBlocks.clear(); tempMarkedBlocks.add(blockList.remove(0)); } } else { if (matches>=3) { markedBlocks.addAll(tempMarkedBlocks); } matches=1; col=currentBlock.state; tempMarkedBlocks.clear(); tempMarkedBlocks.add(blockList.remove(0)); } prevX=currentBlock.x; prevY=currentBlock.y; } if (matches>=3) { markedBlocks.addAll(tempMarkedBlocks); } return markedBlocks; } private void CombineAToB(BlockClump A, BlockClump B) { for (int i=0;i0) { blocks.launched--; } else if (blocks.launched==0) { SplitBlockClump(blocks); } if (blocks.launched<=0) { for (int i=0;iblock.x==column).collect(Collectors.toList()), 0,blocks.y,blocks.yspd,width,blocks.launched-1) ); } } blockClumpDeleteList.add(blocks); } public void drawBoard(Graphics g) { final int DRAW_STARTX = (int)(x - block_width*((double)width/2)); final int DRAW_STARTY = (int)(y + block_height*((double)height/2)); final int DRAW_ENDX = (int)(x + block_width*((double)width/2)); for (int i=0;i adjacentBlocks = clumpClickId.getBlocks().stream().filter((block)->Math.abs(clickBlock.y-block.y)==1&&clickBlock.x==block.x).collect(Collectors.toList()); for (Block b : adjacentBlocks) { if (new Rectangle(0,b.draw_y,Meteo.SCREEN_WIDTH,block_height).contains(e.getPoint())) { int newY = b.y; b.y=clickBlock.y; clickBlock.y = newY; break; } } } break; case ENTER: //System.out.println("Entered: "+e.getPoint()); break; case EXIT: //System.out.println("Exited: "+e.getPoint()); break; case MOVE: //System.out.println("Moved: "+e.getPoint()); break; case PRESS: //System.out.println("Pressed: "+e.getPoint()); //Adjust Y coordinate based on where the board is positioned. clickBlock=null; clumpClickId=null; outer: for (int i=0;i