123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229 |
- /*
- * Copyright 2006 Sony Computer Entertainment Inc.
- *
- * Licensed under the SCEA Shared Source License, Version 1.0 (the "License"); you may not use this
- * file except in compliance with the License. You may obtain a copy of the License at:
- * http://research.scea.com/scea_shared_source_license.html
- *
- * Unless required by applicable law or agreed to in writing, software distributed under the License
- * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
- * implied. See the License for the specific language governing permissions and limitations under the
- * License.
- */
- #ifndef __domMorph_h__
- #define __domMorph_h__
- #include <dae/daeDocument.h>
- #include <dom/domTypes.h>
- #include <dom/domElements.h>
- #include <dom/domSource.h>
- #include <dom/domExtra.h>
- #include <dom/domInputLocal.h>
- class DAE;
- /**
- * The morph element describes the data required to blend between sets of
- * static meshes. Each possible mesh that can be blended (a morph target)
- * must be specified.
- */
- class domMorph : public daeElement
- {
- public:
- virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::MORPH; }
- static daeInt ID() { return 662; }
- virtual daeInt typeID() const { return ID(); }
- public:
- class domTargets;
- typedef daeSmartRef<domTargets> domTargetsRef;
- typedef daeTArray<domTargetsRef> domTargets_Array;
- /**
- * The targets element declares the morph targets, their weights and any user
- * defined attributes associated with them.
- */
- class domTargets : public daeElement
- {
- public:
- virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::TARGETS; }
- static daeInt ID() { return 663; }
- virtual daeInt typeID() const { return ID(); }
- protected: // Elements
- /**
- * The input element must occur at least twice. These inputs are local inputs.
- * @see domInput
- */
- domInputLocal_Array elemInput_array;
- /**
- * The extra element may appear any number of times. @see domExtra
- */
- domExtra_Array elemExtra_array;
- public: //Accessors and Mutators
- /**
- * Gets the input element array.
- * @return Returns a reference to the array of input elements.
- */
- domInputLocal_Array &getInput_array() { return elemInput_array; }
- /**
- * Gets the input element array.
- * @return Returns a constant reference to the array of input elements.
- */
- const domInputLocal_Array &getInput_array() const { return elemInput_array; }
- /**
- * Gets the extra element array.
- * @return Returns a reference to the array of extra elements.
- */
- domExtra_Array &getExtra_array() { return elemExtra_array; }
- /**
- * Gets the extra element array.
- * @return Returns a constant reference to the array of extra elements.
- */
- const domExtra_Array &getExtra_array() const { return elemExtra_array; }
- protected:
- /**
- * Constructor
- */
- domTargets(DAE& dae) : daeElement(dae), elemInput_array(), elemExtra_array() {}
- /**
- * Destructor
- */
- virtual ~domTargets() {}
- /**
- * Overloaded assignment operator
- */
- virtual domTargets &operator=( const domTargets &cpy ) { (void)cpy; return *this; }
- public: // STATIC METHODS
- /**
- * Creates an instance of this class and returns a daeElementRef referencing it.
- * @return a daeElementRef referencing an instance of this object.
- */
- static DLLSPEC daeElementRef create(DAE& dae);
- /**
- * Creates a daeMetaElement object that describes this element in the meta object reflection framework.
- * If a daeMetaElement already exists it will return that instead of creating a new one.
- * @return A daeMetaElement describing this COLLADA element.
- */
- static DLLSPEC daeMetaElement* registerElement(DAE& dae);
- };
- protected: // Attributes
- /**
- * The method attribute specifies the which blending technique to use. The
- * accepted values are NORMALIZED, and RELATIVE. The default value if not
- * specified is NORMALIZED. Optional attribute.
- */
- domMorphMethodType attrMethod;
- /**
- * The source attribute indicates the base mesh. Required attribute.
- */
- xsAnyURI attrSource;
- protected: // Elements
- /**
- * The morph element must contain at least two source elements. @see domSource
- */
- domSource_Array elemSource_array;
- /**
- * The targets element declares the morph targets, their weights and any user
- * defined attributes associated with them. @see domTargets
- */
- domTargetsRef elemTargets;
- /**
- * The extra element may appear any number of times. @see domExtra
- */
- domExtra_Array elemExtra_array;
- public: //Accessors and Mutators
- /**
- * Gets the method attribute.
- * @return Returns a domMorphMethodType of the method attribute.
- */
- domMorphMethodType getMethod() const { return attrMethod; }
- /**
- * Sets the method attribute.
- * @param atMethod The new value for the method attribute.
- */
- void setMethod( domMorphMethodType atMethod ) { attrMethod = atMethod; _validAttributeArray[0] = true; }
- /**
- * Gets the source attribute.
- * @return Returns a xsAnyURI reference of the source attribute.
- */
- xsAnyURI &getSource() { return attrSource; }
- /**
- * Gets the source attribute.
- * @return Returns a constant xsAnyURI reference of the source attribute.
- */
- const xsAnyURI &getSource() const { return attrSource; }
- /**
- * Sets the source attribute.
- * @param atSource The new value for the source attribute.
- */
- void setSource( const xsAnyURI &atSource ) { attrSource = atSource; _validAttributeArray[1] = true; }
- /**
- * Sets the source attribute.
- * @param atSource The new value for the source attribute.
- */
- void setSource( xsString atSource ) { attrSource = atSource; _validAttributeArray[1] = true; }
- /**
- * Gets the source element array.
- * @return Returns a reference to the array of source elements.
- */
- domSource_Array &getSource_array() { return elemSource_array; }
- /**
- * Gets the source element array.
- * @return Returns a constant reference to the array of source elements.
- */
- const domSource_Array &getSource_array() const { return elemSource_array; }
- /**
- * Gets the targets element.
- * @return a daeSmartRef to the targets element.
- */
- const domTargetsRef getTargets() const { return elemTargets; }
- /**
- * Gets the extra element array.
- * @return Returns a reference to the array of extra elements.
- */
- domExtra_Array &getExtra_array() { return elemExtra_array; }
- /**
- * Gets the extra element array.
- * @return Returns a constant reference to the array of extra elements.
- */
- const domExtra_Array &getExtra_array() const { return elemExtra_array; }
- protected:
- /**
- * Constructor
- */
- domMorph(DAE& dae) : daeElement(dae), attrMethod(), attrSource(dae, *this), elemSource_array(), elemTargets(), elemExtra_array() {}
- /**
- * Destructor
- */
- virtual ~domMorph() {}
- /**
- * Overloaded assignment operator
- */
- virtual domMorph &operator=( const domMorph &cpy ) { (void)cpy; return *this; }
- public: // STATIC METHODS
- /**
- * Creates an instance of this class and returns a daeElementRef referencing it.
- * @return a daeElementRef referencing an instance of this object.
- */
- static DLLSPEC daeElementRef create(DAE& dae);
- /**
- * Creates a daeMetaElement object that describes this element in the meta object reflection framework.
- * If a daeMetaElement already exists it will return that instead of creating a new one.
- * @return A daeMetaElement describing this COLLADA element.
- */
- static DLLSPEC daeMetaElement* registerElement(DAE& dae);
- };
- #endif
|