欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

java swing實(shí)現(xiàn)的掃雷游戲及改進(jìn)版完整示例

 更新時(shí)間:2017年12月13日 10:59:22   作者:Limbos  
這篇文章主要介紹了java swing實(shí)現(xiàn)的掃雷游戲及改進(jìn)版,結(jié)合完整實(shí)例形式對比分析了java使用swing框架實(shí)現(xiàn)掃雷游戲功能與相關(guān)操作技巧,需要的朋友可以參考下

本文實(shí)例講述了java swing實(shí)現(xiàn)的掃雷游戲及改進(jìn)版。分享給大家供大家參考,具體如下:

版本1:

package awtDemo;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
/**
 * 這個(gè)是一個(gè)簡單的掃雷例子,剛接觸swing編寫的,適合新手練習(xí)
 * 該程序使用setBounds(x,y,w,h)對控件布局
 * 做法參考win xp自帶的掃雷,當(dāng)然還寫功能沒做出來,
 * 另外做出來的功能有些還存在bug
 *
 * @author Ping_QC
 */
public class test extends JFrame implements ActionListener, Runnable,
    MouseListener {
  private static final long serialVersionUID = -2417758397965039613L;
  private final int EMPTY     = 0;
  private final int MINE     = 1;
  private final int CHECKED    = 2;
  private final int MINE_COUNT  = 10;  // 雷的個(gè)數(shù)
  private final int BUTTON_BORDER = 50;  // 每個(gè)點(diǎn)的尺寸
  private final int MINE_SIZE   = 10;  // 界面規(guī)格, 20x20
  private final int START_X    = 20;  // 起始位置x
  private final int START_Y    = 50;  // 起始位置y
  private boolean flag;
  private JButton[][] jb;
  private JLabel jl;
  private JLabel showTime;
  private int[][] map;
  /**
   * 檢測某點(diǎn)周圍是否有雷,周圍點(diǎn)的坐標(biāo)可由該數(shù)組計(jì)算得到
   */
  private int[][] mv = { { -1, 0 }, { -1, 1 }, { 0, 1 }, { 1, 1 }, { 1, 0 },
      { 1, -1 }, { 0, -1 }, { -1, -1 } };
  /**
   * 隨機(jī)產(chǎn)生設(shè)定個(gè)數(shù)的雷
   */
  public void makeMine() {
    int i = 0, tx, ty;
    for (; i < MINE_COUNT;) {
      tx = (int) (Math.random() * MINE_SIZE);
      ty = (int) (Math.random() * MINE_SIZE);
      if (map[tx][ty] == EMPTY) {
        map[tx][ty] = MINE;
        i++; // 不記重復(fù)產(chǎn)生的雷
      }
    }
  }
  /**
   * 將button數(shù)組放到frame上,與map[][]數(shù)組對應(yīng)
   */
  public void makeButton() {
    for (int i = 0; i < MINE_SIZE; i++) {
      for (int j = 0; j < MINE_SIZE; j++) {
        jb[i][j] = new JButton();
        // if (map[i][j] == MINE)
        // jb[i][j].setText(i+","+j);
        // listener add
        jb[i][j].addActionListener(this);
        jb[i][j].addMouseListener(this);
        jb[i][j].setName(i + "_" + j); // 方便點(diǎn)擊是判斷是點(diǎn)擊了哪個(gè)按鈕
        // Font font = new Font(Font.SERIF, Font.BOLD, 10);
        // jb[i][j].setFont(font);
        // jb[i][j].setText(i+","+j);
        jb[i][j].setBounds(j * BUTTON_BORDER + START_X, i
            * BUTTON_BORDER + START_Y, BUTTON_BORDER, BUTTON_BORDER);
        this.add(jb[i][j]);
      }
    }
  }
  public void init() {
    flag = false;
    jl.setText("歡迎測試,一共有" + MINE_COUNT + "個(gè)雷");
    jl.setVisible(true);
    jl.setBounds(20, 20, 500, 30);
    this.add(jl);
    showTime.setText("已用時(shí):0 秒");
    showTime.setBounds(400, 20, 100, 30);
    this.add(showTime);
    makeMine();
    makeButton();
    this.setSize(550, 600);
    this.setLocation(700, 100);
    this.setResizable(false);
    this.setDefaultCloseOperation(EXIT_ON_CLOSE);
    this.setVisible(true);
  }
  public test(String title) {
    super(title);
    this.setLayout(null);  //不使用布局管理器,每個(gè)控件的位置用setBounds設(shè)定
    jb = new JButton[MINE_SIZE][MINE_SIZE];
    jl = new JLabel();
    showTime = new JLabel();
    map = new int[MINE_SIZE][MINE_SIZE]; // 將按鈕映射到數(shù)組中
  }
  public static void main(String[] args) {
    test test = new test("腳本之家 - 掃雷游戲測試1");
    test.init();
    test.run();
  }
  @Override
  public void actionPerformed(ActionEvent e) {
    Object obj = e.getSource();
    int x, y;
    if ((obj instanceof JButton) == false) {
      showMessage("錯(cuò)誤", "內(nèi)部錯(cuò)誤");
      return;
    }
    String[] tmp_str = ((JButton) obj).getName().split("_");
    x = Integer.parseInt(tmp_str[0]);
    y = Integer.parseInt(tmp_str[1]);
    if (map[x][y] == MINE) {
      showMessage("死亡", "你踩到地雷啦~~~");
      flag = true;
      showMine();
      return;
    }
    dfs(x, y, 0);
    checkSuccess();
  }
  /**
   * 每次點(diǎn)擊完后,判斷有沒有把全部雷都找到 通過計(jì)算狀態(tài)為enable的按鈕的個(gè)數(shù)來判斷
   */
  private void checkSuccess() {
    int cnt = 0;
    for (int i = 0; i < MINE_SIZE; i++) {
      for (int j = 0; j < MINE_SIZE; j++) {
        if (jb[i][j].isEnabled()) {
          cnt++;
        }
      }
    }
    if (cnt == MINE_COUNT) {
      String tmp_str = showTime.getText();
      tmp_str = tmp_str.replaceAll("[^0-9]", "");
      showMessage("勝利", "本次掃雷共用時(shí):" + tmp_str + "秒");
      flag = true;
      showMine();
    }
  }
  private int dfs(int x, int y, int d) {
    map[x][y] = CHECKED;
    int i, tx, ty, cnt = 0;
    for (i = 0; i < 8; i++) {
      tx = x + mv[i][0];
      ty = y + mv[i][1];
      if (tx >= 0 && tx < MINE_SIZE && ty >= 0 && ty < MINE_SIZE) {
        if (map[tx][ty] == MINE) {
          cnt++;// 該點(diǎn)附近雷數(shù)統(tǒng)計(jì)
        } else if (map[tx][ty] == EMPTY) {
          ;
        } else if (map[tx][ty] == CHECKED) {
          ;
        }
      }
    }
    if (cnt == 0) {
      for (i = 0; i < 8; i++) {
        tx = x + mv[i][0];
        ty = y + mv[i][1];
        if (tx >= 0 && tx < MINE_SIZE && ty >= 0 && ty < MINE_SIZE
            && map[tx][ty] != CHECKED) {
          dfs(tx, ty, d + 1);
        }
      }
    } else {
      jb[x][y].setText(cnt + "");
    }
    jb[x][y].setEnabled(false);
    return cnt;
  }
  /**
   * 在jl標(biāo)簽上顯示一些信息
   *
   * @param title
   * @param info
   */
  private void showMessage(String title, String info) {
    jl.setText(info);
    System.out.println("in functino showMessage() : " + info);
  }
  public void run() {
    int t = 0;
    while (true) {
      if (flag) {
        break;
      }
      try {
        Thread.sleep(1000);
      } catch (InterruptedException e) {
        e.printStackTrace();
      }
      t++;
      showTime.setText("已用時(shí):" + t + " 秒");
    }
    // showMine();
  }
  private void showMine() {
//   Icon iconMine = new ImageIcon("e:/mine.jpg");
    for (int i = 0; i < MINE_SIZE; i++) {
      for (int j = 0; j < MINE_SIZE; j++) {
        if (map[i][j] == MINE) {
          jb[i][j].setText("#");
//         jb[i][j].setIcon(iconMine);
        }
      }
    }
  }
  @Override
  public void mouseClicked(MouseEvent e) {
    if (e.getButton() == 3) {
      Object obj = e.getSource();
      if ((obj instanceof JButton) == false) {
        showMessage("錯(cuò)誤", "內(nèi)部錯(cuò)誤");
        return;
      }
      String[] tmp_str = ((JButton) obj).getName().split("_");
      int x = Integer.parseInt(tmp_str[0]);
      int y = Integer.parseInt(tmp_str[1]);
    if ("{1}".equals(jb[x][y].getText())) {
        jb[x][y].setText("");
      } else {
        jb[x][y].setText("{1}");
      }
  /*   if(jb[x][y].getIcon() == null){
        jb[x][y].setIcon(new ImageIcon("e:/flag.jpg"));
      }else{
        jb[x][y].setIcon(null);
      }*/
    }
  }
  @Override
  public void mousePressed(MouseEvent e) {
    // TODO Auto-generated method stub
  }
  @Override
  public void mouseReleased(MouseEvent e) {
    // TODO Auto-generated method stub
  }
  @Override
  public void mouseEntered(MouseEvent e) {
    // TODO Auto-generated method stub
  }
  @Override
  public void mouseExited(MouseEvent e) {
    // TODO Auto-generated method stub
  }
}

