当前位置:   article > 正文

五子棋——人机博弈(Java实现)_五子棋机器博弈系统

五子棋机器博弈系统

1引言

本文档是考试系统项目的内容汇总,其主要内容包括:

  1. 项目说明
  2. 需求分析
  3. 项目设计
  4. 编码与实现
  5. 测试说明
  6. 课程设计体会与总结

2项目说明

2.1项目要求

五子棋是全国智力运动会竞技项目之一,是一种两人对弈的纯策略型棋类游戏。通常双方分别使用黑白两色的棋子,下在棋盘直线与横线的交叉点上,先形成五子连线者获胜。具体要求如下:

功能需求:

1、实现人与人对决。

2、实现人与机器对决,对局双方各执一色棋子,要求其中一方为机器。

3、游戏开始要求为空棋盘。

4、黑先、白后,交替下子,每次只能下一子。

5、棋子下在棋盘的空白点上,棋子下定后,不得向其它点移动,不得从棋盘上拿掉或拿起另落别处。

6、黑方的第一枚棋子可下在棋盘任意交叉点上。

7、轮流下子是双方的权利,但允许任何一方放弃下子权

8、直到有一方获胜,结束对局。

9、要有图形界面,且界面设计美观、交互性好

10、允许悔棋

11、可以直接结束正在进行的对局

3需求分析

3.1系统数据结构分析

五子棋的棋盘是一个15*15规格的棋盘,对于棋局使用同等大小的二维数组存放棋盘上当前的格局。使用同样大小的二维数组,存放棋盘上各个点计算出来的权值。为了计算实现悔棋操作,定义了一个栈,用来记录每一步的棋子。这三个数据结构定义在ChessPad中,分别命名为:ColorPad  和 ValuePad 以及 Stack。ChessPad相当于一个虚拟的棋盘,系统界面就是根据该类的上述三个数据,去绘制棋盘,形成可视化界面的。

机器方AI类的定义,该类中使用到的数据结构有两个Map,分别为AttackMap,其中存放的是进攻棋型,以及棋型对应的权值;DefendMap存放的是防守棋型,以及棋型对应的权值。这两个Map中,棋型是key,权值是value。

3.2系统界面分析

系统界面布局为上下布局,上半部分为棋盘,大小为800*700像素,棋盘单独为一个容器定义为ChessPadPanel;下半部分为按钮区,也是一个单独的容器ButtonPanel,各个按钮用于实现对系统的各个功能的操作。

主页面MainPanel中包含两个组件,ChessPadPanle 和 ButtonPanel,为实现上下布局,则MainPanel需要继承JSplitPane类,实现对容器的上下布局。

3.3AI的下棋决策分析

本系统的AI博弈决策采用的是向后看一步的机制,即AI在下棋之前,会假设棋盘中每一个空点下黑棋以及下白棋以后,各个点会得到什么样的棋型,然后计算各点棋型的权值总和,作为该点的权值。最后,在ValuePad中选取一个权值最大的点作为AI的下一步棋。

3.4系统按钮功能的分析

模式按钮,本系统具有两种模式,分别为“人人对战”和“人机对战”,用于选择一个按钮点击,则进入相应的对局模式,整个对局的过程中的每一步走棋系统都需要判断当前的对局模式是什么,然后来选择是否需要调用AI进行下棋,为此在ChessPad中定义一个mode参数,该参数用来记录当前对局的模式为什么。

结束按钮,该按钮实现结束当前正在进行的对局,同时结束以后上一局的棋局不能够影响到了下一局游戏,所以当点击结束按钮以后,需要清除棋盘上的数据,ColorPad 和 ValuePad都应重置为空棋盘。

跳过按钮,实现用户弃棋的操作(即放弃本回合下棋),当点击该按钮是,将当前下棋方的下棋权力交给对手方,为了实现该功能,系统需要能够判断当前下棋的是白方还是黑方,为此在ChessPad中定义了一个BlackTurn参数,该参数为一个布尔值,值为true时,表示当前为黑方回合,值为false时表示当前回合为白方回合,所以要实现跳过的功能,只需要在用户每次点击该按钮以后,修改BalckTurn的值即可。

悔棋按钮,实现用户悔棋操作,需要记录棋局的下棋顺序,因此系统有一个栈Stack用来记录当前棋局的每一步走棋,用户点击悔棋,则将栈顶的走棋出栈,同时重新绘制棋盘即可。

4系统概要设计

系统对局流程如图所示:

5编码与实现

5.1系统目录结构

5.2系统详细代码

详情见附录文件(与本报告一起解压保存)。

