AABB
AlignmentBehavior
ArriveBehavior
AStar
BFS
BoundingSphere
BVH
BVHNode
Cell
CellSpacePartitioning
CohesionBehavior
CompositeGoal
ConvexHull
Corridor
CostTable
DFS
Dijkstra
Edge
EntityManager
EvadeBehavior
EventDispatcher
Behavior
FollowPathBehavior
FuzzyAND
FuzzyCompositeTerm
FuzzyFAIRLY
FuzzyModule
FuzzyOR
FuzzyRule
FuzzySet
FuzzyTerm
FuzzyVariable
FuzzyVERY
GameEntity
Goal
GoalEvaluator
Graph
GraphUtils
HalfEdge
HeuristicPolicyDijkstra
HeuristicPolicyEuclid
HeuristicPolicyEuclidSquared
HeuristicPolicyManhattan
InterposeBehavior
LeftSCurveFuzzySet
LeftShoulderFuzzySet
LineSegment
Logger
MathUtils
Matrix3
Matrix4
MemoryRecord
MemorySystem
MeshGeometry
MessageDispatcher
MovingEntity
NavEdge
NavMesh
NavMeshLoader
NavNode
Node
NormalDistFuzzySet
OBB
ObstacleAvoidanceBehavior
OffsetPursuitBehavior
OnPathBehavior
Path
Plane
Polygon
Polyhedron
PriorityQueue
PursuitBehavior
Quaternion
Ray
RectangleTriggerRegion
Regular
RightSCurveFuzzySet
RightShoulderFuzzySet
SAT
SeekBehavior
SeparationBehavior
SingletonFuzzySet
Smoother
SphericalTriggerRegion
State
StateMachine
SteeringBehavior
SteeringManager
Task
TaskQueue
Telegram
Think
Time
TriangularFuzzySet
Trigger
TriggerRegion
Vector3
Vehicle
Version
WanderBehavior

memorySpan

简介

memorySpan是Yuka js库的MemorySystem(内存系统)中的一个类,用于表示内存块的起始地址和长度。

属性

  • startAddress:内存块的起始地址,类型为Number。
  • length:内存块的长度,类型为Number。

方法

  • constructor(startAddress, length):构造函数,用于创建一个memorySpan对象。
    • 参数:
      • startAddress:内存块的起始地址,类型为Number。
      • length:内存块的长度,类型为Number。
  • intersects(span):判断当前memorySpan对象和另一个memorySpan对象是否有交叉。
    • 参数:
      • span:另一个memorySpan对象。
    • 返回值:若两个memorySpan对象有交叉,则返回交叉部分的memorySpan对象;否则返回null。
  • overlaps(span):判断当前memorySpan对象和另一个memorySpan对象是否有重叠。
    • 参数:
      • span:另一个memorySpan对象。
    • 返回值:若两个memorySpan对象有重叠,则返回true,否则返回false。

示例

const memorySpan1 = new memorySpan(0, 10);
const memorySpan2 = new memorySpan(5, 10);
const memorySpan3 = new memorySpan(11, 10);

console.log(memorySpan1.intersects(memorySpan2));   // 输出:{startAdd: 5, length: 5}
console.log(memorySpan1.intersects(memorySpan3));   // 输出:null
console.log(memorySpan1.overlaps(memorySpan2));     // 输出:true
console.log(memorySpan1.overlaps(memorySpan3));     // 输出:false

总结

memorySpan是Yuka js库中一个用于表示内存块的类,可以通过它的属性和方法对内存块进行操作。在内存系统中,使用memorySpan对象可以方便地管理内存块,例如判断内存块是否有交叉或重叠,或者获取交叉部分的内存块。