-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexamples.au3
141 lines (108 loc) · 4.82 KB
/
examples.au3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
#NoTrayIcon
#include "lua.au3"
#include "lua53_dlls.au3"
; Initialize library
_lua_Startup(_lua_ExtractDll())
OnAutoItExitRegister(_lua_Shutdown)
; -----------------------
; Example 01: hello world
ConsoleWrite(@CRLF & ">>> EXAMPLE 01: Hello world" & @CRLF)
; create new execution state
$pState = _luaL_newState()
_luaopen_base($pState) ; needed for the lua's print function
$iRet = _luaL_doString($pState, 'print("Hello, world!")')
If $iRet <> $LUA_OK Then
; read the error description on top of the stack
ConsoleWrite("!> Error: " & _lua_toString($pState, -1) & @CRLF)
Exit
EndIf
; close the state to free memory (you MUST call this function, this is not AutoIt's automatic memory management, it's a C library)
_lua_close($pState)
; -----------------------------------------------------------------
; Example 02: calling lua function with arguments and return values
ConsoleWrite(@CRLF & ">>> EXAMPLE 02: Calling lua function with arguments and return values" & @CRLF)
; create new execution state
$pState = _luaL_newState()
_luaopen_base($pState) ; for tostring
; first add the function the environement
$iRet = _luaL_doString($pState, 'function sayHello(name, count) print("Hello " .. tostring(name)); return "Retval: Hello " .. tostring(name), "2nd param: " .. tostring(count) end')
If $iRet <> $LUA_OK Then
; read the error description on top of the stack
ConsoleWrite("!> Error: " & _lua_toString($pState, -1) & @CRLF)
Exit
EndIf
; push the function sayHello on the top of the stack
_lua_getGlobal($pState, "sayHello")
ConsoleWrite("sayHello type: " & _luaL_typeName($pState, -1) & @CRLF) ; see that we have the function on the stack's top
; push the arguments
_lua_pushString($pState, "AutoIt!")
_lua_pushInteger($pState, 3)
; call the function
$iRet = _lua_pCall($pState, 2, $LUA_MULTRET)
If $iRet <> $LUA_OK Then
; read the error description on top of the stack
ConsoleWrite("!> Error: " & _lua_toString($pState, -1) & @CRLF)
Exit
EndIf
; get return values
; in this case, we know that the function returns 2 results, it could be not always the case.
ConsoleWrite("Ret1: " & _lua_toString($pState, -2) & @CRLF)
ConsoleWrite("Ret2: " & _lua_toString($pState, -1) & @CRLF)
; close the state to free memory (you MUST call this function, this is not AutoIt's automatic memory management, it's a C library)
_lua_close($pState)
; --------------------------------------------
; Example 03: calling AutoIt function from lua
ConsoleWrite(@CRLF & ">>> EXAMPLE 03: Calling AutoIt function from lua" & @CRLF)
; create new execution state
$pState = _luaL_newState()
; In order to work with lua, AutoIt function must accepts 1 argument, and returns the number of return values (see lua documentation)
Func _myFunc($pState)
; this function will simply display all arguments passed to it, and return no value
ConsoleWrite("Entering AutoIt function..." & @CRLF)
For $i = 1 To _lua_getTop($pState)
ConsoleWrite(@TAB & "arg" & $i & " (" & _luaL_typeName($pState, $i) & "): " & _au3Lua_readAny($pState, $i, False) & @CRLF)
Next
Return 0
EndFunc
; push the AutoIt function, and set it to a global variable
_lua_pushCFunction($pState, _myFunc)
_lua_setGlobal($pState, "myFunc")
; execute lua script
$iRet = _luaL_doString($pState, 'myFunc(nil, true, false, 10, 20.5, "Hello, world!", {})')
If $iRet <> $LUA_OK Then
; read the error description on top of the stack
ConsoleWrite("!> Error: " & _lua_toString($pState, -1) & @CRLF)
Exit
EndIf
; close the state to free memory (you MUST call this function, this is not AutoIt's automatic memory management, it's a C library)
_lua_close($pState)
; ----------------------------------------------------------------
; Example 04: passing and retreiveing AutoIt variables to/from lua
ConsoleWrite(@CRLF & ">>> EXAMPLE 04: Passing and retreiveing AutoIt variables to/from lua" & @CRLF)
; create new execution state
$pState = _luaL_newState()
_luaopen_base($pState)
; create an object
$oData = ObjCreate("Scripting.Dictionary")
$oData.Item("scriptfullpath") = @ScriptFullPath
$oData.Item("user") = @UserName & "@" & @ComputerName
$oData.Item("number") = 314
; push the variable and make it global
_au3Lua_pushAny($pState, $oData)
_lua_setGlobal($pState, "data")
$oData = Null
; execute lua script that will modify the table data
$iRet = _luaL_doString($pState, 'for k, v in pairs(data) do data[k] = tostring(v) .. " [Appended by LUA code]" end')
If $iRet <> $LUA_OK Then
; read the error description on top of the stack
ConsoleWrite("!> Error: " & _lua_toString($pState, -1) & @CRLF)
Exit
EndIf
; retreive the modified data table
_lua_getGlobal($pState, "data")
$oData = _au3Lua_readAny($pState, -1, False)
For $sKey In $oData.Keys()
ConsoleWrite(@TAB & $sKey & ": " & $oData.Item($sKey) & @CRLF)
Next
; close the state to free memory (you MUST call this function, this is not AutoIt's automatic memory management, it's a C library)
_lua_close($pState)