Ejemplo n.º 1
0
    public String DriverInfo(String method, iRTVO.Sessions.SessionInfo.StandingsItem standing, iRTVO.Sessions.SessionInfo session, Int32 rounding)
    {
        switch (method)
        {
        case "test":
            return("test succesful");

            break;

        case "drivername":
            return(standing.Driver.Name);

            break;

        case "fuel":
            return(((Single)this.sdk.GetData("FuelLevel")).ToString());

            break;

        default:
            return("[invalid]");

            break;
        }
    }
Ejemplo n.º 2
0
Archivo: sof.cs Proyecto: craigwk/irtvo
    public String DriverInfo(String method, iRTVO.Sessions.SessionInfo.StandingsItem standing, iRTVO.Sessions.SessionInfo session, Int32 rounding)
    {
        switch (method)
        {
        case "officialpoints":
            if (session.Standings.Count != drivercount)
            {
                this.UpdateSOF();
            }
            return(Math.Round(this.points[standing.Position], MidpointRounding.ToEven).ToString());

            break;

        default:
            return("[invalid]");

            break;
        }
    }
Ejemplo n.º 3
0
 public String DriverInfo(String method, iRTVO.Sessions.SessionInfo.StandingsItem standing, iRTVO.Sessions.SessionInfo session, Int32 rounding)
 {
     return("");
 }