| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297 |
- #include "Base.h"
- #include "Package.h"
- #include "FileSystem.h"
- #include "MeshPart.h"
- #include "Scene.h"
- #include "SceneLoader.h"
- #include "Joint.h"
- #define GPB_PACKAGE_VERSION_MAJOR 1
- #define GPB_PACKAGE_VERSION_MINOR 1
- #define PACKAGE_TYPE_SCENE 1
- #define PACKAGE_TYPE_NODE 2
- #define PACKAGE_TYPE_ANIMATIONS 3
- #define PACKAGE_TYPE_ANIMATION 4
- #define PACKAGE_TYPE_ANIMATION_CHANNEL 5
- #define PACKAGE_TYPE_MMODEL 10
- #define PACKAGE_TYPE_MATERIAL 16
- #define PACKAGE_TYPE_EFFECT 18
- #define PACKAGE_TYPE_CAMERA 32
- #define PACKAGE_TYPE_LIGHT 33
- #define PACKAGE_TYPE_MESH 34
- #define PACKAGE_TYPE_MESHPART 35
- #define PACKAGE_TYPE_MESHSKIN 36
- #define PACKAGE_TYPE_FONT 128
- // For sanity checking string reads
- #define PACKAGE_MAX_STRING_LENGTH 5000
- namespace gameplay
- {
- static std::vector<Package*> __packageCache;
- Package::Package(const char* path) :
- _path(path), _referenceCount(0), _references(NULL), _file(NULL)
- {
- }
- Package::~Package()
- {
- clearLoadSession();
- // Remove this Package from the cache
- std::vector<Package*>::iterator itr = std::find(__packageCache.begin(), __packageCache.end(), this);
- if (itr != __packageCache.end())
- {
- __packageCache.erase(itr);
- }
- SAFE_DELETE_ARRAY(_references);
- if (_file)
- {
- fclose(_file);
- _file = NULL;
- }
- }
- template <class T>
- bool Package::readArray(unsigned int* length, T** ptr)
- {
- if (!read(length))
- {
- return false;
- }
- if (*length > 0)
- {
- *ptr = new T[*length];
- if (fread(*ptr, sizeof(T), *length, _file) != *length)
- {
- SAFE_DELETE_ARRAY(*ptr);
- return false;
- }
- }
- return true;
- }
- template <class T>
- bool Package::readArray(unsigned int* length, std::vector<T>* values)
- {
- if (!read(length))
- {
- return false;
- }
- if (*length > 0 && values)
- {
- values->resize(*length);
- if (fread(&(*values)[0], sizeof(T), *length, _file) != *length)
- {
- return false;
- }
- }
- return true;
- }
- template <class T>
- bool Package::readArray(unsigned int* length, std::vector<T>* values, unsigned int readSize)
- {
- assert(sizeof(T) >= readSize);
- if (!read(length))
- {
- return false;
- }
- if (*length > 0 && values)
- {
- values->resize(*length);
- if (fread(&(*values)[0], readSize, *length, _file) != *length)
- {
- return false;
- }
- }
- return true;
- }
- std::string readString(FILE* fp)
- {
- unsigned int length;
- if (fread(&length, 4, 1, fp) != 1)
- {
- return std::string();
- }
- // Sanity check to detect if string length is far too big
- assert(length < PACKAGE_MAX_STRING_LENGTH);
- std::string str;
- if (length > 0)
- {
- str.resize(length);
- if (fread(&str[0], 1, length, fp) != length)
- {
- return std::string();
- }
- }
- return str;
- }
- Package* Package::create(const char* path)
- {
- // Search the cache for this package
- for (unsigned int i = 0, count = __packageCache.size(); i < count; ++i)
- {
- Package* p = __packageCache[i];
- if (p->_path == path)
- {
- // Found a match
- p->addRef();
- return p;
- }
- }
- // Open the package
- FILE* fp = FileSystem::openFile(path, "rb");
- if (!fp)
- {
- WARN_VARG("Failed to open file: '%s'.", path);
- return NULL;
- }
- // Read the GPG header info
- char sig[9];
- if (fread(sig, 1, 9, fp) != 9 || memcmp(sig, "«GPB»\r\n\x1A\n", 9) != 0)
- {
- LOG_ERROR_VARG("Invalid package header: %s", path);
- fclose(fp);
- return NULL;
- }
- // Read version
- unsigned char ver[2];
- if (fread(ver, 1, 2, fp) != 2 || ver[0] != GPB_PACKAGE_VERSION_MAJOR || ver[1] != GPB_PACKAGE_VERSION_MINOR)
- {
- LOG_ERROR_VARG("Unsupported version (%d.%d) for package: %s (expected %d.%d)", (int)ver[0], (int)ver[1], path, GPB_PACKAGE_VERSION_MAJOR, GPB_PACKAGE_VERSION_MINOR);
- fclose(fp);
- return NULL;
- }
- // Read ref table
- unsigned int refCount;
- if (fread(&refCount, 4, 1, fp) != 1)
- {
- fclose(fp);
- return NULL;
- }
- // Read all refs
- Reference* refs = new Reference[refCount];
- for (unsigned int i = 0; i < refCount; ++i)
- {
- if ((refs[i].id = readString(fp)).empty() ||
- fread(&refs[i].type, 4, 1, fp) != 1 ||
- fread(&refs[i].offset, 4, 1, fp) != 1)
- {
- fclose(fp);
- SAFE_DELETE_ARRAY(refs);
- return NULL;
- }
- }
- // Keep file open for faster reading later
- Package* pkg = new Package(path);
- pkg->_referenceCount = refCount;
- pkg->_references = refs;
- pkg->_file = fp;
- return pkg;
- }
- Package::Reference* Package::find(const char* id) const
- {
- // Search the ref table for the given id (case-sensitive)
- for (unsigned int i = 0; i < _referenceCount; ++i)
- {
- if (_references[i].id == id)
- {
- // Found a match
- return &_references[i];
- }
- }
- return NULL;
- }
- void Package::clearLoadSession()
- {
- for (unsigned int i = 0, count = _meshSkins.size(); i < count; ++i)
- {
- SAFE_DELETE(_meshSkins[i]);
- }
- _meshSkins.clear();
- }
- const char* Package::getIdFromOffset() const
- {
- return getIdFromOffset((unsigned int) ftell(_file));
- }
- const char* Package::getIdFromOffset(unsigned int offset) const
- {
- // Search the ref table for the given offset
- if (offset > 0)
- {
- for (unsigned int i = 0; i < _referenceCount; ++i)
- {
- if (_references[i].offset == offset && _references[i].id.length() > 0)
- {
- return _references[i].id.c_str();
- }
- }
- }
- return NULL;
- }
- Package::Reference* Package::seekTo(const char* id, unsigned int type)
- {
- Reference* ref = find(id);
- if (ref == NULL)
- {
- LOG_ERROR_VARG("No object with name '%s' in package '%s'.", id, _path.c_str());
- return NULL;
- }
- if (ref->type != type)
- {
- LOG_ERROR_VARG("Object '%s' in package '%s' has type %d (expected type %d).", id, _path.c_str(), (int)ref->type, (int)type);
- return NULL;
- }
- // Seek to the offset of this object
- if (fseek(_file, ref->offset, SEEK_SET) != 0)
- {
- LOG_ERROR_VARG("Failed to seek to object '%s' in package '%s'.", id, _path.c_str());
- return NULL;
- }
- return ref;
- }
- Package::Reference* Package::seekToFirstType(unsigned int type)
- {
- // for each Reference
- for (unsigned int i = 0; i < _referenceCount; ++i)
- {
- Reference* ref = &_references[i];
- if (ref->type == type)
- {
- // Found a match
- if (fseek(_file, ref->offset, SEEK_SET) != 0)
- {
- LOG_ERROR_VARG("Failed to seek to object '%s' in package '%s'.", ref->id.c_str(), _path.c_str());
- return NULL;
- }
- return ref;
- }
- }
- return NULL;
- }
- bool Package::read(unsigned int* ptr)
- {
- return fread(ptr, sizeof(unsigned int), 1, _file) == 1;
- }
- bool Package::read(unsigned char* ptr)
- {
- return fread(ptr, sizeof(unsigned char), 1, _file) == 1;
- }
- bool Package::read(float* ptr)
- {
- return fread(ptr, sizeof(float), 1, _file) == 1;
- }
- bool Package::readMatrix(float* m)
- {
- return (fread(m, sizeof(float), 16, _file) == 16);
- }
- Scene* Package::loadScene(const char* id)
- {
- return loadScene(id, NULL);
- }
- Scene* Package::loadScene(const char* id, const std::vector<std::string>* nodesWithMeshRB)
- {
- clearLoadSession();
- Reference* ref = NULL;
- if (id)
- {
- ref = seekTo(id, PACKAGE_TYPE_SCENE);
- }
- else
- {
- ref = seekToFirstType(PACKAGE_TYPE_SCENE);
- }
- if (!ref)
- {
- return NULL;
- }
- Scene* scene = Scene::createScene();
- scene->setId(getIdFromOffset());
- // Read the number of children
- unsigned int childrenCount;
- if (!read(&childrenCount))
- {
- SAFE_RELEASE(scene);
- return NULL;
- }
- if (childrenCount > 0)
- {
- // Read each child directly into the scene
- for (unsigned int i = 0; i < childrenCount; i++)
- {
- Node* node = readNode(scene, NULL, nodesWithMeshRB);
- if (node)
- {
- scene->addNode(node);
- node->release(); // scene now owns node
- }
- }
- }
- // Read active camera
- std::string xref = readString(_file);
- if (xref.length() > 1 && xref[0] == '#') // TODO: Handle full xrefs
- {
- Node* node = scene->findNode(xref.c_str() + 1, true);
- Camera* camera = node->getCamera();
- assert(camera);
- scene->setActiveCamera(camera);
- }
- // Read ambient color
- float red, blue, green;
- if (!read(&red))
- {
- SAFE_RELEASE(scene);
- LOG_ERROR_VARG("Failed to read scene ambient %s color in pakcage %s", "red", _path.c_str());
- return NULL;
- }
- if (!read(&green))
- {
- SAFE_RELEASE(scene);
- LOG_ERROR_VARG("Failed to read scene ambient %s color in pakcage %s", "green", _path.c_str());
- return NULL;
- }
- if (!read(&blue))
- {
- SAFE_RELEASE(scene);
- LOG_ERROR_VARG("Failed to read scene ambient %s color in pakcage %s", "blue", _path.c_str());
- return NULL;
- }
- scene->setAmbientColor(red, green, blue);
- // parse animations
- for (unsigned int i = 0; i < _referenceCount; ++i)
- {
- Reference* ref = &_references[i];
- if (ref->type == PACKAGE_TYPE_ANIMATIONS)
- {
- // Found a match
- if (fseek(_file, ref->offset, SEEK_SET) != 0)
- {
- LOG_ERROR_VARG("Failed to seek to object '%s' in package '%s'.", ref->id.c_str(), _path.c_str());
- return NULL;
- }
- readAnimations(scene);
- }
- }
- resolveJointReferences(scene, NULL);
- return scene;
- }
- Node* Package::loadNode(const char* id)
- {
- return loadNode(id, false);
- }
- Node* Package::loadNode(const char* id, bool loadWithMeshRBSupport)
- {
- assert(id);
- clearLoadSession();
- Node* node = loadNode(id, NULL, NULL, loadWithMeshRBSupport);
-
- if (node)
- {
- resolveJointReferences(NULL, node);
- }
- return node;
- }
- Node* Package::loadNode(const char* id, Scene* sceneContext, Node* nodeContext, bool loadWithMeshRBSupport)
- {
- assert(id);
- Node* node = NULL;
- // Search the passed in loading contexts (scene/node) first to see
- // if we've already loaded this node during this load session
- if (sceneContext)
- {
- node = sceneContext->findNode(id, true);
- }
- else if (nodeContext)
- {
- node = nodeContext->findNode(id, true);
- }
- if (node == NULL)
- {
- // If not yet found, search the ref table and read
- Reference* ref = seekTo(id, PACKAGE_TYPE_NODE);
- if (ref == NULL)
- {
- return NULL;
- }
- if (loadWithMeshRBSupport)
- {
- std::vector<std::string> nodesWithMeshRBSupport;
- nodesWithMeshRBSupport.push_back(id);
- node = readNode(sceneContext, nodeContext, &nodesWithMeshRBSupport);
- }
- else
- {
- node = readNode(sceneContext, nodeContext, NULL);
- }
- }
- return node;
- }
- Node* Package::readNode(Scene* sceneContext, Node* nodeContext, const std::vector<std::string>* nodesWithMeshRB)
- {
- const char* id = getIdFromOffset();
- // Read node type
- unsigned int nodeType;
- if (!read(&nodeType))
- {
- return NULL;
- }
- Node* node = NULL;
- switch (nodeType)
- {
- case Node::NODE:
- node = Node::create(id);
- break;
- case Node::JOINT:
- node = Joint::create(id);
- break;
- default:
- return NULL;
- }
- // If no loading context is set, set this node to the loading context
- if (sceneContext == NULL && nodeContext == NULL)
- {
- nodeContext = node;
- }
- // Read transform
- float transform[16];
- if (fread(transform, sizeof(float), 16, _file) != 16)
- {
- SAFE_RELEASE(node);
- return NULL;
- }
- setTransform(transform, node);
- // Read children
- unsigned int childrenCount;
- if (!read(&childrenCount))
- {
- SAFE_RELEASE(node);
- return NULL;
- }
- if (childrenCount > 0)
- {
- // Read each child
- for (unsigned int i = 0; i < childrenCount; i++)
- {
- Node* child = readNode(sceneContext, nodeContext, nodesWithMeshRB);
- if (child)
- {
- node->addChild(child);
- child->release(); // 'node' now owns this child
- }
- }
- }
- // Read camera
- Camera* camera = readCamera();
- if (camera)
- {
- node->setCamera(camera);
- SAFE_RELEASE(camera);
- }
- // Read light
- Light* light = readLight();
- if (light)
- {
- node->setLight(light);
- SAFE_RELEASE(light);
- }
- // Check if this node's id is in the list of nodes to be loaded with
- // mesh rigid body support so that when we load the model we keep the proper data.
- bool loadWithMeshRBSupport = false;
- if (nodesWithMeshRB)
- {
- for (unsigned int i = 0; i < nodesWithMeshRB->size(); i++)
- {
- if (strcmp((*nodesWithMeshRB)[i].c_str(), id) == 0)
- {
- loadWithMeshRBSupport = true;
- break;
- }
- }
- }
- // Read model
- Model* model = readModel(sceneContext, nodeContext, loadWithMeshRBSupport, node->getId());
- if (model)
- {
- node->setModel(model);
- SAFE_RELEASE(model);
- }
- return node;
- }
- Camera* Package::readCamera()
- {
- unsigned char cameraType;
- if (!read(&cameraType))
- {
- LOG_ERROR_VARG("Failed to load camera type in package '%s'.", _path.c_str());
- }
- if (cameraType == 0)
- {
- return NULL;
- }
- // aspect ratio
- float aspectRatio;
- if (!read(&aspectRatio))
- {
- LOG_ERROR_VARG("Failed to load camera aspectRatio in package '%s'.", _path.c_str());
- }
- // near plane
- float nearPlane;
- if (!read(&nearPlane))
- {
- LOG_ERROR_VARG("Failed to load camera near plane in package '%s'.", _path.c_str());
- }
- // far plane
- float farPlane;
- if (!read(&farPlane))
- {
- LOG_ERROR_VARG("Failed to load camera far plane in package '%s'.", _path.c_str());
- }
- Camera* camera = NULL;
- if (cameraType == Camera::PERSPECTIVE)
- {
- // field of view
- float fieldOfView;
- if (!read(&fieldOfView))
- {
- LOG_ERROR_VARG("Failed to load camera field of view in package '%s'.", _path.c_str());
- }
- camera = Camera::createPerspective(fieldOfView, aspectRatio, nearPlane, farPlane);
- }
- else if (cameraType == Camera::ORTHOGRAPHIC)
- {
- // magnification
- float zoomX;
- if (!read(&zoomX))
- {
- LOG_ERROR_VARG("Failed to load camera zoomX in package '%s'.", _path.c_str());
- }
- float zoomY;
- if (!read(&zoomY))
- {
- LOG_ERROR_VARG("Failed to load camera zoomY in package '%s'.", _path.c_str());
- }
- camera = Camera::createOrthographic(zoomX, zoomY, aspectRatio, nearPlane, farPlane);
- }
- else
- {
- LOG_ERROR_VARG("Failed to load camera type in package '%s'. Invalid camera type.", _path.c_str());
- }
- return camera;
- }
- Light* Package::readLight()
- {
- unsigned char type;
- if (!read(&type))
- {
- LOG_ERROR_VARG("Failed to load light %s in package '%s'.", "type", _path.c_str());
- }
- if (type == 0)
- {
- return NULL;
- }
- // read color
- float red, blue, green;
- if (!read(&red) || !read(&blue) || !read(&green))
- {
- LOG_ERROR_VARG("Failed to load light %s in package '%s'.", "color", _path.c_str());
- }
- Vector3 color(red, blue, green);
- Light* light = NULL;
- if (type == Light::DIRECTIONAL)
- {
- light = Light::createDirectional(color);
- }
- else if (type == Light::POINT)
- {
- float range;
- if (!read(&range))
- {
- LOG_ERROR_VARG("Failed to load point light %s in package '%s'.", "point", _path.c_str());
- }
- light = Light::createPoint(color, range);
- }
- else if (type == Light::SPOT)
- {
- float range, innerAngle, outerAngle;
- if (!read(&range) || !read(&innerAngle) || !read(&outerAngle))
- {
- LOG_ERROR_VARG("Failed to load spot light %s in package '%s'.", "spot", _path.c_str());
- }
- light = Light::createSpot(color, range, innerAngle, outerAngle);
- }
- else
- {
- LOG_ERROR_VARG("Failed to load light %s in package '%s'.", "type", _path.c_str());
- }
- return light;
- }
- Model* Package::readModel(Scene* sceneContext, Node* nodeContext, bool loadWithMeshRBSupport, const char* nodeId)
- {
- // Read mesh
- Mesh* mesh = NULL;
- std::string xref = readString(_file);
- if (xref.length() > 1 && xref[0] == '#') // TODO: Handle full xrefs
- {
- mesh = loadMesh(xref.c_str() + 1, loadWithMeshRBSupport, nodeId);
- if (mesh)
- {
- Model* model = Model::create(mesh);
- SAFE_RELEASE(mesh);
- // Read skin
- unsigned char hasSkin;
- if (!read(&hasSkin))
- {
- LOG_ERROR_VARG("Failed to load hasSkin in package '%s'.", _path.c_str());
- return NULL;
- }
- if (hasSkin)
- {
- MeshSkin* skin = readMeshSkin(sceneContext, nodeContext);
- if (skin)
- {
- model->setSkin(skin);
- }
- }
- // Read material
- unsigned int materialCount;
- if (!read(&materialCount))
- {
- LOG_ERROR_VARG("Failed to load materialCount in package '%s'.", _path.c_str());
- return NULL;
- }
- if (materialCount > 0)
- {
- // TODO: Material loading not supported yet
- }
- return model;
- }
- }
- return NULL;
- }
- MeshSkin* Package::readMeshSkin(Scene* sceneContext, Node* nodeContext)
- {
- MeshSkin* meshSkin = new MeshSkin();
- // Read bindShape
- float bindShape[16];
- if (!readMatrix(bindShape))
- {
- LOG_ERROR_VARG("Failed to load MeshSkin in package '%s'.", _path.c_str());
- SAFE_DELETE(meshSkin);
- return NULL;
- }
- meshSkin->setBindShape(bindShape);
- MeshSkinData* skinData = new MeshSkinData();
- skinData->skin = meshSkin;
- // Read joint count
- unsigned int jointCount;
- if (!read(&jointCount))
- {
- LOG_ERROR_VARG("Failed to load MeshSkin in package '%s'.", _path.c_str());
- SAFE_DELETE(meshSkin);
- SAFE_DELETE(skinData);
- return NULL;
- }
- if (jointCount == 0)
- {
- SAFE_DELETE(meshSkin);
- SAFE_DELETE(skinData);
- return NULL;
- }
- meshSkin->setJointCount(jointCount);
- // Read joint xref strings for all joints in the list
- for (unsigned int i = 0; i < jointCount; i++)
- {
- skinData->joints.push_back(readString(_file));
- }
- // read bindposes
- unsigned int jointsBindPosesCount;
- if (!read(&jointsBindPosesCount))
- {
- LOG_ERROR_VARG("Failed to load MeshSkin in package '%s'.", _path.c_str());
- SAFE_DELETE(meshSkin);
- SAFE_DELETE(skinData);
- return NULL;
- }
- if (jointsBindPosesCount > 0)
- {
- assert(jointCount * 16 == jointsBindPosesCount);
- float m[16];
- for (unsigned int i = 0; i < jointCount; i++)
- {
- if (!readMatrix(m))
- {
- LOG_ERROR_VARG("Failed to load MeshSkin in package '%s'.", _path.c_str());
- SAFE_DELETE(meshSkin);
- SAFE_DELETE(skinData);
- return NULL;
- }
- skinData->inverseBindPoseMatrices.push_back(m);
- }
- }
- // Store the MeshSkinData so we can go back and resolve all joint references later
- _meshSkins.push_back(skinData);
- return meshSkin;
- }
- void Package::resolveJointReferences(Scene* sceneContext, Node* nodeContext)
- {
- const unsigned int skinCount = _meshSkins.size();
- for (unsigned int i = 0; i < skinCount; ++i)
- {
- MeshSkinData* skinData = _meshSkins[i];
- // Resolve all joints in skin joint list
- const unsigned int jointCount = skinData->joints.size();
- for (unsigned int j = 0; j < jointCount; ++j)
- {
- // TODO: Handle full xrefs (not just local # xrefs)
- std::string jointId = skinData->joints[j];
- if (jointId.length() > 1 && jointId[0] == '#')
- {
- jointId = jointId.substr(1, jointId.length() - 1);
- Node* n = loadNode(jointId.c_str(), sceneContext, nodeContext, false);
- if (n && n->getType() == Node::JOINT)
- {
- Joint* joint = static_cast<Joint*>(n);
- joint->setInverseBindPose(skinData->inverseBindPoseMatrices[j]);
- skinData->skin->setJoint(joint, j);
- }
- }
- }
- // Set the root joint
- if (jointCount > 0)
- {
- Joint* rootJoint = skinData->skin->getJoint((unsigned int)0);
- Node* parent = rootJoint->getParent();
- while (parent)
- {
- if (skinData->skin->getJointIndex(static_cast<Joint*>(parent)) != -1)
- {
- // Parent is a joint in the MeshSkin, so treat it as the new root
- rootJoint = static_cast<Joint*>(parent);
- }
- parent = parent->getParent();
- }
- skinData->skin->setRootJoint(rootJoint);
- }
- // Done with this MeshSkinData entry
- SAFE_DELETE(_meshSkins[i]);
- }
- _meshSkins.clear();
- }
- void Package::readAnimation(Scene* scene)
- {
- const std::string animationId = readString(_file);
- // read the number of animation channels in this animation
- unsigned int animationChannelCount;
- if (!read(&animationChannelCount))
- {
- LOG_ERROR_VARG("Failed to read %s for %s: %s", "animationChannelCount", "animation", animationId.c_str());
- return;
- }
- Animation* animation = NULL;
- for (unsigned int i = 0; i < animationChannelCount; i++)
- {
- animation = readAnimationChannel(scene, animation, animationId.c_str());
- }
- }
- void Package::readAnimations(Scene* scene)
- {
- // read the number of animations in this object
- unsigned int animationCount;
- if (!read(&animationCount))
- {
- LOG_ERROR_VARG("Failed to read %s for %s: %s", "animationCount", "Animations");
- return;
- }
- for (unsigned int i = 0; i < animationCount; i++)
- {
- readAnimation(scene);
- }
- }
- Animation* Package::readAnimationChannel(Scene* scene, Animation* animation, const char* animationId)
- {
- const char* id = animationId;
- // read targetId
- std::string targetId = readString(_file);
- if (targetId.empty())
- {
- LOG_ERROR_VARG("Failed to read %s for %s: %s", "targetId", "animation", id);
- return NULL;
- }
- // read target attribute
- unsigned int targetAttribute;
- if (!read(&targetAttribute))
- {
- LOG_ERROR_VARG("Failed to read %s for %s: %s", "targetAttribute", "animation", id);
- return NULL;
- }
- //long position = ftell(_file);
- //fseek(_file, position, SEEK_SET);
- AnimationTarget* target = NULL;
- // Search for a node that matches target
- if (!target)
- {
- target = scene->findNode(targetId.c_str());
- if (!target)
- {
- LOG_ERROR_VARG("Failed to read %s for %s: %s", "animation target", targetId.c_str(), id);
- return NULL;
- }
- }
- std::vector<unsigned long> keyTimes;
- std::vector<float> values;
- std::vector<float> tangentsIn;
- std::vector<float> tangentsOut;
- std::vector<unsigned long> interpolation;
- // length of the arrays
- unsigned int keyTimesCount;
- unsigned int valuesCount;
- unsigned int tangentsInCount;
- unsigned int tangentsOutCount;
- unsigned int interpolationCount;
- // read key times
- if (!readArray(&keyTimesCount, &keyTimes, sizeof(unsigned int)))
- {
- LOG_ERROR_VARG("Failed to read %s for %s: %s", "keyTimes", "animation", id);
- return NULL;
- }
-
- // read key values
- if (!readArray(&valuesCount, &values))
- {
- LOG_ERROR_VARG("Failed to read %s for %s: %s", "values", "animation", id);
- return NULL;
- }
-
- // read tangentsIn
- if (!readArray(&tangentsInCount, &tangentsIn))
- {
- LOG_ERROR_VARG("Failed to read %s for %s: %s", "tangentsIn", "animation", id);
- return NULL;
- }
-
- // read tangent_out
- if (!readArray(&tangentsOutCount, &tangentsOut))
- {
- LOG_ERROR_VARG("Failed to read %s for %s: %s", "tangentsOut", "animation", id);
- return NULL;
- }
-
- // read interpolations
- if (!readArray(&interpolationCount, &interpolation, sizeof(unsigned int)))
- {
- LOG_ERROR_VARG("Failed to read %s for %s: %s", "interpolation", "animation", id);
- return NULL;
- }
- Game* game = Game::getInstance();
- AnimationController* controller = game->getAnimationController();
- // TODO: Handle other target attributes later.
- if (targetAttribute > 0)
- {
- assert(keyTimes.size() > 0 && values.size() > 0);
- if (animation == NULL)
- {
- // TODO: This code currently assumes LINEAR only
- animation = controller->createAnimation(animationId, target, targetAttribute, keyTimesCount, &keyTimes[0], &values[0], Curve::LINEAR);
- }
- else
- {
- animation->createChannel(target, targetAttribute, keyTimesCount, &keyTimes[0], &values[0], Curve::LINEAR);
- }
- }
- return animation;
- }
- Mesh* Package::loadMesh(const char* id)
- {
- return loadMesh(id, false, NULL);
- }
- Mesh* Package::loadMesh(const char* id, bool loadWithMeshRBSupport, const char* nodeId)
- {
- // save the file position
- long position = ftell(_file);
- // Seek to the specified Mesh
- Reference* ref = seekTo(id, PACKAGE_TYPE_MESH);
- if (ref == NULL)
- {
- return NULL;
- }
- // Read vertex format/elements
- unsigned int vertexElementCount;
- if (fread(&vertexElementCount, 4, 1, _file) != 1 || vertexElementCount < 1)
- {
- return NULL;
- }
- VertexFormat::Element* vertexElements = new VertexFormat::Element[vertexElementCount];
- for (unsigned int i = 0; i < vertexElementCount; ++i)
- {
- unsigned int vUsage, vSize;
- if (fread(&vUsage, 4, 1, _file) != 1 || fread(&vSize, 4, 1, _file) != 1)
- {
- SAFE_DELETE_ARRAY(vertexElements);
- return NULL;
- }
- vertexElements[i].usage = (VertexFormat::Usage)vUsage;
- vertexElements[i].size = vSize;
- }
- // Create VertexFormat
- VertexFormat vertexFormat(vertexElements, vertexElementCount);
- SAFE_DELETE_ARRAY(vertexElements);
- // Read vertex data
- unsigned int vertexByteCount;
- if (fread(&vertexByteCount, 4, 1, _file) != 1 || vertexByteCount == 0)
- {
- return NULL;
- }
- unsigned char* vertexData = new unsigned char[vertexByteCount];
- if (fread(vertexData, 1, vertexByteCount, _file) != vertexByteCount)
- {
- LOG_ERROR_VARG("Failed to read %d vertex data bytes for mesh: %s", vertexByteCount, id);
- return NULL;
- }
- // Read mesh bounds (bounding box and bounding sphere)
- Vector3 boundsMin, boundsMax, boundsCenter;
- float boundsRadius = 0.0f;
- if (fread(&boundsMin.x, 4, 3, _file) != 3 || fread(&boundsMax.x, 4, 3, _file) != 3)
- {
- LOG_ERROR_VARG("Failed to read bounding box for mesh: %s", id);
- return NULL;
- }
- if (fread(&boundsCenter.x, 4, 3, _file) != 3 || fread(&boundsRadius, 4, 1, _file) != 1)
- {
- LOG_ERROR_VARG("Failed to read bounding sphere for mesh: %s", id);
- return NULL;
- }
- // Create Mesh
- int vertexCount = vertexByteCount / vertexFormat.getVertexSize();
- Mesh* mesh = Mesh::createMesh(vertexFormat, vertexCount, false);
- if (mesh == NULL)
- {
- LOG_ERROR_VARG("Failed to create mesh: %s", id);
- SAFE_DELETE_ARRAY(vertexData);
- return NULL;
- }
- mesh->setVertexData(vertexData, 0, vertexCount);
- if (loadWithMeshRBSupport)
- SceneLoader::addMeshRigidBodyData(_path, nodeId, mesh, vertexData, vertexByteCount);
- SAFE_DELETE_ARRAY(vertexData);
- // Set mesh bounding volumes
- mesh->_boundingBox.set(boundsMin, boundsMax);
- mesh->_boundingSphere.set(boundsCenter, boundsRadius);
- // Read mesh parts
- unsigned int meshPartCount;
- if (fread(&meshPartCount, 4, 1, _file) != 1)
- {
- SAFE_RELEASE(mesh);
- return NULL;
- }
- for (unsigned int i = 0; i < meshPartCount; ++i)
- {
- // Read primitive type, index format and index count
- unsigned int pType, iFormat, iByteCount;
- if (fread(&pType, 4, 1, _file) != 1 ||
- fread(&iFormat, 4, 1, _file) != 1 ||
- fread(&iByteCount, 4, 1, _file) != 1)
- {
- LOG_ERROR_VARG("Failed to read mesh part (i=%d): %s", i, id);
- SAFE_RELEASE(mesh);
- return NULL;
- }
- unsigned char* indexData = new unsigned char[iByteCount];
- if (fread(indexData, 1, iByteCount, _file) != iByteCount)
- {
- LOG_ERROR_VARG("Failed to read %d index data bytes for mesh part (i=%d): %s", iByteCount, i, id);
- SAFE_DELETE_ARRAY(indexData);
- SAFE_RELEASE(mesh);
- return NULL;
- }
- Mesh::IndexFormat indexFormat = (Mesh::IndexFormat)iFormat;
- unsigned int indexSize = 0;
- switch (indexFormat)
- {
- case Mesh::INDEX8:
- indexSize = 1;
- break;
- case Mesh::INDEX16:
- indexSize = 2;
- break;
- case Mesh::INDEX32:
- indexSize = 4;
- break;
- }
- unsigned int indexCount = iByteCount / indexSize;
- MeshPart* part = mesh->addPart((Mesh::PrimitiveType)pType, indexFormat, indexCount, false);
- if (part == NULL)
- {
- LOG_ERROR_VARG("Failed to create mesh part (i=%d): %s", i, id);
- SAFE_DELETE_ARRAY(indexData);
- SAFE_RELEASE(mesh);
- return NULL;
- }
- part->setIndexData(indexData, 0, indexCount);
- if (loadWithMeshRBSupport)
- SceneLoader::addMeshRigidBodyData(_path, nodeId, indexData, iByteCount);
- SAFE_DELETE_ARRAY(indexData);
- }
- fseek(_file, position, SEEK_SET);
- return mesh;
- }
- Font* Package::loadFont(const char* id)
- {
- // Seek to the specified Font
- Reference* ref = seekTo(id, PACKAGE_TYPE_FONT);
- if (ref == NULL)
- {
- return NULL;
- }
- // Read font family
- std::string family = readString(_file);
- if (family.empty())
- {
- LOG_ERROR_VARG("Failed to read font family for font: %s", id);
- return NULL;
- }
- // Read font style and size
- unsigned int style, size;
- if (fread(&style, 4, 1, _file) != 1 ||
- fread(&size, 4, 1, _file) != 1)
- {
- LOG_ERROR_VARG("Failed to read style and/or size for font: %s", id);
- return NULL;
- }
- // Read character set
- std::string charset = readString(_file);
- // Read font glyphs
- unsigned int glyphCount;
- if (fread(&glyphCount, 4, 1, _file) != 1 || glyphCount == 0)
- {
- LOG_ERROR_VARG("Failed to read glyph count for font: %s", id);
- return NULL;
- }
- Font::Glyph* glyphs = new Font::Glyph[glyphCount];
- if (fread(glyphs, sizeof(Font::Glyph), glyphCount, _file) != glyphCount)
- {
- LOG_ERROR_VARG("Failed to read %d glyphs for font: %s", glyphCount, id);
- SAFE_DELETE_ARRAY(glyphs);
- return NULL;
- }
- // Read texture
- unsigned int width, height, textureByteCount;
- if (fread(&width, 4, 1, _file) != 1 ||
- fread(&height, 4, 1, _file) != 1 ||
- fread(&textureByteCount, 4, 1, _file) != 1)
- {
- LOG_ERROR_VARG("Failed to read texture attributes for font: %s", id);
- SAFE_DELETE_ARRAY(glyphs);
- return NULL;
- }
- if (textureByteCount != (width * height))
- {
- LOG_ERROR_VARG("Invalid texture byte for font: %s", id);
- SAFE_DELETE_ARRAY(glyphs);
- return NULL;
- }
- unsigned char* textureData = new unsigned char[textureByteCount];
- if (fread(textureData, 1, textureByteCount, _file) != textureByteCount)
- {
- LOG_ERROR_VARG("Failed to read %d texture bytes for font: %s", textureByteCount, id);
- SAFE_DELETE_ARRAY(glyphs);
- SAFE_DELETE_ARRAY(textureData);
- return NULL;
- }
- // Load the texture for the font
- Texture* texture = Texture::create(Texture::ALPHA, width, height, textureData, true);
- // Free the texture data (no longer needed)
- SAFE_DELETE_ARRAY(textureData);
- if (texture == NULL)
- {
- LOG_ERROR_VARG("Failed to create texture for font: %s", id);
- SAFE_DELETE_ARRAY(glyphs);
- return NULL;
- }
- // Create the font
- Font* font = Font::create(family.c_str(), Font::PLAIN, size, glyphs, glyphCount, texture);
- // Free the glyph array
- SAFE_DELETE_ARRAY(glyphs);
- // Release the texture since the Font now owns it
- SAFE_RELEASE(texture);
- if (font)
- {
- font->_path = _path;
- font->_id = id;
- }
- return font;
- }
- void Package::setTransform(const float* values, Transform* transform)
- {
- // Load array into transform
- Matrix matrix(values);
- Vector3 scale, translation;
- Quaternion rotation;
- matrix.decompose(&scale, &rotation, &translation);
- transform->setScale(scale);
- transform->setTranslation(translation);
- transform->setRotation(rotation);
- }
- bool Package::contains(const char* id) const
- {
- return (find(id) != NULL);
- }
- unsigned int Package::getObjectCount() const
- {
- return _referenceCount;
- }
- const char* Package::getObjectID(unsigned int index) const
- {
- return (index >= _referenceCount ? NULL : _references[index].id.c_str());
- }
- Package::Reference::Reference() :
- type(0), offset(0)
- {
- }
- Package::Reference::~Reference()
- {
- }
- }
|