2009-04-30 07:36:57 +02:00
|
|
|
/*
|
|
|
|
* ============================================================================
|
|
|
|
*
|
2008-10-04 22:59:11 +02:00
|
|
|
* Zombie:Reloaded
|
2009-04-30 07:36:57 +02:00
|
|
|
*
|
2009-05-06 02:28:09 +02:00
|
|
|
* File: models.inc
|
|
|
|
* Type: Core
|
2009-05-18 06:26:13 +02:00
|
|
|
* Description: Model validation.
|
2009-04-30 07:36:57 +02:00
|
|
|
*
|
|
|
|
* ============================================================================
|
2008-10-04 22:59:11 +02:00
|
|
|
*/
|
|
|
|
|
2009-04-30 07:36:57 +02:00
|
|
|
/**
|
|
|
|
* Maximum folder depth a model file can be located.
|
|
|
|
*/
|
|
|
|
#define MODELS_PATH_MAX_DEPTH 8
|
2008-10-04 22:59:11 +02:00
|
|
|
|
2009-04-30 07:36:57 +02:00
|
|
|
/**
|
|
|
|
* Maximum string length of a folder a model file is located under.
|
|
|
|
*/
|
|
|
|
#define MODELS_PATH_DIR_MAX_LENGTH 32
|
2008-10-04 22:59:11 +02:00
|
|
|
|
2009-04-30 07:36:57 +02:00
|
|
|
/**
|
|
|
|
* Array that stores a list of validated models.
|
|
|
|
*/
|
2009-05-29 08:43:15 +02:00
|
|
|
new Handle:arrayModels = INVALID_HANDLE;
|
2009-04-30 07:36:57 +02:00
|
|
|
|
|
|
|
/**
|
2009-05-18 06:26:13 +02:00
|
|
|
* Prepare all model/download data.
|
2009-04-30 07:36:57 +02:00
|
|
|
*/
|
2009-05-18 06:26:13 +02:00
|
|
|
ModelsLoad()
|
2009-04-30 07:36:57 +02:00
|
|
|
{
|
2009-05-29 08:43:15 +02:00
|
|
|
// Register config file.
|
|
|
|
ConfigRegisterConfig(File_Models, Structure_List, CONFIG_FILE_ALIAS_MODELS);
|
|
|
|
|
2009-04-30 07:36:57 +02:00
|
|
|
// Get models file path.
|
|
|
|
decl String:pathmodels[PLATFORM_MAX_PATH];
|
2009-05-18 06:26:13 +02:00
|
|
|
new bool:exists = ConfigGetCvarFilePath(CVAR_CONFIG_PATH_MODELS, pathmodels);
|
|
|
|
|
2009-04-30 07:36:57 +02:00
|
|
|
// If file doesn't exist, then log and stop.
|
|
|
|
if (!exists)
|
2008-10-04 22:59:11 +02:00
|
|
|
{
|
2009-04-30 07:36:57 +02:00
|
|
|
// Log failure and stop plugin.
|
2009-06-01 23:29:26 +02:00
|
|
|
LogEvent(false, LogType_Fatal, LOG_CORE_EVENTS, LogModule_Models, "Config Validation", "Missing models file: \"%s\"", pathmodels);
|
2008-10-04 22:59:11 +02:00
|
|
|
}
|
|
|
|
|
2009-05-29 08:43:15 +02:00
|
|
|
// Set the path to the config file.
|
|
|
|
ConfigSetConfigPath(File_Models, pathmodels);
|
2008-10-04 22:59:11 +02:00
|
|
|
|
2009-05-29 08:43:15 +02:00
|
|
|
// Load config from file and create array structure.
|
|
|
|
new bool:success = ConfigLoadConfig(File_Models, arrayModels);
|
2008-10-04 22:59:11 +02:00
|
|
|
|
2009-05-29 08:43:15 +02:00
|
|
|
// Unexpected error, stop plugin.
|
|
|
|
if (!success)
|
2008-10-04 22:59:11 +02:00
|
|
|
{
|
2009-06-01 23:29:26 +02:00
|
|
|
LogEvent(false, LogType_Fatal, LOG_CORE_EVENTS, LogModule_Models, "Config Validation", "Unexpected error encountered loading: %s", pathmodels);
|
2008-10-04 22:59:11 +02:00
|
|
|
}
|
|
|
|
|
2009-04-30 07:36:57 +02:00
|
|
|
new modelcount;
|
|
|
|
new modelvalidcount;
|
|
|
|
new modelfilecount;
|
2008-10-04 22:59:11 +02:00
|
|
|
|
2009-04-30 07:36:57 +02:00
|
|
|
decl String:modelbase[PLATFORM_MAX_PATH];
|
|
|
|
decl String:modelpath[PLATFORM_MAX_PATH];
|
|
|
|
decl String:modelname[MODELS_PATH_DIR_MAX_LENGTH];
|
|
|
|
decl String:modelfile[MODELS_PATH_DIR_MAX_LENGTH];
|
|
|
|
decl String:modeldiskname[MODELS_PATH_DIR_MAX_LENGTH];
|
|
|
|
decl String:modelfullpath[PLATFORM_MAX_PATH];
|
|
|
|
|
|
|
|
new String:baseexploded[MODELS_PATH_MAX_DEPTH][MODELS_PATH_DIR_MAX_LENGTH];
|
2008-10-04 22:59:11 +02:00
|
|
|
|
2009-04-30 07:36:57 +02:00
|
|
|
new FileType:type;
|
2008-10-04 22:59:11 +02:00
|
|
|
|
2009-05-29 08:43:15 +02:00
|
|
|
new models = modelcount = GetArraySize(arrayModels);
|
2009-04-30 07:36:57 +02:00
|
|
|
|
|
|
|
// x = model array index.
|
|
|
|
for (new x = 0; x < models; x++)
|
2008-10-04 22:59:11 +02:00
|
|
|
{
|
2009-04-30 07:36:57 +02:00
|
|
|
// Get base model path (rawline in models.txt)
|
2009-05-29 08:43:15 +02:00
|
|
|
GetArrayString(arrayModels, x, modelbase, sizeof(modelbase));
|
2009-04-30 07:36:57 +02:00
|
|
|
|
|
|
|
// Explode path into pieces. (separated by "/")
|
|
|
|
new strings = ExplodeString(modelbase, "/", baseexploded, MODELS_PATH_MAX_DEPTH, MODELS_PATH_DIR_MAX_LENGTH);
|
|
|
|
|
|
|
|
// Get model file name.
|
|
|
|
strcopy(modelname, sizeof(modelname), baseexploded[strings - 1]);
|
|
|
|
|
|
|
|
// Get the path to the file.
|
|
|
|
// Works by truncating original path by the length of the file name.
|
|
|
|
strcopy(modelpath, strlen(modelbase) - strlen(modelname), modelbase);
|
|
|
|
|
|
|
|
// Open dir containing model files.
|
|
|
|
new Handle:modeldir = OpenDirectory(modelpath);
|
|
|
|
|
2009-06-05 05:58:48 +02:00
|
|
|
if (modeldir == INVALID_HANDLE)
|
|
|
|
{
|
|
|
|
LogEvent(false, LogType_Error, LOG_CORE_EVENTS, LogModule_Models, "Config Validation", "Error opening model path directory: %s", modelpath);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2009-04-30 07:36:57 +02:00
|
|
|
// Reset model file count.
|
|
|
|
modelfilecount = 0;
|
|
|
|
|
|
|
|
while (ReadDirEntry(modeldir, modelfile, sizeof(modelfile), type))
|
|
|
|
{
|
|
|
|
// If entry isn't a file, then stop.
|
|
|
|
if (type != FileType_File)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Find break point index in the string to get model name.
|
|
|
|
// Add one because it seems to break on the character before.
|
|
|
|
new breakpoint = FindCharInString(modelfile, '.') + 1;
|
|
|
|
strcopy(modeldiskname, breakpoint, modelfile);
|
|
|
|
|
|
|
|
// If this file doesn't match, then stop.
|
|
|
|
if (!StrEqual(modelname, modeldiskname, false))
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Format a full path string.
|
|
|
|
strcopy(modelfullpath, sizeof(modelfullpath), modelpath);
|
|
|
|
Format(modelfullpath, sizeof(modelfullpath), "%s/%s", modelfullpath, modelfile);
|
|
|
|
|
|
|
|
// Precache model file and add to downloads table.
|
|
|
|
PrecacheModel(modelfullpath);
|
|
|
|
AddFileToDownloadsTable(modelfullpath);
|
|
|
|
|
|
|
|
// Increment modelfilecount
|
|
|
|
modelfilecount++;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Increment modelvalidcount if model files are valid.
|
|
|
|
if (modelfilecount)
|
|
|
|
{
|
|
|
|
modelvalidcount++;
|
|
|
|
}
|
|
|
|
else
|
2008-10-04 22:59:11 +02:00
|
|
|
{
|
2009-04-30 07:36:57 +02:00
|
|
|
// Remove client from array.
|
2009-05-29 08:43:15 +02:00
|
|
|
RemoveFromArray(arrayModels, x);
|
2009-04-30 07:36:57 +02:00
|
|
|
|
|
|
|
// Subtract one from count.
|
|
|
|
models--;
|
|
|
|
|
|
|
|
// Backtrack one index, because we deleted it out from under the loop.
|
|
|
|
x--;
|
|
|
|
|
|
|
|
// Log missing model files.
|
2009-06-01 23:29:26 +02:00
|
|
|
LogEvent(false, LogType_Error, LOG_CORE_EVENTS, LogModule_Models, "Config Validation", "Missing model files on server (%s)", modelbase);
|
2008-10-04 22:59:11 +02:00
|
|
|
}
|
|
|
|
}
|
2009-04-30 07:36:57 +02:00
|
|
|
|
|
|
|
// Log model validation info.
|
2009-06-01 23:29:26 +02:00
|
|
|
LogEvent(false, LogType_Normal, LOG_CORE_EVENTS, LogModule_Models, "Config Validation", "Total: %d | Successful: %d | Unsuccessful: %d", modelcount, modelvalidcount, modelcount - modelvalidcount);
|
2009-04-30 07:36:57 +02:00
|
|
|
|
|
|
|
// If none of the model paths are valid, then log and fail.
|
|
|
|
if (!modelvalidcount)
|
|
|
|
{
|
2009-06-01 23:29:26 +02:00
|
|
|
LogEvent(false, LogType_Fatal, LOG_CORE_EVENTS, LogModule_Models, "Config Validation", "No usable model paths in %s", pathmodels);
|
2009-04-30 07:36:57 +02:00
|
|
|
}
|
2009-05-18 06:26:13 +02:00
|
|
|
|
|
|
|
// Set config data.
|
2009-05-29 08:43:15 +02:00
|
|
|
ConfigSetConfigLoaded(File_Models, true);
|
|
|
|
ConfigSetConfigReloadFunc(File_Models, GetFunctionByName(GetMyHandle(), "ModelsOnConfigReload"));
|
|
|
|
ConfigSetConfigHandle(File_Models, arrayModels);
|
2008-10-04 22:59:11 +02:00
|
|
|
}
|
|
|
|
|
2009-04-30 07:36:57 +02:00
|
|
|
/**
|
2009-05-29 08:43:15 +02:00
|
|
|
* Called when config is being reloaded.
|
2009-04-30 07:36:57 +02:00
|
|
|
*/
|
2009-05-18 06:26:13 +02:00
|
|
|
public ModelsOnConfigReload(ConfigFile:config)
|
2008-10-04 22:59:11 +02:00
|
|
|
{
|
2009-05-29 08:43:15 +02:00
|
|
|
// Reload models config.
|
|
|
|
ModelsLoad();
|
2009-05-18 06:26:13 +02:00
|
|
|
}
|