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

USARBot.MisPkgLinkInfo


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
00093
00094
00095
00096
00097
00098
00099
00100
00101
00102
00103
00104
00105
00106
00107
00108
00109
00110
00111
00112
00113
00114
class MisPkgLinkInfo extends Object config(USARMisPkg);

struct MountPoint
{
    var string Name;
    var vector Location;
    var string JointType;
    var vector Orientation;
};

var config array<MountPoint> MountPoints;
var config float MaxSpeed;
var config float MaxTorque;
var config float MinRange;
var config float MaxRange;
var class<KActor> ModelClass;


//*********************************************************************************************************************
// getMountPointLocation Function
// ------------------------------
//     Function that returns the location of the mount point passed as a parameter.  This location is the location
//   from the part's origin.
//*********************************************************************************************************************
function vector getMountPointLocation(string MountPointName)
{
    local int i;

    for(i=0; i<MountPoints.Length; i++)
    {
        if(MountPointName == MountPoints[i].Name)
        {
            return MountPoints[i].Location;
        }
    }
}


//*********************************************************************************************************************
// getMountPointJointType Function
// -------------------------------
//     Function that returns the joint type of the mount point passed as a parameter. The joint type can either be
//   "Revolute" or "Prismatic" for a revolute joint and a prismatic joint, respectively.
//*********************************************************************************************************************
function string getMountPointJointType(string MountPointName)
{
    local int i;

    for(i=0; i<MountPoints.Length; i++)
    {
        if(MountPointName == MountPoints[i].Name)
        {
            return MountPoints[i].JointType;
        }
    }
}


//*********************************************************************************************************************
// getMountPointOrientation Function
// -------------------------------
//     Function that returns the joint orientation (local coordinate) of the mount point passed as a parameter.
//*********************************************************************************************************************
function vector getMountPointOrientation(string MountPointName)
{
    local int i;

    for(i=0; i<MountPoints.Length; i++)
    {
        if(MountPointName == MountPoints[i].Name)
        {
            return MountPoints[i].Orientation;
        }
    }
}


//*********************************************************************************************************************
// getConfData Function
// --------------------
//     Function that returns a string with the CONF information of a mission package link.
//*********************************************************************************************************************
function string getConfData(name LinkName, string MountPoint, int LinkNumber)
{
    local string confJointType, confOrientation, confSpeed, confTorque, confMinRange, confMaxRange;

    confJointType = getMountPointJointType(MountPoint);
    confOrientation = string(getMountPointOrientation(MountPoint));
    confSpeed = string(MaxSpeed);
    confTorque = string(MaxTorque);
    confMinRange = string(MinRange);
    confMaxRange = string(MaxRange);

    return "{Link " $ LinkNumber $ "} {JointType " $ confJointType $ "} {MaxSpeed " $ confSpeed $ "} {MaxTorque " $ confTorque $ "} {MinRange " $ confMinRange $ "} {MaxRange " $ confMaxRange $ "}";
}


//*********************************************************************************************************************
// getGeoData Function
// --------------------
//     Function that returns a string with the GEO information of a mission package link.
//*********************************************************************************************************************
function string getGeoData(name LinkName, string geoJointPos, string geoJointRot, int LinkNumber, int ParentLinkNumber)
{
    return "{Link " $ LinkNumber $ "} {ParentLink " $ ParentLinkNumber $ "} {Location " $ geoJointPos $ "} {Orientation " $ geoJointRot $ "}";
}

defaultproperties
{
    MaxSpeed=0.1745
    MaxTorque=20.0
    MinRange=1
    MaxRange=0
}

Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames
Class file time: Di 12.12.2006 18:34:04.000 - Creation time: Mo 16.4.2007 11:20:50.109 - Created with UnCodeX