/* * 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 #include #include #include #include #include #include #include daeElementRef domGles_newparam::create(daeInt bytes) { domGles_newparamRef ref = new(bytes) domGles_newparam; return ref; } daeMetaElement * domGles_newparam::registerElement() { if ( _Meta != NULL ) return _Meta; _Meta = new daeMetaElement; _Meta->setName( "gles_newparam" ); _Meta->registerClass(domGles_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(domGles_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(domGles_newparam,elemSemantic) ); mea->setElementType( domGles_newparam::domSemantic::registerElement() ); cm->appendChild( mea ); mea = new daeMetaElementAttribute( _Meta, cm, 2, 0, 1 ); mea->setName( "modifier" ); mea->setOffset( daeOffsetOf(domGles_newparam,elemModifier) ); mea->setElementType( domGles_newparam::domModifier::registerElement() ); cm->appendChild( mea ); mea = new daeMetaElementAttribute( _Meta, cm, 3, 1, 1 ); mea->setName( "gles_basic_type_common" ); mea->setOffset( daeOffsetOf(domGles_newparam,elemGles_basic_type_common) ); mea->setElementType( domGles_basic_type_common::registerElement() ); cm->appendChild( new daeMetaGroup( mea, _Meta, cm, 3, 1, 1 ) ); cm->setMaxOrdinal( 3 ); _Meta->setCMRoot( cm ); // Add attribute: sid { daeMetaAttribute *ma = new daeMetaAttribute; ma->setName( "sid" ); ma->setType( daeAtomicType::get("xsNCName")); ma->setOffset( daeOffsetOf( domGles_newparam , attrSid )); ma->setContainer( _Meta ); ma->setIsRequired( true ); _Meta->appendAttribute(ma); } _Meta->setElementSize(sizeof(domGles_newparam)); _Meta->validate(); return _Meta; } daeElementRef domGles_newparam::domSemantic::create(daeInt bytes) { domGles_newparam::domSemanticRef ref = new(bytes) domGles_newparam::domSemantic; return ref; } daeMetaElement * domGles_newparam::domSemantic::registerElement() { if ( _Meta != NULL ) return _Meta; _Meta = new daeMetaElement; _Meta->setName( "semantic" ); _Meta->registerClass(domGles_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( domGles_newparam::domSemantic , _value )); ma->setContainer( _Meta ); _Meta->appendAttribute(ma); } _Meta->setElementSize(sizeof(domGles_newparam::domSemantic)); _Meta->validate(); return _Meta; } daeElementRef domGles_newparam::domModifier::create(daeInt bytes) { domGles_newparam::domModifierRef ref = new(bytes) domGles_newparam::domModifier; return ref; } daeMetaElement * domGles_newparam::domModifier::registerElement() { if ( _Meta != NULL ) return _Meta; _Meta = new daeMetaElement; _Meta->setName( "modifier" ); _Meta->registerClass(domGles_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( domGles_newparam::domModifier , _value )); ma->setContainer( _Meta ); _Meta->appendAttribute(ma); } _Meta->setElementSize(sizeof(domGles_newparam::domModifier)); _Meta->validate(); return _Meta; } daeMetaElement * domGles_newparam::_Meta = NULL; daeMetaElement * domGles_newparam::domSemantic::_Meta = NULL; daeMetaElement * domGles_newparam::domModifier::_Meta = NULL;