blob: 66a9c08597188ceaedcc21a105b249d4ab10ffd6 [file] [log] [blame]
reed@google.com74ce6f02013-05-22 15:13:18 +00001/*
2 * Copyright 2013 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#include "SkLua.h"
9#include "SkCanvas.h"
mike@reedtribe.org792bbd12013-06-11 02:20:28 +000010#include "SkData.h"
mike@reedtribe.orgfb858242013-06-08 16:39:44 +000011#include "SkDocument.h"
mike@reedtribe.org792bbd12013-06-11 02:20:28 +000012#include "SkImage.h"
13#include "SkMatrix.h"
reed@google.com74ce6f02013-05-22 15:13:18 +000014#include "SkPaint.h"
15#include "SkPath.h"
reed@google.com5fdc9832013-07-24 15:47:52 +000016#include "SkPixelRef.h"
reed@google.com74ce6f02013-05-22 15:13:18 +000017#include "SkRRect.h"
18#include "SkString.h"
reed@google.come3823fd2013-05-30 18:55:14 +000019#include "SkTypeface.h"
reed@google.com74ce6f02013-05-22 15:13:18 +000020
21extern "C" {
reed@google.com3597b732013-05-22 20:12:50 +000022 #include "lua.h"
23 #include "lualib.h"
24 #include "lauxlib.h"
reed@google.com74ce6f02013-05-22 15:13:18 +000025}
26
reed@google.comfd345872013-05-22 20:53:42 +000027// return the metatable name for a given class
reed@google.com3597b732013-05-22 20:12:50 +000028template <typename T> const char* get_mtname();
reed@google.comfd345872013-05-22 20:53:42 +000029#define DEF_MTNAME(T) \
30 template <> const char* get_mtname<T>() { \
31 return #T "_LuaMetaTableName"; \
32 }
33
34DEF_MTNAME(SkCanvas)
mike@reedtribe.orgfb858242013-06-08 16:39:44 +000035DEF_MTNAME(SkDocument)
mike@reedtribe.org792bbd12013-06-11 02:20:28 +000036DEF_MTNAME(SkImage)
reed@google.comfd345872013-05-22 20:53:42 +000037DEF_MTNAME(SkMatrix)
38DEF_MTNAME(SkRRect)
39DEF_MTNAME(SkPath)
40DEF_MTNAME(SkPaint)
reed@google.com5fdc9832013-07-24 15:47:52 +000041DEF_MTNAME(SkShader)
mike@reedtribe.orge6469f12013-06-08 03:15:47 +000042DEF_MTNAME(SkTypeface)
reed@google.com74ce6f02013-05-22 15:13:18 +000043
reed@google.com3597b732013-05-22 20:12:50 +000044template <typename T> T* push_new(lua_State* L) {
45 T* addr = (T*)lua_newuserdata(L, sizeof(T));
46 new (addr) T;
47 luaL_getmetatable(L, get_mtname<T>());
48 lua_setmetatable(L, -2);
49 return addr;
50}
reed@google.com74ce6f02013-05-22 15:13:18 +000051
52template <typename T> void push_obj(lua_State* L, const T& obj) {
53 new (lua_newuserdata(L, sizeof(T))) T(obj);
reed@google.com3597b732013-05-22 20:12:50 +000054 luaL_getmetatable(L, get_mtname<T>());
reed@google.com74ce6f02013-05-22 15:13:18 +000055 lua_setmetatable(L, -2);
56}
57
58template <typename T> void push_ref(lua_State* L, T* ref) {
59 *(T**)lua_newuserdata(L, sizeof(T*)) = SkRef(ref);
reed@google.com3597b732013-05-22 20:12:50 +000060 luaL_getmetatable(L, get_mtname<T>());
reed@google.com74ce6f02013-05-22 15:13:18 +000061 lua_setmetatable(L, -2);
62}
63
64template <typename T> T* get_ref(lua_State* L, int index) {
reed@google.com3597b732013-05-22 20:12:50 +000065 return *(T**)luaL_checkudata(L, index, get_mtname<T>());
reed@google.com74ce6f02013-05-22 15:13:18 +000066}
67
68template <typename T> T* get_obj(lua_State* L, int index) {
reed@google.com3597b732013-05-22 20:12:50 +000069 return (T*)luaL_checkudata(L, index, get_mtname<T>());
reed@google.com74ce6f02013-05-22 15:13:18 +000070}
71
reed@google.com88c9ec92013-05-22 15:43:21 +000072static bool lua2bool(lua_State* L, int index) {
73 return !!lua_toboolean(L, index);
74}
75
reed@google.com74ce6f02013-05-22 15:13:18 +000076///////////////////////////////////////////////////////////////////////////////
77
reed@google.com3597b732013-05-22 20:12:50 +000078SkLua::SkLua(const char termCode[]) : fTermCode(termCode), fWeOwnL(true) {
79 fL = luaL_newstate();
80 luaL_openlibs(fL);
81 SkLua::Load(fL);
82}
83
84SkLua::SkLua(lua_State* L) : fL(L), fWeOwnL(false) {}
85
86SkLua::~SkLua() {
87 if (fWeOwnL) {
88 if (fTermCode.size() > 0) {
89 lua_getglobal(fL, fTermCode.c_str());
90 if (lua_pcall(fL, 0, 0, 0) != LUA_OK) {
91 SkDebugf("lua err: %s\n", lua_tostring(fL, -1));
92 }
93 }
94 lua_close(fL);
95 }
96}
97
98bool SkLua::runCode(const char code[]) {
99 int err = luaL_loadstring(fL, code) || lua_pcall(fL, 0, 0, 0);
100 if (err) {
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +0000101 SkDebugf("--- lua failed: %s\n", lua_tostring(fL, -1));
reed@google.com3597b732013-05-22 20:12:50 +0000102 return false;
103 }
104 return true;
105}
106
107bool SkLua::runCode(const void* code, size_t size) {
108 SkString str((const char*)code, size);
109 return this->runCode(str.c_str());
110}
111
112///////////////////////////////////////////////////////////////////////////////
113
114#define CHECK_SETFIELD(key) do if (key) lua_setfield(fL, -2, key); while (0)
115
reed@google.com29563872013-07-10 21:23:49 +0000116static void setfield_bool_if(lua_State* L, const char key[], bool pred) {
117 if (pred) {
118 lua_pushboolean(L, true);
119 lua_setfield(L, -2, key);
120 }
121}
122
reed@google.com74ce6f02013-05-22 15:13:18 +0000123static void setfield_string(lua_State* L, const char key[], const char value[]) {
124 lua_pushstring(L, value);
125 lua_setfield(L, -2, key);
126}
127
128static void setfield_number(lua_State* L, const char key[], double value) {
129 lua_pushnumber(L, value);
130 lua_setfield(L, -2, key);
131}
132
humper@google.com2815c192013-07-10 22:42:30 +0000133static void setfield_boolean(lua_State* L, const char key[], bool value) {
134 lua_pushboolean(L, value);
135 lua_setfield(L, -2, key);
136}
137
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +0000138static void setfield_scalar(lua_State* L, const char key[], SkScalar value) {
139 setfield_number(L, key, SkScalarToLua(value));
140}
141
reed@google.com3597b732013-05-22 20:12:50 +0000142static void setfield_function(lua_State* L,
143 const char key[], lua_CFunction value) {
144 lua_pushcfunction(L, value);
145 lua_setfield(L, -2, key);
reed@google.com74ce6f02013-05-22 15:13:18 +0000146}
147
reed@google.come3823fd2013-05-30 18:55:14 +0000148static void setarray_number(lua_State* L, int index, double value) {
149 lua_pushnumber(L, value);
150 lua_rawseti(L, -2, index);
151}
152
reed@google.com74ce6f02013-05-22 15:13:18 +0000153void SkLua::pushBool(bool value, const char key[]) {
154 lua_pushboolean(fL, value);
155 CHECK_SETFIELD(key);
156}
157
158void SkLua::pushString(const char str[], const char key[]) {
159 lua_pushstring(fL, str);
160 CHECK_SETFIELD(key);
161}
162
reed@google.come3823fd2013-05-30 18:55:14 +0000163void SkLua::pushString(const char str[], size_t length, const char key[]) {
164 // TODO: how to do this w/o making a copy?
165 SkString s(str, length);
166 lua_pushstring(fL, s.c_str());
167 CHECK_SETFIELD(key);
168}
169
reed@google.com74ce6f02013-05-22 15:13:18 +0000170void SkLua::pushString(const SkString& str, const char key[]) {
171 lua_pushstring(fL, str.c_str());
172 CHECK_SETFIELD(key);
173}
174
175void SkLua::pushColor(SkColor color, const char key[]) {
176 lua_newtable(fL);
177 setfield_number(fL, "a", SkColorGetA(color) / 255.0);
178 setfield_number(fL, "r", SkColorGetR(color) / 255.0);
179 setfield_number(fL, "g", SkColorGetG(color) / 255.0);
180 setfield_number(fL, "b", SkColorGetB(color) / 255.0);
181 CHECK_SETFIELD(key);
182}
183
reed@google.come3823fd2013-05-30 18:55:14 +0000184void SkLua::pushU32(uint32_t value, const char key[]) {
185 lua_pushnumber(fL, (double)value);
186 CHECK_SETFIELD(key);
187}
188
reed@google.com74ce6f02013-05-22 15:13:18 +0000189void SkLua::pushScalar(SkScalar value, const char key[]) {
190 lua_pushnumber(fL, SkScalarToLua(value));
191 CHECK_SETFIELD(key);
192}
193
reed@google.come3823fd2013-05-30 18:55:14 +0000194void SkLua::pushArrayU16(const uint16_t array[], int count, const char key[]) {
195 lua_newtable(fL);
196 for (int i = 0; i < count; ++i) {
197 // make it base-1 to match lua convention
198 setarray_number(fL, i + 1, (double)array[i]);
199 }
200 CHECK_SETFIELD(key);
201}
202
reed@google.com74ce6f02013-05-22 15:13:18 +0000203void SkLua::pushRect(const SkRect& r, const char key[]) {
204 lua_newtable(fL);
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +0000205 setfield_scalar(fL, "left", r.fLeft);
206 setfield_scalar(fL, "top", r.fTop);
207 setfield_scalar(fL, "right", r.fRight);
208 setfield_scalar(fL, "bottom", r.fBottom);
reed@google.com74ce6f02013-05-22 15:13:18 +0000209 CHECK_SETFIELD(key);
210}
211
212void SkLua::pushRRect(const SkRRect& rr, const char key[]) {
213 push_obj(fL, rr);
214 CHECK_SETFIELD(key);
215}
216
217void SkLua::pushMatrix(const SkMatrix& matrix, const char key[]) {
218 push_obj(fL, matrix);
219 CHECK_SETFIELD(key);
220}
221
222void SkLua::pushPaint(const SkPaint& paint, const char key[]) {
223 push_obj(fL, paint);
224 CHECK_SETFIELD(key);
225}
226
227void SkLua::pushPath(const SkPath& path, const char key[]) {
228 push_obj(fL, path);
229 CHECK_SETFIELD(key);
230}
231
232void SkLua::pushCanvas(SkCanvas* canvas, const char key[]) {
233 push_ref(fL, canvas);
234 CHECK_SETFIELD(key);
235}
236
237///////////////////////////////////////////////////////////////////////////////
238///////////////////////////////////////////////////////////////////////////////
239
240static SkScalar lua2scalar(lua_State* L, int index) {
241 SkASSERT(lua_isnumber(L, index));
242 return SkLuaToScalar(lua_tonumber(L, index));
243}
244
mike@reedtribe.org1d32cc62013-06-13 01:28:56 +0000245static SkScalar lua2scalar_def(lua_State* L, int index, SkScalar defaultValue) {
246 if (lua_isnumber(L, index)) {
247 return SkLuaToScalar(lua_tonumber(L, index));
248 } else {
249 return defaultValue;
250 }
251}
252
reed@google.com74ce6f02013-05-22 15:13:18 +0000253static SkScalar getfield_scalar(lua_State* L, int index, const char key[]) {
254 SkASSERT(lua_istable(L, index));
255 lua_pushstring(L, key);
256 lua_gettable(L, index);
skia.committer@gmail.com370c5342013-06-09 07:01:05 +0000257
reed@google.com74ce6f02013-05-22 15:13:18 +0000258 SkScalar value = lua2scalar(L, -1);
259 lua_pop(L, 1);
260 return value;
261}
262
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +0000263static SkScalar getfield_scalar_default(lua_State* L, int index, const char key[], SkScalar def) {
264 SkASSERT(lua_istable(L, index));
265 lua_pushstring(L, key);
266 lua_gettable(L, index);
skia.committer@gmail.com370c5342013-06-09 07:01:05 +0000267
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +0000268 SkScalar value;
269 if (lua_isnil(L, -1)) {
270 value = def;
271 } else {
272 value = lua2scalar(L, -1);
273 }
274 lua_pop(L, 1);
275 return value;
276}
277
reed@google.com74ce6f02013-05-22 15:13:18 +0000278static U8CPU unit2byte(SkScalar x) {
279 if (x <= 0) {
280 return 0;
281 } else if (x >= 1) {
282 return 255;
283 } else {
284 return SkScalarRoundToInt(x * 255);
285 }
286}
287
288static SkColor lua2color(lua_State* L, int index) {
289 return SkColorSetARGB(unit2byte(getfield_scalar(L, index, "a")),
290 unit2byte(getfield_scalar(L, index, "r")),
291 unit2byte(getfield_scalar(L, index, "g")),
292 unit2byte(getfield_scalar(L, index, "b")));
293}
294
295static SkRect* lua2rect(lua_State* L, int index, SkRect* rect) {
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +0000296 rect->set(getfield_scalar_default(L, index, "left", 0),
297 getfield_scalar_default(L, index, "top", 0),
reed@google.com74ce6f02013-05-22 15:13:18 +0000298 getfield_scalar(L, index, "right"),
299 getfield_scalar(L, index, "bottom"));
300 return rect;
301}
302
303static int lcanvas_drawColor(lua_State* L) {
304 get_ref<SkCanvas>(L, 1)->drawColor(lua2color(L, 2));
305 return 0;
306}
307
308static int lcanvas_drawRect(lua_State* L) {
309 SkRect rect;
310 get_ref<SkCanvas>(L, 1)->drawRect(*lua2rect(L, 2, &rect),
311 *get_obj<SkPaint>(L, 3));
312 return 0;
313}
314
315static int lcanvas_drawOval(lua_State* L) {
316 SkRect rect;
317 get_ref<SkCanvas>(L, 1)->drawOval(*lua2rect(L, 2, &rect),
318 *get_obj<SkPaint>(L, 3));
319 return 0;
320}
321
322static int lcanvas_drawCircle(lua_State* L) {
323 get_ref<SkCanvas>(L, 1)->drawCircle(lua2scalar(L, 2),
324 lua2scalar(L, 3),
325 lua2scalar(L, 4),
326 *get_obj<SkPaint>(L, 5));
327 return 0;
328}
329
mike@reedtribe.org792bbd12013-06-11 02:20:28 +0000330static int lcanvas_drawImage(lua_State* L) {
331 SkCanvas* canvas = get_ref<SkCanvas>(L, 1);
332 SkImage* image = get_ref<SkImage>(L, 2);
333 if (NULL == image) {
334 return 0;
335 }
336 SkScalar x = lua2scalar(L, 3);
337 SkScalar y = lua2scalar(L, 4);
338
339 SkPaint paint;
340 const SkPaint* paintPtr = NULL;
341 if (lua_isnumber(L, 5)) {
342 paint.setAlpha(SkScalarRoundToInt(lua2scalar(L, 5) * 255));
343 paintPtr = &paint;
344 }
345 image->draw(canvas, x, y, paintPtr);
346 return 0;
347}
348
reed@google.comfd345872013-05-22 20:53:42 +0000349static int lcanvas_drawPath(lua_State* L) {
350 get_ref<SkCanvas>(L, 1)->drawPath(*get_obj<SkPath>(L, 2),
351 *get_obj<SkPaint>(L, 3));
352 return 0;
353}
354
mike@reedtribe.orge6469f12013-06-08 03:15:47 +0000355static int lcanvas_drawText(lua_State* L) {
356 if (lua_gettop(L) < 5) {
357 return 0;
358 }
359
360 if (lua_isstring(L, 2) && lua_isnumber(L, 3) && lua_isnumber(L, 4)) {
361 size_t len;
362 const char* text = lua_tolstring(L, 2, &len);
363 get_ref<SkCanvas>(L, 1)->drawText(text, len,
364 lua2scalar(L, 3), lua2scalar(L, 4),
365 *get_obj<SkPaint>(L, 5));
366 }
367 return 0;
368}
369
reed@google.com74ce6f02013-05-22 15:13:18 +0000370static int lcanvas_getSaveCount(lua_State* L) {
371 lua_pushnumber(L, get_ref<SkCanvas>(L, 1)->getSaveCount());
372 return 1;
373}
374
375static int lcanvas_getTotalMatrix(lua_State* L) {
376 SkLua(L).pushMatrix(get_ref<SkCanvas>(L, 1)->getTotalMatrix());
377 return 1;
378}
379
mike@reedtribe.orgfb858242013-06-08 16:39:44 +0000380static int lcanvas_save(lua_State* L) {
381 lua_pushinteger(L, get_ref<SkCanvas>(L, 1)->save());
382 return 1;
383}
384
385static int lcanvas_restore(lua_State* L) {
386 get_ref<SkCanvas>(L, 1)->restore();
387 return 0;
388}
389
mike@reedtribe.org1d32cc62013-06-13 01:28:56 +0000390static int lcanvas_scale(lua_State* L) {
391 SkScalar sx = lua2scalar_def(L, 2, 1);
392 SkScalar sy = lua2scalar_def(L, 3, sx);
393 get_ref<SkCanvas>(L, 1)->scale(sx, sy);
394 return 0;
395}
396
reed@google.com3597b732013-05-22 20:12:50 +0000397static int lcanvas_translate(lua_State* L) {
mike@reedtribe.org1d32cc62013-06-13 01:28:56 +0000398 SkScalar tx = lua2scalar_def(L, 2, 0);
399 SkScalar ty = lua2scalar_def(L, 3, 0);
400 get_ref<SkCanvas>(L, 1)->translate(tx, ty);
401 return 0;
402}
403
404static int lcanvas_rotate(lua_State* L) {
405 SkScalar degrees = lua2scalar_def(L, 2, 0);
406 get_ref<SkCanvas>(L, 1)->rotate(degrees);
reed@google.com3597b732013-05-22 20:12:50 +0000407 return 0;
408}
409
reed@google.com74ce6f02013-05-22 15:13:18 +0000410static int lcanvas_gc(lua_State* L) {
411 get_ref<SkCanvas>(L, 1)->unref();
412 return 0;
413}
414
415static const struct luaL_Reg gSkCanvas_Methods[] = {
416 { "drawColor", lcanvas_drawColor },
417 { "drawRect", lcanvas_drawRect },
418 { "drawOval", lcanvas_drawOval },
419 { "drawCircle", lcanvas_drawCircle },
mike@reedtribe.org792bbd12013-06-11 02:20:28 +0000420 { "drawImage", lcanvas_drawImage },
reed@google.comfd345872013-05-22 20:53:42 +0000421 { "drawPath", lcanvas_drawPath },
mike@reedtribe.orge6469f12013-06-08 03:15:47 +0000422 { "drawText", lcanvas_drawText },
reed@google.com74ce6f02013-05-22 15:13:18 +0000423 { "getSaveCount", lcanvas_getSaveCount },
424 { "getTotalMatrix", lcanvas_getTotalMatrix },
mike@reedtribe.orgfb858242013-06-08 16:39:44 +0000425 { "save", lcanvas_save },
426 { "restore", lcanvas_restore },
mike@reedtribe.org1d32cc62013-06-13 01:28:56 +0000427 { "scale", lcanvas_scale },
reed@google.com3597b732013-05-22 20:12:50 +0000428 { "translate", lcanvas_translate },
mike@reedtribe.org1d32cc62013-06-13 01:28:56 +0000429 { "rotate", lcanvas_rotate },
reed@google.com74ce6f02013-05-22 15:13:18 +0000430 { "__gc", lcanvas_gc },
431 { NULL, NULL }
432};
433
434///////////////////////////////////////////////////////////////////////////////
435
mike@reedtribe.orgfb858242013-06-08 16:39:44 +0000436static int ldocument_beginPage(lua_State* L) {
437 const SkRect* contentPtr = NULL;
438 push_ref(L, get_ref<SkDocument>(L, 1)->beginPage(lua2scalar(L, 2),
439 lua2scalar(L, 3),
440 contentPtr));
441 return 1;
442}
443
444static int ldocument_endPage(lua_State* L) {
445 get_ref<SkDocument>(L, 1)->endPage();
446 return 0;
447}
448
449static int ldocument_close(lua_State* L) {
450 get_ref<SkDocument>(L, 1)->close();
451 return 0;
452}
453
454static int ldocument_gc(lua_State* L) {
455 get_ref<SkDocument>(L, 1)->unref();
456 return 0;
457}
458
459static const struct luaL_Reg gSkDocument_Methods[] = {
460 { "beginPage", ldocument_beginPage },
461 { "endPage", ldocument_endPage },
462 { "close", ldocument_close },
463 { "__gc", ldocument_gc },
464 { NULL, NULL }
465};
466
467///////////////////////////////////////////////////////////////////////////////
468
reed@google.com74ce6f02013-05-22 15:13:18 +0000469static int lpaint_isAntiAlias(lua_State* L) {
470 lua_pushboolean(L, get_obj<SkPaint>(L, 1)->isAntiAlias());
471 return 1;
472}
473
474static int lpaint_setAntiAlias(lua_State* L) {
reed@google.com88c9ec92013-05-22 15:43:21 +0000475 get_obj<SkPaint>(L, 1)->setAntiAlias(lua2bool(L, 2));
reed@google.com74ce6f02013-05-22 15:13:18 +0000476 return 0;
477}
478
479static int lpaint_getColor(lua_State* L) {
480 SkLua(L).pushColor(get_obj<SkPaint>(L, 1)->getColor());
481 return 1;
482}
483
484static int lpaint_setColor(lua_State* L) {
485 get_obj<SkPaint>(L, 1)->setColor(lua2color(L, 2));
486 return 0;
487}
488
reed@google.come3823fd2013-05-30 18:55:14 +0000489static int lpaint_getTextSize(lua_State* L) {
490 SkLua(L).pushScalar(get_obj<SkPaint>(L, 1)->getTextSize());
491 return 1;
492}
493
494static int lpaint_setTextSize(lua_State* L) {
495 get_obj<SkPaint>(L, 1)->setTextSize(lua2scalar(L, 2));
496 return 0;
497}
498
mike@reedtribe.orge6469f12013-06-08 03:15:47 +0000499static int lpaint_getTypeface(lua_State* L) {
500 push_ref(L, get_obj<SkPaint>(L, 1)->getTypeface());
501 return 1;
502}
503
504static int lpaint_setTypeface(lua_State* L) {
505 get_obj<SkPaint>(L, 1)->setTypeface(get_ref<SkTypeface>(L, 2));
506 return 0;
507}
508
reed@google.come3823fd2013-05-30 18:55:14 +0000509static int lpaint_getFontID(lua_State* L) {
510 SkTypeface* face = get_obj<SkPaint>(L, 1)->getTypeface();
511 SkLua(L).pushU32(SkTypeface::UniqueID(face));
512 return 1;
513}
514
mike@reedtribe.orgfb858242013-06-08 16:39:44 +0000515static const struct {
516 const char* fLabel;
517 SkPaint::Align fAlign;
518} gAlignRec[] = {
519 { "left", SkPaint::kLeft_Align },
520 { "center", SkPaint::kCenter_Align },
521 { "right", SkPaint::kRight_Align },
522};
523
524static int lpaint_getTextAlign(lua_State* L) {
525 SkPaint::Align align = get_obj<SkPaint>(L, 1)->getTextAlign();
526 for (size_t i = 0; i < SK_ARRAY_COUNT(gAlignRec); ++i) {
527 if (gAlignRec[i].fAlign == align) {
528 lua_pushstring(L, gAlignRec[i].fLabel);
529 return 1;
530 }
531 }
532 return 0;
533}
534
535static int lpaint_setTextAlign(lua_State* L) {
536 if (lua_isstring(L, 2)) {
537 size_t len;
538 const char* label = lua_tolstring(L, 2, &len);
skia.committer@gmail.com370c5342013-06-09 07:01:05 +0000539
mike@reedtribe.orgfb858242013-06-08 16:39:44 +0000540 for (size_t i = 0; i < SK_ARRAY_COUNT(gAlignRec); ++i) {
541 if (!strcmp(gAlignRec[i].fLabel, label)) {
542 get_obj<SkPaint>(L, 1)->setTextAlign(gAlignRec[i].fAlign);
543 break;
544 }
545 }
546 }
547 return 0;
548}
549
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +0000550static int lpaint_getStroke(lua_State* L) {
551 lua_pushboolean(L, SkPaint::kStroke_Style == get_obj<SkPaint>(L, 1)->getStyle());
552 return 1;
553}
554
555static int lpaint_setStroke(lua_State* L) {
556 SkPaint::Style style;
skia.committer@gmail.com370c5342013-06-09 07:01:05 +0000557
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +0000558 if (lua_toboolean(L, 2)) {
559 style = SkPaint::kStroke_Style;
560 } else {
561 style = SkPaint::kFill_Style;
562 }
563 get_obj<SkPaint>(L, 1)->setStyle(style);
564 return 0;
565}
566
567static int lpaint_getStrokeWidth(lua_State* L) {
568 SkLua(L).pushScalar(get_obj<SkPaint>(L, 1)->getStrokeWidth());
569 return 1;
570}
571
572static int lpaint_setStrokeWidth(lua_State* L) {
573 get_obj<SkPaint>(L, 1)->setStrokeWidth(lua2scalar(L, 2));
574 return 0;
575}
576
577static int lpaint_measureText(lua_State* L) {
578 if (lua_isstring(L, 2)) {
579 size_t len;
580 const char* text = lua_tolstring(L, 2, &len);
581 SkLua(L).pushScalar(get_obj<SkPaint>(L, 1)->measureText(text, len));
582 return 1;
583 }
584 return 0;
585}
586
587struct FontMetrics {
588 SkScalar fTop; //!< The greatest distance above the baseline for any glyph (will be <= 0)
589 SkScalar fAscent; //!< The recommended distance above the baseline (will be <= 0)
590 SkScalar fDescent; //!< The recommended distance below the baseline (will be >= 0)
591 SkScalar fBottom; //!< The greatest distance below the baseline for any glyph (will be >= 0)
592 SkScalar fLeading; //!< The recommended distance to add between lines of text (will be >= 0)
593 SkScalar fAvgCharWidth; //!< the average charactor width (>= 0)
594 SkScalar fXMin; //!< The minimum bounding box x value for all glyphs
595 SkScalar fXMax; //!< The maximum bounding box x value for all glyphs
596 SkScalar fXHeight; //!< the height of an 'x' in px, or 0 if no 'x' in face
597};
598
599static int lpaint_getFontMetrics(lua_State* L) {
600 SkPaint::FontMetrics fm;
601 SkScalar height = get_obj<SkPaint>(L, 1)->getFontMetrics(&fm);
skia.committer@gmail.com370c5342013-06-09 07:01:05 +0000602
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +0000603 lua_newtable(L);
604 setfield_scalar(L, "top", fm.fTop);
605 setfield_scalar(L, "ascent", fm.fAscent);
606 setfield_scalar(L, "descent", fm.fDescent);
607 setfield_scalar(L, "bottom", fm.fBottom);
608 setfield_scalar(L, "leading", fm.fLeading);
609 SkLua(L).pushScalar(height);
610 return 2;
611}
612
reed@google.com29563872013-07-10 21:23:49 +0000613static int lpaint_getEffects(lua_State* L) {
614 const SkPaint* paint = get_obj<SkPaint>(L, 1);
skia.committer@gmail.comde2e4e82013-07-11 07:01:01 +0000615
reed@google.com29563872013-07-10 21:23:49 +0000616 lua_newtable(L);
617 setfield_bool_if(L, "looper", !!paint->getLooper());
618 setfield_bool_if(L, "pathEffect", !!paint->getPathEffect());
619 setfield_bool_if(L, "rasterizer", !!paint->getRasterizer());
620 setfield_bool_if(L, "maskFilter", !!paint->getMaskFilter());
621 setfield_bool_if(L, "shader", !!paint->getShader());
622 setfield_bool_if(L, "colorFilter", !!paint->getColorFilter());
623 setfield_bool_if(L, "imageFilter", !!paint->getImageFilter());
624 setfield_bool_if(L, "xfermode", !!paint->getXfermode());
625 return 1;
626}
627
reed@google.com5fdc9832013-07-24 15:47:52 +0000628static int lpaint_getShader(lua_State* L) {
629 const SkPaint* paint = get_obj<SkPaint>(L, 1);
630 SkShader* shader = paint->getShader();
631 if (shader) {
632 push_ref(L, shader);
633 return 1;
634 }
635 return 0;
636}
637
reed@google.com74ce6f02013-05-22 15:13:18 +0000638static int lpaint_gc(lua_State* L) {
639 get_obj<SkPaint>(L, 1)->~SkPaint();
640 return 0;
641}
642
643static const struct luaL_Reg gSkPaint_Methods[] = {
644 { "isAntiAlias", lpaint_isAntiAlias },
645 { "setAntiAlias", lpaint_setAntiAlias },
646 { "getColor", lpaint_getColor },
647 { "setColor", lpaint_setColor },
reed@google.come3823fd2013-05-30 18:55:14 +0000648 { "getTextSize", lpaint_getTextSize },
649 { "setTextSize", lpaint_setTextSize },
mike@reedtribe.orge6469f12013-06-08 03:15:47 +0000650 { "getTypeface", lpaint_getTypeface },
651 { "setTypeface", lpaint_setTypeface },
reed@google.come3823fd2013-05-30 18:55:14 +0000652 { "getFontID", lpaint_getFontID },
mike@reedtribe.orgfb858242013-06-08 16:39:44 +0000653 { "getTextAlign", lpaint_getTextAlign },
654 { "setTextAlign", lpaint_setTextAlign },
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +0000655 { "getStroke", lpaint_getStroke },
656 { "setStroke", lpaint_setStroke },
657 { "getStrokeWidth", lpaint_getStrokeWidth },
658 { "setStrokeWidth", lpaint_setStrokeWidth },
659 { "measureText", lpaint_measureText },
660 { "getFontMetrics", lpaint_getFontMetrics },
reed@google.com29563872013-07-10 21:23:49 +0000661 { "getEffects", lpaint_getEffects },
reed@google.com5fdc9832013-07-24 15:47:52 +0000662 { "getShader", lpaint_getShader },
reed@google.com74ce6f02013-05-22 15:13:18 +0000663 { "__gc", lpaint_gc },
664 { NULL, NULL }
665};
666
667///////////////////////////////////////////////////////////////////////////////
668
reed@google.com5fdc9832013-07-24 15:47:52 +0000669static const char* mode2string(SkShader::TileMode mode) {
670 static const char* gNames[] = { "clamp", "repeat", "mirror" };
671 SkASSERT((unsigned)mode < SK_ARRAY_COUNT(gNames));
672 return gNames[mode];
673}
674
675static const char* gradtype2string(SkShader::GradientType t) {
676 static const char* gNames[] = {
677 "none", "color", "linear", "radial", "radial2", "sweep", "conical"
678 };
679 SkASSERT((unsigned)t < SK_ARRAY_COUNT(gNames));
680 return gNames[t];
681}
682
683static int lshader_isOpaque(lua_State* L) {
684 SkShader* shader = get_ref<SkShader>(L, 1);
685 return shader && shader->isOpaque();
686}
687
688static int lshader_asABitmap(lua_State* L) {
689 SkShader* shader = get_ref<SkShader>(L, 1);
690 if (shader) {
691 SkBitmap bm;
692 SkMatrix matrix;
693 SkShader::TileMode modes[2];
694 switch (shader->asABitmap(&bm, &matrix, modes)) {
695 case SkShader::kDefault_BitmapType:
696 lua_newtable(L);
697 setfield_number(L, "genID", bm.pixelRef() ? bm.pixelRef()->getGenerationID() : 0);
698 setfield_number(L, "width", bm.width());
699 setfield_number(L, "height", bm.height());
700 setfield_string(L, "tileX", mode2string(modes[0]));
701 setfield_string(L, "tileY", mode2string(modes[1]));
702 return 1;
703 default:
704 break;
705 }
706 }
707 return 0;
708}
709
710static int lshader_asAGradient(lua_State* L) {
711 SkShader* shader = get_ref<SkShader>(L, 1);
712 if (shader) {
713 SkShader::GradientInfo info;
714 sk_bzero(&info, sizeof(info));
715 SkShader::GradientType t = shader->asAGradient(&info);
716 if (SkShader::kNone_GradientType != t) {
717 lua_newtable(L);
718 setfield_string(L, "type", gradtype2string(t));
719 setfield_number(L, "colorCount", info.fColorCount);
720 setfield_string(L, "tile", mode2string(info.fTileMode));
721 return 1;
722 }
723 }
724 return 0;
725}
726
727static int lshader_gc(lua_State* L) {
728 get_ref<SkShader>(L, 1)->unref();
729 return 0;
730}
731
732static const struct luaL_Reg gSkShader_Methods[] = {
733 { "isOpaque", lshader_isOpaque },
734 { "asABitmap", lshader_asABitmap },
735 { "asAGradient", lshader_asAGradient },
736 { "__gc", lshader_gc },
737 { NULL, NULL }
738};
739
740///////////////////////////////////////////////////////////////////////////////
741
humper@google.com2815c192013-07-10 22:42:30 +0000742static int lmatrix_getType(lua_State* L) {
743 SkMatrix::TypeMask mask = get_obj<SkMatrix>(L, 1)->getType();
skia.committer@gmail.comde2e4e82013-07-11 07:01:01 +0000744
humper@google.com2815c192013-07-10 22:42:30 +0000745 lua_newtable(L);
746 setfield_boolean(L, "translate", SkToBool(mask & SkMatrix::kTranslate_Mask));
747 setfield_boolean(L, "scale", SkToBool(mask & SkMatrix::kScale_Mask));
748 setfield_boolean(L, "affine", SkToBool(mask & SkMatrix::kAffine_Mask));
749 setfield_boolean(L, "perspective", SkToBool(mask & SkMatrix::kPerspective_Mask));
750 return 1;
751}
752
humper@google.com0f48ee02013-07-26 15:23:43 +0000753static int lmatrix_getScaleX(lua_State* L) {
754 lua_pushnumber(L, get_obj<SkMatrix>(L,1)->getScaleX());
755 return 1;
756}
757
758static int lmatrix_getScaleY(lua_State* L) {
759 lua_pushnumber(L, get_obj<SkMatrix>(L,1)->getScaleY());
760 return 1;
761}
762
763static int lmatrix_getTranslateX(lua_State* L) {
764 lua_pushnumber(L, get_obj<SkMatrix>(L,1)->getTranslateX());
765 return 1;
766}
767
768static int lmatrix_getTranslateY(lua_State* L) {
769 lua_pushnumber(L, get_obj<SkMatrix>(L,1)->getTranslateY());
770 return 1;
771}
772
humper@google.com2815c192013-07-10 22:42:30 +0000773static const struct luaL_Reg gSkMatrix_Methods[] = {
774 { "getType", lmatrix_getType },
humper@google.com0f48ee02013-07-26 15:23:43 +0000775 { "getScaleX", lmatrix_getScaleX },
776 { "getScaleY", lmatrix_getScaleY },
777 { "getTranslateX", lmatrix_getTranslateX },
778 { "getTranslateY", lmatrix_getTranslateY },
humper@google.com2815c192013-07-10 22:42:30 +0000779 { NULL, NULL }
780};
781
782///////////////////////////////////////////////////////////////////////////////
783
reed@google.com74ce6f02013-05-22 15:13:18 +0000784static int lpath_getBounds(lua_State* L) {
785 SkLua(L).pushRect(get_obj<SkPath>(L, 1)->getBounds());
786 return 1;
787}
788
789static int lpath_isEmpty(lua_State* L) {
790 lua_pushboolean(L, get_obj<SkPath>(L, 1)->isEmpty());
791 return 1;
792}
793
794static int lpath_isRect(lua_State* L) {
795 SkRect r;
796 bool pred = get_obj<SkPath>(L, 1)->isRect(&r);
797 int ret_count = 1;
798 lua_pushboolean(L, pred);
799 if (pred) {
800 SkLua(L).pushRect(r);
801 ret_count += 1;
802 }
803 return ret_count;
804}
805
806static const char* dir2string(SkPath::Direction dir) {
807 static const char* gStr[] = {
808 "unknown", "cw", "ccw"
809 };
810 SkASSERT((unsigned)dir < SK_ARRAY_COUNT(gStr));
811 return gStr[dir];
812}
813
814static int lpath_isNestedRects(lua_State* L) {
815 SkRect rects[2];
816 SkPath::Direction dirs[2];
817 bool pred = get_obj<SkPath>(L, 1)->isNestedRects(rects, dirs);
818 int ret_count = 1;
819 lua_pushboolean(L, pred);
820 if (pred) {
821 SkLua lua(L);
822 lua.pushRect(rects[0]);
823 lua.pushRect(rects[1]);
824 lua_pushstring(L, dir2string(dirs[0]));
825 lua_pushstring(L, dir2string(dirs[0]));
826 ret_count += 4;
827 }
828 return ret_count;
829}
830
831static int lpath_reset(lua_State* L) {
832 get_obj<SkPath>(L, 1)->reset();
833 return 0;
834}
835
836static int lpath_moveTo(lua_State* L) {
837 get_obj<SkPath>(L, 1)->moveTo(lua2scalar(L, 2), lua2scalar(L, 3));
838 return 0;
839}
840
841static int lpath_lineTo(lua_State* L) {
842 get_obj<SkPath>(L, 1)->lineTo(lua2scalar(L, 2), lua2scalar(L, 3));
843 return 0;
844}
845
846static int lpath_quadTo(lua_State* L) {
847 get_obj<SkPath>(L, 1)->quadTo(lua2scalar(L, 2), lua2scalar(L, 3),
848 lua2scalar(L, 4), lua2scalar(L, 5));
849 return 0;
850}
851
852static int lpath_cubicTo(lua_State* L) {
853 get_obj<SkPath>(L, 1)->cubicTo(lua2scalar(L, 2), lua2scalar(L, 3),
854 lua2scalar(L, 4), lua2scalar(L, 5),
855 lua2scalar(L, 6), lua2scalar(L, 7));
856 return 0;
857}
858
859static int lpath_close(lua_State* L) {
860 get_obj<SkPath>(L, 1)->close();
861 return 0;
862}
863
864static int lpath_gc(lua_State* L) {
865 get_obj<SkPath>(L, 1)->~SkPath();
866 return 0;
867}
868
869static const struct luaL_Reg gSkPath_Methods[] = {
870 { "getBounds", lpath_getBounds },
871 { "isEmpty", lpath_isEmpty },
872 { "isRect", lpath_isRect },
873 { "isNestedRects", lpath_isNestedRects },
874 { "reset", lpath_reset },
875 { "moveTo", lpath_moveTo },
876 { "lineTo", lpath_lineTo },
877 { "quadTo", lpath_quadTo },
878 { "cubicTo", lpath_cubicTo },
879 { "close", lpath_close },
880 { "__gc", lpath_gc },
881 { NULL, NULL }
882};
883
884///////////////////////////////////////////////////////////////////////////////
885
886static const char* rrect_type(const SkRRect& rr) {
887 switch (rr.getType()) {
888 case SkRRect::kUnknown_Type: return "unknown";
889 case SkRRect::kEmpty_Type: return "empty";
890 case SkRRect::kRect_Type: return "rect";
891 case SkRRect::kOval_Type: return "oval";
892 case SkRRect::kSimple_Type: return "simple";
893 case SkRRect::kComplex_Type: return "complex";
894 }
895 SkASSERT(!"never get here");
896 return "";
897}
898
899static int lrrect_rect(lua_State* L) {
900 SkLua(L).pushRect(get_obj<SkRRect>(L, 1)->rect());
901 return 1;
902}
903
904static int lrrect_type(lua_State* L) {
905 lua_pushstring(L, rrect_type(*get_obj<SkRRect>(L, 1)));
906 return 1;
907}
908
909static int lrrect_radii(lua_State* L) {
910 int corner = lua_tointeger(L, 2);
911 SkVector v;
912 if (corner < 0 || corner > 3) {
913 SkDebugf("bad corner index %d", corner);
914 v.set(0, 0);
915 } else {
916 v = get_obj<SkRRect>(L, 1)->radii((SkRRect::Corner)corner);
917 }
918 lua_pushnumber(L, v.fX);
919 lua_pushnumber(L, v.fY);
920 return 2;
921}
922
923static int lrrect_gc(lua_State* L) {
924 get_obj<SkRRect>(L, 1)->~SkRRect();
925 return 0;
926}
927
928static const struct luaL_Reg gSkRRect_Methods[] = {
929 { "rect", lrrect_rect },
930 { "type", lrrect_type },
931 { "radii", lrrect_radii },
932 { "__gc", lrrect_gc },
933 { NULL, NULL }
934};
935
936///////////////////////////////////////////////////////////////////////////////
937
mike@reedtribe.org792bbd12013-06-11 02:20:28 +0000938static int limage_width(lua_State* L) {
939 lua_pushinteger(L, get_ref<SkImage>(L, 1)->width());
940 return 1;
941}
942
943static int limage_height(lua_State* L) {
944 lua_pushinteger(L, get_ref<SkImage>(L, 1)->height());
945 return 1;
946}
947
948static int limage_gc(lua_State* L) {
949 get_ref<SkImage>(L, 1)->unref();
950 return 0;
951}
952
953static const struct luaL_Reg gSkImage_Methods[] = {
954 { "width", limage_width },
955 { "height", limage_height },
956 { "__gc", limage_gc },
957 { NULL, NULL }
958};
959
960///////////////////////////////////////////////////////////////////////////////
961
mike@reedtribe.orge6469f12013-06-08 03:15:47 +0000962static int ltypeface_gc(lua_State* L) {
963 get_ref<SkTypeface>(L, 1)->unref();
964 return 0;
965}
966
967static const struct luaL_Reg gSkTypeface_Methods[] = {
968 { "__gc", ltypeface_gc },
969 { NULL, NULL }
970};
971
972///////////////////////////////////////////////////////////////////////////////
973
reed@google.com74ce6f02013-05-22 15:13:18 +0000974class AutoCallLua {
975public:
976 AutoCallLua(lua_State* L, const char func[], const char verb[]) : fL(L) {
977 lua_getglobal(L, func);
978 if (!lua_isfunction(L, -1)) {
979 int t = lua_type(L, -1);
980 SkDebugf("--- expected function %d\n", t);
981 }
skia.committer@gmail.com2d816ad2013-05-23 07:01:22 +0000982
reed@google.com74ce6f02013-05-22 15:13:18 +0000983 lua_newtable(L);
984 setfield_string(L, "verb", verb);
985 }
skia.committer@gmail.com2d816ad2013-05-23 07:01:22 +0000986
reed@google.com74ce6f02013-05-22 15:13:18 +0000987 ~AutoCallLua() {
988 if (lua_pcall(fL, 1, 0, 0) != LUA_OK) {
989 SkDebugf("lua err: %s\n", lua_tostring(fL, -1));
990 }
991 lua_settop(fL, -1);
992 }
skia.committer@gmail.com2d816ad2013-05-23 07:01:22 +0000993
reed@google.com74ce6f02013-05-22 15:13:18 +0000994private:
995 lua_State* fL;
996};
997
998#define AUTO_LUA(verb) AutoCallLua acl(fL, fFunc.c_str(), verb)
999
1000///////////////////////////////////////////////////////////////////////////////
1001
mike@reedtribe.orgfb858242013-06-08 16:39:44 +00001002static int lsk_newDocumentPDF(lua_State* L) {
1003 const char* file = NULL;
1004 if (lua_gettop(L) > 0 && lua_isstring(L, 1)) {
1005 file = lua_tolstring(L, 1, NULL);
1006 }
1007
1008 SkDocument* doc = SkDocument::CreatePDF(file);
1009 if (NULL == doc) {
1010 // do I need to push a nil on the stack and return 1?
1011 return 0;
1012 } else {
1013 push_ref(L, doc);
1014 doc->unref();
1015 return 1;
1016 }
1017}
1018
reed@google.com3597b732013-05-22 20:12:50 +00001019static int lsk_newPaint(lua_State* L) {
1020 push_new<SkPaint>(L);
1021 return 1;
1022}
1023
1024static int lsk_newPath(lua_State* L) {
1025 push_new<SkPath>(L);
1026 return 1;
1027}
1028
1029static int lsk_newRRect(lua_State* L) {
1030 SkRRect* rr = push_new<SkRRect>(L);
1031 rr->setEmpty();
1032 return 1;
1033}
1034
mike@reedtribe.orge6469f12013-06-08 03:15:47 +00001035static int lsk_newTypeface(lua_State* L) {
1036 const char* name = NULL;
1037 int style = SkTypeface::kNormal;
skia.committer@gmail.com63193672013-06-08 07:01:13 +00001038
mike@reedtribe.orge6469f12013-06-08 03:15:47 +00001039 int count = lua_gettop(L);
1040 if (count > 0 && lua_isstring(L, 1)) {
1041 name = lua_tolstring(L, 1, NULL);
1042 if (count > 1 && lua_isnumber(L, 2)) {
1043 style = lua_tointegerx(L, 2, NULL) & SkTypeface::kBoldItalic;
1044 }
1045 }
1046
1047 SkTypeface* face = SkTypeface::CreateFromName(name,
1048 (SkTypeface::Style)style);
1049// SkDebugf("---- name <%s> style=%d, face=%p ref=%d\n", name, style, face, face->getRefCnt());
1050 if (NULL == face) {
1051 face = SkTypeface::RefDefault();
1052 }
1053 push_ref(L, face);
1054 face->unref();
1055 return 1;
1056}
reed@google.com3597b732013-05-22 20:12:50 +00001057
mike@reedtribe.org792bbd12013-06-11 02:20:28 +00001058static int lsk_loadImage(lua_State* L) {
1059 if (lua_gettop(L) > 0 && lua_isstring(L, 1)) {
1060 const char* name = lua_tolstring(L, 1, NULL);
1061 SkAutoDataUnref data(SkData::NewFromFileName(name));
1062 if (data.get()) {
1063 SkImage* image = SkImage::NewEncodedData(data.get());
1064 if (image) {
1065 push_ref(L, image);
1066 image->unref();
1067 return 1;
1068 }
1069 }
1070 }
1071 return 0;
1072}
1073
reed@google.com3597b732013-05-22 20:12:50 +00001074static void register_Sk(lua_State* L) {
1075 lua_newtable(L);
1076 lua_pushvalue(L, -1);
1077 lua_setglobal(L, "Sk");
1078 // the Sk table is still on top
1079
mike@reedtribe.orgfb858242013-06-08 16:39:44 +00001080 setfield_function(L, "newDocumentPDF", lsk_newDocumentPDF);
mike@reedtribe.org792bbd12013-06-11 02:20:28 +00001081 setfield_function(L, "loadImage", lsk_loadImage);
reed@google.com3597b732013-05-22 20:12:50 +00001082 setfield_function(L, "newPaint", lsk_newPaint);
1083 setfield_function(L, "newPath", lsk_newPath);
1084 setfield_function(L, "newRRect", lsk_newRRect);
mike@reedtribe.orge6469f12013-06-08 03:15:47 +00001085 setfield_function(L, "newTypeface", lsk_newTypeface);
reed@google.com3597b732013-05-22 20:12:50 +00001086 lua_pop(L, 1); // pop off the Sk table
1087}
1088
reed@google.com74ce6f02013-05-22 15:13:18 +00001089#define REG_CLASS(L, C) \
1090 do { \
reed@google.com3597b732013-05-22 20:12:50 +00001091 luaL_newmetatable(L, get_mtname<C>()); \
reed@google.com74ce6f02013-05-22 15:13:18 +00001092 lua_pushvalue(L, -1); \
1093 lua_setfield(L, -2, "__index"); \
1094 luaL_setfuncs(L, g##C##_Methods, 0); \
1095 lua_pop(L, 1); /* pop off the meta-table */ \
1096 } while (0)
1097
1098void SkLua::Load(lua_State* L) {
reed@google.com3597b732013-05-22 20:12:50 +00001099 register_Sk(L);
reed@google.com74ce6f02013-05-22 15:13:18 +00001100 REG_CLASS(L, SkCanvas);
mike@reedtribe.orgfb858242013-06-08 16:39:44 +00001101 REG_CLASS(L, SkDocument);
mike@reedtribe.org792bbd12013-06-11 02:20:28 +00001102 REG_CLASS(L, SkImage);
reed@google.com74ce6f02013-05-22 15:13:18 +00001103 REG_CLASS(L, SkPath);
1104 REG_CLASS(L, SkPaint);
1105 REG_CLASS(L, SkRRect);
reed@google.com5fdc9832013-07-24 15:47:52 +00001106 REG_CLASS(L, SkShader);
mike@reedtribe.orge6469f12013-06-08 03:15:47 +00001107 REG_CLASS(L, SkTypeface);
humper@google.com2815c192013-07-10 22:42:30 +00001108 REG_CLASS(L, SkMatrix);
reed@google.com74ce6f02013-05-22 15:13:18 +00001109}
zachr@google.com28c27c82013-06-20 17:15:05 +00001110
reed@google.com7bce9982013-06-20 17:40:21 +00001111extern "C" int luaopen_skia(lua_State* L);
zachr@google.com28c27c82013-06-20 17:15:05 +00001112extern "C" int luaopen_skia(lua_State* L) {
1113 SkLua::Load(L);
1114 return 0;
1115}