summaryrefslogtreecommitdiff
path: root/libs/assimp/code/AssetLib/X3D/X3DXmlHelper.h
blob: dd305f883f7a53fbfc203f7198944615c84fa392 (plain)
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
#pragma once

#include <assimp/XmlParser.h>
#include <assimp/types.h>
#include <list>

namespace Assimp {

class X3DXmlHelper {
public:
    static bool getColor3DAttribute(XmlNode &node, const char *attributeName, aiColor3D &color);
    static bool getVector2DAttribute(XmlNode &node, const char *attributeName, aiVector2D &vector);
    static bool getVector3DAttribute(XmlNode &node, const char *attributeName, aiVector3D &vector);

    static bool getBooleanArrayAttribute(XmlNode &node, const char *attributeName, std::vector<bool> &boolArray);
    static bool getDoubleArrayAttribute(XmlNode &node, const char *attributeName, std::vector<double> &doubleArray);
    static bool getFloatArrayAttribute(XmlNode &node, const char *attributeName, std::vector<float> &floatArray);
    static bool getInt32ArrayAttribute(XmlNode &node, const char *attributeName, std::vector<int32_t> &intArray);
    static bool getStringListAttribute(XmlNode &node, const char *attributeName, std::list<std::string> &stringArray);
    static bool getStringArrayAttribute(XmlNode &node, const char *attributeName, std::vector<std::string> &stringArray);

    static bool getVector2DListAttribute(XmlNode &node, const char *attributeName, std::list<aiVector2D> &vectorList);
    static bool getVector2DArrayAttribute(XmlNode &node, const char *attributeName, std::vector<aiVector2D> &vectorArray);
    static bool getVector3DListAttribute(XmlNode &node, const char *attributeName, std::list<aiVector3D> &vectorList);
    static bool getVector3DArrayAttribute(XmlNode &node, const char *attributeName, std::vector<aiVector3D> &vectorArray);
    static bool getColor3DListAttribute(XmlNode &node, const char *attributeName, std::list<aiColor3D> &colorList);
    static bool getColor4DListAttribute(XmlNode &node, const char *attributeName, std::list<aiColor4D> &colorList);
};

} // namespace Assimp