




已閱讀5頁,還剩20頁未讀, 繼續(xù)免費(fèi)閱讀
版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡介
項(xiàng)目實(shí)戰(zhàn) 俄羅斯方塊,主講:賈宗維,程序演示,游戲01_功能演示與說明 游戲02_面向?qū)ο笤O(shè)計(jì) 游戲03_使用API類組裝游戲 游戲04_編寫各個(gè)類主體框架 游戲05_編寫Controler類實(shí)現(xiàn)事件監(jiān)聽 游戲06_編寫類測試代碼 游戲07_圖形設(shè)計(jì)與創(chuàng)建 游戲08_圖形移動與顯示 游戲09_處理游戲邊界問題 游戲10_障礙物生成與顯示 游戲11_消除滿行的障礙物 游戲12_增加游戲結(jié)束 游戲13_定時(shí)下落,編寫各個(gè)類主體框架-Shape類,public class Shape /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 rotate“); 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) / TODO Auto-generated catch block e.printStackTrace();,編寫各個(gè)類主體框架-ShapeFactory類,public class ShapeFactory public Shape getShape(ShapeListener listener) System.out.println(“ShapeFactorys getShape“); Shape shape=new Shape(); return shape; ,編寫各個(gè)類主體框架-Ground類,package cn.tetris.entities; public class Ground public void accept() System.out.println(“Grounds accept“); public void drawMe() System.out.println(“Grounds drawMe“); ,編寫各個(gè)類主體框架-GamePanel類,public class GamePanel extends JPanel private Ground ground; private Shape shape; public void display(Ground ground,Shape shape) 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 ,編寫各個(gè)類主體框架-Controller類,public class Controller extends KeyAdapter 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_RIGHT: shape.moveRight(); break; case KeyEvent.VK_DOWN: shape.moveDown(); break; gamePanel.display(ground, shape); ,編寫各個(gè)類主體框架-ShapeListener接口,public interface ShapeListener void shapeMoveDown(Shape shape); ,Shape類增加監(jiān)聽器對象及下落后調(diào)用,public class Shape 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 rotate“); 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) / TODO Auto-generated catch block e.printStackTrace();,Shape類中增加注冊監(jiān)聽器的方法,public void addShapeListener(ShapeListener l) if(l!=null) this.listener =l; ,Shape構(gòu)造方法中啟動下落線程,public Shape() new Thread(new ShapeDriver().start(); ,Controller類實(shí)現(xiàn)ShapeListener接口,public class Controller extends KeyAdapter implements ShapeListener public void shapeMoveDown(Shape shape) / TODO Auto-generated method stub gamePanel.display(ground, shape); ,生產(chǎn)圖形時(shí)同時(shí)注冊監(jiān)聽器,public class ShapeFactory public Shape getShape(ShapeListener listener) System.out.println(“ShapeFactorys getShape“); Shape shape=new Shape(); shape.addShapeListener(listener); return shape; ,GamePanel類設(shè)置大小,public GamePanel() this.setSize(300,300); ,Controller類中增加開始新游戲方法,public void newGame() shape=shapeFactory.getShape(this); ,Controller類中如何接收外部控制的對象,public Controller(ShapeFactory shapeFactory,Ground ground, GamePanel gamePanel) this.shapeFactory=shapeFactory; this.ground=ground; this.gamePanel=gamePanel; ,測試類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 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); frame.setVisible(true); controller.newGame(); ,程序步驟,游戲01_功能演示與說明 游戲02_面向?qū)ο笤O(shè)計(jì) 游戲03_使用API類組裝游戲 游戲04_編寫各個(gè)類主體框架 游戲05_編寫Controler類實(shí)現(xiàn)事件監(jiān)聽 游戲06_編寫類測試代碼 游戲07_圖形設(shè)計(jì)與創(chuàng)建 游戲08_圖形移動與顯示 游戲09_處理游戲邊界問題 游戲10_障礙物生成與顯示 游戲11_消除滿行的障礙物 游戲12_增加游戲結(jié)束 游戲13_定時(shí)下落,Shape類,增加圖形的描述,/二維變量用于保存圖形的所有狀態(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類增加生產(chǎn)各種圖形,/三維數(shù)組用于表示一種圖形的多種形狀 private int shapes=new int 1,0,0,0, 1,1,1,0, 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); return shape; ,Shape類中增加圖形的位置信息,/表示圖形距離左側(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)值不超過4,所以需處理 status=(status+1)%body.length; ,Shape類中增加圖形的繪制方法,public void drawMe(Graphics g) System.out.println(“shapes drawme“); g.setColor(Color.RED); /循環(huán)訪問代表方正的數(shù)組 for(int x=0;x4;x+) for(int y=0;y4;y+) if(getFlagByPoint(x,y) g.fill3DRect(left+x)*Global.CELL_SIZE, (top+y)*Global.CELL_SIZE, Global.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 int WIDTH=15; pu
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 2024屆合肥市包河中考五模數(shù)學(xué)試題含解析
- DB13T 5452-2021 夏玉米間作夏大豆與冬小麥復(fù)種技術(shù)規(guī)程
- 酒店客房服務(wù)員考試試題及答案
- 安全生產(chǎn)類的試題及答案
- 甘肅鋼鐵職業(yè)技術(shù)學(xué)院《中國當(dāng)代史專題》2023-2024學(xué)年第二學(xué)期期末試卷
- 哈爾濱華德學(xué)院《馬克思主義倫理學(xué)》2023-2024學(xué)年第二學(xué)期期末試卷
- 青島黃海學(xué)院《戲劇史》2023-2024學(xué)年第二學(xué)期期末試卷
- 武漢警官職業(yè)學(xué)院《國際貿(mào)易綜合實(shí)訓(xùn)》2023-2024學(xué)年第二學(xué)期期末試卷
- 贛南醫(yī)學(xué)院《藥物合成實(shí)驗(yàn)》2023-2024學(xué)年第二學(xué)期期末試卷
- 河北資源環(huán)境職業(yè)技術(shù)學(xué)院《建筑結(jié)構(gòu)設(shè)計(jì)軟件應(yīng)用》2023-2024學(xué)年第二學(xué)期期末試卷
- 2025年部編版新教材語文一年級下冊期末測試題及答案(一)
- 農(nóng)村調(diào)解培訓(xùn)課件
- 2025年標(biāo)準(zhǔn)房產(chǎn)共有份額轉(zhuǎn)讓協(xié)議書樣本
- 主動脈夾層完整版本
- DBJ-T13-144-2019 福建省建設(shè)工程監(jiān)理文件管理規(guī)程
- 【MOOC】文化創(chuàng)意產(chǎn)品設(shè)計(jì)-湘潭大學(xué) 中國大學(xué)慕課MOOC答案
- 浙江省工貿(mào)企業(yè)電氣隱患排查技術(shù)服務(wù)規(guī)范
- 《銷售人員的培訓(xùn)》課件
- 《創(chuàng)傷性腦損傷管理最佳實(shí)踐指南》(2024)解 讀課件
- 《專利池與公共利益》課件
- 2025屆高考政治一輪復(fù)習(xí):統(tǒng)編版選擇性必修3《邏輯與思維》高考真題主觀題匯編(含答案)
評論
0/150
提交評論