mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-13 23:54:35 +00:00
Engine directory for ticket #1
This commit is contained in:
parent
352279af7a
commit
7dbfe6994d
3795 changed files with 1363358 additions and 0 deletions
119
Engine/lib/collada/include/modules/daeSTLDatabase.h
Normal file
119
Engine/lib/collada/include/modules/daeSTLDatabase.h
Normal file
|
|
@ -0,0 +1,119 @@
|
|||
/*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
#ifndef __DAE_STLDATABASE__
|
||||
#define __DAE_STLDATABASE__
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
#include <vector>
|
||||
#include <map>
|
||||
#include <string>
|
||||
#include <algorithm>
|
||||
#include <functional>
|
||||
|
||||
#include <dae/daeElement.h>
|
||||
#include <dae/daeDatabase.h>
|
||||
|
||||
/**
|
||||
* The @c daeSTLDatabase class derives from @c daeDatabase and implements
|
||||
* the default database.
|
||||
*/
|
||||
class DLLSPEC daeSTLDatabase : public daeDatabase
|
||||
{
|
||||
public:
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
daeSTLDatabase(DAE& dae);
|
||||
/**
|
||||
* Destructor
|
||||
*/
|
||||
virtual ~daeSTLDatabase();
|
||||
|
||||
public:
|
||||
// Element Types of all Elements
|
||||
virtual daeUInt getTypeCount();
|
||||
virtual daeString getTypeName(daeUInt index);
|
||||
virtual daeInt setMeta(daeMetaElement *_topMeta);
|
||||
|
||||
// Documents
|
||||
virtual daeInt insertDocument(daeString name, daeElement* dom, daeDocument** document = NULL);
|
||||
virtual daeInt insertDocument(daeString name, daeDocument** document = NULL);
|
||||
virtual daeInt createDocument(daeString name, daeElement* dom, daeDocument** document = NULL);
|
||||
virtual daeInt createDocument(daeString name, daeDocument** document = NULL);
|
||||
virtual daeInt insertDocument( daeDocument *c );
|
||||
|
||||
virtual daeInt removeDocument(daeDocument* document);
|
||||
virtual daeUInt getDocumentCount();
|
||||
virtual daeDocument* getDocument(daeUInt index);
|
||||
virtual daeDocument* getDocument(daeString name, bool skipUriNormalization = false);
|
||||
virtual daeString getDocumentName(daeUInt index);
|
||||
virtual daeBool isDocumentLoaded(daeString name);
|
||||
|
||||
// Elements
|
||||
virtual daeInt insertElement(daeDocument* document, daeElement* element);
|
||||
virtual daeInt removeElement(daeDocument* document, daeElement* element);
|
||||
virtual daeInt changeElementID(daeElement* element, daeString newID);
|
||||
virtual daeInt changeElementSID(daeElement* element, daeString newSID); // Not implemented
|
||||
virtual daeInt clear();
|
||||
|
||||
virtual std::vector<daeElement*> idLookup(const std::string& id);
|
||||
|
||||
virtual void typeLookup(daeInt typeID,
|
||||
std::vector<daeElement*>& matchingElements,
|
||||
daeDocument* doc = NULL);
|
||||
|
||||
// Currently not implemented, but you can uncomment some code in daeSTLDatabase.cpp to get
|
||||
// it working.
|
||||
virtual void sidLookup(const std::string& sid,
|
||||
std::vector<daeElement*>& matchingElements,
|
||||
daeDocument* doc = NULL);
|
||||
|
||||
// Deprecated. Don't use these. Use idLookup or typeLookup instead.
|
||||
virtual daeUInt getElementCount(daeString name = NULL,
|
||||
daeString type = NULL,
|
||||
daeString file = NULL);
|
||||
virtual daeInt getElement(daeElement** pElement,
|
||||
daeInt index,
|
||||
daeString name = NULL,
|
||||
daeString type = NULL,
|
||||
daeString file = NULL);
|
||||
|
||||
private:
|
||||
|
||||
std::map< std::string, std::vector< daeElement* > > elements; // type name --> element lookup table (deprecated)
|
||||
|
||||
std::multimap<daeInt, daeElement*> typeMap; // type ID --> element lookup table
|
||||
typedef std::multimap<daeInt, daeElement*>::iterator typeMapIter;
|
||||
typedef std::pair<daeInt, daeElement*> typeMapPair;
|
||||
typedef std::pair<typeMapIter, typeMapIter> typeMapRange;
|
||||
|
||||
std::multimap< std::string, daeElement* > elementsIDMap; //map for elements keyed on ID
|
||||
typedef std::multimap<std::string, daeElement*>::iterator idMapIter;
|
||||
typedef std::pair<std::string, daeElement*> idMapPair;
|
||||
typedef std::pair<idMapIter, idMapIter> idMapRange;
|
||||
|
||||
std::multimap< std::string, daeElement* > sidMap; // sid --> element lookup table
|
||||
typedef std::multimap<std::string, daeElement*>::iterator sidMapIter;
|
||||
typedef std::pair<std::string, daeElement*> sidMapPair;
|
||||
typedef std::pair<sidMapIter, sidMapIter> sidMapRange;
|
||||
|
||||
std::vector<daeDocument*> documents;
|
||||
daeMetaElement* topMeta;
|
||||
|
||||
daeInt insertChildren( daeDocument *c, daeElement *element );
|
||||
daeInt removeChildren( daeDocument *c, daeElement *element );
|
||||
};
|
||||
|
||||
#endif // __DAE_STLDATABASE__
|
||||
Loading…
Add table
Add a link
Reference in a new issue