Bundle.cpp 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791
  1. #include "Base.h"
  2. #include "Bundle.h"
  3. #include "FileSystem.h"
  4. #include "MeshPart.h"
  5. #include "Scene.h"
  6. #include "Joint.h"
  7. #define BUNDLE_VERSION_MAJOR 1
  8. #define BUNDLE_VERSION_MINOR 2
  9. #define BUNDLE_TYPE_SCENE 1
  10. #define BUNDLE_TYPE_NODE 2
  11. #define BUNDLE_TYPE_ANIMATIONS 3
  12. #define BUNDLE_TYPE_ANIMATION 4
  13. #define BUNDLE_TYPE_ANIMATION_CHANNEL 5
  14. #define BUNDLE_TYPE_MODEL 10
  15. #define BUNDLE_TYPE_MATERIAL 16
  16. #define BUNDLE_TYPE_EFFECT 18
  17. #define BUNDLE_TYPE_CAMERA 32
  18. #define BUNDLE_TYPE_LIGHT 33
  19. #define BUNDLE_TYPE_MESH 34
  20. #define BUNDLE_TYPE_MESHPART 35
  21. #define BUNDLE_TYPE_MESHSKIN 36
  22. #define BUNDLE_TYPE_FONT 128
  23. // For sanity checking string reads
  24. #define BUNDLE_MAX_STRING_LENGTH 5000
  25. namespace gameplay
  26. {
  27. static std::vector<Bundle*> __bundleCache;
  28. Bundle::Bundle(const char* path) :
  29. _path(path), _referenceCount(0), _references(NULL), _file(NULL), _trackedNodes(NULL)
  30. {
  31. }
  32. Bundle::~Bundle()
  33. {
  34. clearLoadSession();
  35. // Remove this Bundle from the cache.
  36. std::vector<Bundle*>::iterator itr = std::find(__bundleCache.begin(), __bundleCache.end(), this);
  37. if (itr != __bundleCache.end())
  38. {
  39. __bundleCache.erase(itr);
  40. }
  41. SAFE_DELETE_ARRAY(_references);
  42. if (_file)
  43. {
  44. fclose(_file);
  45. _file = NULL;
  46. }
  47. }
  48. template <class T>
  49. bool Bundle::readArray(unsigned int* length, T** ptr)
  50. {
  51. GP_ASSERT(length);
  52. GP_ASSERT(ptr);
  53. GP_ASSERT(_file);
  54. if (!read(length))
  55. {
  56. GP_ERROR("Failed to read the length of an array of data (to be read into an array).");
  57. return false;
  58. }
  59. if (*length > 0)
  60. {
  61. *ptr = new T[*length];
  62. if (fread(*ptr, sizeof(T), *length, _file) != *length)
  63. {
  64. GP_ERROR("Failed to read an array of data from bundle (into an array).");
  65. SAFE_DELETE_ARRAY(*ptr);
  66. return false;
  67. }
  68. }
  69. return true;
  70. }
  71. template <class T>
  72. bool Bundle::readArray(unsigned int* length, std::vector<T>* values)
  73. {
  74. GP_ASSERT(length);
  75. GP_ASSERT(_file);
  76. if (!read(length))
  77. {
  78. GP_ERROR("Failed to read the length of an array of data (to be read into a std::vector).");
  79. return false;
  80. }
  81. if (*length > 0 && values)
  82. {
  83. values->resize(*length);
  84. if (fread(&(*values)[0], sizeof(T), *length, _file) != *length)
  85. {
  86. GP_ERROR("Failed to read an array of data from bundle (into a std::vector).");
  87. return false;
  88. }
  89. }
  90. return true;
  91. }
  92. template <class T>
  93. bool Bundle::readArray(unsigned int* length, std::vector<T>* values, unsigned int readSize)
  94. {
  95. GP_ASSERT(length);
  96. GP_ASSERT(_file);
  97. GP_ASSERT(sizeof(T) >= readSize);
  98. if (!read(length))
  99. {
  100. GP_ERROR("Failed to read the length of an array of data (to be read into a std::vector with a specified single element read size).");
  101. return false;
  102. }
  103. if (*length > 0 && values)
  104. {
  105. values->resize(*length);
  106. if (fread(&(*values)[0], readSize, *length, _file) != *length)
  107. {
  108. GP_ERROR("Failed to read an array of data from bundle (into a std::vector with a specified single element read size).");
  109. return false;
  110. }
  111. }
  112. return true;
  113. }
  114. static std::string readString(FILE* fp)
  115. {
  116. GP_ASSERT(fp);
  117. unsigned int length;
  118. if (fread(&length, 4, 1, fp) != 1)
  119. {
  120. GP_ERROR("Failed to read the length of a string from a bundle.");
  121. return std::string();
  122. }
  123. // Sanity check to detect if string length is far too big.
  124. GP_ASSERT(length < BUNDLE_MAX_STRING_LENGTH);
  125. std::string str;
  126. if (length > 0)
  127. {
  128. str.resize(length);
  129. if (fread(&str[0], 1, length, fp) != length)
  130. {
  131. GP_ERROR("Failed to read string from bundle.");
  132. return std::string();
  133. }
  134. }
  135. return str;
  136. }
  137. Bundle* Bundle::create(const char* path)
  138. {
  139. GP_ASSERT(path);
  140. // Search the cache for this bundle.
  141. for (size_t i = 0, count = __bundleCache.size(); i < count; ++i)
  142. {
  143. Bundle* p = __bundleCache[i];
  144. GP_ASSERT(p);
  145. if (p->_path == path)
  146. {
  147. // Found a match
  148. p->addRef();
  149. return p;
  150. }
  151. }
  152. // Open the bundle.
  153. FILE* fp = FileSystem::openFile(path, "rb");
  154. if (!fp)
  155. {
  156. GP_ERROR("Failed to open file '%s'.", path);
  157. return NULL;
  158. }
  159. // Read the GPB header info.
  160. char sig[9];
  161. if (fread(sig, 1, 9, fp) != 9 || memcmp(sig, "\xABGPB\xBB\r\n\x1A\n", 9) != 0)
  162. {
  163. GP_ERROR("Invalid GPB header for bundle '%s'.", path);
  164. if (fclose(fp) != 0)
  165. {
  166. GP_ERROR("Failed to close file '%s'.", path);
  167. }
  168. return NULL;
  169. }
  170. // Read version.
  171. unsigned char ver[2];
  172. if (fread(ver, 1, 2, fp) != 2)
  173. {
  174. GP_ERROR("Failed to read GPB version for bundle '%s'.", path);
  175. if (fclose(fp) != 0)
  176. {
  177. GP_ERROR("Failed to close file '%s'.", path);
  178. }
  179. return NULL;
  180. }
  181. if (ver[0] != BUNDLE_VERSION_MAJOR || ver[1] != BUNDLE_VERSION_MINOR)
  182. {
  183. GP_ERROR("Unsupported version (%d.%d) for bundle '%s' (expected %d.%d).", (int)ver[0], (int)ver[1], path, BUNDLE_VERSION_MAJOR, BUNDLE_VERSION_MINOR);
  184. if (fclose(fp) != 0)
  185. {
  186. GP_ERROR("Failed to close file '%s'.", path);
  187. }
  188. return NULL;
  189. }
  190. // Read ref table.
  191. unsigned int refCount;
  192. if (fread(&refCount, 4, 1, fp) != 1)
  193. {
  194. GP_ERROR("Failed to read ref table for bundle '%s'.", path);
  195. if (fclose(fp) != 0)
  196. {
  197. GP_ERROR("Failed to close file '%s'.", path);
  198. }
  199. return NULL;
  200. }
  201. // Read all refs.
  202. Reference* refs = new Reference[refCount];
  203. for (unsigned int i = 0; i < refCount; ++i)
  204. {
  205. if ((refs[i].id = readString(fp)).empty() ||
  206. fread(&refs[i].type, 4, 1, fp) != 1 ||
  207. fread(&refs[i].offset, 4, 1, fp) != 1)
  208. {
  209. GP_ERROR("Failed to read ref number %d for bundle '%s'.", i, path);
  210. if (fclose(fp) != 0)
  211. {
  212. GP_ERROR("Failed to close file '%s'.", path);
  213. }
  214. SAFE_DELETE_ARRAY(refs);
  215. return NULL;
  216. }
  217. }
  218. // Keep file open for faster reading later.
  219. Bundle* bundle = new Bundle(path);
  220. bundle->_referenceCount = refCount;
  221. bundle->_references = refs;
  222. bundle->_file = fp;
  223. return bundle;
  224. }
  225. Bundle::Reference* Bundle::find(const char* id) const
  226. {
  227. GP_ASSERT(id);
  228. GP_ASSERT(_references);
  229. // Search the ref table for the given id (case-sensitive).
  230. for (unsigned int i = 0; i < _referenceCount; ++i)
  231. {
  232. if (_references[i].id == id)
  233. {
  234. // Found a match
  235. return &_references[i];
  236. }
  237. }
  238. return NULL;
  239. }
  240. void Bundle::clearLoadSession()
  241. {
  242. for (size_t i = 0, count = _meshSkins.size(); i < count; ++i)
  243. {
  244. SAFE_DELETE(_meshSkins[i]);
  245. }
  246. _meshSkins.clear();
  247. }
  248. const char* Bundle::getIdFromOffset() const
  249. {
  250. GP_ASSERT(_file);
  251. return getIdFromOffset((unsigned int) ftell(_file));
  252. }
  253. const char* Bundle::getIdFromOffset(unsigned int offset) const
  254. {
  255. // Search the ref table for the given offset.
  256. if (offset > 0)
  257. {
  258. GP_ASSERT(_references);
  259. for (unsigned int i = 0; i < _referenceCount; ++i)
  260. {
  261. if (_references[i].offset == offset && _references[i].id.length() > 0)
  262. {
  263. return _references[i].id.c_str();
  264. }
  265. }
  266. }
  267. return NULL;
  268. }
  269. Bundle::Reference* Bundle::seekTo(const char* id, unsigned int type)
  270. {
  271. Reference* ref = find(id);
  272. if (ref == NULL)
  273. {
  274. GP_ERROR("No object with name '%s' in bundle '%s'.", id, _path.c_str());
  275. return NULL;
  276. }
  277. if (ref->type != type)
  278. {
  279. GP_ERROR("Object '%s' in bundle '%s' has type %d (expected type %d).", id, _path.c_str(), (int)ref->type, (int)type);
  280. return NULL;
  281. }
  282. // Seek to the offset of this object.
  283. GP_ASSERT(_file);
  284. if (fseek(_file, ref->offset, SEEK_SET) != 0)
  285. {
  286. GP_ERROR("Failed to seek to object '%s' in bundle '%s'.", id, _path.c_str());
  287. return NULL;
  288. }
  289. return ref;
  290. }
  291. Bundle::Reference* Bundle::seekToFirstType(unsigned int type)
  292. {
  293. GP_ASSERT(_references);
  294. GP_ASSERT(_file);
  295. for (unsigned int i = 0; i < _referenceCount; ++i)
  296. {
  297. Reference* ref = &_references[i];
  298. if (ref->type == type)
  299. {
  300. // Found a match.
  301. if (fseek(_file, ref->offset, SEEK_SET) != 0)
  302. {
  303. GP_ERROR("Failed to seek to object '%s' in bundle '%s'.", ref->id.c_str(), _path.c_str());
  304. return NULL;
  305. }
  306. return ref;
  307. }
  308. }
  309. return NULL;
  310. }
  311. bool Bundle::read(unsigned int* ptr)
  312. {
  313. return fread(ptr, sizeof(unsigned int), 1, _file) == 1;
  314. }
  315. bool Bundle::read(unsigned char* ptr)
  316. {
  317. return fread(ptr, sizeof(unsigned char), 1, _file) == 1;
  318. }
  319. bool Bundle::read(float* ptr)
  320. {
  321. return fread(ptr, sizeof(float), 1, _file) == 1;
  322. }
  323. bool Bundle::readMatrix(float* m)
  324. {
  325. return fread(m, sizeof(float), 16, _file) == 16;
  326. }
  327. Scene* Bundle::loadScene(const char* id)
  328. {
  329. clearLoadSession();
  330. Reference* ref = NULL;
  331. if (id)
  332. {
  333. ref = seekTo(id, BUNDLE_TYPE_SCENE);
  334. if (!ref)
  335. {
  336. GP_ERROR("Failed to load scene with id '%s' from bundle.", id);
  337. return NULL;
  338. }
  339. }
  340. else
  341. {
  342. ref = seekToFirstType(BUNDLE_TYPE_SCENE);
  343. if (!ref)
  344. {
  345. GP_ERROR("Failed to load scene from bundle; bundle contains no scene objects.");
  346. return NULL;
  347. }
  348. }
  349. Scene* scene = Scene::create();
  350. scene->setId(getIdFromOffset());
  351. // Read the number of children.
  352. unsigned int childrenCount;
  353. if (!read(&childrenCount))
  354. {
  355. GP_ERROR("Failed to read the scene's number of children.");
  356. SAFE_RELEASE(scene);
  357. return NULL;
  358. }
  359. if (childrenCount > 0)
  360. {
  361. // Read each child directly into the scene.
  362. for (unsigned int i = 0; i < childrenCount; i++)
  363. {
  364. Node* node = readNode(scene, NULL);
  365. if (node)
  366. {
  367. scene->addNode(node);
  368. node->release(); // scene now owns node
  369. }
  370. }
  371. }
  372. // Read active camera.
  373. std::string xref = readString(_file);
  374. if (xref.length() > 1 && xref[0] == '#') // TODO: Handle full xrefs
  375. {
  376. Node* node = scene->findNode(xref.c_str() + 1, true);
  377. GP_ASSERT(node);
  378. Camera* camera = node->getCamera();
  379. GP_ASSERT(camera);
  380. scene->setActiveCamera(camera);
  381. }
  382. // Read ambient color.
  383. float red, blue, green;
  384. if (!read(&red))
  385. {
  386. GP_ERROR("Failed to read red component of the scene's ambient color in bundle '%s'.", _path.c_str());
  387. SAFE_RELEASE(scene);
  388. return NULL;
  389. }
  390. if (!read(&green))
  391. {
  392. GP_ERROR("Failed to read green component of the scene's ambient color in bundle '%s'.", _path.c_str());
  393. SAFE_RELEASE(scene);
  394. return NULL;
  395. }
  396. if (!read(&blue))
  397. {
  398. GP_ERROR("Failed to read blue component of the scene's ambient color in bundle '%s'.", _path.c_str());
  399. SAFE_RELEASE(scene);
  400. return NULL;
  401. }
  402. scene->setAmbientColor(red, green, blue);
  403. // Parse animations.
  404. GP_ASSERT(_references);
  405. GP_ASSERT(_file);
  406. for (unsigned int i = 0; i < _referenceCount; ++i)
  407. {
  408. Reference* ref = &_references[i];
  409. if (ref->type == BUNDLE_TYPE_ANIMATIONS)
  410. {
  411. // Found a match.
  412. if (fseek(_file, ref->offset, SEEK_SET) != 0)
  413. {
  414. GP_ERROR("Failed to seek to object '%s' in bundle '%s'.", ref->id.c_str(), _path.c_str());
  415. return NULL;
  416. }
  417. readAnimations(scene);
  418. }
  419. }
  420. resolveJointReferences(scene, NULL);
  421. return scene;
  422. }
  423. Node* Bundle::loadNode(const char* id)
  424. {
  425. return loadNode(id, NULL);
  426. }
  427. Node* Bundle::loadNode(const char* id, Scene* sceneContext)
  428. {
  429. GP_ASSERT(id);
  430. GP_ASSERT(_references);
  431. GP_ASSERT(_file);
  432. clearLoadSession();
  433. // Load the node and any referenced joints with node tracking enabled.
  434. _trackedNodes = new std::map<std::string, Node*>();
  435. Node* node = loadNode(id, sceneContext, NULL);
  436. if (node)
  437. resolveJointReferences(sceneContext, node);
  438. // Load all animations targeting any nodes or mesh skins under this node's hierarchy.
  439. for (unsigned int i = 0; i < _referenceCount; i++)
  440. {
  441. Reference* ref = &_references[i];
  442. if (ref->type == BUNDLE_TYPE_ANIMATIONS)
  443. {
  444. if (fseek(_file, ref->offset, SEEK_SET) != 0)
  445. {
  446. GP_ERROR("Failed to seek to object '%s' in bundle '%s'.", ref->id.c_str(), _path.c_str());
  447. SAFE_DELETE(_trackedNodes);
  448. return NULL;
  449. }
  450. // Read the number of animations in this object.
  451. unsigned int animationCount;
  452. if (!read(&animationCount))
  453. {
  454. GP_ERROR("Failed to read the number of animations for object '%s'.", ref->id.c_str());
  455. SAFE_DELETE(_trackedNodes);
  456. return NULL;
  457. }
  458. for (unsigned int j = 0; j < animationCount; j++)
  459. {
  460. const std::string id = readString(_file);
  461. // Read the number of animation channels in this animation.
  462. unsigned int animationChannelCount;
  463. if (!read(&animationChannelCount))
  464. {
  465. GP_ERROR("Failed to read the number of animation channels for animation '%s'.", "animationChannelCount", id.c_str());
  466. SAFE_DELETE(_trackedNodes);
  467. return NULL;
  468. }
  469. Animation* animation = NULL;
  470. for (unsigned int k = 0; k < animationChannelCount; k++)
  471. {
  472. // Read target id.
  473. std::string targetId = readString(_file);
  474. if (targetId.empty())
  475. {
  476. GP_ERROR("Failed to read target id for animation '%s'.", id.c_str());
  477. SAFE_DELETE(_trackedNodes);
  478. return NULL;
  479. }
  480. // If the target is one of the loaded nodes/joints, then load the animation.
  481. std::map<std::string, Node*>::iterator iter = _trackedNodes->find(targetId);
  482. if (iter != _trackedNodes->end())
  483. {
  484. // Read target attribute.
  485. unsigned int targetAttribute;
  486. if (!read(&targetAttribute))
  487. {
  488. GP_ERROR("Failed to read target attribute for animation '%s'.", id.c_str());
  489. SAFE_DELETE(_trackedNodes);
  490. return NULL;
  491. }
  492. AnimationTarget* target = iter->second;
  493. if (!target)
  494. {
  495. GP_ERROR("Failed to read %s for %s: %s", "animation target", targetId.c_str(), id.c_str());
  496. SAFE_DELETE(_trackedNodes);
  497. return NULL;
  498. }
  499. animation = readAnimationChannelData(animation, id.c_str(), target, targetAttribute);
  500. }
  501. else
  502. {
  503. // Skip over the target attribute.
  504. unsigned int data;
  505. if (!read(&data))
  506. {
  507. GP_ERROR("Failed to skip over target attribute for animation '%s'.", id.c_str());
  508. SAFE_DELETE(_trackedNodes);
  509. return NULL;
  510. }
  511. // Skip the animation channel (passing a target attribute of
  512. // 0 causes the animation to not be created).
  513. readAnimationChannelData(NULL, id.c_str(), NULL, 0);
  514. }
  515. }
  516. }
  517. }
  518. }
  519. SAFE_DELETE(_trackedNodes);
  520. return node;
  521. }
  522. Node* Bundle::loadNode(const char* id, Scene* sceneContext, Node* nodeContext)
  523. {
  524. GP_ASSERT(id);
  525. Node* node = NULL;
  526. // Search the passed in loading contexts (scene/node) first to see
  527. // if we've already loaded this node during this load session.
  528. if (sceneContext)
  529. {
  530. node = sceneContext->findNode(id, true);
  531. if (node)
  532. node->addRef();
  533. }
  534. if (node == NULL && nodeContext)
  535. {
  536. node = nodeContext->findNode(id, true);
  537. if (node)
  538. node->addRef();
  539. }
  540. if (node == NULL)
  541. {
  542. // If not yet found, search the ref table and read.
  543. Reference* ref = seekTo(id, BUNDLE_TYPE_NODE);
  544. if (ref == NULL)
  545. {
  546. return NULL;
  547. }
  548. node = readNode(sceneContext, nodeContext);
  549. }
  550. return node;
  551. }
  552. bool Bundle::skipNode()
  553. {
  554. const char* id = getIdFromOffset();
  555. GP_ASSERT(id);
  556. GP_ASSERT(_file);
  557. // Skip the node's type.
  558. unsigned int nodeType;
  559. if (!read(&nodeType))
  560. {
  561. GP_ERROR("Failed to skip node type for node '%s'.", id);
  562. return false;
  563. }
  564. // Skip over the node's transform and parent ID.
  565. if (fseek(_file, sizeof(float) * 16, SEEK_CUR) != 0)
  566. {
  567. GP_ERROR("Failed to skip over node transform for node '%s'.", id);
  568. return false;
  569. }
  570. readString(_file);
  571. // Skip over the node's children.
  572. unsigned int childrenCount;
  573. if (!read(&childrenCount))
  574. {
  575. GP_ERROR("Failed to skip over node's children count for node '%s'.", id);
  576. return false;
  577. }
  578. else if (childrenCount > 0)
  579. {
  580. for (unsigned int i = 0; i < childrenCount; i++)
  581. {
  582. if (!skipNode())
  583. return false;
  584. }
  585. }
  586. // Skip over the node's camera, light, and model attachments.
  587. Camera* camera = readCamera(); SAFE_RELEASE(camera);
  588. Light* light = readLight(); SAFE_RELEASE(light);
  589. Model* model = readModel(id); SAFE_RELEASE(model);
  590. return true;
  591. }
  592. Node* Bundle::readNode(Scene* sceneContext, Node* nodeContext)
  593. {
  594. const char* id = getIdFromOffset();
  595. GP_ASSERT(id);
  596. GP_ASSERT(_file);
  597. // If we are tracking nodes and it's not in the set yet, add it.
  598. if (_trackedNodes)
  599. {
  600. std::map<std::string, Node*>::iterator iter = _trackedNodes->find(id);
  601. if (iter != _trackedNodes->end())
  602. {
  603. // Skip over this node since we previously read it
  604. if (!skipNode())
  605. return NULL;
  606. iter->second->addRef();
  607. return iter->second;
  608. }
  609. }
  610. // Read node type.
  611. unsigned int nodeType;
  612. if (!read(&nodeType))
  613. {
  614. GP_ERROR("Failed to read node type for node '%s'.", id);
  615. return NULL;
  616. }
  617. Node* node = NULL;
  618. switch (nodeType)
  619. {
  620. case Node::NODE:
  621. node = Node::create(id);
  622. break;
  623. case Node::JOINT:
  624. node = Joint::create(id);
  625. break;
  626. default:
  627. return NULL;
  628. }
  629. if (_trackedNodes)
  630. {
  631. // Add the new node to the list of tracked nodes
  632. _trackedNodes->insert(std::make_pair(id, node));
  633. }
  634. // If no loading context is set, set this node as the loading context.
  635. if (sceneContext == NULL && nodeContext == NULL)
  636. {
  637. nodeContext = node;
  638. }
  639. // Read transform.
  640. float transform[16];
  641. if (fread(transform, sizeof(float), 16, _file) != 16)
  642. {
  643. GP_ERROR("Failed to read transform for node '%s'.", id);
  644. SAFE_RELEASE(node);
  645. return NULL;
  646. }
  647. setTransform(transform, node);
  648. // Skip the parent ID.
  649. readString(_file);
  650. // Read children.
  651. unsigned int childrenCount;
  652. if (!read(&childrenCount))
  653. {
  654. GP_ERROR("Failed to read children count for node '%s'.", id);
  655. SAFE_RELEASE(node);
  656. return NULL;
  657. }
  658. if (childrenCount > 0)
  659. {
  660. // Read each child.
  661. for (unsigned int i = 0; i < childrenCount; i++)
  662. {
  663. // Search the passed in loading contexts (scene/node) first to see
  664. // if we've already loaded this child node during this load session.
  665. Node* child = NULL;
  666. id = getIdFromOffset();
  667. GP_ASSERT(id);
  668. if (sceneContext)
  669. {
  670. child = sceneContext->findNode(id, true);
  671. }
  672. if (child == NULL && nodeContext)
  673. {
  674. child = nodeContext->findNode(id, true);
  675. }
  676. // If the child was already loaded, skip it, otherwise read it
  677. if (child)
  678. {
  679. skipNode();
  680. }
  681. else
  682. {
  683. child = readNode(sceneContext, nodeContext);
  684. }
  685. if (child)
  686. {
  687. node->addChild(child);
  688. child->release(); // 'node' now owns this child
  689. }
  690. }
  691. }
  692. // Read camera.
  693. Camera* camera = readCamera();
  694. if (camera)
  695. {
  696. node->setCamera(camera);
  697. SAFE_RELEASE(camera);
  698. }
  699. // Read light.
  700. Light* light = readLight();
  701. if (light)
  702. {
  703. node->setLight(light);
  704. SAFE_RELEASE(light);
  705. }
  706. // Read model.
  707. Model* model = readModel(node->getId());
  708. if (model)
  709. {
  710. node->setModel(model);
  711. SAFE_RELEASE(model);
  712. }
  713. return node;
  714. }
  715. Camera* Bundle::readCamera()
  716. {
  717. unsigned char cameraType;
  718. if (!read(&cameraType))
  719. {
  720. GP_ERROR("Failed to load camera type in bundle '%s'.", _path.c_str());
  721. return NULL;
  722. }
  723. // Check if there isn't a camera to load.
  724. if (cameraType == 0)
  725. {
  726. return NULL;
  727. }
  728. float aspectRatio;
  729. if (!read(&aspectRatio))
  730. {
  731. GP_ERROR("Failed to load camera aspect ratio in bundle '%s'.", _path.c_str());
  732. return NULL;
  733. }
  734. float nearPlane;
  735. if (!read(&nearPlane))
  736. {
  737. GP_ERROR("Failed to load camera near plane in bundle '%s'.", _path.c_str());
  738. return NULL;
  739. }
  740. float farPlane;
  741. if (!read(&farPlane))
  742. {
  743. GP_ERROR("Failed to load camera far plane in bundle '%s'.", _path.c_str());
  744. return NULL;
  745. }
  746. Camera* camera = NULL;
  747. if (cameraType == Camera::PERSPECTIVE)
  748. {
  749. float fieldOfView;
  750. if (!read(&fieldOfView))
  751. {
  752. GP_ERROR("Failed to load camera field of view in bundle '%s'.", _path.c_str());
  753. return NULL;
  754. }
  755. camera = Camera::createPerspective(fieldOfView, aspectRatio, nearPlane, farPlane);
  756. }
  757. else if (cameraType == Camera::ORTHOGRAPHIC)
  758. {
  759. float zoomX;
  760. if (!read(&zoomX))
  761. {
  762. GP_ERROR("Failed to load camera zoomX in bundle '%s'.", _path.c_str());
  763. return NULL;
  764. }
  765. float zoomY;
  766. if (!read(&zoomY))
  767. {
  768. GP_ERROR("Failed to load camera zoomY in bundle '%s'.", _path.c_str());
  769. return NULL;
  770. }
  771. camera = Camera::createOrthographic(zoomX, zoomY, aspectRatio, nearPlane, farPlane);
  772. }
  773. else
  774. {
  775. GP_ERROR("Unsupported camera type (%d) in bundle '%s'.", cameraType, _path.c_str());
  776. return NULL;
  777. }
  778. return camera;
  779. }
  780. Light* Bundle::readLight()
  781. {
  782. unsigned char type;
  783. if (!read(&type))
  784. {
  785. GP_ERROR("Failed to load light type in bundle '%s'.", _path.c_str());
  786. return NULL;
  787. }
  788. // Check if there isn't a light to load.
  789. if (type == 0)
  790. {
  791. return NULL;
  792. }
  793. // Read color.
  794. float red, blue, green;
  795. if (!read(&red) || !read(&blue) || !read(&green))
  796. {
  797. GP_ERROR("Failed to load light color in bundle '%s'.", _path.c_str());
  798. return NULL;
  799. }
  800. Vector3 color(red, blue, green);
  801. Light* light = NULL;
  802. if (type == Light::DIRECTIONAL)
  803. {
  804. light = Light::createDirectional(color);
  805. }
  806. else if (type == Light::POINT)
  807. {
  808. float range;
  809. if (!read(&range))
  810. {
  811. GP_ERROR("Failed to load point light range in bundle '%s'.", _path.c_str());
  812. return NULL;
  813. }
  814. light = Light::createPoint(color, range);
  815. }
  816. else if (type == Light::SPOT)
  817. {
  818. float range, innerAngle, outerAngle;
  819. if (!read(&range))
  820. {
  821. GP_ERROR("Failed to load spot light range in bundle '%s'.", _path.c_str());
  822. return NULL;
  823. }
  824. if (!read(&innerAngle))
  825. {
  826. GP_ERROR("Failed to load spot light inner angle in bundle '%s'.", _path.c_str());
  827. return NULL;
  828. }
  829. if (!read(&outerAngle))
  830. {
  831. GP_ERROR("Failed to load spot light outer angle in bundle '%s'.", _path.c_str());
  832. return NULL;
  833. }
  834. light = Light::createSpot(color, range, innerAngle, outerAngle);
  835. }
  836. else
  837. {
  838. GP_ERROR("Unsupported light type (%d) in bundle '%s'.", type, _path.c_str());
  839. return NULL;
  840. }
  841. return light;
  842. }
  843. Model* Bundle::readModel(const char* nodeId)
  844. {
  845. // Read mesh.
  846. Mesh* mesh = NULL;
  847. std::string xref = readString(_file);
  848. if (xref.length() > 1 && xref[0] == '#') // TODO: Handle full xrefs
  849. {
  850. mesh = loadMesh(xref.c_str() + 1, nodeId);
  851. if (mesh)
  852. {
  853. Model* model = Model::create(mesh);
  854. SAFE_RELEASE(mesh);
  855. // Read skin.
  856. unsigned char hasSkin;
  857. if (!read(&hasSkin))
  858. {
  859. GP_ERROR("Failed to load whether model with mesh '%s' has a mesh skin in bundle '%s'.", xref.c_str() + 1, _path.c_str());
  860. return NULL;
  861. }
  862. if (hasSkin)
  863. {
  864. MeshSkin* skin = readMeshSkin();
  865. if (skin)
  866. {
  867. model->setSkin(skin);
  868. }
  869. }
  870. // Read material.
  871. unsigned int materialCount;
  872. if (!read(&materialCount))
  873. {
  874. GP_ERROR("Failed to load material count for model with mesh '%s' in bundle '%s'.", xref.c_str() + 1, _path.c_str());
  875. return NULL;
  876. }
  877. if (materialCount > 0)
  878. {
  879. // TODO: Material loading not supported yet.
  880. GP_WARN("Material loading is not yet supported.");
  881. }
  882. return model;
  883. }
  884. }
  885. return NULL;
  886. }
  887. MeshSkin* Bundle::readMeshSkin()
  888. {
  889. MeshSkin* meshSkin = new MeshSkin();
  890. // Read bindShape.
  891. float bindShape[16];
  892. if (!readMatrix(bindShape))
  893. {
  894. GP_ERROR("Failed to load bind shape for mesh skin in bundle '%s'.", _path.c_str());
  895. SAFE_DELETE(meshSkin);
  896. return NULL;
  897. }
  898. meshSkin->setBindShape(bindShape);
  899. MeshSkinData* skinData = new MeshSkinData();
  900. skinData->skin = meshSkin;
  901. // Read joint count.
  902. unsigned int jointCount;
  903. if (!read(&jointCount))
  904. {
  905. GP_ERROR("Failed to load joint count for mesh skin in bundle '%s'.", _path.c_str());
  906. SAFE_DELETE(meshSkin);
  907. SAFE_DELETE(skinData);
  908. return NULL;
  909. }
  910. if (jointCount == 0)
  911. {
  912. GP_ERROR("Invalid joint count (must be greater than 0) for mesh skin in bundle '%s'.", _path.c_str());
  913. SAFE_DELETE(meshSkin);
  914. SAFE_DELETE(skinData);
  915. return NULL;
  916. }
  917. meshSkin->setJointCount(jointCount);
  918. // Read joint xref strings for all joints in the list.
  919. for (unsigned int i = 0; i < jointCount; i++)
  920. {
  921. skinData->joints.push_back(readString(_file));
  922. }
  923. // Read bind poses.
  924. unsigned int jointsBindPosesCount;
  925. if (!read(&jointsBindPosesCount))
  926. {
  927. GP_ERROR("Failed to load number of joint bind poses in bundle '%s'.", _path.c_str());
  928. SAFE_DELETE(meshSkin);
  929. SAFE_DELETE(skinData);
  930. return NULL;
  931. }
  932. if (jointsBindPosesCount > 0)
  933. {
  934. GP_ASSERT(jointCount * 16 == jointsBindPosesCount);
  935. float m[16];
  936. for (unsigned int i = 0; i < jointCount; i++)
  937. {
  938. if (!readMatrix(m))
  939. {
  940. GP_ERROR("Failed to load joint bind pose matrix (for joint with index %d) in bundle '%s'.", i, _path.c_str());
  941. SAFE_DELETE(meshSkin);
  942. SAFE_DELETE(skinData);
  943. return NULL;
  944. }
  945. skinData->inverseBindPoseMatrices.push_back(m);
  946. }
  947. }
  948. // Store the MeshSkinData so we can go back and resolve all joint references later.
  949. _meshSkins.push_back(skinData);
  950. return meshSkin;
  951. }
  952. void Bundle::resolveJointReferences(Scene* sceneContext, Node* nodeContext)
  953. {
  954. GP_ASSERT(_file);
  955. for (size_t i = 0, skinCount = _meshSkins.size(); i < skinCount; ++i)
  956. {
  957. MeshSkinData* skinData = _meshSkins[i];
  958. GP_ASSERT(skinData);
  959. GP_ASSERT(skinData->skin);
  960. // Resolve all joints in skin joint list.
  961. size_t jointCount = skinData->joints.size();
  962. for (size_t j = 0; j < jointCount; ++j)
  963. {
  964. // TODO: Handle full xrefs (not just local # xrefs).
  965. std::string jointId = skinData->joints[j];
  966. if (jointId.length() > 1 && jointId[0] == '#')
  967. {
  968. jointId = jointId.substr(1, jointId.length() - 1);
  969. Node* n = loadNode(jointId.c_str(), sceneContext, nodeContext);
  970. if (n && n->getType() == Node::JOINT)
  971. {
  972. Joint* joint = static_cast<Joint*>(n);
  973. joint->setInverseBindPose(skinData->inverseBindPoseMatrices[j]);
  974. skinData->skin->setJoint(joint, (unsigned int)j);
  975. SAFE_RELEASE(joint);
  976. }
  977. }
  978. }
  979. // Set the root joint.
  980. if (jointCount > 0)
  981. {
  982. Joint* rootJoint = skinData->skin->getJoint((unsigned int)0);
  983. Node* node = rootJoint;
  984. GP_ASSERT(node);
  985. Node* parent = node->getParent();
  986. std::vector<Node*> loadedNodes;
  987. while (true)
  988. {
  989. if (parent)
  990. {
  991. if (skinData->skin->getJointIndex(static_cast<Joint*>(parent)) != -1)
  992. {
  993. // Parent is a joint in the MeshSkin, so treat it as the new root.
  994. rootJoint = static_cast<Joint*>(parent);
  995. }
  996. node = parent;
  997. parent = node->getParent();
  998. }
  999. else
  1000. {
  1001. // No parent currently set for this joint.
  1002. // Lookup its parentID in case it references a node that was not yet loaded as part
  1003. // of the mesh skin's joint list.
  1004. std::string nodeId = node->getId();
  1005. while (true)
  1006. {
  1007. // Get the node's type.
  1008. Reference* ref = find(nodeId.c_str());
  1009. if (ref == NULL)
  1010. {
  1011. GP_ERROR("No object with name '%s' in bundle '%s'.", nodeId.c_str(), _path.c_str());
  1012. return;
  1013. }
  1014. // Seek to the current node in the file so we can get it's parent ID.
  1015. seekTo(nodeId.c_str(), ref->type);
  1016. // Skip over the node type (1 unsigned int) and transform (16 floats) and read the parent id.
  1017. if (fseek(_file, sizeof(unsigned int) + sizeof(float)*16, SEEK_CUR) != 0)
  1018. {
  1019. GP_ERROR("Failed to skip over node type and transform for node '%s' in bundle '%s'.", nodeId.c_str(), _path.c_str());
  1020. return;
  1021. }
  1022. std::string parentID = readString(_file);
  1023. if (!parentID.empty())
  1024. nodeId = parentID;
  1025. else
  1026. break;
  1027. }
  1028. if (nodeId != rootJoint->getId())
  1029. loadedNodes.push_back(loadNode(nodeId.c_str(), sceneContext, nodeContext));
  1030. break;
  1031. }
  1032. }
  1033. skinData->skin->setRootJoint(rootJoint);
  1034. // Release all the nodes that we loaded since the nodes are now owned by the mesh skin/joints.
  1035. for (unsigned int i = 0; i < loadedNodes.size(); i++)
  1036. {
  1037. SAFE_RELEASE(loadedNodes[i]);
  1038. }
  1039. }
  1040. // Remove the joint hierarchy from the scene since it is owned by the mesh skin.
  1041. if (sceneContext)
  1042. sceneContext->removeNode(skinData->skin->_rootNode);
  1043. // Done with this MeshSkinData entry.
  1044. SAFE_DELETE(_meshSkins[i]);
  1045. }
  1046. _meshSkins.clear();
  1047. }
  1048. void Bundle::readAnimation(Scene* scene)
  1049. {
  1050. const std::string animationId = readString(_file);
  1051. // Read the number of animation channels in this animation.
  1052. unsigned int animationChannelCount;
  1053. if (!read(&animationChannelCount))
  1054. {
  1055. GP_ERROR("Failed to read animation channel count for animation '%s'.", animationId.c_str());
  1056. return;
  1057. }
  1058. Animation* animation = NULL;
  1059. for (unsigned int i = 0; i < animationChannelCount; i++)
  1060. {
  1061. animation = readAnimationChannel(scene, animation, animationId.c_str());
  1062. }
  1063. }
  1064. void Bundle::readAnimations(Scene* scene)
  1065. {
  1066. // Read the number of animations in this object.
  1067. unsigned int animationCount;
  1068. if (!read(&animationCount))
  1069. {
  1070. GP_ERROR("Failed to read the number of animations in the scene.");
  1071. return;
  1072. }
  1073. for (unsigned int i = 0; i < animationCount; i++)
  1074. {
  1075. readAnimation(scene);
  1076. }
  1077. }
  1078. Animation* Bundle::readAnimationChannel(Scene* scene, Animation* animation, const char* animationId)
  1079. {
  1080. GP_ASSERT(animationId);
  1081. // Read target id.
  1082. std::string targetId = readString(_file);
  1083. if (targetId.empty())
  1084. {
  1085. GP_ERROR("Failed to read target id for animation '%s'.", animationId);
  1086. return NULL;
  1087. }
  1088. // Read target attribute.
  1089. unsigned int targetAttribute;
  1090. if (!read(&targetAttribute))
  1091. {
  1092. GP_ERROR("Failed to read target attribute for animation '%s'.", animationId);
  1093. return NULL;
  1094. }
  1095. AnimationTarget* target = NULL;
  1096. // Search for a node that matches the target.
  1097. if (!target)
  1098. {
  1099. target = scene->findNode(targetId.c_str());
  1100. if (!target)
  1101. {
  1102. GP_ERROR("Failed to find the animation target (with id '%s') for animation '%s'.", targetId.c_str(), animationId);
  1103. return NULL;
  1104. }
  1105. }
  1106. return readAnimationChannelData(animation, animationId, target, targetAttribute);
  1107. }
  1108. Animation* Bundle::readAnimationChannelData(Animation* animation, const char* id, AnimationTarget* target, unsigned int targetAttribute)
  1109. {
  1110. GP_ASSERT(id);
  1111. std::vector<unsigned int> keyTimes;
  1112. std::vector<float> values;
  1113. std::vector<float> tangentsIn;
  1114. std::vector<float> tangentsOut;
  1115. std::vector<unsigned int> interpolation;
  1116. // Length of the arrays.
  1117. unsigned int keyTimesCount;
  1118. unsigned int valuesCount;
  1119. unsigned int tangentsInCount;
  1120. unsigned int tangentsOutCount;
  1121. unsigned int interpolationCount;
  1122. // Read key times.
  1123. if (!readArray(&keyTimesCount, &keyTimes, sizeof(unsigned int)))
  1124. {
  1125. GP_ERROR("Failed to read key times for animation '%s'.", id);
  1126. return NULL;
  1127. }
  1128. // Read key values.
  1129. if (!readArray(&valuesCount, &values))
  1130. {
  1131. GP_ERROR("Failed to read key values for animation '%s'.", id);
  1132. return NULL;
  1133. }
  1134. // Read in-tangents.
  1135. if (!readArray(&tangentsInCount, &tangentsIn))
  1136. {
  1137. GP_ERROR("Failed to read in tangents for animation '%s'.", id);
  1138. return NULL;
  1139. }
  1140. // Read out-tangents.
  1141. if (!readArray(&tangentsOutCount, &tangentsOut))
  1142. {
  1143. GP_ERROR("Failed to read out tangents for animation '%s'.", id);
  1144. return NULL;
  1145. }
  1146. // Read interpolations.
  1147. if (!readArray(&interpolationCount, &interpolation, sizeof(unsigned int)))
  1148. {
  1149. GP_ERROR("Failed to read the interpolation values for animation '%s'.", id);
  1150. return NULL;
  1151. }
  1152. if (targetAttribute > 0)
  1153. {
  1154. GP_ASSERT(target);
  1155. GP_ASSERT(keyTimes.size() > 0 && values.size() > 0);
  1156. if (animation == NULL)
  1157. {
  1158. // TODO: This code currently assumes LINEAR only.
  1159. animation = target->createAnimation(id, targetAttribute, keyTimesCount, &keyTimes[0], &values[0], Curve::LINEAR);
  1160. }
  1161. else
  1162. {
  1163. animation->createChannel(target, targetAttribute, keyTimesCount, &keyTimes[0], &values[0], Curve::LINEAR);
  1164. }
  1165. }
  1166. return animation;
  1167. }
  1168. Mesh* Bundle::loadMesh(const char* id)
  1169. {
  1170. return loadMesh(id, NULL);
  1171. }
  1172. Mesh* Bundle::loadMesh(const char* id, const char* nodeId)
  1173. {
  1174. GP_ASSERT(_file);
  1175. GP_ASSERT(id);
  1176. // Save the file position.
  1177. long position = ftell(_file);
  1178. if (position == -1L)
  1179. {
  1180. GP_ERROR("Failed to save the current file position before loading mesh '%s'.", id);
  1181. return NULL;
  1182. }
  1183. // Seek to the specified mesh.
  1184. Reference* ref = seekTo(id, BUNDLE_TYPE_MESH);
  1185. if (ref == NULL)
  1186. {
  1187. GP_ERROR("Failed to locate ref for mesh '%s'.", id);
  1188. return NULL;
  1189. }
  1190. // Read mesh data.
  1191. MeshData* meshData = readMeshData();
  1192. if (meshData == NULL)
  1193. {
  1194. GP_ERROR("Failed to load mesh data for mesh '%s'.", id);
  1195. return NULL;
  1196. }
  1197. // Create mesh.
  1198. Mesh* mesh = Mesh::createMesh(meshData->vertexFormat, meshData->vertexCount, false);
  1199. if (mesh == NULL)
  1200. {
  1201. GP_ERROR("Failed to create mesh '%s'.", id);
  1202. SAFE_DELETE_ARRAY(meshData);
  1203. return NULL;
  1204. }
  1205. mesh->_url = _path;
  1206. mesh->_url += "#";
  1207. mesh->_url += id;
  1208. mesh->setVertexData((float*)meshData->vertexData, 0, meshData->vertexCount);
  1209. mesh->_boundingBox.set(meshData->boundingBox);
  1210. mesh->_boundingSphere.set(meshData->boundingSphere);
  1211. // Create mesh parts.
  1212. for (unsigned int i = 0; i < meshData->parts.size(); ++i)
  1213. {
  1214. MeshPartData* partData = meshData->parts[i];
  1215. GP_ASSERT(partData);
  1216. MeshPart* part = mesh->addPart(partData->primitiveType, partData->indexFormat, partData->indexCount, false);
  1217. if (part == NULL)
  1218. {
  1219. GP_ERROR("Failed to create mesh part (with index %d) for mesh '%s'.", i, id);
  1220. SAFE_DELETE(meshData);
  1221. return NULL;
  1222. }
  1223. part->setIndexData(partData->indexData, 0, partData->indexCount);
  1224. }
  1225. SAFE_DELETE(meshData);
  1226. // Restore file pointer.
  1227. if (fseek(_file, position, SEEK_SET) != 0)
  1228. {
  1229. GP_ERROR("Failed to restore file pointer after loading mesh '%s'.", id);
  1230. return NULL;
  1231. }
  1232. return mesh;
  1233. }
  1234. Bundle::MeshData* Bundle::readMeshData()
  1235. {
  1236. // Read vertex format/elements.
  1237. unsigned int vertexElementCount;
  1238. if (fread(&vertexElementCount, 4, 1, _file) != 1)
  1239. {
  1240. GP_ERROR("Failed to load vertex element count.");
  1241. return NULL;
  1242. }
  1243. if (vertexElementCount < 1)
  1244. {
  1245. GP_ERROR("Failed to load mesh data; invalid vertex element count (must be greater than 0).");
  1246. return NULL;
  1247. }
  1248. VertexFormat::Element* vertexElements = new VertexFormat::Element[vertexElementCount];
  1249. for (unsigned int i = 0; i < vertexElementCount; ++i)
  1250. {
  1251. unsigned int vUsage, vSize;
  1252. if (fread(&vUsage, 4, 1, _file) != 1)
  1253. {
  1254. GP_ERROR("Failed to load vertex usage.");
  1255. SAFE_DELETE_ARRAY(vertexElements);
  1256. return NULL;
  1257. }
  1258. if (fread(&vSize, 4, 1, _file) != 1)
  1259. {
  1260. GP_ERROR("Failed to load vertex size.");
  1261. SAFE_DELETE_ARRAY(vertexElements);
  1262. return NULL;
  1263. }
  1264. vertexElements[i].usage = (VertexFormat::Usage)vUsage;
  1265. vertexElements[i].size = vSize;
  1266. }
  1267. MeshData* meshData = new MeshData(VertexFormat(vertexElements, vertexElementCount));
  1268. SAFE_DELETE_ARRAY(vertexElements);
  1269. // Read vertex data.
  1270. unsigned int vertexByteCount;
  1271. if (fread(&vertexByteCount, 4, 1, _file) != 1)
  1272. {
  1273. GP_ERROR("Failed to load vertex byte count.");
  1274. SAFE_DELETE(meshData);
  1275. return NULL;
  1276. }
  1277. if (vertexByteCount == 0)
  1278. {
  1279. GP_ERROR("Failed to load mesh data; invalid vertex byte count of 0.");
  1280. SAFE_DELETE(meshData);
  1281. return NULL;
  1282. }
  1283. GP_ASSERT(meshData->vertexFormat.getVertexSize());
  1284. meshData->vertexCount = vertexByteCount / meshData->vertexFormat.getVertexSize();
  1285. meshData->vertexData = new unsigned char[vertexByteCount];
  1286. if (fread(meshData->vertexData, 1, vertexByteCount, _file) != vertexByteCount)
  1287. {
  1288. GP_ERROR("Failed to load vertex data.");
  1289. SAFE_DELETE(meshData);
  1290. return NULL;
  1291. }
  1292. // Read mesh bounds (bounding box and bounding sphere).
  1293. if (fread(&meshData->boundingBox.min.x, 4, 3, _file) != 3 || fread(&meshData->boundingBox.max.x, 4, 3, _file) != 3)
  1294. {
  1295. GP_ERROR("Failed to load mesh bounding box.");
  1296. SAFE_DELETE(meshData);
  1297. return NULL;
  1298. }
  1299. if (fread(&meshData->boundingSphere.center.x, 4, 3, _file) != 3 || fread(&meshData->boundingSphere.radius, 4, 1, _file) != 1)
  1300. {
  1301. GP_ERROR("Failed to load mesh bounding sphere.");
  1302. SAFE_DELETE(meshData);
  1303. return NULL;
  1304. }
  1305. // Read mesh parts.
  1306. unsigned int meshPartCount;
  1307. if (fread(&meshPartCount, 4, 1, _file) != 1)
  1308. {
  1309. GP_ERROR("Failed to load mesh part count.");
  1310. SAFE_DELETE(meshData);
  1311. return NULL;
  1312. }
  1313. for (unsigned int i = 0; i < meshPartCount; ++i)
  1314. {
  1315. // Read primitive type, index format and index count.
  1316. unsigned int pType, iFormat, iByteCount;
  1317. if (fread(&pType, 4, 1, _file) != 1)
  1318. {
  1319. GP_ERROR("Failed to load primitive type for mesh part with index %d.", i);
  1320. SAFE_DELETE(meshData);
  1321. return NULL;
  1322. }
  1323. if (fread(&iFormat, 4, 1, _file) != 1)
  1324. {
  1325. GP_ERROR("Failed to load index format for mesh part with index %d.", i);
  1326. SAFE_DELETE(meshData);
  1327. return NULL;
  1328. }
  1329. if (fread(&iByteCount, 4, 1, _file) != 1)
  1330. {
  1331. GP_ERROR("Failed to load index byte count for mesh part with index %d.", i);
  1332. SAFE_DELETE(meshData);
  1333. return NULL;
  1334. }
  1335. MeshPartData* partData = new MeshPartData();
  1336. meshData->parts.push_back(partData);
  1337. partData->primitiveType = (Mesh::PrimitiveType)pType;
  1338. partData->indexFormat = (Mesh::IndexFormat)iFormat;
  1339. unsigned int indexSize = 0;
  1340. switch (partData->indexFormat)
  1341. {
  1342. case Mesh::INDEX8:
  1343. indexSize = 1;
  1344. break;
  1345. case Mesh::INDEX16:
  1346. indexSize = 2;
  1347. break;
  1348. case Mesh::INDEX32:
  1349. indexSize = 4;
  1350. break;
  1351. default:
  1352. GP_ERROR("Unsupported index format for mesh part with index %d.", i);
  1353. return NULL;
  1354. }
  1355. GP_ASSERT(indexSize);
  1356. partData->indexCount = iByteCount / indexSize;
  1357. partData->indexData = new unsigned char[iByteCount];
  1358. if (fread(partData->indexData, 1, iByteCount, _file) != iByteCount)
  1359. {
  1360. GP_ERROR("Failed to read index data for mesh part with index %d.", i);
  1361. SAFE_DELETE(meshData);
  1362. return NULL;
  1363. }
  1364. }
  1365. return meshData;
  1366. }
  1367. Bundle::MeshData* Bundle::readMeshData(const char* url)
  1368. {
  1369. GP_ASSERT(url);
  1370. size_t len = strlen(url);
  1371. if (len == 0)
  1372. {
  1373. GP_ERROR("Mesh data URL must be non-empty.");
  1374. return NULL;
  1375. }
  1376. // Parse URL (formatted as 'bundle#id').
  1377. std::string urlstring(url);
  1378. size_t pos = urlstring.find('#');
  1379. if (pos == std::string::npos)
  1380. {
  1381. GP_ERROR("Invalid mesh data URL '%s' (must be of the form 'bundle#id').", url);
  1382. return NULL;
  1383. }
  1384. std::string file = urlstring.substr(0, pos);
  1385. std::string id = urlstring.substr(pos + 1);
  1386. // Load bundle.
  1387. Bundle* bundle = Bundle::create(file.c_str());
  1388. if (bundle == NULL)
  1389. {
  1390. GP_ERROR("Failed to load bundle '%s'.", file.c_str());
  1391. return NULL;
  1392. }
  1393. // Seek to mesh with specified ID in bundle.
  1394. Reference* ref = bundle->seekTo(id.c_str(), BUNDLE_TYPE_MESH);
  1395. if (ref == NULL)
  1396. {
  1397. GP_ERROR("Failed to load ref from bundle '%s' for mesh with id '%s'.", file.c_str(), id.c_str());
  1398. return NULL;
  1399. }
  1400. // Read mesh data from current file position.
  1401. MeshData* meshData = bundle->readMeshData();
  1402. SAFE_RELEASE(bundle);
  1403. return meshData;
  1404. }
  1405. Font* Bundle::loadFont(const char* id)
  1406. {
  1407. GP_ASSERT(id);
  1408. GP_ASSERT(_file);
  1409. // Seek to the specified font.
  1410. Reference* ref = seekTo(id, BUNDLE_TYPE_FONT);
  1411. if (ref == NULL)
  1412. {
  1413. GP_ERROR("Failed to load ref for font '%s'.", id);
  1414. return NULL;
  1415. }
  1416. // Read font family.
  1417. std::string family = readString(_file);
  1418. if (family.empty())
  1419. {
  1420. GP_ERROR("Failed to read font family for font '%s'.", id);
  1421. return NULL;
  1422. }
  1423. // Read font style and size.
  1424. unsigned int style, size;
  1425. if (fread(&style, 4, 1, _file) != 1)
  1426. {
  1427. GP_ERROR("Failed to read style for font '%s'.", id);
  1428. return NULL;
  1429. }
  1430. if (fread(&size, 4, 1, _file) != 1)
  1431. {
  1432. GP_ERROR("Failed to read size for font '%s'.", id);
  1433. return NULL;
  1434. }
  1435. // Read character set.
  1436. std::string charset = readString(_file);
  1437. // Read font glyphs.
  1438. unsigned int glyphCount;
  1439. if (fread(&glyphCount, 4, 1, _file) != 1)
  1440. {
  1441. GP_ERROR("Failed to read glyph count for font '%s'.", id);
  1442. return NULL;
  1443. }
  1444. if (glyphCount == 0)
  1445. {
  1446. GP_ERROR("Invalid glyph count (must be greater than 0) for font '%s'.", id);
  1447. return NULL;
  1448. }
  1449. Font::Glyph* glyphs = new Font::Glyph[glyphCount];
  1450. if (fread(glyphs, sizeof(Font::Glyph), glyphCount, _file) != glyphCount)
  1451. {
  1452. GP_ERROR("Failed to read glyphs for font '%s'.", id);
  1453. SAFE_DELETE_ARRAY(glyphs);
  1454. return NULL;
  1455. }
  1456. // Read texture attributes.
  1457. unsigned int width, height, textureByteCount;
  1458. if (fread(&width, 4, 1, _file) != 1)
  1459. {
  1460. GP_ERROR("Failed to read texture width for font '%s'.", id);
  1461. SAFE_DELETE_ARRAY(glyphs);
  1462. return NULL;
  1463. }
  1464. if (fread(&height, 4, 1, _file) != 1)
  1465. {
  1466. GP_ERROR("Failed to read texture height for font '%s'.", id);
  1467. SAFE_DELETE_ARRAY(glyphs);
  1468. return NULL;
  1469. }
  1470. if (fread(&textureByteCount, 4, 1, _file) != 1)
  1471. {
  1472. GP_ERROR("Failed to read texture byte count for font '%s'.", id);
  1473. SAFE_DELETE_ARRAY(glyphs);
  1474. return NULL;
  1475. }
  1476. if (textureByteCount != (width * height))
  1477. {
  1478. GP_ERROR("Invalid texture byte count for font '%s'.", id);
  1479. SAFE_DELETE_ARRAY(glyphs);
  1480. return NULL;
  1481. }
  1482. // Read texture data.
  1483. unsigned char* textureData = new unsigned char[textureByteCount];
  1484. if (fread(textureData, 1, textureByteCount, _file) != textureByteCount)
  1485. {
  1486. GP_ERROR("Failed to read texture data for font '%s'.", id);
  1487. SAFE_DELETE_ARRAY(glyphs);
  1488. SAFE_DELETE_ARRAY(textureData);
  1489. return NULL;
  1490. }
  1491. // Create the texture for the font.
  1492. Texture* texture = Texture::create(Texture::ALPHA, width, height, textureData, true);
  1493. // Free the texture data (no longer needed).
  1494. SAFE_DELETE_ARRAY(textureData);
  1495. if (texture == NULL)
  1496. {
  1497. GP_ERROR("Failed to create texture for font '%s'.", id);
  1498. SAFE_DELETE_ARRAY(glyphs);
  1499. return NULL;
  1500. }
  1501. // Create the font.
  1502. Font* font = Font::create(family.c_str(), Font::PLAIN, size, glyphs, glyphCount, texture);
  1503. // Free the glyph array.
  1504. SAFE_DELETE_ARRAY(glyphs);
  1505. // Release the texture since the Font now owns it.
  1506. SAFE_RELEASE(texture);
  1507. if (font)
  1508. {
  1509. font->_path = _path;
  1510. font->_id = id;
  1511. }
  1512. return font;
  1513. }
  1514. void Bundle::setTransform(const float* values, Transform* transform)
  1515. {
  1516. GP_ASSERT(transform);
  1517. // Load array into transform.
  1518. Matrix matrix(values);
  1519. Vector3 scale, translation;
  1520. Quaternion rotation;
  1521. matrix.decompose(&scale, &rotation, &translation);
  1522. transform->setScale(scale);
  1523. transform->setTranslation(translation);
  1524. transform->setRotation(rotation);
  1525. }
  1526. bool Bundle::contains(const char* id) const
  1527. {
  1528. return (find(id) != NULL);
  1529. }
  1530. unsigned int Bundle::getObjectCount() const
  1531. {
  1532. return _referenceCount;
  1533. }
  1534. const char* Bundle::getObjectId(unsigned int index) const
  1535. {
  1536. GP_ASSERT(_references);
  1537. return (index >= _referenceCount ? NULL : _references[index].id.c_str());
  1538. }
  1539. Bundle::Reference::Reference()
  1540. : type(0), offset(0)
  1541. {
  1542. }
  1543. Bundle::Reference::~Reference()
  1544. {
  1545. }
  1546. Bundle::MeshPartData::MeshPartData() :
  1547. indexCount(0), indexData(NULL)
  1548. {
  1549. }
  1550. Bundle::MeshPartData::~MeshPartData()
  1551. {
  1552. SAFE_DELETE_ARRAY(indexData);
  1553. }
  1554. Bundle::MeshData::MeshData(const VertexFormat& vertexFormat)
  1555. : vertexFormat(vertexFormat), vertexCount(0), vertexData(NULL)
  1556. {
  1557. }
  1558. Bundle::MeshData::~MeshData()
  1559. {
  1560. SAFE_DELETE_ARRAY(vertexData);
  1561. for (unsigned int i = 0; i < parts.size(); ++i)
  1562. {
  1563. SAFE_DELETE(parts[i]);
  1564. }
  1565. }
  1566. }