Outils pour utilisateurs

Outils du site


fr:documentation:script_reference

Référence des scripts

Cette page contient du matériel de référence pour les fonctions de script.

Voir la page Boîtes à outils pour des informations générales.

Voir les exemples de scripts pour un démarrage rapide avec les fonctions de programmation.

Langage de script

Le langage de programmation utilisé est Pascal Script.
Pour une référence complète du langage Pascal Objet, vous pouvez lire Free Pascal Reference guide. Mais attention, certaines fonctionnalités ne sont pas implémentées par le langage de script, par exemple: pas de pointeur, pas d'assembleur, pas de surcharge.

En plus des fonctions standard de Pascal Script, les fonctions suivantes spécifiques à Cartes du Ciel sont ajoutées.

Fonctions du menu principal

Tous les éléments du menu principal peuvent être utilisés à partir des scripts.
La liste complète des noms de menu est disponible à partir de la liste des menus.

Vous pouvez exécuter l'action du menu à l'aide de la méthode Click ou tester si une option est activée en testant la propriété Checked.

Chaînes des traductions

Chaque chaîne traduite pour le programme principal peut être utilisée dans un script.
Utilisez directement la constante rsXXX pour obtenir la chaîne traduite.
La liste complète des chaînes disponibles est disponible à partir du code source.
Si une chaîne n'est pas traduite pour votre langue n'hésitez pas à le faire vous même.

Constantes

namevalue
deg2rad degree to radian conversion constant
rad2deg radian to degree conversion constant

Accès aux variables globales

function GetS(varname:string; var str: string):Boolean;
Get the global string variable identified by varname
varnamevalue
ChartNameThe name of the last chart that send an event
RefreshTextThe text of the ChartRefresh event
SelectionTextThe short text of the selected object
DescriptionTextThe object full description
DistanceTextThe text of the last distance measurement event
Str1 .. Str10Ten global variable for your use
function SetS(varname:string; str: string):Boolean;
Set the global string variable identified by varname for later use
varnamevalue
Str1 .. Str10Ten global variable for your use
function GetSL(varname:string; var strl: Tstringlist):Boolean;
Get the global stringlist variable identified by varname
varnamevalue
Strl1 .. Strl10Ten global variable for your use
function SetSL(varname:string; stlr: Tstringlist):Boolean;
Set the global stringlist variable identified by varname for later use
varnamevalue
Strl1 .. Strl10Ten global variable for your use
function GetI(varname:string; var i: Integer):Boolean;
Get the global integer variable identified by varname
varnamevalue
Int1 .. Int10Ten global variable for your use
function SetI(varname:string; i: Integer):Boolean;
Set the global integer variable identified by varname for later use
varnamevalue
Int1 .. Int10Ten global variable for your use
function GetD(varname:string; var x: double):boolean;
Get the global double variable identified by varname
varnamevalue
TelescopeRAThe telescope position right ascension
TelescopeDEThe telescope position declination
TimeNowThe current time in TDateTime format
Double1 .. Double10Ten global variable for your use
function SetD(varname:string; x: Double):Boolean;
Set the global double variable identified by varname for later use
varnamevalue
Double1 .. Double10Ten global variable for your use
function GetV(varname:string; var v: Variant):Boolean;
Get the global variant variable identified by varname
varnamevalue
Telescope1 , Telescope2Two ASCOM Telescope objects
Dome1 , Dome2Two ASCOM Dome objects
Camera1 , Camera2Two ASCOM Camera objects
Focuser1 , Focuser2Two ASCOM Focuser objects
Filter1 , Filter2Two ASCOM Filter wheel objects
Rotator1 , Rotator2Two ASCOM Rotator objects
Variant1 .. Variant10Ten global variable for your use
function SetV(varname:string; v: Variant):Boolean;
Set the global variant variable identified by varname for later use
varnamevalue
Telescope1 , Telescope2Two ASCOM Telescope objects
Dome1 , Dome2Two ASCOM Dome objects
Camera1 , Camera2Two ASCOM Camera objects
Focuser1 , Focuser2Two ASCOM Focuser objects
Filter1 , Filter2Two ASCOM Filter wheel objects
Rotator1 , Rotator2Two ASCOM Rotator objects
Variant1 .. Variant10Ten global variable for your use

Carte et objets

function Cmd(cname:string; arg:Tstringlist):string;
Execute one of the Skychart server command. Add the command name first to the string list, then each parameter.
procedure SendInfo(origin,str:string);
Send a message to the clients connected to the Skychart server.
function GetObservatoryList(list:TstringList):boolean;
Return the list of the Observatory favorite
function GetScopeRates(list:TstringList):boolean;
Return a list of speed rate supported by the telescope
function GetCometList(const filter: string; maxnum:integer; list:TstringList):boolean;
Return a list of comet according to the filter
function GetAsteroidList(const filter: string; maxnum:integer; list:TstringList):boolean;
Return a list of asteroid according to the filter
function CometMark(list:TstringList):boolean;
Mark the listed comet to the chart
function AsteroidMark(list:TstringList):boolean;
Mark the listed asteroid to the chart

