九九热最新网址,777奇米四色米奇影院在线播放,国产精品18久久久久久久久久,中文有码视频,亚洲一区在线免费观看,国产91精品在线,婷婷丁香六月天

Java俄羅斯方塊實(shí)現(xiàn)步驟.ppt

上傳人:san****019 文檔編號(hào):22746207 上傳時(shí)間:2021-05-31 格式:PPT 頁(yè)數(shù):25 大?。?76.41KB
收藏 版權(quán)申訴 舉報(bào) 下載
Java俄羅斯方塊實(shí)現(xiàn)步驟.ppt_第1頁(yè)
第1頁(yè) / 共25頁(yè)
Java俄羅斯方塊實(shí)現(xiàn)步驟.ppt_第2頁(yè)
第2頁(yè) / 共25頁(yè)
Java俄羅斯方塊實(shí)現(xiàn)步驟.ppt_第3頁(yè)
第3頁(yè) / 共25頁(yè)

下載文檔到電腦,查找使用更方便

9.9 積分

下載資源

還剩頁(yè)未讀,繼續(xù)閱讀

資源描述:

《Java俄羅斯方塊實(shí)現(xiàn)步驟.ppt》由會(huì)員分享,可在線(xiàn)閱讀,更多相關(guān)《Java俄羅斯方塊實(shí)現(xiàn)步驟.ppt(25頁(yè)珍藏版)》請(qǐng)?jiān)谘b配圖網(wǎng)上搜索。

1、JAVA程序設(shè)計(jì) 項(xiàng)目實(shí)訓(xùn)演練 ! 項(xiàng)目實(shí)戰(zhàn) 俄羅斯方塊 主講:賈宗維 程序演示 游戲 01_功能演示與說(shuō)明 游戲 02_面向?qū)ο笤O(shè)計(jì) 游戲 03_使用 API類(lèi)組裝游戲 游戲 04_編寫(xiě)各個(gè)類(lèi)主體框架 游戲 05_編寫(xiě) Controler類(lèi)實(shí)現(xiàn)事件監(jiān)聽(tīng) 游戲 06_編寫(xiě)類(lèi)測(cè)試代碼 游戲 07_圖形設(shè)計(jì)與創(chuàng)建 游戲 08_圖形移動(dòng)與顯示 游戲 09_處理游戲邊界問(wèn)題 游戲 10_障礙物生成與顯示 游戲 11_消除滿(mǎn)行的障礙物 游戲 12_增加游戲結(jié)束 游戲 13_定時(shí)下落 編寫(xiě)各個(gè)類(lèi)主體框架 -Shape類(lèi) public class Shape //

2、private ShapeListener listener; public void moveLeft() System.out.println(shapes moveLeft); public void moveRight() System.out.println(shapes moveright); public void moveDown() System.out.println(shapes moveDown); public void rotate() System.out.println(shapes rot

3、ate); public void drawMe() System.out.println(shapes drawme); private class ShapeDriver implements Runnable public void run() // TODO Auto-generated method stub while(true) moveDown(); //listener.shapeMoveDown(Shape.this); try Thread.sleep(1000); catch (InterruptedException e) // T

4、ODO Auto-generated catch block e.printStackTrace(); 編寫(xiě)各個(gè)類(lèi)主體框架 -ShapeFactory類(lèi) public class ShapeFactory public Shape getShape(ShapeListener listener) System.out.println(ShapeFactorys getShape); Shape shape=new Shape(); return shape; 編寫(xiě)各個(gè)類(lèi)主體框架 -Ground類(lèi) package cn.tetris.entities; publi

5、c class Ground public void accept() System.out.println(Grounds accept); public void drawMe() System.out.println(Grounds drawMe); 編寫(xiě)各個(gè)類(lèi)主體框架 -GamePanel類(lèi) public class GamePanel extends JPanel private Ground ground; private Shape shape; public void display(Ground ground,Shape shape)

6、 System.out.println(GamePanels display); this.ground=ground; this.shape=shape; this.repaint(); Override protected void paintComponent(Graphics arg0) // TODO Auto-generated method stub //重新顯示 if (ground!=null shape.drawMe(); 編寫(xiě)各個(gè)類(lèi)主體框架 -Controller類(lèi) public class Controller extends KeyAd

7、apter private Ground ground; private Shape shape; private ShapeFactory shapeFactory; private GamePanel gamePanel; public void keyPressed(KeyEvent e) switch(e.getKeyCode()) case KeyEvent.VK_UP: shape.rotate(); break; case KeyEvent.VK_LEFT: shape.moveLeft(); break; case KeyEvent.VK_RIG

