C# Class FFACETools.FFACE.WindowerTools

Wrapper class for sending Windower commands through FFACE
Afficher le fichier Open project: golfandsurf/Campah Class Usage Examples

Private Properties

Свойство Type Description

Méthodes publiques

Méthode Description
ArgumentCount ( ) : short

Get the amount of arguments the windower console has

BlockInput ( bool block ) : void

Whether to block input to ffxi

CreateTextObject ( ) : TextObject

Will create a Windower text object

GetArgument ( short index ) : string

Gets a specific argument from the windower console

IsNewCommand ( ) : int

Time of the last command NOTE: This may still be bugged (always returns true) See Windower wiki/forums for details

SendKey ( KeyCode key, bool down ) : void

Sends a key stroke status to FFXi

SendKeyPress ( KeyCode key ) : void

Sends a key press to FFXi (up, then down)

SendString ( string stringToSend ) : void

Sends a string to FFXi

WindowerTools ( int instanceID ) : System

Constructor

Method Details

ArgumentCount() public méthode

Get the amount of arguments the windower console has
public ArgumentCount ( ) : short
Résultat short

BlockInput() public méthode

Whether to block input to ffxi
public BlockInput ( bool block ) : void
block bool True if blocking
Résultat void

CreateTextObject() public méthode

Will create a Windower text object
public CreateTextObject ( ) : TextObject
Résultat TextObject

GetArgument() public méthode

Gets a specific argument from the windower console
public GetArgument ( short index ) : string
index short Index of the argument to get
Résultat string

IsNewCommand() public méthode

Time of the last command NOTE: This may still be bugged (always returns true) See Windower wiki/forums for details
public IsNewCommand ( ) : int
Résultat int

SendKey() public méthode

Sends a key stroke status to FFXi
public SendKey ( KeyCode key, bool down ) : void
key KeyCode Key to send
down bool True if keypress is down, false for up
Résultat void

SendKeyPress() public méthode

Sends a key press to FFXi (up, then down)
public SendKeyPress ( KeyCode key ) : void
key KeyCode Key to send
Résultat void

SendString() public méthode

Sends a string to FFXi
public SendString ( string stringToSend ) : void
stringToSend string string to send
Résultat void

WindowerTools() public méthode

Constructor
public WindowerTools ( int instanceID ) : System
instanceID int Instance ID generated by FFACE
Résultat System