Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames

USARBot.NauticVehicle


00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073
00074
00075
00076
00077
00078
00079
00080
00081
00082
00083
00084
00085
00086
00087
00088
00089
00090
00091
00092
/*
NOTE: The messages still need to be developed!
*/

class NauticVehicle extends KRobot config(USARBot);

function ProcessCarInput()
{
    Super.ProcessCarInput();

    // Return robot GEO information
    if(USARRemoteBot(Controller).GeoType == "Robot")
        USARRemoteBot(Controller).myConnection.SendLine(getRobotGeo());

    // Return robot CONF Information
    if(USARRemoteBot(Controller).ConfType == "Robot")
        USARRemoteBot(Controller).myConnection.SendLine(getRobotConf());
}

function timer()
{
    local string outstring;
    local vector loc,vel;
    local float time;

    Super.timer();

    time = Level.TimeSeconds;

    // Robot State Message
    if (bGroundTruth) {
    loc = Location;
    vel = (loc-lastLocation)/(time-lastTime);

    outstring = "STA {Type NauticVehicle} {Time "$time$"}"$
                " {Location "$Converter.Str_LengthVectorFromUU(loc)$"}"$
                " {Orientation "$Converter.Str_RotatorFromUU(Rotation)$"}"$
                " {Velocity "$Converter.Str_VelocityVectorFromUU(vel)$"}"$
                //" {CameraFov "$Converter.Str_AngleFromDeg(CameraZoom)$"}"$
                " {LightToggle "$bHeadlightOn$"}"$
                " {LightIntensity "$HeadlightItensity$"}"$
                " {Battery "$(batteryLife-myLife)$"}"$
                " {View "$ViewNum$"}";
        lastTime = time;
        lastLocation = loc;
    } else {
        outstring = "STA {Type NauticVehicle} {Time "$time$"}"$
                " {Location 0,0,0}"$
                " {Orientation 0,0,0}"$
                " {Velocity 0,0,0}"$
                //" {CameraFov "$Converter.Str_AngleFromDeg(CameraZoom)$"}"$
                " {LightToggle "$bHeadlightOn$"}"$
                " {LightIntensity "$HeadlightItensity$"}"$
                " {Battery "$(batteryLife-myLife)$"}"$
                " {View "$ViewNum$"}";
    }
    USARRemoteBot(Controller).myConnection.SendLine(outstring);
}

function string getRobotGeo()
{
    local string tmpStr;

    // This is all the information that we need to send out
    local string geoType;
    local string geoName;
    local string geoDimensions;
    local string geoCOG;

    geoType = "NauticVehicle";
    Divide(string(self.class), ".", tmpStr, geoName);
    geoDimensions = converter.FloatString(Dimensions.X) $ "," $ converter.FloatString(Dimensions.Y) $ "," $ converter.FloatString(Dimensions.Z);
    geoCOG = converter.Str_LengthFromUU(KarmaParamsRBFull(KParams).KCOMOffset.X * 50) $ "," $ converter.Str_LengthFromUU(KarmaParamsRBFull(KParams).KCOMOffset.Y * 50) $ "," $ converter.Str_LengthFromUU(KarmaParamsRBFull(KParams).KCOMOffset.Z * 50);

    return "GEO {Type " $ geoType $ "} {Name " $ geoName $ "} {Dimensions " $ geoDimensions $ "} {COG " $ geoCOG $ "}";
}

function string getRobotConf()
{
    local string tmpStr;

    // This is all the information that we need to send out
    local string confType;
    local string confName;
    local string confMass;

    confType = "NauticVehicle";
    Divide(string(self.class), ".", tmpStr, confName);
    confMass = converter.FloatString(Weight);

    return "CONF {Type " $ confType $ "} {Name " $ confName $ "} {Mass " $ confMass $ "}";
}

Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames
Class file time: Mo 22.1.2007 21:58:02.000 - Creation time: Mo 16.4.2007 11:20:50.437 - Created with UnCodeX