8、HT: shape.moveRight(); break; case KeyEvent.VK_DOWN: shape.moveDown(); break; gamePanel.display(ground, shape); 編寫(xiě)各個(gè)類(lèi)主體框架 -ShapeListener接 口 public interface ShapeListener void shapeMoveDown(Shape shape); Shape類(lèi)增加監(jiān)聽(tīng)器對(duì)象及下落后調(diào)用 public class Shape private ShapeListener listener; pub

9、lic void moveLeft() System.out.println(shapes moveLeft); public void moveRight() System.out.println(shapes moveright); public void moveDown() System.out.println(shapes moveDown); public void rotate() System.out.println(shapes rotate); public void drawMe() S

10、ystem.out.println(shapes drawme); private class ShapeDriver implements Runnable public void run() // TODO Auto-generated method stub while(true) moveDown(); listener.shapeMoveDown(Shape.this); try Thread.sleep(1000); catch (InterruptedException e) // TODO Auto-generated catch block e.printSt

11、ackTrace(); Shape類(lèi)中增加注冊(cè)監(jiān)聽(tīng)器的方法 public void addShapeListener(ShapeListener l) if(l!=null) this.listener =l; Shape構(gòu)造方法中啟動(dòng)下落線(xiàn)程 public Shape() new Thread(new ShapeDriver()).start(); Controller類(lèi)實(shí)現(xiàn) ShapeListener接 口 public class Controller extends KeyAdapter implements ShapeListen

12、er public void shapeMoveDown(Shape shape) // TODO Auto-generated method stub gamePanel.display(ground, shape); 生產(chǎn)圖形時(shí)同時(shí)注冊(cè)監(jiān)聽(tīng)器 public class ShapeFactory public Shape getShape(ShapeListener listener) System.out.println(ShapeFactorys getShape); Shape shape=new Shape(); shape.addShapeListene

13、r(listener); return shape; GamePanel類(lèi)設(shè)置大小 public GamePanel() this.setSize(300,300); Controller類(lèi)中增加開(kāi)始新游戲方法 public void newGame() shape=shapeFactory.getShape(this); Controller類(lèi)中如何接收外部控制的對(duì)象 public Controller(ShapeFactory shapeFactory,Ground ground, GamePanel gamePanel) this.shapeFactory=sha

14、peFactory; this.ground=ground; this.gamePanel=gamePanel; 測(cè)試類(lèi) Game public class Game public static void main(String args) // TODO Auto-generated method stub ShapeFactory shapeFactory=new ShapeFactory(); Ground ground=new Ground(); GamePanel gamePanel=new GamePanel(); Controller

15、controller=new Controller(shapeFactory,ground,gamePanel); JFrame frame=new JFrame(); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.setSize(gamePanel.getSize().width+10, gamePanel.getSize().height+35); frame.add(gamePanel); gamePanel.addKeyListener(controller);

16、 frame.setVisible(true); controller.newGame(); 程序步驟 游戲 01_功能演示與說(shuō)明 游戲 02_面向?qū)ο笤O(shè)計(jì) 游戲 03_使用 API類(lèi)組裝游戲 游戲 04_編寫(xiě)各個(gè)類(lèi)主體框架 游戲 05_編寫(xiě) Controler類(lèi)實(shí)現(xiàn)事件監(jiān)聽(tīng) 游戲 06_編寫(xiě)類(lèi)測(cè)試代碼 游戲 07_圖形設(shè)計(jì)與創(chuàng)建 游戲 08_圖形移動(dòng)與顯示 游戲 09_處理游戲邊界問(wèn)題 游戲 10_障礙物生成與顯示 游戲 11_消除滿(mǎn)行的障礙物 游戲 12_增加游戲結(jié)束 游戲 13_定時(shí)下落 Shape類(lèi),增加圖形的描述 //二維變量用于保存圖

17、形的所有狀態(tài) private int body; //用于保存圖形當(dāng)前的狀態(tài) private int status; //設(shè)置狀態(tài)的方法 public void setBody(int body) this.body=body; //設(shè)置當(dāng)前是第幾種狀態(tài) public void setStatus(int status) this.status=status; ShapeFactory類(lèi)增加生產(chǎn)各種圖形 //三維數(shù)組用于表示一種圖形 的多種形狀 private int shapes=new int 1,0,0,0, 1,1,1,0,

