blob: ff2e5835da73d3653841c68b3a48311510295f9a [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/domFx_colortarget_common.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
domFx_colortarget_common::create(DAE& dae)
{
domFx_colortarget_commonRef ref = new domFx_colortarget_common(dae);
return ref;
}
daeMetaElement *
domFx_colortarget_common::registerElement(DAE& dae)
{
daeMetaElement* meta = dae.getMeta(ID());
if ( meta != NULL ) return meta;
meta = new daeMetaElement(dae);
dae.setMeta(ID(), *meta);
meta->setName( "fx_colortarget_common" );
meta->registerClass(domFx_colortarget_common::create);
// Add attribute: _value
{
daeMetaAttribute *ma = new daeMetaAttribute;
ma->setName( "_value" );
ma->setType( dae.getAtomicTypes().get("xsNCName"));
ma->setOffset( daeOffsetOf( domFx_colortarget_common , _value ));
ma->setContainer( meta );
meta->appendAttribute(ma);
}
// Add attribute: index
{
daeMetaAttribute *ma = new daeMetaAttribute;
ma->setName( "index" );
ma->setType( dae.getAtomicTypes().get("xsNonNegativeInteger"));
ma->setOffset( daeOffsetOf( domFx_colortarget_common , attrIndex ));
ma->setContainer( meta );
ma->setDefaultString( "0");
ma->setIsRequired( false );
meta->appendAttribute(ma);
}
// Add attribute: face
{
daeMetaAttribute *ma = new daeMetaAttribute;
ma->setName( "face" );
ma->setType( dae.getAtomicTypes().get("Fx_surface_face_enum"));
ma->setOffset( daeOffsetOf( domFx_colortarget_common , attrFace ));
ma->setContainer( meta );
ma->setDefaultString( "POSITIVE_X");
ma->setIsRequired( false );
meta->appendAttribute(ma);
}
// Add attribute: mip
{
daeMetaAttribute *ma = new daeMetaAttribute;
ma->setName( "mip" );
ma->setType( dae.getAtomicTypes().get("xsNonNegativeInteger"));
ma->setOffset( daeOffsetOf( domFx_colortarget_common , attrMip ));
ma->setContainer( meta );
ma->setDefaultString( "0");
ma->setIsRequired( false );
meta->appendAttribute(ma);
}
// Add attribute: slice
{
daeMetaAttribute *ma = new daeMetaAttribute;
ma->setName( "slice" );
ma->setType( dae.getAtomicTypes().get("xsNonNegativeInteger"));
ma->setOffset( daeOffsetOf( domFx_colortarget_common , attrSlice ));
ma->setContainer( meta );
ma->setDefaultString( "0");
ma->setIsRequired( false );
meta->appendAttribute(ma);
}
meta->setElementSize(sizeof(domFx_colortarget_common));
meta->validate();
return meta;
}