Difference between revisions of "Optional Requirements (SourceMod Scripting)"

From AlliedModders Wiki
Jump to: navigation, search
(Update example code to transitional syntax)
Line 33: Line 33:
 
To mark a native as optional, use <tt>MarkNativeAsOptional</tt>.  It should be called in <tt>AskPluginLoad2</tt>.  For example:
 
To mark a native as optional, use <tt>MarkNativeAsOptional</tt>.  It should be called in <tt>AskPluginLoad2</tt>.  For example:
  
<pawn>public APLRes:AskPluginLoad2(Handle:myself, bool:late, String:error[], err_max)
+
<pawn>public APLRes AskPluginLoad2(Handle myself, bool late, char[] error, int err_max)
 
{
 
{
 
MarkNativeAsOptional("SDKCall");
 
MarkNativeAsOptional("SDKCall");
Line 42: Line 42:
 
If you use a plugin or extension as an optional dependency, you may need to check whether it exists.  For example, let's say we're relying on a plugin with the library name of "ircrelay."  The way to always know whether ircrelay is loaded (and working) is:
 
If you use a plugin or extension as an optional dependency, you may need to check whether it exists.  For example, let's say we're relying on a plugin with the library name of "ircrelay."  The way to always know whether ircrelay is loaded (and working) is:
  
<pawn>new bool:ircrelay = false;
+
<pawn>bool ircrelay = false;
  
public OnAllPluginsLoaded()
+
public void OnAllPluginsLoaded()
 
{
 
{
 
ircrelay = LibraryExists("ircrelay");
 
ircrelay = LibraryExists("ircrelay");
 
}
 
}
  
public OnLibraryRemoved(const String:name[])
+
public void OnLibraryRemoved(const char[] name)
 
{
 
{
 
if (StrEqual(name, "ircrelay"))
 
if (StrEqual(name, "ircrelay"))
Line 57: Line 57:
 
}
 
}
  
public OnLibraryAdded(const String:name[])
+
public void OnLibraryAdded(const char[] name)
 
{
 
{
 
if (StrEqual(name, "ircrelay"))
 
if (StrEqual(name, "ircrelay"))
Line 69: Line 69:
 
Allowing other plugins to use your plugin as a library requires making an include file with two structures (the second of which is optional).  The first structure must look like this:
 
Allowing other plugins to use your plugin as a library requires making an include file with two structures (the second of which is optional).  The first structure must look like this:
  
<pawn>public SharedPlugin:__pl_myfile =  
+
<pawn>public SharedPlugin __pl_myfile =  
 
{
 
{
 
name = "myfile",
 
name = "myfile",
Line 88: Line 88:
 
Additionally, you should expose a function which marks all of your natives as optional.  You can do this by:
 
Additionally, you should expose a function which marks all of your natives as optional.  You can do this by:
 
<pawn>#if !defined REQUIRE_PLUGIN
 
<pawn>#if !defined REQUIRE_PLUGIN
public __pl_myfile_SetNTVOptional()
+
public void __pl_myfile_SetNTVOptional()
 
{
 
{
 
MarkNativeAsOptional("native1");
 
MarkNativeAsOptional("native1");
Line 101: Line 101:
  
 
<pawn>
 
<pawn>
public APLRes:AskPluginLoad2(Handle:myself, bool:late, String:error[], err_max)
+
public APLRes AskPluginLoad2(Handle myself, bool late, char[] error, int err_max)
 
{
 
{
 
//... code here ...
 
//... code here ...
Line 119: Line 119:
 
;''Bounty: bounty.config.sp''
 
;''Bounty: bounty.config.sp''
 
<pawn>
 
<pawn>
new bool:plugin_IrcRelay = LibraryExists("ircrelay");
+
bool plugin_IrcRelay = LibraryExists("ircrelay");
 
if ((BountyIRC) && (plugin_IrcRelay))
 
if ((BountyIRC) && (plugin_IrcRelay))
 
{
 
{
Line 133: Line 133:
 
;''IRC Relay: ircrelay.sp''
 
;''IRC Relay: ircrelay.sp''
 
<pawn>
 
<pawn>
public APLRes:AskPluginLoad2(Handle:myself, bool:late, String:error[], err_max)
+
public APLRes AskPluginLoad2(Handle myself, bool late, char[] error, int err_max)
 
{
 
{
 
//... code here ...
 
//... code here ...
Line 143: Line 143:
 
;''IRC Relay: ircrelay.inc''
 
;''IRC Relay: ircrelay.inc''
 
<pawn>
 
<pawn>
public SharedPlugin:__pl_ircrelay =  
+
public SharedPlugin __pl_ircrelay =  
 
{
 
{
 
name = "ircrelay",
 
name = "ircrelay",
Line 155: Line 155:
  
 
#if !defined REQUIRE_PLUGIN
 
#if !defined REQUIRE_PLUGIN
public __pl_ircrelay_SetNTVOptional()
+
public void __pl_ircrelay_SetNTVOptional()
 
{
 
{
 
MarkNativeAsOptional("IrcMessage");
 
MarkNativeAsOptional("IrcMessage");

Revision as of 21:43, 25 July 2016

Normally, if you use natives from an extension or another plugin, your plugin will not load unless those natives exist. However, it is possible to make your dependencies "optional." This article details how.

Disabling Requirements

Extensions

To disable an extension being marked as "required," remove the REQUIRE_EXTENSIONS define. For example:

#include <sourcemod>
#undef REQUIRE_EXTENSIONS
#include <sdktools>

Note that any extensions included after the #undef will also be marked as not required. Thus, you may need to move the include down, or do something like:

#include <sourcemod>
#undef REQUIRE_EXTENSIONS
#include <sdktools>
#define REQUIRE_EXTENSIONS

Plugins

To disable an plugin being marked as "required," remove the REQUIRE_PLUGIN define. For example:

#include <sourcemod>
#undef REQUIRE_PLUGIN
#include <ircrelay>

Note that any plugins included after the #undef will also be marked as not required. Thus, you may need to move the include down, or do something like:

#include <sourcemod>
#undef REQUIRE_PLUGIN
#include <ircrelay>
#define REQUIRE_PLUGIN

Optional Natives

To mark a native as optional, use MarkNativeAsOptional. It should be called in AskPluginLoad2. For example:

public APLRes AskPluginLoad2(Handle myself, bool late, char[] error, int err_max)
{
	MarkNativeAsOptional("SDKCall");
	return APLRes_Success;
}

Checking Optional Dependencies

If you use a plugin or extension as an optional dependency, you may need to check whether it exists. For example, let's say we're relying on a plugin with the library name of "ircrelay." The way to always know whether ircrelay is loaded (and working) is:

bool ircrelay = false;
 
public void OnAllPluginsLoaded()
{
	ircrelay = LibraryExists("ircrelay");
}
 
public void OnLibraryRemoved(const char[] name)
{
	if (StrEqual(name, "ircrelay"))
	{
		ircrelay = false;
	}
}
 
public void OnLibraryAdded(const char[] name)
{
	if (StrEqual(name, "ircrelay"))
	{
		ircrelay = true;
	}
}


Creating a Dependency

Allowing other plugins to use your plugin as a library requires making an include file with two structures (the second of which is optional). The first structure must look like this:

public SharedPlugin __pl_myfile = 
{
	name = "myfile",
	file = "myfile.smx",
#if defined REQUIRE_PLUGIN
	required = 1,
#else
	required = 0,
#endif
};

The basic format is:

  • The variable name MUST start with __pl_ and must end with a unique string.
  • The "name" portion is treated as the library name and must be unique.
  • The filename must match the filename of the plugin implementing the library.
  • The requirement portion should remain unchanged in order to maintain standards.

Additionally, you should expose a function which marks all of your natives as optional. You can do this by:

#if !defined REQUIRE_PLUGIN
public void __pl_myfile_SetNTVOptional()
{
	MarkNativeAsOptional("native1");
	MarkNativeAsOptional("native2");
	MarkNativeAsOptional("native3");
}
#endif

This function will be secretly called before the plugin loads (if and only if the requirement is optional), thus allowing seamless optional usage by third party developers. Note that the __pl_ and _SetNTVOptional portions must be present, and that everything in between must match the ending of __pl_ for the SharedPlugin structure.

You also must register the library name with SourceMod -- again this should be the unique string. This should be done inside the AskPluginLoad2 function.

public APLRes AskPluginLoad2(Handle myself, bool late, char[] error, int err_max)
{
	//... code here ...
	RegPluginLibrary("myfile");
 
	return APLRes_Success;
}

Full Example

Bounty: bounty.sp
#include <sourcemod>
#undef REQUIRE_PLUGIN
#include <ircrelay>
Bounty: bounty.config.sp
bool plugin_IrcRelay = LibraryExists("ircrelay");
if ((BountyIRC) && (plugin_IrcRelay))
{
	RegisterIrcCommand("!bounty", "x", Irc_ViewBounty);
	IrcMessage(CHAN_MASTER, "IRC Bounty Running!");
} else {
	if ((BountyIRC) && (!plugin_IrcRelay))
	{
		BountyConsole_Debug("%t", "Bounty IRC Relay failed");
	}
}
IRC Relay: ircrelay.sp
public APLRes AskPluginLoad2(Handle myself, bool late, char[] error, int err_max)
{
	//... code here ...
	RegPluginLibrary("ircrelay");
 
	return APLRes_Success;
}
IRC Relay: ircrelay.inc
public SharedPlugin __pl_ircrelay = 
{
	name = "ircrelay",
	file = "ircrelay.smx",
#if defined REQUIRE_PLUGIN
	required = 1,
#else
	required = 0,
#endif
};
 
#if !defined REQUIRE_PLUGIN
public void __pl_ircrelay_SetNTVOptional()
{
	MarkNativeAsOptional("IrcMessage");
	MarkNativeAsOptional("RegisterIrcCommand");
	MarkNativeAsOptional("IrcGetCmdArgc");
	MarkNativeAsOptional("IrcGetCmdArgv");
}
#endif

The name value is what will be checked when you run LibraryExists. This allows the bounty script to fully work, even if the IRC relay plugin is not installed and/or running correctly on your server.