欢迎来到天天文库
浏览记录
ID:16247863
大小:329.50 KB
页数:98页
时间:2018-08-08
《java中国象棋程序源代码》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、importjava.io.*;importjava.applet.Applet;importjava.applet.AudioClip;importjavax.swing.*;importjava.awt.*;importjava.awt.event.*;importjavax.swing.*;importjava.util.*;importjava.io.*;//主类//主框架类publicclassChineseChess{publicstaticvoidmain(Stringargs[]){newChessMainFrame("中国象棋");}
2、}classChessMainFrameextendsJFrameimplementsActionListener,MouseListener,Runnable{MusicDemot=newMusicDemo();//玩家JLabelplay[]=newJLabel[32];//棋盘JLabelimage;//窗格Containercon;//工具栏JToolBarjmain;//重新开始JButtonanew;//悔棋JButtonrepent;//打开JButtonshowOpen;//保存JButtonshowSave;//退出JButtonex
3、it;//当前信息JLabeltext;//保存当前操作VectorFileVar;VectorVar;//规则类对象(使于调用方法)ChessRulerule;/*单击棋子**********************************//*chessManClick=true闪烁棋子并给线程响应*//*chessManClick=false吃棋子停止闪烁并给线程响应*/booleanchessManClick;/*控制玩家走棋****************************//*chessPlayClick=1黑棋走棋*//*chess
4、PlayClick=2红棋走棋默认红棋*//*chessPlayClick=3双方都不能走棋*/intchessPlayClick=2;//控制棋子闪烁的线程Threadtmain;//把第一次的单击棋子给线程响应staticintMan,i;ChessMainFrame(){}ChessMainFrame(StringTitle){//获行客格引用con=this.getContentPane();con.setLayout(null);//实例化规则类rule=newChessRule();FileVar=newVector();Var=newVe
5、ctor();//创建工具栏jmain=newJToolBar();text=newJLabel("热烈欢迎");text.setToolTipText("提示信息");anew=newJButton("新游戏");anew.setToolTipText("重新开始新的一局");exit=newJButton("退出");exit.setToolTipText("退出本程序");repent=newJButton("悔棋");repent.setToolTipText("返回到上次走棋的位置");showOpen=newJButton("打开");sh
6、owOpen.setToolTipText("打开以前棋局");showSave=newJButton("保存");showSave.setToolTipText("保存当前棋局");//把组件添加到工具栏jmain.setLayout(newGridLayout(0,6));jmain.add(anew);jmain.add(repent);jmain.add(showOpen);jmain.add(showSave);jmain.add(exit);jmain.add(text);jmain.setBounds(0,500,450,30);con.
7、add(jmain);//添加棋子标签drawChessMan();/*注册监听者*///注册按扭监听anew.addActionListener(this);repent.addActionListener(this);exit.addActionListener(this);showOpen.addActionListener(this);showSave.addActionListener(this);//注册棋子移动监听for(inti=0;i<32;i++){con.add(play[i]);play[i].addMouseListener(
8、this);}//添加棋盘标签con.add(image=newJLabel(newImage
此文档下载收益归作者所有