-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathremote.lua
More file actions
executable file
·430 lines (315 loc) · 9.2 KB
/
remote.lua
File metadata and controls
executable file
·430 lines (315 loc) · 9.2 KB
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
-- Corona® Remote
--
-- Date: January 31, 2011
--
-- Version: 1.2
--
-- File name: remote.lua
--
-- Author: Matthew Pringle
--
-- Update History: v1.1 Intergrated Compass - v1.2 Intergrated Asynchronous Connection
--
-- Comments: Please see http://www.coronaremote.com/ for more information
--
-- Copyright (C) 2011 Matthew Pringle All Rights Reserved
------------------------------------------------------------------------------------------------------------------------
module(..., package.seeall)
------------------------------------------------------------------------------------------------------------------------
-- Load Socket
local socket = require("socket")
------------------------------------------------------------------------------------------------------------------------
-- System Type
local systemType = system.getInfo( "environment" )
------------------------------------------------------------------------------------------------------------------------
-- Initial Values
local tcpServer = false
local tcpServerStatus = false
local connectionKey = "CORONAREMOTE1.2"
local connectionResponseKey = "CORONAREMOTE1.2CONNECTED"
local errorCount = 0
local remoteIP = false
local port = "8080"
xGravity = 0
yGravity = 0
zGravity = 0
xInstant = 0
yInstant = 0
zInstant = 0
magnetic = -1
compass = false
isShake = false
------------------------------------------------------------------------------------------------------------------------
-- Decode Communication
local function decodeCommunication( str )
local t = {}
local function helper( line ) table.insert( t , line ) return "" end
helper( ( str:gsub( "(.-)*" , helper ) ) )
return t
end
------------------------------------------------------------------------------------------------------------------------
-- Check IP
function isIP( ipv4 )
if ipv4 == false then
return false
end
local retval = false
local nums = {}
local iplen = string.len( ipv4 )
if (iplen < 7 or iplen > 15) then
return false
end
nums = { ipv4:match ("^(%d+)%.(%d+)%.(%d+)%.(%d+)$") }
if ( nums[1] == nil or nums[2] == nil or nums[3] == nil or nums[4] == nil ) then
return false
end
if ( tonumber( nums[1]) > 255 or tonumber(nums[2]) > 255 or tonumber(nums[3]) > 255 or tonumber(nums[4]) > 255 ) then
return false
end
return true
end
------------------------------------------------------------------------------------------------------------------------
-- Accelerometer System Event
local function accelerometer( event )
if event.isShake ~= true then
xGravity = event.xGravity
yGravity = event.yGravity
zGravity = event.zGravity
xInstant = event.xInstant
yInstant = event.yInstant
zInstant = event.zInstant
isShake = false
else
isShake = true
end
end
------------------------------------------------------------------------------------------------------------------------
-- Asynchronous Connection
local function asynchronousConnection( event )
if ( event.isError ) then
-- Reset Values
xGravity = 0
yGravity = 0
zGravity = 0
xInstant = 0
yInstant = 0
zInstant = 0
isShake = false
magnetic = -1
errorCount = 60
else
-- Reset Timeout
errorCount = 0
-- Decode Message
tcpClientMessage = decodeCommunication( event.response )
-- Update Values
xGravity = tonumber( tcpClientMessage[ 1 ] )
yGravity = tonumber( tcpClientMessage[ 2 ] )
zGravity = tonumber( tcpClientMessage[ 3 ] )
xInstant = tonumber( tcpClientMessage[ 4 ] )
yInstant = tonumber( tcpClientMessage[ 5 ] )
zInstant = tonumber( tcpClientMessage[ 6 ] )
isShake = tcpClientMessage[ 7 ]
if isShake == "1" then
isShake = true
else
isShake = false
end
if compass == true then
magnetic = tonumber( tcpClientMessage[ 8 ] )
end
-- Check Valid IP
if isIP( remoteIP ) == true and tcpServerStatus == "asynchronous" then
-- Next Asynchronous Connection
network.request( "http://"..remoteIP..":"..port , "GET" , asynchronousConnection )
end
end
end
------------------------------------------------------------------------------------------------------------------------
-- Create TCP Server
local function createTCPServer( port )
-- Create Socket
local tcpServerSocket , err = socket.tcp()
local backlog = 0
-- Check Socket
if tcpServerSocket == nil then
return nil , err
end
-- Allow Address Reuse
tcpServerSocket:setoption( "reuseaddr" , true )
-- Bind Socket
local res, err = tcpServerSocket:bind( "*" , port )
if res == nil then
return nil , err
end
-- Check Connection
res , err = tcpServerSocket:listen( backlog )
if res == nil then
return nil , err
end
-- Return Server
return tcpServerSocket
end
------------------------------------------------------------------------------------------------------------------------
local function startTCPServer()
-- Create Server
tcpServer , _ = createTCPServer( port )
end
------------------------------------------------------------------------------------------------------------------------
-- Run TCP Server
local function runTCPServer()
-- Set Timeout
tcpServer:settimeout( 0 )
-- Set Client
local tcpClient , _ = tcpServer:accept()
-- Get Message
if tcpClient ~= nil then
local tcpClientMessage , _ = tcpClient:receive('*l')
if ( tcpClientMessage ~= nil ) then
if tcpClientMessage == connectionKey then
-- Get IP Address Of Corona Remote
remoteIP = tcpClient:getpeername()
-- Send Response
local communication = connectionResponseKey
tcpClient:send( communication .. "\n" )
-- Check Valid IP
if isIP( remoteIP ) == true and tcpServerStatus == "tcp" then
-- Reset Timeout
errorCount = 0
-- Stop TCP Server
tcpServerStatus = "asynchronous"
tcpClient:close()
tcpServer:close()
-- Start Asynchronous Connection
network.request( "http://"..remoteIP..":"..port , "GET" , asynchronousConnection )
end
end
end
-- Close Connection
tcpClient:close()
end
end
------------------------------------------------------------------------------------------------------------------------
-- Connection Loop
local function connectionLoop()
-- Asynchronous Server Timeout
if tcpServerStatus == "asynchronous" then
-- Increase Timeout
errorCount = errorCount + 1
if errorCount >= 60 then
-- Reset Values
xGravity = 0
yGravity = 0
zGravity = 0
xInstant = 0
yInstant = 0
zInstant = 0
isShake = false
magnetic = -1
errorCount = 0
-- Start TCP Server
tcpServerStatus = "tcp"
remoteIP = false
startTCPServer()
end
elseif tcpServerStatus == "tcp" then
runTCPServer()
end
end
------------------------------------------------------------------------------------------------------------------------
-- Start Server
function startServer( newPort )
if systemType == "simulator" then
-- Set Port
port = newPort
-- Start TCP Server
startTCPServer()
-- Start Network Listener
tcpServerStatus = "tcp"
Runtime:addEventListener( "enterFrame" , connectionLoop )
else
-- Start Accelerometer
Runtime:addEventListener( "accelerometer" , accelerometer )
end
end
------------------------------------------------------------------------------------------------------------------------
-- Stop Server
function stopServer()
if systemType == "simulator" then
-- Stop Network Listener
Runtime:removeEventListener( "enterFrame" , connectionLoop )
-- Close Server
tcpServer:close()
tcpServer = nil
else
-- Stop Accelerometer
Runtime:removeEventListener( "accelerometer" , accelerometer )
end
-- Reset Values
tcpServerStatus = false
remoteIP = false
errorCount = 0
xGravity = 0
yGravity = 0
zGravity = 0
xInstant = 0
yInstant = 0
zInstant = 0
isShake = false
magnetic = -1
end
------------------------------------------------------------------------------------------------------------------------
-- Update Compass
local function updateCompass( event )
-- Get Magnetic Compass Value
magnetic = event.magnetic
end
------------------------------------------------------------------------------------------------------------------------
-- Start Compass
function startCompass()
if systemType == "simulator" then
compass = true
else
Runtime:addEventListener( "heading", updateCompass )
end
end
------------------------------------------------------------------------------------------------------------------------
-- Stop Compass
function stopCompass()
if systemType == "simulator" then
compass = false
magnetic = -1
else
Runtime:removeEventListener( "heading", updateCompass )
magnetic = -1
end
end
------------------------------------------------------------------------------------------------------------------------
-- Return Values
function xGravityRemote()
return xGravity
end
function yGravityRemote()
return yGravity
end
function zGravityRemote()
return zGravity
end
function xInstantRemote()
return xInstant
end
function yInstantRemote()
return yInstant
end
function zInstantRemote()
return zInstant
end
function isShakeRemote()
return isShake
end
function accelerometerRemote()
return xGravity , yGravity , zGravity , xInstant , yInstant , zInstant , isShake
end
function magneticRemote()
return magnetic
end