Chess.dart 732 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. import 'dart:ui';
  2. import 'package:flutter/material.dart';
  3. import 'package:gobang/bridge/ChessShape.dart';
  4. /// 棋子的抽象类
  5. /// 使用了桥接模式,外观和颜色是两个不同的维度
  6. abstract class Chess{
  7. Color? _color;
  8. Color get color => _color!;
  9. ChessShape? _chessShape;
  10. ChessShape get chessShape => _chessShape!;
  11. set chessShape(ChessShape? __chessShape);
  12. }
  13. class BlackChess extends Chess{
  14. BlackChess() {
  15. _color = Colors.black;
  16. }
  17. set chessShape(ChessShape? __chessShape) {
  18. super._chessShape = __chessShape;
  19. }
  20. }
  21. class WhiteChess extends Chess{
  22. WhiteChess() {
  23. _color = Colors.white;
  24. }
  25. set chessShape(ChessShape? __chessShape) {
  26. super._chessShape = __chessShape;
  27. }
  28. }