COAL

From 3DGE Wiki
Jump to: navigation, search

COAL is a QuakeC-derived language used for controlling the heads-up display and player interactions in EDGE. It replaces plain LUA from earlier versions of EDGE. COAL is based heavily on QuakeC itself.

See the brand-new COAL HUD MANUAL for specific descriptions of all available functions.

Loading

In EDGE there are two files with hard-coded names (./doom_ddf/coal_api.ec and ./doom_ddf/coal_hud.ec) which get loaded. As you can see, these scripts use the "EC" extension (as opposed to the "QC" extension from QuakeC).
Coal scripts can also get loaded from wads, each wad given with -file can contain a lump called COALHUDS which will be loaded, and functions (such as draw_all) can be replaced.
Messages about loading and compiling errors get printed on the console and both EDGE.LOG and DEBUG.TXT.

Type System

Coal is statically typed, which means variables and function parameters can only use a single type. For example if the variable takes strings, you cannot assign a number to it.

The available types are:

  • float : used for numbers (floating point), e.g. 123 or -7.654
  • string : used for strings, which are specified with double quotes, e.g. "foobar"
  • vector : used for a 3D coordinate in the world. Vector constants are three numbers surrounded by a single quote, such as '0 -1 2'

Operators

  •  ! boolean not, e.g. !0 == 1
  • ^ raise to the power, e.g. 2^3 == 8
  • & integer bit-and, e.g. 3 & 6 == 4
  • | integer bit-or, e.g. 3 | 6 == 7
  • * multiplication
  • / division
  •  % modulo
  • + addition
  • - subtraction
  • == equals
  •  != not equals
  • < less than
  • > greater than
  • <= less than or equals
  • >= greater than or equals
  • && boolean and
  • || boolean or


Precedence table (highest to lowest):

  • ^ * / % & |
  • + -
  • == != < > <= >=
  • && ||

The * operator can be used on two vectors, and the result is the dot product (i.e. A * B calculates A.x * B.x + A.y * B.y + A.z * B.z).

The + operator can concatenate two strings, or a string and a float or vector (but the string must be on the left side). Hence a useful idiom is doing "" + x to convert a number to a string.

There is no unary - operator, to negate a value you need to do this: 0 - x

The && and || boolean operators are short-circuit, which means that the right side is not evaluated if the result is known from the left side only. For example: (1 && somefunc()) will never call that function.

Declaration Kinds

The following things can be declared globally: variables, constants, functions, and modules.

All of those (except for modules) can also be declared inside modules.

Within functions only variables can be declared (not constants, functions etc).

Global variables, constants and functions can be redeclared by later code (especially by a newer file), so long as the types are the same. Redefining a constant means that previous code using that constant will use the new value (in COAL constants are really just read-only variables).

Modules do not get redeclared, instead if the module already exists then the new contents are simply added to the existing module, and previous stuff can be redefined too.

Syntax for Variables and Constants

Variables are declared like this. When the type is not specified, float is assumed.

var name var name : type

You can also give the initial value (otherwise the value defaults to 0 for numbers, "" for strings).

var foo = 123 var bar : string = "qwerty"

Constants always have a value and never use a typename (after ':') because the type is known from the value.

constant TIMEOUT = 300

Syntax for Modules

module name { .....declarations here..... }

Syntax for functions

Ordinary functions use the following syntax. The return type (and the ':') is optional, when omitted then the function does not return any value, like void functions in C.

function name(arguments....) : type = { .....code here..... }

Native functions are implemented by the host environment (EDGE) , and hence you cannot add your own. For completeness their syntax looks like this:

function name(arguments....) : type = native