00001 #ifndef XDKWRL_PLANESENSOR_H
00002 #define XDKWRL_PLANESENSOR_H
00003
00004 #include <xdkwrl/config.h>
00005 #include <xdkwrl/node.h>
00006 #include <xdkwrl/fieldtypes/sfbool.h>
00007 #include <xdkwrl/fieldtypes/sfvec2f.h>
00008 #include <xdkwrl/fieldtypes/sfvec3f.h>
00009
00010 namespace wrl
00011 {
00012
00013
00014
00015 class XDKWRL_EXPORT PlaneSensor : public Node
00016 {
00017 public:
00018 PlaneSensor(const char* name="");
00019 virtual ~PlaneSensor();
00020 virtual inline unsigned int nbFields() const;
00021 virtual FieldHandle field(const std::string& n);
00022 virtual FieldHandle field(unsigned int i);
00023 virtual bool isSetToDefaultValue(unsigned int i) const;
00024 virtual inline unsigned int nbEventsIn() const;
00025 virtual EventInHandle eventIn(const std::string& n);
00026 virtual EventInHandle eventIn(unsigned int i);
00027 virtual inline unsigned int nbEventsOut() const;
00028 virtual EventOutHandle eventOut(const std::string& n);
00029 virtual EventOutHandle eventOut(unsigned int i);
00030 inline const char* typeName() const;
00031 virtual Node* duplicate() const;
00032 virtual Node* duplicate(std::map<const Node*,Node*>&) const;
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047 SFBool autoOffset;
00048
00049
00050
00051
00052
00053
00054
00055
00056 SFBool enabled;
00057
00058
00059
00060
00061
00062
00063
00064
00065 SFVec2f maxPosition;
00066
00067
00068
00069
00070
00071
00072
00073
00074 SFVec2f minPosition;
00075
00076
00077
00078
00079
00080
00081
00082
00083 SFVec3f offset;
00084
00085
00086
00087
00088
00089
00090
00091
00092
00093
00094
00095
00096
00097
00098
00099 EventIn<SFBool> set_autoOffset;
00100
00101
00102
00103 EventIn<SFBool> set_enabled;
00104
00105
00106
00107 EventIn<SFVec2f> set_maxPosition;
00108
00109
00110
00111 EventIn<SFVec2f> set_minPosition;
00112
00113
00114
00115 EventIn<SFVec3f> set_offset;
00116
00117
00118
00119
00120
00121
00122
00123
00124
00125 EventOut<SFBool> isActive;
00126
00127
00128
00129
00130 EventOut<SFVec3f> trackPoint_changed;
00131
00132
00133
00134
00135 EventOut<SFVec3f> translation_changed;
00136
00137
00138
00139 EventOut<SFBool> autoOffset_changed;
00140
00141
00142
00143 EventOut<SFBool> enabled_changed;
00144
00145
00146
00147 EventOut<SFVec2f> maxPosition_changed;
00148
00149
00150
00151 EventOut<SFVec2f> minPosition_changed;
00152
00153
00154
00155 EventOut<SFVec3f> offset_changed;
00156
00157 };
00158 };
00159
00160
00161
00162
00163
00164
00165 inline const char*
00166 wrl::PlaneSensor::typeName() const
00167 {
00168 return "PlaneSensor";
00169 }
00170
00171
00172
00173 inline unsigned int
00174 wrl::PlaneSensor::nbFields() const
00175 {
00176 return 5;
00177 }
00178
00179
00180
00181 inline unsigned int
00182 wrl::PlaneSensor::nbEventsIn() const
00183 {
00184 return 0;
00185 }
00186
00187
00188
00189 inline unsigned int
00190 wrl::PlaneSensor::nbEventsOut() const
00191 {
00192 return 3;
00193 }
00194 #endif // XDKWRL_PLANESENSOR_H
00195
00196
00197
00198
00199
00200