Conversion de coordonnées

Procedure Eq2Hz(var ra,de : double ; var a,h : double);
Convert Equatorial ra,de to Alt/Az a,h for the location and time of the current chart, all angle in radian
Procedure Hz2Eq(var a,h : double; var ra,de : double);
Convert Alt/Az a,h to equatorial ra,de for the location and time of the current chart, all angle in radian
Procedure Eq2Gal(var ra,de : double ; var l,b : double);
Convert Equatorial ra,de to Galactic l,b , all angle in radian
Procedure Gal2Eq(var l,b : double; var ra,de : double);
Convert Galactic l,b to equatorial ra,de , all angle in radian
Procedure Eq2Ecl(var ra,de : double ; var l,b : double);
Convert Equatorial ra,de to Ecliptic l,b with obliquity for the date of the current chart, all angle in radian
Procedure Ecl2Eq(var l,b : double; var ra,de : double);
Convert Ecliptic l,b to Equatorial ra,de with obliquity for the date of the current chart, all angle in radian

Conversion et Formatage

Function ARtoStr(var ar: Double) : string;
Return a string formated Right Ascension of ar value
Function DEtoStr(var de: Double) : string;
Return a string formated Declination of de value
Function StrtoAR(str:string; var ar: Double) : boolean;
Convert a formated string to Right Ascension decimal value
Function StrtoDE(str:string; var de: Double) : boolean;
Convert a formated string to Declination decimal value
Function JDtoStr(var jd: Double) : string;
Format a julian date to YYYY-MM-DD string
Function StrtoJD(dt:string; var jdt: Double) : boolean;
Convert a formated string YYYY-MM-DD to julian date value
Function FormatFloat(Const Format : String; var Value : double) : String;
Format a decimal number according to the Format specification
Function Format(Const Fmt : String; const Args : Array of const) : String;
The Format Pascal function
Procedure StrtoFloatD(str:string; var defval: Double; var val: Double);
Convert a string to a floating point value. Return defval if the string is a invalid number
function IsNumber(str: String): boolean;
Return True if the string represent a valid number
function StringReplace(str,s1,s2: String): string;
Replace all occurrence of s1 by s2 in str
procedure JsonToStringlist(jsontxt:string; var SK,SV: TStringList);
Parse a JSON formated string and return two stringlist. SK contain the names and SV the corresponding values

Dialogues standard

function OpenDialog(var fn: string): boolean;
The standard Open File dialog. Return True if the OK button is pressed after the file selection.
function SaveDialog(var fn: string): boolean;
The standard Save File dialog. Return True if the OK button is pressed after the file selection.
function MsgBox(const aMsg: string):boolean;
A message confirmation dialog. Return True if YES is clicked.
Procedure ShowMessage(const aMsg: string);
Display a message.
function CalendarDialog(var dt: double): boolean;
The Skychart Calendar dialog. Return dt julian date

Exécution de programme externes

function Run(cmdline:string):boolean;
Execute the specified command. Return immediately without waiting for the execution to end.
function RunOutput(cmdline:string; var output:TStringlist):boolean;
Execute the specified command, wait for termination and put the stdout to “output”. Beware this function can completely lock the main program if it not finish in time.
function OpenFile(fn:string):boolean;
Open a document file using the default program

Voir aussi les exemples de scripts pour l'appel de libraires externes.

Client socket TCP/IP

Pour toutes ces fonctions socknum identifie le socket à utiliser. Il s'agit d'un nombre entre 1 et 10, permettant ainsi 10 connexion simultanée à des serveurs différent.

function TcpConnect(socknum:integer; ipaddr,port,timeout:string):boolean;
Connect to the server at ipaddr:port and set the timeout for the subsequent operations
function TcpDisconnect(socknum:integer):boolean;
Disconnect from the server
Function TcpConnected(socknum:integer) : boolean;
Return True if the socket is connected
Function TcpRead(socknum:integer; var buf : string; termchar:string) : boolean;
Read data from the socket until the character termchar is encountered, typically termchar is CRLF
Function TcpReadCount(socknum:integer; var buf : string; var count : integer) : boolean;
Read data from the socket until count character are read or timeout is reached
Function TcpWrite(socknum:integer; var buf : string; var count : integer) : boolean;
Write data to the socket from buf for a length of count
Procedure TcpPurgeBuffer(socknum:integer);
Purge all the received data currently queued in the receive buffer
fr/documentation/script_reference.txt · Dernière modification : 2017/02/28 15:58 de pch