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_INCLINE_SENSOR_H 00029 #define OPAL_INCLINE_SENSOR_H 00030 00031 #include "Defines.h" 00032 #include "Sensor.h" 00033 #include "InclineSensorData.h" 00034 00035 namespace opal 00036 { 00037 class Simulator; 00038 00048 class InclineSensor : public Sensor 00049 { 00050 public: 00051 InclineSensor(); 00052 00053 virtual ~InclineSensor(); 00054 00060 virtual void OPAL_CALL init(const InclineSensorData& data); 00061 00063 virtual const InclineSensorData& OPAL_CALL getData()const; 00064 00067 virtual real OPAL_CALL getAngle(); 00068 00069 virtual void OPAL_CALL setEnabled(bool e); 00070 00071 virtual bool OPAL_CALL isEnabled()const; 00072 00077 virtual void OPAL_CALL setAxis(const Vec3r& axis); 00078 00080 virtual const Vec3r& OPAL_CALL getAxis(); 00081 00082 virtual void OPAL_CALL setTransform(const Matrix44r& t); 00083 00084 virtual const Matrix44r& OPAL_CALL getTransform()const; 00085 00086 virtual SensorType OPAL_CALL getType()const; 00087 00088 virtual void OPAL_CALL setName(const std::string& name); 00089 00090 virtual const std::string& OPAL_CALL getName()const; 00091 00092 virtual void OPAL_CALL internal_update(); 00093 00094 virtual bool OPAL_CALL internal_dependsOnSolid(Solid* s); 00095 00096 protected: 00099 void setupInternalVectors(); 00100 00102 InclineSensorData mData; 00103 00105 Vec3r mLocalReferenceVec; 00106 00108 Vec3r mInitGlobalReferenceVec; 00109 00110 private: 00111 }; 00112 } 00113 00114 #endif 00115