TDME2 1.9.121
Tools.h
Go to the documentation of this file.
1#pragma once
2
3#include <array>
4#include <string>
5#include <vector>
6
7#include <tdme/tdme.h>
13#include <tdme/math/fwd-tdme.h>
15
16using std::array;
17using std::string;
18using std::vector;
19
31
32/**
33 * Editor tools
34 * @author Andreas Drewke
35 * @version $Id$
36 */
38{
39private:
47
50 };
51
53
54public:
55 /**
56 * Formats a float to a human readable format
57 * @param value value
58 * @return value as string
59 */
60 static string formatFloat(float value);
61
62 /**
63 * Set up given engine light with default light
64 * @param light light
65 */
66 static void setDefaultLight(Light* light);
67
68 /**
69 * Init off screen engine for making thumbails
70 */
71 static void oseInit();
72
73 /**
74 * Dispose off screen engine
75 */
76 static void oseDispose();
77
78 /**
79 * Make a thumbnail of given prototype with off screen engine
80 * @param prototype prototype
81 * @param pngData PNG data
82 */
83 static void oseThumbnail(Prototype* prototype, vector<uint8_t>& pngData);
84
85 /**
86 * Compute max axis dimension for given bounding box
87 * @param boundingBox bounding box
88 * @return max axis dimension
89 */
90 static float computeMaxAxisDimension(BoundingBox* boundingBox);
91
92 /**
93 * Creates ground plate with 1m x 1m texture
94 * @param width width
95 * @param depth depth
96 * @param y float y
97 * @return ground model
98 */
99 static Model* createGroundModel(float width, float depth, float y);
100
101 /**
102 * Creates grid plate with 1m x 1m texture
103 * @return grid model
104 */
105 static Model* createGridModel();
106
107 /**
108 * Set up entity in given engine with look from rotations and scale
109 * @param prototype prototype
110 * @param engine engine
111 * @param lookFromRotations look from rotations
112 * @param lodLevel lod level
113 * @param cameraRotationInputHandler camera rotation input handler
114 * @param resetup resetup which would mean to leave camera and lighting as is
115 */
116 static void setupPrototype(Prototype* prototype, Engine* engine, const Transformations& lookFromRotations, int lodLevel, Vector3& objectScale, CameraRotationInputHandler* cameraRotationInputHandler = nullptr, float scale = 1.5f, bool resetup = false);
117
118 /**
119 * Get relative resources file name
120 * @param applicationRoot application root
121 * @param fileName file name
122 * @return relative resources file name
123 */
124 static const string getRelativeResourcesFileName(const string& applicationRoot, const string& fileName);
125
126 /**
127 * Get application root path name
128 * @param fileName file name
129 * @return application root path name
130 */
131 static const string getApplicationRootPathName(const string& fileName);
132
133 /**
134 * Get application sub path name
135 * @param fileName application sub path name
136 * @return application sub path name
137 */
138 static const string getApplicationSubPathName(const string& fileName);
139
140 /**
141 * Get path of given file name
142 * @param fileName file name
143 * @return path
144 */
145 static const string getPathName(const string& fileName);
146
147 /**
148 * Get file name of given file name
149 * @param fileName file name
150 * @return file name
151 */
152 static const string getFileName(const string& fileName);
153
154 /**
155 * Remove file ending, e.g. .dae, .fbx, ...
156 * @param fileName file name
157 * @return file name
158 */
159 static const string removeFileEnding(const string& fileName);
160
161 /**
162 * Ensure file ending
163 * @param fileName file name
164 * @param extension extension
165 * @return file name
166 */
167 static const string ensureFileEnding(const string& fileName, const string& extension);
168
169 /**
170 * Load settings
171 * @param application application
172 */
173 static void loadSettings(Application* application);
174
175 /**
176 * @return GIZMO translation/rotations/scale
177 */
178 static Model* getGizmoAll();
179
180 /**
181 * @return GIZMO translation/rotations/scale
182 */
184
185 /**
186 * @return GIZMO for translation
187 */
188 static Model* getGizmoTranslation();
189
190 /**
191 * @return GIZMO for scale
192 */
193 static Model* getGizmoScale();
194
195 /**
196 * @return GIZMO for rotations
197 */
198 static Model* getGizmoRotations();
199
200 /**
201 * @return default obb
202 */
203 static Model* getDefaultObb();
204
205};
Application base class, please make sure to allocate application on heap to have correct application ...
Definition: Application.h:37
Engine main class.
Definition: Engine.h:122
Light representation.
Definition: Light.h:32
Transformations which contain scale, rotations and translation.
Color 4 definition.
Definition: Color4.h:20
Representation of a 3d model.
Definition: Model.h:32
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
Definition: BoundingBox.h:25
Prototype definition.
Definition: Prototype.h:49
3D vector 3 class
Definition: Vector3.h:22
3D vector 4 class
Definition: Vector4.h:19
static const string getApplicationRootPathName(const string &fileName)
Get application root path name.
Definition: Tools.cpp:496
static STATIC_DLL_IMPEXT Model * gizmoTranslation
Definition: Tools.h:43
static STATIC_DLL_IMPEXT Model * defaultOBB
Definition: Tools.h:46
static const string ensureFileEnding(const string &fileName, const string &extension)
Ensure file ending.
Definition: Tools.cpp:562
static STATIC_DLL_IMPEXT Model * gizmoRotations
Definition: Tools.h:45
static STATIC_DLL_IMPEXT Model * gizmoTranslationScale
Definition: Tools.h:42
static Model * getGizmoTranslation()
Definition: Tools.cpp:614
static void oseInit()
Init off screen engine for making thumbails.
Definition: Tools.cpp:142
static void setDefaultLight(Light *light)
Set up given engine light with default light.
Definition: Tools.cpp:127
static Model * getGizmoTranslationScale()
Definition: Tools.cpp:607
static Model * getGizmoScale()
Definition: Tools.cpp:621
static STATIC_DLL_IMPEXT Model * gizmoScale
Definition: Tools.h:44
static Model * createGroundModel(float width, float depth, float y)
Creates ground plate with 1m x 1m texture.
Definition: Tools.cpp:188
static void loadSettings(Application *application)
Load settings.
Definition: Tools.cpp:571
static STATIC_DLL_IMPEXT Model * gizmoAll
Definition: Tools.h:41
static STATIC_DLL_IMPEXT Engine * osEngine
Definition: Tools.h:40
static const string getFileName(const string &fileName)
Get file name of given file name.
Definition: Tools.cpp:547
static STATIC_DLL_IMPEXT ToolsShutdown toolsShutdown
Definition: Tools.h:52
static string formatFloat(float value)
Formats a float to a human readable format.
Definition: Tools.cpp:120
static const string getRelativeResourcesFileName(const string &applicationRoot, const string &fileName)
Get relative resources file name.
Definition: Tools.cpp:477
static float computeMaxAxisDimension(BoundingBox *boundingBox)
Compute max axis dimension for given bounding box.
Definition: Tools.cpp:178
static Model * createGridModel()
Creates grid plate with 1m x 1m texture.
Definition: Tools.cpp:228
static void oseThumbnail(Prototype *prototype, vector< uint8_t > &pngData)
Make a thumbnail of given prototype with off screen engine.
Definition: Tools.cpp:157
static void oseDispose()
Dispose off screen engine.
Definition: Tools.cpp:150
static const string removeFileEnding(const string &fileName)
Remove file ending, e.g.
Definition: Tools.cpp:552
static Model * getGizmoRotations()
Definition: Tools.cpp:628
static const string getPathName(const string &fileName)
Get path of given file name.
Definition: Tools.cpp:542
static void setupPrototype(Prototype *prototype, Engine *engine, const Transformations &lookFromRotations, int lodLevel, Vector3 &objectScale, CameraRotationInputHandler *cameraRotationInputHandler=nullptr, float scale=1.5f, bool resetup=false)
Set up entity in given engine with look from rotations and scale.
Definition: Tools.cpp:275
static Model * getGizmoAll()
Definition: Tools.cpp:600
static Model * getDefaultObb()
Definition: Tools.cpp:635
static const string getApplicationSubPathName(const string &fileName)
Get application sub path name.
Definition: Tools.cpp:513
#define STATIC_DLL_IMPEXT
Definition: tdme.h:11