aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/common/Collision/Models/GameObjectModel.cpp28
-rw-r--r--src/common/Collision/Models/GameObjectModel.h2
-rw-r--r--src/server/game/World/World.cpp8
3 files changed, 21 insertions, 17 deletions
diff --git a/src/common/Collision/Models/GameObjectModel.cpp b/src/common/Collision/Models/GameObjectModel.cpp
index 5ef59a727ea..72a9a706bdc 100644
--- a/src/common/Collision/Models/GameObjectModel.cpp
+++ b/src/common/Collision/Models/GameObjectModel.cpp
@@ -22,6 +22,7 @@
#include "GameObjectModel.h"
#include "Log.h"
#include "MapTree.h"
+#include "Memory.h"
#include "Timer.h"
#include <G3D/Quat.h>
@@ -42,24 +43,23 @@ struct GameobjectModelData
typedef std::unordered_map<uint32, GameobjectModelData> ModelList;
ModelList model_list;
-void LoadGameObjectModelList(std::string const& dataPath)
+bool LoadGameObjectModelList(std::string const& dataPath)
{
uint32 oldMSTime = getMSTime();
- FILE* model_list_file = fopen((dataPath + "vmaps/" + VMAP::GAMEOBJECT_MODELS).c_str(), "rb");
+ auto model_list_file = Trinity::make_unique_ptr_with_deleter(fopen((dataPath + "vmaps/" + VMAP::GAMEOBJECT_MODELS).c_str(), "rb"), &::fclose);
if (!model_list_file)
{
TC_LOG_ERROR("misc", "Unable to open '%s' file.", VMAP::GAMEOBJECT_MODELS);
- return;
+ return false;
}
char magic[8];
- if (fread(magic, 1, 8, model_list_file) != 8
+ if (fread(magic, 1, 8, model_list_file.get()) != 8
|| memcmp(magic, VMAP::VMAP_MAGIC, 8) != 0)
{
TC_LOG_ERROR("misc", "File '%s' has wrong header, expected %s.", VMAP::GAMEOBJECT_MODELS, VMAP::VMAP_MAGIC);
- fclose(model_list_file);
- return;
+ return false;
}
uint32 name_length, displayId;
@@ -68,16 +68,16 @@ void LoadGameObjectModelList(std::string const& dataPath)
while (true)
{
Vector3 v1, v2;
- if (fread(&displayId, sizeof(uint32), 1, model_list_file) != 1)
- if (feof(model_list_file)) // EOF flag is only set after failed reading attempt
+ if (fread(&displayId, sizeof(uint32), 1, model_list_file.get()) != 1)
+ if (feof(model_list_file.get())) // EOF flag is only set after failed reading attempt
break;
- if (fread(&isWmo, sizeof(uint8), 1, model_list_file) != 1
- || fread(&name_length, sizeof(uint32), 1, model_list_file) != 1
+ if (fread(&isWmo, sizeof(uint8), 1, model_list_file.get()) != 1
+ || fread(&name_length, sizeof(uint32), 1, model_list_file.get()) != 1
|| name_length >= sizeof(buff)
- || fread(&buff, sizeof(char), name_length, model_list_file) != name_length
- || fread(&v1, sizeof(Vector3), 1, model_list_file) != 1
- || fread(&v2, sizeof(Vector3), 1, model_list_file) != 1)
+ || fread(&buff, sizeof(char), name_length, model_list_file.get()) != name_length
+ || fread(&v1, sizeof(Vector3), 1, model_list_file.get()) != 1
+ || fread(&v2, sizeof(Vector3), 1, model_list_file.get()) != 1)
{
TC_LOG_ERROR("misc", "File '%s' seems to be corrupted!", VMAP::GAMEOBJECT_MODELS);
break;
@@ -92,8 +92,8 @@ void LoadGameObjectModelList(std::string const& dataPath)
model_list.emplace(std::piecewise_construct, std::forward_as_tuple(displayId), std::forward_as_tuple(&buff[0], name_length, v1, v2, isWmo != 0));
}
- fclose(model_list_file);
TC_LOG_INFO("server.loading", ">> Loaded %u GameObject models in %u ms", uint32(model_list.size()), GetMSTimeDiffToNow(oldMSTime));
+ return true;
}
GameObjectModel::~GameObjectModel()
diff --git a/src/common/Collision/Models/GameObjectModel.h b/src/common/Collision/Models/GameObjectModel.h
index a8a5c6fc5e0..a84fac60aa2 100644
--- a/src/common/Collision/Models/GameObjectModel.h
+++ b/src/common/Collision/Models/GameObjectModel.h
@@ -97,6 +97,6 @@ private:
bool isWmo;
};
-TC_COMMON_API void LoadGameObjectModelList(std::string const& dataPath);
+TC_COMMON_API bool LoadGameObjectModelList(std::string const& dataPath);
#endif // _GAMEOBJECT_MODEL_H
diff --git a/src/server/game/World/World.cpp b/src/server/game/World/World.cpp
index 2f4bb3ce75d..6b499500c54 100644
--- a/src/server/game/World/World.cpp
+++ b/src/server/game/World/World.cpp
@@ -1765,7 +1765,7 @@ void World::SetInitialWorldSettings()
!TerrainMgr::ExistMapAndVMap(530, 10349.6f, -6357.29f) ||
!TerrainMgr::ExistMapAndVMap(530, -3961.64f, -13931.2f))))
{
- TC_LOG_FATAL("server.loading", "Unable to load critical files - server shutting down !!!");
+ TC_LOG_FATAL("server.loading", "Unable to load map and vmap data for starting zones - server shutting down!");
exit(1);
}
@@ -1883,7 +1883,11 @@ void World::SetInitialWorldSettings()
sLanguageMgr->LoadLanguagesWords();
TC_LOG_INFO("server.loading", "Loading GameObject models...");
- LoadGameObjectModelList(m_dataPath);
+ if (!LoadGameObjectModelList(m_dataPath))
+ {
+ TC_LOG_FATAL("server.loading", "Unable to load gameobject models, objects using WMO models will crash the client - server shutting down!");
+ exit(1);
+ }
TC_LOG_INFO("server.loading", "Loading Instance Template...");
sObjectMgr->LoadInstanceTemplate();