2016-02-20 23:25:00 +01:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
2015-09-30 02:56:11 +02:00
|
|
|
#include "Core.hpp"
|
|
|
|
#include "Logger.hpp"
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
2016-02-20 23:25:00 +01:00
|
|
|
#include "Entity/Blip.hpp"
|
|
|
|
#include "Entity/Checkpoint.hpp"
|
|
|
|
#include "Entity/Keybind.hpp"
|
|
|
|
#include "Entity/Object.hpp"
|
|
|
|
#include "Entity/Pickup.hpp"
|
|
|
|
#include "Entity/Player.hpp"
|
|
|
|
#include "Entity/Vehicle.hpp"
|
2015-09-30 02:56:11 +02:00
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
#include <sqstdio.h>
|
|
|
|
#include <sqstdblob.h>
|
|
|
|
#include <sqstdmath.h>
|
|
|
|
#include <sqstdsystem.h>
|
|
|
|
#include <sqstdstring.h>
|
2016-02-20 23:25:00 +01:00
|
|
|
#include <SimpleIni.h>
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
2016-05-22 05:20:38 +02:00
|
|
|
#include <cstdio>
|
|
|
|
#include <cstdarg>
|
2015-09-30 02:56:11 +02:00
|
|
|
#include <exception>
|
2016-02-20 23:25:00 +01:00
|
|
|
#include <stdexcept>
|
|
|
|
#include <algorithm>
|
2015-09-30 02:56:11 +02:00
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
namespace SqMod {
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
2016-02-20 23:25:00 +01:00
|
|
|
extern bool RegisterAPI(HSQUIRRELVM vm);
|
2015-09-30 02:56:11 +02:00
|
|
|
|
2016-02-23 04:23:56 +01:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
2016-05-22 05:20:38 +02:00
|
|
|
extern void InitializeRoutines();
|
|
|
|
extern void TerminateRoutines();
|
|
|
|
extern void InitializeCmdManager();
|
|
|
|
extern void TerminateCmdManager();
|
2016-02-23 04:23:56 +01:00
|
|
|
|
2016-06-18 19:31:35 +02:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
extern Buffer GetRealFilePath(CSStr path);
|
|
|
|
|
|
|
|
/* ------------------------------------------------------------------------------------------------
|
|
|
|
* Loader used to process a section from the configuration file and look for scripts to load.
|
|
|
|
*/
|
|
|
|
class ScriptLoader
|
|
|
|
{
|
|
|
|
// --------------------------------------------------------------------------------------------
|
|
|
|
CSimpleIniA & m_Config; // The processed configuration.
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
/* --------------------------------------------------------------------------------------------
|
|
|
|
* Default constructor.
|
|
|
|
*/
|
|
|
|
ScriptLoader(CSimpleIniA & conf)
|
|
|
|
: m_Config(conf)
|
|
|
|
{
|
|
|
|
/* ... */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* --------------------------------------------------------------------------------------------
|
|
|
|
* Function call operator.
|
|
|
|
*/
|
|
|
|
bool operator () (CCStr key, CCStr val) const
|
|
|
|
{
|
|
|
|
// Validate the specified key
|
|
|
|
if (!key || *key == '\0')
|
|
|
|
{
|
|
|
|
return true; // Move to the next element!
|
|
|
|
}
|
|
|
|
// Identify the load option
|
|
|
|
if (std::strcmp(key, "Section") == 0)
|
|
|
|
{
|
|
|
|
return m_Config.ProcAllValues(val, ScriptLoader(m_Config));
|
|
|
|
}
|
|
|
|
else if (std::strcmp(key, "Compile") == 0)
|
|
|
|
{
|
|
|
|
return Core::Get().LoadScript(val, true);
|
|
|
|
}
|
|
|
|
else if (std::strcmp(key, "Execute") == 0)
|
|
|
|
{
|
|
|
|
return Core::Get().LoadScript(val, false);
|
|
|
|
}
|
|
|
|
// Move to the next element!
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-09-30 02:56:11 +02:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
2016-05-22 05:20:38 +02:00
|
|
|
Core Core::s_Inst;
|
2016-03-24 04:28:55 +01:00
|
|
|
|
2015-09-30 02:56:11 +02:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
2016-02-20 23:25:00 +01:00
|
|
|
Core::Core()
|
|
|
|
: m_State(0)
|
2016-03-24 05:43:02 +01:00
|
|
|
, m_VM(nullptr)
|
2016-02-20 23:25:00 +01:00
|
|
|
, m_Scripts()
|
|
|
|
, m_Options()
|
|
|
|
, m_Blips()
|
|
|
|
, m_Checkpoints()
|
|
|
|
, m_Keybinds()
|
|
|
|
, m_Objects()
|
|
|
|
, m_Pickups()
|
|
|
|
, m_Players()
|
|
|
|
, m_Vehicles()
|
2016-05-22 05:20:38 +02:00
|
|
|
, m_CircularLocks(0)
|
2016-05-24 18:26:43 +02:00
|
|
|
, m_ReloadHeader(0)
|
|
|
|
, m_ReloadPayload()
|
2016-05-22 05:20:38 +02:00
|
|
|
, m_IncomingNameBuffer(nullptr)
|
|
|
|
, m_IncomingNameCapacity(0)
|
2016-06-17 02:33:58 +02:00
|
|
|
, m_Debugging(false)
|
2016-06-18 19:31:35 +02:00
|
|
|
, m_Executed(false)
|
2015-09-30 02:56:11 +02:00
|
|
|
{
|
2016-05-22 05:20:38 +02:00
|
|
|
/* ... */
|
2015-09-30 02:56:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
2016-02-20 23:25:00 +01:00
|
|
|
Core::~Core()
|
2015-09-30 02:56:11 +02:00
|
|
|
{
|
2016-05-22 05:20:38 +02:00
|
|
|
if (m_VM)
|
|
|
|
{
|
|
|
|
Terminate();
|
|
|
|
}
|
2015-09-30 02:56:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
2016-05-22 05:20:38 +02:00
|
|
|
bool Core::Initialize()
|
2015-09-30 02:56:11 +02:00
|
|
|
{
|
2016-05-22 05:20:38 +02:00
|
|
|
// Make sure the plug-in was not already initialized
|
|
|
|
if (m_VM != nullptr)
|
2016-03-26 17:16:01 +01:00
|
|
|
{
|
2016-05-22 05:20:38 +02:00
|
|
|
OutputError("Plug-in was already initialized");
|
2016-02-20 23:25:00 +01:00
|
|
|
return true;
|
2016-03-26 17:16:01 +01:00
|
|
|
}
|
2016-02-20 23:25:00 +01:00
|
|
|
|
|
|
|
CSimpleIniA conf(false, true, true);
|
|
|
|
// Attempt to load the configurations from disk
|
|
|
|
SI_Error ini_ret = conf.LoadFile("sqmod.ini");
|
|
|
|
// See if the configurations could be loaded
|
|
|
|
if (ini_ret < 0)
|
2015-09-30 02:56:11 +02:00
|
|
|
{
|
2016-02-20 23:25:00 +01:00
|
|
|
switch (ini_ret)
|
|
|
|
{
|
|
|
|
case SI_FAIL:
|
2016-05-22 05:20:38 +02:00
|
|
|
OutputError("Failed to load the configuration file. Probably invalid");
|
2016-02-20 23:25:00 +01:00
|
|
|
break;
|
|
|
|
case SI_NOMEM:
|
2016-05-22 05:20:38 +02:00
|
|
|
OutputError("Run out of memory while loading the configuration file");
|
2016-02-20 23:25:00 +01:00
|
|
|
break;
|
|
|
|
case SI_FILE:
|
2016-05-22 05:20:38 +02:00
|
|
|
OutputError("Failed to load the configuration file. %s", std::strerror(errno));
|
2016-02-20 23:25:00 +01:00
|
|
|
break;
|
|
|
|
default:
|
2016-05-22 05:20:38 +02:00
|
|
|
OutputError("Failed to load the configuration file for some unforeseen reason");
|
2016-02-20 23:25:00 +01:00
|
|
|
}
|
|
|
|
// Failed to load the configuration file
|
|
|
|
return false;
|
2015-09-30 02:56:11 +02:00
|
|
|
}
|
2015-10-02 00:34:28 +02:00
|
|
|
|
2016-05-22 05:20:38 +02:00
|
|
|
// Initialize the log filename
|
|
|
|
Logger::Get().SetLogFilename(conf.GetValue("Log", "Filename", nullptr));
|
|
|
|
// Configure the logging timestamps
|
|
|
|
Logger::Get().ToggleConsoleTime(conf.GetBoolValue("Log", "ConsoleTimestamp", false));
|
|
|
|
Logger::Get().ToggleLogFileTime(conf.GetBoolValue("Log", "LogFileTimestamp", true));
|
|
|
|
// Apply the specified logging filters only after initialization was completed
|
|
|
|
Logger::Get().ToggleConsoleLevel(LOGL_DBG, conf.GetBoolValue("Log", "ConsoleDebug", true));
|
|
|
|
Logger::Get().ToggleConsoleLevel(LOGL_USR, conf.GetBoolValue("Log", "ConsoleUser", true));
|
|
|
|
Logger::Get().ToggleConsoleLevel(LOGL_SCS, conf.GetBoolValue("Log", "ConsoleSuccess", true));
|
|
|
|
Logger::Get().ToggleConsoleLevel(LOGL_INF, conf.GetBoolValue("Log", "ConsoleInfo", true));
|
|
|
|
Logger::Get().ToggleConsoleLevel(LOGL_WRN, conf.GetBoolValue("Log", "ConsoleWarning", true));
|
|
|
|
Logger::Get().ToggleConsoleLevel(LOGL_ERR, conf.GetBoolValue("Log", "ConsoleError", true));
|
|
|
|
Logger::Get().ToggleConsoleLevel(LOGL_FTL, conf.GetBoolValue("Log", "ConsoleFatal", true));
|
|
|
|
Logger::Get().ToggleLogFileLevel(LOGL_DBG, conf.GetBoolValue("Log", "LogFileDebug", true));
|
|
|
|
Logger::Get().ToggleLogFileLevel(LOGL_USR, conf.GetBoolValue("Log", "LogFileUser", true));
|
|
|
|
Logger::Get().ToggleLogFileLevel(LOGL_SCS, conf.GetBoolValue("Log", "LogFileSuccess", true));
|
|
|
|
Logger::Get().ToggleLogFileLevel(LOGL_INF, conf.GetBoolValue("Log", "LogFileInfo", true));
|
|
|
|
Logger::Get().ToggleLogFileLevel(LOGL_WRN, conf.GetBoolValue("Log", "LogFileWarning", true));
|
|
|
|
Logger::Get().ToggleLogFileLevel(LOGL_ERR, conf.GetBoolValue("Log", "LogFileError", true));
|
|
|
|
Logger::Get().ToggleLogFileLevel(LOGL_FTL, conf.GetBoolValue("Log", "LogFileFatal", true));
|
|
|
|
|
|
|
|
LogDbg("Resizing the entity containers");
|
|
|
|
// Make sure the entity containers have the proper size
|
|
|
|
m_Blips.resize(SQMOD_BLIP_POOL);
|
|
|
|
m_Checkpoints.resize(SQMOD_CHECKPOINT_POOL);
|
|
|
|
m_Keybinds.resize(SQMOD_KEYBIND_POOL);
|
|
|
|
m_Objects.resize(SQMOD_OBJECT_POOL);
|
|
|
|
m_Pickups.resize(SQMOD_PICKUP_POOL);
|
|
|
|
m_Players.resize(SQMOD_PLAYER_POOL);
|
|
|
|
m_Vehicles.resize(SQMOD_VEHICLE_POOL);
|
|
|
|
|
|
|
|
// Attempt to read the virtual machine stack size
|
|
|
|
const LongI stack_size = conf.GetLongValue("Squirrel", "StackSize", SQMOD_STACK_SIZE);
|
|
|
|
// Make sure that the retrieved number is within range
|
|
|
|
if (!stack_size)
|
2016-02-20 23:25:00 +01:00
|
|
|
{
|
2016-05-22 05:20:38 +02:00
|
|
|
LogWrn("Invalid virtual machine stack size: %lu", stack_size);
|
|
|
|
// Stop the initialization process
|
|
|
|
return false;
|
2016-02-20 23:25:00 +01:00
|
|
|
}
|
2015-09-30 02:56:11 +02:00
|
|
|
|
2016-05-22 05:20:38 +02:00
|
|
|
LogDbg("Creating a virtual machine (%ld stack size)", stack_size);
|
|
|
|
// Attempt to create the script virtual machine
|
|
|
|
m_VM = sq_open(ConvTo< SQInteger >::From(stack_size));
|
2016-03-10 04:57:13 +01:00
|
|
|
// See if the virtual machine could be created
|
2016-02-20 23:25:00 +01:00
|
|
|
if (cLogFtl(!m_VM, "Unable to create the virtual machine"))
|
|
|
|
{
|
2016-05-22 05:20:38 +02:00
|
|
|
return false; // Unable to load the plug-in properly!
|
2016-02-20 23:25:00 +01:00
|
|
|
}
|
2016-05-22 05:20:38 +02:00
|
|
|
|
2016-03-10 04:57:13 +01:00
|
|
|
// Set this as the default VM
|
2016-02-20 23:25:00 +01:00
|
|
|
DefaultVM::Set(m_VM);
|
2016-05-22 05:20:38 +02:00
|
|
|
// Configure error handling
|
|
|
|
ErrorHandling::Enable(conf.GetBoolValue("Squirrel", "ErrorHandling", true));
|
2016-06-17 02:33:58 +02:00
|
|
|
// See if debugging options should be enabled
|
|
|
|
m_Debugging = conf.GetBoolValue("Squirrel", "Debugging", false);
|
2016-02-20 23:25:00 +01:00
|
|
|
|
|
|
|
LogDbg("Registering the standard libraries");
|
2016-03-10 04:57:13 +01:00
|
|
|
// Push the root table on the stack
|
2016-02-20 23:25:00 +01:00
|
|
|
sq_pushroottable(m_VM);
|
2016-03-10 04:57:13 +01:00
|
|
|
// Register the standard library on the pushed table
|
2016-02-20 23:25:00 +01:00
|
|
|
sqstd_register_iolib(m_VM);
|
|
|
|
sqstd_register_bloblib(m_VM);
|
|
|
|
sqstd_register_mathlib(m_VM);
|
|
|
|
sqstd_register_systemlib(m_VM);
|
|
|
|
sqstd_register_stringlib(m_VM);
|
2016-03-10 04:57:13 +01:00
|
|
|
// Pop the root table from the stack
|
2016-02-20 23:25:00 +01:00
|
|
|
sq_pop(m_VM, 1);
|
|
|
|
|
2016-05-22 05:20:38 +02:00
|
|
|
LogDbg("Setting the script output function");
|
2016-03-10 04:57:13 +01:00
|
|
|
// Tell the VM to use these functions to output user on error messages
|
2016-02-20 23:25:00 +01:00
|
|
|
sq_setprintfunc(m_VM, PrintFunc, ErrorFunc);
|
|
|
|
|
2016-05-22 05:20:38 +02:00
|
|
|
LogDbg("Setting the script error handlers");
|
2016-03-10 04:57:13 +01:00
|
|
|
// Tell the VM to trigger this function on compile time errors
|
2016-02-20 23:25:00 +01:00
|
|
|
sq_setcompilererrorhandler(m_VM, CompilerErrorHandler);
|
2016-03-10 04:57:13 +01:00
|
|
|
// Push the runtime error handler on the stack and create a closure
|
2016-02-20 23:25:00 +01:00
|
|
|
sq_newclosure(m_VM, RuntimeErrorHandler, 0);
|
2016-03-10 04:57:13 +01:00
|
|
|
// Tell the VM to trigger this function on runtime errors
|
2016-02-20 23:25:00 +01:00
|
|
|
sq_seterrorhandler(m_VM);
|
|
|
|
|
|
|
|
LogDbg("Registering the plug-in API");
|
2016-05-22 05:20:38 +02:00
|
|
|
// Attempt to register the plug-in API
|
2016-02-20 23:25:00 +01:00
|
|
|
if (cLogFtl(!RegisterAPI(m_VM), "Unable to register the plug-in API"))
|
2016-03-26 17:16:01 +01:00
|
|
|
{
|
2016-03-10 04:57:13 +01:00
|
|
|
return false; // Can't execute scripts without a valid API!
|
2016-03-26 17:16:01 +01:00
|
|
|
}
|
2016-02-20 23:25:00 +01:00
|
|
|
|
2016-06-18 19:31:35 +02:00
|
|
|
CSimpleIniA::TNamesDepend scripts;
|
|
|
|
// Attempt to retrieve the list of keys to make sure there's actually something to process
|
|
|
|
if (conf.GetAllKeys("Scripts", scripts) && scripts.size() > 0)
|
2016-02-20 23:25:00 +01:00
|
|
|
{
|
2016-06-18 19:31:35 +02:00
|
|
|
// Attempt to load the specified scripts
|
|
|
|
if (!conf.ProcAllValues("Scripts", ScriptLoader(conf)))
|
2016-03-26 17:16:01 +01:00
|
|
|
{
|
2016-06-18 19:31:35 +02:00
|
|
|
LogErr("Unable to load the specified scripts");
|
|
|
|
// Either no script was found or failed to load
|
|
|
|
return false;
|
2016-06-17 00:40:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-10 04:57:13 +01:00
|
|
|
// See if any script could be queued for loading
|
2016-05-22 05:20:38 +02:00
|
|
|
if (m_Scripts.empty() && !conf.GetBoolValue("Squirrel", "EmptyInit", false))
|
2016-02-20 23:25:00 +01:00
|
|
|
{
|
2016-03-10 04:57:13 +01:00
|
|
|
LogErr("No scripts loaded. No reason to load the plug-in");
|
2016-02-20 23:25:00 +01:00
|
|
|
// No point in loading the plug-in
|
2015-09-30 02:56:11 +02:00
|
|
|
return false;
|
|
|
|
}
|
2016-05-22 05:20:38 +02:00
|
|
|
|
2016-02-20 23:25:00 +01:00
|
|
|
LogDbg("Reading the options from the general section");
|
2016-03-10 04:57:13 +01:00
|
|
|
// Read options only after loading was successful
|
2016-02-20 23:25:00 +01:00
|
|
|
CSimpleIniA::TNamesDepend options;
|
2016-03-10 04:57:13 +01:00
|
|
|
// Are there any options to read?
|
2016-02-20 23:25:00 +01:00
|
|
|
if (conf.GetAllKeys("Options", options) || options.size() > 0)
|
|
|
|
{
|
2016-05-26 05:57:42 +02:00
|
|
|
LogDbg("Found (%u) options in the configuration file", options.size());
|
2016-02-20 23:25:00 +01:00
|
|
|
// Process all the specified keys under the [Options] section
|
2016-03-10 04:57:13 +01:00
|
|
|
for (const auto & option : options)
|
2016-02-20 23:25:00 +01:00
|
|
|
{
|
2016-03-10 04:57:13 +01:00
|
|
|
CSimpleIniA::TNamesDepend values;
|
|
|
|
// Get the values of all keys with the same name
|
|
|
|
if (!conf.GetAllValues("Options", option.pItem, values))
|
2016-03-26 17:16:01 +01:00
|
|
|
{
|
2016-02-20 23:25:00 +01:00
|
|
|
continue;
|
2016-03-26 17:16:01 +01:00
|
|
|
}
|
2016-02-20 23:25:00 +01:00
|
|
|
// Sort the keys in their original order
|
2016-03-10 04:57:13 +01:00
|
|
|
values.sort(CSimpleIniA::Entry::LoadOrder());
|
|
|
|
// Save each option option and overwrite existing value
|
|
|
|
for (const auto & value : values)
|
2016-03-26 17:16:01 +01:00
|
|
|
{
|
2016-03-10 04:57:13 +01:00
|
|
|
m_Options[option.pItem] = value.pItem;
|
2016-03-26 17:16:01 +01:00
|
|
|
}
|
2016-02-20 23:25:00 +01:00
|
|
|
}
|
|
|
|
}
|
2015-09-30 02:56:11 +02:00
|
|
|
|
2016-05-22 05:20:38 +02:00
|
|
|
// Initialize routines
|
|
|
|
InitializeRoutines();
|
|
|
|
// Initialize commands
|
|
|
|
InitializeCmdManager();
|
2016-02-20 23:25:00 +01:00
|
|
|
|
|
|
|
// Initialization successful
|
2015-09-30 02:56:11 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-02-20 23:25:00 +01:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
2016-05-22 05:20:38 +02:00
|
|
|
bool Core::Execute()
|
2015-09-30 02:56:11 +02:00
|
|
|
{
|
2016-02-20 23:25:00 +01:00
|
|
|
// Are there any scripts to execute?
|
|
|
|
if (cLogErr(m_Scripts.empty(), "No scripts to execute. Plug-in has no purpose"))
|
2016-05-22 05:20:38 +02:00
|
|
|
{
|
|
|
|
return false; // No reason to execute the plug-in
|
|
|
|
}
|
2016-03-10 04:57:13 +01:00
|
|
|
|
2016-05-22 05:20:38 +02:00
|
|
|
LogDbg("Signaling outside plug-ins to register their API");
|
|
|
|
// Tell modules to do their monkey business
|
|
|
|
_Func->SendPluginCommand(0xDEADBABE, "");
|
2016-02-27 10:57:10 +01:00
|
|
|
|
2016-06-18 12:09:08 +02:00
|
|
|
LogDbg("Attempting to compile the specified scripts");
|
|
|
|
// Compile scripts first so that the constants can take effect
|
2016-05-22 05:20:38 +02:00
|
|
|
for (auto & s : m_Scripts)
|
2016-02-20 23:25:00 +01:00
|
|
|
{
|
2016-06-18 19:31:35 +02:00
|
|
|
// Is this script already compiled?
|
|
|
|
if (!s.mExec.IsNull())
|
|
|
|
{
|
|
|
|
continue; // Already compiled!
|
|
|
|
}
|
|
|
|
|
2016-02-23 16:48:30 +01:00
|
|
|
// Attempt to load and compile the script file
|
2016-03-10 04:57:13 +01:00
|
|
|
try
|
|
|
|
{
|
2016-06-17 02:28:37 +02:00
|
|
|
s.mExec.CompileFile(s.mPath);
|
2016-03-10 04:57:13 +01:00
|
|
|
}
|
|
|
|
catch (const Sqrat::Exception & e)
|
|
|
|
{
|
2016-06-17 02:28:37 +02:00
|
|
|
LogFtl("Unable to compile: %s", s.mPath.c_str());
|
2016-06-17 05:48:13 +02:00
|
|
|
// Failed to execute properly
|
2016-03-10 04:57:13 +01:00
|
|
|
return false;
|
|
|
|
}
|
2016-06-18 19:31:35 +02:00
|
|
|
|
2016-06-18 12:09:08 +02:00
|
|
|
LogDbg("Successfully compiled script: %s", s.mPath.c_str());
|
2016-06-18 19:31:35 +02:00
|
|
|
|
|
|
|
// Should we delay the execution of this script?
|
|
|
|
if (s.mDelay)
|
|
|
|
{
|
|
|
|
continue; // Execute later!
|
|
|
|
}
|
|
|
|
|
|
|
|
// Attempt to execute the compiled script code
|
|
|
|
try
|
|
|
|
{
|
|
|
|
s.mExec.Run();
|
|
|
|
}
|
|
|
|
catch (const Sqrat::Exception & e)
|
|
|
|
{
|
|
|
|
LogFtl("Unable to execute: %s", s.mPath.c_str());
|
|
|
|
// Failed to execute properly
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
LogScs("Successfully executed script: %s", s.mPath.c_str());
|
2016-06-18 12:09:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
LogDbg("Attempting to execute the specified scripts");
|
|
|
|
// Execute scripts only after compilation successful
|
|
|
|
for (auto & s : m_Scripts)
|
|
|
|
{
|
2016-06-18 19:31:35 +02:00
|
|
|
// Was this script delayed from execution?
|
|
|
|
if (!s.mDelay)
|
|
|
|
{
|
|
|
|
continue; // Already executed!
|
|
|
|
}
|
|
|
|
|
2016-03-10 04:57:13 +01:00
|
|
|
// Attempt to execute the compiled script code
|
|
|
|
try
|
|
|
|
{
|
2016-06-17 02:28:37 +02:00
|
|
|
s.mExec.Run();
|
2016-03-10 04:57:13 +01:00
|
|
|
}
|
|
|
|
catch (const Sqrat::Exception & e)
|
|
|
|
{
|
2016-06-17 02:28:37 +02:00
|
|
|
LogFtl("Unable to execute: %s", s.mPath.c_str());
|
2016-06-17 05:48:13 +02:00
|
|
|
// Failed to execute properly
|
2016-03-10 04:57:13 +01:00
|
|
|
return false;
|
|
|
|
}
|
2016-06-18 19:31:35 +02:00
|
|
|
|
2016-06-17 02:28:37 +02:00
|
|
|
LogScs("Successfully executed script: %s", s.mPath.c_str());
|
2016-02-20 23:25:00 +01:00
|
|
|
}
|
2016-03-24 07:44:01 +01:00
|
|
|
|
|
|
|
// Import already existing entities
|
|
|
|
ImportPlayers();
|
|
|
|
ImportBlips();
|
|
|
|
ImportCheckpoints();
|
|
|
|
ImportKeybinds();
|
|
|
|
ImportObjects();
|
|
|
|
ImportPickups();
|
|
|
|
ImportVehicles();
|
|
|
|
|
2016-05-22 05:20:38 +02:00
|
|
|
// Notify the script callback that the scripts were loaded
|
2016-03-24 08:32:44 +01:00
|
|
|
EmitScriptLoaded();
|
|
|
|
|
2016-05-22 05:20:38 +02:00
|
|
|
// Successfully executed
|
2016-06-18 19:31:35 +02:00
|
|
|
return (m_Executed = true);
|
2015-09-30 02:56:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
2016-02-20 23:25:00 +01:00
|
|
|
void Core::Terminate()
|
2015-09-30 02:56:11 +02:00
|
|
|
{
|
2016-05-22 05:20:38 +02:00
|
|
|
if (m_VM)
|
|
|
|
{
|
|
|
|
LogDbg("Signaling outside plug-ins to release their resources");
|
|
|
|
// Tell modules to do their monkey business
|
|
|
|
_Func->SendPluginCommand(0xDEADC0DE, "");
|
|
|
|
}
|
2016-02-20 23:25:00 +01:00
|
|
|
// Release all entity resources by clearing the containers
|
2016-03-24 04:28:55 +01:00
|
|
|
m_Players.clear();
|
2016-06-24 23:01:36 +02:00
|
|
|
m_Vehicles.clear();
|
2016-02-20 23:25:00 +01:00
|
|
|
m_Objects.clear();
|
|
|
|
m_Pickups.clear();
|
2016-05-22 05:20:38 +02:00
|
|
|
m_Checkpoints.clear();
|
2016-06-24 23:01:36 +02:00
|
|
|
m_Blips.clear();
|
|
|
|
m_Keybinds.clear();
|
2016-02-20 23:25:00 +01:00
|
|
|
// Release all resources from routines
|
2016-05-22 05:20:38 +02:00
|
|
|
TerminateRoutines();
|
2016-02-23 04:23:56 +01:00
|
|
|
// Release all resources from command manager
|
2016-05-22 05:20:38 +02:00
|
|
|
TerminateCmdManager();
|
2016-03-24 08:32:44 +01:00
|
|
|
// In case there's a payload for reload
|
2016-05-24 18:26:43 +02:00
|
|
|
m_ReloadPayload.Release();
|
2016-05-22 05:20:38 +02:00
|
|
|
// Release null objects in case any reference to valid objects is stored in them
|
|
|
|
NullArray().Release();
|
|
|
|
NullTable().Release();
|
|
|
|
NullObject().Release();
|
|
|
|
NullFunction().ReleaseGently();
|
2016-02-20 23:25:00 +01:00
|
|
|
// Is there a VM to close?
|
|
|
|
if (m_VM)
|
|
|
|
{
|
|
|
|
// Release all script callbacks
|
|
|
|
ResetFunc();
|
|
|
|
// Release the script instances
|
|
|
|
m_Scripts.clear();
|
2016-06-18 19:31:35 +02:00
|
|
|
// Specify that no scripts are left executed
|
|
|
|
m_Executed = false;
|
2016-05-22 05:20:38 +02:00
|
|
|
// Assertions during close may cause double delete/close!
|
2016-02-20 23:25:00 +01:00
|
|
|
HSQUIRRELVM sq_vm = m_VM;
|
2016-03-24 05:43:02 +01:00
|
|
|
m_VM = nullptr;
|
2016-02-20 23:25:00 +01:00
|
|
|
// Attempt to close the VM
|
|
|
|
sq_close(sq_vm);
|
2016-06-26 15:18:23 +02:00
|
|
|
|
|
|
|
LogDbg("Signaling outside plug-ins to release the virtual machine");
|
|
|
|
// Tell modules to do their monkey business
|
|
|
|
_Func->SendPluginCommand(0xDEADBEAF, "");
|
2016-02-20 23:25:00 +01:00
|
|
|
}
|
2015-09-30 02:56:11 +02:00
|
|
|
}
|
|
|
|
|
2016-05-24 05:51:40 +02:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
2016-05-24 18:26:43 +02:00
|
|
|
bool Core::Reload()
|
2016-05-24 05:51:40 +02:00
|
|
|
{
|
|
|
|
// Are we already reloading?
|
|
|
|
if (m_CircularLocks & CCL_RELOAD_SCRIPTS)
|
|
|
|
{
|
|
|
|
return false; // Already reloading!
|
|
|
|
}
|
2016-06-03 20:26:19 +02:00
|
|
|
// Prevent circular reloads when we send plug-in commands
|
2016-05-24 05:51:40 +02:00
|
|
|
const BitGuardU32 bg(m_CircularLocks, static_cast< Uint32 >(CCL_RELOAD_SCRIPTS));
|
|
|
|
// Allow reloading by default
|
|
|
|
Core::Get().SetState(1);
|
|
|
|
// Emit the reload event
|
2016-05-24 18:26:43 +02:00
|
|
|
Core::Get().EmitScriptReload(m_ReloadHeader, m_ReloadPayload);
|
2016-05-24 05:51:40 +02:00
|
|
|
// Are we allowed to reload?
|
|
|
|
if (!Core::Get().GetState())
|
|
|
|
{
|
|
|
|
return false; // Request denied!
|
|
|
|
}
|
|
|
|
// Terminate the current VM and release resources
|
|
|
|
Terminate();
|
2016-05-24 18:26:43 +02:00
|
|
|
// Reset the reload header after termination
|
|
|
|
m_ReloadHeader = -1;
|
|
|
|
// Attempt to initialize the central core and load resources
|
|
|
|
return (Initialize() && Execute());
|
2016-05-24 05:51:40 +02:00
|
|
|
}
|
|
|
|
|
2015-09-30 02:56:11 +02:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
2016-03-11 19:04:26 +01:00
|
|
|
CSStr Core::GetOption(CSStr name) const
|
2015-09-30 02:56:11 +02:00
|
|
|
{
|
2016-02-20 23:25:00 +01:00
|
|
|
Options::const_iterator elem = m_Options.find(name);
|
2016-03-11 19:04:26 +01:00
|
|
|
return (elem == m_Options.end()) ? _SC("") : elem->second.c_str();
|
2015-09-30 02:56:11 +02:00
|
|
|
}
|
|
|
|
|
2016-03-11 19:04:26 +01:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
CSStr Core::GetOption(CSStr name, CSStr value) const
|
|
|
|
{
|
|
|
|
Options::const_iterator elem = m_Options.find(name);
|
|
|
|
return (elem == m_Options.end()) ? value : elem->second.c_str();
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
void Core::SetOption(CSStr name, CSStr value)
|
2015-09-30 02:56:11 +02:00
|
|
|
{
|
2016-02-20 23:25:00 +01:00
|
|
|
m_Options[name] = value;
|
2015-09-30 02:56:11 +02:00
|
|
|
}
|
|
|
|
|
2016-03-10 04:57:13 +01:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
2016-06-18 19:31:35 +02:00
|
|
|
bool Core::LoadScript(CSStr filepath, bool delay)
|
2016-03-10 04:57:13 +01:00
|
|
|
{
|
|
|
|
// Is the specified path empty?
|
2016-05-22 05:20:38 +02:00
|
|
|
if (!filepath || *filepath == '\0')
|
2016-03-26 17:16:01 +01:00
|
|
|
{
|
2016-06-18 19:31:35 +02:00
|
|
|
LogErr("Cannot load script with empty or invalid path");
|
|
|
|
// Failed to load
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
Buffer bpath;
|
|
|
|
// Attempt to get the real file path
|
|
|
|
try
|
|
|
|
{
|
|
|
|
bpath = GetRealFilePath(filepath);
|
|
|
|
}
|
|
|
|
catch (const Sqrat::Exception & e)
|
|
|
|
{
|
|
|
|
LogErr("Unable to load script: %s", e.Message().c_str());
|
|
|
|
// Failed to load
|
|
|
|
return false;
|
2016-03-26 17:16:01 +01:00
|
|
|
}
|
2016-06-18 19:31:35 +02:00
|
|
|
catch (const std::exception & e)
|
|
|
|
{
|
|
|
|
LogErr("Unable to load script: %s", e.what());
|
|
|
|
// Failed to load
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// Make the path into a string
|
|
|
|
String path(bpath.Data(), bpath.Position());
|
2016-03-10 04:57:13 +01:00
|
|
|
// See if it wasn't already loaded
|
2016-06-17 02:28:37 +02:00
|
|
|
if (std::find_if(m_Scripts.cbegin(), m_Scripts.cend(), [&path](Scripts::const_reference s) {
|
|
|
|
return (s.mPath == path);
|
|
|
|
}) != m_Scripts.end())
|
2016-03-26 17:16:01 +01:00
|
|
|
{
|
2016-03-10 04:57:13 +01:00
|
|
|
LogWrn("Script was specified before: %s", path.c_str());
|
2016-03-26 17:16:01 +01:00
|
|
|
}
|
2016-06-18 19:31:35 +02:00
|
|
|
// Were the scripts already executed? Then there's no need to queue them
|
|
|
|
else if (m_Executed)
|
|
|
|
{
|
|
|
|
// Create a new script container and insert it into the script pool
|
|
|
|
m_Scripts.emplace_back(m_VM, std::move(path), delay, m_Debugging);
|
|
|
|
|
|
|
|
// Attempt to load and compile the script file
|
|
|
|
try
|
|
|
|
{
|
|
|
|
m_Scripts.back().mExec.CompileFile(m_Scripts.back().mPath);
|
|
|
|
}
|
|
|
|
catch (const Sqrat::Exception & e)
|
|
|
|
{
|
|
|
|
LogFtl("Unable to compile: %s", m_Scripts.back().mPath.c_str());
|
|
|
|
// Failed to execute properly
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// At this point the script should be completely loaded
|
|
|
|
LogDbg("Successfully compiled script: %s", m_Scripts.back().mPath.c_str());
|
|
|
|
|
|
|
|
// Attempt to execute the compiled script code
|
|
|
|
try
|
|
|
|
{
|
|
|
|
m_Scripts.back().mExec.Run();
|
|
|
|
}
|
|
|
|
catch (const Sqrat::Exception & e)
|
|
|
|
{
|
|
|
|
LogFtl("Unable to execute: %s", m_Scripts.back().mPath.c_str());
|
|
|
|
// Failed to execute properly
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// At this point the script should be completely loaded
|
|
|
|
LogScs("Successfully executed script: %s", m_Scripts.back().mPath.c_str());
|
|
|
|
}
|
2016-05-22 05:20:38 +02:00
|
|
|
// We don't compile the scripts yet. We just store their path and prepare the objects
|
2016-03-10 04:57:13 +01:00
|
|
|
else
|
2016-03-26 17:16:01 +01:00
|
|
|
{
|
2016-03-10 04:57:13 +01:00
|
|
|
// Create a new script container and insert it into the script pool
|
2016-06-18 19:31:35 +02:00
|
|
|
m_Scripts.emplace_back(m_VM, std::move(path), delay, m_Debugging);
|
2016-03-26 17:16:01 +01:00
|
|
|
}
|
2016-03-10 04:57:13 +01:00
|
|
|
// At this point the script exists in the pool
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-05-22 05:20:38 +02:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
void Core::SetIncomingName(CSStr name)
|
|
|
|
{
|
|
|
|
// Is there an incoming connection buffer that we can write to?
|
|
|
|
if (!m_IncomingNameBuffer)
|
|
|
|
{
|
|
|
|
STHROWF("No incoming player name buffer available");
|
|
|
|
}
|
|
|
|
// Is the specified name valid?
|
|
|
|
else if (!name || *name == '\0')
|
|
|
|
{
|
|
|
|
STHROWF("Invalid player name for incoming connection");
|
|
|
|
}
|
|
|
|
// Calculate the length of the specified name
|
|
|
|
const size_t len = std::strlen(name);
|
|
|
|
// Is the length of the name out of bounds?
|
|
|
|
if (len > m_IncomingNameCapacity)
|
|
|
|
{
|
|
|
|
STHROWF("The specified name exceeds the designated buffer");
|
|
|
|
}
|
|
|
|
// Does the name satisfy the minimum length required?
|
|
|
|
else if (len < 2)
|
|
|
|
{
|
|
|
|
STHROWF("The specified name needs to be at least 2 characters: %zu", len);
|
|
|
|
}
|
|
|
|
// Copy the specified name to the assigned buffer
|
|
|
|
std::strncpy(m_IncomingNameBuffer, name, m_IncomingNameCapacity);
|
|
|
|
// Make sure that the name inside the buffer is null terminated
|
|
|
|
m_IncomingNameBuffer[len] = '\0';
|
|
|
|
}
|
|
|
|
|
2016-02-20 23:25:00 +01:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
2016-03-22 03:27:11 +01:00
|
|
|
void Core::PrintFunc(HSQUIRRELVM /*vm*/, CSStr msg, ...)
|
2015-09-30 02:56:11 +02:00
|
|
|
{
|
2016-05-22 05:20:38 +02:00
|
|
|
// Initialize the variable argument list
|
2016-02-20 23:25:00 +01:00
|
|
|
va_list args;
|
|
|
|
va_start(args, msg);
|
2016-05-22 05:20:38 +02:00
|
|
|
// Forward the message to the logger
|
|
|
|
Logger::Get().Send(LOGL_USR, false, msg, args);
|
|
|
|
// Finalize the variable argument list
|
2016-02-20 23:25:00 +01:00
|
|
|
va_end(args);
|
2015-09-30 02:56:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
2016-02-20 23:25:00 +01:00
|
|
|
void Core::ErrorFunc(HSQUIRRELVM /*vm*/, CSStr msg, ...)
|
2015-09-30 02:56:11 +02:00
|
|
|
{
|
2016-05-22 05:20:38 +02:00
|
|
|
// Initialize the variable argument list
|
2016-02-20 23:25:00 +01:00
|
|
|
va_list args;
|
|
|
|
va_start(args, msg);
|
2016-05-22 05:20:38 +02:00
|
|
|
// Tell the logger to display debugging information
|
|
|
|
Logger::Get().Debug(msg, args);
|
|
|
|
// Finalize the variable argument list
|
2016-02-20 23:25:00 +01:00
|
|
|
va_end(args);
|
2015-09-30 02:56:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-20 23:25:00 +01:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
SQInteger Core::RuntimeErrorHandler(HSQUIRRELVM vm)
|
2015-09-30 02:56:11 +02:00
|
|
|
{
|
2016-05-22 05:20:38 +02:00
|
|
|
// Was there a value thrown?
|
2016-02-20 23:25:00 +01:00
|
|
|
if (sq_gettop(vm) < 1)
|
2016-03-22 03:27:11 +01:00
|
|
|
{
|
2016-05-22 05:20:38 +02:00
|
|
|
return SQ_OK; // No error to display!
|
2016-03-22 03:27:11 +01:00
|
|
|
}
|
2016-05-22 05:20:38 +02:00
|
|
|
// Temporary variable for the thrown error
|
2016-03-24 05:43:02 +01:00
|
|
|
CSStr err_msg = nullptr;
|
2016-05-22 05:20:38 +02:00
|
|
|
// Attempt to obtain the thrown value as a string
|
2016-02-20 23:25:00 +01:00
|
|
|
if (SQ_SUCCEEDED(sq_getstring(vm, 2, &err_msg)))
|
2016-03-22 03:27:11 +01:00
|
|
|
{
|
2016-05-22 05:20:38 +02:00
|
|
|
Logger::Get().Debug(_SC("%s"), err_msg);
|
2016-03-22 03:27:11 +01:00
|
|
|
}
|
2016-02-20 23:25:00 +01:00
|
|
|
else
|
2016-03-22 03:27:11 +01:00
|
|
|
{
|
2016-05-22 05:20:38 +02:00
|
|
|
Logger::Get().Debug(_SC("Unknown runtime error has occurred"));
|
2016-03-22 03:27:11 +01:00
|
|
|
}
|
2016-05-22 05:20:38 +02:00
|
|
|
// We handled the error
|
2016-02-20 23:25:00 +01:00
|
|
|
return SQ_OK;
|
2015-09-30 02:56:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
2016-02-20 23:25:00 +01:00
|
|
|
void Core::CompilerErrorHandler(HSQUIRRELVM /*vm*/, CSStr desc, CSStr src, SQInteger line, SQInteger column)
|
2015-11-07 11:17:39 +01:00
|
|
|
{
|
2016-02-20 23:25:00 +01:00
|
|
|
LogFtl("Message: %s\n[\n=>Location: %s\n=>Line: %d\n=>Column: %d\n]", desc, src, line, column);
|
2015-11-07 11:17:39 +01:00
|
|
|
}
|
|
|
|
|
2016-05-24 06:29:35 +02:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
void Core::BindEvent(Int32 id, Object & env, Function & func)
|
|
|
|
{
|
|
|
|
// Obtain the function instance called for this event
|
|
|
|
Function & event = GetEvent(id);
|
|
|
|
// Is the specified callback function null?
|
|
|
|
if (func.IsNull())
|
|
|
|
{
|
2016-05-24 20:36:49 +02:00
|
|
|
event.ReleaseGently(); // Then release the current callback
|
2016-05-24 06:29:35 +02:00
|
|
|
}
|
|
|
|
// Does this function need a custom environment?
|
|
|
|
else if (env.IsNull())
|
|
|
|
{
|
|
|
|
event = func;
|
|
|
|
}
|
|
|
|
// Assign the specified environment and function
|
|
|
|
else
|
|
|
|
{
|
|
|
|
event = Function(env.GetVM(), env, func.GetFunc());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-22 05:20:38 +02:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
Core::BlipInst::~BlipInst()
|
2016-03-24 07:44:01 +01:00
|
|
|
{
|
2016-05-22 05:20:38 +02:00
|
|
|
// Should we notify that this entity is being cleaned up?
|
2016-06-26 14:47:27 +02:00
|
|
|
if (VALID_ENTITY(mID))
|
2016-03-24 07:44:01 +01:00
|
|
|
{
|
2016-05-22 05:20:38 +02:00
|
|
|
Core::Get().EmitBlipDestroyed(mID, SQMOD_DESTROY_CLEANUP, NullObject());
|
2016-03-24 07:44:01 +01:00
|
|
|
}
|
2016-05-22 05:20:38 +02:00
|
|
|
// Is there a manager instance associated with this entity?
|
|
|
|
if (mInst)
|
2016-03-24 07:44:01 +01:00
|
|
|
{
|
2016-05-22 05:20:38 +02:00
|
|
|
// Prevent further use of this entity
|
|
|
|
mInst->m_ID = -1;
|
|
|
|
// Release user data to avoid dangling or circular references
|
|
|
|
mInst->m_Data.Release();
|
2016-03-24 07:44:01 +01:00
|
|
|
}
|
2016-05-22 05:20:38 +02:00
|
|
|
// Are we supposed to clean up this entity?
|
2016-06-26 14:47:27 +02:00
|
|
|
if (VALID_ENTITY(mID) && (mFlags & ENF_OWNED))
|
2016-03-24 07:44:01 +01:00
|
|
|
{
|
2016-06-26 14:47:27 +02:00
|
|
|
// Block the entity pool changes notification from triggering the destroy event
|
|
|
|
const BitGuardU16 bg(mFlags, static_cast< Uint16 >(ENF_LOCKED));
|
|
|
|
// Now attempt to destroy this entity from the server
|
2016-05-22 05:20:38 +02:00
|
|
|
_Func->DestroyCoordBlip(mID);
|
2016-03-24 07:44:01 +01:00
|
|
|
}
|
2016-05-22 05:20:38 +02:00
|
|
|
// Don't release the callbacks abruptly in destructor
|
|
|
|
Core::ResetFunc(*this);
|
2016-03-24 07:44:01 +01:00
|
|
|
}
|
|
|
|
|
2016-05-22 05:20:38 +02:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
Core::CheckpointInst::~CheckpointInst()
|
2016-03-24 07:44:01 +01:00
|
|
|
{
|
2016-05-22 05:20:38 +02:00
|
|
|
// Should we notify that this entity is being cleaned up?
|
2016-06-26 14:47:27 +02:00
|
|
|
if (VALID_ENTITY(mID))
|
2016-03-24 07:44:01 +01:00
|
|
|
{
|
2016-05-22 05:20:38 +02:00
|
|
|
Core::Get().EmitCheckpointDestroyed(mID, SQMOD_DESTROY_CLEANUP, NullObject());
|
2016-03-24 07:44:01 +01:00
|
|
|
}
|
2016-05-22 05:20:38 +02:00
|
|
|
// Is there a manager instance associated with this entity?
|
|
|
|
if (mInst)
|
2016-03-24 07:44:01 +01:00
|
|
|
{
|
2016-05-22 05:20:38 +02:00
|
|
|
// Prevent further use of this entity
|
|
|
|
mInst->m_ID = -1;
|
|
|
|
// Release user data to avoid dangling or circular references
|
|
|
|
mInst->m_Data.Release();
|
2016-03-24 07:44:01 +01:00
|
|
|
}
|
2016-05-22 05:20:38 +02:00
|
|
|
// Are we supposed to clean up this entity?
|
2016-06-26 14:47:27 +02:00
|
|
|
if (VALID_ENTITY(mID) && (mFlags & ENF_OWNED))
|
2016-03-24 07:44:01 +01:00
|
|
|
{
|
2016-06-26 14:47:27 +02:00
|
|
|
// Block the entity pool changes notification from triggering the destroy event
|
|
|
|
const BitGuardU16 bg(mFlags, static_cast< Uint16 >(ENF_LOCKED));
|
|
|
|
// Now attempt to destroy this entity from the server
|
2016-05-22 05:20:38 +02:00
|
|
|
_Func->DeleteCheckPoint(mID);
|
2016-03-24 07:44:01 +01:00
|
|
|
}
|
2016-05-22 05:20:38 +02:00
|
|
|
// Don't release the callbacks abruptly in destructor
|
|
|
|
Core::ResetFunc(*this);
|
2016-03-24 07:44:01 +01:00
|
|
|
}
|
|
|
|
|
2016-05-22 05:20:38 +02:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
Core::KeybindInst::~KeybindInst()
|
2016-03-24 07:44:01 +01:00
|
|
|
{
|
2016-05-22 05:20:38 +02:00
|
|
|
// Should we notify that this entity is being cleaned up?
|
2016-06-26 14:47:27 +02:00
|
|
|
if (VALID_ENTITY(mID))
|
2016-03-24 07:44:01 +01:00
|
|
|
{
|
2016-05-22 05:20:38 +02:00
|
|
|
Core::Get().EmitKeybindDestroyed(mID, SQMOD_DESTROY_CLEANUP, NullObject());
|
2016-03-24 07:44:01 +01:00
|
|
|
}
|
2016-05-22 05:20:38 +02:00
|
|
|
// Is there a manager instance associated with this entity?
|
|
|
|
if (mInst)
|
2016-03-24 07:44:01 +01:00
|
|
|
{
|
2016-05-22 05:20:38 +02:00
|
|
|
// Prevent further use of this entity
|
|
|
|
mInst->m_ID = -1;
|
|
|
|
// Release user data to avoid dangling or circular references
|
|
|
|
mInst->m_Data.Release();
|
2016-03-24 07:44:01 +01:00
|
|
|
}
|
2016-05-22 05:20:38 +02:00
|
|
|
// Are we supposed to clean up this entity?
|
2016-06-26 14:47:27 +02:00
|
|
|
if (VALID_ENTITY(mID) && (mFlags & ENF_OWNED))
|
2016-03-24 07:44:01 +01:00
|
|
|
{
|
2016-06-26 14:47:27 +02:00
|
|
|
// Block the entity pool changes notification from triggering the destroy event
|
|
|
|
const BitGuardU16 bg(mFlags, static_cast< Uint16 >(ENF_LOCKED));
|
|
|
|
// Now attempt to destroy this entity from the server
|
2016-05-22 05:20:38 +02:00
|
|
|
_Func->RemoveKeyBind(mID);
|
2016-03-24 07:44:01 +01:00
|
|
|
}
|
2016-05-22 05:20:38 +02:00
|
|
|
// Don't release the callbacks abruptly in destructor
|
|
|
|
Core::ResetFunc(*this);
|
2016-03-24 07:44:01 +01:00
|
|
|
}
|
|
|
|
|
2016-05-22 05:20:38 +02:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
Core::ObjectInst::~ObjectInst()
|
2015-09-30 02:56:11 +02:00
|
|
|
{
|
2016-05-22 05:20:38 +02:00
|
|
|
// Should we notify that this entity is being cleaned up?
|
2016-06-26 14:47:27 +02:00
|
|
|
if (VALID_ENTITY(mID))
|
2015-09-30 02:56:11 +02:00
|
|
|
{
|
2016-05-22 05:20:38 +02:00
|
|
|
Core::Get().EmitObjectDestroyed(mID, SQMOD_DESTROY_CLEANUP, NullObject());
|
2015-11-07 11:17:39 +01:00
|
|
|
}
|
2016-05-22 05:20:38 +02:00
|
|
|
// Is there a manager instance associated with this entity?
|
|
|
|
if (mInst)
|
2016-03-22 02:29:27 +01:00
|
|
|
{
|
2016-05-22 05:20:38 +02:00
|
|
|
// Prevent further use of this entity
|
|
|
|
mInst->m_ID = -1;
|
|
|
|
// Release user data to avoid dangling or circular references
|
|
|
|
mInst->m_Data.Release();
|
2016-03-22 02:29:27 +01:00
|
|
|
}
|
2016-05-22 05:20:38 +02:00
|
|
|
// Are we supposed to clean up this entity?
|
2016-06-26 14:47:27 +02:00
|
|
|
if (VALID_ENTITY(mID) && (mFlags & ENF_OWNED))
|
2016-03-22 02:29:27 +01:00
|
|
|
{
|
2016-06-26 14:47:27 +02:00
|
|
|
// Block the entity pool changes notification from triggering the destroy event
|
|
|
|
const BitGuardU16 bg(mFlags, static_cast< Uint16 >(ENF_LOCKED));
|
|
|
|
// Now attempt to destroy this entity from the server
|
2016-05-22 05:20:38 +02:00
|
|
|
_Func->DeleteObject(mID);
|
2016-03-22 02:29:27 +01:00
|
|
|
}
|
2016-05-22 05:20:38 +02:00
|
|
|
// Don't release the callbacks abruptly in destructor
|
|
|
|
Core::ResetFunc(*this);
|
2016-02-20 23:25:00 +01:00
|
|
|
}
|
|
|
|
|
2016-05-22 05:20:38 +02:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
Core::PickupInst::~PickupInst()
|
2016-02-20 23:25:00 +01:00
|
|
|
{
|
2016-05-22 05:20:38 +02:00
|
|
|
// Should we notify that this entity is being cleaned up?
|
2016-06-26 14:47:27 +02:00
|
|
|
if (VALID_ENTITY(mID))
|
2015-10-29 21:06:31 +01:00
|
|
|
{
|
2016-05-22 05:20:38 +02:00
|
|
|
Core::Get().EmitPickupDestroyed(mID, SQMOD_DESTROY_CLEANUP, NullObject());
|
2015-10-29 21:06:31 +01:00
|
|
|
}
|
2016-05-22 05:20:38 +02:00
|
|
|
// Is there a manager instance associated with this entity?
|
|
|
|
if (mInst)
|
2016-03-22 02:29:27 +01:00
|
|
|
{
|
2016-05-22 05:20:38 +02:00
|
|
|
// Prevent further use of this entity
|
|
|
|
mInst->m_ID = -1;
|
|
|
|
// Release user data to avoid dangling or circular references
|
|
|
|
mInst->m_Data.Release();
|
2016-03-22 02:29:27 +01:00
|
|
|
}
|
2016-05-22 05:20:38 +02:00
|
|
|
// Are we supposed to clean up this entity?
|
2016-06-26 14:47:27 +02:00
|
|
|
if (VALID_ENTITY(mID) && (mFlags & ENF_OWNED))
|
2016-03-22 02:29:27 +01:00
|
|
|
{
|
2016-06-26 14:47:27 +02:00
|
|
|
// Block the entity pool changes notification from triggering the destroy event
|
|
|
|
const BitGuardU16 bg(mFlags, static_cast< Uint16 >(ENF_LOCKED));
|
|
|
|
// Now attempt to destroy this entity from the server
|
2016-05-22 05:20:38 +02:00
|
|
|
_Func->DeletePickup(mID);
|
2016-03-22 02:29:27 +01:00
|
|
|
}
|
2016-05-22 05:20:38 +02:00
|
|
|
// Don't release the callbacks abruptly in destructor
|
|
|
|
Core::ResetFunc(*this);
|
2015-09-30 02:56:11 +02:00
|
|
|
}
|
|
|
|
|
2016-05-22 05:20:38 +02:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
Core::PlayerInst::~PlayerInst()
|
2015-09-30 02:56:11 +02:00
|
|
|
{
|
2016-05-22 05:20:38 +02:00
|
|
|
// Should we notify that this entity is being cleaned up?
|
2016-06-26 14:47:27 +02:00
|
|
|
if (VALID_ENTITY(mID))
|
2016-03-22 02:29:27 +01:00
|
|
|
{
|
2016-05-22 05:20:38 +02:00
|
|
|
Core::Get().EmitPlayerDestroyed(mID, SQMOD_DESTROY_CLEANUP, NullObject());
|
2016-03-22 02:29:27 +01:00
|
|
|
}
|
2016-05-22 05:20:38 +02:00
|
|
|
// Is there a manager instance associated with this entity?
|
|
|
|
if (mInst)
|
2016-03-22 02:29:27 +01:00
|
|
|
{
|
2016-05-22 05:20:38 +02:00
|
|
|
// Prevent further use of this entity
|
|
|
|
mInst->m_ID = -1;
|
|
|
|
// Release user data to avoid dangling or circular references
|
|
|
|
mInst->m_Data.Release();
|
|
|
|
// Release the used memory buffer
|
|
|
|
mInst->m_Buffer.ResetAll();
|
2016-02-20 23:25:00 +01:00
|
|
|
}
|
2016-05-22 05:20:38 +02:00
|
|
|
// Don't release the callbacks abruptly in destructor
|
|
|
|
Core::ResetFunc(*this);
|
2015-09-30 02:56:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
2016-02-20 23:25:00 +01:00
|
|
|
Core::VehicleInst::~VehicleInst()
|
|
|
|
{
|
2016-03-24 04:28:55 +01:00
|
|
|
// Should we notify that this entity is being cleaned up?
|
2016-06-26 14:47:27 +02:00
|
|
|
if (VALID_ENTITY(mID))
|
2016-02-20 23:25:00 +01:00
|
|
|
{
|
2016-05-22 05:20:38 +02:00
|
|
|
Core::Get().EmitVehicleDestroyed(mID, SQMOD_DESTROY_CLEANUP, NullObject());
|
2016-03-24 04:28:55 +01:00
|
|
|
}
|
|
|
|
// Is there a manager instance associated with this entity?
|
|
|
|
if (mInst)
|
|
|
|
{
|
|
|
|
// Prevent further use of this entity
|
|
|
|
mInst->m_ID = -1;
|
|
|
|
// Release user data to avoid dangling or circular references
|
|
|
|
mInst->m_Data.Release();
|
|
|
|
}
|
|
|
|
// Are we supposed to clean up this entity?
|
2016-06-26 14:47:27 +02:00
|
|
|
if (VALID_ENTITY(mID) && (mFlags & ENF_OWNED))
|
2016-03-24 04:28:55 +01:00
|
|
|
{
|
2016-06-26 14:47:27 +02:00
|
|
|
// Block the entity pool changes notification from triggering the destroy event
|
|
|
|
const BitGuardU16 bg(mFlags, static_cast< Uint16 >(ENF_LOCKED));
|
|
|
|
// Now attempt to destroy this entity from the server
|
2016-02-20 23:25:00 +01:00
|
|
|
_Func->DeleteVehicle(mID);
|
|
|
|
}
|
2016-03-24 05:59:02 +01:00
|
|
|
// Don't release the callbacks abruptly in destructor
|
2016-05-22 05:20:38 +02:00
|
|
|
Core::ResetFunc(*this);
|
2016-02-20 23:25:00 +01:00
|
|
|
}
|
2015-09-30 02:56:11 +02:00
|
|
|
|
|
|
|
} // Namespace:: SqMod
|