国产成人精品久久免费动漫-国产成人精品天堂-国产成人精品区在线观看-国产成人精品日本-a级毛片无码免费真人-a级毛片毛片免费观看久潮喷

您的位置:首頁技術文章
文章詳情頁

java GUI實現五子棋游戲

瀏覽:48日期:2022-09-05 11:27:50

本文實例為大家分享了java實現五子棋游戲GUI,供大家參考,具體內容如下

引用包

//{Cynthia Zhang}import java.awt.*;import java.awt.event.*;import javax.swing.*;import javax.swing.border.LineBorder;import javax.swing.JOptionPane;import javax.swing.ImageIcon;import java.awt.Image;import com.sun.image.codec.jpeg.*;

前期預設

//extends JApplet { // Indicate which player has a turn, initially it is the X player private char whoseTurn = ’X’; final int SIZE = 15; static boolean ISOVER = false; // Create and initialize cells private final Cell[][] cell = new Cell[SIZE][SIZE]; // Create and initialize a status label private final JLabel jlblStatus = new JLabel('X’s turn to play',JLabel.CENTER);

設置背景板

// Initialize UI @Override public void init() { // Panel p to hold cells JPanel p = new JPanel(); p.setLayout(new GridLayout(SIZE, SIZE, 0, 0)); for (int i = 0; i < SIZE; i++) { for (int j = 0; j < SIZE; j++) { Cell ce = new Cell(); ce.setBackground(new Color(150,88,42)); // 背景色絕美! p.add(cell[i][j] = ce); } } // Set line borders on the cells panel and the status label p.setBackground(new Color(143,105,94)); // 背景色絕美! jlblStatus.setBorder(new LineBorder(new Color(255,255,255), 2)); // 白框框加寬! // Place the panel and the label to the applet this.getContentPane().add(p, BorderLayout.CENTER); this.getContentPane().add(jlblStatus, BorderLayout.SOUTH); }

主要框架段落

// This main method enables the applet to run as an applicationpublic static void main(String[] args) { // Create a frame JFrame frame = new JFrame('Tic Tac Toe'); // Create an instance of the applet Homework8 applet = new Homework8(); // Add the applet instance to the frame frame.getContentPane().add(applet, BorderLayout.CENTER); // Invoke init() and start() applet.init(); applet.start(); // Display the frame frame.setSize(600, 600); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.setVisible(true); }

判斷是否滿了

// Determine if the cells are all occupied public boolean isFull() { for (int i = 0; i < SIZE; i++) { for (int j = 0; j < SIZE; j++) { if (cell[i][j].getToken() == ’ ’) { return false; } } } return true; }

判斷是否贏了

和八皇后有點像,可以考慮那種數組優化四個方向,這里比較懶

// Determine if the player with the specified token wins public boolean isWon(char token) { int winNum = 5; // define the max num for a rule for (int indexX = 0; indexX < SIZE; indexX++) { for (int indexY = 0; indexY < SIZE; indexY++){ // in row check cell[indexX][indexY...indexY+winNum-1] if (indexY+winNum-1<SIZE){ boolean flag=true; for (int y =indexY;y<indexY+winNum;y++) if (cell[indexX][y].getToken() != token){ flag=false; break; } if (flag==true) return true; } // in row check cell[indexX...indexX+winNum-1][indexY] if (indexX+winNum-1<SIZE){ boolean flag=true; for (int x =indexX;x<indexX+winNum;x++) if (cell[x][indexY].getToken() != token){ flag=false; break; } if (flag==true) return true; } // check cell[indexX...indexX+winNum-1][indexY...indexY+winNum-1) if (indexX+winNum-1<SIZE && indexY+winNum-1<SIZE){ boolean flag=true; for (int x =indexX,y=indexY;x<indexX+winNum;x++,y++) if (cell[x][y].getToken() != token){ flag=false; break; } if (flag==true) return true; } // check cell[indexX...indexX+winNum-1][indexY...indexY+winNum-1) if (indexX+winNum-1<SIZE && indexY-winNum+1>=0){ boolean flag=true; for (int x =indexX,y=indexY;x<indexX+winNum;x++,y--) if (cell[x][y].getToken() != token){ flag=false; break; } if (flag==true) return true; } } } return false; }

設置棋子

// An inner class for a cell public class Cell extends JPanel implements MouseListener { // Token used for this cell private char token = ’ ’; public Cell() { setBorder(new LineBorder(Color.black, 1)); // Set cell’s border addMouseListener(this); // Register listener } // The getter method for token public char getToken() { return token; } // The setter method for token public void setToken(char c) { token = c; repaint(); }

