4#include <unordered_set>
33using std::unordered_set;
67 guiEngine = Engine::createOffScreenInstance(1920, 1080,
false,
false,
false);
95 if (modelEntity !=
nullptr &&
modelMeshNode.empty() ==
false && modelEntity->getModel()->getNodeById(
modelMeshNode) !=
nullptr) {
97 auto modelEntityModelImportMatrixInverted = modelEntity->getModel()->getImportTransformationsMatrix().
clone().
invert();
98 auto modelEntityWorldMatrixInverted = modelEntityWorldMatrix.
clone().
multiply(modelEntity->getTransformationsMatrix()).multiply(modelEntityModelImportMatrixInverted).invert();
101 if (event.isProcessed() ==
true)
continue;
104 auto bookLocalCoordinate = modelEntityWorldMatrixInverted.multiply(mouseWorldCoordinate);
105 auto clonedEvent = event;
108 clonedEvent.setXUnscaled(clonedEvent.getX());
109 clonedEvent.setYUnscaled(clonedEvent.getY());
113 event.setProcessed(
true);
139 Console::print(
string(
"UIEditorTabView::initialize(): An error occurred: "));
140 Console::println(
string(exception.what()));
186 if (screenIdx < 0 || screenIdx >=
screenNodes.size())
return;
192 if (screenIdx < 0 || screenIdx >=
screenNodes.size())
return;
194 if (screenNode !=
nullptr) {
202 if (screenIdx < 0 || screenIdx >=
screenNodes.size())
return;
204 if (screenNode !=
nullptr) {
213 auto screensMaxWidth = -1;
214 auto screensMaxHeight = -1;
218 if (screenNode ==
nullptr)
continue;
219 auto screenMaxWidth = screenDimensionsEntity[0];
220 auto screenMaxHeight = screenDimensionsEntity[1];
221 if (screenMaxWidth > screensMaxWidth) screensMaxWidth = screenMaxWidth;
222 if (screenMaxHeight > screensMaxHeight) screensMaxHeight = screenMaxHeight;
223 screenNode->getSizeConstraints().minWidth = -1;
224 screenNode->getSizeConstraints().minHeight = -1;
225 screenNode->getSizeConstraints().maxWidth = -1;
226 screenNode->getSizeConstraints().maxHeight = -1;
230 if (screensMaxWidth == -1) screensMaxWidth = 1920;
231 if (screensMaxHeight == -1) screensMaxHeight = 1080;
249 prototype = PrototypeReader::read(pathName, fileName);
251 Console::print(
string(
"UIEditorTabView::loadPrototype(): An error occurred: "));
252 Console::println(
string(exception.what()));
258 engine = Engine::createOffScreenInstance(512, 512,
true,
true,
false);
271 if (modelEntity !=
nullptr) {
273 modelEntity->setAnimation(modelMeshAnimation);
287 if (modelEntity !=
nullptr) {
299 if (model ==
nullptr || model->getNodeById(
modelMeshNode) ==
nullptr)
return;
303 unordered_set<string> materialIds;
304 for (
auto& facesEntity: modelMeshNodeFacesEntities) {
305 if (facesEntity.getMaterial() !=
nullptr) materialIds.insert(facesEntity.getMaterial()->getId());
306 for (
auto& face: facesEntity.getFaces()) {
307 for (
auto i = 0; i < 3; i++) {
317 for (
auto& materialId: materialIds) {
318 auto materialIt = model->getMaterials().find(materialId);
319 auto material = materialIt != model->getMaterials().end()?materialIt->second:
nullptr;
320 if (material ==
nullptr)
continue;
321 material->getSpecularMaterialProperties()->setDiffuseColor(
Color4(0.8f, 0.8f, 0.8f, 0.9999f));
322 if (material->getPBRMaterialProperties() !=
nullptr) material->getPBRMaterialProperties()->setBaseColorFactor(
Color4(1.0f, 1.0f, 1.0f, 0.9999f));
330 if (modelEntity !=
nullptr) {
FrameBuffer * getFrameBuffer()
void reshape(int32_t width, int32_t height)
Reshape.
void display()
Renders the scene.
Vector3 computeWorldCoordinateByMousePosition(int32_t mouseX, int32_t mouseY, float z)
Compute world coordinate from mouse position and z value.
void setPartition(Partition *partition)
Set partition.
void setShadowMapLightEyeDistanceScale(float shadowMapLightEyeDistanceScale)
Set shadow map light eye distance scale.
void dispose()
Shutdown the engine.
Entity * getEntity(const string &id)
Returns a entity by given id.
void reset()
Removes all entities and caches.
void setSceneColor(const Color4 &sceneColor)
Set scene color.
Object 3D to be used with engine class.
Bogus/Simple partition implementation.
Represents a model face, consisting of vertex, normal, tangent and bitangent vectors,...
Node faces entity A node can have multiple entities containing faces and a applied material.
Representation of a 3d model.
Node * getNodeById(const string &id)
Returns a node by given name or null.
const vector< FacesEntity > & getFacesEntities() const
Represents specular material properties.
Represents specular material properties.
void setAnimation(const string &id, float speed=1.0f)
Sets up a base animation to play.
const Matrix4x4 getNodeTransformationsMatrix(const string &id)
Returns transformation matrix for given node.
void unbindDiffuseTexture(const string &nodeId=string(), const string &facesEntityId=string())
Unbind dynamic texture to a node and faces entity of this object.
void bindDiffuseTexture(int32_t textureId, const string &nodeId=string(), const string &facesEntityId=string())
Bind a texture to a node and faces entity.
void handleEvents()
Handle screen events.
void render()
Render GUIs.
void addRenderScreen(const string &screenId)
Add render screen.
vector< GUIMouseEvent > & getMouseEvents()
void removeScreen(const string &id)
Removes an screen.
void addScreen(const string &id, GUIScreenNode *screen)
Add screen.
vector< GUIKeyboardEvent > & getKeyboardEvents()
void resetRenderScreens()
Reset render screens.
GUI screen node that represents a screen that can be rendered via GUI system.
GUIScreenNode_SizeConstraints & getSizeConstraints()
Matrix4x4 clone()
Clones this matrix.
Matrix4x4 & invert()
Inverts the matrix.
Vector3 multiply(const Vector3 &v) const
Multiplies a vector3 with this matrix into destination vector.
Vector3 & setX(float x)
Set X.
Vector3 & setY(float y)
Set Y.
std::exception Exception
Exception base class.