Class GEarthExtension
A G-Earth extension protocol implementation.
public class GEarthExtension : IRemoteExtension, IExtension, IInterceptor, IConnection, IParserContext, IInterceptorContext, INotifyPropertyChanged
- Inheritance
-
GEarthExtension
- Implements
- Extension Methods
Constructors
GEarthExtension(GEarthOptions?, IMessageManager?, ILoggerFactory?)
Creates a new GEarthExtension with the specified GEarthOptions.
public GEarthExtension(GEarthOptions? options = null, IMessageManager? messages = null, ILoggerFactory? loggerFactory = null)
Parameters
options
GEarthOptionsThe options to be used by this extension.
messages
IMessageManagerThe message manager to use.
loggerFactory
ILoggerFactoryThe logger factory to use.
Properties
DisconnectToken
Gets a cancellation token that is triggered when the connection is lost.
public CancellationToken DisconnectToken { get; }
Property Value
Dispatcher
Gets the message dispatcher associated with this interceptor.
public IMessageDispatcher Dispatcher { get; }
Property Value
IsConnected
Gets whether a connection to the game is currently established.
public bool IsConnected { get; }
Property Value
IsRunning
public bool IsRunning { get; }
Property Value
Messages
Gets the message manager.
public IMessageManager Messages { get; }
Property Value
Options
Gets the options used by this extension.
public GEarthOptions Options { get; }
Property Value
Port
Gets the port that is currently being used to connect to the remote interceptor.
public int Port { get; }
Property Value
Session
Gets the session information for the current connection.
public Session Session { get; }
Property Value
Methods
OnActivated()
protected virtual void OnActivated()
OnConnected(ConnectedEventArgs)
protected virtual void OnConnected(ConnectedEventArgs e)
Parameters
OnDisconnected()
protected virtual void OnDisconnected()
OnInitialized(InitializedEventArgs)
protected virtual void OnInitialized(InitializedEventArgs e)
Parameters
OnIntercepted(Intercept)
protected virtual void OnIntercepted(Intercept e)
Parameters
RaisePropertyChanged(string?)
Invokes PropertyChanged to notify listeners that a property on this instance has changed.
protected virtual void RaisePropertyChanged(string? propertyName = null)
Parameters
propertyName
stringThe name of the property that changed.
Run()
public void Run()
RunAsync(CancellationToken)
Connects to the remote interceptor and runs the packet processing loop.
public Task RunAsync(CancellationToken cancellationToken)
Parameters
cancellationToken
CancellationToken
Returns
RunAsync(GEarthConnectOptions, CancellationToken)
public Task RunAsync(GEarthConnectOptions connectOpts = default, CancellationToken cancellationToken = default)
Parameters
connectOpts
GEarthConnectOptionscancellationToken
CancellationToken
Returns
Send(IPacket)
Sends a packet to the client or server, specified by the direction of the packet's header.
public void Send(IPacket packet)
Parameters
packet
IPacket
SendInternal(Packet)
Sends the specified packet to G-Earth.
protected void SendInternal(Packet packet)
Parameters
packet
Packet
Set<T>(ref T, T, string?)
Sets the value of the specified field and raises the PropertyChanged event, if the value was changed.
protected bool Set<T>(ref T field, T value, string? propertyName = null)
Parameters
field
TThe backing field.
value
TThe value to set the field to.
propertyName
stringThe name of the property used to access the backing field.
Returns
Type Parameters
T
The type of the field.
Stop()
public void Stop()
Events
Activated
Occurs when the extension is selected in G-Earth's user interface.
public event Action? Activated
Event Type
Connected
Occurs when a connection to the game is established.
public event Action<ConnectedEventArgs>? Connected
Event Type
Disconnected
Occurs when a connection to the game ends.
public event Action? Disconnected
Event Type
Initialized
Occurs when the interceptor has been initialized.
public event Action<InitializedEventArgs>? Initialized
Event Type
Intercepted
Occurs when a packet has been intercepted.
public event InterceptCallback? Intercepted
Event Type
PropertyChanged
Occurs when a property value changes.
public event PropertyChangedEventHandler? PropertyChanged