⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 chesspao.java

📁 ajax chessajax chessajax chessajax chess
💻 JAVA
字号:
package chs;

import java.util.List;

public class ChessPao extends ChessItem {

	public ChessPao(String id, int x, int y) {
		super(id, x, y);
	}

	public ChessPao(ChessBoard b, String id, int x, int y) {
		super(b, id, x, y);
	}

	public boolean moveTo(int x, int y) {
		if (!isOnLine(x, y)) {
			System.err.println("not on a line.");
			return false;
		}

		boolean bTgt = (null != b.findItemAt(x, y));
		List lst = b.findItemOnLine(this.getX(), this.getY(), x, y);
		// 中间没子
		if (lst == null || lst.size() == 0) {
			// 目标点有子
			if (bTgt) {
				System.err.println("could not move to.");
				return false;
			}
		} else if (lst.size() == 1) {// 中间有1子
			// 目标点没有子
			if (!bTgt) {
				System.err.println("kill target is null.");
				return false;
			}
		} else {
			// 中间有超过1子
			System.err.println("more than 1 base for fire.");
			return false;
		}

		return true;
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -