MCPcopy Create free account
hub / github.com/crossuo/crossuo / LoadCommon

Method LoadCommon

xuocore/uodata.cpp:395–454  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

393}
394
395bool CFileManager::LoadCommon()
396{
397 if (!m_AnimIdx[0].Load(UOFilePath("anim.idx")))
398 {
399 return false;
400 }
401 if (!m_LightIdx.Load(UOFilePath("lightidx.mul")))
402 {
403 return false;
404 }
405 if (!m_SkillsIdx.Load(UOFilePath("Skills.idx")))
406 {
407 return false;
408 }
409 if (!m_MultiMap.Load(UOFilePath("Multimap.rle")))
410 {
411 return false;
412 }
413 if (!m_TextureIdx.Load(UOFilePath("texidx.mul")))
414 {
415 return false;
416 }
417 if (!m_AnimMul[0].Load(UOFilePath("anim.mul")))
418 {
419 return false;
420 }
421 if (!m_AnimdataMul.Load(UOFilePath("animdata.mul")))
422 {
423 return false;
424 }
425 if (!m_HuesMul.Load(UOFilePath("hues.mul")))
426 {
427 return false;
428 }
429 if (!m_LightMul.Load(UOFilePath("light.mul")))
430 {
431 return false;
432 }
433 if (!m_RadarcolMul.Load(UOFilePath("radarcol.mul")))
434 {
435 return false;
436 }
437 if (!m_SkillsMul.Load(UOFilePath("skills.mul")))
438 {
439 return false;
440 }
441 if (!m_TextureMul.Load(UOFilePath("texmaps.mul")))
442 {
443 return false;
444 }
445 if (!m_TiledataMul.Load(UOFilePath("tiledata.mul")))
446 {
447 return false;
448 }
449
450 m_SpeechMul.Load(UOFilePath("speech.mul"));
451 m_LangcodeIff.Load(UOFilePath("Langcode.iff"));
452

Callers

nothing calls this directly

Calls 2

UOFilePathFunction · 0.85
LoadMethod · 0.45

Tested by

no test coverage detected