Skip to content

Latest commit

 

History

History
532 lines (437 loc) · 15.4 KB

lua_glue.c

File metadata and controls

532 lines (437 loc) · 15.4 KB
 
Dec 2, 2006
Dec 2, 2006
1
#include "universal.h"
Dec 9, 2006
Dec 9, 2006
2
#include "lua_glue.h"
Dec 3, 2006
Dec 3, 2006
3
#include "platform.h"
Dec 2, 2006
Dec 2, 2006
4
5
6
7
#include "fileio.h"
#include "lua.h"
#include "lauxlib.h"
#include "lualib.h"
Dec 6, 2006
Dec 6, 2006
8
#include "gui.h"
Dec 2, 2006
Dec 2, 2006
9
10
11
12
13
#define MOJOSETUP_NAMESPACE "MojoSetup"
static lua_State *luaState = NULL;
Dec 9, 2006
Dec 9, 2006
14
15
16
17
18
19
20
21
22
23
24
25
// Allocator interface for internal Lua use.
static void *MojoLua_alloc(void *ud, void *ptr, size_t osize, size_t nsize)
{
if (nsize == 0)
{
free(ptr);
return NULL;
} // if
return xrealloc(ptr, nsize);
} // MojoLua_alloc
Dec 2, 2006
Dec 2, 2006
26
27
28
29
// Read data from a MojoInput when loading Lua code.
static const char *MojoLua_reader(lua_State *L, void *data, size_t *size)
{
MojoInput *in = (MojoInput *) data;
Dec 9, 2006
Dec 9, 2006
30
char *retval = (char *) scratchbuf_128k;
Dec 2, 2006
Dec 2, 2006
31
32
33
34
35
36
37
38
39
40
41
42
int64 br = in->read(in, scratchbuf_128k, sizeof (scratchbuf_128k));
if (br <= 0) // eof or error? (lua doesn't care which?!)
{
br = 0;
retval = NULL;
} // if
*size = (size_t) br;
return retval;
} // MojoLua_reader
Dec 10, 2006
Dec 10, 2006
43
44
45
46
47
48
49
50
51
52
53
54
55
static inline int snprintfcat(char **ptr, size_t *len, const char *fmt, ...)
{
int bw = 0;
va_list ap;
va_start(ap, fmt);
bw = vsnprintf(*ptr, *len, fmt, ap);
va_end(ap);
*ptr += bw;
*len -= bw;
return bw;
} // snprintfcat
Dec 10, 2006
Dec 10, 2006
56
57
58
59
60
61
62
static int luahook_stackwalk(lua_State *L)
{
const char *errstr = lua_tostring(L, 1);
lua_Debug ldbg;
int i = 0;
if (errstr != NULL)
Dec 10, 2006
Dec 10, 2006
63
logDebug("%s\n", errstr);
Dec 10, 2006
Dec 10, 2006
64
Dec 10, 2006
Dec 10, 2006
65
logDebug("Lua stack backtrace:");
Dec 10, 2006
Dec 10, 2006
66
67
68
69
// start at 1 to skip this function.
for (i = 1; lua_getstack(L, i, &ldbg); i++)
{
Dec 10, 2006
Dec 10, 2006
70
71
72
char *ptr = (char *) scratchbuf_128k;
size_t len = sizeof (scratchbuf_128k);
int bw = snprintfcat(&ptr, &len, "#%d", i-1);
Dec 10, 2006
Dec 10, 2006
73
74
75
const int maxspacing = 4;
int spacing = maxspacing - bw;
while (spacing-- > 0)
Dec 10, 2006
Dec 10, 2006
76
snprintfcat(&ptr, &len, " ");
Dec 10, 2006
Dec 10, 2006
77
78
79
if (!lua_getinfo(L, "nSl", &ldbg))
{
Dec 10, 2006
Dec 10, 2006
80
81
snprintfcat(&ptr, &len, "???\n");
logDebug((const char *) scratchbuf_128k);
Dec 10, 2006
Dec 10, 2006
82
83
84
85
continue;
} // if
if (ldbg.namewhat[0])
Dec 10, 2006
Dec 10, 2006
86
snprintfcat(&ptr, &len, "%s ", ldbg.namewhat);
Dec 10, 2006
Dec 10, 2006
87
88
if ((ldbg.name) && (ldbg.name[0]))
Dec 10, 2006
Dec 10, 2006
89
snprintfcat(&ptr, &len, "function %s ()", ldbg.name);
Dec 10, 2006
Dec 10, 2006
90
91
92
else
{
if (strcmp(ldbg.what, "main") == 0)
Dec 10, 2006
Dec 10, 2006
93
snprintfcat(&ptr, &len, "mainline of chunk");
Dec 10, 2006
Dec 10, 2006
94
else if (strcmp(ldbg.what, "tail") == 0)
Dec 10, 2006
Dec 10, 2006
95
snprintfcat(&ptr, &len, "tail call");
Dec 10, 2006
Dec 10, 2006
96
else
Dec 10, 2006
Dec 10, 2006
97
snprintfcat(&ptr, &len, "unidentifiable function");
Dec 10, 2006
Dec 10, 2006
98
99
} // if
Dec 10, 2006
Dec 10, 2006
100
101
102
103
logDebug((const char *) scratchbuf_128k);
ptr = (char *) scratchbuf_128k;
len = sizeof (scratchbuf_128k);
Dec 10, 2006
Dec 10, 2006
104
for (spacing = 0; spacing < maxspacing; spacing++)
Dec 10, 2006
Dec 10, 2006
105
snprintfcat(&ptr, &len, " ");
Dec 10, 2006
Dec 10, 2006
106
107
if (strcmp(ldbg.what, "C") == 0)
Dec 10, 2006
Dec 10, 2006
108
snprintfcat(&ptr, &len, "in native code");
Dec 10, 2006
Dec 10, 2006
109
else if (strcmp(ldbg.what, "tail") == 0)
Dec 10, 2006
Dec 10, 2006
110
snprintfcat(&ptr, &len, "in Lua code");
Dec 10, 2006
Dec 10, 2006
111
112
else if ( (strcmp(ldbg.source, "=?") == 0) && (ldbg.currentline == 0) )
snprintfcat(&ptr, &len, "in Lua code (debug info stripped)");
Dec 10, 2006
Dec 10, 2006
113
114
else
{
Dec 10, 2006
Dec 10, 2006
115
snprintfcat(&ptr, &len, "in Lua code at %s", ldbg.source);
Dec 10, 2006
Dec 10, 2006
116
if (ldbg.currentline != -1)
Dec 10, 2006
Dec 10, 2006
117
snprintfcat(&ptr, &len, ":%d", ldbg.currentline);
Dec 10, 2006
Dec 10, 2006
118
} // else
Dec 10, 2006
Dec 10, 2006
119
logDebug((const char *) scratchbuf_128k);
Dec 10, 2006
Dec 10, 2006
120
121
122
123
124
125
126
} // for
lua_pushstring(L, errstr ? errstr : "");
return 1;
} // luahook_stackwalk
Dec 3, 2006
Dec 3, 2006
127
128
boolean MojoLua_runFile(const char *basefname)
{
Dec 9, 2006
Dec 9, 2006
129
130
MojoArchive *ar = GBaseArchive; // in case we want to generalize later.
const MojoArchiveEntryInfo *entinfo;
Dec 3, 2006
Dec 3, 2006
131
boolean retval = false;
Dec 9, 2006
Dec 9, 2006
132
133
char clua[128]; // compiled filename.
char ulua[128]; // uncompiled filename.
Dec 3, 2006
Dec 3, 2006
134
135
136
int rc = 0;
MojoInput *io = NULL;
Dec 9, 2006
Dec 9, 2006
137
138
if (snprintf(clua, sizeof (clua), "%s.luac", basefname) >= sizeof (clua))
return false;
Dec 3, 2006
Dec 3, 2006
139
Dec 9, 2006
Dec 9, 2006
140
141
142
143
if (snprintf(ulua, sizeof (ulua), "%s.lua", basefname) >= sizeof (ulua))
return false;
if (ar->enumerate(ar, "lua"))
Dec 3, 2006
Dec 3, 2006
144
{
Dec 9, 2006
Dec 9, 2006
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
while ((entinfo = ar->enumNext(ar)) != NULL)
{
boolean match = (strcmp(entinfo->filename, clua) == 0);
#if !DISABLE_LUA_PARSER
if (!match)
match = (strcmp(entinfo->filename, ulua) == 0);
#endif
if (match)
{
if (entinfo->type == MOJOARCHIVE_ENTRY_FILE)
io = ar->openCurrentEntry(ar);
break;
} // if
} // while
Dec 3, 2006
Dec 3, 2006
160
161
162
163
} // if
if (io != NULL)
{
Dec 10, 2006
Dec 10, 2006
164
lua_pushcfunction(luaState, luahook_stackwalk);
Dec 9, 2006
Dec 9, 2006
165
rc = lua_load(luaState, MojoLua_reader, io, entinfo->filename);
Dec 3, 2006
Dec 3, 2006
166
167
168
169
170
171
172
io->close(io);
if (rc != 0)
lua_error(luaState);
else
{
// Call new chunk on top of the stack (lua_call will pop it off).
Dec 10, 2006
Dec 10, 2006
173
174
175
176
if (lua_pcall(luaState, 0, 0, -2) != 0) // retvals are dumped.
lua_error(luaState); // error on stack has debug info.
else
retval = true; // if this didn't panic, we succeeded.
Dec 3, 2006
Dec 3, 2006
177
} // if
Dec 10, 2006
Dec 10, 2006
178
lua_pop(luaState, 1); // dump stackwalker.
Dec 3, 2006
Dec 3, 2006
179
180
181
182
183
184
} // if
return retval;
} // MojoLua_runFile
Dec 3, 2006
Dec 3, 2006
185
186
187
void MojoLua_collectGarbage(void)
{
lua_State *L = luaState;
Dec 4, 2006
Dec 4, 2006
188
uint32 ticks = 0;
Dec 3, 2006
Dec 3, 2006
189
190
191
192
int pre = 0;
int post = 0;
pre = (lua_gc(L, LUA_GCCOUNT, 0) * 1024) + lua_gc(L, LUA_GCCOUNTB, 0);
Dec 10, 2006
Dec 10, 2006
193
logDebug("Collecting garbage (currently using %d bytes).", pre);
Dec 4, 2006
Dec 4, 2006
194
ticks = MojoPlatform_ticks();
Dec 3, 2006
Dec 3, 2006
195
lua_gc (L, LUA_GCCOLLECT, 0);
Dec 10, 2006
Dec 10, 2006
196
profile("Garbage collection", ticks);
Dec 3, 2006
Dec 3, 2006
197
post = (lua_gc(L, LUA_GCCOUNT, 0) * 1024) + lua_gc(L, LUA_GCCOUNTB, 0);
Dec 10, 2006
Dec 10, 2006
198
logDebug("Now using %d bytes (%d bytes savings).\n", post, pre - post);
Dec 3, 2006
Dec 3, 2006
199
200
201
} // MojoLua_collectGarbage
Dec 10, 2006
Dec 10, 2006
202
203
204
205
206
207
208
209
210
static inline void pushStringOrNil(lua_State *L, const char *str)
{
if (str != NULL)
lua_pushstring(L, str);
else
lua_pushnil(L);
} // pushStringOrNil
Dec 2, 2006
Dec 2, 2006
211
212
213
214
215
// Since localization is kept in Lua tables, I stuck this in the Lua glue.
const char *translate(const char *str)
{
const char *retval = str;
Dec 6, 2006
Dec 6, 2006
216
if (luaState != NULL) // No translations before Lua is initialized.
Dec 2, 2006
Dec 2, 2006
217
{
Dec 6, 2006
Dec 6, 2006
218
if (lua_checkstack(luaState, 3))
Dec 2, 2006
Dec 2, 2006
219
{
Dec 6, 2006
Dec 6, 2006
220
221
222
int popcount = 0;
lua_getglobal(luaState, MOJOSETUP_NAMESPACE); popcount++;
if (lua_istable(luaState, -1)) // namespace is sane?
Dec 2, 2006
Dec 2, 2006
223
{
Dec 6, 2006
Dec 6, 2006
224
225
lua_getfield(luaState, -1, "translations"); popcount++;
if (lua_istable(luaState, -1)) // translation table is sane?
Dec 4, 2006
Dec 4, 2006
226
{
Dec 6, 2006
Dec 6, 2006
227
228
229
230
231
const char *tr = NULL;
lua_getfield(luaState, -1, str); popcount++;
tr = lua_tostring(luaState, -1);
if (tr != NULL) // translated for this locale?
{
Dec 8, 2006
Dec 8, 2006
232
233
234
char *dst = (char *) scratchbuf_128k;
xstrncpy(dst, tr, sizeof(scratchbuf_128k));
retval = dst;
Dec 6, 2006
Dec 6, 2006
235
} // if
Dec 4, 2006
Dec 4, 2006
236
} // if
Dec 2, 2006
Dec 2, 2006
237
} // if
Dec 6, 2006
Dec 6, 2006
238
lua_pop(luaState, popcount); // remove our stack salsa.
Dec 2, 2006
Dec 2, 2006
239
240
241
242
243
244
245
246
} // if
} // if
return retval;
} // translate
// Hook into our error handling in case Lua throws a runtime error.
Dec 10, 2006
Dec 10, 2006
247
static int luahook_panic(lua_State *L)
Dec 2, 2006
Dec 2, 2006
248
{
Dec 3, 2006
Dec 3, 2006
249
250
const char *errstr = lua_tostring(L, 1);
if (errstr == NULL)
Dec 9, 2006
Dec 9, 2006
251
errstr = _("Unknown error");
Dec 2, 2006
Dec 2, 2006
252
return fatal(errstr); // doesn't actually return.
Dec 10, 2006
Dec 10, 2006
253
} // luahook_panic
Dec 2, 2006
Dec 2, 2006
254
255
Dec 6, 2006
Dec 6, 2006
256
257
258
259
260
261
262
263
264
// Use this instead of Lua's error() function if you don't have a
// programatic error, so you don't get stack callback stuff:
// MojoSetup.fatal("You need the base game to install this expansion pack.")
// Doesn't actually return.
static int luahook_fatal(lua_State *L)
{
const char *err = luaL_checkstring(L, 1);
fatal(err);
return 0;
Dec 10, 2006
Dec 10, 2006
265
} // luahook_fatal
Dec 6, 2006
Dec 6, 2006
266
267
Dec 3, 2006
Dec 3, 2006
268
269
270
271
272
273
274
275
276
277
// Lua interface to MojoLua_runFile(). This is needed instead of Lua's
// require(), since it can access scripts inside an archive.
static int luahook_runfile(lua_State *L)
{
const char *fname = luaL_checkstring(L, 1);
lua_pushboolean(L, MojoLua_runFile(fname));
return 1;
} // luahook_runfile
Dec 4, 2006
Dec 4, 2006
278
279
280
281
282
283
284
285
286
// Lua interface to translate().
static int luahook_translate(lua_State *L)
{
const char *str = luaL_checkstring(L, 1);
lua_pushstring(L, translate(str));
return 1;
} // luahook_translate
Dec 5, 2006
Dec 5, 2006
287
288
289
290
291
292
293
static int luahook_ticks(lua_State *L)
{
lua_pushnumber(L, MojoPlatform_ticks());
return 1;
} // luahook_ticks
Dec 6, 2006
Dec 6, 2006
294
295
296
297
298
299
static int luahook_msgbox(lua_State *L)
{
if (GGui != NULL)
{
const char *title = luaL_checkstring(L, 1);
const char *text = luaL_checkstring(L, 2);
Dec 7, 2006
Dec 7, 2006
300
GGui->msgbox(title, text);
Dec 6, 2006
Dec 6, 2006
301
302
303
304
305
306
307
308
309
310
311
312
} // if
return 0;
} // luahook_msgbox
static int luahook_promptyn(lua_State *L)
{
boolean rc = false;
if (GGui != NULL)
{
const char *title = luaL_checkstring(L, 1);
const char *text = luaL_checkstring(L, 2);
Dec 7, 2006
Dec 7, 2006
313
rc = GGui->promptyn(title, text);
Dec 6, 2006
Dec 6, 2006
314
315
316
317
318
319
320
} // if
lua_pushboolean(L, rc);
return 1;
} // luahook_msgbox
Dec 10, 2006
Dec 10, 2006
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
static int luahook_logwarning(lua_State *L)
{
logWarning(luaL_checkstring(L, 1));
return 0;
} // luahook_logwarning
static int luahook_logerror(lua_State *L)
{
logError(luaL_checkstring(L, 1));
return 0;
} // luahook_logerror
static int luahook_loginfo(lua_State *L)
{
logInfo(luaL_checkstring(L, 1));
return 0;
} // luahook_loginfo
static int luahook_logdebug(lua_State *L)
{
logDebug(luaL_checkstring(L, 1));
return 0;
} // luahook_logdebug
static int luahook_cmdline(lua_State *L)
{
const char *arg = luaL_checkstring(L, 1);
lua_pushboolean(L, cmdline(arg));
return 1;
} // luahook_cmdline
static int luahook_cmdlinestr(lua_State *L)
{
int argc = lua_gettop(L);
const char *arg = luaL_checkstring(L, 1);
const char *envr = (argc < 2) ? NULL : lua_tostring(L, 2);
const char *deflt = (argc < 3) ? NULL : lua_tostring(L, 3);
pushStringOrNil(L, cmdlinestr(arg, envr, deflt));
return 1;
} // luahook_cmdlinestr
Dec 2, 2006
Dec 2, 2006
368
369
370
371
372
373
374
375
// Sets t[sym]=f, where t is on the top of the Lua stack.
static inline void set_cfunc(lua_State *L, lua_CFunction f, const char *sym)
{
lua_pushcfunction(luaState, f);
lua_setfield(luaState, -2, sym);
} // set_cfunc
Dec 3, 2006
Dec 3, 2006
376
377
378
379
380
381
382
// Sets t[sym]=f, where t is on the top of the Lua stack.
static inline void set_string(lua_State *L, const char *str, const char *sym)
{
lua_pushstring(luaState, str);
lua_setfield(luaState, -2, sym);
} // set_string
Dec 9, 2006
Dec 9, 2006
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
static inline void set_string_array(lua_State *L, int argc, const char **argv,
const char *sym)
{
int i;
lua_newtable(luaState);
for (i = 0; i < argc; i++)
{
lua_pushinteger(luaState, i+1); // lua is option base 1!
lua_pushstring(luaState, argv[i]);
lua_settable(luaState, -3);
} // for
lua_setfield(luaState, -2, sym);
} // set_string_array
void MojoLua_setString(const char *str, const char *sym)
{
lua_getglobal(luaState, MOJOSETUP_NAMESPACE);
set_string(luaState, str, sym);
lua_pop(luaState, 1);
} // MojoLua_setString
void MojoLua_setStringArray(int argc, const char **argv, const char *sym)
{
lua_getglobal(luaState, MOJOSETUP_NAMESPACE);
set_string_array(luaState, argc, argv, sym);
lua_pop(luaState, 1);
} // MojoLua_setStringArray
Dec 3, 2006
Dec 3, 2006
413
Dec 2, 2006
Dec 2, 2006
414
415
boolean MojoLua_initLua(void)
{
Dec 3, 2006
Dec 3, 2006
416
char locale[16];
Dec 4, 2006
Dec 4, 2006
417
418
char ostype[64];
char osversion[64];
Dec 2, 2006
Dec 2, 2006
419
Dec 3, 2006
Dec 3, 2006
420
421
if (!MojoPlatform_locale(locale, sizeof (locale)))
xstrncpy(locale, "???", sizeof (locale));
Dec 4, 2006
Dec 4, 2006
422
423
424
425
426
427
if (!MojoPlatform_osType(ostype, sizeof (ostype)))
xstrncpy(ostype, "???", sizeof (ostype));
if (!MojoPlatform_osVersion(osversion, sizeof (osversion)))
xstrncpy(osversion, "???", sizeof (osversion));
assert(luaState == NULL);
Dec 3, 2006
Dec 3, 2006
428
Dec 9, 2006
Dec 9, 2006
429
luaState = lua_newstate(MojoLua_alloc, NULL);
Dec 2, 2006
Dec 2, 2006
430
431
432
if (luaState == NULL)
return false;
Dec 10, 2006
Dec 10, 2006
433
lua_atpanic(luaState, luahook_panic);
Dec 2, 2006
Dec 2, 2006
434
435
436
437
438
439
440
441
442
443
444
445
if (!lua_checkstack(luaState, 20)) // Just in case.
{
lua_close(luaState);
luaState = NULL;
return false;
} // if
luaL_openlibs(luaState);
// Build MojoSetup namespace for Lua to access and fill in C bridges...
lua_newtable(luaState);
Dec 3, 2006
Dec 3, 2006
446
// Set up initial C functions, etc we want to expose to Lua code...
Dec 3, 2006
Dec 3, 2006
447
set_cfunc(luaState, luahook_runfile, "runfile");
Dec 4, 2006
Dec 4, 2006
448
set_cfunc(luaState, luahook_translate, "translate");
Dec 5, 2006
Dec 5, 2006
449
set_cfunc(luaState, luahook_ticks, "ticks");
Dec 6, 2006
Dec 6, 2006
450
451
452
set_cfunc(luaState, luahook_fatal, "fatal");
set_cfunc(luaState, luahook_msgbox, "msgbox");
set_cfunc(luaState, luahook_promptyn, "promptyn");
Dec 10, 2006
Dec 10, 2006
453
set_cfunc(luaState, luahook_stackwalk, "stackwalk");
Dec 10, 2006
Dec 10, 2006
454
455
456
457
458
459
set_cfunc(luaState, luahook_logwarning, "logwarning");
set_cfunc(luaState, luahook_logerror, "logerror");
set_cfunc(luaState, luahook_loginfo, "loginfo");
set_cfunc(luaState, luahook_logdebug, "logdebug");
set_cfunc(luaState, luahook_cmdline, "cmdline");
set_cfunc(luaState, luahook_cmdlinestr, "cmdlinestr");
Dec 3, 2006
Dec 3, 2006
460
set_string(luaState, locale, "locale");
Dec 4, 2006
Dec 4, 2006
461
462
463
464
set_string(luaState, PLATFORM_NAME, "platform");
set_string(luaState, PLATFORM_ARCH, "arch");
set_string(luaState, ostype, "ostype");
set_string(luaState, osversion, "osversion");
Dec 7, 2006
Dec 7, 2006
465
set_string(luaState, GBuildVer, "buildver");
Dec 9, 2006
Dec 9, 2006
466
set_string(luaState, GLuaLicense, "lualicense");
Dec 10, 2006
Dec 10, 2006
467
set_string_array(luaState, GArgc, GArgv, "argv");
Dec 6, 2006
Dec 6, 2006
468
lua_setglobal(luaState, MOJOSETUP_NAMESPACE);
Dec 2, 2006
Dec 2, 2006
469
Dec 3, 2006
Dec 3, 2006
470
// Set up localization table, if possible.
Dec 3, 2006
Dec 3, 2006
471
MojoLua_runFile("localization");
Dec 3, 2006
Dec 3, 2006
472
Dec 3, 2006
Dec 3, 2006
473
474
475
// Transfer control to Lua to setup some APIs and state...
if (!MojoLua_runFile("mojosetup_init"))
return false;
Dec 2, 2006
Dec 2, 2006
476
Dec 3, 2006
Dec 3, 2006
477
// ...and run the installer-specific config file.
Dec 3, 2006
Dec 3, 2006
478
479
480
if (!MojoLua_runFile("config"))
return false;
Dec 3, 2006
Dec 3, 2006
481
482
483
484
485
486
487
488
489
490
491
492
// We don't need the MojoSetup.schema namespace anymore. Make it
// eligible for garbage collection.
lua_getglobal(luaState, MOJOSETUP_NAMESPACE);
if (lua_istable(luaState, -1))
{
lua_pushnil(luaState);
lua_setfield(luaState, -2, "schema");
} // if
lua_pop(luaState, 1);
MojoLua_collectGarbage(); // get rid of old init crap we don't need.
Dec 2, 2006
Dec 2, 2006
493
494
495
496
497
498
499
500
501
502
503
504
505
return true;
} // MojoLua_initLua
void MojoLua_deinitLua(void)
{
if (luaState != NULL)
{
lua_close(luaState);
luaState = NULL;
} // if
} // MojoLua_deinitLua
Dec 9, 2006
Dec 9, 2006
506
507
const char *GLuaLicense =
Dec 10, 2006
Dec 10, 2006
508
509
"Lua:\n"
"\n"
Dec 9, 2006
Dec 9, 2006
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
"Copyright (C) 1994-2006 Lua.org, PUC-Rio.\n"
"\n"
"Permission is hereby granted, free of charge, to any person obtaining a copy\n"
"of this software and associated documentation files (the \"Software\"), to deal\n"
"in the Software without restriction, including without limitation the rights\n"
"to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n"
"copies of the Software, and to permit persons to whom the Software is\n"
"furnished to do so, subject to the following conditions:\n"
"\n"
"The above copyright notice and this permission notice shall be included in\n"
"all copies or substantial portions of the Software.\n"
"\n"
"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n"
"IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n"
"FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n"
"AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n"
"LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n"
"OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n"
"THE SOFTWARE.\n"
"\n";
Dec 2, 2006
Dec 2, 2006
531
// end of lua_glue.c ...