106 engine = Engine::createOffScreenInstance(512, 512,
true,
true,
true);
110 audio = Audio::getInstance();
152 if (this->prototype !=
nullptr)
delete this->
prototype;
156 class SetPrototypeAction:
public Action {
160 SetPrototypeAction(
ModelEditorTabView* modelEditorTabView): modelEditorTabView(modelEditorTabView) {}
161 virtual void performAction() {
173 class ResetPrototypeAction:
public Action {
177 ResetPrototypeAction(
ModelEditorTabView* modelEditorTabView): modelEditorTabView(modelEditorTabView) {}
178 virtual void performAction() {
190 class ReloadPrototypeAction:
public Action {
194 ReloadPrototypeAction(
ModelEditorTabView* modelEditorTabView): modelEditorTabView(modelEditorTabView) {}
195 virtual void performAction() {
207 class ReimportPrototypeAction:
public Action {
211 ReimportPrototypeAction(
ModelEditorTabView* modelEditorTabView): modelEditorTabView(modelEditorTabView) {}
212 virtual void performAction() {
232 if (currentModelObject !=
nullptr) {
234 ModelUtilities::computeModelStatistics(currentModelObject->getModel(), &modelStatistics);
290 struct AnimationSetupStruct {
292 string overlayFromNodeId;
296 map<string, AnimationSetupStruct> originalAnimationSetups;
298 auto animationSetup = animationSetupIt.second;
299 originalAnimationSetups[animationSetup->getId()] = {
300 .loop = animationSetup->isLoop(),
301 .overlayFromNodeId = animationSetup->getOverlayFromNodeId(),
302 .speed = animationSetup->getSpeed()
310 auto model = ModelReader::read(
315 for (
auto originalAnimationSetupIt: originalAnimationSetups) {
316 auto originalAnimationSetupId = originalAnimationSetupIt.first;
317 auto originalAnimationSetup = originalAnimationSetupIt.second;
318 auto animationSetup = model->getAnimationSetup(originalAnimationSetupId);
319 if (animationSetup ==
nullptr) {
320 Console::println(
"ModelEditorTabView::reimportModel(): missing animation setup: " + originalAnimationSetupId);
321 log+=
"Missing animation setup: " + originalAnimationSetupId +
", skipping.\n";
324 Console::println(
"ModelEditorTabView::reimportModel(): reimport animation setup: " + originalAnimationSetupId);
325 animationSetup->setLoop(originalAnimationSetup.loop);
326 animationSetup->setOverlayFromNodeId(originalAnimationSetup.overlayFromNodeId);
327 animationSetup->setSpeed(originalAnimationSetup.speed);
335 if (log.size() > 0) {
342 PrototypeWriter::write(pathName, fileName,
prototype);
349 class ReloadFileAction:
public Action {
353 ReloadFileAction(
ModelEditorTabView* modelEditorTabView): modelEditorTabView(modelEditorTabView) {}
354 virtual void performAction() {
377 ComputeNormalsProgressCallback(
ProgressBarScreenController* progressBarScreenController): progressBarScreenController(progressBarScreenController) {
379 virtual void progress(
float value) {
380 progressBarScreenController->
progress(value);
407 if (sound !=
nullptr) sound->
play();
416 if (model !=
nullptr && attachment1 !=
nullptr) {
419 transformationsMatrix*= model->getTransformations().getTransformationsMatrix();
424 attachment1->setRotationAngle(0, euler.getZ());
425 attachment1->setRotationAngle(1, euler.getY());
426 attachment1->setRotationAngle(2, euler.getX());
429 transformationsMatrix.getScale(scale);
430 attachment1->setScale(scale);
432 attachment1->update();
449 settings.
load(
"settings",
"modeleditor.properties");
454 Console::print(
string(
"ModelEditorTabView::loadSettings(): An error occurred: "));
455 Console::println(
string(exception.what()));
468 Console::print(
string(
"ModelEditorTabView::initialize(): An error occurred: "));
469 Console::println(
string(exception.what()));
482 settings.
store(
"settings",
"modeleditor.properties");
484 Console::print(
string(
"ModelEditorTabView::storeSettings(): An error occurred: "));
485 Console::println(
string(exception.what()));
517 if (StringTools::endsWith(StringTools::toLowerCase(fileName),
".tmodel") ==
true) {
524 auto model = ModelReader::read(
530 Prototype_Type::MODEL,
534 pathName +
"/" + fileName,
535 StringTools::replace(StringTools::replace(StringTools::replace(model->getId(),
"\\",
"_"),
"/",
"_"),
":",
"_") +
".png",
547 if (
object !=
nullptr) {
549 object->removeOverlayAnimations();
550 object->setAnimation(baseAnimationId);
551 if (overlay1AnimationId.empty() ==
false) object->addOverlayAnimation(overlay1AnimationId);
552 if (overlay2AnimationId.empty() ==
false) object->addOverlayAnimation(overlay2AnimationId);
553 if (overlay3AnimationId.empty() ==
false) object->addOverlayAnimation(overlay3AnimationId);
561 attachment1Model = attachmentModelFile.empty() ==
true?
nullptr:ModelReader::read(Tools::getPathName(attachmentModelFile), Tools::getFileName(attachmentModelFile));
563 Console::print(
string(
"ModelEditorTabView::addAttachment1(): An error occurred: "));
564 Console::println(
string(exception.what()));
568 Entity* attachment =
nullptr;
581 if (soundDefinition !=
nullptr && soundDefinition->getFileName().length() > 0) {
582 if (
object !=
nullptr && soundDefinition->getAnimation().size() > 0) object->
setAnimation(soundDefinition->getAnimation());
583 auto pathName = PrototypeReader::getResourcePathName(
585 soundDefinition->getFileName()
587 auto fileName = Tools::getFileName(soundDefinition->getFileName());
588 auto sound =
new Sound(
593 sound->setGain(soundDefinition->getGain());
594 sound->setPitch(soundDefinition->getPitch());
595 sound->setLooping(soundDefinition->isLooping());
596 sound->setFixed(
true);
600 if (soundDefinition->getOffset() <= 0) {
614 if (
object ==
nullptr ||
prototype ==
nullptr)
return;
622 if (
object ==
nullptr ||
prototype ==
nullptr)
return;
623 auto shaderParametersDefault = Engine::getShaderParameterDefaults(
prototype->
getShader());
625 for (
auto& parameterIt: shaderParametersDefault) {
626 auto& parameterName = parameterIt.first;
628 object->setShaderParameter(parameterName, parameterValue);
630 for (
auto& parameterIt: distanceShaderParametersDefault) {
631 auto& parameterName = parameterIt.first;
633 object->setDistanceShaderParameter(parameterName, parameterValue);
virtual void play()=0
Plays this audio entity.
Interface to audio module.
void addEntity(AudioEntity *entity)
Adds a audio entity.
void removeEntity(const string &id)
Removes an audio entity.
AudioEntity * getEntity(const string &id)
Returns an audio entity identified by given id.
Sound audio entity implementation.
bool removeEntity(const string &id)
Removes an entity.
void display()
Renders the scene.
void enqueueAction(Action *action)
Add action to action queue to be executed before next engine update.
void setPartition(Partition *partition)
Set partition.
void setShadowMapLightEyeDistanceScale(float shadowMapLightEyeDistanceScale)
Set shadow map light eye distance scale.
void addEntity(Entity *entity)
Adds an entity by id.
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.
const ShaderParameter getShaderParameter(const string ¶meterName) const
Returns shader parameter for given parameter name, if the value does not exist, the default will be r...
virtual void addRotation(const Vector3 &axis, const float angle)=0
Add rotation.
Object 3D to be used with engine class.
Bogus/Simple partition implementation.
Representation of a 3d model.
map< string, AnimationSetup * > & getAnimationSetups()
TODO: return const map.
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
Base property model class.
Prototype audio definition.
void setAnimation(const string &animation)
Set animation.
PrototypeAudio * getSound(const string &id)
Returns sound of given sound id.
const string & getShader()
Get shader.
Model * unsetModel()
Unset model without deleting current one.
const string & getFileName()
const string & getDistanceShader()
Get distance shader.
void setModel(Model *model)
Set model.
const EntityShaderParameters & getDistanceShaderParameters()
Get distance shader parameters.
const EntityShaderParameters & getShaderParameters()
Get shader parameters.
const string & getModelFileName()
const Matrix4x4 getNodeTransformationsMatrix(const string &id)
Returns transformation matrix for given node.
GUI screen node that represents a screen that can be rendered via GUI system.
Vector3 computeEulerAngles() const
Compute Euler angles (rotation around x, y, z axes)
Matrix4x4 & setTranslation(const Vector3 &translation)
Set translation.
Vector3 & set(float x, float y, float z)
Set up vector.
File system singleton class.
Properties class, which helps out with storeing or loading key value pairs from/to property files.
void put(const string &key, const string &value)
Add property.
const string & get(const string &key, const string &defaultValue) const
Get property value by key.
void load(const string &pathName, const string &fileName, FileSystemInterface *fileSystem=nullptr)
Load property file.
void store(const string &pathName, const string &fileName, FileSystemInterface *fileSystem=nullptr) const
Store property file.
std::exception Exception
Exception base class.
int32_t transparentFaceCount