Property | Type | Description | |
---|---|---|---|
GetBitForColumn | int | ||
IsValidSectorNumber | bool |
Method | Description | |
---|---|---|
ChangeStatus ( DriverStatus newStatus ) : void |
Tries to change the status of this driver.
|
|
ColumnHasValue ( GridColumn column ) : bool |
Returns a value indicating if the specified column has a value.
|
|
ComputeLapNumber ( int raceLapNumber ) : int |
Computes the lap number of this driver given the current race lap number.
|
|
GetLastSector ( int sectorNumber ) : PostedTime |
Gets the last sector time for the specified sector number.
|
|
IsCurrentSectorNumber ( int sectorNumber ) : bool |
Returns a value indicating if the specfied sector number is the sector this driver is currently completing.
|
|
IsPreviousSectorNumber ( int sectorNumber ) : bool |
Returns a value indicating if the specfied sector number is the one previous to that this driver completed.
|
|
LiveDriver ( int id ) : System |
Initialises a new instance of the LiveDriver class.
|
|
MatchesName ( string s ) : bool |
Returns a value indicating if the specified string matches this driver's name.
|
|
Reset ( ) : void |
Resets all state information associated with this driver.
|
|
SetColumnHasValue ( GridColumn column, bool value ) : void |
Sets a value indicating if the specified column has a value.
|
|
SetLastSector ( int sectorNumber, PostedTime time ) : void |
Sets this driver's last sector time.
|
|
ToString ( ) : string |
Method | Description | |
---|---|---|
GetBitForColumn ( GridColumn column ) : int | ||
IsValidSectorNumber ( int sectorNumber ) : bool |
public ChangeStatus ( DriverStatus newStatus ) : void | ||
newStatus | DriverStatus | The new driver status. |
return | void |
public ColumnHasValue ( GridColumn column ) : bool | ||
column | GridColumn | The column to test. |
return | bool |
public ComputeLapNumber ( int raceLapNumber ) : int | ||
raceLapNumber | int | The race lap number |
return | int |
public GetLastSector ( int sectorNumber ) : PostedTime | ||
sectorNumber | int | The one-based sector number. |
return | PostedTime |
public IsCurrentSectorNumber ( int sectorNumber ) : bool | ||
sectorNumber | int | The one-based sector number. |
return | bool |
public IsPreviousSectorNumber ( int sectorNumber ) : bool | ||
sectorNumber | int | The one-based sector number. |
return | bool |
public MatchesName ( string s ) : bool | ||
s | string | The string to test. |
return | bool |
public SetColumnHasValue ( GridColumn column, bool value ) : void | ||
column | GridColumn | The column to set. |
value | bool | |
return | void |
public SetLastSector ( int sectorNumber, PostedTime time ) : void | ||
sectorNumber | int | The one-based sector number. |
time | PostedTime | The sector time. |
return | void |