This class manages the controlling of one or more telescopes by one instance of the stellarium program.
Main class of the Telescope Control plug-in.
"Controlling a telescope" means receiving position information from the telescope and sending GOTO commands to the telescope. No esoteric features like motor focus, electric heating and such. The actual controlling of a telescope is left to the implementation of the abstract base class TelescopeClient.
Public Types |
| enum | ConnectionType {
ConnectionNA = 0
, ConnectionVirtual
, ConnectionInternal
, ConnectionLocal
,
ConnectionRemote
, ConnectionRTS2
, ConnectionINDI
, ConnectionASCOM
,
ConnectionTypeCount
} |
| |
| enum | TelescopeStatus {
StatusNA = 0
, StatusStarting
, StatusConnecting
, StatusConnected
,
StatusDisconnected
, StatusStopped
} |
| |
| enum | Equinox { EquinoxJ2000
, EquinoxJNow
} |
| |
| enum | StelModuleSelectAction { AddToSelection
, ReplaceSelection
, RemoveFromSelection
} |
| | Enum used when selecting objects to define whether to add to, replace, or remove from the existing selection list. More...
|
| |
| enum | StelModuleActionName {
ActionDraw
, ActionUpdate
, ActionHandleMouseClicks
, ActionHandleMouseMoves
,
ActionHandleKeys
} |
| | Define the possible action for which an order is defined. More...
|
| |
Public Slots |
| void | setFlagTelescopeReticles (bool b) |
| | Set display flag for telescope reticles. More...
|
| |
| bool | getFlagTelescopeReticles () const |
| | Get display flag for telescope reticles. More...
|
| |
| void | setFlagTelescopeLabels (bool b) |
| | Set display flag for telescope name labels. More...
|
| |
| bool | getFlagTelescopeLabels () const |
| | Get display flag for telescope name labels. More...
|
| |
| void | setFlagTelescopeCircles (bool b) |
| | Set display flag for telescope field of view circles. More...
|
| |
| bool | getFlagTelescopeCircles () const |
| | Get display flag for telescope field of view circles. More...
|
| |
| void | setReticleColor (const Vec3f &c) |
| | Set the telescope reticle color. More...
|
| |
| const Vec3f & | getReticleColor () const |
| | Get the telescope reticle color. More...
|
| |
| const Vec3f & | getLabelColor () const |
| | Get the telescope labels color. More...
|
| |
| void | setLabelColor (const Vec3f &c) |
| | Set the telescope labels color. More...
|
| |
| void | setCircleColor (const Vec3f &c) |
| | Set the field of view circles color. More...
|
| |
| const Vec3f & | getCircleColor () const |
| | Get the field of view circles color. More...
|
| |
| void | setFontSize (int fontSize) |
| | Define font size to use for telescope names display. More...
|
| |
| void | slewTelescopeToSelectedObject (const int idx) |
| | slews a telescope at slot idx to the selected object. More...
|
| |
| void | syncTelescopeWithSelectedObject (const int idx) |
| | sync a telescope at slot idx to the selected object. More...
|
| |
| void | slewTelescopeToViewDirection (const int idx) |
| | slews a telescope at slot idx to the point of the celestial sphere currently in the center of the screen. More...
|
| |
| void | abortTelescopeSlew (const int idx) |
| | abort the current slew command of a telescope at slot idx. More...
|
| |
| void | centeringScreenByTelescope (const int idx) |
| | Centering screen by coordinates of a telescope at slot idx. More...
|
| |
|
void | setFlagUseTelescopeServerLogs (bool b) |
| | Used in the GUI.
|
| |
Signals |
|
void | clientConnected (int slot, QString name) |
| |
|
void | clientDisconnected (int slot) |
| |
|
void | flagTelescopeReticlesChanged (bool b) |
| |
|
void | flagTelescopeLabelsChanged (bool b) |
| |
|
void | flagTelescopeCirclesChanged (bool b) |
| |
|
void | reticleColorChanged (const Vec3f &c) |
| |
|
void | labelColorChanged (const Vec3f &c) |
| |
|
void | circleColorChanged (const Vec3f &c) |
| |
|
void | flagUseTelescopeServerLogsChanged (bool b) |
| |
|
void | useTelescopeServerExecutables (bool b) |
| |
|
void | getFlagUseServerExecutablesChanged (bool b) |
| |
|
void | serverExecutablesDirectoryPathChanged (const QString &s) |
| |
Public Member Functions |
| void | init () override |
| | Initialize itself. More...
|
| |
| void | deinit () override |
| | Called before the module will be deleted, and before the OpenGL context is suppressed. More...
|
| |
| void | update (double deltaTime) override |
| | Update the module with respect to the time. More...
|
| |
| void | draw (StelCore *core) override |
| | Execute all the drawing functions for this module. More...
|
| |
| double | getCallOrder (StelModuleActionName actionName) const override |
| | Return the value defining the order of call for the given action For example if stars.callOrder[ActionDraw] == 10 and constellation.callOrder[ActionDraw] == 11, the stars module will be drawn before the constellations. More...
|
| |
| QList< StelObjectP > | searchAround (const Vec3d &v, double limitFov, const StelCore *core) const override |
| | Search for StelObject in an area around a specified point. More...
|
| |
| StelObjectP | searchByNameI18n (const QString &nameI18n) const override |
| | Find a StelObject by name. More...
|
| |
| StelObjectP | searchByName (const QString &name) const override |
| | Return the matching StelObject if exists or the empty StelObject if not found. More...
|
| |
| StelObjectP | searchByID (const QString &id) const override |
| | Return the StelObject with the given ID if exists or the empty StelObject if not found. More...
|
| |
| QStringList | listMatchingObjects (const QString &objPrefix, const int maxNbItem=5, bool useStartOfWords=false) const override |
| | Find and return the list of at most maxNbItem objects auto-completing the passed object name. More...
|
| |
| QStringList | listAllObjects (bool) const override |
| | List all StelObjects. More...
|
| |
|
QString | getName () const override |
| | Gets a user-displayable name of the object category.
|
| |
|
QString | getStelObjectType () const override |
| | Returns the name that will be returned by StelObject::getType() for the objects this module manages.
|
| |
| bool | configureGui (bool show=true) override |
| | Detect or show the configuration GUI elements for the module. More...
|
| |
|
QSharedPointer< TelescopeClient > | telescopeClient (int index) const |
| |
|
void | deleteAllTelescopes () |
| | Remove all currently registered telescopes.
|
| |
|
const QHash< QString, DeviceModel > & | getDeviceModels () |
| | Safe access to the loaded list of telescope models.
|
| |
|
void | loadConfiguration () |
| | Loads the module's configuration from the configuration file.
|
| |
|
void | saveConfiguration () |
| | Saves the module's configuration to the configuration file.
|
| |
|
void | saveTelescopes () |
| | Saves to telescopes.json a list of the parameters of the active telescope clients.
|
| |
| void | loadTelescopes () |
| | Loads from telescopes.json the parameters of telescope clients and initializes them. More...
|
| |
| bool | addTelescopeAtSlot (int slot, ConnectionType connectionType, QString name, QString equinox, QString host=QString("localhost"), int portTCP=DEFAULT_TCP_PORT, int delay=DEFAULT_DELAY, bool connectAtStartup=false, QList< double > circles=QList< double >(), QString serverName=QString(), QString portSerial=QString(), QString rts2Url=QString(), QString rts2Username=QString(), QString rts2Password=QString(), int rts2Refresh=-1, QString ascomDeviceId=QString(""), bool ascomUseDeviceEqCoordType=true) |
| | Adds a telescope description containing the given properties. More...
|
| |
| bool | getTelescopeAtSlot (int slot, ConnectionType &connectionType, QString &name, QString &equinox, QString &host, int &portTCP, int &delay, bool &connectAtStartup, QList< double > &circles, QString &serverName, QString &portSerial, QString &rts2Url, QString &rts2Username, QString &rts2Password, int &rts2Refresh, QString &ascomDeviceId, bool &ascomUseDeviceEqCoordType) |
| | Retrieves a telescope description. More...
|
| |
|
bool | removeTelescopeAtSlot (int slot) |
| | Removes info from the tree. Should it include stopTelescopeAtSlot()?
|
| |
| bool | startTelescopeAtSlot (int slot) |
| | Starts a telescope at the given slot, getting its description with getTelescopeAtSlot(). More...
|
| |
| bool | stopTelescopeAtSlot (int slot) |
| | Stops the telescope at the given slot. More...
|
| |
|
bool | stopAllTelescopes () |
| | Stops all telescopes, but without removing them like deleteAllTelescopes().
|
| |
| bool | isExistingClientAtSlot (int slot) |
| | Checks if there's a TelescopeClient object at a given slot, i.e. More...
|
| |
|
bool | isConnectedClientAtSlot (int slot) |
| | Checks if the TelescopeClient object at a given slot is connected to a server.
|
| |
|
QHash< int, QString > | getConnectedClientsNames () |
| | Returns a list of the currently connected clients.
|
| |
|
bool | getFlagUseServerExecutables () const |
| |
|
void | setFlagUseServerExecutables (bool b) |
| | Forces a call of loadDeviceModels(). Stops all active telescopes.
|
| |
|
const QString & | getServerExecutablesDirectoryPath () const |
| |
|
bool | setServerExecutablesDirectoryPath (const QString &newPath) |
| | Forces a call of loadDeviceModels(). Stops all active telescopes.
|
| |
|
bool | getFlagUseTelescopeServerLogs () const |
| |
| virtual QStringList | listAllObjectsByType (const QString &objType, bool inEnglish) const |
| | List all StelObjects by type. More...
|
| |
| bool | matchObjectName (const QString &objName, const QString &objPrefix, bool useStartOfWords) const |
| | Auxiliary method of listMatchingObjects() More...
|
| |
|
| StelModule () |
| | Constructor. Every derived class MUST call setObjectName(className) in its constructor.
|
| |
| virtual QSettings * | getSettings () |
| | Return module-specific settings. More...
|
| |
|
virtual QString | getModuleVersion () const |
| | Get the version of the module, default is stellarium main version.
|
| |
|
virtual QString | getAuthorName () const |
| | Get the name of the module author.
|
| |
|
virtual QString | getAuthorEmail () const |
| | Get the email address of the module author.
|
| |
| virtual void | handleMouseClicks (class QMouseEvent *) |
| | Handle mouse clicks. More...
|
| |
| virtual void | handleMouseWheel (class QWheelEvent *) |
| | Handle mouse wheel. More...
|
| |
| virtual bool | handleMouseMoves (int x, int y, Qt::MouseButtons b) |
| | Handle mouse moves. More...
|
| |
| virtual void | handleKeys (class QKeyEvent *e) |
| | Handle key events. More...
|
| |
| virtual bool | handlePinch (qreal scale, bool started) |
| | Handle pinch gesture events. More...
|
| |
Static Public Attributes |
|
static constexpr int | MIN_SLOT_NUMBER = 1 |
| |
|
static constexpr int | SLOT_COUNT = 9 |
| |
|
static constexpr int | SLOT_NUMBER_LIMIT = MIN_SLOT_NUMBER + SLOT_COUNT |
| |
|
static constexpr int | MAX_SLOT_NUMBER = SLOT_NUMBER_LIMIT - 1 |
| |
|
static constexpr int | BASE_TCP_PORT = 10000 |
| |
|
static constexpr int | DEFAULT_TCP_PORT = DEFAULT_TCP_PORT_FOR_SLOT(MIN_SLOT_NUMBER) |
| |
|
static constexpr int | MAX_CIRCLE_COUNT = 10 |
| |
|
static const QString | TELESCOPE_SERVER_PATH |
| |
|
static constexpr int | DEFAULT_DELAY = 500000 |
| |
|
static const QStringList | EMBEDDED_TELESCOPE_SERVERS |
| |
Properties |
|
bool | flagTelescopeReticles |
| |
|
bool | flagTelescopeLabels |
| |
|
bool | flagTelescopeCircles |
| |
|
Vec3f | reticleColor |
| | Colour currently used to draw telescope reticles.
|
| |
|
Vec3f | labelColor |
| | Colour currently used to draw telescope text labels.
|
| |
|
Vec3f | circleColor |
| | Colour currently used to draw field of view circles.
|
| |
|
bool | useTelescopeServerLogs |
| |
|
bool | useTelescopeServerExecutables |
| |
|
QString | serverExecutablesDirectoryPath |
| |