運(yùn)行效果:

版本2是對上面版本1程序的改進(jìn),在基礎(chǔ)不變的基礎(chǔ)上增加了右鍵標(biāo)記功能以及自主選擇難度功能。

package awtDemo;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
@SuppressWarnings("serial")
public class saolei extends JFrame implements ActionListener, Runnable,
    MouseListener {
  private final int loEMPTY     = 0;
  private final int loMINE     = 1;
  private final int loCHECKED    = 2;
  private final int loMINE_COUNT  = 10;
  private final int loBUTTON_BORDER = 50;
  private final int loMINE_SIZE   = 10;
  private final int loSTART_X    = 20;
  private final int loSTART_Y    = 50;
  private boolean flag;
  private JButton[][] jb;
  private JLabel jl;
  private JLabel showTime;
  private int[][] map;
  private int[][] mv = { { -1, 0 }, { -1, 1 }, { 0, 1 }, { 1, 1 }, { 1, 0 },
      { 1, -1 }, { 0, -1 }, { -1, -1 } };
  public void makeloMINE() {
    int i = 0, tx, ty;
    for (; i < loMINE_COUNT;) {
      tx = (int) (Math.random() * loMINE_SIZE);
      ty = (int) (Math.random() * loMINE_SIZE);
      if (map[tx][ty] == loEMPTY) {
        map[tx][ty] = loMINE;
        i++;
      }
    }
  }
  public void makeButton() {
    for (int i = 0; i < loMINE_SIZE; i++) {
      for (int j = 0; j < loMINE_SIZE; j++) {
        jb[i][j] = new JButton();
        jb[i][j].addActionListener(this);
        jb[i][j].addMouseListener(this);
        jb[i][j].setName(i + "_" + j);
        jb[i][j].setBounds(j * loBUTTON_BORDER + loSTART_X, i
            * loBUTTON_BORDER + loSTART_Y, loBUTTON_BORDER, loBUTTON_BORDER);
        this.add(jb[i][j]);
      }
    }
  }
  public void init() {
    flag = false;
    jl.setText("歡迎測試,一共有" + loMINE_COUNT + "個(gè)雷");
    jl.setVisible(true);
    jl.setBounds(20, 20, 500, 30);
    this.add(jl);
    showTime.setText("已用時(shí):0 秒");
    showTime.setBounds(400, 20, 100, 30);
    this.add(showTime);
    makeloMINE();
    makeButton();
    this.setSize(550, 600);
    this.setLocation(700, 100);
    this.setResizable(false);
    this.setDefaultCloseOperation(EXIT_ON_CLOSE);
    this.setVisible(true);
  }
  public saolei(String title) {
    super(title);
    this.setLayout(null);  //不使用布局管理器,每個(gè)控件的位置用setBounds設(shè)定
    jb = new JButton[loMINE_SIZE][loMINE_SIZE];
    jl = new JLabel();
    showTime = new JLabel();
    map = new int[loMINE_SIZE][loMINE_SIZE]; // 將按鈕映射到數(shù)組中
  }
  public static void main(String[] args) {
   saolei test = new saolei("腳本之家 - 掃雷游戲測試2");
    test.init();
    test.run();
  }
  @Override
  public void actionPerformed(ActionEvent e) {
    Object obj = e.getSource();
    int x, y;
    if ((obj instanceof JButton) == false) {
      showMessage("錯(cuò)誤", "內(nèi)部錯(cuò)誤");
      return;
    }
    String[] tmp_str = ((JButton) obj).getName().split("_");
    x = Integer.parseInt(tmp_str[0]);
    y = Integer.parseInt(tmp_str[1]);
    if (map[x][y] == loMINE) {
      showMessage("死亡", "你踩到地雷啦~~~");
      flag = true;
      showloMINE();
      return;
    }
    dfs(x, y, 0);
    checkSuccess();
  }
  private void checkSuccess() {
    int cnt = 0;
    for (int i = 0; i < loMINE_SIZE; i++) {
      for (int j = 0; j < loMINE_SIZE; j++) {
        if (jb[i][j].isEnabled()) {
          cnt++;
        }
      }
    }
    if (cnt == loMINE_COUNT) {
      String tmp_str = showTime.getText();
      tmp_str = tmp_str.replaceAll("[^0-9]", "");
      showMessage("勝利", "本次掃雷共用時(shí):" + tmp_str + "秒");
      flag = true;
      showloMINE();
    }
  }
  private int dfs(int x, int y, int d) {
    map[x][y] = loCHECKED;
    int i, tx, ty, cnt = 0;
    for (i = 0; i < 8; i++) {
      tx = x + mv[i][0];
      ty = y + mv[i][1];
      if (tx >= 0 && tx < loMINE_SIZE && ty >= 0 && ty < loMINE_SIZE) {
        if (map[tx][ty] == loMINE) {
          cnt++;
        } else if (map[tx][ty] == loEMPTY) {
          ;
        } else if (map[tx][ty] == loCHECKED) {
          ;
        }
      }
    }
    if (cnt == 0) {
      for (i = 0; i < 8; i++) {
        tx = x + mv[i][0];
        ty = y + mv[i][1];
        if (tx >= 0 && tx < loMINE_SIZE && ty >= 0 && ty < loMINE_SIZE
            && map[tx][ty] != loCHECKED) {
          dfs(tx, ty, d + 1);
        }
      }
    } else {
      jb[x][y].setText(cnt + "");
    }
    jb[x][y].setEnabled(false);
    return cnt;
  }
  private void showMessage(String title, String info) {
    jl.setText(info);
    System.out.println("in functino showMessage() : " + info);
  }
  public void run() {
    int t = 0;
    while (true) {
      if (flag) {
        break;
      }
      try {
        Thread.sleep(1000);
      } catch (InterruptedException e) {
        e.printStackTrace();
      }
      t++;
      showTime.setText("已用時(shí):" + t + " 秒");
    }
  }
  private void showloMINE() {
    for (int i = 0; i < loMINE_SIZE; i++) {
      for (int j = 0; j < loMINE_SIZE; j++) {
        if (map[i][j] == loMINE) {
          jb[i][j].setText("雷");
        }
      }
    }
  }
  public void mouseClicked(MouseEvent e) {
    if (e.getButton() == 3) {
      Object obj = e.getSource();
      if ((obj instanceof JButton) == false) {
        showMessage("錯(cuò)誤", "內(nèi)部錯(cuò)誤");
        return;
      }
      String[] tmp_str = ((JButton) obj).getName().split("_");
      int x = Integer.parseInt(tmp_str[0]);
      int y = Integer.parseInt(tmp_str[1]);
    if ("{1}quot".equals(jb[x][y].getText())) {
        jb[x][y].setText("");
      } else {
        jb[x][y].setText("{1}quot");
      }
    }
  }
  public void mousePressed(MouseEvent e) {
  }
  @Override
  public void mouseReleased(MouseEvent e) {
  }
  public void mouseEntered(MouseEvent e) {
  }
  @Override
  public void mouseExited(MouseEvent e) {
  }
}

