Sample Plugins (Metamod:Source)

From AlliedModders Wiki
Jump to: navigation, search

Metamod:Source comes with two sample plugins: stub and sample. This article is a brief overview of how to read and compile them. They are intended as a baseline for developing your own plugins, though they are certainly not required for your own development.

Metamod:Source is a C++ environment, but this is not a C++ tutorial. You should have sufficient knowledge of computer organization (memory, pointers, addressing) and intermediate experience with C++. Most importantly, you should be willing to dive into header files to research API definitions (which is necessary for the HL2SDK regardless).

Make sure to read the overview article, Metamod:Source Development.

Introduction

Before you begin, you should set up your Metamod:Source Environment. If you fail to complete this step, it is unlikely much else in this article will work for you.

The two sample plugins provided are:

  • stub_mm - Bare-bones plugin that does almost nothing.
  • sample_mm - More complete example plugin which implements a few things that Valve's serverplugin_sample does, such as hooking functions, creating ConVars, console commands, and showing dialog boxes.


The Engine Divide

The Orange Box and Episode 1 engines are not compatible, and thus there is a division:

  • Metamod:Source 1.4 API, Episode 1 and lower
  • Metamod:Source 1.6 API, Orange Box and higher

This is explained more in MM:S API Differences.

As such, you will notice various idiosyncrasies in the sample plugins. For example, METAMOD_PLAPI_VERSION exists in Metamod:Source 1.6 or later, so it is used to decide between GetEngineFactory (1.6) or engineFactory (1.4). Similarly, the sample plugins use two macros:

  • ENGINE_ORANGEBOX - Orange Box build
  • ENGINE_ORIGINAL - Original/Episode 1 build

These two macros are used in a few places to toggle functionality compatible for the given build.

For more information, see:


Compiling

Windows

Both plugins have a Visual Studio 2008 project file in their msvc9 folders. Each plugin has six build modes:

  • Release - Left 4 Dead - Release mode, Left 4 Dead
  • Debug - Left 4 Dead - Debug mode, Left 4 Dead
  • Release - Orange Box - Release mode, Orange Box
  • Debug - Orange Box - Debug mode, Orange Box
  • Release - Original - Release mode, Original/Episode1
  • Debug - Original - Debug mode, Original/Episode1

There exists normal "Release" and "Debug" build modes -- you should not use them, as they are not configured.

Linux

On Linux, you cannot simply type "make" in the folder containing the Makefile. You must specify a combination of parameters:

  • ENGINE - Required. Must be either "orangebox" or "original" or "left4dead".
  • DEBUG - Optional. Can be empty (Release mode) or "true" (Debug mode).

Binaries and object files will be written to one of the following folders:

  • Release.left4dead
  • Debug.left4dead
  • Debug.orangebox
  • Release.orangebox
  • Debug.orangebox
  • Release.original
  • Debug.original

Examples of building one of the example plugins:

#Episode 1, debug mode
make DEBUG=true ENGINE=original
#Orange Box, release mode
make ENGINE=orangebox
#Cleaning the Episode 1 build
make clean ENGINE=original

Note that you may need to edit the folder locations at the top of the Makefile, in case you set up your paths differently. Note ignore any messages that start with the word echo. A successful build creates a Debug.[mod]/filename.so or Release.[mod]/filename.so plugin file.

Stub Plugin

The stub plugin is a very simple, bare-bones plugin. It has little, if anything, beyond an implementation of the required API callbacks.

It hooks one function, IServerGameDLL::ServerActivate, which is a callback fired after IServerGameDLL::LevelInit.

Note that for the most part, stub_mm is free of compatibility cruft, whereas sample_mm tries to abstract more. This is so stub_mm doesn't appear to be "hiding" anything -- it's laid out very simply.


Sample Plugin

The full sample plugin is a bit more complicated, as it contains some of the examples from Valve's serverplugin_sample. It also may be a bit messy to read because of the engine compatibility wrappers in it.

Compatibility Wrappers

The first file of importance is engine_wrappers.h, which is full of compatibility shims. For example:

  • engineFactory became GetEngineFactory from 1.4 to 1.6
  • serverFactory became GetServerFactory from 1.4 to 1.6
  • ISmmAPI::Format did not exist in 1.4, so we created a simple #define to use snprintf instead. You could also use Valve's Q_snprintf if you desired.
  • Valve renamed VENGINE_CVAR_INTERFACE_VERSION to CVAR_INTERFACE_VERSION from Episode 1 to Orange Box.
  • The syntax to SH_CALL changed from 1.4 to 1.6 (which we have demonstrated for completeness and will be explained later).

Also note the CCommand class. This is a wrapper around the IVEngineServer::Cmd_Arg* functions, which were removed in Orange Box. Valve replaced it with a newer, more re-entrant set of functions based around CCommand. Rather than create two codebases, we've simply wrapped the old functions in the new API. The functionality isn't exactly the same (becaose of re-entrancy), but it works nicely for our purposes. You can read more about this trick in Porting to Orange Box.

Overview

BaseAccessor

This is a singleton class responsible for registering anything extending from ConCommandBase (ConVar and ConCommand). You only need one, and it should wrap META_REGCVAR.

Note that the accessor is invoked differently based on the engine version. For Orange Box, g_pCVar is assigned and ConVar_Register is called, whereas on Episode 1, only ConCommandBaseMgr::OneTimeInit is needed.

CallClasses

SourceHook has a feature where you can invoke a virtual function while bypassing all hooks on it. In SourceHook v4 (Metamod:Source 1.4 and lower), SH_CALL required a special object called a call class. This was removed in SourceHook v5. However, to be compatible with both MM:S 1.4 and 1.6, the sample plugin creates and destroys a call class when necessary.

