Operator Reference

From the Fallout4 CreationKit Wiki
Revision as of 20:58, 20 October 2017 by imported>Cobalt027
Jump to navigation Jump to search

The following are valid operators in the Papyrus language:

() [] ,  =  +  -
*  /  %  .  "" !
== != >  <  >= <=
|| && += -= *= /=
%= as is

Parenthesis

()

Parenthesis, when surrounding an expression, will cause that expression to be evaluated before any operators outside of the parenthesis. When following a function name, they denote the parameter list for the function.

Examples:

; i will get the value of 9
i = (1 + 2) * 3


; call the function MyFunction with a parameter of 10
MyFunction(10)

Square Brackets

[]

Square brackets are used for arrays. Either for accessing a specific array element, denoting the size of an array for a new one, or for denoting that a type is an array type.

Examples:

; i whatever is in element 0 of the array
i = myArray[0]


; define an array of size 10
int[] myArray = new int[10]

Comma

,

The comma operator separates parameters in a function definition, or a function call.

Examples:

; call the function MyFunction with a parameter of 10 and 20
MyFunction(10, 20)

Math Operators

+ - * / %

Math operators perform some sort of operation on the two expressions it sits between. Papyrus supports assignment, addition, subtraction, multiplication, division, and integer modulus. The minus sign is also used for negation (also known as unary minus). The addition operator can also be used to concatenate ('paste together') strings.

Examples:

; i will get the value of 7
i = 1 + 2 * 3


; i will get the value of 1
i = 9 % 4


; i will get the string "Hello World"
i = "Hello " + "World"

Note:

  • Modulous unreliable for values greater than 0x80000000
  • Code that uses modulous to manually isolate the last 6 bytes of a formid will fail if the user has more than 127 mods installed.
int ex1 = (0x7fffffff % 0x01000000) ; =  0x00ffffff as expected
int ex2 = (0x80000000 % 0x01000000) ; =  0x00000000 as expected 
int ex3 = (0x80000001 % 0x01000000) ; = -0x00ffffff, not expected
int ex4 = (0x80000002 % 0x01000000) ; = -0x00fffffe, not expected


Dot

.

The dot operator goes after a variable name to let you call functions on it, or to access properties or struct members.

Examples:

; Call the function on the variable
myVariable.MyFunction()


; Set the property to 10
myVariable.MyProperty = 10

Double Quotes

""

Double quotes surround a string literal.

Examples:

; A basic hello world string
hello = "Hello World!"

Logical Operators

! || &&

Logical operators evaluate to true or false values, based on their expressions.

  • The NOT operator (!) will be true if its single expression (to the left of the operator) is false, and false if it is true.
  • The OR operator (||) will be true if one of the expressions to its left and right are true, and will short-circuit if the left expression is true (it will not evaluate the right expression at all).
  • The AND operator (&&) will be true if both of the expressions to its left and right are true, and will short-circuit if the left expression is false (it will not evaluate the right expression at all).

Examples:

; i gets true if both a and b are true
i = a && b


; i gets true if a is false
i = !a

Comparison Operators

== != < > <= >=

The comparison operators compare both expressions to their left and right, and return a boolean value based on the operator used. If floating-point values are being compared, a tiny epsilon value is accounted for to conteract floating-point error. If string variables are being compared, the comparison is case-insensitive.

  • Equality (==) returns true if both expressions have equal values.
  • Inequality (!=) returns true if both expressions have inequal values.
  • Less-than (<) returns true if the right expression's value is smaller then the left expression's value.
  • Greater-than (>) returns true if the right expression's value is larger then the left expression's value.
  • Less-than or equal to (<=) returns true if the right expression's value is smaller than or equal to the left expression's value.
  • Greater-than or equal to (>=) returns true if the right expression's value is larger than or equal to the left expression's value.

Examples:

; i will get true if a is greater then b
i = a > b


; i will get true if a is equal to b
i = a == b

Assignment Operators

= += -= *= /= %=

Assignment operators assign the value from the right expression to the variable (or property) from the left expression. If the equal sign starts with one of the math operators, then the right expression's value will be added to the current value of the left expression, and then assigned to the left expression. Note that if the left expression is a property, then both the property's get and set functions will be called.

Examples:

; assign 10 to i
i = 10


; add 1 to the current value of i, and assign it to i
i += 1

Cast

as

The cast operator attempts to cast the value from the left expression to the type to the right of it, and returns the resulting value.

Examples:

; cast a to a float and assign it to i
i = a as float

Type Check

is

The type check operator checks to see if the value from the left expression is the type specified to the right of it, and returns true or false. If the type is a base type, like int, bool, or float, the check is strict and will only return true if the type exactly matches (a float is not an int, for example). If the type is an object type, then the check is loose and will return true if the object would be successfully cast to the type (an ObjectReference is a Form).

Examples:

; check to see if myObject is an ObjectReference
if myObject is ObjectReference
  Debug.Trace("I got an object reference!")
endIf

Operator Precedence

Operator precedence is listed in the following table, from highest to lowest:

() Mathematical parenthesis
. Dot operator (for accessing functions and properties)
as is Cast operators
- ! Unary minus and logical NOT
* / % Multiplication, division, and modulus
+ - Addition and subtraction
== != > < >= <= Comparison operators
&& Logical AND
|| Logical OR
= += -= *= /= %= Assignment