導入圖片

// Paint the cell @Override public void paintComponent(Graphics g) { if (token == ’X’) { ImageIcon icon = new ImageIcon('C:UsersLenovoDesktopBlack.png'); Image image = icon.getImage(); g.drawImage(image,0,0,35,35,this); }else if (token==’O’){ ImageIcon icon = new ImageIcon('C:UsersLenovoDesktopWhite.png'); Image image = icon.getImage(); g.drawImage(image,0,0,35,35,this); } super.paintComponents(g); }

游戲結束的鎖定與彈窗

// Handle mouse click on a cell @Override public void mouseClicked(MouseEvent e) { if (ISOVER) return; // if game is over, any issue should be forbidden int response=-1; if (token == ’ ’) // If cell is not occupied { if (whoseTurn == ’X’) // If it is the X player’s turn { setToken(’X’); // Set token in the cell whoseTurn = ’O’; // Change the turn jlblStatus.setText('The White’s Turn'); // Display status if (isWon(’X’)) { jlblStatus.setText('The Black Won! The Game Is Over!'); response = JOptionPane.showConfirmDialog(null, 'The Black Won! The Game Is Over!n' +'Do you want to quit?','提示',JOptionPane.YES_NO_OPTION); ISOVER = true; if (response == 0) System.exit(0); // choose 'Yes' than quit; } } else if (whoseTurn == ’O’) // If it is the O player’s turn { setToken(’O’); // Set token in the cell whoseTurn = ’X’; // Change the turn jlblStatus.setText('The Black’s Turn'); // Display status if (isWon(’O’)) { jlblStatus.setText('The White Won! The Game Is Over!'); response = JOptionPane.showConfirmDialog(null, 'The White Won! The Game Is Over!n' +'Do you want to quit?','提示',JOptionPane.YES_NO_OPTION); ISOVER = true; if (response == 0) System.exit(0); // choose 'Yes' than quit; } } if (isFull()) { jlblStatus.setText('Plain Game! The Game Is Over!'); response = JOptionPane.showConfirmDialog(null, 'Plain Game! The Game Is Over!n' +'Do you want to quit?','提示',JOptionPane.YES_NO_OPTION); ISOVER = true; if (response == 0) System.exit(0); // choose 'Yes' than quit; } } }

其他棋子信息

@Override public void mousePressed(MouseEvent e) { // TODO: implement this java.awt.event.MouseListener method; } @Override public void mouseReleased(MouseEvent e) { // TODO: implement this java.awt.event.MouseListener method; } @Override public void mouseEntered(MouseEvent e) { // TODO: implement this java.awt.event.MouseListener method; } @Override public void mouseExited(MouseEvent e) { // TODO: implement this java.awt.event.MouseListener method; } }}

圖片顯示

java GUI實現五子棋游戲

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持好吧啦網。

標簽: Java
相關文章:
主站蜘蛛池模板: 中文字幕一区二区三区在线观看 | 免费一级特黄欧美大片久久网 | 亚洲精品国产成人 | 成人久久久久久 | 国产成人精品视频免费大全 | 久久精品一区二区三区不卡牛牛 | 亚洲三级视频在线观看 | 国产亚洲91 | 免费看成人www的网站软件 | 亚洲经典在线中文字幕 | 亚洲黄色免费在线观看 | 亚洲va中文字幕 | 一级美国片免费看 | 暴操女人 | 久久久久国产精品免费免费 | 一区二区网站在线观看 | 欧美高清另类自拍视频在线看 | 美女黄色免费在线观看 | 美美女下面被cao爽 美女131爽爽爽做爰中文视频 | 日韩一区国产二区欧美三区 | 超级碰碰碰在线观看 | 日韩一级精品久久久久 | 韩国一级片在线观看 | 亚洲男人的天堂久久香蕉 | 精品欧美亚洲韩国日本久久 | 久久中文字幕综合不卡一二区 | 日韩三级黄色 | 日本不卡一二三区 | 一区二区三区在线 | 网站 | 中文字幕一区二区视频 | 久久国产视频网 | 亚洲香蕉久久一区二区三区四区 | 亚洲精品国产一区二区三区四区 | 毛片免费观看的视频 | 狠狠色丁香久久婷婷综 | 毛片在线观看视频 | 黄色毛片视频在线观看 | 99国产福利视频区 | 国产女主播在线 | 99久久精彩视频 | 色综合久久88中文字幕 |