DOM guide: Working with documents: Difference between revisions

From COLLADA Public Wiki
Jump to navigation Jump to search
(→‎Instantiating the COLLADA DOM: a little reorg of paragraph)
Line 13: Line 13:
*All examples in this user guide uses code that uses these constants.
*All examples in this user guide uses code that uses these constants.


After including the appropriate headers, your application needs to create a '''DAE''' object.
After including the appropriate headers, your application needs to create a '''DAE''' object. The following example shows the DAE object y created from heap memory (using <code>operator new</code>) and accessed as a pointer, which is the most common strategy, but you could also create it globally or on the stack and access it directly:
  DAE *collada_dom = new DAE();
  DAE *collada_dom = new DAE();
The DAE object is most commonly created from heap memory (using <code>operator new</code>) and accessed as a pointer, but you could also create it globally or on the stack and access it directly.


When finished with the COLLADA DOM, make sure that your DAE object is properly destructed. If using a pointer, you need only this:
When finished with the COLLADA DOM, make sure that your DAE object is properly destructed. If using a pointer, you need only this:

Revision as of 23:57, 30 March 2007

This section describes how to load COLLADA instance documents into the COLLADA runtime database and how to save the runtime database into COLLADA instance documents.

Instantiating the COLLADA DOM

To use the COLLADA DOM, your client code needs to include the following header files:

#include <dae.h>
#include <dom/domCOLLADA.h>

To use a specific effect profile, such as <profile_COMMON> or <profile_CG>, you must include the header for that profile. For example:

#include <dom/domProfile_CG.h>

A useful header to include is dom/domConstants.h. This provides constants for strings that are commonly used in the DOM. These strings include all the COLLADA element names and element type names.

  • All examples in this user guide uses code that uses these constants.

After including the appropriate headers, your application needs to create a DAE object. The following example shows the DAE object y created from heap memory (using operator new) and accessed as a pointer, which is the most common strategy, but you could also create it globally or on the stack and access it directly:

DAE *collada_dom = new DAE();

When finished with the COLLADA DOM, make sure that your DAE object is properly destructed. If using a pointer, you need only this:

delete collada_dom;

Loading COLLADA Documents

Use the DAE::load() method to read an existing COLLADA document into the runtime database. When you load a document, the COLLADA DOM uses the document URI as the name of the document when searching or doing other operations where the document needs to be identified. In this example, the name of the document created by the load process is “file:///input_url_name.dae”, the same as the URI it was loaded from:

daeInt error = daeObject->load("file:///input_url_name.dae");

The load method returns:

  • DAE_OK if the load is sucessful.
  • DAE_ERR_COLLECTION_ALREADY_EXISTS iff a document with the same name, or the same document, has already been loaded.
  • DAE_ERR_BACKEND_IO for other errors encountered during load.

Note: The terms "collection" and "document" mean the same thing in the COLLADA DOM interface and documentation.

Unloading COLLADA Documents

Use the DAE::unload() method to unload a document from the runtime database. The document to be unloaded is specified by its document URI name. This method returns either:

  • DAE_OK upon success.
  • DAE_ERR_COLLECTION_DOES_NOT_EXIST if the document does not exist in the runtime database.

((ANDY: What does unload do? When/why would you do it? (Is it just a memory thing?) ))

Saving COLLADA Documents

After you have completed any changes to the elements in the database, you can write the contents of the database to a new URL using the DAE::saveAs() method to save the specific collection. You can use either the document name or the document index to choose which collection to save:

daeInt error = daeObject->saveAs("output_url_name.xml", "file:///input_url_name.xml");

To save the document to the same location that it was loaded from, use the DAE:save() method. This method has only two arguments; the first is either the document name or the document index. The second is an optional flag that specifies whether to overwrite any existing document. This flag defaults to true.

DAE::saveAs has three arguments. The first is the URI to save the document as. The second is either the document name or the document index. If this argument is omitted, the COLLADA DOM defaults to saving the first document that is currently in the runtime database. The last argument is an optional flag that specifies whether to overwrite any existing document. This flag defaults to true.

Note: The COLLADA DOM XML parser does not fully validate the data. It detects some types of errors in XML input but not all of them. You may want to run new COLLADA data through an XML validator before loading it into the DOM. If you are developing programs that write COLLADA data, you should run a validator on the output of your programs during testing.

See also