~ubuntu-branches/ubuntu/wily/opencollada/wily-proposed

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/*
    Copyright (c) 2008-2009 NetAllied Systems GmbH

    This file is part of DAE2MA.

    Licensed under the MIT Open Source License, 
    for details please see LICENSE file or the website
    http://www.opensource.org/licenses/mit-license.php
*/

#ifndef __DAE2MA_EXTRADATACALLBACKHANDLER_H__
#define __DAE2MA_EXTRADATACALLBACKHANDLER_H__

#include "DAE2MAPrerequisites.h"

#include "COLLADASaxFWLIExtraDataCallbackHandler.h"


namespace DAE2MA
{

    class ExtraInfo
    { 
    private:

        /** The hash value of the currently parsed extra data element. */
        StringHash mElementHash; 

        /** The uniqueId of the currently parsed extra data element. */
        COLLADAFW::UniqueId mUniqueId;

        /** The text value of the current original maya id. */
        String mOriginalMayaId;

    public:

        /** Constructor. */
        ExtraInfo () {}

        /** Destructor. */
        virtual ~ExtraInfo () {}

        /** The hash value of the currently parsed extra data element. */
        const StringHash& getElementHash () const { return mElementHash; }
        void setElementHash ( const StringHash& val ) { mElementHash = val; }

        /** The uniqueId of the currently parsed extra data element. */
        const COLLADAFW::UniqueId& getUniqueId () const { return mUniqueId; }
        void setUniqueId ( const COLLADAFW::UniqueId& val ) { mUniqueId = val; }

        /** The text value of the current original maya id. */
        const String& getOriginalMayaId () const { return mOriginalMayaId; }
        void setOriginalMayaId ( const String& val ) { mOriginalMayaId = val; }
        void setOriginalMayaId ( const GeneratedSaxParser::ParserChar* text, size_t textLength ) 
        { 
            mOriginalMayaId.assign ( text, textLength ); 
        }

    };

    /** Implementation of an extra data callback handler with the callback handler interface. */
	class ExtraDataCallbackHandler : public COLLADASaxFWL::IExtraDataCallbackHandler
    {
    private:

        typedef std::map<COLLADAFW::UniqueId, std::vector<ExtraInfo> > ExtraInfosMap;

	private:
	
        /** True, if the current text field is the original id field. */
        bool mIsOriginalIdField;

        ExtraInfo mCurrentExtraInfo;

        ExtraInfosMap mExtraInfos;

	public:

        /** Constructor. */
		ExtraDataCallbackHandler();

        /** Destructor. */
		virtual ~ExtraDataCallbackHandler();

        /** Returns the extra info with the searched id and hash string value. */
        const ExtraInfo* findExtraInfo ( 
            const COLLADAFW::UniqueId& uniqueId, 
            const StringHash& hashElement ) const;

        /** Method to ask, if the current callback handler want to read the data of the given extra element. */
        virtual bool parseElement ( 
            const GeneratedSaxParser::ParserChar* profileName, 
            const StringHash& elementHash, 
            const COLLADAFW::UniqueId& uniqueId,
			COLLADAFW::Object* object);

        /** The methods to get the extra data tags to the registered callback handlers. */
        virtual bool elementBegin( const GeneratedSaxParser::ParserChar* elementName, const GeneratedSaxParser::xmlChar** attributes);
        virtual bool elementEnd(const GeneratedSaxParser::ParserChar* elementName );
        virtual bool textData(const GeneratedSaxParser::ParserChar* text, size_t textLength);

	private:

        /** Disable default copy ctor. */
		ExtraDataCallbackHandler( const ExtraDataCallbackHandler& pre );

        /** Disable default assignment operator. */
		const ExtraDataCallbackHandler& operator= ( const ExtraDataCallbackHandler& pre );

	};

} // namespace DAE2MA

#endif // __DAE2MA_EXTRADATACALLBACKHANDLER_H__