Domain目录下代码:

        AI类

  1. package Domain;
  2. import Listiner.StopListener;
  3. import Panel.ChessPadPanel;
  4. import Panel.MainPanel;
  5. import Utils.PositionUtils;
  6. import javax.swing.*;
  7. import java.util.*;
  8. /**
  9. * AI对象,人机对战模式时被激活
  10. *
  11. *
  12. */
  13. public class AI {
  14. private static Map<String,Integer> AttackMap=new HashMap<>();
  15. private static Map<String,Integer> DefendMap=new HashMap<>();
  16. /**
  17. * 静态代码块,往map里面加入权值计算的规则
  18. *
  19. * -:表示空棋
  20. * *:表示白棋
  21. * o:表示白棋
  22. */
  23. static {
  24. //还要重新设计赋分策略,才能保证五子棋机器人的准确判断
  25. //因为已经固定了 *为黑子,且默认将机器人设为黑方,所以机器人只能是黑方
  26. //还要设置防守方的数值,防止被gank掉
  27. //右边put的map值,是防守分数,这样Ai就不会一味的猛冲
  28. //左边:进攻棋链,权值越大说明该棋链越接近胜利 右边:防御棋链,权值越大说明该棋链约值得防御
  29. AttackMap.put("*****", 100000);//连五
  30. /* */DefendMap.put("ooooo", 30000);
  31. AttackMap.put("-****-", 5000);//活四
  32. /* */DefendMap.put("-oooo-", 3000);
  33. AttackMap.put("*-***", 700);//冲四 1
  34. /* */DefendMap.put("o-ooo", 150);
  35. AttackMap.put("***-*", 700);//冲四 1 反向
  36. /* */DefendMap.put("ooo-o", 150);
  37. AttackMap.put("-****o", 1000);//冲四 2
  38. /* */DefendMap.put("-oooo*", 200);
  39. AttackMap.put("o****-", 1000);//冲四 2 反向
  40. /* */DefendMap.put("*oooo-", 200);
  41. AttackMap.put("**-**", 700);//冲四 3
  42. /* */DefendMap.put("oo-oo", 200);
  43. AttackMap.put("-***-", 500);//活三 1
  44. /* */DefendMap.put("-ooo-", 100);
  45. AttackMap.put("*-**", 150);//活三 2
  46. /* */DefendMap.put("o-oo", 50);
  47. AttackMap.put("**-*", 150);//活三 2 反向
  48. /* */DefendMap.put("oo-o", 50);
  49. AttackMap.put("--***o", 100);//眠三 1
  50. /* */DefendMap.put("--ooo*", 20);
  51. AttackMap.put("o***--", 100);//眠三 1 反向
  52. /* */DefendMap.put("*ooo--", 20);
  53. AttackMap.put("-*-**o", 80);//眠三 2
  54. /* */DefendMap.put("-o-oo*", 15);
  55. AttackMap.put("o**-*-", 80);//眠三 2 反向
  56. /* */DefendMap.put("*oo-o-", 15);
  57. AttackMap.put("-**-*o", 60);//眠三 3
  58. /* */DefendMap.put("-oo-o*", 10);
  59. AttackMap.put("o*-**-", 60);//眠三 3 反向
  60. /* */DefendMap.put("*o-oo-", 10);
  61. AttackMap.put("*--**", 60);//眠三 4
  62. /* */DefendMap.put("o--oo", 10);
  63. AttackMap.put("**--*", 60);//眠三 4 反向
  64. /* */DefendMap.put("oo--o", 10);
  65. AttackMap.put("*-*-*", 60);//眠三 5
  66. /* */DefendMap.put("o-o-o", 10);
  67. AttackMap.put("o-***-o", 60);//眠三 6
  68. /* */DefendMap.put("*-ooo-*", 2);
  69. AttackMap.put("--**--", 50);//活二 1
  70. /* */DefendMap.put("--oo--", 2);
  71. AttackMap.put("-*-*-", 20);//活二 2
  72. /* */DefendMap.put("-o-o-", 2);
  73. AttackMap.put("*--*", 20);//活二 3
  74. /* */DefendMap.put("o--o", 2);
  75. AttackMap.put("---**o", 10);//眠二 1
  76. /* */DefendMap.put("---oo*", 1);
  77. AttackMap.put("o**---", 10);//眠二 1 反向
  78. /* */DefendMap.put("*oo---", 1);
  79. AttackMap.put("--*-*o", 10);//眠二 2
  80. /* */DefendMap.put("--o-o*", 1 );
  81. AttackMap.put("o*-*--", 10);//眠二 2 反向
  82. /* */DefendMap.put("*o-o--", 1);
  83. AttackMap.put("-*--*o", 10);//眠二 3
  84. /* */DefendMap.put("-o--o*", 1);
  85. AttackMap.put("o*--*-", 10);//眠二 3 反向
  86. /* */DefendMap.put("*o--o-", 1);
  87. AttackMap.put("*---*", 10);//眠二 4
  88. /* */DefendMap.put("o---o", 1);
  89. //上面之所以int类型不能自动向上转换为long类型
  90. //是因为hashMap中的value使用的是包装类Long
  91. //包装类虽然能自动装箱,但是不能将基础类型转换,再装箱
  92. //所以需要手动转换为long类型
  93. }
  94. //Ai下棋主流程
  95. public static void AiPlay(){
  96. //清空权值矩阵,避免前一回合影响本回合的判断
  97. ChessPad.ClearValuePad();
  98. //判断是否为黑棋回合,AI永远下黑棋
  99. if (!ChessPad.isBlackTurn()){
  100. return;
  101. }
  102. Position bestPosition=null;
  103. if(isEmptyPad()){
  104. //如果是空棋盘,则永远下中间点的位置,
  105. Random random=new Random();
  106. //bestPosition = new Position(random.nextInt(15),random.nextInt(15));
  107. bestPosition = new Position(7,7);
  108. }
  109. else {
  110. //先计算防御棋链,看看当前棋局是否有需要防御的地方
  111. boolean defend=false;
  112. /*x:
  113. for (int i=0;i<15;i++){
  114. for (int j=0;j<15;j++){
  115. List<String> defends = getPositionChessLink(new Position(i, j), "defend");
  116. for (String s : defends) {
  117. if (s.equals("ooooo")){
  118. System.out.println("防御");
  119. bestPosition=new Position(i,j);
  120. defend=true;
  121. break x;
  122. }
  123. }
  124. }
  125. }*/
  126. if (!defend){
  127. //计算整个棋盘的权值
  128. getAllValue();
  129. //选取最佳下棋位置
  130. bestPosition = getBestPosition();
  131. }
  132. }
  133. //将棋下入颜色棋盘
  134. putChess(bestPosition);
  135. Sequence.push(bestPosition,ChessColor.Black); //当前这一步棋入栈
  136. //更换回合
  137. ChessPad.ChangeTurn();
  138. }
  139. /**
  140. * 该方法实现Ai的下棋操作,传入的Position对象 坐标为行列坐标
  141. * @param p
  142. */
  143. public static void putChess(Position p){
  144. System.out.println(p);
  145. //更改颜色矩阵,完成下棋操作
  146. ChessPad.colorPad[p.getX()][p.getY()]=ChessColor.Black;
  147. }
  148. /**
  149. * 该方法啊实现选取权值最大的点,AI下的棋就是下在这个点上
  150. * @return 返回的是一个行列坐标的position对象
  151. */
  152. public static Position getBestPosition(){
  153. //遍历权值棋盘,找出权值最大的点
  154. int[][] valuePad = ChessPad.valuePad;
  155. ChessColor[][] colorPad = ChessPad.colorPad;
  156. int size = ChessPad.size;
  157. int max=-1;
  158. Position position=new Position();
  159. for(int i=0;i<size;i++){
  160. for (int j=0;j<size;j++){
  161. //判断该点的权值是否大于最大值,同时该点必须为空棋
  162. if(colorPad[i][j]==ChessColor.Blank&&valuePad[i][j]>max){
  163. max=valuePad[i][j];
  164. position.setX(i);
  165. position.setY(j);
  166. }
  167. }
  168. }
  169. /* return position;
  170. */ //遍历找出所有的最大权值点
  171. List<Position> allMaxPosition=new ArrayList<>();
  172. for(int i=0;i<size;i++){
  173. for (int j=0;j<size;j++){
  174. //判断该点的权值是否大于最大值,同时该点必须为空棋
  175. if(colorPad[i][j]==ChessColor.Blank&&valuePad[i][j]==max){
  176. allMaxPosition.add(new Position(i,j));
  177. }
  178. }
  179. }
  180. //在最大权值点列表种,随机取出一个点(随机取的原因是:遍历数组都是按固定顺序遍历的,若不采取随机取的方法,则玩家能够通过固定的套路取胜)
  181. int s=allMaxPosition.size()-1;
  182. return allMaxPosition.get((int)(Math.random()*s));
  183. }
  184. /**
  185. * 为整个权值棋盘,赋值
  186. */
  187. public static void getAllValue(){
  188. //获取权值棋盘
  189. int[][] valuePad = ChessPad.valuePad;
  190. int size = ChessPad.size;
  191. for (int i=0;i<size;i++){
  192. for (int j = 0; j < size; j++) {
  193. //将每一个点传入计算权值
  194. Position position=new Position(i,j);
  195. valuePad[i][j]=CalculateValue(position);
  196. }
  197. }
  198. }
  199. public static int getPositionDefendValue(Position p){
  200. List<String> defendList = getPositionChessLink(p,"defend");
  201. //计算权值
  202. int defendValue=0;
  203. for (String s : defendList) {
  204. if(DefendMap.containsKey(s)){
  205. defendValue+=DefendMap.get(s);
  206. }
  207. }
  208. return defendValue;
  209. }
  210. /**
  211. * 该方法实现计算传入点的权值
  212. * p的坐标应该是行列坐标
  213. * @return
  214. */
  215. public static int CalculateValue(Position p){
  216. //调用方法,返回该店的棋链
  217. List<String> attackList = getPositionChessLink(p,"attack");
  218. List<String> defendList = getPositionChessLink(p,"defend");
  219. //计算权值
  220. int attackValue=0;
  221. int defendValue=0;
  222. for (String s : attackList) {
  223. if(AttackMap.containsKey(s)){
  224. attackValue+=AttackMap.get(s);
  225. }
  226. }
  227. for (String s : defendList) {
  228. if(DefendMap.containsKey(s)){
  229. defendValue+=DefendMap.get(s);
  230. }
  231. }
  232. return Math.abs(attackValue-defendValue); //值越大说明该点即适合防御又适合进攻
  233. }
  234. /**
  235. * 该方法实现获取一个点的所有棋链
  236. * 参数p必须为行列坐标
  237. *
  238. * 棋链的获取分为四个方向:横、竖、斜、反斜
  239. * @return
  240. */
  241. public static List<String> getPositionChessLink(Position p,String type){
  242. //获取棋盘
  243. ChessColor[][] colorPad = ChessPad.colorPad;
  244. int size = ChessPad.size; //棋盘的大小
  245. boolean flag=false;
  246. if(colorPad[p.getX()][p.getY()]==ChessColor.Blank&&type.equals("attack")){
  247. //假设该空点下的棋为黑棋
  248. colorPad[p.getX()][p.getY()]=ChessColor.Black;
  249. flag=true;
  250. }
  251. else if(colorPad[p.getX()][p.getY()]==ChessColor.Blank&&type.equals("defend")){
  252. colorPad[p.getX()][p.getY()]=ChessColor.White;
  253. flag=true;
  254. }
  255. List<String> resultList=new ArrayList<>();
  256. // System.out.println("竖方向:");
  257. //先从竖方向获取棋链
  258. for (int i=4;i<=7;i++){ //棋链长度最短4 最长不超过7
  259. for (int j = 0; j <i; j++) { //判断传入的棋子在棋链上的位置(即第几个棋子,从左向右数)
  260. String s="";
  261. int startRow=p.getX()-j; //计算竖方向的开始坐标
  262. int endRow=startRow+i-1; //计算竖方向的结束坐标
  263. //此处需要判断开始的点和结束的点是否超出了棋盘
  264. if(startRow<0||endRow>=size){
  265. //该点超过了棋盘的范围
  266. continue;
  267. }
  268. for (;startRow<=endRow;startRow++){
  269. if(colorPad[startRow][p.getY()]==ChessColor.Blank){
  270. s=s+"-";
  271. }
  272. else if (colorPad[startRow][p.getY()]==ChessColor.White){
  273. s=s+"o";
  274. }
  275. else {
  276. s=s+"*";
  277. }
  278. }
  279. // System.out.println(s);
  280. resultList.add(s); //将该棋链加入结果列表
  281. }
  282. }
  283. // System.out.println("横方向:");
  284. //计算横方向的棋链权值
  285. for (int i = 4; i <= 7 ; i++) { //棋链长度,最短4,最长7
  286. for (int j = 0; j <i; j++) { //棋在棋链上的位置,(从上往下)
  287. String s="";
  288. //由于是横方向,故只需要计算开始的y和结束的y坐标
  289. int startCol= p.getY()-j;
  290. int endCol=startCol+i-1;
  291. //判断开始位置和结束位置是否在棋盘范围内
  292. if (startCol<0||endCol>=size){
  293. continue;
  294. }
  295. for (;startCol<=endCol;startCol++){
  296. if(colorPad[p.getX()][startCol]==ChessColor.Blank){
  297. s=s+"-";
  298. }
  299. else if (colorPad[p.getX()][startCol]==ChessColor.White){
  300. s=s+"o";
  301. }
  302. else {
  303. s=s+"*";
  304. }
  305. }
  306. // System.out.println(s);
  307. resultList.add(s);
  308. }
  309. }
  310. // System.out.println("斜方向:");
  311. //从斜方向获取棋链
  312. for (int i=4;i<=7;i++){
  313. for (int j=0;j<i;j++){
  314. //此处为斜方向,改变棋在棋链上的位置,涉及 x 和 y 两个方向的改变,从左下往右上的方向来计算 两个坐标的变化为
  315. int startRow= p.getX()+j;
  316. int startCol= p.getY()-j;
  317. int endRow=startRow-i+1;
  318. int endCol=startCol+i-1;
  319. //判断开始点和结束点是否在棋盘内
  320. if (!((startRow>=0&&startRow<size&&startCol>=0&&startCol<size)&&(endRow>=0&&endRow<size&&endCol>=0&&endCol<size))){
  321. continue;
  322. }
  323. String s="";
  324. for (int row=startRow,col=startCol;
  325. row>=endRow && col<=endCol;
  326. row--,col++){
  327. if(colorPad[row][col]==ChessColor.Blank){
  328. s=s+"-";
  329. }
  330. else if (colorPad[row][col]==ChessColor.White){
  331. s=s+"o";
  332. }
  333. else {
  334. s=s+"*";
  335. }
  336. }
  337. // System.out.println(s);
  338. resultList.add(s);
  339. }
  340. }
  341. // System.out.println("反斜方向:");
  342. //反斜方向
  343. for(int i=4;i<=7;i++){
  344. for(int j=0;j<i;j++){
  345. //计算开始的点
  346. int startRow=p.getX()-j;
  347. int startCol=p.getY()-j;
  348. int endRow=startRow+i-1;
  349. int endCol=startCol+i-1;
  350. String s="";
  351. if (!((startRow>=0&&startRow<size&&startCol>=0&&startCol<size)&&(endRow>=0&&endRow<size&&endCol>=0&&endCol<size))){
  352. continue;
  353. }
  354. for (int row=startRow,col=startCol;row<=endRow && col<=endCol ; row++,col++){
  355. if(colorPad[row][col]==ChessColor.Blank){
  356. s=s+"-";
  357. }
  358. else if (colorPad[row][col]==ChessColor.White){
  359. s=s+"o";
  360. }
  361. else {
  362. s=s+"*";
  363. }
  364. }
  365. // System.out.println(s);
  366. resultList.add(s);
  367. }
  368. }
  369. //返回之前将临时下的棋恢复
  370. if (flag){
  371. colorPad[p.getX()][p.getY()]=ChessColor.Blank;
  372. }
  373. return resultList;
  374. }
  375. /**
  376. * 该方法用于判断棋盘是不是都为空
  377. * @return
  378. */
  379. public static boolean isEmptyPad(){
  380. for (ChessColor[] chessColors : ChessPad.colorPad) {
  381. for (ChessColor chessColor : chessColors) {
  382. if(chessColor!=ChessColor.Blank){
  383. return false;
  384. }
  385. }
  386. }
  387. return true;
  388. }
  389. /**
  390. * 判断游戏进行状态
  391. */
  392. public static void Judge(){
  393. //获取所有的棋链
  394. List<String> allChessLink = getAllChessLink();
  395. for (String s : allChessLink) {
  396. if(s.equals("ooooo")){
  397. JOptionPane.showMessageDialog(MainPanel.getInstance(),"白方获胜","游戏结束",JOptionPane.INFORMATION_MESSAGE);
  398. new StopListener().actionPerformed(null); //完成重置工作
  399. return;
  400. }
  401. else if(s.equals("*****")){
  402. JOptionPane.showMessageDialog(MainPanel.getInstance(),"黑方获胜","游戏结束",JOptionPane.INFORMATION_MESSAGE);
  403. new StopListener().actionPerformed(null); //完成重置工作
  404. return;
  405. }
  406. }
  407. //判断是否为平局
  408. boolean flag=true;
  409. for (int i=0;i<15;i++){
  410. for (int j=0;j<15;j++){
  411. flag=ChessPad.colorPad[i][j]==ChessColor.Blank;
  412. }
  413. }
  414. if(!flag){
  415. JOptionPane.showMessageDialog(MainPanel.getInstance(),"平局","游戏结束",JOptionPane.INFORMATION_MESSAGE);
  416. new StopListener().actionPerformed(null); //完成重置工作
  417. return;
  418. }
  419. }
  420. public static List<String> getAllChessLink(){
  421. //获取棋盘
  422. ChessColor[][] colorPad = ChessPad.colorPad;
  423. int size = ChessPad.size; //棋盘的大小
  424. List<String> resultList=new ArrayList<>();
  425. // System.out.println("竖方向:");
  426. for (int k=0;k<15;k++){
  427. for (int z=0;z<15;z++){
  428. Position p=new Position(k,z);
  429. //先从竖方向获取棋链
  430. for (int i=4;i<=7;i++){ //棋链长度最短4 最长不超过7
  431. for (int j = 0; j <i; j++) { //判断传入的棋子在棋链上的位置(即第几个棋子,从左向右数)
  432. String s="";
  433. int startRow=p.getX()-j; //计算竖方向的开始坐标
  434. int endRow=startRow+i-1; //计算竖方向的结束坐标
  435. //此处需要判断开始的点和结束的点是否超出了棋盘
  436. if(startRow<0||endRow>=size){
  437. //该点超过了棋盘的范围
  438. continue;
  439. }
  440. for (;startRow<=endRow;startRow++){
  441. if(colorPad[startRow][p.getY()]==ChessColor.Blank){
  442. s=s+"-";
  443. }
  444. else if (colorPad[startRow][p.getY()]==ChessColor.White){
  445. s=s+"o";
  446. }
  447. else {
  448. s=s+"*";
  449. }
  450. }
  451. // System.out.println(s);
  452. resultList.add(s); //将该棋链加入结果列表
  453. }
  454. }
  455. // System.out.println("横方向:");
  456. //计算横方向的棋链权值
  457. for (int i = 4; i <= 7 ; i++) { //棋链长度,最短4,最长7
  458. for (int j = 0; j <i; j++) { //棋在棋链上的位置,(从上往下)
  459. String s="";
  460. //由于是横方向,故只需要计算开始的y和结束的y坐标
  461. int startCol= p.getY()-j;
  462. int endCol=startCol+i-1;
  463. //判断开始位置和结束位置是否在棋盘范围内
  464. if (startCol<0||endCol>=size){
  465. continue;
  466. }
  467. for (;startCol<=endCol;startCol++){
  468. if(colorPad[p.getX()][startCol]==ChessColor.Blank){
  469. s=s+"-";
  470. }
  471. else if (colorPad[p.getX()][startCol]==ChessColor.White){
  472. s=s+"o";
  473. }
  474. else {
  475. s=s+"*";
  476. }
  477. }
  478. // System.out.println(s);
  479. resultList.add(s);
  480. }
  481. }
  482. // System.out.println("斜方向:");
  483. //从斜方向获取棋链
  484. for (int i=4;i<=7;i++){
  485. for (int j=0;j<i;j++){
  486. //此处为斜方向,改变棋在棋链上的位置,涉及 x 和 y 两个方向的改变,从左下往右上的方向来计算 两个坐标的变化为 x减小 y减小
  487. int startRow= p.getX()+j;
  488. int startCol= p.getY()-j;
  489. int endRow=startRow-i+1;
  490. int endCol=startCol+i-1;
  491. //判断开始点和结束点是否在棋盘内
  492. if (!((startRow>=0&&startRow<size&&startCol>=0&&startCol<size)&&(endRow>=0&&endRow<size&&endCol>=0&&endCol<size))){
  493. continue;
  494. }
  495. String s="";
  496. for (int row=startRow,col=startCol;
  497. row>=endRow && col<=endCol;
  498. row--,col++){
  499. if(colorPad[row][col]==ChessColor.Blank){
  500. s=s+"-";
  501. }
  502. else if (colorPad[row][col]==ChessColor.White){
  503. s=s+"o";
  504. }
  505. else {
  506. s=s+"*";
  507. }
  508. }
  509. // System.out.println(s);
  510. resultList.add(s);
  511. }
  512. }
  513. // System.out.println("反斜方向:");
  514. //反斜方向
  515. for(int i=4;i<=7;i++){
  516. for(int j=0;j<i;j++){
  517. //计算开始的点
  518. int startRow=p.getX()-j;
  519. int startCol=p.getY()-j;
  520. int endRow=startRow+i-1;
  521. int endCol=startCol+i-1;
  522. String s="";
  523. if (!((startRow>=0&&startRow<size&&startCol>=0&&startCol<size)&&(endRow>=0&&endRow<size&&endCol>=0&&endCol<size))){
  524. continue;
  525. }
  526. for (int row=startRow,col=startCol;row<=endRow && col<=endCol ; row++,col++){
  527. if(colorPad[row][col]==ChessColor.Blank){
  528. s=s+"-";
  529. }
  530. else if (colorPad[row][col]==ChessColor.White){
  531. s=s+"o";
  532. }
  533. else {
  534. s=s+"*";
  535. }
  536. }
  537. // System.out.println(s);
  538. resultList.add(s);
  539. }
  540. }
  541. }
  542. }
  543. return resultList;
  544. }
  545. }

