Click or drag to resize

PdaStateT Class

Inheritance Hierarchy
SystemObject
  Archon.SwissArmyLib.AutomataBaseStatePushdownAutomatonT, T
    Archon.SwissArmyLib.AutomataPdaStateT

Namespace:  Archon.SwissArmyLib.Automata
Assembly:  Archon.SwissArmyLib (in Archon.SwissArmyLib.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public class PdaState<T> : BaseState<PushdownAutomaton<T>, T>, 
	IPdaState<T>, IState<PushdownAutomaton<T>, T>
Request Example View Source

Type Parameters

T
The type of the context.

The PdaStateT type exposes the following members.

Constructors
  NameDescription
Public methodPdaStateT
Initializes a new instance of the PdaStateT class
Top
Properties
Methods
  NameDescription
Public methodAct
Called every frame after Reason, if the state hasn't been changed.
(Inherited from BaseStateTMachine, TContext.)
Public methodBegin
Called when the state is entered.
(Inherited from BaseStateTMachine, TContext.)
Public methodEnd
Called when the state is exited.
(Inherited from BaseStateTMachine, TContext.)
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetType
Gets the type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodPause
Called when a state is pushed ontop of this state.
Public methodReason
Called every frame just before Act(Single). Use this to check whether you should change state.
(Inherited from BaseStateTMachine, TContext.)
Public methodResume
Called when the state above us is popped.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also