Skip to main content
Solved

Variable type conversion in ZPL


Kris
  • Infrared
  • 16 replies

Good day everyone,

since ZPL is based on BASIC, I thought some of it generic functions could be used for converting variable types such as VAL(), INT() etc. Only $STR works, the other conversions are not recognized by ZPL.

In particular, I want to define a single variable in my script (a particular detector number) and use it for both console output (with PRINT), non-sequential raytrace (with NSTR) and changing Detector Viewer settings (with MODIFYSETTINGS).

I could define either a numerical variable and change it to string, but doing so outputs a floating point number (such as 5.000 for instance). Unfortunately, NSTR is having trouble with "h5.000” filter string. Then I thought I can define a string variable "5” and change it to numerical but no commands that I know seem to work. Is there a solution to my issue that would allow me to stay within ZPL script, not switching to ZOS-API?

Best answer by MichaelH

Hi Kris,

The ZPL doesn’t have strong variable types so there is no difference between an integer or a float; ZPL only has string variables and float variables.  So, if you want to treat a float as an integer, you will need to use FORMAT and $STR() when you pass it as an argument.  For example, if you want to pass in the filter string, you could use the following code:

FORMAT .0
filter$ = "H" + $STR(5)
NSTR 1, 1, 1, 1, 0, 1, 0, 1, "saverays.ZRD", filter$

There are some basic file system functions (all listed under KEYWORDS or STRING FUNCTIONS in the Help Files):

  • MAKEFOLDER: creates a new directory
  • $PATHNAME(): gets the directory the current file is in

For other more complex commands that are not part of the ZPL, you can use the COMMAND keyword to call an external program (i.e., to use a batch file):

https://www.linkedin.com/pulse/advanced-zpl-using-bat-files-michael-humphreys

View original
Did this topic help you find an answer to your question?

8 replies

Sean Turner
Ultraviolet
Forum|alt.badge.img+1
  • Ultraviolet
  • 90 replies
  • April 1, 2025

Hi Kris,

FORMAT 1 INT will turn your 5.000 into 5 when printed

SVAL(A$) returns a floating point value of the string A$

I hope these help!

Sean


Kris
  • Author
  • Infrared
  • 16 replies
  • April 2, 2025

Thanks for your reply ​@Sean Turner.

However, it only helps me partially.

I would need to actually convert, not only print, variable types because I want to pass them as arguments for very different functions.

For instance, either define the detector number as a number and pass it as a filter string argument; or in another approach, define it as a string, and pass it to NSTR, and so forth. I am not sure which approach would be the most convenient so far.

I am also interested if primitive file system manipulations are possible via ZPL, such as creating a new folder, or checking the folder of the current project, and so on.

Does functionality of this sort exists for ZPL?


MichaelH
Ansys Staff
Forum|alt.badge.img+2
  • Ansys Staff
  • 348 replies
  • Answer
  • April 2, 2025

Hi Kris,

The ZPL doesn’t have strong variable types so there is no difference between an integer or a float; ZPL only has string variables and float variables.  So, if you want to treat a float as an integer, you will need to use FORMAT and $STR() when you pass it as an argument.  For example, if you want to pass in the filter string, you could use the following code:

FORMAT .0
filter$ = "H" + $STR(5)
NSTR 1, 1, 1, 1, 0, 1, 0, 1, "saverays.ZRD", filter$

There are some basic file system functions (all listed under KEYWORDS or STRING FUNCTIONS in the Help Files):

  • MAKEFOLDER: creates a new directory
  • $PATHNAME(): gets the directory the current file is in

For other more complex commands that are not part of the ZPL, you can use the COMMAND keyword to call an external program (i.e., to use a batch file):

https://www.linkedin.com/pulse/advanced-zpl-using-bat-files-michael-humphreys


Kris
  • Author
  • Infrared
  • 16 replies
  • April 3, 2025

Thanks for an extensive answer ​@MichaelH!

The command $PATHNAME() did the job, however, it is not documented in OpticStudio. I bet more similar commands are available (for instance, now I wish to check if a specific file already exists in a specified folder), still without using COMMAND. Does a summary of all permitted in-built commands exist somewhere? This would be super useful to know.


MichaelH
Ansys Staff
Forum|alt.badge.img+2
  • Ansys Staff
  • 348 replies
  • April 3, 2025

Checking if a file already exists is a little bit more difficult with built-in ZPL commands.  You will need to use the FINDFILE keyword and check the length of the filename with the filter:

dir$ = $PATHNAME()
filter$ = dir$ + "\lens.zmx"

FINDFILE tempfile$, filter$
IF SLEN(tempfile$) > 0 
	PRINT "file exists"
ELSE
	PRINT "file does not exist"
ENDIF

The Help Files do list all the commands, but the ZPL section of the PDF version of the Help Files is over 200 pages long, so sometimes it’s a little difficult to find the desired functionality.  I would suggest to search the Help Files and if you can’t figure it out, to simply as the forum.


Sean Turner
Ultraviolet
Forum|alt.badge.img+1
  • Ultraviolet
  • 90 replies
  • April 3, 2025

$PATHNAME is found in The Programming Tab > About the ZPL > String Functions

It would be nice if all numeric functions, string functions, and keywords were in one section.


MichaelH
Ansys Staff
Forum|alt.badge.img+2
  • Ansys Staff
  • 348 replies
  • April 3, 2025

In order to better search the ZPL section of the help, I like to do the following:

  • Open the Help PDF in a browser (Chrome or Edge)
  • Determine the first and last page of the ZPL section.  For 2024R2, it starts on page 1478 and ends on 1627
  • Click on the Print icon in the browser toolbar
  • For the Printer, select Save as PDF and enter the page ranges from above
  • Click Save

Now you can search this smaller PDF quicker and more easily.  It’s not a perfect solution because you’ll still need to know what you’re looking for but I find this very helpful when I need to create complex ZPL macros.


Kris
  • Author
  • Infrared
  • 16 replies
  • April 4, 2025

Good tip ​@MichaelH! I see that the help file is indeed extensive and lists (probably) all possible ZPL commands. I see no harm in adding this extensive list to the help file as well (i.e. the interactive Windows help system) so that both sources of information - the manual and the help system - would be equivalent.


Reply


Cookie policy

We use cookies to enhance and personalize your experience. If you accept you agree to our full cookie policy. Learn more about our cookies.

 
Cookie settings