blob: 83273a43af008c9b6fb003cd51c245a14f525b83 [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/domGlsl_setparam_simple.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
domGlsl_setparam_simple::create(DAE& dae)
{
domGlsl_setparam_simpleRef ref = new domGlsl_setparam_simple(dae);
return ref;
}
daeMetaElement *
domGlsl_setparam_simple::registerElement(DAE& dae)
{
daeMetaElement* meta = dae.getMeta(ID());
if ( meta != NULL ) return meta;
meta = new daeMetaElement(dae);
dae.setMeta(ID(), *meta);
meta->setName( "glsl_setparam_simple" );
meta->registerClass(domGlsl_setparam_simple::create);
daeMetaCMPolicy *cm = NULL;
daeMetaElementAttribute *mea = NULL;
cm = new daeMetaSequence( meta, cm, 0, 1, 1 );
mea = new daeMetaElementArrayAttribute( meta, cm, 0, 0, -1 );
mea->setName( "annotate" );
mea->setOffset( daeOffsetOf(domGlsl_setparam_simple,elemAnnotate_array) );
mea->setElementType( domFx_annotate_common::registerElement(dae) );
cm->appendChild( mea );
mea = new daeMetaElementAttribute( meta, cm, 1, 1, 1 );
mea->setName( "glsl_param_type" );
mea->setOffset( daeOffsetOf(domGlsl_setparam_simple,elemGlsl_param_type) );
mea->setElementType( domGlsl_param_type::registerElement(dae) );
cm->appendChild( new daeMetaGroup( mea, meta, cm, 1, 1, 1 ) );
cm->setMaxOrdinal( 1 );
meta->setCMRoot( cm );
// Add attribute: ref
{
daeMetaAttribute *ma = new daeMetaAttribute;
ma->setName( "ref" );
ma->setType( dae.getAtomicTypes().get("Glsl_identifier"));
ma->setOffset( daeOffsetOf( domGlsl_setparam_simple , attrRef ));
ma->setContainer( meta );
ma->setIsRequired( true );
meta->appendAttribute(ma);
}
meta->setElementSize(sizeof(domGlsl_setparam_simple));
meta->validate();
return meta;
}