mirror of
https://github.com/vdr-projects/vdr.git
synced 2025-03-01 10:50:46 +00:00
VDR developer version 2.1.3 is now available at ftp://ftp.tvdr.de/vdr/Developer/vdr-2.1.3.tar.bz2 A 'diff' against the previous version is available at ftp://ftp.tvdr.de/vdr/Developer/vdr-2.1.2-2.1.3.diff MD5 checksums: 054f80e0045aa6fad118e9285b52f4f2 vdr-2.1.3.tar.bz2 3c5ab05d5c4d0b984b34e84190e80949 vdr-2.1.2-2.1.3.diff WARNING: ======== This is a *developer* version. Even though *I* use it in my productive environment, I strongly recommend that you only use it under controlled conditions and for testing and debugging. Originally I intended to release this version only after the new DiSEqC configuration dialog was finished. But in the meantime quite a few other things have come up, so I decided to postpone that dialog and first release what has piled up so far. From the HISTORY file: - Changed the return value of cPositioner::HorizonLongitude() to 0 in case the latitude of the antenna location is beyond +/-81 degrees. - Updated the Finnish OSD texts (thanks to Rolf Ahrenberg). - Fixed some compiler warnings with gcc-4.6.3 (thanks to Rolf Ahrenberg). - Changed the name of the SVDRP command RENR to MOVR (suggested by Rolf Ahrenberg). - When cutting a recording it is now checked whether there is already an edited version of this recording (with the same name, but starting with '%'), and the user is prompted for confirmation to overwrite it (suggested by Rolf Ahrenberg). - Revoked "Added maximum signal strength value for TechniSat SkyStar 2 DVB-S rev 2.3P" because it broke things for the "TechniSat AirStar 2" DVB-T card. - The LIRC remote control now connects to the socket even if it doesn't yet exist when VDR is started (thanks to Lars Hanisch). - Changed the absolute latitude limit for visible satellites to 81.2 degrees. - Added code for parsing LCN and AVC descriptors to libsi (thanks to Rolf Ahrenberg). - In the "Select folder" menu pressing Ok now selects the folder, even if this is a folder that contains sub folders (marked with "..."). To open such a folder you can press the Red key. - Fixed a possible access to uninitialized data in cEIT::cEIT() (reported by Dominik Strasser). - The new menu category mcRecordingEdit is now used to mark menus that edit recording properties (suggested by Stefan Braun). - Changes in the teletext PID no longer cause retuning (and thus interrupting a recording). - Removed '_' from the FileNameChars and CharMap translations in uk_UA.po. - Updated the Italian OSD texts (thanks to Diego Pierotto). - Fixed a missing initialization in the c'tor of cSkinLCARSDisplayChannel (thanks to Marko Mäkelä). - Simplified some conditional expressions in skinlcars.c and skinsttng.c (suggested by Marko Mäkelä). - Fixed uninitialized item area coordinates in cSkinLCARSDisplayMenu (reported by Marko Mäkelä). - Fixed a possible crash if the recordings list is updated externally while the Recordings menu is open (reported by Lars Hanisch). - Added a missing closing ')' in the help and man page entry of the --vfat option (reported by Lars Hanisch). - Fixed setting the name of the video directory to avoid a crash when using --genindex, and also to use the correct directory with --edit (the latter reported by Marko Mäkelä). - The Recordings menu can now be called with a cRecordingFilter, which allows the caller to have it display only a certain subset of the recordings (thanks to Lars Hanisch). - Added handling UTF-8 'umlaut' characters to cKbdRemote (thanks to Lars Hanisch). - Made it clear that the Data parameter in cDevice::StillPicture() may point to a series of packets, not just a single one (thanks to Thomas Reufer). - cDevice::TrickSpeed() now has an additional parameter named Forward, which indicates the direction in which replay is being done (suggested by Thomas Reufer). This information may be necessary for some output devices in order to properly implement trick modes. Authors of plugins that implement output devices will need to add this parameter to their derived cDevice class, regardless of whether they will make use of it or not. - Added a note to ePlayMode in device.h that VDR itself always uses pmAudioVideo when replaying a recording (suggested by Thomas Reufer). - Fixed some spellings in positioner.h and Doxyfile (thanks to Ville Skyttä). - Changed '%a' to the POSIX compliant '%m' in all scanf() calls (thanks to Ville Skyttä). - The new function cCamSlot::Decrypt() can be used by derived classes to implement a CAM slot that can be freely assigned to any device, without being directly inserted into the full TS data stream in hardware. A derived class that implements Decrypt() will also need to set the new parameter ReceiveCaPids in the call to the cCamSlot base class constructor to true, in order to receive the CA pid TS packets that contain data necessary for decrypting. - Many member functions of cCamSlot have been made virtual to allow for easier implementation of derived classes. - cTSBuffer now provides the number of available bytes in its Get() function. - cDvbDevice::GetTSPacket() now calls CamSlot()->Decrypt() in order to allow CAM slots that can be freely assigned to any device access to the TS data stream. - Added a check to avoid a possible NULL pointer dereference in cCiSession::SendData() (reported by Ville Skyttä). - Deleted a superfluous assignment in cPipe::Open() (reported by Ville Skyttä). - The script given to VDR with the '-r' option is now also called after the recording process has actually started (thanks to Christian Kaiser). - Avoiding unnecessary pkg-config warnings in plugin Makefiles (thanks to Ville Skyttä). Plugin authors may want to apply the following change to their Makefile: -PKGCFG = $(if $(VDRDIR),$(shell pkg-config --variable=$(1) $(VDRDIR)/vdr.pc),$(shell pkg-config --variable=$(1) vdr || pkg-config --variable=$(1) ../../../vdr.pc)) +PKGCFG = $(if $(VDRDIR),$(shell pkg-config --variable=$(1) $(VDRDIR)/vdr.pc),$(shell PKG_CONFIG_PATH="$$PKG_CONFIG_PATH:../../.." pkg-config --variable=$(1) vdr)) - Eliminated MAXDVBDEVICES (suggested by Oliver Endriss). - Channels that are no longer contained in the current SDT of a transponder are now marked with the keyword OBSOLETE in their name and provider fields. That way you can identify obsolete channels when you switch to them, and you can get the complete overview of all obsolete channels by sorting the Channels list by provider (by pressing the 0 key twice). Automatic deletion of obsolete channels may follow later.
172 lines
9.5 KiB
C++
172 lines
9.5 KiB
C++
/*
|
|
* positioner.h: Steerable dish positioning
|
|
*
|
|
* See the main source file 'vdr.c' for copyright information and
|
|
* how to reach the author.
|
|
*
|
|
* $Id: positioner.h 3.3 2013/12/28 11:15:56 kls Exp $
|
|
*/
|
|
|
|
#ifndef __POSITIONER_H
|
|
#define __POSITIONER_H
|
|
|
|
#include "thread.h"
|
|
#include "tools.h"
|
|
|
|
/// A steerable satellite dish generally points to the south on the northern hemisphere,
|
|
/// and to the north on the southern hemisphere (unless you're located directly on the
|
|
/// equator, in which case the general direction is "up"). Therefore, moving the dish
|
|
/// "east" or "west" means something different on either hemisphere. From the local dish
|
|
/// motor's point of view, it makes more sense to speak of turning the dish "left" or
|
|
/// "right", which is independent of the actual hemisphere the dish is located in.
|
|
/// In the cPositioner class context, when a dish on the northern hemisphere moves "east",
|
|
/// it is considered to be moving "left". Imagine standing behind the dish and looking
|
|
/// towards the satellites, and clearly "east" is "left". On the southern hemisphere
|
|
/// the same move to the "left" would go to the "west". So on the hardware level it is
|
|
/// clear what "left" and "right" means. The user interface may present different labels
|
|
/// to the viewer, depending on the hemisphere the dish is on.
|
|
/// All angles in this context are given in "degrees * 10", which allows for an angular
|
|
/// resolution of 0.1 degrees.
|
|
|
|
class cPositioner {
|
|
private:
|
|
mutable cMutex mutex;
|
|
static cPositioner *positioner;
|
|
int capabilities;
|
|
int frontend; // file descriptor of the DVB frontend
|
|
mutable int lastLongitude; // the longitude the dish has last been moved to
|
|
int targetLongitude; // the longitude the dish is supposed to be moved to
|
|
mutable int lastHourAngle; // the hour angle the positioner has last been moved to
|
|
int targetHourAngle; // the hour angle the positioner is supposed to be moved to
|
|
int swingTime;
|
|
cTimeMs movementStart;
|
|
protected:
|
|
cPositioner(void);
|
|
virtual ~cPositioner();
|
|
void SetCapabilities(int Capabilities) { capabilities = Capabilities; }
|
|
///< A derived class shall call this function in its constructor to set the
|
|
///< capability flags it supports.
|
|
int Frontend(void) const { return frontend; }
|
|
///< Returns the file descriptor of the DVB frontend the positioner is
|
|
///< connected to. If the positioner is not connected to any DVB device,
|
|
///< -1 will be returned.
|
|
static int CalcHourAngle(int Longitude);
|
|
///< Takes the longitude and latitude of the dish location from the system
|
|
///< setup and the given Longitude to calculate the "hour angle" to which to move
|
|
///< the dish to in order to point to the satellite at orbital position Longitude.
|
|
///< An hour angle of zero means the dish shall point directly towards the
|
|
///< celestial equator (which is south on the northern hemisphere, and north on
|
|
///< the southern hemisphere). Negative values mean that the dish needs to be
|
|
///< moved to the left (as seen from behind the dish), while positive values
|
|
///< require a movement to the right.
|
|
static int CalcLongitude(int HourAngle);
|
|
///< Returns the longitude of the satellite position the dish points at when the
|
|
///< positioner is moved to the given HourAngle.
|
|
void StartMovementTimer(int Longitude);
|
|
///< Starts a timer that estimates how long it will take to move the dish from
|
|
///< the current position to the one given by Longitude. The default implementation
|
|
///< of CurrentLongitude() uses this timer.
|
|
public:
|
|
enum ePositionerCapabilities {
|
|
pcCanNothing = 0x0000,
|
|
pcCanDrive = 0x0001,
|
|
pcCanStep = 0x0002,
|
|
pcCanHalt = 0x0004,
|
|
pcCanSetLimits = 0x0008,
|
|
pcCanDisableLimits = 0x0010,
|
|
pcCanEnableLimits = 0x0020,
|
|
pcCanStorePosition = 0x0040,
|
|
pcCanRecalcPositions = 0x0080,
|
|
pcCanGotoPosition = 0x0100,
|
|
pcCanGotoAngle = 0x0200,
|
|
};
|
|
enum ePositionerDirection { pdLeft, pdRight };
|
|
static int NormalizeAngle(int Angle);
|
|
///< Normalizes the given Angle into the range -1800...1800.
|
|
int Capabilities(void) const { return capabilities; }
|
|
///< Returns a flag word defining all the things this positioner is
|
|
///< capable of.
|
|
void SetFrontend(int Frontend) { frontend = Frontend; }
|
|
///< This function is called whenever the positioner is connected to
|
|
///< a DVB frontend.
|
|
static int HorizonLongitude(ePositionerDirection Direction);
|
|
///< Returns the longitude of the satellite position that is just at the
|
|
///< horizon when looking in the given Direction. Note that this function
|
|
///< only delivers reasonable values for site latitudes between +/-81 degrees.
|
|
///< Beyond these limits (i.e. near the north or south pole) a constant value
|
|
///< of 0 will be returned.
|
|
int HardLimitLongitude(ePositionerDirection Direction) const;
|
|
///< Returns the longitude of the positioner's hard limit in the given
|
|
///< Direction. Note that the value returned here may be larger (or smaller,
|
|
///< depending on the Direction) than that returned by HorizonLongitude(),
|
|
///< which would mean that it lies below that horizon.
|
|
int LastLongitude(void) const { return lastLongitude; }
|
|
///< Returns the longitude the dish has last been moved to.
|
|
int TargetLongitude(void) const { return targetLongitude; }
|
|
///< Returns the longitude the dish is supposed to be moved to. Once the target
|
|
///< longitude has been reached, this is the same as the value returned by
|
|
///< CurrentLongitude().
|
|
virtual cString Error(void) const { return NULL; }
|
|
///< Returns a short, single line string indicating an error condition (if
|
|
///< the positioner is able to report any errors).
|
|
///< NULL means there is no error.
|
|
virtual void Drive(ePositionerDirection Direction) {}
|
|
///< Continuously move the dish to the given Direction until Halt() is
|
|
///< called or it hits the soft or hard limit.
|
|
virtual void Step(ePositionerDirection Direction, uint Steps = 1) {}
|
|
///< Move the dish the given number of Steps in the given Direction.
|
|
///< The maximum number of steps a particular positioner can do in a single
|
|
///< call may be limited.
|
|
///< A "step" is the smallest possible movement the positioner can make, which
|
|
///< is typically 0.1 degrees.
|
|
virtual void Halt(void) {}
|
|
///< Stop any ongoing motion of the dish.
|
|
virtual void SetLimit(ePositionerDirection Direction) {}
|
|
///< Set the soft limit of the dish movement in the given Direction to the
|
|
///< current position.
|
|
virtual void DisableLimits(void) {}
|
|
///< Disables the soft limits for the dish movement.
|
|
virtual void EnableLimits(void) {}
|
|
///< Enables the soft limits for the dish movement.
|
|
virtual void StorePosition(uint Number) {}
|
|
///< Store the current position as a satellite position with the given Number.
|
|
///< Number can be in the range 1...255. However, a particular positioner
|
|
///< may only have a limited number of satellite positions it can store.
|
|
virtual void RecalcPositions(uint Number) {}
|
|
///< Take the difference between the current actual position of the dish and
|
|
///< the position stored with the given Number, and apply the difference to
|
|
///< all stored positions.
|
|
virtual void GotoPosition(uint Number, int Longitude);
|
|
///< Move the dish to the satellite position stored under the given Number.
|
|
///< Number must be one of the values previously used with StorePosition().
|
|
///< The special value 0 shall move the dish to a "reference position",
|
|
///< which usually is due south (or north, if you're on the southern hemisphere).
|
|
///< Longitude will be used to calculate how long it takes to move the dish
|
|
///< from its current position to the given Longitude.
|
|
///< A derived class must call the base class function to have the target
|
|
///< longitude stored.
|
|
virtual void GotoAngle(int Longitude);
|
|
///< Move the dish to the given angular position. Longitude can be in the range
|
|
///< -1800...+1800. A positive sign indicates a position east of Greenwich,
|
|
///< while western positions have a negative sign. The absolute value is in
|
|
///< "degrees * 10", which allows for a resolution of 1/10 of a degree.
|
|
///< A derived class must call the base class function to have the target
|
|
///< longitude stored.
|
|
virtual int CurrentLongitude(void) const;
|
|
///< Returns the longitude the dish currently points to. If the dish is in motion,
|
|
///< this may be an estimate based on the angular speed of the positioner.
|
|
///< The default implementation takes the last and target longitude as well as
|
|
///< the rotation speed of the positioner to calculate the estimated current
|
|
///< longitude the dish points to.
|
|
virtual bool IsMoving(void) const;
|
|
///< Returns true if the dish is currently moving as a result of a call to
|
|
///< GotoPosition() or GotoAngle().
|
|
static cPositioner *GetPositioner(void);
|
|
///< Returns a previously created positioner. If no plugin has created
|
|
///< a positioner, there will always be the default DiSEqC positioner.
|
|
static void DestroyPositioner(void);
|
|
///< Destroys a previously created positioner.
|
|
};
|
|
|
|
#endif //__POSITIONER_H
|