ChessColor:该类里面有三个枚举值分别为:White、Black、Blank,用来表示棋盘上的颜色。

  1. package Domain;
  2. //棋盘颜色的枚举值
  3. //一共三种棋,空白表示无棋,White表示白棋,Black表示黑棋
  4. public enum ChessColor {
  5. Blank,White,Black
  6. }

ChessPad:整个棋盘的数据

  1. package Domain;
  2. /*
  3. 棋盘值
  4. */
  5. public class ChessPad {
  6. public static int size=15; //棋盘的规格
  7. public static ChessColor[][] colorPad=new ChessColor[size][size]; //棋盘的颜色矩阵,用来记录哪些地方下了棋
  8. public static int[][] valuePad=new int[size][size]; //棋盘的权值矩阵,用来记录每一个位置的权值
  9. private static Boolean BlackTurn=null; //该值用来判断是否为黑棋的回合,黑棋永远先手,所以初值为true
  10. public static String mode=""; //该值用来表示当前整个游戏的对战模式,初值为空串
  11. //构造函数,完成程序启动时,第一次初始化棋盘的操作
  12. public ChessPad(){
  13. }
  14. //回合转换
  15. public static void ChangeTurn(){
  16. BlackTurn=!BlackTurn;
  17. }
  18. /**
  19. * 该函数用于判断当前是否为黑棋的回合
  20. * @return
  21. */
  22. public static Boolean isBlackTurn(){
  23. return BlackTurn;
  24. }
  25. public static void setBlackTurn(boolean flag){
  26. BlackTurn=flag;
  27. }
  28. public static void setBlackTurn(Boolean blackTurn) {
  29. BlackTurn = blackTurn;
  30. }
  31. /**
  32. * 请除棋盘上所有的颜色,将棋盘全部置为Blank
  33. */
  34. public static void ClearColorPad(){
  35. for (int i = 0; i < size; i++) {
  36. for (int j = 0; j < size; j++) {
  37. colorPad[i][j]=ChessColor.Blank;
  38. }
  39. }
  40. }
  41. /**
  42. * 清除棋盘上所有的权值,权值设为-1
  43. */
  44. public static void ClearValuePad(){
  45. for (int i = 0; i < size; i++) {
  46. for (int j = 0; j < size; j++) {
  47. valuePad[i][j]=-1;
  48. }
  49. }
  50. }
  51. }

