Difference between revisions of "Expression"

From Castle Wiki
Line 13: Line 13:
* The value of a [[variable]]
* The value of a [[variable]]
*A constant number. This is the same as not using an expression.
*A constant number. This is the same as not using an expression.
*The value of a behavior property
*The value of a [[Behavior]] property


=== Choices===
=== Choices===

Revision as of 18:09, 11 May 2022

An Expression is a representation of a value that is resolved while the deck is playing. Some common uses for expressions include: Reading the value of variables, performing simple math, or creating randomness. Expressions can also be nested and combined to support more complex things, such as calculating health for characters, crafting procedural games and animations, and even making generative artwork.

Expressions always resolve to a numeric value.

Some expressions take arguments. For example, when reading the value of a Variable, you need to specify which variable to read. When adding two numbers, you need to specify which two numbers (or expressions) to add. Other expressions don't take any arguments, such as the Time elapsed since the card started.

Using Expressions

Expressions are an important component of Rules in Castle. Typically, when editing a rule, any numeric value can be an expression. To edit an expression, look for the round beaker icon to the left of a number input. Press it to open a sheet to edit that expression.

List of Expression Types

Values

  • The value of a variable
  • A constant number. This is the same as not using an expression.
  • The value of a Behavior property

Choices

Randomness

Spacial relationships

Arithmetic

Clock

Functions