Difference between revisions of "Setting up the new Formula System"

From PCGen Wiki
Jump to: navigation, search
Line 80: Line 80:
 
** There can be multiple actions (more below), but SET will ALWAYS be available for any format.
 
** There can be multiple actions (more below), but SET will ALWAYS be available for any format.
 
* X is the value related to the action.  If the action is set, the variable will be set to the value in this part of the token.
 
* X is the value related to the action.  If the action is set, the variable will be set to the value in this part of the token.
 +
** Note: The value CAN be a formula.  It is possible, for example, to SET a variable to OtherVar+4 ... the system will solve that formula.  For legal OPERATORS (e.g. "+") , see below.
 
* Y is the name of an (optional) ASSOCIATION.  For now, PRIORITY (more below) is the only available association.
 
* Y is the name of an (optional) ASSOCIATION.  For now, PRIORITY (more below) is the only available association.
 
* Z is the value of the association.
 
* Z is the value of the association.
 +
 +
==Available OPERATORS==
 +
 +
For NUMBER, the following modifiers are available:
 +
* +: performs addition
 +
* -: performs subtraction (or is the unary minus operator to make a value negative)
 +
* *: performs multiplication
 +
* /: performs division
 +
* %: performs a remainder function
 +
* ^: performs an exponential calculation
 +
* ==: Checks for equality (NOTE: Returns a BOOLEAN, not a NUMBER)
 +
* !=: Checks for inequality (NOTE: Returns a BOOLEAN, not a NUMBER)
 +
* >: Checks for greater than (NOTE: Returns a BOOLEAN, not a NUMBER)
 +
* <: Checks for less than (NOTE: Returns a BOOLEAN, not a NUMBER)
 +
* >=: Checks for greater than or equal to (NOTE: Returns a BOOLEAN, not a NUMBER)
 +
* <=: Checks for less than or equal to (NOTE: Returns a BOOLEAN, not a NUMBER)
 +
 +
For BOOLEAN, the following modifiers are available:
 +
* ==: Checks for equality
 +
* !=: Checks for inequality
 +
* &&: Performs a logical AND
 +
* ||: Performs a logical OR
 +
* !: Negates the value
  
 
==Available MODIFIERS==
 
==Available MODIFIERS==

Revision as of 00:57, 21 January 2018

The basics

The new formula system is designed to do a few things relative to data:

  • Validate formulas at LST load instead of runtime
  • Dramatically increase flexibility
  • It will replace many tokens, including all the BONUS tokens

Key concepts

To use the new system a few key things need to be remembered:

  • It is possible to have local variables
  • All variables must be defined prior to use
  • Variables are not only numbers, but can be Strings, Dice, etc.
    • We call this the variable FORMAT

Required Setup

Every format that needs to be used requires a default value. This value is shared throughout an entire system (it CANNOT be redefined). This is placed into a file referred to in a PCC file from the DATACONTROL: token.

The token used within that lst file is DEFAULTVARIABLEVALUE:

The format is DEFAULTVARIABLEVALUE:X|Y

  • X is the format name
  • Y is the default value
  • Example: DEFAULTVARIABLEVALUE:NUMBER|0

How to define a variable

To define a variable, you need to add an LST file that is referred to in a PCC file from the VARIABLE: token.