Position:表示棋子位置的类,实现以像素为单位的坐标与矩阵中行列坐标之间的转换

  1. package Domain;
  2. public class Position {
  3. private int x;
  4. private int y;
  5. public Position() {
  6. }
  7. public Position(int x, int y) {
  8. this.x = x;
  9. this.y = y;
  10. }
  11. public int getX() {
  12. return x;
  13. }
  14. public void setX(int x) {
  15. this.x = x;
  16. }
  17. public int getY() {
  18. return y;
  19. }
  20. @Override
  21. public String toString() {
  22. return "Position{" +
  23. "x=" + x +
  24. ", y=" + y +
  25. '}';
  26. }
  27. public void setY(int y) {
  28. this.y = y;
  29. }
  30. }

Sequence:记录下棋顺序的类

  1. package Domain;
  2. import java.util.ArrayList;
  3. import java.util.List;
  4. /**
  5. * 该对象保存的是下棋的顺序,用于悔棋操作
  6. * 使用List数据结构保存,按栈的先进先出方式对数据进行存取
  7. */
  8. public class Sequence {
  9. public static List<Position> positions=new ArrayList<>(); //下棋位置的顺序
  10. public static List<ChessColor> colorsSequence=new ArrayList<>(); //下棋颜色的顺序
  11. /**
  12. * 出栈操作
  13. * @return
  14. */
  15. public static Position pop(){
  16. colorsSequence.remove(colorsSequence.size()-1);
  17. return positions.remove(positions.size()-1);
  18. }
  19. public static void push(Position p,ChessColor color){
  20. colorsSequence.add(color);
  21. positions.add(p);
  22. }
  23. /**
  24. * 清空下棋顺序
  25. */
  26. public static void ClearSequence(){
  27. positions=new ArrayList<>();
  28. colorsSequence=new ArrayList<>();
  29. }
  30. }

