Stellarium 0.15.2
Plugins

Table of Contents

Introduction

Plugins are extensions to Stellarium. They are potentially more powerful than scripts, but are more difficult to write and maintain. Unlike scripts, plugins must be compiled for a specific platform, and will typically only be compatible with a particular version of Stellarium.

We hope that the plugin system will allow third party developers to write extensions to Stellarium which might not otherwise be included in the core program, and that the system will allow for prototyping of new features before inclusion into the core.

Static and Dynamic Plugins

Plugins can be built and used in two different ways:

As Stellarium's plugin interface has changed over time, plugins for different versions so far are not interchangeable. This is the reason why the official plugins have been linked statically to the official release.

Static plugins require changes in the core code of Stellarium (the addition of Qt macros in several classes). This is why adding a new static plugin requires either asking the developers to add it to the main distribution, or creating and distributing a custom build.

Dynamic plugin libriaries need to be installed in a proper place in Stellarium's file tree to function. Stellarium is looking for plugins in the /modules subdirectory of the user data directory or the installation data directory. Each plugin library must be in its own subdiretory of the /modules directory. If the plugin is called "MyPlugin", then its subdirectory should be also called /MyPlugin and the main name (without the extension) of the plugin binary file should be libMyPlugin. So, for example, the file tree should look like this on Windows XP:

See the implementation of StelModuleMgr::getPluginsList() for more details.

List of Static Plugins

A some details for static plugins you can find in each item of list of plugins:

You can find some untechnical details on our wiki Plugins page.

Coding

A plugin should contain a main class deriving from the StelModule class as well as an instance of the StelPluginInterface which allows Stellarium to load it. At startup, the StelModuleMgr will load the library, and an instance of the StelModule it contains will be instantiated and added to the list of other "normal" StelModules.

A plugin can interact with the users in many ways, not limited to:

Plugin developers - please note that classes used in plugins must inherit code from the core which is published under the GNU GPL. If you distribute a binary plugin, you must do so under the terms of the same GNU General Public License that Stellarium uses (as of August 2011, this is GNU GPL "version 2 or any later version"). No sneaky closed-source shenanigans now.

Example Plugins

There are a few simple static plugins written and maintained by the Stellarium developer team that can serve as examples.

All static plugins incorporated in Stellarium's main code can be found in the /plugins subdirectory of Stellarium's code tree. Note that some of these plugins are under construction and have not been distributed yet with an official release.

There are also a few simple dynamic plugins. Their code is hosted in Stellarium's old Subversion repository at SourceForge.net:

VirGO is a fully featured extension to Stellarium sponsored by ESO. VirGO is used by professional astronomers to display and analyse data from the ESO archive. Follow the link for more information.

Building Plugins

Note: The following section is mostly out of date. It applies to dynamic plugins.

The following instructions can be used to build the Angle Measure plugin and the Compass Marks plugin.

To install the plugin on Linux systems, simple add a make install command after the make. This will copy the necessary files to $HOME/.stellarium/modules/AngleMeasure.

To install a plugin on Windows or OSX, you should locate the User Data Directory, and then create a sub-directory called modules in it. Inside this, create a subdirectory named for the plugin, e.g. AngleMeasure. Into this directory, you should copy the following files: