GamePage.dart 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347
  1. import 'dart:math';
  2. import 'package:flutter/cupertino.dart';
  3. import 'package:flutter/material.dart';
  4. import 'package:gobang/ai/Ai.dart';
  5. import 'package:gobang/bridge/ChessShape.dart';
  6. import 'package:gobang/factory/ThemeFactory.dart';
  7. import 'package:gobang/factory/UserTheme.dart';
  8. import 'package:gobang/flyweight/Chess.dart';
  9. import 'package:gobang/flyweight/ChessFlyweightFactory.dart';
  10. import 'package:gobang/memorandum/Originator.dart';
  11. import 'package:gobang/state/UserContext.dart';
  12. import 'package:gobang/utils/TipsDialog.dart';
  13. import 'package:gobang/viewModel/GameViewModel.dart';
  14. import 'flyweight/Position.dart';
  15. var width = 0.0;
  16. ///简单的实现五子棋效果
  17. class GamePage extends StatefulWidget {
  18. @override
  19. State<StatefulWidget> createState() => GamePageState();
  20. }
  21. class GamePageState extends State<GamePage> {
  22. ThemeFactory? _themeFactory;
  23. GameViewModel _viewModel = GameViewModel.getInstance();
  24. Originator _originator = Originator.getInstance();
  25. Icon lightOn = Icon(Icons.lightbulb,color: Colors.amberAccent);
  26. Icon lightOff = Icon(Icons.lightbulb_outline_rounded);
  27. Icon circle = Icon(Icons.circle_outlined);
  28. Icon rect = Icon(Icons.crop_square);
  29. Icon? currentLight,currentShape;
  30. @override
  31. void initState() {
  32. currentLight = lightOn;
  33. _themeFactory = BlueThemeFactory();
  34. currentShape = circle;
  35. super.initState();
  36. }
  37. @override
  38. Widget build(BuildContext context) {
  39. width = MediaQuery.of(context).size.width * 0.8;
  40. return Scaffold(
  41. appBar: AppBar(
  42. elevation: 0,
  43. backgroundColor: _themeFactory!.getTheme().getThemeColor(),
  44. title: Text("南瓜五子棋"),
  45. actions: [
  46. IconButton(
  47. onPressed: () {
  48. if (_viewModel.undo()) {
  49. _originator.undo();
  50. Ai.getInstance().init();
  51. for (Position po in _originator.state) {
  52. Ai.getInstance().addChessman(po.dx ~/ (width / 15),
  53. po.dy ~/ (width / 15), po.chess is WhiteChess ? 1 : -1);
  54. }
  55. setState(() {});
  56. } else {
  57. TipsDialog.show(context, "提示", "现阶段不能悔棋");
  58. }
  59. },
  60. icon: Icon(Icons.undo)),
  61. IconButton(
  62. onPressed: () {
  63. if(_viewModel.surrender()) {
  64. TipsDialog.showByChoose(
  65. context, "提示", "是否要投降并重新开局?", "是", "否", (value) {
  66. if (value) {
  67. setState(() {
  68. ChessPainter._position = null;
  69. _originator.clean();
  70. _viewModel.reset();
  71. Ai.getInstance().init();
  72. });
  73. }
  74. Navigator.pop(context);
  75. });
  76. }else{
  77. TipsDialog.show(context, "提示", "现阶段不能投降");
  78. }
  79. },
  80. icon: Icon(Icons.sports_handball)),
  81. IconButton(
  82. onPressed: () {
  83. TipsDialog.showByChoose(context, "提示", "是否重新开局?","是","否",(value){
  84. if(value){
  85. setState(() {
  86. ChessPainter._position = null;
  87. _originator.clean();
  88. _viewModel.reset();
  89. Ai.getInstance().init();
  90. });
  91. }
  92. Navigator.pop(context);
  93. });
  94. },
  95. icon: Icon(Icons.restart_alt)),
  96. IconButton(
  97. onPressed: () {
  98. setState(() {
  99. if(_themeFactory is BlackThemeFactory){
  100. currentLight = lightOn;
  101. _themeFactory = BlueThemeFactory();
  102. }else{
  103. currentLight = lightOff;
  104. _themeFactory = BlackThemeFactory();
  105. }
  106. });
  107. },
  108. icon: currentLight!),
  109. IconButton(
  110. onPressed: () {
  111. setState(() {
  112. if(currentShape == circle){
  113. currentShape = rect;
  114. } else {
  115. currentShape = circle;
  116. }
  117. });
  118. },
  119. icon: currentShape!),
  120. ],
  121. ),
  122. body: Container(
  123. decoration: new BoxDecoration(
  124. gradient: new LinearGradient(
  125. colors: [
  126. _themeFactory!.getTheme().getThemeColor(),
  127. Colors.white,
  128. ],
  129. stops: [
  130. 0.0,
  131. 1
  132. ],
  133. begin: FractionalOffset.topCenter,
  134. end: FractionalOffset.bottomCenter,
  135. tileMode: TileMode.repeated)),
  136. child: ListView(
  137. children: [
  138. Center(
  139. child: Column(
  140. mainAxisAlignment: MainAxisAlignment.center,
  141. crossAxisAlignment: CrossAxisAlignment.center,
  142. mainAxisSize: MainAxisSize.max,
  143. children: <Widget>[
  144. Padding (
  145. padding: EdgeInsets.only(top:14,bottom: 30),
  146. child: Text(_viewModel.state,style: TextStyle(color: Colors.white),),
  147. ),
  148. GestureDetector(
  149. onTapDown: (topDownDetails) {
  150. var position = topDownDetails.localPosition;
  151. Chess chess = _viewModel.play(currentShape == circle);
  152. setState(() {
  153. ChessPainter._position =
  154. Position(position.dx, position.dy, chess);
  155. });
  156. },
  157. child: Stack(
  158. children: [
  159. CustomPaint(
  160. size: Size(width, width),
  161. painter: CheckerBoardPainter(),
  162. ),
  163. CustomPaint(
  164. size: Size(width, width),
  165. painter: ChessPainter(turnAi),
  166. )
  167. ],
  168. ))
  169. ]),
  170. ),
  171. ],
  172. ),
  173. ),
  174. );
  175. }
  176. /// Ai 下棋
  177. void turnAi() {
  178. // print("Ai下棋");
  179. if (ChessPainter._position!.chess is WhiteChess &&
  180. Ai.getInstance().isWin(ChessPainter._position!.dx ~/ (width / 15),
  181. ChessPainter._position!.dy ~/ (width / 15), 1)) {
  182. TipsDialog.show(context, "恭喜", "您打败了决策树算法");
  183. }
  184. // 获取Ai下棋地址
  185. Ai ai = Ai.getInstance();
  186. ChessPainter._position = ai.searchPosition();
  187. // 设置棋子外观
  188. ChessPainter._position!.chess.chessShape = CircleShape();
  189. // 加入决策中
  190. Ai.getInstance().addChessman(ChessPainter._position!.dx.toInt(),
  191. ChessPainter._position!.dy.toInt(), -1);
  192. if (ChessPainter._position!.chess is BlackChess &&
  193. Ai.getInstance().isWin(ChessPainter._position!.dx.toInt(),
  194. ChessPainter._position!.dy.toInt(), -1)) {
  195. TipsDialog.show(context, "很遗憾", "决策树算法打败了您");
  196. }
  197. setState(() {
  198. ChessPainter._position!.dx = ChessPainter._position!.dx * (width / 15);
  199. ChessPainter._position!.dy = ChessPainter._position!.dy * (width / 15);
  200. });
  201. }
  202. }
  203. class ChessPainter extends CustomPainter {
  204. static int _state = 0;
  205. static Position? _position;
  206. final Function _function;
  207. Originator _originator = Originator.getInstance();
  208. ChessPainter(Function f) : _function = f;
  209. @override
  210. void paint(Canvas canvas, Size size) {
  211. if (_position == null) {
  212. return;
  213. }
  214. bool add = false;
  215. double mWidth = size.width / 15;
  216. double mHeight = size.height / 15;
  217. var mPaint = Paint();
  218. //求两个点之间的距离,让棋子正确的显示在坐标轴上面
  219. var dx = _position!.dx;
  220. var dy = _position!.dy;
  221. for (int i = 0; i < CheckerBoardPainter._crossOverBeanList.length; i++) {
  222. var absX =
  223. (dx - CheckerBoardPainter._crossOverBeanList[i]._dx).abs(); //两个点的x轴距离
  224. var absY =
  225. (dy - CheckerBoardPainter._crossOverBeanList[i]._dy).abs(); //两个点的y轴距离
  226. var s = sqrt(absX * absX +
  227. absY * absY); //利用直角三角形求斜边公式(a的平方 + b的平方 = c的平方)来计算出两点间的距离
  228. if (s <= mWidth / 2 - 2) {
  229. // 触摸点到棋盘坐标坐标点距离小于等于棋子半径,那么
  230. //找到离触摸点最近的棋盘坐标点并记录保存下来
  231. _position!.dx = CheckerBoardPainter._crossOverBeanList[i]._dx;
  232. _position!.dy = CheckerBoardPainter._crossOverBeanList[i]._dy;
  233. _originator.add(_position!);
  234. add = true;
  235. if (_position!.chess is WhiteChess) {
  236. Ai.getInstance().addChessman(
  237. _position!.dx ~/ (width / 15), _position!.dy ~/ (width / 15), 1);
  238. }
  239. // flag = false; //白子下完了,该黑子下了
  240. break;
  241. }
  242. }
  243. //画子
  244. mPaint..style = PaintingStyle.fill;
  245. if (_originator.state.isNotEmpty) {
  246. for (int i = 0; i < _originator.state.length; i++) {
  247. mPaint..color = _originator.state[i].chess.color;
  248. if (_originator.state[i].chess.chessShape.shape == 1) {
  249. canvas.drawCircle(
  250. Offset(_originator.state[i].dx, _originator.state[i].dy),
  251. min(mWidth / 2, mHeight / 2) - 2,
  252. mPaint);
  253. }
  254. if (_originator.state[i].chess.chessShape.shape == 2) {
  255. Rect rect = Rect.fromCircle(
  256. center: Offset(_originator.state[i].dx, _originator.state[i].dy),
  257. radius: min(mWidth / 2, mHeight / 2) - 2);
  258. canvas.drawRect(rect, mPaint);
  259. }
  260. }
  261. }
  262. WidgetsBinding.instance!.addPostFrameCallback((_) {
  263. if (add && _position!.chess is WhiteChess) {
  264. _function();
  265. }
  266. });
  267. }
  268. //在实际场景中正确利用此回调可以避免重绘开销,本示例我们简单的返回true
  269. @override
  270. bool shouldRepaint(CustomPainter oldDelegate) {
  271. return true;
  272. }
  273. }
  274. class CheckerBoardPainter extends CustomPainter {
  275. static List<CrossOverBean> _crossOverBeanList = [];
  276. static int _state = 0;
  277. @override
  278. void paint(Canvas canvas, Size size) {
  279. double mWidth = size.width / 15;
  280. double mHeight = size.height / 15;
  281. var mPaint = Paint();
  282. _crossOverBeanList.clear();
  283. //重绘下整个界面的画布北京颜色
  284. //设置画笔,画棋盘背景
  285. mPaint
  286. ..isAntiAlias = true //抗锯齿
  287. ..style = PaintingStyle.fill //填充
  288. ..color = Color(0x77cdb175); //背景为纸黄色
  289. canvas.drawRect(
  290. Rect.fromCenter(
  291. center: Offset(size.width / 2, size.height / 2),
  292. width: size.width,
  293. height: size.height),
  294. mPaint);
  295. //画棋盘网格
  296. mPaint
  297. ..style = PaintingStyle.stroke
  298. ..color = CupertinoColors.systemGrey6
  299. ..strokeWidth = 1.0;
  300. for (var i = 0; i <= 15; i++) {
  301. //画横线
  302. canvas.drawLine(
  303. Offset(0, mHeight * i), Offset(size.width, mHeight * i), mPaint);
  304. }
  305. for (var i = 0; i <= 15; i++) {
  306. //画竖线
  307. canvas.drawLine(
  308. Offset(mWidth * i, 0), Offset(mWidth * i, size.height), mPaint);
  309. }
  310. //记录横竖线所有的交叉点
  311. for (int i = 0; i <= 15; i++) {
  312. for (int j = 0; j <= 15; j++) {
  313. _crossOverBeanList.add(CrossOverBean(mWidth * j, mHeight * i));
  314. }
  315. }
  316. }
  317. //在实际场景中正确利用此回调可以避免重绘开销,本示例我们简单的返回true
  318. @override
  319. bool shouldRepaint(CustomPainter oldDelegate) {
  320. return false;
  321. }
  322. }
  323. ///记录棋盘上横竖线的交叉点
  324. class CrossOverBean {
  325. double _dx;
  326. double _dy;
  327. CrossOverBean(this._dx, this._dy);
  328. }