小妖精的完美游戏教室——人工智能,A*算法,结点篇

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小妖精的完美游戏教室——人工智能,A*算法,结点篇相关的知识,希望对你有一定的参考价值。

//================================================================
//
// Copyright (C) 2017 Team Saluka
// All Rights Reserved
//
// Author小妖精Balous
//
//================================================================

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

namespace Saruka
{
/// <summary>
/// 导航网格结点
/// </summary>
public class NavNode
{
public NavNode parent;
/// <summary>
/// 结点世界坐标
/// </summary>
public Vector3 worldPosition;
/// <summary>
/// 能否通行
/// </summary>
public bool isWalkable;
/// <summary>
/// 结点在导航网格中的X坐标
/// </summary>
public int gridX
{
private set;
get;
}
/// <summary>
/// 结点在导航网格中的Y坐标
/// </summary>
public int gridY
{
private set;
get;
}

public float gCost;
public float hCost;
public float fCost
{
get { return gCost + hCost; }
}

/// <summary>
/// 导航网格结点
/// </summary>
/// <param name="_worldPosition">结点世界坐标</param>
/// <param name="_isisWalkable">能否通行</param>
/// <param name="_gridX">结点在导航网格中的X坐标</param>
/// <param name="_gridY">结点在导航网格中的Y坐标</param>
public NavNode(Vector3 _worldPosition, bool _isisWalkable, int _gridX, int _gridY)
{
worldPosition = _worldPosition;
isWalkable = _isisWalkable;
gridX = _gridX;
gridY = _gridY;
}
}
}

以上是关于小妖精的完美游戏教室——人工智能,A*算法,结点篇的主要内容,如果未能解决你的问题,请参考以下文章

小妖精的完美游戏教室——人工智能,A*算法,导航网络篇

小妖精的完美游戏教室——人工智能,A*算法,启发因子篇

小妖精的完美游戏教室——人工智能,状态机理论篇

小妖精的完美游戏教室——东方PROJECT,同人,th12灵梦A

小妖精的完美游戏教室——技能系统

小妖精的完美游戏教室——魔方塔防01,路径