運(yùn)行效果:

更多關(guān)于java算法相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《Java數(shù)據(jù)結(jié)構(gòu)與算法教程》、《Java操作DOM節(jié)點(diǎn)技巧總結(jié)》、《Java文件與目錄操作技巧匯總》和《Java緩存操作技巧匯總

希望本文所述對大家java程序設(shè)計(jì)有所幫助。

相關(guān)文章

  • java中幾種常見的排序算法總結(jié)

    java中幾種常見的排序算法總結(jié)

    大家好,本篇文章主要講的是java中幾種常見的排序算法總結(jié),感興趣的同學(xué)趕快來看一看吧,對你有幫助的話記得收藏一下
    2022-01-01
  • Spark?集群執(zhí)行任務(wù)失敗的故障處理方法

    Spark?集群執(zhí)行任務(wù)失敗的故障處理方法

    這篇文章主要為大家介紹了Spark?集群執(zhí)行任務(wù)失敗的故障處理方法詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪
    2023-02-02
  • Spring?Cloud?Ribbon?中的?7?種負(fù)載均衡策略的實(shí)現(xiàn)方法

    Spring?Cloud?Ribbon?中的?7?種負(fù)載均衡策略的實(shí)現(xiàn)方法

    Ribbon?內(nèi)置了?7?種負(fù)載均衡策略:輪詢策略、權(quán)重策略、隨機(jī)策略、最小連接數(shù)策略、重試策略、可用性敏感策略、區(qū)域性敏感策略,并且用戶可以通過繼承?RoundRibbonRule?來實(shí)現(xiàn)自定義負(fù)載均衡策略,對Spring?Cloud?Ribbon負(fù)載均衡策略相關(guān)知識(shí)感興趣的朋友一起看看吧
    2022-03-03
  • idea一鍵部署SpringBoot項(xiàng)目jar包到服務(wù)器的實(shí)現(xiàn)

    idea一鍵部署SpringBoot項(xiàng)目jar包到服務(wù)器的實(shí)現(xiàn)

    我們在開發(fā)環(huán)境部署項(xiàng)目一般通過idea將項(xiàng)目打包成jar包,然后連接linux服務(wù)器,將jar手動(dòng)上傳到服務(wù)中,本文就來詳細(xì)的介紹一下步驟,感興趣的可以了解一下
    2023-12-12
  • 基于@AliasFor注解的用法及說明

    基于@AliasFor注解的用法及說明

    這篇文章主要介紹了基于@AliasFor注解的用法及說明,具有很好的參考價(jià)值,希望對大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2023-02-02
  • java線程池的四種創(chuàng)建方式詳細(xì)分析

    java線程池的四種創(chuàng)建方式詳細(xì)分析

    這篇文章主要介紹了java線程池的四種創(chuàng)建方式詳細(xì)分析,連接池是創(chuàng)建和管理一個(gè)連接的緩沖池的技術(shù),這些連接準(zhǔn)備好被任何需要它們的線程使用
    2022-07-07
  • springboot整合security和vue的實(shí)踐

    springboot整合security和vue的實(shí)踐

    本文主要介紹了springboot整合security和vue的實(shí)踐,文中通過示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2021-09-09
  • 解決spring-boot使用logback的大坑

    解決spring-boot使用logback的大坑

    這篇文章主要介紹了解決spring-boot使用logback的大坑,具有很好的參考價(jià)值,希望對大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2021-07-07
  • 詳解Mybatis內(nèi)的mapper方法為何不能重載

    詳解Mybatis內(nèi)的mapper方法為何不能重載

    這篇文章主要介紹了詳解Mybatis內(nèi)的mapper方法為何不能重載,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2020-12-12
  • MyBatis中的關(guān)聯(lián)關(guān)系配置與多表查詢的操作代碼

    MyBatis中的關(guān)聯(lián)關(guān)系配置與多表查詢的操作代碼

    本文介紹了在MyBatis中配置和使用一對多和多對多關(guān)系的方法,通過合理的實(shí)體類設(shè)計(jì)、Mapper接口和XML文件的配置,我們可以方便地進(jìn)行多表查詢,并豐富了應(yīng)用程序的功能和靈活性,需要的朋友可以參考下
    2023-09-09

最新評(píng)論