Show / Hide Table of Contents

Struct MapObjectsAtCastEnumerator<T>

A custom enumerator used to iterate over all objects on a Map which are at a given location on given layers and are of a given type efficiently. Items are returned in order from highest layer to lowest, as applicable. Any items not of the given type are ignored.

Generally, you should use GetObjectsAt<TObject>(Point, uint) or one of that function's overloads to get an instance of this enumerator, rather than creating one yourself.

Implements
IEnumerable<T>
IEnumerable
IEnumerator<T>
IEnumerator
IDisposable
Inherited Members
ValueType.Equals(object)
ValueType.GetHashCode()
ValueType.ToString()
object.GetType()
object.Equals(object, object)
object.ReferenceEquals(object, object)
Namespace: GoRogue.GameFramework
Assembly: GoRogue.dll
Syntax
public struct MapObjectsAtCastEnumerator<T> : IEnumerable<T>, IEnumerable, IEnumerator<T>, IEnumerator, IDisposable where T : IGameObject
Type Parameters
Name Description
T

The type of items to look for.

Remarks

This type is a struct, and as such is much more efficient when used in a foreach loop than a function returning IEnumerable<T> by using "yield return". This type does implement IEnumerable<T>, so you can pass it to functions which require one (for example, System.LINQ). However, this will have reduced performance due to boxing of the iterator.

Constructors

View Source

MapObjectsAtCastEnumerator(Map, Point, uint)

Constructor.

Declaration
public MapObjectsAtCastEnumerator(Map map, Point position, uint layerMask)
Parameters
Type Name Description
Map map

Map to iterate over objects on.

Point position

The position to get objects at.

uint layerMask

A layer mask indicating what layers to include in the search for items.

Properties

View Source

Current

The current value for enumeration.

Declaration
public T Current { get; }
Property Value
Type Description
T

Methods

View Source

GetEnumerator()

Returns this enumerator.

Declaration
public MapObjectsAtCastEnumerator<T> GetEnumerator()
Returns
Type Description
MapObjectsAtCastEnumerator<T>

This enumerator.

View Source

MoveNext()

Declaration
public bool MoveNext()
Returns
Type Description
bool

Implements

IEnumerable<T>
IEnumerable
IEnumerator<T>
IEnumerator
IDisposable

Extension Methods

Utility.Yield<T>(T)
  • View Source
In this article
Back to top Generated by DocFX