TDME2 1.9.121
PrototypeWriter.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
8
11
12#include <ext/rapidjson/document.h>
13
14using std::string;
15
20
21using rapidjson::Document;
22using rapidjson::Value;
23
24/**
25 * Prototype writer
26 * @author Andreas Drewke
27 * @version $Id$
28 */
30{
31private:
32
33 /**
34 * Copy file
35 * @param source source
36 * @param dest dest
37 * @throws tdme::os::filesystem::FileSystemException
38 */
39 static void copyFile(const string& source, const string& dest);
40
41 /**
42 * Writes LOD level to JSON
43 * @param jDocument JSON document
44 * @param jLodLevelRoot JSON LOD level root value
45 * @param lodLevel lod level
46 * @return json root
47 */
48 static void writeLODLevelToJSON(Document& jDocument, Value& jLodLevelRoot, PrototypeLODLevel* lodLevel);
49
50public:
51
52 /**
53 * Writes a prototype to file
54 * @param pathName path name
55 * @param fileName file name
56 * @param prototype prototype
57 * @throws tdme::os::filesystem::FileSystemException
58 * @throws tdme::engine::fileio::models::ModelFileIOException
59 */
60 static void write(const string& pathName, const string& fileName, Prototype* prototype);
61
62 /**
63 * Writes a prototype to JSON
64 * @param document JSON document
65 * @param jPrototypeRoot JSON value to store data in
66 * @param prototype prototype
67 * @throws tdme::os::filesystem::FileSystemException
68 * @throws tdme::engine::fileio::models::ModelFileIOException
69 */
70 static void write(Document& jDocument, Value& jPrototypeRoot, Prototype* prototype);
71
72};
static void write(const string &pathName, const string &fileName, Prototype *prototype)
Writes a prototype to file.
static void writeLODLevelToJSON(Document &jDocument, Value &jLodLevelRoot, PrototypeLODLevel *lodLevel)
Writes LOD level to JSON.
static void copyFile(const string &source, const string &dest)
Copy file.
Prototype LOD level definition.
Prototype definition.
Definition: Prototype.h:49