正在做的事:填字游戏
bug解决:同向挨着的单词
bug演示
比如stop和inside两个挨着了,在填字游戏中造成了障碍。
主要判断交叉点的四个角是否有单词
$count = 0;
if (empty($table[$x - 1][$y - 1])) $count++;
if (empty($table[$x + 1][$y - 1])) $count++;
if (empty($table[$x - 1][$y + 1])) $count++;
if (empty($table[$x + 1][$y + 1])) $count++;
if ($count != 4) {
echo "无法放置";
return false;
}
网友评论