importjavax.swing.*;importjavax.swing.Timer;importjava.awt.*;importjava.awt.event.*;importjava.util.*;/**Title:俄罗斯方块*Description:俄罗斯方块*Copyright:俄罗斯方块*Company:俄罗斯方块**@authorZhuYong*@version1.0*/publicclassSquaresGame{publicstaticvoidmain(String[]args){newSquaresFrame().play();}}classSquaresFrameextendsJFrame{publicfinalstaticintWIDTH=500;publicfinalstaticintHEIGHT=600;/***游戏区*/privateBoxPanelboxPanel;/***暂停标记*/privatebooleanisPause=true;/***默认构造函数*/publicSquaresFrame(){/***记分面板*/InfoPanelinfoPanel=newInfoPanel();boxPanel=newBoxPanel(infoPanel);JMenuBarbar=newJMenuBar();JMenumenu=newJMenu("菜单");JMenuItembegin=newJMenuItem("新游戏");finalJMenuItempause=newJMenuItem("暂停");JMenuItemstop=newJMenuItem("结束");setJMenuBar(bar);bar.add(menu);menu.add(begin);menu.add(pause);menu.add(stop);stop.addActionListener(newActionListener(){publicvoidactionPerformed(ActionEvente){System.exit(0);}});pause.addActionListener(newActionListener(){publicvoidactionPerformed(ActionEvente){if(isPause){boxPanel.supend(false);isPause=!isPause;pause.setText("恢复");}else{boxPanel.supend(true);isPause=!isPause;pause.setText("暂停");}}});begin.addActionListener(newActionListener(){publicvoidactionPerformed(ActionEvente){boxPanel.newGame();}});boxPanel.setBorder(BorderFactory.createTitledBorder(BorderFactory.createEtchedBorder(),"Box"));infoPanel.setBorder(BorderFactory.createTitledBorder(BorderFactory.createEtchedBorder(),"Info"));add(boxPanel,BorderLayout.CENTER);add(infoPanel,BorderLayout.EAST);setTitle("SquaresGame");setSize(WIDTH,HEIGHT);//不可改变框架大小setResizable(false);//定位显示到屏幕中间setLocation(((int)Toolkit.getDefaultToolkit().getScreenSize().getWidth()-WIDTH)/2,((int)Toolkit.getDefaultToolkit().getScreenSize().getHeight()-HEIGHT)/2);setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);setVisible(true);}publicvoidplay(){boxPanel.newGame();}}/****@authorZhuYong*游戏区面板*/classBoxPanelextendsJPanel{/***定义行*/publicfinalstaticintROWS=20;/***定义列*/publicfinalstaticintCOLS=10;publicfinalstaticColorDISPLAY=newColor(128,128,255);/***没有方块时显示的颜色*/publicfinalstaticColorHIDE=newColor(238,238,238);/***记分面板上显示的下一个方块的颜色*/publicfinalstaticColorNEXTDISPLAY=Color.ORANGE;/***是否显示网络*/publicfinalstaticbooleanPAINTGRID=false;/***用4个按钮表示一个方块*/privateJButton[][]squares=newJButton[ROWS][COLS];/***定义对前位置是否有方块.用颜色区别.*/privateint[][]stateTable=newint[ROWS][COLS];privateInfoPanelscorePanel;privateABoxcurrentBox;privateABoxnextBox;/***各方块颜色数组.其中0号颜色为无方块时颜色.共7种方块.最后一个消行时颜色*/privatestaticColor[]boxColor=newColor[]{newColor(238,238,238),newColor(128,128,255),newColor(189,73,23),newColor(154,105,22),newColor(101,124,52),newColor(49,100,128),newColor(84,57,119),newColor(111,54,102),newColor(126,50,57),Color.RED};/***定时器,负责方块自动下移*/privateTimertimer;/***Level用定时器的延时控制*/privateintlevel;/***初时化时的延时*/privatefinalstaticintINITDELAY=940;/***每一级别延时减少的步进值*/privatefinalstaticintINC=90;publicBoxPanel(InfoPanelpanel){setLayout(newGridLayout(ROWS,COLS,1,1));//可能获取焦点,才能接受键盘事件setFocusable(true);//setCursor(newCursor(1));/***初时化,生成JButton,设置颜色.JButton数组按照先第一行再第二行的顺序添加.下标为[行][列]和[x][y]正好相反.*/for(inti=0;i<ROWS;i++)for(in...