00001 #ifndef XDKWRL_TEXTURETRANSFORM_H
00002 #define XDKWRL_TEXTURETRANSFORM_H
00003
00004 #include <xdkwrl/config.h>
00005 #include <xdkwrl/node.h>
00006 #include <xdkwrl/fieldtypes/sffloat.h>
00007 #include <xdkwrl/fieldtypes/sfvec2f.h>
00008
00009 namespace wrl
00010 {
00011
00012
00013
00014 class XDKWRL_EXPORT TextureTransform : public Node
00015 {
00016 public:
00017 TextureTransform(const char* name="");
00018 virtual ~TextureTransform();
00019 virtual inline unsigned int nbFields() const;
00020 virtual FieldHandle field(const std::string& n);
00021 virtual FieldHandle field(unsigned int i);
00022 virtual bool isSetToDefaultValue(unsigned int i) const;
00023 virtual inline unsigned int nbEventsIn() const;
00024 virtual EventInHandle eventIn(const std::string& n);
00025 virtual EventInHandle eventIn(unsigned int i);
00026 virtual inline unsigned int nbEventsOut() const;
00027 virtual EventOutHandle eventOut(const std::string& n);
00028 virtual EventOutHandle eventOut(unsigned int i);
00029 inline const char* typeName() const;
00030 virtual Node* duplicate() const;
00031 virtual Node* duplicate(std::map<const Node*,Node*>&) const;
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046 SFVec2f center;
00047
00048
00049
00050
00051
00052
00053
00054
00055 SFFloat rotation;
00056
00057
00058
00059
00060
00061
00062
00063
00064 SFVec2f scale;
00065
00066
00067
00068
00069
00070
00071
00072
00073 SFVec2f translation;
00074
00075
00076
00077
00078
00079
00080
00081
00082
00083
00084
00085
00086
00087
00088
00089 EventIn<SFVec2f> set_center;
00090
00091
00092
00093 EventIn<SFFloat> set_rotation;
00094
00095
00096
00097 EventIn<SFVec2f> set_scale;
00098
00099
00100
00101 EventIn<SFVec2f> set_translation;
00102
00103
00104
00105
00106
00107
00108
00109
00110 EventOut<SFVec2f> center_changed;
00111
00112
00113
00114 EventOut<SFFloat> rotation_changed;
00115
00116
00117
00118 EventOut<SFVec2f> scale_changed;
00119
00120
00121
00122 EventOut<SFVec2f> translation_changed;
00123
00124 };
00125 };
00126
00127
00128
00129
00130
00131
00132 inline const char*
00133 wrl::TextureTransform::typeName() const
00134 {
00135 return "TextureTransform";
00136 }
00137
00138
00139
00140 inline unsigned int
00141 wrl::TextureTransform::nbFields() const
00142 {
00143 return 4;
00144 }
00145
00146
00147
00148 inline unsigned int
00149 wrl::TextureTransform::nbEventsIn() const
00150 {
00151 return 0;
00152 }
00153
00154
00155
00156 inline unsigned int
00157 wrl::TextureTransform::nbEventsOut() const
00158 {
00159 return 0;
00160 }
00161 #endif // XDKWRL_TEXTURETRANSFORM_H
00162
00163
00164
00165
00166
00167