There are 2 basic tokens for the VARIABLE file: GLOBAL and LOCAL.

  • GLOBAL defines a global variable, usable from anywhere within the PlayerCharacter.
  • LOCAL defines a local variable, usable only within the object on which the variable exists (or its children)
    • The place where a local variable is usable is called the SCOPE. This could include a STAT (such as the stat's SCORE or STATMOD) or EQUIPMENT. The scopes possible in PCGen are hard-coded.

Both of those tokens can take an additional token on the line called EXPLANATION, which it is advisable to use to communicate to other data monkeys (and it is likely any future editor will also draw on this information)

The format of GLOBAL is GLOBAL:X=Y

  • X is the format name
  • Y is the variable name
  • Example: GLOBAL:ORDEREDPAIR=Face

The format of LOCAL is LOCAL:W|X=Y

  • W is the scope of the variable
  • X is the format name
  • Y is the variable name
  • Example: LOCAL:STAT|NUMBER=Score

A few notes about the VARIABLE files: If you see an item without a leading token, e.g.:

  • ORDEREDPAIR=Face

...then the system is using the default (GLOBAL). For now, the data standard is to avoid using this shortcut (as far as I know)

If you see an item without a leading format ("X" in both GLOBAL and LOCAL above), e.g.: LOCAL:STAT|Score ...then the format is a NUMBER. For now, the data standard is to avoid using this shortcut (as far as I know)

Legal Scopes

The following are the legal scopes (not including GLOBAL):

  • EQUIPMENT: This is a variable local to equipment
    • EQUIPMENT.PART: This is a variable local to an equipment PART (or in older terms, an Equipment HEAD). Note that due to double sided weapons, Damage, CritMult and other items are generally on an equipment PART, not on the Equipment itself. Note also that this is a SUBSCOPE of the EQUIPMENT scope (so all variables in the EQUIPMENT scope can also be seen in the EQUIPMENT.PART scope)
  • SAVE: This is a variable local to Save (or if you prefer, Check)
  • SIZE: This is a variable local to the Size of a PC
  • SKILL: This is a variable local to a Skill
  • STAT: This is a variable local to a Stat

Setting a variable

The MODIFY token is used to set a variable.

The format of the token is: MODIFY:V|W|X|Y=Z|Y=Z

  • V is the Variable name for which the value will be modified
    • This variable MUST be visible in the current scope. Therefore, it must be either a global variable or a local variable on the current object or its parents.
  • W is the MODIFIER to be taken on the variable (e.g. SET)
    • There can be multiple actions (more below), but SET will ALWAYS be available for any format.
  • X is the value related to the action. If the action is set, the variable will be set to the value in this part of the token.
    • Note: The value CAN be a formula. It is possible, for example, to SET a variable to OtherVar+4 ... the system will solve that formula. For legal OPERATORS (e.g. "+") , see below.
  • Y is the name of an (optional) ASSOCIATION. For now, PRIORITY (more below) is the only available association.
  • Z is the value of the association.

Available OPERATORS

For NUMBER, the following modifiers are available:

  • +: performs addition
  • -: performs subtraction (or is the unary minus operator to make a value negative)
  • *: performs multiplication
  • /: performs division
  •  %: performs a remainder function
  • ^: performs an exponential calculation
  • ==: Checks for equality (NOTE: Returns a BOOLEAN, not a NUMBER)
  •  !=: Checks for inequality (NOTE: Returns a BOOLEAN, not a NUMBER)
  • >: Checks for greater than (NOTE: Returns a BOOLEAN, not a NUMBER)
  • <: Checks for less than (NOTE: Returns a BOOLEAN, not a NUMBER)
  • >=: Checks for greater than or equal to (NOTE: Returns a BOOLEAN, not a NUMBER)
  • <=: Checks for less than or equal to (NOTE: Returns a BOOLEAN, not a NUMBER)

For BOOLEAN, the following modifiers are available:

  • ==: Checks for equality
  •  !=: Checks for inequality
  • &&: Performs a logical AND
  • ||: Performs a logical OR
  •  !: Negates the value

Available MODIFIERS

For NUMBER, the following modifiers are available:

  • SET: This sets the variable to the value provided in the "X" parameter
  • ADD: This adds the current value of the variable to the value provided in the "X" parameter
  • MAX: This takes the maximum value of the current value of the variable and the value provided in the "X" parameter (i.e. min(current value, "X"))
  • MIN: This takes the minimum value of the current value of the variable and the value provided in the "X" parameter (i.e. max(current value, "X"))
  • MULTIPLY: This multiplies the current value of the variable and the value provided in the "X" parameter
  • DIVIDE: This divides the current value of the variable by the value provided in the "X" parameter

Understanding PRIORITY and processing of MODIFY and MODIFYOTHER

When a PlayerCharacter has multiple items that attempt to modify a variable, they are sorted by two systems:

  • First, they are sorted by their user priority. This is provided in the PRIORITY=Z association. Lower PRIORITY will be processed first.
  • Second, they are sorted by their inherent priority. This is a built-in system that approximates mathematical priority rules. It ensures, for example, that a SET will occur before ADD if they both have a matching user priority.

Example: Assume we had the following items:

  • MODIFY:Hands|MULTIPLY|2|PRIORITY=100
  • MODIFY:Hands|SET|2|PRIORITY=50
  • MODIFY:Hands|ADD|1|PRIORITY=50

The first thing is that we can tell from the PRIORITY items that the SET and ADD will both occur BEFORE the multiply (because 50 < 100). For the SET and ADD, we would need to know the inherent priority (For what it's worth, SET is 0, ADD is 1). This means the SET will happen first. So the result is Hands is SET to 2, then ADD 1 to get 3, then MULTIPLY by 2 to get 6.

By controlling the PRIORITY, the data team can reorder any calculation and perform much more complicated calculations than was possible with BONUS (where movement, for example, had multiple different BONUS tokens to try to do adding before and after a multiply)