Main Page   Namespace List   Class Hierarchy   Compound List   File List   Namespace Members   Compound Members   File Members  

cybtouchsensorc.h

Go to the documentation of this file.
00001 /*
00002 Copyright (C) 1999  Carsten Winkelholz
00003 
00004 Address:  FGAN Forschungsgesellschaft fr Angewandte Naturwissenschaften e. V.
00005       Neuenahrer Str. 20
00006       D - 53343 Wachtberg
00007       
00008 Email:    winkelholz@fgan.de
00009 
00010 This program is free software; you can redistribute it and/or
00011 modify it under the terms of the GNU General Public License
00012 as published by the Free Software Foundation; either version 2
00013 of the License, or (at your option) any later version.
00014 
00015 This program is distributed in the hope that it will be useful,
00016 but WITHOUT ANY WARRANTY; without even the implied warranty of
00017 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00018 GNU General Public License for more details.
00019 
00020 You should have received a copy of the GNU General Public License
00021 along with this program; if not, write to the Free Software
00022 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
00023 */
00024 
00025 
00026 #ifndef CYBTOUCHSENSOR_HC
00027 #define CYBTOUCHSENSOR_HC
00028 
00029 
00030 #include "oaw/ctk/cybsensorc.h"
00031 #include "oaw/misc/kettec.h"
00032 #include "oaw/misc/timec.h"
00033 #include "oaw/ctk/cybwrlfields.h"
00034 #include "oaw/misc/eventpipec.h"
00035 #include "oaw/misc/matrixc.h"
00036 #include "../oawconfig.h"
00037 
00038 OAW_BEGIN_NAMESPACE
00039 
00040 
00041 
00042 class OAW_DLLMAPPING CybTouchSensorC : public CybSensorC
00043 {
00044 public:
00045   CybTouchSensorC(CybWorldC*);
00046   CybTouchSensorC(const CybTouchSensorC&);
00047   CybTouchSensorC& operator = (const CybTouchSensorC&);  
00048   
00049   virtual void ToSelChannelBegin(CybChannelC*){}
00050   virtual void ToSelChannelEnd(CybChannelC*){}
00051   virtual void LoadVRML(char*& iter, const char* iterEnd,long& znr);
00052   
00053   virtual void Reset();
00054     
00055   virtual int AddDes(EventDesI*,const StringC&,long);
00056   virtual int AddSrc(CybNodeC*,const StringC&, const StringC&);
00057   virtual void SetEvent(long,const void*, BaseI*);
00058   virtual long GetFieldEventID(const char*);
00059   virtual long GetFieldDataType(long);
00060   virtual void RouteData();
00061 
00062   //virtual void SetInterfaceData(AnyC&);
00063   //virtual void CopyInterfaceData (AnyC&,long maxLen);
00064   //virtual long GetInterfaceDataMinLength();
00065 
00066   virtual void ToChannel(CybChannelC*,long flag);
00067   virtual void FinishInit();
00068   
00069   virtual ArrayC<CybNodeC*> GetRouteList();
00070   
00071   void SetIsOver(SFBool b);
00072   void SetIsActive(SFBool b);
00073   void SetHitPointInAbsCoord(SFVec3f b);
00074   void SetHitNormalInAbsCoord(SFVec3f b);
00075   void SetHitTexCoordInAbsCoord(SFVec2f b);
00076   void SetHitPointInRelCoord(SFVec3f b);
00077   
00078   virtual short GetFieldData(long,void* data);
00079   
00080   SFBool IsEnabled() const {return m_enabled;}
00081 
00082 protected:
00083   void CallIsOver();
00084   void CallIsActive();
00085   void CallHitPoint();
00086   virtual void CreateNewCopy(CybNodeC*);
00087 protected:
00088   SFBool  m_enabled;
00089   
00090   SFBool  m_isActive;
00091   SFBool  m_isOver;
00092   SFTime  m_touchTime;
00093 
00094   //Listen für EventOuts.
00095   ArrayC<EventPipeC>  m_ahnc; //hitNormal_changed
00096   ArrayC<EventPipeC>  m_ahpc; //hitPoint_changed
00097   ArrayC<EventPipeC>  m_ahtc; //hitTexCoord_changed
00098   ArrayC<EventPipeC>  m_aia;  //isActive
00099   ArrayC<EventPipeC>  m_aio;  //isOver
00100   ArrayC<EventPipeC>  m_att;  //TouchTime
00101   ArrayC<EventPipeC>  m_ae;   //enabled
00102 
00103   SFBool  m_isOverOld;
00104   SFBool  m_isActiveOld;
00105   SFVec3f m_hitPoint;
00106   SFVec3f m_hitNormal;
00107   SFVec2f m_hitTexCoord;
00108 
00109   Matrix4C m_M;
00110 
00111   // Key list
00112   static char VRMLKeyStrList[][30];
00113 };
00114 
00115 OAW_END_NAMESPACE
00116 
00117 
00118 #endif
00119 
00120 
00121 
00122 
00123 

Generated on Tue Jul 29 14:24:13 2003 for Open ActiveWrl by doxygen1.3-rc2