您的位置:首页 > 文旅 > 美景 > 公司装修款怎么入账_企业宣传片走心文案_2024年4月新冠疫情结束了吗_阳江seo

公司装修款怎么入账_企业宣传片走心文案_2024年4月新冠疫情结束了吗_阳江seo

2024/12/22 22:05:52 来源:https://blog.csdn.net/zhongcongxu01/article/details/143120821  浏览:    关键词:公司装修款怎么入账_企业宣传片走心文案_2024年4月新冠疫情结束了吗_阳江seo
公司装修款怎么入账_企业宣传片走心文案_2024年4月新冠疫情结束了吗_阳江seo

一个基于网格的游戏环境,其中包含了一个名为“猫咪”的角色。游戏中使用了一个9x9的网格,每个单元格可以是空闲的(值为0)或者被设置为墙壁(值为1)。游戏的目标是让“猫咪”在一个充满墙壁的迷宫中移动,避免被墙壁围困。

【主要功能】

• 初始化棋盘并设置每个单元格的邻居关系。

• 开始游戏时随机放置墙壁,并将猫咪放置在指定位置。

• 当猫咪尝试移动时,寻找所有可移动的空邻居,并根据一定的策略选择下一步移动的方向。

• 计算启发式值(使用曼哈顿距离)来帮助决定移动方向。

• 构建用户界面,显示背景和猫咪的位置,并允许玩家通过点击放置墙壁并触发猫咪的移动。

【开发环境】

开发工具:DevEco Studio NEXT Beta1 Build Version: 5.0.3.814

工程API版本:12

【算法分析】

1. 广度优先搜索(BFS):在 findNeighbors 方法中,通过遍历当前单元格的邻居来获取周围非墙壁且可以移动的单元格集合。这类似于广度优先搜索的思想,逐层遍历邻居单元格。

findNeighbors(cell: Cell): Cell[] {let neighbors: Cell[] = [];// 检查当前单元格的六个方向邻居,将非墙壁且可以移动的单元格加入集合// ...return neighbors;
}

2. 启发式搜索:在 selectNextMove 方法中,根据一定的启发式函数选择下一个移动位置,以确保小猫朝着离边界最近的方向移动。这种启发式搜索可以帮助小猫更智能地选择下一步的移动位置。

selectNextMove(emptyNeighbors: Cell[]): Cell {// 根据启发式函数选择最优的移动位置// ...return closestToEdge || emptyNeighbors[0];
}

3. 曼哈顿距离计算:在 computeHeuristic 方法中,使用曼哈顿距离计算启发式函数的值,以评估当前单元格到边界的距离。曼哈顿距离是在网格上两点之间的距离,沿着网格的边缘移动。

computeHeuristic(cell: Cell): number {// 计算曼哈顿距离作为启发式函数的值// ...return minDistanceX + minDistanceY;
}

【完整代码】

