MecScript Language
MecScript is a statically-typed, heap-less, C-style scripting language for 32-bit embedded systems. Source files (.mec) compile to a compact bytecode binary (.mbin) that runs on a stack-based virtual machine inside the host device.
1. Program Structure
There is no main function. Top-level statements execute in source order when the script runs.
System:: is the namespace host (native) functions are called through by default. A host can put its natives in a namespace of its own instead. See Native functions.
Functions and classes may be declared at the top level. They can be referenced before their declaration appears in the file (see Forward references).
2. Comments
MecScript supports C-style single line and block comments.
3. Types
MecScript is a statically typed language. All data types are known at compile time, making execution faster and safer.
| Keyword | Alias | Meaning | Width |
|---|---|---|---|
void | no value (return type) | - | |
bool | true / false | 1 byte | |
char | s8 | signed 8-bit integer | 1 byte |
byte | u8 | unsigned 8-bit integer | 1 byte |
short | s16 | signed 16-bit integer | 2 byte |
ushort | u16 | unsigned 16-bit integer | 2 byte |
int | s32 | signed 32-bit integer | 4 byte |
uint | u32 | unsigned 32-bit integer | 4 byte |
float | f32 | 32-bit IEEE-754 | 4 byte |
string | immutable text constant | ref |
The alias column is just another way to declare the same keyword: s8 and char compile to exactly the same type, so they mix freely and error messages always report the char/byte/… name.
Aliases are provided for convenience as they are a little more descriptive than the classical type names.
char and byte are numeric types, not a distinct character type. Individual character literals are not supported, so an integer must be used.
string is a reference to a compile-time constant. String variables and string native parameters can only ever hold a literal or another string constant. For mutable text, use a byte array (see Strings).
4. Literals
null, NULL, and nil are all accepted and evaluate to integer 0.
String literals use double quotes. There are no escape sequences: "\n" is a backslash followed by n, not a newline.
5. Variables
All variables are zero-initialized if no initializer is given.
Scope
- Variables declared at the top level are globals.
- Variables declared inside a function or block are locals.
- Blocks (
{ ... }) introduce a new scope. A local is visible from its declaration to the end of its enclosing block.
const
const marks a variable read-only after its initializer runs. Writing to it later is a compile error.
Naming Style
MecScript enforces no naming convention. One common pattern is UpperCamelCase for functions and global variables and lowerCamelCase for locals and parameters, which makes a name’s scope visible at a glance and matches how the native reference set is written. The compiler accepts any style, and the choice is entirely yours.
6. Operators
All basic mathematical and bitwise operations are supported.
Arithmetic
Important
Integer division and modulus by zero halt the VM (vmDivisionByZero). Float division by zero also halts.
Bitwise
Comparison
A comparison always produces a bool.
Logical
Assignment
There is no %=, <<=, or >>=.
Increment / Decrement
Both prefix and postfix forms work on a variable:
Narrow types wrap at their own width:
Ternary
Behaves like a single line if/else statement.
Precedence
From tightest to loosest binding:
.[]()(member, index, call)!~++--(unary)*/%+-&|^<<>><><=>===!=&&||?:(ternary)=+=-=*=/=(assignment)
Note that the bitwise and shift operators sit at the same level as + and -. Parenthesize when mixing them with arithmetic.
7. Type Conversions
Numeric types convert implicitly across signed, unsigned, and float categories as needed by an assignment, argument, or operator. There is no explicit cast syntax.
There is no integer overflow or wraparound detection. Arithmetic that exceeds a type’s range wraps silently.
8. Control Flow
if / else if / else
while
A while loop will continue as long as the condition is true.
There is no do/while.
for
A for loop has an initializer, condition, and update expression. The loop will continue as long as the condition is true.
All three clauses are optional. Any of them may be left empty, and for (;;) is an infinite loop.
break & continue
continuewill skip the rest of the loop body and continue to the next loop iteration.breakexits the loop immediately.
break and continue work in while and for loops.
switch
The controlling expression is an integer (float is rejected). case labels are integer literals and must be unique. default is optional. A case without a break falls through to the next case, as in C.
A case with no body falls straight into the next one, which is how several values share a single handler:
A case that has a body but no break runs its own body and then continues into the next case:
Info
switch statements are much more efficient than long if/else chains. They use a jump table to very quickly jump to the correct case label, rather than checking every entry for a match. The tradeoff is they produce more compiled binary size for large ranges.
A switch statement has to produce a jump table entry for every value between its lowest and highest case label value. This means that for large value ranges with a low number of case labels, the compiled output will be huge compared to if/else. The number of case labels has no effect on performance.
The compiler will output a warning if the number of case labels is less than half the value range.
9. Functions
- Scalar parameters are passed by value.
- A non-
voidfunction mustreturna value. - Calling with the wrong number of arguments is a compile error.
- Recursion is supported.
Forward References
A top-level function or class may be used before it is declared in the file. This allows mutual recursion:
Array Parameters
An array parameter is written T name[] or T *name (equivalent). The array size is not carried in the type itself, so the caller still passes the array by bare name plus an explicit length argument, and should not rely on count/len matching the array’s real size. A variable index used inside the function is checked at runtime against the caller’s actual array, the same as any other array (see “Bounds checking” in the Arrays section); only a native function’s own C++ implementation is unchecked, C snprintf-style.
Passing a non-array where an array parameter is expected, or an array of the wrong element type, is a compile error. So is giving the parameter a size (int values[4]).
Inside the function the parameter is used exactly like an array: index it, or pass it on by name to another array parameter, script or native. It cannot be used as a value on its own.
Class parameters
See Classes.
10. Arrays
- Array size is fixed at compile time.
- If an initializer list is present, its length must match the declared size exactly.
int a[3] = {1, 2};is a compile error. - Without an initializer, every element is zero.
Indexing and assignment
Packed storage
char/byte arrays pack 4 elements per 4-byte slot; short/ushort arrays pack 2 per slot. This is transparent to the script; index them normally.
Bounds checking
A literal out-of-range index is a compile error, including a negative one:
A variable or computed index is checked at runtime instead. An out-of-range access halts the VM with vmArrayIndexOutOfBounds rather than reading or writing whatever happens to sit next to the array:
This covers array parameters too: a function indexing a T name[] parameter with a variable index is checked against the size of whatever array the caller actually passed in, even through several levels of forwarding. It also covers an array field declared inside a class, however it’s reached: directly, through a class-typed parameter, or through a composed/embedded instance. It never applies inside a native function’s own implementation, which reads and writes the buffer directly in host C++ with no VM involvement at all.
Bare array references
An array name used without an index has no value. It cannot be assigned to a scalar, returned as a scalar, or passed as a scalar argument. Pass it only to an array parameter (with a length) or index it.
11. Strings
String literals are immutable compile-time constants. Use them directly with the print natives:
For text you need to build or modify at runtime, use a byte buffer and the string natives. Every string native takes an explicit capacity, C snprintf-style. Nothing grows a buffer for you.
Notes and limits:
StrCopy/StrAppendtake astringconstant as the source, not anotherbyte[]buffer.- A freshly declared buffer is zero-filled, so
StrLengthon an untouched buffer is 0. - Content that does not fit the capacity is truncated and null-terminated.
12. Classes
Classes are supported for advanced data structures.
Fields
Declared in the class body. Each instance gets its own copy.
Methods
- Inside a method,
this.fieldand a barefieldname both refer to the current instance’s field. - A method can call a sibling method on the same instance with
this.method().
Constructors
ClassName(params) { ... }. A class has at most one constructor. It runs when an instance is declared with an argument list:
Fields are always zero-initialized first, before the constructor body runs. A class with no constructor is declared without parentheses:
Declaring an instance of a class that has a constructor without an argument list compiles, but produces a warning.
Destructors
~ClassName() { ... }. Runs automatically when the instance goes out of scope:
- A local instance is destroyed at the end of its enclosing block.
- Multiple instances in the same scope are destroyed in reverse declaration order (LIFO).
- Global instances are destroyed once, at script end, in reverse declaration order.
Passing instances
Pass an instance to a function or method by reference with ClassName *param. The callee can call methods on it and read or write its fields, including compound assignment.
Passing an instance of the wrong class, or a non-instance, is a compile error. A bare instance name (no ., no method call, not passed to a class parameter) has no value and cannot be used as one.
Class-typed fields (composition)
A field may itself be a class instance. The embedded instance is laid out inline in its owner and reached with a chain of .:
- Nesting is unlimited:
a.b.c.xresolves as long as each step names a class-typed field. - Compound assignment works through the chain:
o.inner.value += 50;. - An embedded instance can be passed by reference like any other instance:
take(o.inner);wheretaketakesInner *i. - When an instance is created, each embedded field is zero-initialized and its field-default initializers run, outermost first.
- Destructors run automatically and in order: the owner’s destructor body first, then each embedded field’s destructor in reverse declaration order.
Limits:
- No member-initializer syntax. You cannot pass constructor arguments to an embedded field. Embedding a class whose constructor takes arguments is a compile error. A class with no constructor (or a parameterless one) is fine.
- No cycles. A class cannot contain itself, directly or indirectly (
class A { A a; }, orAholding aBthat holds anA). This is a compile error.
Not supported
- Inheritance. Every class is standalone. There is no subclassing.
- Class-typed return values. A function cannot return a class instance.
13. Namespaces
Namespaces are optional. They group top-level declarations under a name so they can be kept tidy and referred to explicitly. They have no runtime cost or effect: a namespaced global is still a plain global, and a namespaced function is still an ordinary function.
Refer to a member from outside with the :: scope operator:
- Unqualified access inside the block. Within
namespace Geometry { }, other members are visible without the prefix (area()can callgridSizeandPointdirectly). Names that don’t resolve inside the namespace fall back to the global scope. - Reopening. The same namespace name may be opened more than once, and the contents are merged.
- Forward references work across the whole file, exactly as they do at the top level.
- No nesting. A
namespacecannot be declared inside anothernamespace. - Native namespaces are reserved. A script cannot declare a namespace that natives were declared in, and
Systemis always off limits. See Native functions.
14. Preprocessor
Runs on the token stream before parsing. Two directives are supported.
#include
- Path is resolved relative to the including file first. If it is not found there, each include search directory given to the compiler (
MecCompile -I <dir>, seeTOOLCHAIN.md) is tried in order. Absolute paths are used as is. - Each file is included at most once, so diamond includes are safe.
- A circular include is a compile error, not a hang.
- A missing file is a compile error.
- Errors inside an included file are reported against that file’s own line numbers.
#define
Object-like macros only.
- A name is a macro only from its
#defineonward. - A macro body may reference an earlier macro, which is re-scanned and expanded.
- Self-referential and mutually-referential macros expand once and stop.
- An empty replacement is allowed and vanishes at the use site.
- Function-like macros (
#define SQ(x) ((x)*(x))) are a compile error. - There are no conditional directives (
#ifdef,#if,#endif,#undef). - A macro defined in an including file is visible inside included files.
15. Native functions
Native functions are implemented by the host application and called from a script. They are declared in a signature file that the build supplies to the compiler.
Calling convention
Every native must be called through the namespace it was declared in:
A bare Yield(10) is a compile error.
Declaration syntax
A declaration written outside any namespace goes into System:
Each declaration needs a unique [native N] id that maps to the host’s implementation. A native declared here but not resolved by the host fails at runtime (vmNativeFunctionNotResolved), not at compile time.
Namespaces
Wrap declarations in a namespace block to group them under a name of your own:
- The namespace only changes the name a script calls the native by. There is no runtime cost and no effect on the compiled binary, and the
[native N]id is still the only thing the host resolves against. - Namespaces cannot be nested, same as in a script.
- A namespace used by any native is reserved, so a script cannot declare one with the same name.
Systemis reserved whether or not anything is declared in it. - Only the namespace is reserved, not the names inside it. With
CAN::Readdeclared, a script is still free to declare its ownReadvariable or function, or aData::Readof its own.
Callback parameters
A native can take a script function as an argument. The parameter type is func, and the script passes a bare function name, no parentheses:
The parameter list after func is the signature the script function must have. It always returns void. The compiler checks the function’s parameter count, each parameter’s type, and whether it is an array, and reports a mismatch at the call site. A bare func with no parameter list accepts any void function; a wrong parameter count is then only caught when the host calls it (vmCallArgCountError).
An array parameter in a callback is host-owned memory that lives only for the duration of the call. Index it or pass it on to another array parameter as usual, and copy anything you want to keep into a script array before returning.
Reference set
| Signature | Purpose |
|---|---|
void SetError(int code) | Signal a recoverable error code to the host. |
void Print(string str) | Write a string, no newline. |
void PrintLine(string str) | Write a string and a newline. |
void PrintInt(int i) | Write an integer and a newline. |
void PrintFloat(float f) | Write a float and a newline. |
void PrintFormat(string str, float f) | Write a format string with one float (PrintFormat("v: %f", 3.14)). |
int StrLength(byte buf[], int capacity) | Length up to the null terminator or capacity. |
void StrCopy(byte dest[], int destCapacity, string src) | Copy a string constant into a buffer, truncating to fit. |
void StrAppend(byte dest[], int destCapacity, string src) | Append a string constant onto a buffer’s content. |
void IntToStr(byte dest[], int destCapacity, int value) | Format an integer as decimal text into a buffer. |
bool StrEquals(byte a[], int capA, byte b[], int capB) | Compare two buffers’ null-terminated contents. |
void PrintBuffer(byte buf[], int capacity) | Write a buffer’s null-terminated content. |
uint NowMs() | Host uptime in milliseconds. Wraps on overflow - compare with unsigned subtraction. |
uint NowUs() | Host uptime in microseconds. Wraps on overflow, typically much sooner than NowMs. |
void Yield(uint t) | Pause for t milliseconds. |
uint YieldUntil(uint lastTime, uint delay) | Fixed-period pause: sleeps until lastTime + delay, returns the new lastTime to pass back in next iteration. |
SetError
SetError(int) records an error code without halting the VM. The host reads it back after the run (MecVm::GetScriptError()). The last call wins. The default is 0.
16. Runtime Model and Limits
- No heap. Globals, locals, and call frames all live in one buffer supplied by the host. The VM never allocates at runtime.
- 64 KB bytecode ceiling. A single compiled binary, including everything pulled in by
#include, cannot exceed 65,535 bytes of bytecode. - Fixed stack. The host sets the stack size. Deep recursion or large local arrays can exhaust it (
vmStackOverflow). - Bounds checking. Stack overflow/underflow and out-of-range pointer dereferences are caught and halt the VM rather than corrupting memory. The host can disable this for targets that cannot afford the checks. A local, global, or array-parameter index that runs off the end of its array is also caught (
vmArrayIndexOutOfBounds); see “Bounds checking” under Arrays. - Division by zero halts the VM (
vmDivisionByZero) for integer and float operands. - No overflow detection. Arithmetic wraps silently.
- No exceptions. There is no
try/catch/throw. A genuine runtime error halts the VM. UseSetErrorfor recoverable conditions. - No string escape sequences.
VM status
A run ends with a status code. vmEnd is normal completion. Others include vmDivisionByZero, vmStackOverflow, vmStackUnderflow, vmPointerOutOfBounds, vmArrayIndexOutOfBounds, vmNativeFunctionNotResolved, and vmUnknownInstruction.
17. Complete Example
Output: