Files
bullet3/Extras/COLLADA_DOM/src/1.4/dom/domGlsl_newparam.cpp
ejcoumans a0f320764b Upgraded to latest COLLADA-DOM 1.2.0, see http://sourceforge.net/project/showfiles.php?group_id=157838
November 13, 2006
Re-applied the 'INF' fix for constraint limits.
2006-12-19 02:33:05 +00:00

182 lines
5.2 KiB
C++

/*
* 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.
*/
#include <dae/daeDom.h>
#include <dom/domGlsl_newparam.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_newparam::create(daeInt bytes)
{
domGlsl_newparamRef ref = new(bytes) domGlsl_newparam;
return ref;
}
daeMetaElement *
domGlsl_newparam::registerElement()
{
if ( _Meta != NULL ) return _Meta;
_Meta = new daeMetaElement;
_Meta->setName( "glsl_newparam" );
_Meta->registerClass(domGlsl_newparam::create, &_Meta);
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_newparam,elemAnnotate_array) );
mea->setElementType( domFx_annotate_common::registerElement() );
cm->appendChild( mea );
mea = new daeMetaElementAttribute( _Meta, cm, 1, 0, 1 );
mea->setName( "semantic" );
mea->setOffset( daeOffsetOf(domGlsl_newparam,elemSemantic) );
mea->setElementType( domGlsl_newparam::domSemantic::registerElement() );
cm->appendChild( mea );
mea = new daeMetaElementAttribute( _Meta, cm, 2, 0, 1 );
mea->setName( "modifier" );
mea->setOffset( daeOffsetOf(domGlsl_newparam,elemModifier) );
mea->setElementType( domGlsl_newparam::domModifier::registerElement() );
cm->appendChild( mea );
cm = new daeMetaChoice( _Meta, cm, 3, 1, 1 );
mea = new daeMetaElementAttribute( _Meta, cm, 0, 1, 1 );
mea->setName( "glsl_param_type" );
mea->setOffset( daeOffsetOf(domGlsl_newparam,elemGlsl_param_type) );
mea->setElementType( domGlsl_param_type::registerElement() );
cm->appendChild( new daeMetaGroup( mea, _Meta, cm, 0, 1, 1 ) );
mea = new daeMetaElementAttribute( _Meta, cm, 0, 1, 1 );
mea->setName( "array" );
mea->setOffset( daeOffsetOf(domGlsl_newparam,elemArray) );
mea->setElementType( domGlsl_newarray_type::registerElement() );
cm->appendChild( mea );
cm->setMaxOrdinal( 0 );
cm->getParent()->appendChild( cm );
cm = cm->getParent();
cm->setMaxOrdinal( 3 );
_Meta->setCMRoot( cm );
// Ordered list of sub-elements
_Meta->addContents(daeOffsetOf(domGlsl_newparam,_contents));
_Meta->addContentsOrder(daeOffsetOf(domGlsl_newparam,_contentsOrder));
// Add attribute: sid
{
daeMetaAttribute *ma = new daeMetaAttribute;
ma->setName( "sid" );
ma->setType( daeAtomicType::get("Glsl_identifier"));
ma->setOffset( daeOffsetOf( domGlsl_newparam , attrSid ));
ma->setContainer( _Meta );
ma->setIsRequired( true );
_Meta->appendAttribute(ma);
}
_Meta->setElementSize(sizeof(domGlsl_newparam));
_Meta->validate();
return _Meta;
}
daeElementRef
domGlsl_newparam::domSemantic::create(daeInt bytes)
{
domGlsl_newparam::domSemanticRef ref = new(bytes) domGlsl_newparam::domSemantic;
return ref;
}
daeMetaElement *
domGlsl_newparam::domSemantic::registerElement()
{
if ( _Meta != NULL ) return _Meta;
_Meta = new daeMetaElement;
_Meta->setName( "semantic" );
_Meta->registerClass(domGlsl_newparam::domSemantic::create, &_Meta);
_Meta->setIsInnerClass( true );
// Add attribute: _value
{
daeMetaAttribute *ma = new daeMetaAttribute;
ma->setName( "_value" );
ma->setType( daeAtomicType::get("xsNCName"));
ma->setOffset( daeOffsetOf( domGlsl_newparam::domSemantic , _value ));
ma->setContainer( _Meta );
_Meta->appendAttribute(ma);
}
_Meta->setElementSize(sizeof(domGlsl_newparam::domSemantic));
_Meta->validate();
return _Meta;
}
daeElementRef
domGlsl_newparam::domModifier::create(daeInt bytes)
{
domGlsl_newparam::domModifierRef ref = new(bytes) domGlsl_newparam::domModifier;
return ref;
}
daeMetaElement *
domGlsl_newparam::domModifier::registerElement()
{
if ( _Meta != NULL ) return _Meta;
_Meta = new daeMetaElement;
_Meta->setName( "modifier" );
_Meta->registerClass(domGlsl_newparam::domModifier::create, &_Meta);
_Meta->setIsInnerClass( true );
// Add attribute: _value
{
daeMetaAttribute *ma = new daeMetaAttribute;
ma->setName( "_value" );
ma->setType( daeAtomicType::get("Fx_modifier_enum_common"));
ma->setOffset( daeOffsetOf( domGlsl_newparam::domModifier , _value ));
ma->setContainer( _Meta );
_Meta->appendAttribute(ma);
}
_Meta->setElementSize(sizeof(domGlsl_newparam::domModifier));
_Meta->validate();
return _Meta;
}
daeMetaElement * domGlsl_newparam::_Meta = NULL;
daeMetaElement * domGlsl_newparam::domSemantic::_Meta = NULL;
daeMetaElement * domGlsl_newparam::domModifier::_Meta = NULL;