Listener目录下代码:

        JumpListener:跳过按钮的监督器

  1. package Listiner;
  2. import Domain.AI;
  3. import Domain.ChessPad;
  4. import Panel.ButtonPanel;
  5. import Panel.ChessPadPanel;
  6. import java.awt.event.ActionEvent;
  7. import java.awt.event.ActionListener;
  8. /**
  9. * 跳过按钮的监听器,跳过操作的含义是,落子权的交接,所以点击该按钮后,更改当前回合即可
  10. */
  11. public class JumpListener implements ActionListener {
  12. @Override
  13. public void actionPerformed(ActionEvent e) {
  14. if(ChessPad.mode.equals("人人对战")){
  15. ChessPad.ChangeTurn();
  16. //更改提示信息
  17. ButtonPanel.changeMsg();
  18. }
  19. else {
  20. ChessPad.ChangeTurn();
  21. ButtonPanel.changeMsg();
  22. AI.AiPlay();
  23. ChessPadPanel.getInstance().repaint();
  24. }
  25. }
  26. }

ModelListener:模式选择按钮的监听器,该监听器作用在两个按钮上,分别为“人机对战” 和“人人对战”

  1. package Listiner;
  2. import Domain.AI;
  3. import Domain.ChessPad;
  4. import Panel.ButtonPanel;
  5. import Panel.ChessPadPanel;
  6. import javax.swing.*;
  7. import java.awt.event.ActionEvent;
  8. import java.awt.event.ActionListener;
  9. /**
  10. * 模式监听器,作用在模式按钮上
  11. */
  12. public class ModeListener implements ActionListener {
  13. @Override
  14. public void actionPerformed(ActionEvent e) {
  15. String actionCommand = e.getActionCommand();
  16. ChessPadPanel.getInstance().addMouseListener(ChessPadPanel.listener);
  17. if(actionCommand.equals("人机对战")){
  18. //选择的模式为人机对战,则将当前对战模式设为人机对战,同时禁用人人对战按钮
  19. ChessPad.mode="人机对战";
  20. //人机对战永远时机器人先手,所以在此处设置回合为机器人回合
  21. ChessPad.setBlackTurn(true);
  22. JButton pvp = ButtonPanel.getPVP();
  23. pvp.setEnabled(false);
  24. ButtonPanel.getPVE().setEnabled(false);
  25. //清空棋盘
  26. ChessPad.ClearColorPad();
  27. ChessPad.ClearValuePad();
  28. //一选择模式,就要完成人机下棋操作,并重绘棋盘
  29. AI.AiPlay();
  30. ChessPadPanel.getInstance().repaint();
  31. }
  32. else {
  33. ChessPad.setBlackTurn(true);
  34. ChessPad.mode="人人对战";
  35. JButton pve = ButtonPanel.getPVE();
  36. pve.setEnabled(false);
  37. ButtonPanel.getPVP().setEnabled(false);
  38. //清空棋盘
  39. ChessPad.ClearColorPad();
  40. ChessPad.ClearValuePad();
  41. ChessPadPanel.getInstance().repaint();
  42. }
  43. ButtonPanel.ActiveButton();
  44. }
  45. }