import { promptAction } from '@kit.ArkUI'@ObservedV2
class Cell {@Trace value: number = 0; // 0 表示空位,1 表示墙壁x: number = 0;y: number = 0;leftNeighborIndex: number | undefined = undefined; // 左邻居索引rightNeighborIndex: number | undefined = undefined; // 右邻居索引leftTopNeighborIndex: number | undefined = undefined; // 左上邻居索引rightTopNeighborIndex: number | undefined = undefined; // 右上邻居索引leftBottomNeighborIndex: number | undefined = undefined; // 左下邻居索引rightBottomNeighborIndex: number | undefined = undefined; // 右下邻居索引constructor(value: number, x: number, y: number) {this.value = value;this.x = x;this.y = y;}
}@Entry
@Component
struct Index {@State gridCells: Cell[] = []; // 保存所有单元格的数组cellWidth: number = 70; // 单元格宽度borderPieceWidth: number = -10; // 边缘件宽度pieceSize: number = 65; // 件大小@State catPositionIndex: number = 40; // 小猫位置索引aboutToAppear(): void {this.initializeBoard();this.startGame();}findNeighbors(cell: Cell): Cell[] { // 获取当前单元格周围非 undefined 且可以移动的集合let neighbors: Cell[] = [];if (cell.leftNeighborIndex !== undefined && this.gridCells[cell.leftNeighborIndex].value === 0) {neighbors.push(this.gridCells[cell.leftNeighborIndex]);}if (cell.rightNeighborIndex !== undefined && this.gridCells[cell.rightNeighborIndex].value === 0) {neighbors.push(this.gridCells[cell.rightNeighborIndex]);}if (cell.leftTopNeighborIndex !== undefined && this.gridCells[cell.leftTopNeighborIndex].value === 0) {neighbors.push(this.gridCells[cell.leftTopNeighborIndex]);}if (cell.rightTopNeighborIndex !== undefined && this.gridCells[cell.rightTopNeighborIndex].value === 0) {neighbors.push(this.gridCells[cell.rightTopNeighborIndex]);}if (cell.leftBottomNeighborIndex !== undefined && this.gridCells[cell.leftBottomNeighborIndex].value === 0) {neighbors.push(this.gridCells[cell.leftBottomNeighborIndex]);}if (cell.rightBottomNeighborIndex !== undefined && this.gridCells[cell.rightBottomNeighborIndex].value === 0) {neighbors.push(this.gridCells[cell.rightBottomNeighborIndex]);}return neighbors;}initializeBoard() {this.gridCells = [];for (let rowIndex = 0; rowIndex < 9; rowIndex++) {for (let columnIndex = 0; columnIndex < 9; columnIndex++) {this.gridCells.push(new Cell(0, rowIndex, columnIndex));}}// 设置每个单元格的邻居for (let rowIndex = 0; rowIndex < 9; rowIndex++) {for (let columnIndex = 0; columnIndex < 9; columnIndex++) {let cellIndex: number = rowIndex * 9 + columnIndex;const row = rowIndex;const column = columnIndex;let cell = this.gridCells[cellIndex];// 检查六个方向的邻居if (column > 0) {cell.leftNeighborIndex = cellIndex - 1; // 左}if (column < 8) {cell.rightNeighborIndex = cellIndex + 1; // 右}// 根据行数的不同,选择不同的邻居位置if (row % 2 === 1) {let leftTopIndex = cellIndex - 9;if (leftTopIndex >= 0) {cell.leftTopNeighborIndex = leftTopIndex; // 左上}let leftBottomIndex = cellIndex + 9;if (leftBottomIndex < this.gridCells.length) {cell.leftBottomNeighborIndex = leftBottomIndex; // 左下}let rightTopIndex = cellIndex - 8;if (rightTopIndex >= 0) {cell.rightTopNeighborIndex = rightTopIndex; // 右上}let rightBottomIndex = cellIndex + 10;if (rightBottomIndex < this.gridCells.length) {cell.rightBottomNeighborIndex = rightBottomIndex; // 右下}} else {let leftTopIndex = cellIndex - 10;if (leftTopIndex >= 0) {cell.leftTopNeighborIndex = leftTopIndex; // 左上}let leftBottomIndex = cellIndex + 8;if (leftBottomIndex < this.gridCells.length) {cell.leftBottomNeighborIndex = leftBottomIndex; // 左下}let rightTopIndex = cellIndex - 9;if (rightTopIndex >= 0) {cell.rightTopNeighborIndex = rightTopIndex; // 右上}let rightBottomIndex = cellIndex + 9;if (rightBottomIndex < this.gridCells.length) {cell.rightBottomNeighborIndex = rightBottomIndex; // 右下}}}}}startGame() {let availableIndices: number[] = [];for (let i = 0; i < 81; i++) {this.gridCells[i].value = 0;if (i === 39 || i === 40 || i === 41) { // 排除中心点及左右两点,避免一下子就被围住直接游戏结束continue;}availableIndices.push(i);}// 随机生成墙壁for (let i = 0; i < 8; i++) {let randomIndex = Math.floor(Math.random() * availableIndices.length);let randomNeighbor = availableIndices[randomIndex];this.gridCells[randomNeighbor].value = 1;availableIndices.splice(randomIndex, 1); // 移除已使用的索引}this.catPositionIndex = 40;}moveCat(): void {let neighbors = this.findNeighbors(this.gridCells[this.catPositionIndex]);let emptyNeighbors: Cell[] = neighbors.filter(neighbor => neighbor.value === 0); // 仅保留空位邻居if (emptyNeighbors.length === 0) {console.log('神经猫被围住了,游戏结束!');promptAction.showDialog({title: '游戏胜利!', // 对话框标题buttons: [{ text: '重新开始', color: '#ffa500' }] // 对话框按钮}).then(() => { // 对话框关闭后执行this.startGame(); // 重新开始游戏});} else {// 根据一定策略选择下一个移动位置let nextMove = this.selectNextMove(emptyNeighbors);// 清除原来的位置,并且更新猫的位置和状态this.catPositionIndex = nextMove.x * 9 + nextMove.y;// 检查小猫是否移动到边界if (nextMove.x === 0 || nextMove.x === 8 || nextMove.y === 0 || nextMove.y === 8) {console.log('小猫移动到了边界,游戏结束!');// 在此处添加游戏结束的逻辑,例如重置游戏或显示游戏结束提示promptAction.showDialog({title: '游戏失败!', // 对话框标题buttons: [{ text: '重新开始', color: '#ffa500' }] // 对话框按钮}).then(() => { // 对话框关闭后执行this.startGame(); // 重新开始游戏});}}}selectNextMove(emptyNeighbors: Cell[]): Cell {let closestToEdge: Cell | null = null;let minDistanceToEdge: number = Number.MAX_VALUE;for (let neighbor of emptyNeighbors) {let distanceToEdge = Math.min(neighbor.x, 8 - neighbor.x, neighbor.y, 8 - neighbor.y);if (distanceToEdge < minDistanceToEdge) {minDistanceToEdge = distanceToEdge;closestToEdge = neighbor;} else if (distanceToEdge === minDistanceToEdge) {// 如果距离相同,根据启发式函数选择更靠近边界的邻居if (this.computeHeuristic(neighbor) < this.computeHeuristic(closestToEdge as Cell)) {closestToEdge = neighbor;}}}return closestToEdge || emptyNeighbors[0]; // 返回最靠近边界的一个空位邻居,如果没有则返回第一个空位邻居}computeHeuristic(cell: Cell): number {// 曼哈顿距离let minDistanceX = Math.min(...[0, 8].map(x => Math.abs(cell.x - x)));let minDistanceY = Math.min(...[0, 8].map(y => Math.abs(cell.y - y)));return minDistanceX + minDistanceY;}build() {Column({ space: 20 }) {Stack() {Flex({ wrap: FlexWrap.Wrap }) {//背景ForEach(this.gridCells, (item: Cell, index: number) => {Stack() {Text().width(`${this.pieceSize}lpx`).height(`${this.pieceSize}lpx`).backgroundColor(item.value == 0 ? "#b4b4b4" : "#ff8d5a").borderRadius('50%')}.width(`${this.cellWidth}lpx`).height(`${this.cellWidth}lpx`).margin({left: `${(index + 9) % 18 == 0 ? this.cellWidth / 2 : 0}lpx`,top: `${this.borderPieceWidth}lpx`})})}.width(`${this.cellWidth * 9 + this.cellWidth / 2}lpx`)Flex({ wrap: FlexWrap.Wrap }) {//小猫ForEach(this.gridCells, (item: Cell, index: number) => {Stack() {Text('猫').width(`${this.pieceSize}lpx`).height(`${this.pieceSize}lpx`).fontColor(Color.White).fontSize(`${this.cellWidth / 2}lpx`).textAlign(TextAlign.Center).backgroundColor(Color.Black).borderRadius('50%').visibility(this.catPositionIndex == index ? Visibility.Visible : Visibility.None)}.width(`${this.cellWidth}lpx`).height(`${this.cellWidth}lpx`).margin({left: `${(index + 9) % 18 == 0 ? this.cellWidth / 2 : 0}lpx`,top: `${this.borderPieceWidth}lpx`}).onClick(() => {if (item.value == 0 && index != this.catPositionIndex) {item.value = 1; // 放置墙壁this.moveCat(); // 移动神经猫}}).animation({ duration: 150 })})}.width(`${this.cellWidth * 9 + this.cellWidth / 2}lpx`)}Button('重新开始').clickEffect({ scale: 0.5, level: ClickEffectLevel.LIGHT }).onClick(() => {this.startGame()})}.height('100%').width('100%').backgroundColor("#666666").padding({ top: 20 })}
}

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com