blob: c37e7a7a3ac2e16db958eca650c11c8e0d30af41 [file] [log] [blame]
/*
* Copyright 2006 Sony Computer Entertainment Inc.
*
* Licensed under the MIT Open Source License, for details please see license.txt or the website
* http://www.opensource.org/licenses/mit-license.php
*
*/
#include <dae.h>
#include <dae/daeDom.h>
#include <dom/domGles_texenv_command_type.h>
#include <dae/daeMetaCMPolicy.h>
#include <dae/daeMetaSequence.h>
#include <dae/daeMetaChoice.h>
#include <dae/daeMetaGroup.h>
#include <dae/daeMetaAny.h>
#include <dae/daeMetaElementAttribute.h>
daeElementRef
domGles_texenv_command_type::create(DAE& dae)
{
domGles_texenv_command_typeRef ref = new domGles_texenv_command_type(dae);
return ref;
}
daeMetaElement *
domGles_texenv_command_type::registerElement(DAE& dae)
{
daeMetaElement* meta = dae.getMeta(ID());
if ( meta != NULL ) return meta;
meta = new daeMetaElement(dae);
dae.setMeta(ID(), *meta);
meta->setName( "gles_texenv_command_type" );
meta->registerClass(domGles_texenv_command_type::create);
daeMetaCMPolicy *cm = NULL;
daeMetaElementAttribute *mea = NULL;
cm = new daeMetaSequence( meta, cm, 0, 1, 1 );
mea = new daeMetaElementAttribute( meta, cm, 0, 0, 1 );
mea->setName( "constant" );
mea->setOffset( daeOffsetOf(domGles_texenv_command_type,elemConstant) );
mea->setElementType( domGles_texture_constant_type::registerElement(dae) );
cm->appendChild( mea );
cm->setMaxOrdinal( 0 );
meta->setCMRoot( cm );
// Add attribute: operator
{
daeMetaAttribute *ma = new daeMetaAttribute;
ma->setName( "operator" );
ma->setType( dae.getAtomicTypes().get("Gles_texenv_mode_enums"));
ma->setOffset( daeOffsetOf( domGles_texenv_command_type , attrOperator ));
ma->setContainer( meta );
meta->appendAttribute(ma);
}
// Add attribute: unit
{
daeMetaAttribute *ma = new daeMetaAttribute;
ma->setName( "unit" );
ma->setType( dae.getAtomicTypes().get("xsNCName"));
ma->setOffset( daeOffsetOf( domGles_texenv_command_type , attrUnit ));
ma->setContainer( meta );
meta->appendAttribute(ma);
}
meta->setElementSize(sizeof(domGles_texenv_command_type));
meta->validate();
return meta;
}