2015-05-19 03:48:29 +00:00
|
|
|
/*
|
|
|
|
---------------------------------------------------------------------------
|
|
|
|
Open Asset Import Library (assimp)
|
|
|
|
---------------------------------------------------------------------------
|
|
|
|
|
2024-01-31 08:30:54 +00:00
|
|
|
Copyright (c) 2006-2024, assimp team
|
2018-01-28 18:42:05 +00:00
|
|
|
|
2015-05-19 03:48:29 +00:00
|
|
|
All rights reserved.
|
|
|
|
|
2015-05-19 03:52:10 +00:00
|
|
|
Redistribution and use of this software in source and binary forms,
|
|
|
|
with or without modification, are permitted provided that the following
|
2015-05-19 03:48:29 +00:00
|
|
|
conditions are met:
|
|
|
|
|
|
|
|
* Redistributions of source code must retain the above
|
|
|
|
copyright notice, this list of conditions and the
|
|
|
|
following disclaimer.
|
|
|
|
|
|
|
|
* Redistributions in binary form must reproduce the above
|
|
|
|
copyright notice, this list of conditions and the
|
|
|
|
following disclaimer in the documentation and/or other
|
|
|
|
materials provided with the distribution.
|
|
|
|
|
|
|
|
* Neither the name of the assimp team, nor the names of its
|
|
|
|
contributors may be used to endorse or promote products
|
|
|
|
derived from this software without specific prior
|
|
|
|
written permission of the assimp team.
|
|
|
|
|
2015-05-19 03:52:10 +00:00
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
2015-05-19 03:48:29 +00:00
|
|
|
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
2015-05-19 03:52:10 +00:00
|
|
|
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
2015-05-19 03:48:29 +00:00
|
|
|
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
2015-05-19 03:52:10 +00:00
|
|
|
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
2015-05-19 03:48:29 +00:00
|
|
|
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
2015-05-19 03:52:10 +00:00
|
|
|
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
2015-05-19 03:48:29 +00:00
|
|
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
---------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** @file LWSLoader.cpp
|
2015-05-19 03:52:10 +00:00
|
|
|
* @brief Implementation of the LWS importer class
|
2015-05-19 03:48:29 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ASSIMP_BUILD_NO_LWS_IMPORTER
|
|
|
|
|
2020-05-02 13:14:38 +00:00
|
|
|
#include "AssetLib/LWS/LWSLoader.h"
|
2019-06-10 21:26:00 +00:00
|
|
|
#include "Common/Importer.h"
|
2020-03-01 12:15:45 +00:00
|
|
|
#include "PostProcessing/ConvertToLHProcess.h"
|
2019-06-10 21:26:00 +00:00
|
|
|
|
2020-03-01 12:15:45 +00:00
|
|
|
#include <assimp/GenericProperty.h>
|
2018-01-06 00:18:33 +00:00
|
|
|
#include <assimp/ParsingUtils.h>
|
2017-06-21 12:31:37 +00:00
|
|
|
#include <assimp/SceneCombiner.h>
|
2018-01-06 00:18:33 +00:00
|
|
|
#include <assimp/SkeletonMeshBuilder.h>
|
2020-03-01 12:15:45 +00:00
|
|
|
#include <assimp/fast_atof.h>
|
|
|
|
#include <assimp/importerdesc.h>
|
2016-06-06 20:04:29 +00:00
|
|
|
#include <assimp/scene.h>
|
2020-03-01 12:15:45 +00:00
|
|
|
#include <assimp/DefaultLogger.hpp>
|
2016-06-06 20:04:29 +00:00
|
|
|
#include <assimp/IOSystem.hpp>
|
2019-06-10 21:26:00 +00:00
|
|
|
|
2016-04-05 21:23:53 +00:00
|
|
|
#include <memory>
|
2015-05-19 03:48:29 +00:00
|
|
|
|
|
|
|
using namespace Assimp;
|
|
|
|
|
2023-11-11 08:59:42 +00:00
|
|
|
static constexpr aiImporterDesc desc = {
|
2015-05-19 03:57:13 +00:00
|
|
|
"LightWave Scene Importer",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"http://www.newtek.com/lightwave.html=",
|
|
|
|
aiImporterFlags_SupportTextFlavour,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
"lws mot"
|
2015-05-19 03:48:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
// Recursive parsing of LWS files
|
2024-01-30 13:32:41 +00:00
|
|
|
void LWS::Element::Parse(const char *&buffer, const char *end) {
|
|
|
|
for (; SkipSpacesAndLineEnd(&buffer, end); SkipLine(&buffer, end)) {
|
2015-05-19 03:57:13 +00:00
|
|
|
|
|
|
|
// begin of a new element with children
|
|
|
|
bool sub = false;
|
|
|
|
if (*buffer == '{') {
|
|
|
|
++buffer;
|
2024-01-30 13:32:41 +00:00
|
|
|
SkipSpaces(&buffer, end);
|
2015-05-19 03:57:13 +00:00
|
|
|
sub = true;
|
2020-03-01 12:15:45 +00:00
|
|
|
} else if (*buffer == '}')
|
2015-05-19 03:57:13 +00:00
|
|
|
return;
|
|
|
|
|
2022-08-23 15:41:49 +00:00
|
|
|
children.emplace_back();
|
2015-05-19 03:57:13 +00:00
|
|
|
|
|
|
|
// copy data line - read token per token
|
|
|
|
|
2020-03-01 12:15:45 +00:00
|
|
|
const char *cur = buffer;
|
|
|
|
while (!IsSpaceOrNewLine(*buffer))
|
|
|
|
++buffer;
|
|
|
|
children.back().tokens[0] = std::string(cur, (size_t)(buffer - cur));
|
2024-01-30 13:32:41 +00:00
|
|
|
SkipSpaces(&buffer, end);
|
2015-05-19 03:57:13 +00:00
|
|
|
|
2020-03-01 12:15:45 +00:00
|
|
|
if (children.back().tokens[0] == "Plugin") {
|
2020-05-15 15:59:42 +00:00
|
|
|
ASSIMP_LOG_VERBOSE_DEBUG("LWS: Skipping over plugin-specific data");
|
2015-05-19 03:57:13 +00:00
|
|
|
|
|
|
|
// strange stuff inside Plugin/Endplugin blocks. Needn't
|
|
|
|
// follow LWS syntax, so we skip over it
|
2024-01-30 13:32:41 +00:00
|
|
|
for (; SkipSpacesAndLineEnd(&buffer, end); SkipLine(&buffer, end)) {
|
2020-03-01 12:15:45 +00:00
|
|
|
if (!::strncmp(buffer, "EndPlugin", 9)) {
|
2015-05-19 03:57:13 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
cur = buffer;
|
2020-05-03 10:17:32 +00:00
|
|
|
while (!IsLineEnd(*buffer)) {
|
2020-03-01 12:15:45 +00:00
|
|
|
++buffer;
|
2020-05-03 10:17:32 +00:00
|
|
|
}
|
2020-03-01 12:15:45 +00:00
|
|
|
children.back().tokens[1] = std::string(cur, (size_t)(buffer - cur));
|
2015-05-19 03:57:13 +00:00
|
|
|
|
|
|
|
// parse more elements recursively
|
2020-05-03 10:17:32 +00:00
|
|
|
if (sub) {
|
2024-01-30 13:32:41 +00:00
|
|
|
children.back().Parse(buffer, end);
|
2020-05-03 10:17:32 +00:00
|
|
|
}
|
2015-05-19 03:57:13 +00:00
|
|
|
}
|
2015-05-19 03:48:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
// Constructor to be privately used by Importer
|
2020-03-01 12:15:45 +00:00
|
|
|
LWSImporter::LWSImporter() :
|
|
|
|
configSpeedFlag(),
|
|
|
|
io(),
|
|
|
|
first(),
|
|
|
|
last(),
|
|
|
|
fps(),
|
|
|
|
noSkeletonMesh() {
|
2015-05-19 03:57:13 +00:00
|
|
|
// nothing to do here
|
2015-05-19 03:48:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
2015-05-19 03:52:10 +00:00
|
|
|
// Returns whether the class can handle the format of the given file.
|
2021-04-23 22:17:50 +00:00
|
|
|
bool LWSImporter::CanRead(const std::string &pFile, IOSystem *pIOHandler, bool /*checkSig*/) const {
|
|
|
|
static const uint32_t tokens[] = {
|
|
|
|
AI_MAKE_MAGIC("LWSC"),
|
|
|
|
AI_MAKE_MAGIC("LWMO")
|
|
|
|
};
|
2021-05-04 22:08:54 +00:00
|
|
|
return CheckMagicToken(pIOHandler, pFile, tokens, AI_COUNT_OF(tokens));
|
2015-05-19 03:48:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
// Get list of file extensions
|
2020-03-01 12:15:45 +00:00
|
|
|
const aiImporterDesc *LWSImporter::GetInfo() const {
|
2015-05-19 03:57:13 +00:00
|
|
|
return &desc;
|
2015-05-19 03:48:29 +00:00
|
|
|
}
|
|
|
|
|
2024-01-30 13:32:41 +00:00
|
|
|
static constexpr int MagicHackNo = 150392;
|
2024-01-31 08:30:54 +00:00
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
2015-05-19 03:48:29 +00:00
|
|
|
// Setup configuration properties
|
2020-03-01 12:15:45 +00:00
|
|
|
void LWSImporter::SetupProperties(const Importer *pImp) {
|
2015-05-19 03:57:13 +00:00
|
|
|
// AI_CONFIG_FAVOUR_SPEED
|
2020-03-01 12:15:45 +00:00
|
|
|
configSpeedFlag = (0 != pImp->GetPropertyInteger(AI_CONFIG_FAVOUR_SPEED, 0));
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
// AI_CONFIG_IMPORT_LWS_ANIM_START
|
|
|
|
first = pImp->GetPropertyInteger(AI_CONFIG_IMPORT_LWS_ANIM_START,
|
2024-01-30 13:32:41 +00:00
|
|
|
MagicHackNo /* magic hack */);
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
// AI_CONFIG_IMPORT_LWS_ANIM_END
|
|
|
|
last = pImp->GetPropertyInteger(AI_CONFIG_IMPORT_LWS_ANIM_END,
|
2024-01-30 13:32:41 +00:00
|
|
|
MagicHackNo /* magic hack */);
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
if (last < first) {
|
2020-03-01 12:15:45 +00:00
|
|
|
std::swap(last, first);
|
2015-05-19 03:57:13 +00:00
|
|
|
}
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2020-03-01 12:15:45 +00:00
|
|
|
noSkeletonMesh = pImp->GetPropertyInteger(AI_CONFIG_IMPORT_NO_SKELETON_MESHES, 0) != 0;
|
2015-05-19 03:48:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
// Read an envelope description
|
2020-03-01 12:15:45 +00:00
|
|
|
void LWSImporter::ReadEnvelope(const LWS::Element &dad, LWO::Envelope &fill) {
|
2015-05-19 03:57:13 +00:00
|
|
|
if (dad.children.empty()) {
|
2018-04-20 14:23:24 +00:00
|
|
|
ASSIMP_LOG_ERROR("LWS: Envelope descriptions must not be empty");
|
2015-05-19 03:57:13 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// reserve enough storage
|
2020-03-01 12:15:45 +00:00
|
|
|
std::list<LWS::Element>::const_iterator it = dad.children.begin();
|
2021-07-29 11:28:51 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
fill.keys.reserve(strtoul10(it->tokens[1].c_str()));
|
|
|
|
|
|
|
|
for (++it; it != dad.children.end(); ++it) {
|
2020-03-01 12:15:45 +00:00
|
|
|
const char *c = (*it).tokens[1].c_str();
|
2024-01-30 13:32:41 +00:00
|
|
|
const char *end = c + (*it).tokens[1].size();
|
2015-05-19 03:57:13 +00:00
|
|
|
|
|
|
|
if ((*it).tokens[0] == "Key") {
|
2022-08-23 15:41:49 +00:00
|
|
|
fill.keys.emplace_back();
|
2020-03-01 12:15:45 +00:00
|
|
|
LWO::Key &key = fill.keys.back();
|
2015-05-19 03:57:13 +00:00
|
|
|
|
|
|
|
float f;
|
2024-01-30 13:32:41 +00:00
|
|
|
SkipSpaces(&c, end);
|
2020-03-01 12:15:45 +00:00
|
|
|
c = fast_atoreal_move<float>(c, key.value);
|
2024-01-30 13:32:41 +00:00
|
|
|
SkipSpaces(&c, end);
|
2020-03-01 12:15:45 +00:00
|
|
|
c = fast_atoreal_move<float>(c, f);
|
2015-05-19 03:57:13 +00:00
|
|
|
|
|
|
|
key.time = f;
|
|
|
|
|
2020-03-01 12:15:45 +00:00
|
|
|
unsigned int span = strtoul10(c, &c), num = 0;
|
2015-05-19 03:57:13 +00:00
|
|
|
switch (span) {
|
|
|
|
case 0:
|
|
|
|
key.inter = LWO::IT_TCB;
|
|
|
|
num = 5;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
case 2:
|
|
|
|
key.inter = LWO::IT_HERM;
|
|
|
|
num = 5;
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
key.inter = LWO::IT_LINE;
|
|
|
|
num = 0;
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
key.inter = LWO::IT_STEP;
|
|
|
|
num = 0;
|
|
|
|
break;
|
|
|
|
case 5:
|
|
|
|
key.inter = LWO::IT_BEZ2;
|
|
|
|
num = 4;
|
|
|
|
break;
|
|
|
|
default:
|
2018-04-20 14:23:24 +00:00
|
|
|
ASSIMP_LOG_ERROR("LWS: Unknown span type");
|
2015-05-19 03:57:13 +00:00
|
|
|
}
|
2020-03-01 12:15:45 +00:00
|
|
|
for (unsigned int i = 0; i < num; ++i) {
|
2024-01-30 13:32:41 +00:00
|
|
|
SkipSpaces(&c, end);
|
2020-03-01 12:15:45 +00:00
|
|
|
c = fast_atoreal_move<float>(c, key.params[i]);
|
2015-05-19 03:57:13 +00:00
|
|
|
}
|
2020-03-01 12:15:45 +00:00
|
|
|
} else if ((*it).tokens[0] == "Behaviors") {
|
2024-01-30 13:32:41 +00:00
|
|
|
SkipSpaces(&c, end);
|
2020-03-01 12:15:45 +00:00
|
|
|
fill.pre = (LWO::PrePostBehaviour)strtoul10(c, &c);
|
2024-01-30 13:32:41 +00:00
|
|
|
SkipSpaces(&c, end);
|
2020-03-01 12:15:45 +00:00
|
|
|
fill.post = (LWO::PrePostBehaviour)strtoul10(c, &c);
|
2015-05-19 03:57:13 +00:00
|
|
|
}
|
|
|
|
}
|
2015-05-19 03:48:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
// Read animation channels in the old LightWave animation format
|
2024-01-30 13:32:41 +00:00
|
|
|
void LWSImporter::ReadEnvelope_Old(std::list<LWS::Element>::const_iterator &it,const std::list<LWS::Element>::const_iterator &endIt,
|
|
|
|
LWS::NodeDesc &nodes, unsigned int) {
|
|
|
|
if (++it == endIt) {
|
|
|
|
ASSIMP_LOG_ERROR("LWS: Encountered unexpected end of file while parsing object motion");
|
|
|
|
return;
|
|
|
|
}
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2024-01-31 08:30:54 +00:00
|
|
|
const unsigned int num = strtoul10((*it).tokens[0].c_str());
|
2015-05-19 03:57:13 +00:00
|
|
|
for (unsigned int i = 0; i < num; ++i) {
|
2022-08-23 15:41:49 +00:00
|
|
|
nodes.channels.emplace_back();
|
2020-03-01 12:15:45 +00:00
|
|
|
LWO::Envelope &envl = nodes.channels.back();
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
envl.index = i;
|
2020-03-01 12:15:45 +00:00
|
|
|
envl.type = (LWO::EnvelopeType)(i + 1);
|
2015-05-19 03:52:10 +00:00
|
|
|
|
2024-01-30 13:32:41 +00:00
|
|
|
if (++it == endIt) {
|
|
|
|
ASSIMP_LOG_ERROR("LWS: Encountered unexpected end of file while parsing object motion");
|
|
|
|
return;
|
2020-05-03 10:17:32 +00:00
|
|
|
}
|
2024-01-31 08:30:54 +00:00
|
|
|
|
|
|
|
const unsigned int sub_num = strtoul10((*it).tokens[0].c_str());
|
2020-03-01 12:15:45 +00:00
|
|
|
for (unsigned int n = 0; n < sub_num; ++n) {
|
2024-01-30 13:32:41 +00:00
|
|
|
if (++it == endIt) {
|
|
|
|
ASSIMP_LOG_ERROR("LWS: Encountered unexpected end of file while parsing object motion");
|
|
|
|
return;
|
|
|
|
}
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
// parse value and time, skip the rest for the moment.
|
|
|
|
LWO::Key key;
|
2020-03-01 12:15:45 +00:00
|
|
|
const char *c = fast_atoreal_move<float>((*it).tokens[0].c_str(), key.value);
|
2024-01-30 13:32:41 +00:00
|
|
|
const char *end = c + (*it).tokens[0].size();
|
|
|
|
SkipSpaces(&c, end);
|
2015-05-19 03:57:13 +00:00
|
|
|
float f;
|
2020-03-01 12:15:45 +00:00
|
|
|
fast_atoreal_move<float>((*it).tokens[0].c_str(), f);
|
2015-05-19 03:57:13 +00:00
|
|
|
key.time = f;
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2024-01-31 08:30:54 +00:00
|
|
|
envl.keys.emplace_back(key);
|
2015-05-19 03:57:13 +00:00
|
|
|
}
|
|
|
|
}
|
2015-05-19 03:48:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
2015-05-19 03:52:10 +00:00
|
|
|
// Setup a nice name for a node
|
2020-03-01 12:15:45 +00:00
|
|
|
void LWSImporter::SetupNodeName(aiNode *nd, LWS::NodeDesc &src) {
|
2015-05-19 03:57:13 +00:00
|
|
|
const unsigned int combined = src.number | ((unsigned int)src.type) << 28u;
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
// the name depends on the type. We break LWS's strange naming convention
|
|
|
|
// and return human-readable, but still machine-parsable and unique, strings.
|
2020-03-01 12:15:45 +00:00
|
|
|
if (src.type == LWS::NodeDesc::OBJECT) {
|
2015-05-19 03:57:13 +00:00
|
|
|
if (src.path.length()) {
|
|
|
|
std::string::size_type s = src.path.find_last_of("\\/");
|
2020-05-03 10:17:32 +00:00
|
|
|
if (s == std::string::npos) {
|
2015-05-19 03:57:13 +00:00
|
|
|
s = 0;
|
2020-05-03 10:17:32 +00:00
|
|
|
} else {
|
2020-03-01 12:15:45 +00:00
|
|
|
++s;
|
2020-05-03 10:17:32 +00:00
|
|
|
}
|
2021-06-22 16:27:15 +00:00
|
|
|
std::string::size_type t = src.path.substr(s).find_last_of('.');
|
2015-05-19 03:52:10 +00:00
|
|
|
|
2024-06-17 11:12:54 +00:00
|
|
|
nd->mName.length = ::ai_snprintf(nd->mName.data, AI_MAXLEN, "%s_(%08X)", src.path.substr(s).substr(0, t).c_str(), combined);
|
|
|
|
if (nd->mName.length > AI_MAXLEN) {
|
|
|
|
nd->mName.length = AI_MAXLEN;
|
2022-07-16 12:44:46 +00:00
|
|
|
}
|
2015-05-19 03:57:13 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2024-06-17 11:12:54 +00:00
|
|
|
nd->mName.length = ::ai_snprintf(nd->mName.data, AI_MAXLEN, "%s_(%08X)", src.name, combined);
|
2015-05-19 03:48:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
2020-05-03 10:17:32 +00:00
|
|
|
// Recursively build the scene-graph
|
2020-03-01 12:15:45 +00:00
|
|
|
void LWSImporter::BuildGraph(aiNode *nd, LWS::NodeDesc &src, std::vector<AttachmentInfo> &attach,
|
|
|
|
BatchLoader &batch,
|
|
|
|
aiCamera **&camOut,
|
|
|
|
aiLight **&lightOut,
|
|
|
|
std::vector<aiNodeAnim *> &animOut) {
|
2015-05-19 03:57:13 +00:00
|
|
|
// Setup a very cryptic name for the node, we want the user to be happy
|
2020-03-01 12:15:45 +00:00
|
|
|
SetupNodeName(nd, src);
|
|
|
|
aiNode *ndAnim = nd;
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
// If the node is an object
|
|
|
|
if (src.type == LWS::NodeDesc::OBJECT) {
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
// If the object is from an external file, get it
|
2020-06-23 19:05:42 +00:00
|
|
|
aiScene *obj = nullptr;
|
2020-03-01 12:15:45 +00:00
|
|
|
if (src.path.length()) {
|
2015-05-19 03:48:29 +00:00
|
|
|
obj = batch.GetImport(src.id);
|
|
|
|
if (!obj) {
|
2021-05-13 11:05:31 +00:00
|
|
|
ASSIMP_LOG_ERROR("LWS: Failed to read external file ", src.path);
|
2020-03-01 12:15:45 +00:00
|
|
|
} else {
|
2015-05-19 03:48:29 +00:00
|
|
|
if (obj->mRootNode->mNumChildren == 1) {
|
2015-05-19 03:52:10 +00:00
|
|
|
|
2015-05-19 03:48:29 +00:00
|
|
|
//If the pivot is not set for this layer, get it from the external object
|
|
|
|
if (!src.isPivotSet) {
|
|
|
|
src.pivotPos.x = +obj->mRootNode->mTransformation.a4;
|
|
|
|
src.pivotPos.y = +obj->mRootNode->mTransformation.b4;
|
|
|
|
src.pivotPos.z = -obj->mRootNode->mTransformation.c4; //The sign is the RH to LH back conversion
|
|
|
|
}
|
2015-05-19 03:52:10 +00:00
|
|
|
|
2015-05-19 03:48:29 +00:00
|
|
|
//Remove first node from obj (the old pivot), reset transform of second node (the mesh node)
|
2020-03-01 12:15:45 +00:00
|
|
|
aiNode *newRootNode = obj->mRootNode->mChildren[0];
|
2020-06-23 19:05:42 +00:00
|
|
|
obj->mRootNode->mChildren[0] = nullptr;
|
2015-05-19 03:57:13 +00:00
|
|
|
delete obj->mRootNode;
|
2015-05-19 03:48:29 +00:00
|
|
|
|
|
|
|
obj->mRootNode = newRootNode;
|
|
|
|
obj->mRootNode->mTransformation.a4 = 0.0;
|
|
|
|
obj->mRootNode->mTransformation.b4 = 0.0;
|
|
|
|
obj->mRootNode->mTransformation.c4 = 0.0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-05-19 03:52:10 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
//Setup the pivot node (also the animation node), the one we received
|
2015-05-19 03:48:29 +00:00
|
|
|
nd->mName = std::string("Pivot:") + nd->mName.data;
|
2015-05-19 03:57:13 +00:00
|
|
|
ndAnim = nd;
|
2015-05-19 03:52:10 +00:00
|
|
|
|
2015-05-19 03:48:29 +00:00
|
|
|
//Add the attachment node to it
|
|
|
|
nd->mNumChildren = 1;
|
2020-03-01 12:15:45 +00:00
|
|
|
nd->mChildren = new aiNode *[1];
|
2015-05-19 03:48:29 +00:00
|
|
|
nd->mChildren[0] = new aiNode();
|
|
|
|
nd->mChildren[0]->mParent = nd;
|
|
|
|
nd->mChildren[0]->mTransformation.a4 = -src.pivotPos.x;
|
|
|
|
nd->mChildren[0]->mTransformation.b4 = -src.pivotPos.y;
|
|
|
|
nd->mChildren[0]->mTransformation.c4 = -src.pivotPos.z;
|
2015-05-19 03:57:13 +00:00
|
|
|
SetupNodeName(nd->mChildren[0], src);
|
2015-05-19 03:52:10 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
//Update the attachment node
|
|
|
|
nd = nd->mChildren[0];
|
2015-05-19 03:52:10 +00:00
|
|
|
|
2015-05-19 03:48:29 +00:00
|
|
|
//Push attachment, if the object came from an external file
|
|
|
|
if (obj) {
|
2022-08-23 15:41:49 +00:00
|
|
|
attach.emplace_back(obj, nd);
|
2015-05-19 03:48:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
// If object is a light source - setup a corresponding ai structure
|
|
|
|
else if (src.type == LWS::NodeDesc::LIGHT) {
|
2020-03-01 12:15:45 +00:00
|
|
|
aiLight *lit = *lightOut++ = new aiLight();
|
2015-05-19 03:57:13 +00:00
|
|
|
|
|
|
|
// compute final light color
|
2020-03-01 12:15:45 +00:00
|
|
|
lit->mColorDiffuse = lit->mColorSpecular = src.lightColor * src.lightIntensity;
|
2015-05-19 03:57:13 +00:00
|
|
|
|
|
|
|
// name to attach light to node -> unique due to LWs indexing system
|
|
|
|
lit->mName = nd->mName;
|
|
|
|
|
2018-05-13 14:35:03 +00:00
|
|
|
// determine light type and setup additional members
|
2015-05-19 03:57:13 +00:00
|
|
|
if (src.lightType == 2) { /* spot light */
|
|
|
|
|
|
|
|
lit->mType = aiLightSource_SPOT;
|
2020-03-01 12:15:45 +00:00
|
|
|
lit->mAngleInnerCone = (float)AI_DEG_TO_RAD(src.lightConeAngle);
|
|
|
|
lit->mAngleOuterCone = lit->mAngleInnerCone + (float)AI_DEG_TO_RAD(src.lightEdgeAngle);
|
2015-05-19 03:57:13 +00:00
|
|
|
|
2020-03-01 12:15:45 +00:00
|
|
|
} else if (src.lightType == 1) { /* directional light source */
|
2015-05-19 03:57:13 +00:00
|
|
|
lit->mType = aiLightSource_DIRECTIONAL;
|
2020-05-03 10:17:32 +00:00
|
|
|
} else {
|
2020-03-01 12:15:45 +00:00
|
|
|
lit->mType = aiLightSource_POINT;
|
2020-05-03 10:17:32 +00:00
|
|
|
}
|
2015-05-19 03:57:13 +00:00
|
|
|
|
|
|
|
// fixme: no proper handling of light falloffs yet
|
2020-05-03 10:17:32 +00:00
|
|
|
if (src.lightFalloffType == 1) {
|
2015-05-19 03:57:13 +00:00
|
|
|
lit->mAttenuationConstant = 1.f;
|
2020-05-03 10:17:32 +00:00
|
|
|
} else if (src.lightFalloffType == 2) {
|
2015-05-19 03:57:13 +00:00
|
|
|
lit->mAttenuationLinear = 1.f;
|
2020-05-03 10:17:32 +00:00
|
|
|
} else {
|
2015-05-19 03:57:13 +00:00
|
|
|
lit->mAttenuationQuadratic = 1.f;
|
2020-05-03 10:17:32 +00:00
|
|
|
}
|
|
|
|
} else if (src.type == LWS::NodeDesc::CAMERA) { // If object is a camera - setup a corresponding ai structure
|
2020-03-01 12:15:45 +00:00
|
|
|
aiCamera *cam = *camOut++ = new aiCamera();
|
2015-05-19 03:57:13 +00:00
|
|
|
|
|
|
|
// name to attach cam to node -> unique due to LWs indexing system
|
|
|
|
cam->mName = nd->mName;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the node transformation from the LWO key
|
2020-03-01 12:15:45 +00:00
|
|
|
LWO::AnimResolver resolver(src.channels, fps);
|
2015-05-19 03:57:13 +00:00
|
|
|
resolver.ExtractBindPose(ndAnim->mTransformation);
|
|
|
|
|
|
|
|
// .. and construct animation channels
|
2020-05-03 10:17:32 +00:00
|
|
|
aiNodeAnim *anim = nullptr;
|
2015-05-19 03:57:13 +00:00
|
|
|
|
|
|
|
if (first != last) {
|
2020-03-01 12:15:45 +00:00
|
|
|
resolver.SetAnimationRange(first, last);
|
|
|
|
resolver.ExtractAnimChannel(&anim, AI_LWO_ANIM_FLAG_SAMPLE_ANIMS | AI_LWO_ANIM_FLAG_START_AT_ZERO);
|
2015-05-19 03:57:13 +00:00
|
|
|
if (anim) {
|
|
|
|
anim->mNodeName = ndAnim->mName;
|
|
|
|
animOut.push_back(anim);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add children
|
|
|
|
if (!src.children.empty()) {
|
2020-03-01 12:15:45 +00:00
|
|
|
nd->mChildren = new aiNode *[src.children.size()];
|
|
|
|
for (std::list<LWS::NodeDesc *>::iterator it = src.children.begin(); it != src.children.end(); ++it) {
|
|
|
|
aiNode *ndd = nd->mChildren[nd->mNumChildren++] = new aiNode();
|
2015-05-19 03:57:13 +00:00
|
|
|
ndd->mParent = nd;
|
|
|
|
|
2020-03-01 12:15:45 +00:00
|
|
|
BuildGraph(ndd, **it, attach, batch, camOut, lightOut, animOut);
|
2015-05-19 03:57:13 +00:00
|
|
|
}
|
|
|
|
}
|
2015-05-19 03:48:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
// Determine the exact location of a LWO file
|
2020-03-01 12:15:45 +00:00
|
|
|
std::string LWSImporter::FindLWOFile(const std::string &in) {
|
2017-11-09 22:19:26 +00:00
|
|
|
// insert missing directory separator if necessary
|
2020-05-03 10:17:32 +00:00
|
|
|
std::string tmp(in);
|
2020-03-01 12:15:45 +00:00
|
|
|
if (in.length() > 3 && in[1] == ':' && in[2] != '\\' && in[2] != '/') {
|
2015-05-19 03:57:13 +00:00
|
|
|
tmp = in[0] + (std::string(":\\") + in.substr(2));
|
2021-07-29 11:28:51 +00:00
|
|
|
}
|
2015-05-19 03:57:13 +00:00
|
|
|
|
|
|
|
if (io->Exists(tmp)) {
|
|
|
|
return in;
|
|
|
|
}
|
|
|
|
|
|
|
|
// file is not accessible for us ... maybe it's packed by
|
|
|
|
// LightWave's 'Package Scene' command?
|
|
|
|
|
|
|
|
// Relevant for us are the following two directories:
|
|
|
|
// <folder>\Objects\<hh>\<*>.lwo
|
|
|
|
// <folder>\Scenes\<hh>\<*>.lws
|
|
|
|
// where <hh> is optional.
|
|
|
|
|
|
|
|
std::string test = std::string("..") + (io->getOsSeparator() + tmp);
|
|
|
|
if (io->Exists(test)) {
|
|
|
|
return test;
|
|
|
|
}
|
|
|
|
|
|
|
|
test = std::string("..") + (io->getOsSeparator() + test);
|
|
|
|
if (io->Exists(test)) {
|
|
|
|
return test;
|
|
|
|
}
|
|
|
|
|
|
|
|
// return original path, maybe the IOsystem knows better
|
|
|
|
return tmp;
|
2015-05-19 03:48:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
// Read file into given scene data structure
|
2020-05-03 10:17:32 +00:00
|
|
|
void LWSImporter::InternReadFile(const std::string &pFile, aiScene *pScene, IOSystem *pIOHandler) {
|
2015-05-19 03:57:13 +00:00
|
|
|
io = pIOHandler;
|
2020-03-01 12:15:45 +00:00
|
|
|
std::unique_ptr<IOStream> file(pIOHandler->Open(pFile, "rb"));
|
2015-05-19 03:57:13 +00:00
|
|
|
|
|
|
|
// Check whether we can read from the file
|
2022-11-08 16:03:55 +00:00
|
|
|
if (file == nullptr) {
|
2020-08-18 16:35:08 +00:00
|
|
|
throw DeadlyImportError("Failed to open LWS file ", pFile, ".");
|
2015-05-19 03:57:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Allocate storage and copy the contents of the file to a memory buffer
|
2020-03-01 12:15:45 +00:00
|
|
|
std::vector<char> mBuffer;
|
|
|
|
TextFileToBuffer(file.get(), mBuffer);
|
2015-05-19 03:57:13 +00:00
|
|
|
|
|
|
|
// Parse the file structure
|
2020-03-01 12:15:45 +00:00
|
|
|
LWS::Element root;
|
|
|
|
const char *dummy = &mBuffer[0];
|
2024-01-30 13:32:41 +00:00
|
|
|
const char *dummyEnd = dummy + mBuffer.size();
|
|
|
|
root.Parse(dummy, dummyEnd);
|
2015-05-19 03:57:13 +00:00
|
|
|
|
2020-05-03 10:17:32 +00:00
|
|
|
// Construct a Batch-importer to read more files recursively
|
2015-05-19 03:57:13 +00:00
|
|
|
BatchLoader batch(pIOHandler);
|
|
|
|
|
|
|
|
// Construct an array to receive the flat output graph
|
|
|
|
std::list<LWS::NodeDesc> nodes;
|
|
|
|
|
|
|
|
unsigned int cur_light = 0, cur_camera = 0, cur_object = 0;
|
2022-08-09 07:32:01 +00:00
|
|
|
unsigned int num_light = 0, num_camera = 0;
|
2015-05-19 03:57:13 +00:00
|
|
|
|
|
|
|
// check magic identifier, 'LWSC'
|
|
|
|
bool motion_file = false;
|
2020-03-01 12:15:45 +00:00
|
|
|
std::list<LWS::Element>::const_iterator it = root.children.begin();
|
2015-05-19 03:57:13 +00:00
|
|
|
|
2020-05-03 10:17:32 +00:00
|
|
|
if ((*it).tokens[0] == "LWMO") {
|
2015-05-19 03:57:13 +00:00
|
|
|
motion_file = true;
|
2020-05-03 10:17:32 +00:00
|
|
|
}
|
2015-05-19 03:57:13 +00:00
|
|
|
|
2020-05-03 10:17:32 +00:00
|
|
|
if ((*it).tokens[0] != "LWSC" && !motion_file) {
|
2015-05-19 03:57:13 +00:00
|
|
|
throw DeadlyImportError("LWS: Not a LightWave scene, magic tag LWSC not found");
|
2020-05-03 10:17:32 +00:00
|
|
|
}
|
2015-05-19 03:57:13 +00:00
|
|
|
|
|
|
|
// get file format version and print to log
|
|
|
|
++it;
|
2022-01-05 20:19:06 +00:00
|
|
|
|
|
|
|
if (it == root.children.end() || (*it).tokens[0].empty()) {
|
2021-12-22 20:08:28 +00:00
|
|
|
ASSIMP_LOG_ERROR("Invalid LWS file detectedm abort import.");
|
|
|
|
return;
|
|
|
|
}
|
2015-05-19 03:57:13 +00:00
|
|
|
unsigned int version = strtoul10((*it).tokens[0].c_str());
|
2021-05-13 11:05:31 +00:00
|
|
|
ASSIMP_LOG_INFO("LWS file format version is ", (*it).tokens[0]);
|
2015-05-19 03:57:13 +00:00
|
|
|
first = 0.;
|
2020-03-01 12:15:45 +00:00
|
|
|
last = 60.;
|
2020-05-03 10:17:32 +00:00
|
|
|
fps = 25.; // seems to be a good default frame rate
|
2015-05-19 03:57:13 +00:00
|
|
|
|
2020-05-03 10:17:32 +00:00
|
|
|
// Now read all elements in a very straightforward manner
|
2015-05-19 03:57:13 +00:00
|
|
|
for (; it != root.children.end(); ++it) {
|
2020-03-01 12:15:45 +00:00
|
|
|
const char *c = (*it).tokens[1].c_str();
|
2024-01-30 13:32:41 +00:00
|
|
|
const char *end = c + (*it).tokens[1].size();
|
2015-05-19 03:57:13 +00:00
|
|
|
|
|
|
|
// 'FirstFrame': begin of animation slice
|
|
|
|
if ((*it).tokens[0] == "FirstFrame") {
|
2020-05-03 10:17:32 +00:00
|
|
|
// see SetupProperties()
|
|
|
|
if (150392. != first ) {
|
|
|
|
first = strtoul10(c, &c) - 1.; // we're zero-based
|
|
|
|
}
|
|
|
|
} else if ((*it).tokens[0] == "LastFrame") { // 'LastFrame': end of animation slice
|
|
|
|
// see SetupProperties()
|
|
|
|
if (150392. != last ) {
|
|
|
|
last = strtoul10(c, &c) - 1.; // we're zero-based
|
|
|
|
}
|
|
|
|
} else if ((*it).tokens[0] == "FramesPerSecond") { // 'FramesPerSecond': frames per second
|
2020-03-01 12:15:45 +00:00
|
|
|
fps = strtoul10(c, &c);
|
2020-05-03 10:17:32 +00:00
|
|
|
} else if ((*it).tokens[0] == "LoadObjectLayer") { // 'LoadObjectLayer': load a layer of a specific LWO file
|
2015-05-19 03:57:13 +00:00
|
|
|
|
|
|
|
// get layer index
|
2020-03-01 12:15:45 +00:00
|
|
|
const int layer = strtoul10(c, &c);
|
2015-05-19 03:57:13 +00:00
|
|
|
|
|
|
|
// setup the layer to be loaded
|
|
|
|
BatchLoader::PropertyMap props;
|
2020-03-01 12:15:45 +00:00
|
|
|
SetGenericProperty(props.ints, AI_CONFIG_IMPORT_LWO_ONE_LAYER_ONLY, layer);
|
2015-05-19 03:57:13 +00:00
|
|
|
|
|
|
|
// add node to list
|
|
|
|
LWS::NodeDesc d;
|
|
|
|
d.type = LWS::NodeDesc::OBJECT;
|
|
|
|
if (version >= 4) { // handle LWSC 4 explicit ID
|
2024-01-30 13:32:41 +00:00
|
|
|
SkipSpaces(&c, end);
|
2020-03-01 12:15:45 +00:00
|
|
|
d.number = strtoul16(c, &c) & AI_LWS_MASK;
|
2020-05-03 10:17:32 +00:00
|
|
|
} else {
|
2020-03-01 12:15:45 +00:00
|
|
|
d.number = cur_object++;
|
2020-05-03 10:17:32 +00:00
|
|
|
}
|
2015-05-19 03:57:13 +00:00
|
|
|
|
|
|
|
// and add the file to the import list
|
2024-01-30 13:32:41 +00:00
|
|
|
SkipSpaces(&c, end);
|
2020-03-01 12:15:45 +00:00
|
|
|
std::string path = FindLWOFile(c);
|
2015-05-19 03:57:13 +00:00
|
|
|
d.path = path;
|
2020-03-01 12:15:45 +00:00
|
|
|
d.id = batch.AddLoadRequest(path, 0, &props);
|
2015-05-19 03:57:13 +00:00
|
|
|
|
|
|
|
nodes.push_back(d);
|
2020-05-03 10:17:32 +00:00
|
|
|
} else if ((*it).tokens[0] == "LoadObject") { // 'LoadObject': load a LWO file into the scene-graph
|
2015-05-19 03:57:13 +00:00
|
|
|
|
|
|
|
// add node to list
|
|
|
|
LWS::NodeDesc d;
|
|
|
|
d.type = LWS::NodeDesc::OBJECT;
|
|
|
|
|
|
|
|
if (version >= 4) { // handle LWSC 4 explicit ID
|
2020-03-01 12:15:45 +00:00
|
|
|
d.number = strtoul16(c, &c) & AI_LWS_MASK;
|
2024-01-30 13:32:41 +00:00
|
|
|
SkipSpaces(&c, end);
|
2020-05-03 10:17:32 +00:00
|
|
|
} else {
|
2020-03-01 12:15:45 +00:00
|
|
|
d.number = cur_object++;
|
2020-05-03 10:17:32 +00:00
|
|
|
}
|
2020-03-01 12:15:45 +00:00
|
|
|
std::string path = FindLWOFile(c);
|
2020-06-23 19:05:42 +00:00
|
|
|
d.id = batch.AddLoadRequest(path, 0, nullptr);
|
2015-05-19 03:57:13 +00:00
|
|
|
|
|
|
|
d.path = path;
|
|
|
|
nodes.push_back(d);
|
2020-05-03 10:17:32 +00:00
|
|
|
} else if ((*it).tokens[0] == "AddNullObject") { // 'AddNullObject': add a dummy node to the hierarchy
|
2015-05-19 03:57:13 +00:00
|
|
|
|
|
|
|
// add node to list
|
|
|
|
LWS::NodeDesc d;
|
|
|
|
d.type = LWS::NodeDesc::OBJECT;
|
|
|
|
if (version >= 4) { // handle LWSC 4 explicit ID
|
2020-03-01 12:15:45 +00:00
|
|
|
d.number = strtoul16(c, &c) & AI_LWS_MASK;
|
2024-01-30 13:32:41 +00:00
|
|
|
SkipSpaces(&c, end);
|
2020-05-03 10:17:32 +00:00
|
|
|
} else {
|
2020-03-01 12:15:45 +00:00
|
|
|
d.number = cur_object++;
|
2020-05-03 10:17:32 +00:00
|
|
|
}
|
2015-05-19 03:48:29 +00:00
|
|
|
d.name = c;
|
2015-05-19 03:57:13 +00:00
|
|
|
nodes.push_back(d);
|
|
|
|
}
|
|
|
|
// 'NumChannels': Number of envelope channels assigned to last layer
|
|
|
|
else if ((*it).tokens[0] == "NumChannels") {
|
|
|
|
// ignore for now
|
|
|
|
}
|
|
|
|
// 'Channel': preceedes any envelope description
|
|
|
|
else if ((*it).tokens[0] == "Channel") {
|
|
|
|
if (nodes.empty()) {
|
|
|
|
if (motion_file) {
|
|
|
|
|
|
|
|
// LightWave motion file. Add dummy node
|
|
|
|
LWS::NodeDesc d;
|
|
|
|
d.type = LWS::NodeDesc::OBJECT;
|
|
|
|
d.name = c;
|
|
|
|
d.number = cur_object++;
|
|
|
|
nodes.push_back(d);
|
|
|
|
}
|
2018-04-20 14:23:24 +00:00
|
|
|
ASSIMP_LOG_ERROR("LWS: Unexpected keyword: \'Channel\'");
|
2023-06-03 16:44:18 +00:00
|
|
|
} else {
|
|
|
|
// important: index of channel
|
|
|
|
nodes.back().channels.emplace_back();
|
|
|
|
LWO::Envelope &env = nodes.back().channels.back();
|
2015-05-19 03:57:13 +00:00
|
|
|
|
2023-06-03 16:44:18 +00:00
|
|
|
env.index = strtoul10(c);
|
2015-05-19 03:57:13 +00:00
|
|
|
|
2023-06-03 16:44:18 +00:00
|
|
|
// currently we can just interpret the standard channels 0...9
|
|
|
|
// (hack) assume that index-i yields the binary channel type from LWO
|
|
|
|
env.type = (LWO::EnvelopeType)(env.index + 1);
|
|
|
|
}
|
2015-05-19 03:57:13 +00:00
|
|
|
}
|
|
|
|
// 'Envelope': a single animation channel
|
|
|
|
else if ((*it).tokens[0] == "Envelope") {
|
|
|
|
if (nodes.empty() || nodes.back().channels.empty())
|
2018-04-20 14:23:24 +00:00
|
|
|
ASSIMP_LOG_ERROR("LWS: Unexpected keyword: \'Envelope\'");
|
2015-05-19 03:57:13 +00:00
|
|
|
else {
|
2020-03-01 12:15:45 +00:00
|
|
|
ReadEnvelope((*it), nodes.back().channels.back());
|
2015-05-19 03:57:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// 'ObjectMotion': animation information for older lightwave formats
|
2020-03-01 12:15:45 +00:00
|
|
|
else if (version < 3 && ((*it).tokens[0] == "ObjectMotion" ||
|
|
|
|
(*it).tokens[0] == "CameraMotion" ||
|
|
|
|
(*it).tokens[0] == "LightMotion")) {
|
2015-05-19 03:57:13 +00:00
|
|
|
|
|
|
|
if (nodes.empty())
|
2018-04-26 12:10:18 +00:00
|
|
|
ASSIMP_LOG_ERROR("LWS: Unexpected keyword: \'<Light|Object|Camera>Motion\'");
|
2015-05-19 03:57:13 +00:00
|
|
|
else {
|
2020-03-01 12:15:45 +00:00
|
|
|
ReadEnvelope_Old(it, root.children.end(), nodes.back(), version);
|
2015-05-19 03:57:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// 'Pre/PostBehavior': pre/post animation behaviour for LWSC 2
|
|
|
|
else if (version == 2 && (*it).tokens[0] == "Pre/PostBehavior") {
|
|
|
|
if (nodes.empty())
|
2018-04-20 14:23:24 +00:00
|
|
|
ASSIMP_LOG_ERROR("LWS: Unexpected keyword: \'Pre/PostBehavior'");
|
2015-05-19 03:57:13 +00:00
|
|
|
else {
|
2020-03-01 12:15:45 +00:00
|
|
|
for (std::list<LWO::Envelope>::iterator envelopeIt = nodes.back().channels.begin(); envelopeIt != nodes.back().channels.end(); ++envelopeIt) {
|
2015-05-19 03:57:13 +00:00
|
|
|
// two ints per envelope
|
2020-03-01 12:15:45 +00:00
|
|
|
LWO::Envelope &env = *envelopeIt;
|
|
|
|
env.pre = (LWO::PrePostBehaviour)strtoul10(c, &c);
|
2024-01-30 13:32:41 +00:00
|
|
|
SkipSpaces(&c, end);
|
2020-03-01 12:15:45 +00:00
|
|
|
env.post = (LWO::PrePostBehaviour)strtoul10(c, &c);
|
2024-01-30 13:32:41 +00:00
|
|
|
SkipSpaces(&c, end);
|
2015-05-19 03:57:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// 'ParentItem': specifies the parent of the current element
|
|
|
|
else if ((*it).tokens[0] == "ParentItem") {
|
2024-01-30 13:32:41 +00:00
|
|
|
if (nodes.empty()) {
|
2018-04-20 14:23:24 +00:00
|
|
|
ASSIMP_LOG_ERROR("LWS: Unexpected keyword: \'ParentItem\'");
|
2024-01-30 13:32:41 +00:00
|
|
|
} else {
|
2020-03-01 12:15:45 +00:00
|
|
|
nodes.back().parent = strtoul16(c, &c);
|
2024-01-30 13:32:41 +00:00
|
|
|
}
|
2015-05-19 03:57:13 +00:00
|
|
|
}
|
|
|
|
// 'ParentObject': deprecated one for older formats
|
|
|
|
else if (version < 3 && (*it).tokens[0] == "ParentObject") {
|
2024-01-30 13:32:41 +00:00
|
|
|
if (nodes.empty()) {
|
2018-04-20 14:23:24 +00:00
|
|
|
ASSIMP_LOG_ERROR("LWS: Unexpected keyword: \'ParentObject\'");
|
2024-01-30 13:32:41 +00:00
|
|
|
} else {
|
2020-03-01 12:15:45 +00:00
|
|
|
nodes.back().parent = strtoul10(c, &c) | (1u << 28u);
|
2015-05-19 03:57:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// 'AddCamera': add a camera to the scenegraph
|
|
|
|
else if ((*it).tokens[0] == "AddCamera") {
|
|
|
|
|
|
|
|
// add node to list
|
|
|
|
LWS::NodeDesc d;
|
|
|
|
d.type = LWS::NodeDesc::CAMERA;
|
|
|
|
|
|
|
|
if (version >= 4) { // handle LWSC 4 explicit ID
|
2020-03-01 12:15:45 +00:00
|
|
|
d.number = strtoul16(c, &c) & AI_LWS_MASK;
|
2024-01-30 13:32:41 +00:00
|
|
|
} else {
|
2020-03-01 12:15:45 +00:00
|
|
|
d.number = cur_camera++;
|
2024-01-30 13:32:41 +00:00
|
|
|
}
|
2015-05-19 03:57:13 +00:00
|
|
|
nodes.push_back(d);
|
|
|
|
|
|
|
|
num_camera++;
|
|
|
|
}
|
|
|
|
// 'CameraName': set name of currently active camera
|
|
|
|
else if ((*it).tokens[0] == "CameraName") {
|
2024-01-30 13:32:41 +00:00
|
|
|
if (nodes.empty() || nodes.back().type != LWS::NodeDesc::CAMERA) {
|
2018-04-20 14:23:24 +00:00
|
|
|
ASSIMP_LOG_ERROR("LWS: Unexpected keyword: \'CameraName\'");
|
2024-01-30 13:32:41 +00:00
|
|
|
} else {
|
2020-03-01 12:15:45 +00:00
|
|
|
nodes.back().name = c;
|
2024-01-30 13:32:41 +00:00
|
|
|
}
|
2015-05-19 03:57:13 +00:00
|
|
|
}
|
|
|
|
// 'AddLight': add a light to the scenegraph
|
|
|
|
else if ((*it).tokens[0] == "AddLight") {
|
|
|
|
|
|
|
|
// add node to list
|
|
|
|
LWS::NodeDesc d;
|
|
|
|
d.type = LWS::NodeDesc::LIGHT;
|
|
|
|
|
|
|
|
if (version >= 4) { // handle LWSC 4 explicit ID
|
2020-03-01 12:15:45 +00:00
|
|
|
d.number = strtoul16(c, &c) & AI_LWS_MASK;
|
2024-01-30 13:32:41 +00:00
|
|
|
} else {
|
2020-03-01 12:15:45 +00:00
|
|
|
d.number = cur_light++;
|
2024-01-30 13:32:41 +00:00
|
|
|
}
|
2015-05-19 03:57:13 +00:00
|
|
|
nodes.push_back(d);
|
|
|
|
|
|
|
|
num_light++;
|
|
|
|
}
|
|
|
|
// 'LightName': set name of currently active light
|
|
|
|
else if ((*it).tokens[0] == "LightName") {
|
2024-01-30 13:32:41 +00:00
|
|
|
if (nodes.empty() || nodes.back().type != LWS::NodeDesc::LIGHT) {
|
2018-04-20 14:23:24 +00:00
|
|
|
ASSIMP_LOG_ERROR("LWS: Unexpected keyword: \'LightName\'");
|
2024-01-30 13:32:41 +00:00
|
|
|
} else {
|
2020-03-01 12:15:45 +00:00
|
|
|
nodes.back().name = c;
|
2024-01-30 13:32:41 +00:00
|
|
|
}
|
2015-05-19 03:57:13 +00:00
|
|
|
}
|
|
|
|
// 'LightIntensity': set intensity of currently active light
|
2020-03-01 12:15:45 +00:00
|
|
|
else if ((*it).tokens[0] == "LightIntensity" || (*it).tokens[0] == "LgtIntensity") {
|
2020-11-11 19:32:55 +00:00
|
|
|
if (nodes.empty() || nodes.back().type != LWS::NodeDesc::LIGHT) {
|
2018-04-20 14:23:24 +00:00
|
|
|
ASSIMP_LOG_ERROR("LWS: Unexpected keyword: \'LightIntensity\'");
|
2020-11-11 19:32:55 +00:00
|
|
|
} else {
|
|
|
|
const std::string env = "(envelope)";
|
|
|
|
if (0 == strncmp(c, env.c_str(), env.size())) {
|
|
|
|
ASSIMP_LOG_ERROR("LWS: envelopes for LightIntensity not supported, set to 1.0");
|
|
|
|
nodes.back().lightIntensity = (ai_real)1.0;
|
|
|
|
} else {
|
|
|
|
fast_atoreal_move<float>(c, nodes.back().lightIntensity);
|
|
|
|
}
|
|
|
|
}
|
2015-05-19 03:57:13 +00:00
|
|
|
}
|
|
|
|
// 'LightType': set type of currently active light
|
|
|
|
else if ((*it).tokens[0] == "LightType") {
|
2024-01-30 13:32:41 +00:00
|
|
|
if (nodes.empty() || nodes.back().type != LWS::NodeDesc::LIGHT) {
|
2018-04-26 12:10:18 +00:00
|
|
|
ASSIMP_LOG_ERROR("LWS: Unexpected keyword: \'LightType\'");
|
2024-01-30 13:32:41 +00:00
|
|
|
} else {
|
2020-03-01 12:15:45 +00:00
|
|
|
nodes.back().lightType = strtoul10(c);
|
2024-01-30 13:32:41 +00:00
|
|
|
}
|
2015-05-19 03:57:13 +00:00
|
|
|
}
|
|
|
|
// 'LightFalloffType': set falloff type of currently active light
|
|
|
|
else if ((*it).tokens[0] == "LightFalloffType") {
|
2024-01-30 13:32:41 +00:00
|
|
|
if (nodes.empty() || nodes.back().type != LWS::NodeDesc::LIGHT) {
|
2018-04-20 14:23:24 +00:00
|
|
|
ASSIMP_LOG_ERROR("LWS: Unexpected keyword: \'LightFalloffType\'");
|
2024-01-30 13:32:41 +00:00
|
|
|
} else {
|
2020-03-01 12:15:45 +00:00
|
|
|
nodes.back().lightFalloffType = strtoul10(c);
|
2024-01-30 13:32:41 +00:00
|
|
|
}
|
2015-05-19 03:57:13 +00:00
|
|
|
}
|
|
|
|
// 'LightConeAngle': set cone angle of currently active light
|
|
|
|
else if ((*it).tokens[0] == "LightConeAngle") {
|
2024-01-30 13:32:41 +00:00
|
|
|
if (nodes.empty() || nodes.back().type != LWS::NodeDesc::LIGHT) {
|
2018-04-20 14:23:24 +00:00
|
|
|
ASSIMP_LOG_ERROR("LWS: Unexpected keyword: \'LightConeAngle\'");
|
2024-01-30 13:32:41 +00:00
|
|
|
} else {
|
2020-03-01 12:15:45 +00:00
|
|
|
nodes.back().lightConeAngle = fast_atof(c);
|
2024-01-30 13:32:41 +00:00
|
|
|
}
|
2015-05-19 03:57:13 +00:00
|
|
|
}
|
|
|
|
// 'LightEdgeAngle': set area where we're smoothing from min to max intensity
|
|
|
|
else if ((*it).tokens[0] == "LightEdgeAngle") {
|
2024-01-30 13:32:41 +00:00
|
|
|
if (nodes.empty() || nodes.back().type != LWS::NodeDesc::LIGHT) {
|
2018-04-20 14:23:24 +00:00
|
|
|
ASSIMP_LOG_ERROR("LWS: Unexpected keyword: \'LightEdgeAngle\'");
|
2024-01-30 13:32:41 +00:00
|
|
|
} else {
|
2020-03-01 12:15:45 +00:00
|
|
|
nodes.back().lightEdgeAngle = fast_atof(c);
|
2024-01-30 13:32:41 +00:00
|
|
|
}
|
2015-05-19 03:57:13 +00:00
|
|
|
}
|
|
|
|
// 'LightColor': set color of currently active light
|
|
|
|
else if ((*it).tokens[0] == "LightColor") {
|
2024-01-30 13:32:41 +00:00
|
|
|
if (nodes.empty() || nodes.back().type != LWS::NodeDesc::LIGHT) {
|
2018-04-20 14:23:24 +00:00
|
|
|
ASSIMP_LOG_ERROR("LWS: Unexpected keyword: \'LightColor\'");
|
2024-01-30 13:32:41 +00:00
|
|
|
} else {
|
2020-03-01 12:15:45 +00:00
|
|
|
c = fast_atoreal_move<float>(c, (float &)nodes.back().lightColor.r);
|
2024-01-30 13:32:41 +00:00
|
|
|
SkipSpaces(&c, end);
|
2020-03-01 12:15:45 +00:00
|
|
|
c = fast_atoreal_move<float>(c, (float &)nodes.back().lightColor.g);
|
2024-01-30 13:32:41 +00:00
|
|
|
SkipSpaces(&c, end);
|
2020-03-01 12:15:45 +00:00
|
|
|
c = fast_atoreal_move<float>(c, (float &)nodes.back().lightColor.b);
|
2015-05-19 03:57:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 'PivotPosition': position of local transformation origin
|
|
|
|
else if ((*it).tokens[0] == "PivotPosition" || (*it).tokens[0] == "PivotPoint") {
|
2024-01-30 13:32:41 +00:00
|
|
|
if (nodes.empty()) {
|
2018-04-20 14:23:24 +00:00
|
|
|
ASSIMP_LOG_ERROR("LWS: Unexpected keyword: \'PivotPosition\'");
|
2024-01-30 13:32:41 +00:00
|
|
|
} else {
|
2020-03-01 12:15:45 +00:00
|
|
|
c = fast_atoreal_move<float>(c, (float &)nodes.back().pivotPos.x);
|
2024-01-30 13:32:41 +00:00
|
|
|
SkipSpaces(&c, end);
|
2020-03-01 12:15:45 +00:00
|
|
|
c = fast_atoreal_move<float>(c, (float &)nodes.back().pivotPos.y);
|
2024-01-30 13:32:41 +00:00
|
|
|
SkipSpaces(&c, end);
|
2020-03-01 12:15:45 +00:00
|
|
|
c = fast_atoreal_move<float>(c, (float &)nodes.back().pivotPos.z);
|
2015-05-19 03:48:29 +00:00
|
|
|
// Mark pivotPos as set
|
|
|
|
nodes.back().isPivotSet = true;
|
2015-05-19 03:57:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// resolve parenting
|
2020-03-01 12:15:45 +00:00
|
|
|
for (std::list<LWS::NodeDesc>::iterator ndIt = nodes.begin(); ndIt != nodes.end(); ++ndIt) {
|
2015-05-19 03:57:13 +00:00
|
|
|
// check whether there is another node which calls us a parent
|
|
|
|
for (std::list<LWS::NodeDesc>::iterator dit = nodes.begin(); dit != nodes.end(); ++dit) {
|
2020-03-01 12:15:45 +00:00
|
|
|
if (dit != ndIt && *ndIt == (*dit).parent) {
|
2015-05-19 03:57:13 +00:00
|
|
|
if ((*dit).parent_resolved) {
|
|
|
|
// fixme: it's still possible to produce an overflow due to cross references ..
|
2018-04-20 14:23:24 +00:00
|
|
|
ASSIMP_LOG_ERROR("LWS: Found cross reference in scene-graph");
|
2015-05-19 03:57:13 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2020-03-01 12:15:45 +00:00
|
|
|
ndIt->children.push_back(&*dit);
|
|
|
|
(*dit).parent_resolved = &*ndIt;
|
2015-05-19 03:57:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// find out how many nodes have no parent yet
|
|
|
|
unsigned int no_parent = 0;
|
2020-03-01 12:15:45 +00:00
|
|
|
for (std::list<LWS::NodeDesc>::iterator ndIt = nodes.begin(); ndIt != nodes.end(); ++ndIt) {
|
|
|
|
if (!ndIt->parent_resolved) {
|
|
|
|
++no_parent;
|
|
|
|
}
|
2015-05-19 03:57:13 +00:00
|
|
|
}
|
2020-03-01 12:15:45 +00:00
|
|
|
if (!no_parent) {
|
2015-05-19 03:57:13 +00:00
|
|
|
throw DeadlyImportError("LWS: Unable to find scene root node");
|
2020-03-01 12:15:45 +00:00
|
|
|
}
|
2015-05-19 03:57:13 +00:00
|
|
|
|
|
|
|
// Load all subsequent files
|
|
|
|
batch.LoadAll();
|
|
|
|
|
|
|
|
// and build the final output graph by attaching the loaded external
|
|
|
|
// files to ourselves. first build a master graph
|
2020-03-01 12:15:45 +00:00
|
|
|
aiScene *master = new aiScene();
|
|
|
|
aiNode *nd = master->mRootNode = new aiNode();
|
2015-05-19 03:57:13 +00:00
|
|
|
|
|
|
|
// allocate storage for cameras&lights
|
2024-01-30 13:32:41 +00:00
|
|
|
if (num_camera > 0u) {
|
2020-03-01 12:15:45 +00:00
|
|
|
master->mCameras = new aiCamera *[master->mNumCameras = num_camera];
|
2015-05-19 03:57:13 +00:00
|
|
|
}
|
2020-03-01 12:15:45 +00:00
|
|
|
aiCamera **cams = master->mCameras;
|
2015-05-19 03:57:13 +00:00
|
|
|
if (num_light) {
|
2020-03-01 12:15:45 +00:00
|
|
|
master->mLights = new aiLight *[master->mNumLights = num_light];
|
2015-05-19 03:57:13 +00:00
|
|
|
}
|
2020-03-01 12:15:45 +00:00
|
|
|
aiLight **lights = master->mLights;
|
2015-05-19 03:57:13 +00:00
|
|
|
|
|
|
|
std::vector<AttachmentInfo> attach;
|
2020-03-01 12:15:45 +00:00
|
|
|
std::vector<aiNodeAnim *> anims;
|
2015-05-19 03:57:13 +00:00
|
|
|
|
|
|
|
nd->mName.Set("<LWSRoot>");
|
2020-03-01 12:15:45 +00:00
|
|
|
nd->mChildren = new aiNode *[no_parent];
|
|
|
|
for (std::list<LWS::NodeDesc>::iterator ndIt = nodes.begin(); ndIt != nodes.end(); ++ndIt) {
|
|
|
|
if (!ndIt->parent_resolved) {
|
|
|
|
aiNode *ro = nd->mChildren[nd->mNumChildren++] = new aiNode();
|
2015-05-19 03:57:13 +00:00
|
|
|
ro->mParent = nd;
|
|
|
|
|
|
|
|
// ... and build the scene graph. If we encounter object nodes,
|
|
|
|
// add then to our attachment table.
|
2020-03-01 12:15:45 +00:00
|
|
|
BuildGraph(ro, *ndIt, attach, batch, cams, lights, anims);
|
2015-05-19 03:57:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// create a master animation channel for us
|
|
|
|
if (anims.size()) {
|
2020-03-01 12:15:45 +00:00
|
|
|
master->mAnimations = new aiAnimation *[master->mNumAnimations = 1];
|
|
|
|
aiAnimation *anim = master->mAnimations[0] = new aiAnimation();
|
2015-05-19 03:57:13 +00:00
|
|
|
anim->mName.Set("LWSMasterAnim");
|
|
|
|
|
|
|
|
// LWS uses seconds as time units, but we convert to frames
|
|
|
|
anim->mTicksPerSecond = fps;
|
2020-03-01 12:15:45 +00:00
|
|
|
anim->mDuration = last - (first - 1); /* fixme ... zero or one-based?*/
|
2015-05-19 03:57:13 +00:00
|
|
|
|
2020-03-01 12:15:45 +00:00
|
|
|
anim->mChannels = new aiNodeAnim *[anim->mNumChannels = static_cast<unsigned int>(anims.size())];
|
|
|
|
std::copy(anims.begin(), anims.end(), anim->mChannels);
|
2015-05-19 03:57:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// convert the master scene to RH
|
|
|
|
MakeLeftHandedProcess monster_cheat;
|
|
|
|
monster_cheat.Execute(master);
|
|
|
|
|
|
|
|
// .. ccw
|
|
|
|
FlipWindingOrderProcess flipper;
|
|
|
|
flipper.Execute(master);
|
|
|
|
|
|
|
|
// OK ... finally build the output graph
|
2020-03-01 12:15:45 +00:00
|
|
|
SceneCombiner::MergeScenes(&pScene, master, attach,
|
|
|
|
AI_INT_MERGE_SCENE_GEN_UNIQUE_NAMES | (!configSpeedFlag ? (
|
|
|
|
AI_INT_MERGE_SCENE_GEN_UNIQUE_NAMES_IF_NECESSARY | AI_INT_MERGE_SCENE_GEN_UNIQUE_MATNAMES) :
|
|
|
|
0));
|
2015-05-19 03:57:13 +00:00
|
|
|
|
|
|
|
// Check flags
|
|
|
|
if (!pScene->mNumMeshes || !pScene->mNumMaterials) {
|
|
|
|
pScene->mFlags |= AI_SCENE_FLAGS_INCOMPLETE;
|
|
|
|
|
|
|
|
if (pScene->mNumAnimations && !noSkeletonMesh) {
|
|
|
|
// construct skeleton mesh
|
|
|
|
SkeletonMeshBuilder builder(pScene);
|
|
|
|
}
|
|
|
|
}
|
2015-05-19 03:48:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // !! ASSIMP_BUILD_NO_LWS_IMPORTER
|