├── .gitignore ├── CMakeLists.txt ├── README.MULTIPLAYER ├── README.markdown ├── cmake └── Modules │ └── FindXPSDK.cmake ├── include ├── XPCAircraft.h ├── XPMPMultiplayer.h └── XPMPPlaneRenderer.h └── src ├── BitmapUtils.cpp ├── BitmapUtils.h ├── Interpolation.h ├── Interpolation.i ├── PlatformUtils.h ├── PlatformUtils.lin.cpp ├── PlatformUtils.mac.cpp ├── PlatformUtils.win.cpp ├── ResourceManager.h ├── TexUtils.cpp ├── TexUtils.h ├── XOGLUtils.cpp ├── XOGLUtils.h ├── XObjDefs.cpp ├── XObjDefs.h ├── XObjReadWrite.cpp ├── XObjReadWrite.h ├── XPCAircraft.cpp ├── XPMPMultiplayer.cpp ├── XPMPMultiplayerCSL.cpp ├── XPMPMultiplayerCSL.h ├── XPMPMultiplayerCSLOffset.cpp ├── XPMPMultiplayerCSLOffset.h ├── XPMPMultiplayerObj.cpp ├── XPMPMultiplayerObj.h ├── XPMPMultiplayerObj8.cpp ├── XPMPMultiplayerObj8.h ├── XPMPMultiplayerVars.cpp ├── XPMPMultiplayerVars.h ├── XPMPPlaneRenderer.cpp ├── XStringUtils.h ├── XUtils.cpp └── XUtils.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsquawkbox/libxplanemp/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsquawkbox/libxplanemp/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.MULTIPLAYER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsquawkbox/libxplanemp/HEAD/README.MULTIPLAYER -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsquawkbox/libxplanemp/HEAD/README.markdown -------------------------------------------------------------------------------- /cmake/Modules/FindXPSDK.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsquawkbox/libxplanemp/HEAD/cmake/Modules/FindXPSDK.cmake -------------------------------------------------------------------------------- /include/XPCAircraft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsquawkbox/libxplanemp/HEAD/include/XPCAircraft.h -------------------------------------------------------------------------------- /include/XPMPMultiplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsquawkbox/libxplanemp/HEAD/include/XPMPMultiplayer.h -------------------------------------------------------------------------------- /include/XPMPPlaneRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsquawkbox/libxplanemp/HEAD/include/XPMPPlaneRenderer.h -------------------------------------------------------------------------------- /src/BitmapUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsquawkbox/libxplanemp/HEAD/src/BitmapUtils.cpp -------------------------------------------------------------------------------- /src/BitmapUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsquawkbox/libxplanemp/HEAD/src/BitmapUtils.h -------------------------------------------------------------------------------- /src/Interpolation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsquawkbox/libxplanemp/HEAD/src/Interpolation.h -------------------------------------------------------------------------------- /src/Interpolation.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsquawkbox/libxplanemp/HEAD/src/Interpolation.i -------------------------------------------------------------------------------- /src/PlatformUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsquawkbox/libxplanemp/HEAD/src/PlatformUtils.h -------------------------------------------------------------------------------- /src/PlatformUtils.lin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsquawkbox/libxplanemp/HEAD/src/PlatformUtils.lin.cpp -------------------------------------------------------------------------------- /src/PlatformUtils.mac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsquawkbox/libxplanemp/HEAD/src/PlatformUtils.mac.cpp -------------------------------------------------------------------------------- /src/PlatformUtils.win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsquawkbox/libxplanemp/HEAD/src/PlatformUtils.win.cpp -------------------------------------------------------------------------------- /src/ResourceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsquawkbox/libxplanemp/HEAD/src/ResourceManager.h -------------------------------------------------------------------------------- /src/TexUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsquawkbox/libxplanemp/HEAD/src/TexUtils.cpp -------------------------------------------------------------------------------- /src/TexUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsquawkbox/libxplanemp/HEAD/src/TexUtils.h -------------------------------------------------------------------------------- /src/XOGLUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsquawkbox/libxplanemp/HEAD/src/XOGLUtils.cpp -------------------------------------------------------------------------------- /src/XOGLUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsquawkbox/libxplanemp/HEAD/src/XOGLUtils.h -------------------------------------------------------------------------------- /src/XObjDefs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsquawkbox/libxplanemp/HEAD/src/XObjDefs.cpp -------------------------------------------------------------------------------- /src/XObjDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsquawkbox/libxplanemp/HEAD/src/XObjDefs.h -------------------------------------------------------------------------------- /src/XObjReadWrite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsquawkbox/libxplanemp/HEAD/src/XObjReadWrite.cpp -------------------------------------------------------------------------------- /src/XObjReadWrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsquawkbox/libxplanemp/HEAD/src/XObjReadWrite.h -------------------------------------------------------------------------------- /src/XPCAircraft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsquawkbox/libxplanemp/HEAD/src/XPCAircraft.cpp -------------------------------------------------------------------------------- /src/XPMPMultiplayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsquawkbox/libxplanemp/HEAD/src/XPMPMultiplayer.cpp -------------------------------------------------------------------------------- /src/XPMPMultiplayerCSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsquawkbox/libxplanemp/HEAD/src/XPMPMultiplayerCSL.cpp -------------------------------------------------------------------------------- /src/XPMPMultiplayerCSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsquawkbox/libxplanemp/HEAD/src/XPMPMultiplayerCSL.h -------------------------------------------------------------------------------- /src/XPMPMultiplayerCSLOffset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsquawkbox/libxplanemp/HEAD/src/XPMPMultiplayerCSLOffset.cpp -------------------------------------------------------------------------------- /src/XPMPMultiplayerCSLOffset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsquawkbox/libxplanemp/HEAD/src/XPMPMultiplayerCSLOffset.h -------------------------------------------------------------------------------- /src/XPMPMultiplayerObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsquawkbox/libxplanemp/HEAD/src/XPMPMultiplayerObj.cpp -------------------------------------------------------------------------------- /src/XPMPMultiplayerObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsquawkbox/libxplanemp/HEAD/src/XPMPMultiplayerObj.h -------------------------------------------------------------------------------- /src/XPMPMultiplayerObj8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsquawkbox/libxplanemp/HEAD/src/XPMPMultiplayerObj8.cpp -------------------------------------------------------------------------------- /src/XPMPMultiplayerObj8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsquawkbox/libxplanemp/HEAD/src/XPMPMultiplayerObj8.h -------------------------------------------------------------------------------- /src/XPMPMultiplayerVars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsquawkbox/libxplanemp/HEAD/src/XPMPMultiplayerVars.cpp -------------------------------------------------------------------------------- /src/XPMPMultiplayerVars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsquawkbox/libxplanemp/HEAD/src/XPMPMultiplayerVars.h -------------------------------------------------------------------------------- /src/XPMPPlaneRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsquawkbox/libxplanemp/HEAD/src/XPMPPlaneRenderer.cpp -------------------------------------------------------------------------------- /src/XStringUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsquawkbox/libxplanemp/HEAD/src/XStringUtils.h -------------------------------------------------------------------------------- /src/XUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsquawkbox/libxplanemp/HEAD/src/XUtils.cpp -------------------------------------------------------------------------------- /src/XUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xsquawkbox/libxplanemp/HEAD/src/XUtils.h --------------------------------------------------------------------------------