For more information on this syntax and what it means, see: Sourcehook Development#Bypassing_Hooks.

Note that the ENGINE_CALL macro is in engine_wrappers.h, and wraps SH_CALL based on the MM:S version.

VSP Listening

Some of the sample functionality requires an IServerPluginCallbacks pointer, and Metamod:Source can provide one for you.

In the Metamod:Source 1.4 API, you had to implement IMetamodListener, and do something like this:

		ismm->AddListener(this, this);
		ismm->EnableVSPListener();

Then you had to wait for the callback to give you a correct pointer. In Metamod:Source 1.6, you can attempt to get the point immediately with:

if ((vsp_callbacks = ismm->GetVSPInfo(NULL)) == NULL)

Hooked Functions

The sample plugin hooks most of the functions available to IServerPluginCallbacks, in order to show you how to re-implement Valve's functionality.

Recall a few concepts:

  • In SourceHook, hooks can either be "pre" (pre-empting the final call), or "post" (occurring after the pre hooks and final call, if any).
  • In Valve Server Plugins, only hooks labeled with PLUGIN_RESULT can override functionality. SourceHook, however, can override the functionality of any function. The default action is to continue (or pass-through), though there are options to override and supercede (see the Sourcehook Development#Hook_Functions for more information).
  • A hook with a return value must return a value, or else the compiler will complain. However, unless you use RETURN_META_VALUE with MRES_SUPERCEDE or MRES_OVERRIDE, the value will not affect anything.

The following are generic hooks that Valve Server Plugins cannot override, so in the example they're hooked as post.

  • IServerGameDLL::LevelInit: Translates to LevelInit.
  • IServerGameDLL::ServerActivate: Translates to ServerActivate.
  • IServerGameDLL::GameFrame: Translates to GameFrame.
  • IServerGameDLL::LevelShutdown: Translates to LevelShutdown. (This is not actually hooked false in the example, but you probably shouldn't try overriding it.)
  • IServerGameClients::ClientActive: Translates to ClientActive. Not a very useful callback, not recommended for real work.
  • IServerGameClients::ClientDisconnect: Translates to ClientDisconnect. Called when the client disconnects.
  • IServerGameClients::ClientPutInServer: Translates to ClientPutInServer. Called when the client is put in-game and is fully instantiated (that is, IPlayerInfoManager will return valid results).
  • IServerGameClients::SetCommandClient: Translates to SetCommandClient. Called when a console command bound to a ConCommand is invoked, to tell all listeners which client typed the command. The index supplied is the client index minus one (that is, -1 for the server console, 0 for the first client, et cetera).

The following hooks are pre-empted, and thus can be overridden or superseded:

  • IServerGameClients::ClientSettingsChanged: Translates to ClientSettingsChanged. Called when a client's info buffer changes (that is, anything from IVEngineServer::GetClientConVarValue). Overriding it will prevent the game from being notified.
  • IServerGameClients::ClientConnect: Translates to ClientConnect. Called when a client is connecting. You can override/supersede with a value of false to reject the client (note, of course, you should fill the rejection message buffer).
  • IServerGameClients::ClientCommand: Translates to ClientCommand. Called when the client types unrecognized text in their client console. If you don't override this function, the original game's handler will be called. If the game doesn't recognize the text, it will print "Unknown command" or something similar. Therefore, if you wish to block this text from appearing, you should supercede when you recognize the text. The sample plugin shows how to do this for a few commands.


The VDF Files

Note that both stub_mm and sample_mm come with their own VDF files. These are example files that load their respective binaries from the addons folder. Make two notes about this:

  • VDF files go in Metamod's folder. That is, addons/metamod (or whatever mm_basedir is). They are not Valve Server Plugin files and they cannot go in the addons folder.
  • If your plugin has more than one file, or it creates other files, it may be prudent to place it in its own sub-folder. The sample plugins are small and thus we placed the binaries in addons for simplicity. The extended convention for more complicated plugins is:
    • addons/NAME/bin/NAME_mm.dll or addons/NAME/bin/NAME_mm_i486.so. For example, addons/sourcemod/bin/sourcemod_mm is SourceMod's VDF path, since it has a large directory structure.
    • Note: This convention is not required, but it is recommended.


Modifying/Reusing the Build Files

Linux

The Makefiles are organized into four main sections:

  • User-specific paths
  • Project-specific settings
  • Build logic
  • Build rules

The most important area to edit for a new project would be the "project-specific settings." These are variables such as:

  • OPT_FLAGS - Optimization flags (release-only).
  • DEBUG_FLAGS - Debug-only flags.
  • GCC4_FLAGS - Flags that are only used with GCC4.
  • CPP - The compiler to invoke.
  • BINARY - The binary file name to produce.
  • LINK - Extra link options.
  • INCLUDE - Extra include options (don't forget that you need -I to each item).

You should probably keep the -DENGINE_ORANGEBOX and -DENGINE_ORIGINAL macros.

For more information on flags and distribution, see Metamod:Source Development#Compiling.

Windows

You should probably keep the ENGINE_ORANGEBOX and ENGINE_ORIGINAL preprocessor macros.

You can edit the output binary name under the Linker options in the Project Properties dialog.

You should not add global include folders in order to compile. Set up your Metamod:Source Environment and, if you need more include folders, add them to the "Additional Include Directories" option under the C++ options in the Project Properties dialog. It is a semicolon-delimited list, for example: $(SOURCEMM14);$(HL2SDK)\public.

For the most part, editing a Visual Studio project is otherwise self-explanatory. See Metamod:Source Development#Compiling for more information on required "project-from-scratch" options.