TDME2 1.9.121
SceneReader.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4#include <vector>
5
6#include <tdme/tdme.h>
14#include <tdme/math/Matrix4x4.h>
16
17#include <ext/rapidjson/document.h>
18
19using std::string;
20using std::vector;
21
29
30using rapidjson::Value;
31
32/**
33 * Scene reader
34 * @author Andreas Drewke
35 * @version $Id$
36 */
38{
39
40public:
41 /**
42 * Reads a scene
43 * @param pathName path name
44 * @param fileName file name
45 * @param progressCallback progress callback
46 * @param prototypeTransformFilter prototype transform filter
47 * @throws tdme::os::filesystem::FileSystemException
48 * @throws tdme::engine::fileio::models::ModelFileIOException
49 * @return scene
50 */
51 static Scene* read(const string& pathName, const string& fileName, ProgressCallback* progressCallback = nullptr, PrototypeTransformFilter* prototypeTransformFilter = nullptr);
52
53 /**
54 * Reads a scene
55 * @param pathName path name
56 * @param fileName file name
57 * @param objectIdPrefix object id prefix
58 * @param progressCallback progress callback
59 * @param prototypeTransformFilter prototype transform filter
60 * @throws tdme::os::filesystem::FileSystemException
61 * @throws tdme::engine::fileio::models::ModelFileIOException
62 * @return scene
63 */
64 static Scene* read(const string& pathName, const string& fileName, const string& objectIdPrefix, ProgressCallback* progressCallback = nullptr, PrototypeTransformFilter* prototypeTransformFilter = nullptr);
65
66 /**
67 * Reads a scene
68 * @param pathName path name
69 * @param fileName file name
70 * @param progressCallback progress callback
71 * @throws tdme::os::filesystem::FileSystemException
72 * @throws tdme::engine::fileio::models::ModelFileIOException
73 * @return scene
74 */
75 static Scene* readFromModel(const string& pathName, const string& fileName, ProgressCallback* progressCallback = nullptr);
76
77private:
79 string id;
80 string name;
83 };
84
85 /**
86 * Determine mesh nodes in node hierarchy
87 * @param scene scene
88 * @param node node
89 * @param parentName parent node
90 * @param parentTransformationsMatrix parent transformations matrix
91 * @param meshNodes mesh nodes
92 */
93 static void determineMeshNodes(Scene* scene, Node* node, const string& parentName, const Matrix4x4& parentTransformationsMatrix, vector<PrototypeMeshNode>& meshNodes);
94};
static void determineMeshNodes(Scene *scene, Node *node, const string &parentName, const Matrix4x4 &parentTransformationsMatrix, vector< PrototypeMeshNode > &meshNodes)
Determine mesh nodes in node hierarchy.
static Scene * read(const string &pathName, const string &fileName, ProgressCallback *progressCallback=nullptr, PrototypeTransformFilter *prototypeTransformFilter=nullptr)
Reads a scene.
Definition: SceneReader.cpp:81
static Scene * readFromModel(const string &pathName, const string &fileName, ProgressCallback *progressCallback=nullptr)
Reads a scene.
Model node.
Definition: Node.h:31
Scene definition.
Definition: Scene.h:41
4x4 3D Matrix class
Definition: Matrix4x4.h:24