PutChessListener:下棋监听器,该监听器是一个鼠标监听器,监听鼠标的点击动作,实现玩家的下棋操作。该监听器作用再棋盘容器(ChessPadPanel)上。

  1. package Listiner;
  2. import Domain.*;
  3. import Panel.ChessPadPanel;
  4. import Utils.PositionUtils;
  5. import java.awt.event.MouseEvent;
  6. import java.awt.event.MouseListener;
  7. //鼠标监听器,该监听器作用对象是棋盘(ChessPadPanel),当棋盘对象上有鼠标点击且释放的事件时,执行该监听器,完成下棋动作
  8. //由于有两个对战模式,所以需要
  9. public class PutChessListener implements MouseListener {
  10. @Override
  11. public void mouseClicked(MouseEvent e) {
  12. }
  13. @Override
  14. public void mousePressed(MouseEvent e) {
  15. }
  16. //鼠标释放事件
  17. @Override
  18. public void mouseReleased(MouseEvent e) {
  19. //获取鼠标释放的位置,像素坐标
  20. int x = e.getX();
  21. int y = e.getY();
  22. Position position=new Position(x,y);
  23. Position change = PositionUtils.XAndYChangeToRowAndCol(position); //将像素坐标转换为行列坐标
  24. //判断点击的区域是否为有效区域
  25. if(change!=null){
  26. ChessColor[][] colorPad = ChessPad.colorPad;
  27. //由于有人人对战模式,所以需要判断当前下棋是哪一方下
  28. //判断下棋位置是否有棋
  29. if (colorPad[change.getX()][change.getY()]!=ChessColor.Blank){
  30. return;
  31. }
  32. if(ChessPad.mode.equals("人人对战")){
  33. if(ChessPad.isBlackTurn()){
  34. colorPad[change.getX()][change.getY()]=ChessColor.Black;
  35. Sequence.push(change,ChessColor.Black); //当前这一步棋入栈
  36. }
  37. else {
  38. colorPad[change.getX()][change.getY()] = ChessColor.White;
  39. Sequence.push(change,ChessColor.White); //当前这一步棋入栈
  40. }
  41. ChessPadPanel.getInstance().repaint();
  42. //变更下棋回合
  43. ChessPad.ChangeTurn();
  44. AI.Judge(); //Ai判断本局游戏是否结束
  45. }
  46. else {
  47. //当前模式为人机对战,则人下棋完成以后,从新绘制了棋盘,然后在让AI完成下棋
  48. if(!ChessPad.isBlackTurn()){
  49. //鼠标点击了棋盘,且当前不是黑棋回合,则完成下棋
  50. colorPad[change.getX()][change.getY()]=ChessColor.White;
  51. Sequence.push(change,ChessColor.White); //当前这一步棋入栈
  52. ChessPadPanel.getInstance().repaint();
  53. //变更下棋回合
  54. ChessPad.ChangeTurn();
  55. AI.Judge(); //Ai判断本局游戏是否结束
  56. //启用Ai,完成下棋
  57. AI.AiPlay();
  58. ChessPadPanel.getInstance().repaint();
  59. AI.Judge(); //Ai判断本局游戏是否结束
  60. }
  61. }
  62. }
  63. //需要判断棋盘的结果,看看是否有获胜
  64. }
  65. @Override
  66. public void mouseEntered(MouseEvent e) {
  67. }
  68. @Override
  69. public void mouseExited(MouseEvent e) {
  70. }
  71. }

RegretListener:悔棋按钮监听器

  1. package Listiner;
  2. import Domain.ChessPad;
  3. import Domain.Position;
  4. import Domain.Sequence;
  5. import Panel.ButtonPanel;
  6. import Panel.ChessPadPanel;
  7. import java.awt.event.ActionEvent;
  8. import java.awt.event.ActionListener;
  9. /**
  10. * 悔棋按钮的操作
  11. */
  12. public class RegretListener implements ActionListener {
  13. @Override
  14. public void actionPerformed(ActionEvent e) {
  15. if(!(Sequence.positions.size()>=3)){
  16. return;
  17. }
  18. //判断当前的模式,如果是人机对战的话,就将栈顶前两个棋子出栈,如果是人人对战模式,就出前一个
  19. if(ChessPad.mode.equals("人机对战")){
  20. Sequence.pop();
  21. Sequence.pop();
  22. }
  23. else {
  24. Sequence.pop();
  25. ChessPad.ChangeTurn();
  26. }
  27. //安照栈重置颜色棋盘
  28. ChessPad.ClearColorPad();
  29. for (int i=0;i<Sequence.positions.size();i++){
  30. ChessPad.colorPad[Sequence.positions.get(i).getX()][Sequence.positions.get(i).getY()]=Sequence.colorsSequence.get(i);
  31. }
  32. ButtonPanel.changeMsg();
  33. ChessPadPanel.getInstance().repaint();
  34. }
  35. }

StopListener:结束按钮监听器

  1. package Listiner;
  2. import Domain.ChessPad;
  3. import Domain.Sequence;
  4. import Panel.ButtonPanel;
  5. import Panel.ChessPadPanel;
  6. import java.awt.event.ActionEvent;
  7. import java.awt.event.ActionListener;
  8. /**
  9. * 结束按钮的监听器
  10. */
  11. public class StopListener implements ActionListener {
  12. @Override
  13. public void actionPerformed(ActionEvent e) {
  14. //点击结束按钮以后,清空棋盘上所有的棋子
  15. ChessPad.ClearColorPad();
  16. ChessPad.ClearValuePad();
  17. //清空上一局的下棋顺序
  18. Sequence.ClearSequence();
  19. //清空棋盘以后,重置按钮
  20. ButtonPanel.ResetButton();
  21. ChessPadPanel.getInstance().removeMouseListener(ChessPadPanel.listener);
  22. ChessPad.mode="";
  23. ChessPad.setBlackTurn(null);
  24. //然后重新绘制棋盘
  25. ChessPad.ClearColorPad();
  26. ChessPad.ClearValuePad();
  27. ChessPadPanel.getInstance().repaint();
  28. }
  29. }

