Difference between revisions of "Lua Language"
Line 30: | Line 30: | ||
In Lua variables are polymorphic (can change the type during theirs lifes). By default a variable is global at Lua Engine level unless the declaration begins with <code>local</code> modifier. | In Lua variables are polymorphic (can change the type during theirs lifes). By default a variable is global at Lua Engine level unless the declaration begins with <code>local</code> modifier. | ||
+ | The assign operator <code>=</code> is mandatory just for the global variable declaration and can be use later to modify any variable. | ||
− | Any variable can host: | + | Any variable can host different data types and use specific operators: |
− | * nothing (not defined, | + | * '''nil''' meaning nothing (a variable not defined, or not assigned, or assigned to '''<code>nil</code>''') |
− | * a | + | ** Comparing operators: comparing any variable to '''<code>nil</code>''' ( <code>var == nil</code> or <code>var ~= nil</code> ) |
− | * a boolean value (true/false) | + | * a '''number''' value (no difference between integer or float values, nor between different precisions) |
− | * a string (constants can be surrounded by single <code>'string'</code>or double quotes <code>"string"</code> or | + | ** Binary arithmetic operators between two numbers: <code>+</code>, <code>-</code>, <code>*</code>, <code>/</code>. |
− | * a table | + | ** Unary arithmetic operators: <code>+</code>, <code>-</code> (example: <code>var1 = -var2</code>) |
− | * a function | + | ** Comparing operators between two numebers giving a boolean: <code>></code>, <code>>=</code>, <code><</code>, <code><=</code>, <code>==</code>, <code>~=</code>. |
+ | * a '''boolean''' value (equal to <code>true</code> or <code>false</code>) | ||
+ | ** Binary boolean operators: <code>and</code>, <code>or</code>. | ||
+ | ** Unary boolean operator: <code>not</code>. | ||
+ | * a '''string''' (constants can be surrounded by single <code>'string'</code>or double quotes <code>"string"</code> or double square brackets <code><nowiki>[[string]]</nowiki></code>; the last case accepts new lines inside) | ||
+ | ** Concatenation operator: <code>..</code> between two strings. | ||
+ | ** Comparing operators between two strings '''content''' giving a boolean: <code>></code>, <code>>=</code>, <code><</code>, <code><=</code>, <code>==</code>, <code>~=</code>. | ||
+ | * a '''table''' | ||
+ | * a '''function''' | ||
− | ''' | + | '''Tips:''' |
+ | * Always use the right operators for the right types. | ||
+ | * Always use parethesis for complex expressions (the expression <code>not var1==nil or var1~=3</code> is not equal to <code>not (var1==nil or var1~=3)</code> ). | ||
+ | * Use the function <code>type</code> to get a string containing the real type of a variable. | ||
'''Examples:''' | '''Examples:''' | ||
<pre> | <pre> | ||
+ | local MyVar0 -- local variable having nothing inside so equal to nil | ||
MyVar1 = nil -- global variable MyVar1 having nothing inside (no type neither) | MyVar1 = nil -- global variable MyVar1 having nothing inside (no type neither) | ||
MyVar2 = UnknownVar -- another global variable equal to nil (because UnknowVar is not yet defined) | MyVar2 = UnknownVar -- another global variable equal to nil (because UnknowVar is not yet defined) | ||
Line 61: | Line 74: | ||
'''Examples:''' | '''Examples:''' | ||
<pre> | <pre> | ||
− | + | print(MyVar1) -- prints an empty line because MyVal1 is nil | |
− | + | print('MyVar3 = ',MyVar3) -- prints the line 'MyVar3 = 2' | |
− | + | print("MyVar2 = ",MyVar2) -- prints just the line 'MyVar2 = ' because MyVar2 is not a numerical nor a string | |
− | MyVar7("9.9+0.1=",9.9+0.1) -- prints the line '9.9+0.1=10.0' | + | print(MyVar4 .. ' and ' .. MyVar5 .. ' again') -- prints 'Hello and Hello again' |
+ | MyVar7("9.9+0.1=",9.9+0.1) -- prints the line '9.9+0.1=10.0' (because MyVar7 is now equal to print) | ||
MyVar7('1/0=',1/0) -- prints the line '1/0=inf' | MyVar7('1/0=',1/0) -- prints the line '1/0=inf' | ||
</pre> | </pre> | ||
Line 97: | Line 111: | ||
end -- loop while i <= Stop (for positive Step) or i >= Stop (for negative Step) | end -- loop while i <= Stop (for positive Step) or i >= Stop (for negative Step) | ||
− | for Key, Val in | + | for Key, Val in ListExpr do -- it loops over all the ListExpr, giving for each element the Key and the Val |
− | --statements -- | + | --statements -- Key and Val available inside the for loop |
end | end | ||
</pre> | </pre> | ||
Line 108: | Line 122: | ||
end | end | ||
</pre> | </pre> | ||
+ | |||
+ | Any flow control instruction can be embedded in any other flow control instruction. | ||
'''Examples''': | '''Examples''': |
Revision as of 07:30, 26 April 2022
Contents
Introduction
Lua is a lightweight, scripting programming language based on an interpreter generating compiled bytecodes (code executing in a virtual machine).
It was designed in Brasil by Roberto Ierusalimschy, Waldemar Celes and Luiz Henrique de Figueiredo in 1993.
CE Lua is a specific version of Lua interpreter adapted by Dark Byte for Cheat Engine. The CE Lua Engine is a main component of Cheat Engine.
This wiki page is written for Lua beginners. If you know the basic Lua syntax then you can go to the next page.
Syntax
CE Lua interpreter respects traditional LUA syntax and provides some extra features. The Lua Script Editor provide a real-time colored syntax and a Syntax Check feature (Ctrl+Alt+C).
Comments
In Lua simple comments begin with --
and end at the end of line.
Multi-line comments begin with --[[
and end with ]]
.
-- This is a simple comment just to the end of this line This is not a comment but a future syntax error -- This is a new simple comment --[[ First line of a multi-line comment Second line of a multi-line comment Last line of a multi-line comment]]
Variables
In Lua variables are polymorphic (can change the type during theirs lifes). By default a variable is global at Lua Engine level unless the declaration begins with local
modifier.
The assign operator =
is mandatory just for the global variable declaration and can be use later to modify any variable.
Any variable can host different data types and use specific operators:
- nil meaning nothing (a variable not defined, or not assigned, or assigned to
nil
)- Comparing operators: comparing any variable to
nil
(var == nil
orvar ~= nil
)
- Comparing operators: comparing any variable to
- a number value (no difference between integer or float values, nor between different precisions)
- Binary arithmetic operators between two numbers:
+
,-
,*
,/
. - Unary arithmetic operators:
+
,-
(example:var1 = -var2
) - Comparing operators between two numebers giving a boolean:
>
,>=
,<
,<=
,==
,~=
.
- Binary arithmetic operators between two numbers:
- a boolean value (equal to
true
orfalse
)- Binary boolean operators:
and
,or
. - Unary boolean operator:
not
.
- Binary boolean operators:
- a string (constants can be surrounded by single
'string'
or double quotes"string"
or double square brackets[[string]]
; the last case accepts new lines inside)- Concatenation operator:
..
between two strings. - Comparing operators between two strings content giving a boolean:
>
,>=
,<
,<=
,==
,~=
.
- Concatenation operator:
- a table
- a function
Tips:
- Always use the right operators for the right types.
- Always use parethesis for complex expressions (the expression
not var1==nil or var1~=3
is not equal tonot (var1==nil or var1~=3)
). - Use the function
type
to get a string containing the real type of a variable.
Examples:
local MyVar0 -- local variable having nothing inside so equal to nil MyVar1 = nil -- global variable MyVar1 having nothing inside (no type neither) MyVar2 = UnknownVar -- another global variable equal to nil (because UnknowVar is not yet defined) local MyVar3 = 2 -- local numerical variable MyVar3 equal to 2 MyVar4 = 'Hello' -- global string variable MyVar4 local MyVar5 = "Hello" -- local string variable MyVar5 having the same string as MyVar3 MyVar6 = [[First Line Second Line.]] -- global multi-line string variable MyVar6 beginning with 'First' and ending with 'Line.' MyVar2 = (10 > 7.55) -- now MyVar2 becomes a boolean equal to true MyVar7 = print -- global function variable MyVar7 which can be used as an alias of print function
Console output
Lua uses the print
function to output numericals and strings to the console (use the menu to open the Lua Engine console).
The print
function has a variable number of arguments. Each argument (string or numerical) will be printed to the console (with no separation) and a new line will be added at the end. The default format for numericals is the decimal base with automatic use of decimal point if necessary.
Examples:
print(MyVar1) -- prints an empty line because MyVal1 is nil print('MyVar3 = ',MyVar3) -- prints the line 'MyVar3 = 2' print("MyVar2 = ",MyVar2) -- prints just the line 'MyVar2 = ' because MyVar2 is not a numerical nor a string print(MyVar4 .. ' and ' .. MyVar5 .. ' again') -- prints 'Hello and Hello again' MyVar7("9.9+0.1=",9.9+0.1) -- prints the line '9.9+0.1=10.0' (because MyVar7 is now equal to print) MyVar7('1/0=',1/0) -- prints the line '1/0=inf'
Flow control
Lua provides a conditional test with multiple, optional branches:
if BooleanExpression then -- if statement(s) body elseif BooleanExpression then -- optional -- elseif statement(s) body else -- optional -- else/default statement(s) body end
and several conditional loops:
while BooleanExpression do -- do statements while BooleanExpression is true --statements end repeat -- repeat statements --statements until BooleanExpression -- until BooleanExpression becomes true for i = Start, Stop, Step do -- any numerical value for Start, Stop and Step (Step is optional and defaults to 1) --statements end -- loop while i <= Stop (for positive Step) or i >= Stop (for negative Step) for Key, Val in ListExpr do -- it loops over all the ListExpr, giving for each element the Key and the Val --statements -- Key and Val available inside the for loop end
Lua has a special unconditional block mainly used to isolate some local variables:
do --statements end
Any flow control instruction can be embedded in any other flow control instruction.
Examples:
i=5 while i<80 do -- it loops for i equal to 5, 10, 20, and 40 i=i*2 end i=5 repeat -- it loops for i equal to 10, 20, 40, 80 i=i*2 until i==80 i=5 repeat i=i*2 until i==82 -- warning: this loop will never ending and will block the Lua Engine & Cheat Engine for i = 10, 14 do -- it loops for i equal to 10, 11, 12, 13, and 14 end for i = 10, 14, 2 do -- it loops for i equal to 10, 12, and 14 end for i = 10, 14, 2.1 do -- it loops for i equal to 10 and 12.1 end for i = 10, 14, -2.1 do -- it never loops because the start value 10<14 and step is negative end for i = 14, 10, -2.1 do -- it loops for i equal to 14 and 11.8 end do local MyVar=314; print(MyVar) -- prints '314' and new line end printf(MyVar) -- prints nothing but a new line
Functions
Functions are just some special variables, and can be declared at the global level or inside a block or another function.
-- first syntax version function MyFunction(arg1, arg2, ...) -- takes 0, 1 to several arguments or undefined number of arguments -- statements return result1, result2 -- returns 0, 1 to several variables end -- second syntax version MyFunction = function(arg1, arg2, ...) -- takes 0, 1 to several arguments or undefined number of arguments -- statements return result1, result2 -- returns 0, 1 to several variables end
Any of preceding 2 declaration versions creates a function variable named MyFunction
. Then the user can call it, use it or assign it a new value.
MyFunction(MyVar4, MyVar2, MyVar7) -- calling MyFunction with 3 arguments MyVar1 = MyFunction( MyVar2, MyVar7) -- calling MyFunction with 2 arguments and keep the first result in MyVar1 print = MyFunction -- now the official print function will be MyFunction MyFunction = nil -- MyFunction will be unavailable now (but print still keeps original MyFunction) MyFunction = MyVar7 -- now MyFunction is an alias of the original print function