FF3DPICOBgForceModel.h

Go to the documentation of this file.
00001 /*
00002  * This file is part of Micole Architecture
00003  *
00004  * Copyright (C) 2007 Micole partners
00005  *
00006  * Micole Architecture is free software: you can redistribute it 
00007  * and/or modify it under the terms of the GNU Lesser General 
00008  * Public License as published by the Free Software Foundation, 
00009  * either version 3 of the License, or (at your option) any 
00010  * later version.
00011  *
00012  * Micole Architecture is distributed in the hope that it will be 
00013  * useful, * but WITHOUT ANY WARRANTY; without even the implied 
00014  * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
00015  * PURPOSE.  See the GNU Lesser General Public License for more 
00016  * details.
00017  *
00018  * You should have received a copy of the GNU Lesser General Public
00019  * License along with Micole Architecture.  If not, see
00020  * <http://www.gnu.org/licenses/>.
00021  */
00022 
00023 #ifndef FF3DPICOBGFORCEMODEL_H
00024 #define FF3DPICOBGFORCEMODEL_H
00025 #include "micolelib.h"
00026 
00027 #include <Vrml.h>
00028 #include <Time.h>
00029 using namespace Reachin;
00030 
00031 #include "FF3DForceModel.h"
00032 #include "Picob.h"
00033 
00037 struct MICOLELIB_API FF3DPicobGForceModel : FF3DForceModel
00038 {
00039 
00040 
00041         FF3DPicobGForceModel(const Vec3f &, vector<Vec3f> &bumps, const float &bumpTime, const float &pauseTime, const mgFloat &stiffness = STIFFNESS);
00042         FF3DPicobGForceModel(const FF3DPicobGForceModel& fm);
00043 
00044         virtual FF3DForceModel * clone() { return new FF3DPicobGForceModel(*this); }
00045 
00046         virtual Vec3f evaluate( const Vec3f &pos, const mgFloat &w ) 
00047         {
00048                 Time currentTime;
00049                 currentTime.setToNow();
00050                 
00051                 if (_p.isFinished(currentTime - _begin))
00052                         _begin.setToNow();
00053                 
00054                 Vec3f diff = (_stick_point + _p.getDeviation(currentTime - _begin)) - pos;
00055                 return _stiffness * diff;
00056         }
00057         private:
00058                 mgFloat _stiffness; 
00059                 Vec3f _stick_point;
00060                 Time _begin;
00061                 Picob _p;
00062 };
00063 
00064 #endif

Generated on Tue Oct 16 17:10:42 2007 for Micole by  doxygen 1.4.7