blob: 4fdb71404d810318a97fbe580b1eb5adcaac6476 [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"
bsalomon@google.com4ebe3822014-02-26 20:22:32 +00009
10#if SK_SUPPORT_GPU
11#include "GrReducedClip.h"
12#endif
13
reed468b1812014-10-19 11:42:54 -070014#include "SkBlurImageFilter.h"
reed@google.com74ce6f02013-05-22 15:13:18 +000015#include "SkCanvas.h"
mike@reedtribe.org792bbd12013-06-11 02:20:28 +000016#include "SkData.h"
piotaixr4bcc2022014-09-17 14:33:30 -070017#include "SkDecodingImageGenerator.h"
mike@reedtribe.orgfb858242013-06-08 16:39:44 +000018#include "SkDocument.h"
reed9fbc3f32014-10-21 07:12:58 -070019#include "SkGradientShader.h"
mike@reedtribe.org792bbd12013-06-11 02:20:28 +000020#include "SkImage.h"
21#include "SkMatrix.h"
reed@google.com74ce6f02013-05-22 15:13:18 +000022#include "SkPaint.h"
23#include "SkPath.h"
reed96affcd2014-10-13 12:38:04 -070024#include "SkPictureRecorder.h"
reed@google.com5fdc9832013-07-24 15:47:52 +000025#include "SkPixelRef.h"
reed@google.com74ce6f02013-05-22 15:13:18 +000026#include "SkRRect.h"
27#include "SkString.h"
reed485557f2014-10-12 10:36:47 -070028#include "SkSurface.h"
fmalitab7425172014-08-26 07:56:44 -070029#include "SkTextBlob.h"
reed@google.come3823fd2013-05-30 18:55:14 +000030#include "SkTypeface.h"
reed@google.com74ce6f02013-05-22 15:13:18 +000031
32extern "C" {
reed@google.com3597b732013-05-22 20:12:50 +000033 #include "lua.h"
34 #include "lualib.h"
35 #include "lauxlib.h"
reed@google.com74ce6f02013-05-22 15:13:18 +000036}
37
reed@google.comfd345872013-05-22 20:53:42 +000038// return the metatable name for a given class
reed@google.com3597b732013-05-22 20:12:50 +000039template <typename T> const char* get_mtname();
reed@google.comfd345872013-05-22 20:53:42 +000040#define DEF_MTNAME(T) \
41 template <> const char* get_mtname<T>() { \
42 return #T "_LuaMetaTableName"; \
43 }
44
45DEF_MTNAME(SkCanvas)
mike@reedtribe.orgfb858242013-06-08 16:39:44 +000046DEF_MTNAME(SkDocument)
mike@reedtribe.org792bbd12013-06-11 02:20:28 +000047DEF_MTNAME(SkImage)
reed468b1812014-10-19 11:42:54 -070048DEF_MTNAME(SkImageFilter)
reed@google.comfd345872013-05-22 20:53:42 +000049DEF_MTNAME(SkMatrix)
50DEF_MTNAME(SkRRect)
51DEF_MTNAME(SkPath)
52DEF_MTNAME(SkPaint)
commit-bot@chromium.org1301bf32014-03-17 23:09:47 +000053DEF_MTNAME(SkPathEffect)
reed96affcd2014-10-13 12:38:04 -070054DEF_MTNAME(SkPicture)
55DEF_MTNAME(SkPictureRecorder)
reed@google.com5fdc9832013-07-24 15:47:52 +000056DEF_MTNAME(SkShader)
reed485557f2014-10-12 10:36:47 -070057DEF_MTNAME(SkSurface)
fmalitab7425172014-08-26 07:56:44 -070058DEF_MTNAME(SkTextBlob)
mike@reedtribe.orge6469f12013-06-08 03:15:47 +000059DEF_MTNAME(SkTypeface)
reed@google.com74ce6f02013-05-22 15:13:18 +000060
reed@google.com3597b732013-05-22 20:12:50 +000061template <typename T> T* push_new(lua_State* L) {
62 T* addr = (T*)lua_newuserdata(L, sizeof(T));
63 new (addr) T;
64 luaL_getmetatable(L, get_mtname<T>());
65 lua_setmetatable(L, -2);
66 return addr;
67}
reed@google.com74ce6f02013-05-22 15:13:18 +000068
69template <typename T> void push_obj(lua_State* L, const T& obj) {
70 new (lua_newuserdata(L, sizeof(T))) T(obj);
reed@google.com3597b732013-05-22 20:12:50 +000071 luaL_getmetatable(L, get_mtname<T>());
reed@google.com74ce6f02013-05-22 15:13:18 +000072 lua_setmetatable(L, -2);
73}
74
reed9fbc3f32014-10-21 07:12:58 -070075template <typename T> T* push_ref(lua_State* L, T* ref) {
commit-bot@chromium.org77887af2013-12-17 14:28:19 +000076 *(T**)lua_newuserdata(L, sizeof(T*)) = SkSafeRef(ref);
reed@google.com3597b732013-05-22 20:12:50 +000077 luaL_getmetatable(L, get_mtname<T>());
reed@google.com74ce6f02013-05-22 15:13:18 +000078 lua_setmetatable(L, -2);
reed9fbc3f32014-10-21 07:12:58 -070079 return ref;
reed@google.com74ce6f02013-05-22 15:13:18 +000080}
81
82template <typename T> T* get_ref(lua_State* L, int index) {
reed@google.com3597b732013-05-22 20:12:50 +000083 return *(T**)luaL_checkudata(L, index, get_mtname<T>());
reed@google.com74ce6f02013-05-22 15:13:18 +000084}
85
86template <typename T> T* get_obj(lua_State* L, int index) {
reed@google.com3597b732013-05-22 20:12:50 +000087 return (T*)luaL_checkudata(L, index, get_mtname<T>());
reed@google.com74ce6f02013-05-22 15:13:18 +000088}
89
reed@google.com88c9ec92013-05-22 15:43:21 +000090static bool lua2bool(lua_State* L, int index) {
91 return !!lua_toboolean(L, index);
92}
93
reed@google.com74ce6f02013-05-22 15:13:18 +000094///////////////////////////////////////////////////////////////////////////////
95
reed@google.com3597b732013-05-22 20:12:50 +000096SkLua::SkLua(const char termCode[]) : fTermCode(termCode), fWeOwnL(true) {
97 fL = luaL_newstate();
98 luaL_openlibs(fL);
99 SkLua::Load(fL);
100}
101
102SkLua::SkLua(lua_State* L) : fL(L), fWeOwnL(false) {}
103
104SkLua::~SkLua() {
105 if (fWeOwnL) {
106 if (fTermCode.size() > 0) {
107 lua_getglobal(fL, fTermCode.c_str());
108 if (lua_pcall(fL, 0, 0, 0) != LUA_OK) {
109 SkDebugf("lua err: %s\n", lua_tostring(fL, -1));
110 }
111 }
112 lua_close(fL);
113 }
114}
115
116bool SkLua::runCode(const char code[]) {
117 int err = luaL_loadstring(fL, code) || lua_pcall(fL, 0, 0, 0);
118 if (err) {
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +0000119 SkDebugf("--- lua failed: %s\n", lua_tostring(fL, -1));
reed@google.com3597b732013-05-22 20:12:50 +0000120 return false;
121 }
122 return true;
123}
124
125bool SkLua::runCode(const void* code, size_t size) {
126 SkString str((const char*)code, size);
127 return this->runCode(str.c_str());
128}
129
130///////////////////////////////////////////////////////////////////////////////
131
132#define CHECK_SETFIELD(key) do if (key) lua_setfield(fL, -2, key); while (0)
133
reed@google.com29563872013-07-10 21:23:49 +0000134static void setfield_bool_if(lua_State* L, const char key[], bool pred) {
135 if (pred) {
136 lua_pushboolean(L, true);
137 lua_setfield(L, -2, key);
138 }
139}
140
reed@google.com74ce6f02013-05-22 15:13:18 +0000141static void setfield_string(lua_State* L, const char key[], const char value[]) {
142 lua_pushstring(L, value);
143 lua_setfield(L, -2, key);
144}
145
146static void setfield_number(lua_State* L, const char key[], double value) {
147 lua_pushnumber(L, value);
148 lua_setfield(L, -2, key);
149}
150
humper@google.com2815c192013-07-10 22:42:30 +0000151static void setfield_boolean(lua_State* L, const char key[], bool value) {
152 lua_pushboolean(L, value);
153 lua_setfield(L, -2, key);
154}
155
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +0000156static void setfield_scalar(lua_State* L, const char key[], SkScalar value) {
157 setfield_number(L, key, SkScalarToLua(value));
158}
159
reed@google.com3597b732013-05-22 20:12:50 +0000160static void setfield_function(lua_State* L,
161 const char key[], lua_CFunction value) {
162 lua_pushcfunction(L, value);
163 lua_setfield(L, -2, key);
reed@google.com74ce6f02013-05-22 15:13:18 +0000164}
165
reed@google.come3823fd2013-05-30 18:55:14 +0000166static void setarray_number(lua_State* L, int index, double value) {
167 lua_pushnumber(L, value);
168 lua_rawseti(L, -2, index);
169}
170
commit-bot@chromium.org4d803a92014-05-14 16:03:14 +0000171static void setarray_scalar(lua_State* L, int index, SkScalar value) {
172 setarray_number(L, index, SkScalarToLua(value));
173}
174
reed@google.com74ce6f02013-05-22 15:13:18 +0000175void SkLua::pushBool(bool value, const char key[]) {
176 lua_pushboolean(fL, value);
177 CHECK_SETFIELD(key);
178}
179
180void SkLua::pushString(const char str[], const char key[]) {
181 lua_pushstring(fL, str);
182 CHECK_SETFIELD(key);
183}
184
reed@google.come3823fd2013-05-30 18:55:14 +0000185void SkLua::pushString(const char str[], size_t length, const char key[]) {
186 // TODO: how to do this w/o making a copy?
187 SkString s(str, length);
188 lua_pushstring(fL, s.c_str());
189 CHECK_SETFIELD(key);
190}
191
reed@google.com74ce6f02013-05-22 15:13:18 +0000192void SkLua::pushString(const SkString& str, const char key[]) {
193 lua_pushstring(fL, str.c_str());
194 CHECK_SETFIELD(key);
195}
196
197void SkLua::pushColor(SkColor color, const char key[]) {
198 lua_newtable(fL);
199 setfield_number(fL, "a", SkColorGetA(color) / 255.0);
200 setfield_number(fL, "r", SkColorGetR(color) / 255.0);
201 setfield_number(fL, "g", SkColorGetG(color) / 255.0);
202 setfield_number(fL, "b", SkColorGetB(color) / 255.0);
203 CHECK_SETFIELD(key);
204}
205
reed@google.come3823fd2013-05-30 18:55:14 +0000206void SkLua::pushU32(uint32_t value, const char key[]) {
207 lua_pushnumber(fL, (double)value);
208 CHECK_SETFIELD(key);
209}
210
reed@google.com74ce6f02013-05-22 15:13:18 +0000211void SkLua::pushScalar(SkScalar value, const char key[]) {
212 lua_pushnumber(fL, SkScalarToLua(value));
213 CHECK_SETFIELD(key);
214}
215
reed@google.come3823fd2013-05-30 18:55:14 +0000216void SkLua::pushArrayU16(const uint16_t array[], int count, const char key[]) {
217 lua_newtable(fL);
218 for (int i = 0; i < count; ++i) {
219 // make it base-1 to match lua convention
220 setarray_number(fL, i + 1, (double)array[i]);
221 }
222 CHECK_SETFIELD(key);
223}
224
commit-bot@chromium.org1301bf32014-03-17 23:09:47 +0000225void SkLua::pushArrayPoint(const SkPoint array[], int count, const char key[]) {
226 lua_newtable(fL);
227 for (int i = 0; i < count; ++i) {
228 // make it base-1 to match lua convention
229 lua_newtable(fL);
230 this->pushScalar(array[i].fX, "x");
231 this->pushScalar(array[i].fY, "y");
232 lua_rawseti(fL, -2, i + 1);
233 }
234 CHECK_SETFIELD(key);
235}
236
commit-bot@chromium.org4d803a92014-05-14 16:03:14 +0000237void SkLua::pushArrayScalar(const SkScalar array[], int count, const char key[]) {
238 lua_newtable(fL);
239 for (int i = 0; i < count; ++i) {
240 // make it base-1 to match lua convention
241 setarray_scalar(fL, i + 1, array[i]);
242 }
243 CHECK_SETFIELD(key);
244}
245
reed@google.com74ce6f02013-05-22 15:13:18 +0000246void SkLua::pushRect(const SkRect& r, const char key[]) {
247 lua_newtable(fL);
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +0000248 setfield_scalar(fL, "left", r.fLeft);
249 setfield_scalar(fL, "top", r.fTop);
250 setfield_scalar(fL, "right", r.fRight);
251 setfield_scalar(fL, "bottom", r.fBottom);
reed@google.com74ce6f02013-05-22 15:13:18 +0000252 CHECK_SETFIELD(key);
253}
254
255void SkLua::pushRRect(const SkRRect& rr, const char key[]) {
256 push_obj(fL, rr);
257 CHECK_SETFIELD(key);
258}
259
commit-bot@chromium.org4d803a92014-05-14 16:03:14 +0000260void SkLua::pushDash(const SkPathEffect::DashInfo& info, const char key[]) {
261 lua_newtable(fL);
262 setfield_scalar(fL, "phase", info.fPhase);
263 this->pushArrayScalar(info.fIntervals, info.fCount, "intervals");
264 CHECK_SETFIELD(key);
265}
266
267
reed@google.com74ce6f02013-05-22 15:13:18 +0000268void SkLua::pushMatrix(const SkMatrix& matrix, const char key[]) {
269 push_obj(fL, matrix);
270 CHECK_SETFIELD(key);
271}
272
273void SkLua::pushPaint(const SkPaint& paint, const char key[]) {
274 push_obj(fL, paint);
275 CHECK_SETFIELD(key);
276}
277
278void SkLua::pushPath(const SkPath& path, const char key[]) {
279 push_obj(fL, path);
280 CHECK_SETFIELD(key);
281}
282
283void SkLua::pushCanvas(SkCanvas* canvas, const char key[]) {
284 push_ref(fL, canvas);
285 CHECK_SETFIELD(key);
286}
287
fmalitab7425172014-08-26 07:56:44 -0700288void SkLua::pushTextBlob(const SkTextBlob* blob, const char key[]) {
289 push_ref(fL, const_cast<SkTextBlob*>(blob));
290 CHECK_SETFIELD(key);
291}
292
commit-bot@chromium.org5cc25352014-02-24 18:59:48 +0000293static const char* element_type(SkClipStack::Element::Type type) {
294 switch (type) {
295 case SkClipStack::Element::kEmpty_Type:
296 return "empty";
297 case SkClipStack::Element::kRect_Type:
298 return "rect";
299 case SkClipStack::Element::kRRect_Type:
300 return "rrect";
301 case SkClipStack::Element::kPath_Type:
302 return "path";
303 }
304 return "unknown";
305}
306
307static const char* region_op(SkRegion::Op op) {
308 switch (op) {
309 case SkRegion::kDifference_Op:
310 return "difference";
311 case SkRegion::kIntersect_Op:
312 return "intersect";
313 case SkRegion::kUnion_Op:
314 return "union";
315 case SkRegion::kXOR_Op:
316 return "xor";
317 case SkRegion::kReverseDifference_Op:
318 return "reverse-difference";
319 case SkRegion::kReplace_Op:
320 return "replace";
321 }
322 return "unknown";
323}
324
325void SkLua::pushClipStack(const SkClipStack& stack, const char* key) {
326 lua_newtable(fL);
327 SkClipStack::B2TIter iter(stack);
328 const SkClipStack::Element* element;
329 int i = 0;
bsalomon49f085d2014-09-05 13:34:00 -0700330 while ((element = iter.next())) {
bsalomon@google.com4ebe3822014-02-26 20:22:32 +0000331 this->pushClipStackElement(*element);
commit-bot@chromium.org5cc25352014-02-24 18:59:48 +0000332 lua_rawseti(fL, -2, ++i);
333 }
334 CHECK_SETFIELD(key);
335}
336
bsalomon@google.com4ebe3822014-02-26 20:22:32 +0000337void SkLua::pushClipStackElement(const SkClipStack::Element& element, const char* key) {
338 lua_newtable(fL);
339 SkClipStack::Element::Type type = element.getType();
340 this->pushString(element_type(type), "type");
341 switch (type) {
342 case SkClipStack::Element::kEmpty_Type:
343 break;
344 case SkClipStack::Element::kRect_Type:
345 this->pushRect(element.getRect(), "rect");
346 break;
347 case SkClipStack::Element::kRRect_Type:
348 this->pushRRect(element.getRRect(), "rrect");
349 break;
350 case SkClipStack::Element::kPath_Type:
351 this->pushPath(element.getPath(), "path");
352 break;
353 }
354 this->pushString(region_op(element.getOp()), "op");
355 this->pushBool(element.isAA(), "aa");
356 CHECK_SETFIELD(key);
357}
358
359
reed@google.com74ce6f02013-05-22 15:13:18 +0000360///////////////////////////////////////////////////////////////////////////////
361///////////////////////////////////////////////////////////////////////////////
362
reed485557f2014-10-12 10:36:47 -0700363static int lua2int_def(lua_State* L, int index, int defaultValue) {
364 if (lua_isnumber(L, index)) {
365 return (int)lua_tonumber(L, index);
366 } else {
367 return defaultValue;
368 }
369}
370
reed@google.com74ce6f02013-05-22 15:13:18 +0000371static SkScalar lua2scalar(lua_State* L, int index) {
372 SkASSERT(lua_isnumber(L, index));
373 return SkLuaToScalar(lua_tonumber(L, index));
374}
375
mike@reedtribe.org1d32cc62013-06-13 01:28:56 +0000376static SkScalar lua2scalar_def(lua_State* L, int index, SkScalar defaultValue) {
377 if (lua_isnumber(L, index)) {
378 return SkLuaToScalar(lua_tonumber(L, index));
379 } else {
380 return defaultValue;
381 }
382}
383
reed@google.com74ce6f02013-05-22 15:13:18 +0000384static SkScalar getfield_scalar(lua_State* L, int index, const char key[]) {
385 SkASSERT(lua_istable(L, index));
386 lua_pushstring(L, key);
387 lua_gettable(L, index);
skia.committer@gmail.com370c5342013-06-09 07:01:05 +0000388
reed@google.com74ce6f02013-05-22 15:13:18 +0000389 SkScalar value = lua2scalar(L, -1);
390 lua_pop(L, 1);
391 return value;
392}
393
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +0000394static SkScalar getfield_scalar_default(lua_State* L, int index, const char key[], SkScalar def) {
395 SkASSERT(lua_istable(L, index));
396 lua_pushstring(L, key);
397 lua_gettable(L, index);
skia.committer@gmail.com370c5342013-06-09 07:01:05 +0000398
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +0000399 SkScalar value;
400 if (lua_isnil(L, -1)) {
401 value = def;
402 } else {
403 value = lua2scalar(L, -1);
404 }
405 lua_pop(L, 1);
406 return value;
407}
408
reed468b1812014-10-19 11:42:54 -0700409static SkScalar byte2unit(U8CPU byte) {
410 return byte / 255.0f;
411}
412
reed@google.com74ce6f02013-05-22 15:13:18 +0000413static U8CPU unit2byte(SkScalar x) {
414 if (x <= 0) {
415 return 0;
416 } else if (x >= 1) {
417 return 255;
418 } else {
419 return SkScalarRoundToInt(x * 255);
420 }
421}
422
423static SkColor lua2color(lua_State* L, int index) {
reed485557f2014-10-12 10:36:47 -0700424 return SkColorSetARGB(unit2byte(getfield_scalar_default(L, index, "a", 1)),
425 unit2byte(getfield_scalar_default(L, index, "r", 0)),
426 unit2byte(getfield_scalar_default(L, index, "g", 0)),
427 unit2byte(getfield_scalar_default(L, index, "b", 0)));
reed@google.com74ce6f02013-05-22 15:13:18 +0000428}
429
430static SkRect* lua2rect(lua_State* L, int index, SkRect* rect) {
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +0000431 rect->set(getfield_scalar_default(L, index, "left", 0),
432 getfield_scalar_default(L, index, "top", 0),
reed@google.com74ce6f02013-05-22 15:13:18 +0000433 getfield_scalar(L, index, "right"),
434 getfield_scalar(L, index, "bottom"));
435 return rect;
436}
437
reedf355df52014-10-12 12:18:40 -0700438static int lcanvas_clear(lua_State* L) {
439 get_ref<SkCanvas>(L, 1)->clear(0);
440 return 0;
441}
442
reed@google.com74ce6f02013-05-22 15:13:18 +0000443static int lcanvas_drawColor(lua_State* L) {
444 get_ref<SkCanvas>(L, 1)->drawColor(lua2color(L, 2));
445 return 0;
446}
447
reed9fbc3f32014-10-21 07:12:58 -0700448static int lcanvas_drawPaint(lua_State* L) {
449 get_ref<SkCanvas>(L, 1)->drawPaint(*get_obj<SkPaint>(L, 2));
450 return 0;
451}
452
reed@google.com74ce6f02013-05-22 15:13:18 +0000453static int lcanvas_drawRect(lua_State* L) {
454 SkRect rect;
455 get_ref<SkCanvas>(L, 1)->drawRect(*lua2rect(L, 2, &rect),
456 *get_obj<SkPaint>(L, 3));
457 return 0;
458}
459
460static int lcanvas_drawOval(lua_State* L) {
461 SkRect rect;
462 get_ref<SkCanvas>(L, 1)->drawOval(*lua2rect(L, 2, &rect),
463 *get_obj<SkPaint>(L, 3));
464 return 0;
465}
466
467static int lcanvas_drawCircle(lua_State* L) {
468 get_ref<SkCanvas>(L, 1)->drawCircle(lua2scalar(L, 2),
469 lua2scalar(L, 3),
470 lua2scalar(L, 4),
471 *get_obj<SkPaint>(L, 5));
472 return 0;
473}
474
reed485557f2014-10-12 10:36:47 -0700475static SkPaint* lua2OptionalPaint(lua_State* L, int index, SkPaint* paint) {
476 if (lua_isnumber(L, index)) {
477 paint->setAlpha(SkScalarRoundToInt(lua2scalar(L, index) * 255));
478 return paint;
reedf355df52014-10-12 12:18:40 -0700479 } else if (lua_isuserdata(L, index)) {
reed485557f2014-10-12 10:36:47 -0700480 const SkPaint* ptr = get_obj<SkPaint>(L, index);
481 if (ptr) {
482 *paint = *ptr;
483 return paint;
484 }
485 }
486 return NULL;
487}
488
mike@reedtribe.org792bbd12013-06-11 02:20:28 +0000489static int lcanvas_drawImage(lua_State* L) {
490 SkCanvas* canvas = get_ref<SkCanvas>(L, 1);
491 SkImage* image = get_ref<SkImage>(L, 2);
492 if (NULL == image) {
493 return 0;
494 }
495 SkScalar x = lua2scalar(L, 3);
496 SkScalar y = lua2scalar(L, 4);
497
498 SkPaint paint;
reed485557f2014-10-12 10:36:47 -0700499 canvas->drawImage(image, x, y, lua2OptionalPaint(L, 5, &paint));
mike@reedtribe.org792bbd12013-06-11 02:20:28 +0000500 return 0;
501}
502
reedba5fb932014-10-10 15:28:19 -0700503static int lcanvas_drawImageRect(lua_State* L) {
504 SkCanvas* canvas = get_ref<SkCanvas>(L, 1);
505 SkImage* image = get_ref<SkImage>(L, 2);
506 if (NULL == image) {
507 return 0;
508 }
509
510 SkRect srcR, dstR;
511 SkRect* srcRPtr = NULL;
512 if (!lua_isnil(L, 3)) {
513 srcRPtr = lua2rect(L, 3, &srcR);
514 }
515 lua2rect(L, 4, &dstR);
516
517 SkPaint paint;
reed485557f2014-10-12 10:36:47 -0700518 canvas->drawImageRect(image, srcRPtr, dstR, lua2OptionalPaint(L, 5, &paint));
reedba5fb932014-10-10 15:28:19 -0700519 return 0;
520}
521
reed@google.comfd345872013-05-22 20:53:42 +0000522static int lcanvas_drawPath(lua_State* L) {
523 get_ref<SkCanvas>(L, 1)->drawPath(*get_obj<SkPath>(L, 2),
524 *get_obj<SkPaint>(L, 3));
525 return 0;
526}
527
reed96affcd2014-10-13 12:38:04 -0700528// drawPicture(pic, x, y, paint)
529static int lcanvas_drawPicture(lua_State* L) {
530 SkCanvas* canvas = get_ref<SkCanvas>(L, 1);
531 SkPicture* picture = get_ref<SkPicture>(L, 2);
532 SkScalar x = lua2scalar_def(L, 3, 0);
533 SkScalar y = lua2scalar_def(L, 4, 0);
534 SkMatrix matrix, *matrixPtr = NULL;
535 if (x || y) {
536 matrix.setTranslate(x, y);
537 matrixPtr = &matrix;
538 }
539 SkPaint paint;
540 canvas->drawPicture(picture, matrixPtr, lua2OptionalPaint(L, 5, &paint));
541 return 0;
542}
543
mike@reedtribe.orge6469f12013-06-08 03:15:47 +0000544static int lcanvas_drawText(lua_State* L) {
545 if (lua_gettop(L) < 5) {
546 return 0;
547 }
548
549 if (lua_isstring(L, 2) && lua_isnumber(L, 3) && lua_isnumber(L, 4)) {
550 size_t len;
551 const char* text = lua_tolstring(L, 2, &len);
552 get_ref<SkCanvas>(L, 1)->drawText(text, len,
553 lua2scalar(L, 3), lua2scalar(L, 4),
554 *get_obj<SkPaint>(L, 5));
555 }
556 return 0;
557}
558
reed@google.com74ce6f02013-05-22 15:13:18 +0000559static int lcanvas_getSaveCount(lua_State* L) {
560 lua_pushnumber(L, get_ref<SkCanvas>(L, 1)->getSaveCount());
561 return 1;
562}
563
564static int lcanvas_getTotalMatrix(lua_State* L) {
565 SkLua(L).pushMatrix(get_ref<SkCanvas>(L, 1)->getTotalMatrix());
566 return 1;
567}
568
commit-bot@chromium.org5cc25352014-02-24 18:59:48 +0000569static int lcanvas_getClipStack(lua_State* L) {
570 SkLua(L).pushClipStack(*get_ref<SkCanvas>(L, 1)->getClipStack());
571 return 1;
572}
573
bsalomon@google.com4ebe3822014-02-26 20:22:32 +0000574int SkLua::lcanvas_getReducedClipStack(lua_State* L) {
575#if SK_SUPPORT_GPU
576 const SkCanvas* canvas = get_ref<SkCanvas>(L, 1);
577 SkISize layerSize = canvas->getTopLayerSize();
578 SkIPoint layerOrigin = canvas->getTopLayerOrigin();
579 SkIRect queryBounds = SkIRect::MakeXYWH(layerOrigin.fX, layerOrigin.fY,
580 layerSize.fWidth, layerSize.fHeight);
581
582 GrReducedClip::ElementList elements;
583 GrReducedClip::InitialState initialState;
584 int32_t genID;
585 SkIRect resultBounds;
586
587 const SkClipStack& stack = *canvas->getClipStack();
588
589 GrReducedClip::ReduceClipStack(stack,
590 queryBounds,
591 &elements,
592 &genID,
593 &initialState,
594 &resultBounds,
595 NULL);
596
597 GrReducedClip::ElementList::Iter iter(elements);
598 int i = 0;
599 lua_newtable(L);
bsalomon49f085d2014-09-05 13:34:00 -0700600 while(iter.get()) {
bsalomon@google.com4ebe3822014-02-26 20:22:32 +0000601 SkLua(L).pushClipStackElement(*iter.get());
602 iter.next();
603 lua_rawseti(L, -2, ++i);
604 }
605 // Currently this only returns the element list to lua, not the initial state or result bounds.
606 // It could return these as additional items on the lua stack.
607 return 1;
608#else
609 return 0;
610#endif
611}
612
mike@reedtribe.orgfb858242013-06-08 16:39:44 +0000613static int lcanvas_save(lua_State* L) {
614 lua_pushinteger(L, get_ref<SkCanvas>(L, 1)->save());
615 return 1;
616}
617
reed86217d82014-10-25 20:44:40 -0700618static int lcanvas_saveLayer(lua_State* L) {
619 SkPaint paint;
620 lua_pushinteger(L, get_ref<SkCanvas>(L, 1)->saveLayer(NULL, lua2OptionalPaint(L, 2, &paint)));
621 return 1;
622}
623
mike@reedtribe.orgfb858242013-06-08 16:39:44 +0000624static int lcanvas_restore(lua_State* L) {
625 get_ref<SkCanvas>(L, 1)->restore();
626 return 0;
627}
628
mike@reedtribe.org1d32cc62013-06-13 01:28:56 +0000629static int lcanvas_scale(lua_State* L) {
630 SkScalar sx = lua2scalar_def(L, 2, 1);
631 SkScalar sy = lua2scalar_def(L, 3, sx);
632 get_ref<SkCanvas>(L, 1)->scale(sx, sy);
633 return 0;
634}
635
reed@google.com3597b732013-05-22 20:12:50 +0000636static int lcanvas_translate(lua_State* L) {
mike@reedtribe.org1d32cc62013-06-13 01:28:56 +0000637 SkScalar tx = lua2scalar_def(L, 2, 0);
638 SkScalar ty = lua2scalar_def(L, 3, 0);
639 get_ref<SkCanvas>(L, 1)->translate(tx, ty);
640 return 0;
641}
642
643static int lcanvas_rotate(lua_State* L) {
644 SkScalar degrees = lua2scalar_def(L, 2, 0);
645 get_ref<SkCanvas>(L, 1)->rotate(degrees);
reed@google.com3597b732013-05-22 20:12:50 +0000646 return 0;
647}
648
reedbdc49ae2014-10-14 09:34:52 -0700649static int lcanvas_concat(lua_State* L) {
650 get_ref<SkCanvas>(L, 1)->concat(*get_obj<SkMatrix>(L, 2));
651 return 0;
652}
653
reed485557f2014-10-12 10:36:47 -0700654static int lcanvas_newSurface(lua_State* L) {
655 int width = lua2int_def(L, 2, 0);
656 int height = lua2int_def(L, 2, 0);
657 SkImageInfo info = SkImageInfo::MakeN32Premul(width, height);
658 SkSurface* surface = get_ref<SkCanvas>(L, 1)->newSurface(info);
659 if (NULL == surface) {
660 lua_pushnil(L);
661 } else {
reed9fbc3f32014-10-21 07:12:58 -0700662 push_ref(L, surface)->unref();
reed485557f2014-10-12 10:36:47 -0700663 }
664 return 1;
665}
666
reed@google.com74ce6f02013-05-22 15:13:18 +0000667static int lcanvas_gc(lua_State* L) {
668 get_ref<SkCanvas>(L, 1)->unref();
669 return 0;
670}
671
bsalomon@google.com4ebe3822014-02-26 20:22:32 +0000672const struct luaL_Reg gSkCanvas_Methods[] = {
reedf355df52014-10-12 12:18:40 -0700673 { "clear", lcanvas_clear },
reed@google.com74ce6f02013-05-22 15:13:18 +0000674 { "drawColor", lcanvas_drawColor },
reed9fbc3f32014-10-21 07:12:58 -0700675 { "drawPaint", lcanvas_drawPaint },
reed@google.com74ce6f02013-05-22 15:13:18 +0000676 { "drawRect", lcanvas_drawRect },
677 { "drawOval", lcanvas_drawOval },
678 { "drawCircle", lcanvas_drawCircle },
mike@reedtribe.org792bbd12013-06-11 02:20:28 +0000679 { "drawImage", lcanvas_drawImage },
reedba5fb932014-10-10 15:28:19 -0700680 { "drawImageRect", lcanvas_drawImageRect },
reed@google.comfd345872013-05-22 20:53:42 +0000681 { "drawPath", lcanvas_drawPath },
reed96affcd2014-10-13 12:38:04 -0700682 { "drawPicture", lcanvas_drawPicture },
mike@reedtribe.orge6469f12013-06-08 03:15:47 +0000683 { "drawText", lcanvas_drawText },
reed@google.com74ce6f02013-05-22 15:13:18 +0000684 { "getSaveCount", lcanvas_getSaveCount },
685 { "getTotalMatrix", lcanvas_getTotalMatrix },
commit-bot@chromium.org5cc25352014-02-24 18:59:48 +0000686 { "getClipStack", lcanvas_getClipStack },
bsalomon@google.com4ebe3822014-02-26 20:22:32 +0000687#if SK_SUPPORT_GPU
688 { "getReducedClipStack", SkLua::lcanvas_getReducedClipStack },
689#endif
mike@reedtribe.orgfb858242013-06-08 16:39:44 +0000690 { "save", lcanvas_save },
reed86217d82014-10-25 20:44:40 -0700691 { "saveLayer", lcanvas_saveLayer },
mike@reedtribe.orgfb858242013-06-08 16:39:44 +0000692 { "restore", lcanvas_restore },
mike@reedtribe.org1d32cc62013-06-13 01:28:56 +0000693 { "scale", lcanvas_scale },
reed@google.com3597b732013-05-22 20:12:50 +0000694 { "translate", lcanvas_translate },
mike@reedtribe.org1d32cc62013-06-13 01:28:56 +0000695 { "rotate", lcanvas_rotate },
reedbdc49ae2014-10-14 09:34:52 -0700696 { "concat", lcanvas_concat },
reed485557f2014-10-12 10:36:47 -0700697
698 { "newSurface", lcanvas_newSurface },
699
reed@google.com74ce6f02013-05-22 15:13:18 +0000700 { "__gc", lcanvas_gc },
701 { NULL, NULL }
702};
703
704///////////////////////////////////////////////////////////////////////////////
705
mike@reedtribe.orgfb858242013-06-08 16:39:44 +0000706static int ldocument_beginPage(lua_State* L) {
707 const SkRect* contentPtr = NULL;
708 push_ref(L, get_ref<SkDocument>(L, 1)->beginPage(lua2scalar(L, 2),
709 lua2scalar(L, 3),
710 contentPtr));
711 return 1;
712}
713
714static int ldocument_endPage(lua_State* L) {
715 get_ref<SkDocument>(L, 1)->endPage();
716 return 0;
717}
718
719static int ldocument_close(lua_State* L) {
720 get_ref<SkDocument>(L, 1)->close();
721 return 0;
722}
723
724static int ldocument_gc(lua_State* L) {
725 get_ref<SkDocument>(L, 1)->unref();
726 return 0;
727}
728
729static const struct luaL_Reg gSkDocument_Methods[] = {
730 { "beginPage", ldocument_beginPage },
731 { "endPage", ldocument_endPage },
732 { "close", ldocument_close },
733 { "__gc", ldocument_gc },
734 { NULL, NULL }
735};
736
737///////////////////////////////////////////////////////////////////////////////
738
reed@google.com74ce6f02013-05-22 15:13:18 +0000739static int lpaint_isAntiAlias(lua_State* L) {
740 lua_pushboolean(L, get_obj<SkPaint>(L, 1)->isAntiAlias());
741 return 1;
742}
743
744static int lpaint_setAntiAlias(lua_State* L) {
reed@google.com88c9ec92013-05-22 15:43:21 +0000745 get_obj<SkPaint>(L, 1)->setAntiAlias(lua2bool(L, 2));
reed@google.com74ce6f02013-05-22 15:13:18 +0000746 return 0;
747}
748
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +0000749static int lpaint_isDither(lua_State* L) {
750 lua_pushboolean(L, get_obj<SkPaint>(L, 1)->isDither());
751 return 1;
752}
753
754static int lpaint_isUnderlineText(lua_State* L) {
755 lua_pushboolean(L, get_obj<SkPaint>(L, 1)->isUnderlineText());
756 return 1;
757}
758
759static int lpaint_isStrikeThruText(lua_State* L) {
760 lua_pushboolean(L, get_obj<SkPaint>(L, 1)->isStrikeThruText());
761 return 1;
762}
763
764static int lpaint_isFakeBoldText(lua_State* L) {
765 lua_pushboolean(L, get_obj<SkPaint>(L, 1)->isFakeBoldText());
766 return 1;
767}
768
769static int lpaint_isLinearText(lua_State* L) {
770 lua_pushboolean(L, get_obj<SkPaint>(L, 1)->isLinearText());
771 return 1;
772}
773
774static int lpaint_isSubpixelText(lua_State* L) {
775 lua_pushboolean(L, get_obj<SkPaint>(L, 1)->isSubpixelText());
776 return 1;
777}
778
reed09a1d672014-10-11 13:13:11 -0700779static int lpaint_setSubpixelText(lua_State* L) {
780 get_obj<SkPaint>(L, 1)->setSubpixelText(lua2bool(L, 2));
781 return 1;
782}
783
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +0000784static int lpaint_isDevKernText(lua_State* L) {
785 lua_pushboolean(L, get_obj<SkPaint>(L, 1)->isDevKernText());
786 return 1;
787}
788
789static int lpaint_isLCDRenderText(lua_State* L) {
790 lua_pushboolean(L, get_obj<SkPaint>(L, 1)->isLCDRenderText());
791 return 1;
792}
793
794static int lpaint_isEmbeddedBitmapText(lua_State* L) {
795 lua_pushboolean(L, get_obj<SkPaint>(L, 1)->isEmbeddedBitmapText());
796 return 1;
797}
798
799static int lpaint_isAutohinted(lua_State* L) {
800 lua_pushboolean(L, get_obj<SkPaint>(L, 1)->isAutohinted());
801 return 1;
802}
803
804static int lpaint_isVerticalText(lua_State* L) {
805 lua_pushboolean(L, get_obj<SkPaint>(L, 1)->isVerticalText());
806 return 1;
807}
808
reed468b1812014-10-19 11:42:54 -0700809static int lpaint_getAlpha(lua_State* L) {
810 SkLua(L).pushScalar(byte2unit(get_obj<SkPaint>(L, 1)->getAlpha()));
811 return 1;
812}
813
814static int lpaint_setAlpha(lua_State* L) {
815 get_obj<SkPaint>(L, 1)->setAlpha(unit2byte(lua2scalar(L, 2)));
816 return 0;
817}
818
reed@google.com74ce6f02013-05-22 15:13:18 +0000819static int lpaint_getColor(lua_State* L) {
820 SkLua(L).pushColor(get_obj<SkPaint>(L, 1)->getColor());
821 return 1;
822}
823
824static int lpaint_setColor(lua_State* L) {
825 get_obj<SkPaint>(L, 1)->setColor(lua2color(L, 2));
826 return 0;
827}
828
reed@google.come3823fd2013-05-30 18:55:14 +0000829static int lpaint_getTextSize(lua_State* L) {
830 SkLua(L).pushScalar(get_obj<SkPaint>(L, 1)->getTextSize());
831 return 1;
832}
833
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +0000834static int lpaint_getTextScaleX(lua_State* L) {
835 SkLua(L).pushScalar(get_obj<SkPaint>(L, 1)->getTextScaleX());
836 return 1;
837}
838
839static int lpaint_getTextSkewX(lua_State* L) {
840 SkLua(L).pushScalar(get_obj<SkPaint>(L, 1)->getTextSkewX());
841 return 1;
842}
843
reed@google.come3823fd2013-05-30 18:55:14 +0000844static int lpaint_setTextSize(lua_State* L) {
845 get_obj<SkPaint>(L, 1)->setTextSize(lua2scalar(L, 2));
846 return 0;
847}
848
mike@reedtribe.orge6469f12013-06-08 03:15:47 +0000849static int lpaint_getTypeface(lua_State* L) {
850 push_ref(L, get_obj<SkPaint>(L, 1)->getTypeface());
851 return 1;
852}
853
854static int lpaint_setTypeface(lua_State* L) {
855 get_obj<SkPaint>(L, 1)->setTypeface(get_ref<SkTypeface>(L, 2));
856 return 0;
857}
858
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +0000859static int lpaint_getHinting(lua_State* L) {
860 SkLua(L).pushU32(get_obj<SkPaint>(L, 1)->getHinting());
861 return 1;
862}
863
reed@google.come3823fd2013-05-30 18:55:14 +0000864static int lpaint_getFontID(lua_State* L) {
865 SkTypeface* face = get_obj<SkPaint>(L, 1)->getTypeface();
866 SkLua(L).pushU32(SkTypeface::UniqueID(face));
867 return 1;
868}
869
mike@reedtribe.orgfb858242013-06-08 16:39:44 +0000870static const struct {
871 const char* fLabel;
872 SkPaint::Align fAlign;
873} gAlignRec[] = {
874 { "left", SkPaint::kLeft_Align },
875 { "center", SkPaint::kCenter_Align },
876 { "right", SkPaint::kRight_Align },
877};
878
879static int lpaint_getTextAlign(lua_State* L) {
880 SkPaint::Align align = get_obj<SkPaint>(L, 1)->getTextAlign();
881 for (size_t i = 0; i < SK_ARRAY_COUNT(gAlignRec); ++i) {
882 if (gAlignRec[i].fAlign == align) {
883 lua_pushstring(L, gAlignRec[i].fLabel);
884 return 1;
885 }
886 }
887 return 0;
888}
889
890static int lpaint_setTextAlign(lua_State* L) {
891 if (lua_isstring(L, 2)) {
892 size_t len;
893 const char* label = lua_tolstring(L, 2, &len);
skia.committer@gmail.com370c5342013-06-09 07:01:05 +0000894
mike@reedtribe.orgfb858242013-06-08 16:39:44 +0000895 for (size_t i = 0; i < SK_ARRAY_COUNT(gAlignRec); ++i) {
896 if (!strcmp(gAlignRec[i].fLabel, label)) {
897 get_obj<SkPaint>(L, 1)->setTextAlign(gAlignRec[i].fAlign);
898 break;
899 }
900 }
901 }
902 return 0;
903}
904
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +0000905static int lpaint_getStroke(lua_State* L) {
906 lua_pushboolean(L, SkPaint::kStroke_Style == get_obj<SkPaint>(L, 1)->getStyle());
907 return 1;
908}
909
910static int lpaint_setStroke(lua_State* L) {
911 SkPaint::Style style;
skia.committer@gmail.com370c5342013-06-09 07:01:05 +0000912
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +0000913 if (lua_toboolean(L, 2)) {
914 style = SkPaint::kStroke_Style;
915 } else {
916 style = SkPaint::kFill_Style;
917 }
918 get_obj<SkPaint>(L, 1)->setStyle(style);
919 return 0;
920}
921
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +0000922static int lpaint_getStrokeCap(lua_State* L) {
923 SkLua(L).pushU32(get_obj<SkPaint>(L, 1)->getStrokeCap());
924 return 1;
925}
926
927static int lpaint_getStrokeJoin(lua_State* L) {
928 SkLua(L).pushU32(get_obj<SkPaint>(L, 1)->getStrokeJoin());
929 return 1;
930}
931
932static int lpaint_getTextEncoding(lua_State* L) {
commit-bot@chromium.org641bcc32013-12-19 10:39:59 +0000933 SkLua(L).pushU32(get_obj<SkPaint>(L, 1)->getTextEncoding());
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +0000934 return 1;
935}
936
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +0000937static int lpaint_getStrokeWidth(lua_State* L) {
938 SkLua(L).pushScalar(get_obj<SkPaint>(L, 1)->getStrokeWidth());
939 return 1;
940}
941
942static int lpaint_setStrokeWidth(lua_State* L) {
943 get_obj<SkPaint>(L, 1)->setStrokeWidth(lua2scalar(L, 2));
944 return 0;
945}
946
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +0000947static int lpaint_getStrokeMiter(lua_State* L) {
948 SkLua(L).pushScalar(get_obj<SkPaint>(L, 1)->getStrokeMiter());
949 return 1;
950}
951
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +0000952static int lpaint_measureText(lua_State* L) {
953 if (lua_isstring(L, 2)) {
954 size_t len;
955 const char* text = lua_tolstring(L, 2, &len);
956 SkLua(L).pushScalar(get_obj<SkPaint>(L, 1)->measureText(text, len));
957 return 1;
958 }
959 return 0;
960}
961
962struct FontMetrics {
963 SkScalar fTop; //!< The greatest distance above the baseline for any glyph (will be <= 0)
964 SkScalar fAscent; //!< The recommended distance above the baseline (will be <= 0)
965 SkScalar fDescent; //!< The recommended distance below the baseline (will be >= 0)
966 SkScalar fBottom; //!< The greatest distance below the baseline for any glyph (will be >= 0)
967 SkScalar fLeading; //!< The recommended distance to add between lines of text (will be >= 0)
968 SkScalar fAvgCharWidth; //!< the average charactor width (>= 0)
969 SkScalar fXMin; //!< The minimum bounding box x value for all glyphs
970 SkScalar fXMax; //!< The maximum bounding box x value for all glyphs
971 SkScalar fXHeight; //!< the height of an 'x' in px, or 0 if no 'x' in face
972};
973
974static int lpaint_getFontMetrics(lua_State* L) {
975 SkPaint::FontMetrics fm;
976 SkScalar height = get_obj<SkPaint>(L, 1)->getFontMetrics(&fm);
skia.committer@gmail.com370c5342013-06-09 07:01:05 +0000977
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +0000978 lua_newtable(L);
979 setfield_scalar(L, "top", fm.fTop);
980 setfield_scalar(L, "ascent", fm.fAscent);
981 setfield_scalar(L, "descent", fm.fDescent);
982 setfield_scalar(L, "bottom", fm.fBottom);
983 setfield_scalar(L, "leading", fm.fLeading);
984 SkLua(L).pushScalar(height);
985 return 2;
986}
987
reed@google.com29563872013-07-10 21:23:49 +0000988static int lpaint_getEffects(lua_State* L) {
989 const SkPaint* paint = get_obj<SkPaint>(L, 1);
skia.committer@gmail.comde2e4e82013-07-11 07:01:01 +0000990
reed@google.com29563872013-07-10 21:23:49 +0000991 lua_newtable(L);
reed468b1812014-10-19 11:42:54 -0700992 setfield_bool_if(L, "looper", !!paint->getLooper());
993 setfield_bool_if(L, "pathEffect", !!paint->getPathEffect());
994 setfield_bool_if(L, "rasterizer", !!paint->getRasterizer());
995 setfield_bool_if(L, "maskFilter", !!paint->getMaskFilter());
996 setfield_bool_if(L, "shader", !!paint->getShader());
reed@google.com29563872013-07-10 21:23:49 +0000997 setfield_bool_if(L, "colorFilter", !!paint->getColorFilter());
998 setfield_bool_if(L, "imageFilter", !!paint->getImageFilter());
reed468b1812014-10-19 11:42:54 -0700999 setfield_bool_if(L, "xfermode", !!paint->getXfermode());
reed@google.com29563872013-07-10 21:23:49 +00001000 return 1;
1001}
1002
reed468b1812014-10-19 11:42:54 -07001003static int lpaint_getImageFilter(lua_State* L) {
1004 const SkPaint* paint = get_obj<SkPaint>(L, 1);
1005 SkImageFilter* imf = paint->getImageFilter();
1006 if (imf) {
1007 push_ref(L, imf);
1008 return 1;
1009 }
1010 return 0;
1011}
1012
1013static int lpaint_setImageFilter(lua_State* L) {
1014 SkPaint* paint = get_obj<SkPaint>(L, 1);
1015 paint->setImageFilter(get_ref<SkImageFilter>(L, 2));
1016 return 0;
1017}
1018
reed@google.com5fdc9832013-07-24 15:47:52 +00001019static int lpaint_getShader(lua_State* L) {
1020 const SkPaint* paint = get_obj<SkPaint>(L, 1);
1021 SkShader* shader = paint->getShader();
1022 if (shader) {
1023 push_ref(L, shader);
1024 return 1;
1025 }
1026 return 0;
1027}
1028
reed9fbc3f32014-10-21 07:12:58 -07001029static int lpaint_setShader(lua_State* L) {
1030 SkPaint* paint = get_obj<SkPaint>(L, 1);
1031 paint->setShader(get_ref<SkShader>(L, 2));
1032 return 0;
1033}
1034
commit-bot@chromium.org1301bf32014-03-17 23:09:47 +00001035static int lpaint_getPathEffect(lua_State* L) {
1036 const SkPaint* paint = get_obj<SkPaint>(L, 1);
1037 SkPathEffect* pe = paint->getPathEffect();
1038 if (pe) {
1039 push_ref(L, pe);
1040 return 1;
1041 }
1042 return 0;
1043}
1044
reed@google.com74ce6f02013-05-22 15:13:18 +00001045static int lpaint_gc(lua_State* L) {
1046 get_obj<SkPaint>(L, 1)->~SkPaint();
1047 return 0;
1048}
1049
1050static const struct luaL_Reg gSkPaint_Methods[] = {
1051 { "isAntiAlias", lpaint_isAntiAlias },
1052 { "setAntiAlias", lpaint_setAntiAlias },
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +00001053 { "isDither", lpaint_isDither },
1054 { "isUnderlineText", lpaint_isUnderlineText },
1055 { "isStrikeThruText", lpaint_isStrikeThruText },
1056 { "isFakeBoldText", lpaint_isFakeBoldText },
1057 { "isLinearText", lpaint_isLinearText },
1058 { "isSubpixelText", lpaint_isSubpixelText },
reed09a1d672014-10-11 13:13:11 -07001059 { "setSubpixelText", lpaint_setSubpixelText },
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +00001060 { "isDevKernText", lpaint_isDevKernText },
1061 { "isLCDRenderText", lpaint_isLCDRenderText },
1062 { "isEmbeddedBitmapText", lpaint_isEmbeddedBitmapText },
1063 { "isAutohinted", lpaint_isAutohinted },
1064 { "isVerticalText", lpaint_isVerticalText },
reed468b1812014-10-19 11:42:54 -07001065 { "getAlpha", lpaint_getAlpha },
1066 { "setAlpha", lpaint_setAlpha },
reed@google.com74ce6f02013-05-22 15:13:18 +00001067 { "getColor", lpaint_getColor },
1068 { "setColor", lpaint_setColor },
reed@google.come3823fd2013-05-30 18:55:14 +00001069 { "getTextSize", lpaint_getTextSize },
1070 { "setTextSize", lpaint_setTextSize },
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +00001071 { "getTextScaleX", lpaint_getTextScaleX },
1072 { "getTextSkewX", lpaint_getTextSkewX },
mike@reedtribe.orge6469f12013-06-08 03:15:47 +00001073 { "getTypeface", lpaint_getTypeface },
1074 { "setTypeface", lpaint_setTypeface },
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +00001075 { "getHinting", lpaint_getHinting },
reed@google.come3823fd2013-05-30 18:55:14 +00001076 { "getFontID", lpaint_getFontID },
mike@reedtribe.orgfb858242013-06-08 16:39:44 +00001077 { "getTextAlign", lpaint_getTextAlign },
1078 { "setTextAlign", lpaint_setTextAlign },
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +00001079 { "getStroke", lpaint_getStroke },
1080 { "setStroke", lpaint_setStroke },
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +00001081 { "getStrokeCap", lpaint_getStrokeCap },
1082 { "getStrokeJoin", lpaint_getStrokeJoin },
1083 { "getTextEncoding", lpaint_getTextEncoding },
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +00001084 { "getStrokeWidth", lpaint_getStrokeWidth },
1085 { "setStrokeWidth", lpaint_setStrokeWidth },
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +00001086 { "getStrokeMiter", lpaint_getStrokeMiter },
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +00001087 { "measureText", lpaint_measureText },
1088 { "getFontMetrics", lpaint_getFontMetrics },
reed@google.com29563872013-07-10 21:23:49 +00001089 { "getEffects", lpaint_getEffects },
reed468b1812014-10-19 11:42:54 -07001090 { "getImageFilter", lpaint_getImageFilter },
1091 { "setImageFilter", lpaint_setImageFilter },
reed@google.com5fdc9832013-07-24 15:47:52 +00001092 { "getShader", lpaint_getShader },
reed9fbc3f32014-10-21 07:12:58 -07001093 { "setShader", lpaint_setShader },
commit-bot@chromium.org1301bf32014-03-17 23:09:47 +00001094 { "getPathEffect", lpaint_getPathEffect },
reed@google.com74ce6f02013-05-22 15:13:18 +00001095 { "__gc", lpaint_gc },
1096 { NULL, NULL }
1097};
1098
1099///////////////////////////////////////////////////////////////////////////////
1100
reed@google.com5fdc9832013-07-24 15:47:52 +00001101static const char* mode2string(SkShader::TileMode mode) {
1102 static const char* gNames[] = { "clamp", "repeat", "mirror" };
1103 SkASSERT((unsigned)mode < SK_ARRAY_COUNT(gNames));
1104 return gNames[mode];
1105}
1106
1107static const char* gradtype2string(SkShader::GradientType t) {
1108 static const char* gNames[] = {
1109 "none", "color", "linear", "radial", "radial2", "sweep", "conical"
1110 };
1111 SkASSERT((unsigned)t < SK_ARRAY_COUNT(gNames));
1112 return gNames[t];
1113}
1114
1115static int lshader_isOpaque(lua_State* L) {
1116 SkShader* shader = get_ref<SkShader>(L, 1);
1117 return shader && shader->isOpaque();
1118}
1119
1120static int lshader_asABitmap(lua_State* L) {
1121 SkShader* shader = get_ref<SkShader>(L, 1);
1122 if (shader) {
1123 SkBitmap bm;
1124 SkMatrix matrix;
1125 SkShader::TileMode modes[2];
1126 switch (shader->asABitmap(&bm, &matrix, modes)) {
1127 case SkShader::kDefault_BitmapType:
1128 lua_newtable(L);
1129 setfield_number(L, "genID", bm.pixelRef() ? bm.pixelRef()->getGenerationID() : 0);
1130 setfield_number(L, "width", bm.width());
1131 setfield_number(L, "height", bm.height());
1132 setfield_string(L, "tileX", mode2string(modes[0]));
1133 setfield_string(L, "tileY", mode2string(modes[1]));
1134 return 1;
1135 default:
1136 break;
1137 }
1138 }
1139 return 0;
1140}
1141
1142static int lshader_asAGradient(lua_State* L) {
1143 SkShader* shader = get_ref<SkShader>(L, 1);
1144 if (shader) {
1145 SkShader::GradientInfo info;
1146 sk_bzero(&info, sizeof(info));
commit-bot@chromium.org74f96b92013-08-01 17:32:56 +00001147
1148 SkColor colors[3]; // hacked in for extracting info on 3 color case.
skia.committer@gmail.combd74add2013-08-02 07:00:59 +00001149 SkScalar pos[3];
commit-bot@chromium.org74f96b92013-08-01 17:32:56 +00001150
1151 info.fColorCount = 3;
1152 info.fColors = &colors[0];
1153 info.fColorOffsets = &pos[0];
skia.committer@gmail.combd74add2013-08-02 07:00:59 +00001154
reed@google.com5fdc9832013-07-24 15:47:52 +00001155 SkShader::GradientType t = shader->asAGradient(&info);
commit-bot@chromium.org74f96b92013-08-01 17:32:56 +00001156
reed@google.com5fdc9832013-07-24 15:47:52 +00001157 if (SkShader::kNone_GradientType != t) {
1158 lua_newtable(L);
1159 setfield_string(L, "type", gradtype2string(t));
1160 setfield_number(L, "colorCount", info.fColorCount);
1161 setfield_string(L, "tile", mode2string(info.fTileMode));
commit-bot@chromium.org74f96b92013-08-01 17:32:56 +00001162
1163 if (info.fColorCount == 3){
1164 setfield_number(L, "midPos", pos[1]);
1165 }
skia.committer@gmail.combd74add2013-08-02 07:00:59 +00001166
reed@google.com5fdc9832013-07-24 15:47:52 +00001167 return 1;
1168 }
1169 }
1170 return 0;
1171}
1172
1173static int lshader_gc(lua_State* L) {
1174 get_ref<SkShader>(L, 1)->unref();
1175 return 0;
1176}
1177
1178static const struct luaL_Reg gSkShader_Methods[] = {
1179 { "isOpaque", lshader_isOpaque },
1180 { "asABitmap", lshader_asABitmap },
1181 { "asAGradient", lshader_asAGradient },
1182 { "__gc", lshader_gc },
1183 { NULL, NULL }
1184};
1185
1186///////////////////////////////////////////////////////////////////////////////
1187
commit-bot@chromium.org4d803a92014-05-14 16:03:14 +00001188static int lpatheffect_asADash(lua_State* L) {
1189 SkPathEffect* pe = get_ref<SkPathEffect>(L, 1);
1190 if (pe) {
1191 SkPathEffect::DashInfo info;
1192 SkPathEffect::DashType dashType = pe->asADash(&info);
1193 if (SkPathEffect::kDash_DashType == dashType) {
1194 SkAutoTArray<SkScalar> intervals(info.fCount);
1195 info.fIntervals = intervals.get();
1196 pe->asADash(&info);
1197 SkLua(L).pushDash(info);
1198 return 1;
1199 }
1200 }
1201 return 0;
1202}
1203
commit-bot@chromium.org1301bf32014-03-17 23:09:47 +00001204static int lpatheffect_gc(lua_State* L) {
1205 get_ref<SkPathEffect>(L, 1)->unref();
1206 return 0;
1207}
1208
1209static const struct luaL_Reg gSkPathEffect_Methods[] = {
commit-bot@chromium.org4d803a92014-05-14 16:03:14 +00001210 { "asADash", lpatheffect_asADash },
commit-bot@chromium.org1301bf32014-03-17 23:09:47 +00001211 { "__gc", lpatheffect_gc },
1212 { NULL, NULL }
1213};
1214
1215///////////////////////////////////////////////////////////////////////////////
1216
reed468b1812014-10-19 11:42:54 -07001217static int lpimagefilter_gc(lua_State* L) {
1218 get_ref<SkImageFilter>(L, 1)->unref();
1219 return 0;
1220}
1221
1222static const struct luaL_Reg gSkImageFilter_Methods[] = {
1223 { "__gc", lpimagefilter_gc },
1224 { NULL, NULL }
1225};
1226
1227///////////////////////////////////////////////////////////////////////////////
1228
humper@google.com2815c192013-07-10 22:42:30 +00001229static int lmatrix_getType(lua_State* L) {
1230 SkMatrix::TypeMask mask = get_obj<SkMatrix>(L, 1)->getType();
skia.committer@gmail.comde2e4e82013-07-11 07:01:01 +00001231
humper@google.com2815c192013-07-10 22:42:30 +00001232 lua_newtable(L);
1233 setfield_boolean(L, "translate", SkToBool(mask & SkMatrix::kTranslate_Mask));
1234 setfield_boolean(L, "scale", SkToBool(mask & SkMatrix::kScale_Mask));
1235 setfield_boolean(L, "affine", SkToBool(mask & SkMatrix::kAffine_Mask));
1236 setfield_boolean(L, "perspective", SkToBool(mask & SkMatrix::kPerspective_Mask));
1237 return 1;
1238}
1239
humper@google.com0f48ee02013-07-26 15:23:43 +00001240static int lmatrix_getScaleX(lua_State* L) {
1241 lua_pushnumber(L, get_obj<SkMatrix>(L,1)->getScaleX());
1242 return 1;
1243}
1244
1245static int lmatrix_getScaleY(lua_State* L) {
1246 lua_pushnumber(L, get_obj<SkMatrix>(L,1)->getScaleY());
1247 return 1;
1248}
1249
1250static int lmatrix_getTranslateX(lua_State* L) {
1251 lua_pushnumber(L, get_obj<SkMatrix>(L,1)->getTranslateX());
1252 return 1;
1253}
1254
1255static int lmatrix_getTranslateY(lua_State* L) {
1256 lua_pushnumber(L, get_obj<SkMatrix>(L,1)->getTranslateY());
1257 return 1;
1258}
1259
reedbdc49ae2014-10-14 09:34:52 -07001260static int lmatrix_setRectToRect(lua_State* L) {
1261 SkMatrix* matrix = get_obj<SkMatrix>(L, 1);
1262 SkRect srcR, dstR;
1263 lua2rect(L, 2, &srcR);
1264 lua2rect(L, 3, &dstR);
1265 const char* scaleToFitStr = lua_tostring(L, 4);
1266 SkMatrix::ScaleToFit scaleToFit = SkMatrix::kFill_ScaleToFit;
1267
1268 if (scaleToFitStr) {
1269 const struct {
1270 const char* fName;
1271 SkMatrix::ScaleToFit fScaleToFit;
1272 } rec[] = {
1273 { "fill", SkMatrix::kFill_ScaleToFit },
1274 { "start", SkMatrix::kStart_ScaleToFit },
1275 { "center", SkMatrix::kCenter_ScaleToFit },
1276 { "end", SkMatrix::kEnd_ScaleToFit },
1277 };
1278
1279 for (size_t i = 0; i < SK_ARRAY_COUNT(rec); ++i) {
1280 if (strcmp(rec[i].fName, scaleToFitStr) == 0) {
1281 scaleToFit = rec[i].fScaleToFit;
1282 break;
1283 }
1284 }
1285 }
1286
1287 matrix->setRectToRect(srcR, dstR, scaleToFit);
1288 return 0;
1289}
1290
humper@google.com2815c192013-07-10 22:42:30 +00001291static const struct luaL_Reg gSkMatrix_Methods[] = {
1292 { "getType", lmatrix_getType },
humper@google.com0f48ee02013-07-26 15:23:43 +00001293 { "getScaleX", lmatrix_getScaleX },
1294 { "getScaleY", lmatrix_getScaleY },
1295 { "getTranslateX", lmatrix_getTranslateX },
1296 { "getTranslateY", lmatrix_getTranslateY },
reedbdc49ae2014-10-14 09:34:52 -07001297 { "setRectToRect", lmatrix_setRectToRect },
humper@google.com2815c192013-07-10 22:42:30 +00001298 { NULL, NULL }
1299};
1300
1301///////////////////////////////////////////////////////////////////////////////
1302
reed@google.com74ce6f02013-05-22 15:13:18 +00001303static int lpath_getBounds(lua_State* L) {
1304 SkLua(L).pushRect(get_obj<SkPath>(L, 1)->getBounds());
1305 return 1;
1306}
1307
commit-bot@chromium.orgd85b8222014-02-24 21:59:29 +00001308static const char* fill_type_to_str(SkPath::FillType fill) {
1309 switch (fill) {
1310 case SkPath::kEvenOdd_FillType:
1311 return "even-odd";
1312 case SkPath::kWinding_FillType:
1313 return "winding";
1314 case SkPath::kInverseEvenOdd_FillType:
1315 return "inverse-even-odd";
1316 case SkPath::kInverseWinding_FillType:
1317 return "inverse-winding";
1318 }
1319 return "unknown";
1320}
1321
1322static int lpath_getFillType(lua_State* L) {
1323 SkPath::FillType fill = get_obj<SkPath>(L, 1)->getFillType();
1324 SkLua(L).pushString(fill_type_to_str(fill));
1325 return 1;
1326}
1327
1328static SkString segment_masks_to_str(uint32_t segmentMasks) {
1329 SkString result;
1330 bool first = true;
1331 if (SkPath::kLine_SegmentMask & segmentMasks) {
1332 result.append("line");
1333 first = false;
1334 SkDEBUGCODE(segmentMasks &= ~SkPath::kLine_SegmentMask;)
1335 }
1336 if (SkPath::kQuad_SegmentMask & segmentMasks) {
1337 if (!first) {
1338 result.append(" ");
1339 }
1340 result.append("quad");
1341 first = false;
1342 SkDEBUGCODE(segmentMasks &= ~SkPath::kQuad_SegmentMask;)
1343 }
1344 if (SkPath::kConic_SegmentMask & segmentMasks) {
1345 if (!first) {
1346 result.append(" ");
1347 }
1348 result.append("conic");
1349 first = false;
1350 SkDEBUGCODE(segmentMasks &= ~SkPath::kConic_SegmentMask;)
1351 }
1352 if (SkPath::kCubic_SegmentMask & segmentMasks) {
1353 if (!first) {
1354 result.append(" ");
1355 }
1356 result.append("cubic");
1357 SkDEBUGCODE(segmentMasks &= ~SkPath::kCubic_SegmentMask;)
1358 }
1359 SkASSERT(0 == segmentMasks);
1360 return result;
1361}
1362
krajcevski95498ed2014-08-18 08:02:33 -07001363static int lpath_getSegmentTypes(lua_State* L) {
commit-bot@chromium.orgd85b8222014-02-24 21:59:29 +00001364 uint32_t segMasks = get_obj<SkPath>(L, 1)->getSegmentMasks();
1365 SkLua(L).pushString(segment_masks_to_str(segMasks));
1366 return 1;
1367}
1368
1369static int lpath_isConvex(lua_State* L) {
1370 bool isConvex = SkPath::kConvex_Convexity == get_obj<SkPath>(L, 1)->getConvexity();
1371 SkLua(L).pushBool(isConvex);
1372 return 1;
1373}
1374
reed@google.com74ce6f02013-05-22 15:13:18 +00001375static int lpath_isEmpty(lua_State* L) {
1376 lua_pushboolean(L, get_obj<SkPath>(L, 1)->isEmpty());
1377 return 1;
1378}
1379
1380static int lpath_isRect(lua_State* L) {
1381 SkRect r;
1382 bool pred = get_obj<SkPath>(L, 1)->isRect(&r);
1383 int ret_count = 1;
1384 lua_pushboolean(L, pred);
1385 if (pred) {
1386 SkLua(L).pushRect(r);
1387 ret_count += 1;
1388 }
1389 return ret_count;
1390}
1391
1392static const char* dir2string(SkPath::Direction dir) {
1393 static const char* gStr[] = {
1394 "unknown", "cw", "ccw"
1395 };
1396 SkASSERT((unsigned)dir < SK_ARRAY_COUNT(gStr));
1397 return gStr[dir];
1398}
1399
1400static int lpath_isNestedRects(lua_State* L) {
1401 SkRect rects[2];
1402 SkPath::Direction dirs[2];
1403 bool pred = get_obj<SkPath>(L, 1)->isNestedRects(rects, dirs);
1404 int ret_count = 1;
1405 lua_pushboolean(L, pred);
1406 if (pred) {
1407 SkLua lua(L);
1408 lua.pushRect(rects[0]);
1409 lua.pushRect(rects[1]);
1410 lua_pushstring(L, dir2string(dirs[0]));
1411 lua_pushstring(L, dir2string(dirs[0]));
1412 ret_count += 4;
1413 }
1414 return ret_count;
1415}
1416
commit-bot@chromium.orgc5302082014-02-26 21:38:47 +00001417static int lpath_countPoints(lua_State* L) {
1418 lua_pushinteger(L, get_obj<SkPath>(L, 1)->countPoints());
1419 return 1;
1420}
1421
reed@google.com74ce6f02013-05-22 15:13:18 +00001422static int lpath_reset(lua_State* L) {
1423 get_obj<SkPath>(L, 1)->reset();
1424 return 0;
1425}
1426
1427static int lpath_moveTo(lua_State* L) {
1428 get_obj<SkPath>(L, 1)->moveTo(lua2scalar(L, 2), lua2scalar(L, 3));
1429 return 0;
1430}
1431
1432static int lpath_lineTo(lua_State* L) {
1433 get_obj<SkPath>(L, 1)->lineTo(lua2scalar(L, 2), lua2scalar(L, 3));
1434 return 0;
1435}
1436
1437static int lpath_quadTo(lua_State* L) {
1438 get_obj<SkPath>(L, 1)->quadTo(lua2scalar(L, 2), lua2scalar(L, 3),
1439 lua2scalar(L, 4), lua2scalar(L, 5));
1440 return 0;
1441}
1442
1443static int lpath_cubicTo(lua_State* L) {
1444 get_obj<SkPath>(L, 1)->cubicTo(lua2scalar(L, 2), lua2scalar(L, 3),
1445 lua2scalar(L, 4), lua2scalar(L, 5),
1446 lua2scalar(L, 6), lua2scalar(L, 7));
1447 return 0;
1448}
1449
1450static int lpath_close(lua_State* L) {
1451 get_obj<SkPath>(L, 1)->close();
1452 return 0;
1453}
1454
1455static int lpath_gc(lua_State* L) {
1456 get_obj<SkPath>(L, 1)->~SkPath();
1457 return 0;
1458}
1459
1460static const struct luaL_Reg gSkPath_Methods[] = {
1461 { "getBounds", lpath_getBounds },
commit-bot@chromium.orgd85b8222014-02-24 21:59:29 +00001462 { "getFillType", lpath_getFillType },
krajcevski95498ed2014-08-18 08:02:33 -07001463 { "getSegmentTypes", lpath_getSegmentTypes },
commit-bot@chromium.orgd85b8222014-02-24 21:59:29 +00001464 { "isConvex", lpath_isConvex },
reed@google.com74ce6f02013-05-22 15:13:18 +00001465 { "isEmpty", lpath_isEmpty },
1466 { "isRect", lpath_isRect },
1467 { "isNestedRects", lpath_isNestedRects },
commit-bot@chromium.orgc5302082014-02-26 21:38:47 +00001468 { "countPoints", lpath_countPoints },
reed@google.com74ce6f02013-05-22 15:13:18 +00001469 { "reset", lpath_reset },
1470 { "moveTo", lpath_moveTo },
1471 { "lineTo", lpath_lineTo },
1472 { "quadTo", lpath_quadTo },
1473 { "cubicTo", lpath_cubicTo },
1474 { "close", lpath_close },
1475 { "__gc", lpath_gc },
1476 { NULL, NULL }
1477};
1478
1479///////////////////////////////////////////////////////////////////////////////
1480
1481static const char* rrect_type(const SkRRect& rr) {
1482 switch (rr.getType()) {
1483 case SkRRect::kUnknown_Type: return "unknown";
1484 case SkRRect::kEmpty_Type: return "empty";
1485 case SkRRect::kRect_Type: return "rect";
1486 case SkRRect::kOval_Type: return "oval";
1487 case SkRRect::kSimple_Type: return "simple";
commit-bot@chromium.orgf338d7c2014-03-17 21:17:30 +00001488 case SkRRect::kNinePatch_Type: return "nine-patch";
reed@google.com74ce6f02013-05-22 15:13:18 +00001489 case SkRRect::kComplex_Type: return "complex";
1490 }
mtklein@google.com330313a2013-08-22 15:37:26 +00001491 SkDEBUGFAIL("never get here");
reed@google.com74ce6f02013-05-22 15:13:18 +00001492 return "";
1493}
1494
1495static int lrrect_rect(lua_State* L) {
1496 SkLua(L).pushRect(get_obj<SkRRect>(L, 1)->rect());
1497 return 1;
1498}
1499
1500static int lrrect_type(lua_State* L) {
1501 lua_pushstring(L, rrect_type(*get_obj<SkRRect>(L, 1)));
1502 return 1;
1503}
1504
1505static int lrrect_radii(lua_State* L) {
reed@google.com7fa2a652014-01-27 13:42:58 +00001506 int corner = SkToInt(lua_tointeger(L, 2));
reed@google.com74ce6f02013-05-22 15:13:18 +00001507 SkVector v;
1508 if (corner < 0 || corner > 3) {
1509 SkDebugf("bad corner index %d", corner);
1510 v.set(0, 0);
1511 } else {
1512 v = get_obj<SkRRect>(L, 1)->radii((SkRRect::Corner)corner);
1513 }
1514 lua_pushnumber(L, v.fX);
1515 lua_pushnumber(L, v.fY);
1516 return 2;
1517}
1518
1519static int lrrect_gc(lua_State* L) {
1520 get_obj<SkRRect>(L, 1)->~SkRRect();
1521 return 0;
1522}
1523
1524static const struct luaL_Reg gSkRRect_Methods[] = {
1525 { "rect", lrrect_rect },
1526 { "type", lrrect_type },
1527 { "radii", lrrect_radii },
1528 { "__gc", lrrect_gc },
1529 { NULL, NULL }
1530};
1531
1532///////////////////////////////////////////////////////////////////////////////
1533
mike@reedtribe.org792bbd12013-06-11 02:20:28 +00001534static int limage_width(lua_State* L) {
1535 lua_pushinteger(L, get_ref<SkImage>(L, 1)->width());
1536 return 1;
1537}
1538
1539static int limage_height(lua_State* L) {
1540 lua_pushinteger(L, get_ref<SkImage>(L, 1)->height());
1541 return 1;
1542}
1543
1544static int limage_gc(lua_State* L) {
1545 get_ref<SkImage>(L, 1)->unref();
1546 return 0;
1547}
1548
1549static const struct luaL_Reg gSkImage_Methods[] = {
1550 { "width", limage_width },
1551 { "height", limage_height },
1552 { "__gc", limage_gc },
1553 { NULL, NULL }
1554};
1555
1556///////////////////////////////////////////////////////////////////////////////
1557
reed485557f2014-10-12 10:36:47 -07001558static int lsurface_width(lua_State* L) {
1559 lua_pushinteger(L, get_ref<SkSurface>(L, 1)->width());
1560 return 1;
1561}
1562
1563static int lsurface_height(lua_State* L) {
1564 lua_pushinteger(L, get_ref<SkSurface>(L, 1)->height());
1565 return 1;
1566}
1567
1568static int lsurface_getCanvas(lua_State* L) {
1569 SkCanvas* canvas = get_ref<SkSurface>(L, 1)->getCanvas();
1570 if (NULL == canvas) {
1571 lua_pushnil(L);
1572 } else {
1573 push_ref(L, canvas);
1574 // note: we don't unref canvas, since getCanvas did not ref it.
1575 // warning: this is weird: now Lua owns a ref on this canvas, but what if they let
1576 // the real owner (the surface) go away, but still hold onto the canvas?
1577 // *really* we want to sort of ref the surface again, but have the native object
1578 // know that it is supposed to be treated as a canvas...
1579 }
1580 return 1;
1581}
1582
1583static int lsurface_newImageSnapshot(lua_State* L) {
1584 SkImage* image = get_ref<SkSurface>(L, 1)->newImageSnapshot();
1585 if (NULL == image) {
1586 lua_pushnil(L);
1587 } else {
reed9fbc3f32014-10-21 07:12:58 -07001588 push_ref(L, image)->unref();
reed485557f2014-10-12 10:36:47 -07001589 }
1590 return 1;
1591}
1592
1593static int lsurface_newSurface(lua_State* L) {
1594 int width = lua2int_def(L, 2, 0);
reed96affcd2014-10-13 12:38:04 -07001595 int height = lua2int_def(L, 3, 0);
reed485557f2014-10-12 10:36:47 -07001596 SkImageInfo info = SkImageInfo::MakeN32Premul(width, height);
1597 SkSurface* surface = get_ref<SkSurface>(L, 1)->newSurface(info);
1598 if (NULL == surface) {
1599 lua_pushnil(L);
1600 } else {
reed9fbc3f32014-10-21 07:12:58 -07001601 push_ref(L, surface)->unref();
reed485557f2014-10-12 10:36:47 -07001602 }
1603 return 1;
1604}
1605
1606static int lsurface_gc(lua_State* L) {
1607 get_ref<SkSurface>(L, 1)->unref();
1608 return 0;
1609}
1610
1611static const struct luaL_Reg gSkSurface_Methods[] = {
1612 { "width", lsurface_width },
1613 { "height", lsurface_height },
1614 { "getCanvas", lsurface_getCanvas },
1615 { "newImageSnapshot", lsurface_newImageSnapshot },
1616 { "newSurface", lsurface_newSurface },
1617 { "__gc", lsurface_gc },
1618 { NULL, NULL }
1619};
1620
1621///////////////////////////////////////////////////////////////////////////////
1622
reed96affcd2014-10-13 12:38:04 -07001623static int lpicturerecorder_beginRecording(lua_State* L) {
1624 const SkScalar w = lua2scalar_def(L, 2, -1);
1625 const SkScalar h = lua2scalar_def(L, 3, -1);
1626 if (w <= 0 || h <= 0) {
1627 lua_pushnil(L);
1628 return 1;
1629 }
1630
1631 SkCanvas* canvas = get_obj<SkPictureRecorder>(L, 1)->beginRecording(w, h);
1632 if (NULL == canvas) {
1633 lua_pushnil(L);
1634 return 1;
1635 }
1636
1637 push_ref(L, canvas);
1638 return 1;
1639}
1640
1641static int lpicturerecorder_getCanvas(lua_State* L) {
1642 SkCanvas* canvas = get_obj<SkPictureRecorder>(L, 1)->getRecordingCanvas();
1643 if (NULL == canvas) {
1644 lua_pushnil(L);
1645 return 1;
1646 }
1647 push_ref(L, canvas);
1648 return 1;
1649}
1650
1651static int lpicturerecorder_endRecording(lua_State* L) {
1652 SkPicture* pic = get_obj<SkPictureRecorder>(L, 1)->endRecording();
1653 if (NULL == pic) {
1654 lua_pushnil(L);
1655 return 1;
1656 }
reed9fbc3f32014-10-21 07:12:58 -07001657 push_ref(L, pic)->unref();
reed96affcd2014-10-13 12:38:04 -07001658 return 1;
1659}
1660
1661static int lpicturerecorder_gc(lua_State* L) {
1662 get_obj<SkPictureRecorder>(L, 1)->~SkPictureRecorder();
1663 return 0;
1664}
1665
1666static const struct luaL_Reg gSkPictureRecorder_Methods[] = {
1667 { "beginRecording", lpicturerecorder_beginRecording },
1668 { "getCanvas", lpicturerecorder_getCanvas },
1669 { "endRecording", lpicturerecorder_endRecording },
1670 { "__gc", lpicturerecorder_gc },
1671 { NULL, NULL }
1672};
1673
1674///////////////////////////////////////////////////////////////////////////////
1675
1676static int lpicture_width(lua_State* L) {
1677 lua_pushnumber(L, get_ref<SkPicture>(L, 1)->cullRect().width());
1678 return 1;
1679}
1680
1681static int lpicture_height(lua_State* L) {
1682 lua_pushnumber(L, get_ref<SkPicture>(L, 1)->cullRect().height());
1683 return 1;
1684}
1685
1686static int lpicture_gc(lua_State* L) {
1687 get_ref<SkPicture>(L, 1)->unref();
1688 return 0;
1689}
1690
1691static const struct luaL_Reg gSkPicture_Methods[] = {
1692 { "width", lpicture_width },
1693 { "height", lpicture_height },
1694 { "__gc", lpicture_gc },
1695 { NULL, NULL }
1696};
1697
1698///////////////////////////////////////////////////////////////////////////////
1699
mike@reedtribe.orge6469f12013-06-08 03:15:47 +00001700static int ltypeface_gc(lua_State* L) {
commit-bot@chromium.org77887af2013-12-17 14:28:19 +00001701 SkSafeUnref(get_ref<SkTypeface>(L, 1));
mike@reedtribe.orge6469f12013-06-08 03:15:47 +00001702 return 0;
1703}
1704
1705static const struct luaL_Reg gSkTypeface_Methods[] = {
1706 { "__gc", ltypeface_gc },
1707 { NULL, NULL }
1708};
1709
1710///////////////////////////////////////////////////////////////////////////////
1711
reed@google.com74ce6f02013-05-22 15:13:18 +00001712class AutoCallLua {
1713public:
1714 AutoCallLua(lua_State* L, const char func[], const char verb[]) : fL(L) {
1715 lua_getglobal(L, func);
1716 if (!lua_isfunction(L, -1)) {
1717 int t = lua_type(L, -1);
1718 SkDebugf("--- expected function %d\n", t);
1719 }
skia.committer@gmail.com2d816ad2013-05-23 07:01:22 +00001720
reed@google.com74ce6f02013-05-22 15:13:18 +00001721 lua_newtable(L);
1722 setfield_string(L, "verb", verb);
1723 }
skia.committer@gmail.com2d816ad2013-05-23 07:01:22 +00001724
reed@google.com74ce6f02013-05-22 15:13:18 +00001725 ~AutoCallLua() {
1726 if (lua_pcall(fL, 1, 0, 0) != LUA_OK) {
1727 SkDebugf("lua err: %s\n", lua_tostring(fL, -1));
1728 }
1729 lua_settop(fL, -1);
1730 }
skia.committer@gmail.com2d816ad2013-05-23 07:01:22 +00001731
reed@google.com74ce6f02013-05-22 15:13:18 +00001732private:
1733 lua_State* fL;
1734};
1735
1736#define AUTO_LUA(verb) AutoCallLua acl(fL, fFunc.c_str(), verb)
1737
1738///////////////////////////////////////////////////////////////////////////////
1739
mike@reedtribe.orgfb858242013-06-08 16:39:44 +00001740static int lsk_newDocumentPDF(lua_State* L) {
1741 const char* file = NULL;
1742 if (lua_gettop(L) > 0 && lua_isstring(L, 1)) {
1743 file = lua_tolstring(L, 1, NULL);
1744 }
1745
1746 SkDocument* doc = SkDocument::CreatePDF(file);
1747 if (NULL == doc) {
1748 // do I need to push a nil on the stack and return 1?
1749 return 0;
1750 } else {
reed9fbc3f32014-10-21 07:12:58 -07001751 push_ref(L, doc)->unref();
mike@reedtribe.orgfb858242013-06-08 16:39:44 +00001752 return 1;
1753 }
1754}
1755
reed468b1812014-10-19 11:42:54 -07001756static int lsk_newBlurImageFilter(lua_State* L) {
1757 SkScalar sigmaX = lua2scalar_def(L, 1, 0);
1758 SkScalar sigmaY = lua2scalar_def(L, 2, 0);
1759 SkImageFilter* imf = SkBlurImageFilter::Create(sigmaX, sigmaY);
1760 if (NULL == imf) {
1761 lua_pushnil(L);
1762 } else {
reed9fbc3f32014-10-21 07:12:58 -07001763 push_ref(L, imf)->unref();
1764 }
1765 return 1;
1766}
1767
1768static int lsk_newLinearGradient(lua_State* L) {
1769 SkScalar x0 = lua2scalar_def(L, 1, 0);
1770 SkScalar y0 = lua2scalar_def(L, 2, 0);
1771 SkColor c0 = lua2color(L, 3);
1772 SkScalar x1 = lua2scalar_def(L, 4, 0);
1773 SkScalar y1 = lua2scalar_def(L, 5, 0);
1774 SkColor c1 = lua2color(L, 6);
1775
1776 SkPoint pts[] = { { x0, y0 }, { x1, y1 } };
1777 SkColor colors[] = { c0, c1 };
1778 SkShader* s = SkGradientShader::CreateLinear(pts, colors, NULL, 2, SkShader::kClamp_TileMode);
1779 if (NULL == s) {
1780 lua_pushnil(L);
1781 } else {
1782 push_ref(L, s)->unref();
reed468b1812014-10-19 11:42:54 -07001783 }
1784 return 1;
1785}
1786
reedbdc49ae2014-10-14 09:34:52 -07001787static int lsk_newMatrix(lua_State* L) {
1788 push_new<SkMatrix>(L)->reset();
1789 return 1;
1790}
1791
reed@google.com3597b732013-05-22 20:12:50 +00001792static int lsk_newPaint(lua_State* L) {
1793 push_new<SkPaint>(L);
1794 return 1;
1795}
1796
1797static int lsk_newPath(lua_State* L) {
1798 push_new<SkPath>(L);
1799 return 1;
1800}
1801
reed96affcd2014-10-13 12:38:04 -07001802static int lsk_newPictureRecorder(lua_State* L) {
1803 push_new<SkPictureRecorder>(L);
1804 return 1;
1805}
1806
reed@google.com3597b732013-05-22 20:12:50 +00001807static int lsk_newRRect(lua_State* L) {
reedbdc49ae2014-10-14 09:34:52 -07001808 push_new<SkRRect>(L)->setEmpty();
reed@google.com3597b732013-05-22 20:12:50 +00001809 return 1;
1810}
1811
mike@reedtribe.orge6469f12013-06-08 03:15:47 +00001812static int lsk_newTypeface(lua_State* L) {
1813 const char* name = NULL;
1814 int style = SkTypeface::kNormal;
skia.committer@gmail.com63193672013-06-08 07:01:13 +00001815
mike@reedtribe.orge6469f12013-06-08 03:15:47 +00001816 int count = lua_gettop(L);
1817 if (count > 0 && lua_isstring(L, 1)) {
1818 name = lua_tolstring(L, 1, NULL);
1819 if (count > 1 && lua_isnumber(L, 2)) {
1820 style = lua_tointegerx(L, 2, NULL) & SkTypeface::kBoldItalic;
1821 }
1822 }
1823
1824 SkTypeface* face = SkTypeface::CreateFromName(name,
1825 (SkTypeface::Style)style);
1826// SkDebugf("---- name <%s> style=%d, face=%p ref=%d\n", name, style, face, face->getRefCnt());
1827 if (NULL == face) {
1828 face = SkTypeface::RefDefault();
1829 }
reed9fbc3f32014-10-21 07:12:58 -07001830 push_ref(L, face)->unref();
mike@reedtribe.orge6469f12013-06-08 03:15:47 +00001831 return 1;
1832}
reed@google.com3597b732013-05-22 20:12:50 +00001833
reed485557f2014-10-12 10:36:47 -07001834static int lsk_newRasterSurface(lua_State* L) {
1835 int width = lua2int_def(L, 2, 0);
1836 int height = lua2int_def(L, 2, 0);
1837 SkImageInfo info = SkImageInfo::MakeN32Premul(width, height);
1838 SkSurface* surface = SkSurface::NewRaster(info);
1839 if (NULL == surface) {
1840 lua_pushnil(L);
1841 } else {
reed9fbc3f32014-10-21 07:12:58 -07001842 push_ref(L, surface)->unref();
reed485557f2014-10-12 10:36:47 -07001843 }
1844 return 1;
1845}
1846
mike@reedtribe.org792bbd12013-06-11 02:20:28 +00001847static int lsk_loadImage(lua_State* L) {
1848 if (lua_gettop(L) > 0 && lua_isstring(L, 1)) {
1849 const char* name = lua_tolstring(L, 1, NULL);
1850 SkAutoDataUnref data(SkData::NewFromFileName(name));
1851 if (data.get()) {
piotaixr4bcc2022014-09-17 14:33:30 -07001852 SkImage* image = SkImage::NewFromGenerator(
1853 SkDecodingImageGenerator::Create(data, SkDecodingImageGenerator::Options()));
1854
mike@reedtribe.org792bbd12013-06-11 02:20:28 +00001855 if (image) {
reed9fbc3f32014-10-21 07:12:58 -07001856 push_ref(L, image)->unref();
mike@reedtribe.org792bbd12013-06-11 02:20:28 +00001857 return 1;
1858 }
1859 }
1860 }
1861 return 0;
1862}
1863
reed@google.com3597b732013-05-22 20:12:50 +00001864static void register_Sk(lua_State* L) {
1865 lua_newtable(L);
1866 lua_pushvalue(L, -1);
1867 lua_setglobal(L, "Sk");
1868 // the Sk table is still on top
1869
mike@reedtribe.orgfb858242013-06-08 16:39:44 +00001870 setfield_function(L, "newDocumentPDF", lsk_newDocumentPDF);
mike@reedtribe.org792bbd12013-06-11 02:20:28 +00001871 setfield_function(L, "loadImage", lsk_loadImage);
reed468b1812014-10-19 11:42:54 -07001872 setfield_function(L, "newBlurImageFilter", lsk_newBlurImageFilter);
reed9fbc3f32014-10-21 07:12:58 -07001873 setfield_function(L, "newLinearGradient", lsk_newLinearGradient);
reedbdc49ae2014-10-14 09:34:52 -07001874 setfield_function(L, "newMatrix", lsk_newMatrix);
reed@google.com3597b732013-05-22 20:12:50 +00001875 setfield_function(L, "newPaint", lsk_newPaint);
1876 setfield_function(L, "newPath", lsk_newPath);
reed96affcd2014-10-13 12:38:04 -07001877 setfield_function(L, "newPictureRecorder", lsk_newPictureRecorder);
reed@google.com3597b732013-05-22 20:12:50 +00001878 setfield_function(L, "newRRect", lsk_newRRect);
reed485557f2014-10-12 10:36:47 -07001879 setfield_function(L, "newRasterSurface", lsk_newRasterSurface);
mike@reedtribe.orge6469f12013-06-08 03:15:47 +00001880 setfield_function(L, "newTypeface", lsk_newTypeface);
reed@google.com3597b732013-05-22 20:12:50 +00001881 lua_pop(L, 1); // pop off the Sk table
1882}
1883
reed@google.com74ce6f02013-05-22 15:13:18 +00001884#define REG_CLASS(L, C) \
1885 do { \
reed@google.com3597b732013-05-22 20:12:50 +00001886 luaL_newmetatable(L, get_mtname<C>()); \
reed@google.com74ce6f02013-05-22 15:13:18 +00001887 lua_pushvalue(L, -1); \
1888 lua_setfield(L, -2, "__index"); \
1889 luaL_setfuncs(L, g##C##_Methods, 0); \
1890 lua_pop(L, 1); /* pop off the meta-table */ \
1891 } while (0)
1892
1893void SkLua::Load(lua_State* L) {
reed@google.com3597b732013-05-22 20:12:50 +00001894 register_Sk(L);
reed@google.com74ce6f02013-05-22 15:13:18 +00001895 REG_CLASS(L, SkCanvas);
mike@reedtribe.orgfb858242013-06-08 16:39:44 +00001896 REG_CLASS(L, SkDocument);
mike@reedtribe.org792bbd12013-06-11 02:20:28 +00001897 REG_CLASS(L, SkImage);
reed468b1812014-10-19 11:42:54 -07001898 REG_CLASS(L, SkImageFilter);
reed@google.com74ce6f02013-05-22 15:13:18 +00001899 REG_CLASS(L, SkPaint);
commit-bot@chromium.org1301bf32014-03-17 23:09:47 +00001900 REG_CLASS(L, SkPath);
1901 REG_CLASS(L, SkPathEffect);
reed96affcd2014-10-13 12:38:04 -07001902 REG_CLASS(L, SkPicture);
1903 REG_CLASS(L, SkPictureRecorder);
reed@google.com74ce6f02013-05-22 15:13:18 +00001904 REG_CLASS(L, SkRRect);
reed@google.com5fdc9832013-07-24 15:47:52 +00001905 REG_CLASS(L, SkShader);
reed485557f2014-10-12 10:36:47 -07001906 REG_CLASS(L, SkSurface);
mike@reedtribe.orge6469f12013-06-08 03:15:47 +00001907 REG_CLASS(L, SkTypeface);
humper@google.com2815c192013-07-10 22:42:30 +00001908 REG_CLASS(L, SkMatrix);
reed@google.com74ce6f02013-05-22 15:13:18 +00001909}
zachr@google.com28c27c82013-06-20 17:15:05 +00001910
reed@google.com7bce9982013-06-20 17:40:21 +00001911extern "C" int luaopen_skia(lua_State* L);
zachr@google.com28c27c82013-06-20 17:15:05 +00001912extern "C" int luaopen_skia(lua_State* L) {
1913 SkLua::Load(L);
1914 return 0;
1915}