00001 /************************************************************************* 00002 * * 00003 * Open Physics Abstraction Layer * 00004 * Copyright (C) 2004-2005 * 00005 * Alan Fischer alan.fischer@gmail.com * 00006 * Andres Reinot andres@reinot.com * 00007 * Tyler Streeter tylerstreeter@gmail.com * 00008 * All rights reserved. * 00009 * Web: opal.sourceforge.net * 00010 * * 00011 * This library is free software; you can redistribute it and/or * 00012 * modify it under the terms of EITHER: * 00013 * (1) The GNU Lesser General Public License as published by the Free * 00014 * Software Foundation; either version 2.1 of the License, or (at * 00015 * your option) any later version. The text of the GNU Lesser * 00016 * General Public License is included with this library in the * 00017 * file license-LGPL.txt. * 00018 * (2) The BSD-style license that is included with this library in * 00019 * the file license-BSD.txt. * 00020 * * 00021 * This library is distributed in the hope that it will be useful, * 00022 * but WITHOUT ANY WARRANTY; without even the implied warranty of * 00023 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the files * 00024 * license-LGPL.txt and license-BSD.txt for more details. * 00025 * * 00026 *************************************************************************/ 00027 00028 #ifndef OPAL_GEARED_MOTOR_DATA_H 00029 #define OPAL_GEARED_MOTOR_DATA_H 00030 00031 #include "Defines.h" 00032 #include "MotorData.h" 00033 00034 namespace opal 00035 { 00037 class GearedMotorData : public MotorData 00038 { 00039 public: 00040 OPAL_DECL GearedMotorData() 00041 : MotorData() 00042 { 00043 mType = GEARED_MOTOR; 00044 joint = NULL; 00045 internal_jointIndex = 0; 00046 jointBlueprintRefName = ""; 00047 jointAxisNum = 0; 00048 maxTorque = defaults::motor::geared::maxTorque; 00049 maxVelocity = defaults::motor::geared::maxVelocity; 00050 throttle = 0; 00051 } 00052 00054 OPAL_DECL GearedMotorData(const GearedMotorData& data) 00055 { 00056 (*this) = data; 00057 } 00058 00059 OPAL_DECL virtual ~GearedMotorData() 00060 { 00061 } 00062 00064 OPAL_DECL virtual void OPAL_CALL operator=( 00065 const GearedMotorData& data) 00066 { 00067 mType = data.mType; 00068 enabled = data.enabled; 00069 name = data.name; 00070 joint = data.joint; 00071 internal_jointIndex = data.internal_jointIndex; 00072 jointBlueprintRefName = data.jointBlueprintRefName; 00073 jointAxisNum = data.jointAxisNum; 00074 maxTorque = data.maxTorque; 00075 maxVelocity = data.maxVelocity; 00076 throttle = data.throttle; 00077 } 00078 00080 Joint* joint; 00081 00083 int internal_jointIndex; 00084 00086 std::string jointBlueprintRefName; 00087 00089 int jointAxisNum; 00090 00093 real maxTorque; 00094 00096 real maxVelocity; 00097 00100 real throttle; 00101 00102 protected: 00103 00104 private: 00105 }; 00106 } 00107 00108 #endif