XPMP2
X-Plane multiplayer library 2 - using instancing
How to Use XPMP2

This page probably requires more attention... but there is a working sample plugin available in the XPMP2-Sample folder for you to study:

Sample Plugin

This package comes with a sample plugin in the XPMP2-Sample folder. It is a complete plugin including build projects and CMake setup. It displays 3 aircraft flying circles in front of the user's plane. Each of the 3 aircraft is using a different technology: the now recommended way of subclassing XPMP2::Aircraft, the legacy way of subclassing XPCAircraft (as used by LiveTraffic v1.x), and by calling standard C functions.

For the sample plugin to work you need to follow instruction in Deploying XPMP2-based Plugins for

  • a Resources folder under the plugin's folder holding the 3 files from the Resources folder provided here with XPMP2,
  • CSL models installed in folders under that Resources folder.
    • The sample plugin tries to find matches for "B06/TXB", "DH8A/BER", and "A321", all available in the Bluebell packages. But matching will find anything if you provide at least one model.

Its source code XPMP2-Sample.cpp includes a lot of comments explaining what is happening. Read them!

Expected folder structure of the installation:

<X-Plane>/Resources/plugins/XPMP2-Sample/
lin_x64/XPMP2-Sample.xpl
mac_x64/XPMP2-Sample.xpl
Resources/
CSL/ <-- install models here
Doc8643.txt
MapIcons.png
Obj8DataRefs.txt
related.txt
relOp.txt
win_x64/XPMP2-Sample.xpl

Binaries and Header Files

You don't need to build the library yourself if you don't want. Archives with headers and release/debug builds are available in the Release section here on GitHub.

Anatomy of Your Plugin using XPMP2

Generically you should probably use XPMP2 as follows:

  • XPluginEnable: Initialize XPMP2 using
    • XPMPMultiplayerInit,
    • XPMPLoadCSLPackage once or multiple times, and
    • XPMPMultiplayerEnable.
  • During runtime, e.g. in flight loop callbacks,
    • Create new aircraft by creating new objects of your aircraft class, which derives from XPMP2::Aircraft
    • Remove aircraft by deleting that object
  • XPluginDisable:
    • Remove all your remaining aircraft, then call
    • XPMPMultiplayerDisable and
    • XPMPMultiplayerCleanup

Subclass <tt>XPMP2::Aircraft</tt>

New plugin implementations are strongly advised to directly sub-class from the new class XPMP2::Aircraft, which is the actual aircraft representation.

See the SampleAircraft class defined in XPMP2-Sample/XPMP2-Sample.cpp for an example implementation.

In your class, override the abstract function UpdatePosition() and

  • provide current position and orientation
    • via a call to SetLocation(), or
    • by writing directly into drawInfo;
  • provide plane configuration details
    • calling the many Get/Set member functions as needed, or
    • writing directly into the v array using the elements of enum DR_VALS as indexes.

This way minimises the number of copy operations needed. drawInfo and the v array are directly passed on to the XPLMInstanceSetPosition call.

Other values like label, aiPrio, or acInfoTexts can also be updated by your UpdatePosition() implementation and are used when drawing labels or providing information externally like via AI/multiplayer dataRefs.