Information about a memory region storing input state.
public struct InputStateBlock
Fields
Declaration
public const uint AutomaticOffset = null
Field Value
Format code for a variable-width bitfield representing an unsigned value,
i.e. all bits including the highest one represent the magnitude of the value.
Declaration
public static readonly FourCC FormatBit
Field Value
Format code for an 8-bit unsigned integer value.
Declaration
public static readonly FourCC FormatByte
Field Value
Format code for a 64-bit floating-point value.
Declaration
public static readonly FourCC FormatDouble
Field Value
Format code for a 32-bit floating-point value.
Declaration
public static readonly FourCC FormatFloat
Field Value
Format code for a 32-bit signed integer value.
Declaration
public static readonly FourCC FormatInt
Field Value
Format code for a 64-bit signed integer value.
Declaration
public static readonly FourCC FormatLong
Field Value
Declaration
public static readonly FourCC FormatQuaternion
Field Value
Format code for a variable-width bitfield representing a signed value, i.e. the
highest bit is used as a sign bit (0=unsigned, 1=signed) and the remaining bits represent
the magnitude of the value.
Declaration
public static readonly FourCC FormatSBit
Field Value
Format code for an 8-bit signed integer value.
Declaration
public static readonly FourCC FormatSByte
Field Value
Format code for a 16-bit signed integer value.
Declaration
public static readonly FourCC FormatShort
Field Value
Format code for a 32-bit unsigned integer value.
Declaration
public static readonly FourCC FormatUInt
Field Value
Format code for a 64-bit unsigned integer value.
Declaration
public static readonly FourCC FormatULong
Field Value
Format code for a 16-bit unsigned integer value.
Declaration
public static readonly FourCC FormatUShort
Field Value
Declaration
public static readonly FourCC FormatVector2
Field Value
Declaration
public static readonly FourCC FormatVector2Byte
Field Value
Declaration
public static readonly FourCC FormatVector2Short
Field Value
Declaration
public static readonly FourCC FormatVector3
Field Value
Declaration
public static readonly FourCC FormatVector3Byte
Field Value
Declaration
public static readonly FourCC FormatVector3Short
Field Value
Declaration
public const uint InvalidOffset = null
Field Value
Properties
Declaration
public uint bitOffset { get; set; }
Property Value
Declaration
public uint byteOffset { get; set; }
Property Value
Type identifier for the memory layout used by the state.
Declaration
public FourCC format { get; set; }
Property Value
Declaration
public uint sizeInBits { get; set; }
Property Value
Methods
Declaration
public void CopyToFrom(void *toStatePtr, void *fromStatePtr)
Parameters
Type |
Name |
Description |
Void* |
toStatePtr |
|
Void* |
fromStatePtr |
|
Declaration
public static FourCC GetPrimitiveFormatFromType(Type type)
Parameters
Type |
Name |
Description |
Type |
type |
|
Returns
Declaration
public static int GetSizeOfPrimitiveFormatInBits(FourCC type)
Parameters
Type |
Name |
Description |
FourCC |
type |
|
Returns
Declaration
public double ReadDouble(void *statePtr)
Parameters
Type |
Name |
Description |
Void* |
statePtr |
|
Returns
Declaration
public float ReadFloat(void *statePtr)
Parameters
Type |
Name |
Description |
Void* |
statePtr |
|
Returns
Declaration
public int ReadInt(void *statePtr)
Parameters
Type |
Name |
Description |
Void* |
statePtr |
|
Returns
Declaration
public void Write(void *statePtr, PrimitiveValue value)
Parameters
Declaration
public void WriteDouble(void *statePtr, double value)
Parameters
Declaration
public void WriteFloat(void *statePtr, float value)
Parameters
Declaration
public void WriteInt(void *statePtr, int value)
Parameters
Type |
Name |
Description |
Void* |
statePtr |
|
Int32 |
value |
|
See Also