question

Serge A avatar image
0 Likes"
Serge A asked Serge A commented

Parantheses in switch statement in Flexscript

I noticed that Flexscript (as of ver. 2017), doesn't support parentheses around the case values. The following example cannot be built:

  1. #define FOO (1) // follow the best practice of C macros here
  2. #define BAR (2)
  3.  
  4. int n = 2;
  5. switch (n) {
  6. case FOO: // <-- syntax error
  7. pt("foo"); pr();
  8. break;
  9. case BAR:
  10. pt("bar"); pr();
  11. break;
  12. }

The error is:

  1. syntax error, unexpected '(', expecting integer or hexadecimal integer or '-'

On a related note, what is the recommended way to have multiple numeric or string constants defined and shared between multiple nodefunctions? There are Global Macros and Global Variables, but is there a way to avoid polluting the global namespace and not having to copy-paste pages of code?

FlexSim 17.0.1
flexscriptmacroswitch statementdefine
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

1 Answer

Matt Long avatar image
3 Likes"
Matt Long answered Serge A commented

Not sure I've ever seen a switch statement written with parenthesis around the cases. Remove the parenthesis and you'll be just fine.

As for sharing numeric/string constants between multiple functions, the only way to do this is to define it as a global macro or global variable. There are ways of making 'hidden' global variables using Model Libraries. You can refer to the Miscellaneous / Custom Libraries section of the user manual for information on creating Model Libraries.

· 3
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.