18、 0,0,0,0, 0,0,0,0, 1,1,0,0, 1,0,0,0, 1,0,0,0, 0,0,0,0, 1,1,1,0, 0,0,1,0, 0,0,0,0, 0,0,0,0, 0,1,0,0, 0,1,0,0, 1,1,0,0, 0,0,0,0 ; public Shape //生產(chǎn)一個(gè)隨機(jī)數(shù),用于表示圖形的 狀態(tài) int type=new Random().nextInt(shapes.length); //設(shè)置圖形有幾種狀態(tài) shape.setBody(shapestype); //設(shè)置默認(rèn)狀態(tài) shape.setStatus(0);

19、 return shape; Shape類(lèi)中增加圖形的位置信息 //表示圖形距離左側(cè)的距離 private int left; //表示圖形距離上邊界的距離 private int top; public void moveLeft() left--; public void moveRight() left++; public void moveDown() top++; public void rotate() //顯示下一個(gè)狀態(tài),但得保證狀態(tài)值不超過(guò) 4,所以需處理 status=(status+1

20、)%body.length; Shape類(lèi)中增加圖形的繪制方法 public void drawMe(Graphics g) System.out.println(shapes drawme); g.setColor(Color.RED); //循環(huán)訪問(wèn)代表方正的數(shù)組 for(int x=0;x<4;x++) for(int y=0;y<4;y++) if(getFlagByPoint(x,y)) g.fill3DRect((left+x)*Global.CELL_SIZE, (top+y)*Global.CELL_SIZE, Globa

21、l.CELL_SIZE, Global.CELL_SIZE, true); //獲取方正中標(biāo)志是 1還是 0, 1表示要繪圖 0表示不繪圖 private boolean getFlagByPoint(int x,int y) return bodystatusy*4+x==1; 游戲常量的存放 Glaobal public class Global //表示每個(gè)方格的像素值 public static final int CELL_SIZE=20; //表示圖形面板有多少個(gè)格子寬和高 public static final in

22、t WIDTH=15; public static final int HEIGHT=15; 測(cè)試游戲,下落方塊出現(xiàn)拖影 在 GamePanel類(lèi)的 paintComponent方法中增加 如下代碼 :在填充一個(gè)與背景同色的區(qū)域 g.setColor(new Color(0 xcfcfcf)); g.fillRect(0, 0, Global.CELL_SIZE*Global.WIDTH, Global.CELL_SIZE*Global.HEIGHT); //填充一 個(gè)灰色顯示區(qū)域,避免圖形拖影 修改此處的同時(shí)還需修改 Shape的 drawme方法 中設(shè)置圖形的顏色,以及給 fram

23、e也注冊(cè)監(jiān)聽(tīng) 器。 圖形如何避免移出邊界 public boolean isMoveable(Shape shape,int action) //得到圖像當(dāng)前的位置信息 int left=shape.getLeft(); int top=shape.getTop(); //根據(jù)圖形的動(dòng)作,得出圖形最新 的位置信息 switch(action) case Shape.LEFT: left--; break; case Shape.RIGHT: left++; break; case Shape.DOWN: top++; break; //依次取出圖形中的每一個(gè)點(diǎn),判斷 是否超出顯示區(qū)域 for(int x=0;x<4;x++) for(int y=0;y=Global.HEIGHT|| left+x=Global.WIDTH) return false; return true;

展開(kāi)閱讀全文
溫馨提示:
1: 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
2: 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶(hù)所有。
3.本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒(méi)有圖紙預(yù)覽就沒(méi)有圖紙。
4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
5. 裝配圖網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶(hù)上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶(hù)上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶(hù)因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。

相關(guān)資源

更多
正為您匹配相似的精品文檔
關(guān)于我們 - 網(wǎng)站聲明 - 網(wǎng)站地圖 - 資源地圖 - 友情鏈接 - 網(wǎng)站客服 - 聯(lián)系我們

copyright@ 2023-2025  zhuangpeitu.com 裝配圖網(wǎng)版權(quán)所有   聯(lián)系電話(huà):18123376007

備案號(hào):ICP2024067431號(hào)-1 川公網(wǎng)安備51140202000466號(hào)


本站為文檔C2C交易模式,即用戶(hù)上傳的文檔直接被用戶(hù)下載,本站只是中間服務(wù)平臺(tái),本站所有文檔下載所得的收益歸上傳人(含作者)所有。裝配圖網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶(hù)上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)上載內(nèi)容本身不做任何修改或編輯。若文檔所含內(nèi)容侵犯了您的版權(quán)或隱私,請(qǐng)立即通知裝配圖網(wǎng),我們立即給予刪除!