Panel目录下代码:

        ButtonPanel:按钮容器代码

  1. package Panel;
  2. import Domain.ChessPad;
  3. import Listiner.JumpListener;
  4. import Listiner.ModeListener;
  5. import Listiner.RegretListener;
  6. import Listiner.StopListener;
  7. import javax.swing.*;
  8. import java.awt.*;
  9. //按钮容器
  10. /*
  11. 本五子棋项目,实现的功能有,人机对战、人人对战、悔棋、结束游戏功能
  12. */
  13. public class ButtonPanel extends JPanel{
  14. private static Font font = new Font("黑体", Font.BOLD, 20); //按钮文本字体
  15. private static JButton PVE=new JButton("人机对战"); //人机模式
  16. private static JButton PVP=new JButton("人人对战"); //人人对战
  17. private static JButton stop = new JButton("结束"); //结束按钮
  18. private static JButton regret = new JButton("悔棋"); //悔棋按钮
  19. private static JButton jump=new JButton("跳过"); //跳过按钮,该按钮的功能交换回合
  20. private static JLabel msg=new JLabel("请选择对局模式");
  21. //构造函数,初始化各个按钮和容器
  22. public ButtonPanel(){
  23. stop.setFont(font);
  24. regret.setFont(font);
  25. PVE.setFont(font);
  26. PVP.setFont(font);
  27. jump.setFont(font);
  28. msg.setFont(font);
  29. //将各个组件加入到容器内
  30. this.add(msg);
  31. this.add(PVP);
  32. this.add(PVE);
  33. this.add(stop);
  34. this.add(jump);
  35. this.add(regret);
  36. ResetButton();
  37. PVE.addActionListener(new ModeListener());
  38. PVP.addActionListener(new ModeListener());
  39. jump.addActionListener(new JumpListener());
  40. stop.addActionListener(new StopListener());
  41. regret.addActionListener(new RegretListener());
  42. }
  43. /**
  44. * 该方法实现重置各个按钮的状态(即按钮是否能够被点击),在点击结束按钮,以及棋局结束时被调用
  45. *
  46. */
  47. public static void ResetButton(){
  48. PVE.setEnabled(true);
  49. PVP.setEnabled(true);
  50. jump.setEnabled(false);
  51. regret.setEnabled(false);
  52. stop.setEnabled(false);
  53. }
  54. /**
  55. * 该方法实现按钮的激活,在选择了对局模式后被调用
  56. */
  57. public static void ActiveButton(){
  58. jump.setEnabled(true);
  59. regret.setEnabled(true);
  60. stop.setEnabled(true);
  61. }
  62. public static JButton getStop() {
  63. return stop;
  64. }
  65. public static void setStop(JButton stop) {
  66. ButtonPanel.stop = stop;
  67. }
  68. public static JButton getRegret() {
  69. return regret;
  70. }
  71. public static void setRegret(JButton regret) {
  72. ButtonPanel.regret = regret;
  73. }
  74. public static JButton getPVE() {
  75. return PVE;
  76. }
  77. public static void setPVE(JButton PVE) {
  78. ButtonPanel.PVE = PVE;
  79. }
  80. public static JButton getPVP() {
  81. return PVP;
  82. }
  83. public static void setPVP(JButton PVP) {
  84. ButtonPanel.PVP = PVP;
  85. }
  86. public static JButton getJump() {
  87. return jump;
  88. }
  89. public static void setJump(JButton jump) {
  90. ButtonPanel.jump = jump;
  91. }
  92. public static JLabel getMsg() {
  93. return msg;
  94. }
  95. public static void setMsg(JLabel msg) {
  96. ButtonPanel.msg = msg;
  97. }
  98. public static void changeMsg(){
  99. if(ChessPad.isBlackTurn()==null){
  100. msg.setText("请选择对局模式");
  101. }
  102. else if(!ChessPad.isBlackTurn()){
  103. msg.setText("白棋回合");
  104. }
  105. else {
  106. msg.setText("黑棋回合");
  107. }
  108. }
  109. }

       ChessPadPanel:棋盘容器

  1. package Panel;
  2. import Domain.ChessColor;
  3. import Domain.ChessPad;
  4. import Domain.Position;
  5. import Utils.PositionUtils;
  6. import javax.swing.*;
  7. import java.awt.*;
  8. import java.awt.event.MouseListener;
  9. /*
  10. 棋盘容器
  11. */
  12. public class ChessPadPanel extends JPanel{
  13. public static int gap=80; //棋盘与窗口的间隔
  14. public static int size=40; //棋盘每一个的长宽
  15. public static int radius=10; //旗子的半径
  16. public static int row=15; //棋盘行数
  17. public static int col=15; //棋盘列数
  18. private static ChessPadPanel instance=new ChessPadPanel();
  19. public static MouseListener listener;
  20. //构造函数,初始化棋盘
  21. public ChessPadPanel(){
  22. this.setSize(800,600); //设置容器大小
  23. this.setBackground(Color.GRAY); //设置容器背景颜色
  24. }
  25. public static ChessPadPanel getInstance() {
  26. return instance;
  27. }
  28. @Override
  29. public void paint(Graphics g) {
  30. super.paint(g);
  31. drawPad(g);
  32. drawChess(g);
  33. }
  34. //绘制棋盘,传入画笔对象
  35. public void drawPad(Graphics g){
  36. //将模式显示在此处
  37. g.setFont(new Font("宋体",Font.BOLD,20));
  38. if (ChessPad.mode==""){
  39. g.drawString("请先选择模式",30,30);
  40. }
  41. else{
  42. g.drawString(ChessPad.mode,30,30);
  43. }
  44. ButtonPanel.changeMsg();
  45. //绘制棋盘行
  46. for(int i=0;i<row;i++){
  47. g.drawLine(gap,gap+i*size,(col+1)*size,gap+i*size);
  48. }
  49. for(int i=0;i<col;i++){
  50. g.drawLine(gap+i*size,gap,gap+i*size,(row+1)*size);
  51. }
  52. }
  53. /**
  54. * 该方法根据棋盘的颜色矩阵,在棋盘上画棋
  55. */
  56. public void drawChess(Graphics g){
  57. ChessColor[][] colorPad = ChessPad.colorPad;
  58. //先画棋盘上的黑棋,为画笔设置颜色
  59. g.setColor(Color.black);
  60. //遍历颜色数组,若颜色值等于黑色,则将该点画在棋盘上
  61. for (int i=0;i<row;i++){
  62. for (int j=0;j<col;j++){
  63. if(colorPad[i][j]==ChessColor.Black){
  64. //获取该行列的 像素坐标
  65. Position position=new Position(i,j);
  66. Position y = PositionUtils.RowAndColChangeTOXAndY(position);
  67. g.fillOval( y.getX()-radius, y.getY()-radius,radius*2,radius*2);
  68. }
  69. }
  70. }
  71. //遍历颜色数组,若颜色值等于白色,则将该点画在棋盘上,白起需要加边框
  72. for (int i=0;i<row;i++){
  73. for (int j=0;j<col;j++){
  74. if(colorPad[i][j]==ChessColor.White){
  75. //获取该行列的 像素坐标
  76. Position position=new Position(i,j);
  77. Position y = PositionUtils.RowAndColChangeTOXAndY(position);
  78. g.setColor(Color.WHITE);
  79. g.fillOval((int) y.getX()-radius,(int) y.getY()-radius,radius*2,radius*2); //将棋画在对应的坐标上
  80. g.setColor(Color.BLACK);
  81. g.drawOval((int) y.getX()-radius,(int) y.getY()-radius,radius*2,radius*2);
  82. }
  83. }
  84. }
  85. }
  86. }

MainPanel:主容器

  1. package Panel;
  2. import Domain.ChessPad;
  3. import Listiner.PutChessListener;
  4. import javax.swing.*;
  5. //主界面,父类是JSplitPane
  6. public class MainPanel extends JSplitPane {
  7. private static JSplitPane instance;
  8. //主界面的构造函数,用于初始化界面
  9. static {
  10. ButtonPanel buttonPanel=new ButtonPanel();
  11. ChessPadPanel chessPadPanel=ChessPadPanel.getInstance();
  12. chessPadPanel.listener=new PutChessListener();
  13. ChessPad.ClearColorPad(); //初始化棋盘
  14. instance=new JSplitPane(JSplitPane.VERTICAL_SPLIT,chessPadPanel,buttonPanel);
  15. instance.setDividerLocation(700);
  16. instance.setEnabled(false);
  17. }
  18. public static JSplitPane getInstance(){
  19. return instance;
  20. }
  21. }

Utils目录下代码:

        PositionUtils:实现两类坐标之间的转换

  1. package Utils;
  2. import Domain.Position;
  3. import Panel.ChessPadPanel;
  4. import java.util.ArrayList;
  5. import java.util.List;
  6. /**
  7. * 该类实现像素坐标和矩阵的行列坐标之间的转换
  8. */
  9. public class PositionUtils {
  10. /**
  11. * 该方法实现将行列坐标转换为像素坐标 行代表的是y轴,列代表的是x轴
  12. * @param p
  13. * @return 一个Positon对象,该对象的x和y属性的值时像素坐标
  14. */
  15. public static Position RowAndColChangeTOXAndY(Position p){
  16. ChessPadPanel chessPadPanel = ChessPadPanel.getInstance();
  17. int gap=chessPadPanel.gap;
  18. int size=chessPadPanel.size;
  19. //获取该行列坐标的横、纵的值
  20. int row = p.getX(); //此处获取的是行,所以该值用来计算y的值
  21. int col = p.getY(); //此处获取的是列,所以该值用来计算x的值
  22. Position position=new Position();
  23. position.setX(gap+col*size);
  24. position.setY(gap+row*size);
  25. return position;
  26. }
  27. /**
  28. * 该方法实现将像素坐标,转换为行列坐标
  29. * @param p
  30. * @return 返回一个Position,该对象的x和y值是行列坐标
  31. */
  32. public static Position XAndYChangeToRowAndCol(Position p){
  33. //获取该点的像素坐标
  34. int x = p.getX();
  35. int y = p.getY();
  36. //获取棋盘数据
  37. int radius = ChessPadPanel.radius;
  38. int row = ChessPadPanel.row;
  39. int col = ChessPadPanel.col;
  40. //计算出棋盘上所有交点的像素坐标
  41. List<Position> positionList = getAllPositionXAndY();
  42. //遍历该列表,计算每一个点与鼠标点击的点的距离,若距离小于棋子的半径,则说明该棋属于那一个点
  43. int count=-1; //记录第几个点
  44. for (Position position : positionList) {
  45. double distance = Math.sqrt(Math.pow((position.getX() - x), 2) + Math.pow((position.getY() - y), 2)); //两像素点之间的距离
  46. count++;
  47. if(distance<=radius){
  48. break;
  49. }
  50. }
  51. //若像素点在两个焦点的中间段,即两个棋子之间的空白段,或无效位置,则上述遍历无法计算出满足距离小于棋子半径的点,所以会完成整个列表的遍历计算,因此需要对最后一各交点也就是第224个点进行单独的判断
  52. if (count==224){
  53. //判断传入的像素坐标距离最后一个点是否距离小于半径
  54. //获取最后一个位置
  55. Position position = positionList.get(positionList.size()-1);
  56. double distance = Math.sqrt(Math.pow((position.getX() - x), 2) + Math.pow((position.getY() - y), 2)); //两像素点之间的距离
  57. if (!(distance<=radius)){
  58. return null;
  59. }
  60. }
  61. //通过计数的到的点编号,计算出行列坐标
  62. Position XAndY=new Position(count/row,count%col);
  63. return XAndY;
  64. }
  65. /**
  66. * 该方法用于获取棋盘上所有交点的像素坐标
  67. * @return
  68. */
  69. public static List<Position> getAllPositionXAndY(){
  70. List<Position> positionList=new ArrayList<>();
  71. //获取棋盘数据
  72. int gap = ChessPadPanel.gap;
  73. int size = ChessPadPanel.size;
  74. int row = ChessPadPanel.row;
  75. int col = ChessPadPanel.col;
  76. for(int i=0;i<row;i++){
  77. for (int j=0;j<col;j++){
  78. int x=gap+i*size;
  79. int y=gap+j*size;
  80. positionList.add(new Position(y,x));
  81. }
  82. }
  83. return positionList;
  84. }
  85. //判断该店是否为棋盘的边缘 p为行列坐标
  86. public static boolean isBound(Position p){
  87. return p.getX()>=0&&p.getX()<15;
  88. }
  89. }

Test目录下代码:

        PanelTest:系统的运行类(主函数在该类中定义)

  1. package Test;
  2. import Panel.MainPanel;
  3. import javax.swing.*;
  4. public class PanelTest {
  5. public static void main(String[] args) {
  6. JFrame btn=new JFrame();
  7. btn.add(MainPanel.getInstance());
  8. btn.setTitle("计科*** 郑** 193050**** 五子棋");
  9. btn.setSize(800,800);
  10. btn.setResizable(false);
  11. btn.setVisible(true);
  12. }
  13. }

该系统是借鉴了GitHub上的一个项目而做的(链接找不到,就不贴在这了),所以大部分代码可能与GitHub上的项目一样。

本文内容由网友自发贡献,转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/336397
推荐阅读
相关标签
  

闽ICP备14008679号