blob: 117cb8af838aea6349ad13151ad7e97cd049292e [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"
reed22a517f2015-12-04 20:45:59 -080016#include "SkColorFilter.h"
mike@reedtribe.org792bbd12013-06-11 02:20:28 +000017#include "SkData.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"
robertphillips233bab92016-01-21 09:05:32 -080031#include "SkXfermode.h"
reed@google.com74ce6f02013-05-22 15:13:18 +000032
33extern "C" {
reed@google.com3597b732013-05-22 20:12:50 +000034 #include "lua.h"
35 #include "lualib.h"
36 #include "lauxlib.h"
reed@google.com74ce6f02013-05-22 15:13:18 +000037}
38
reed@google.comfd345872013-05-22 20:53:42 +000039// return the metatable name for a given class
reed@google.com3597b732013-05-22 20:12:50 +000040template <typename T> const char* get_mtname();
reed@google.comfd345872013-05-22 20:53:42 +000041#define DEF_MTNAME(T) \
42 template <> const char* get_mtname<T>() { \
43 return #T "_LuaMetaTableName"; \
44 }
45
46DEF_MTNAME(SkCanvas)
reed22a517f2015-12-04 20:45:59 -080047DEF_MTNAME(SkColorFilter)
mike@reedtribe.orgfb858242013-06-08 16:39:44 +000048DEF_MTNAME(SkDocument)
mike@reedtribe.org792bbd12013-06-11 02:20:28 +000049DEF_MTNAME(SkImage)
reed468b1812014-10-19 11:42:54 -070050DEF_MTNAME(SkImageFilter)
reed@google.comfd345872013-05-22 20:53:42 +000051DEF_MTNAME(SkMatrix)
52DEF_MTNAME(SkRRect)
53DEF_MTNAME(SkPath)
54DEF_MTNAME(SkPaint)
commit-bot@chromium.org1301bf32014-03-17 23:09:47 +000055DEF_MTNAME(SkPathEffect)
reed96affcd2014-10-13 12:38:04 -070056DEF_MTNAME(SkPicture)
57DEF_MTNAME(SkPictureRecorder)
reed@google.com5fdc9832013-07-24 15:47:52 +000058DEF_MTNAME(SkShader)
reed485557f2014-10-12 10:36:47 -070059DEF_MTNAME(SkSurface)
fmalitab7425172014-08-26 07:56:44 -070060DEF_MTNAME(SkTextBlob)
mike@reedtribe.orge6469f12013-06-08 03:15:47 +000061DEF_MTNAME(SkTypeface)
robertphillips233bab92016-01-21 09:05:32 -080062DEF_MTNAME(SkXfermode)
reed@google.com74ce6f02013-05-22 15:13:18 +000063
reed@google.com3597b732013-05-22 20:12:50 +000064template <typename T> T* push_new(lua_State* L) {
65 T* addr = (T*)lua_newuserdata(L, sizeof(T));
66 new (addr) T;
67 luaL_getmetatable(L, get_mtname<T>());
68 lua_setmetatable(L, -2);
69 return addr;
70}
reed@google.com74ce6f02013-05-22 15:13:18 +000071
72template <typename T> void push_obj(lua_State* L, const T& obj) {
73 new (lua_newuserdata(L, sizeof(T))) T(obj);
reed@google.com3597b732013-05-22 20:12:50 +000074 luaL_getmetatable(L, get_mtname<T>());
reed@google.com74ce6f02013-05-22 15:13:18 +000075 lua_setmetatable(L, -2);
76}
77
reed9fbc3f32014-10-21 07:12:58 -070078template <typename T> T* push_ref(lua_State* L, T* ref) {
commit-bot@chromium.org77887af2013-12-17 14:28:19 +000079 *(T**)lua_newuserdata(L, sizeof(T*)) = SkSafeRef(ref);
reed@google.com3597b732013-05-22 20:12:50 +000080 luaL_getmetatable(L, get_mtname<T>());
reed@google.com74ce6f02013-05-22 15:13:18 +000081 lua_setmetatable(L, -2);
reed9fbc3f32014-10-21 07:12:58 -070082 return ref;
reed@google.com74ce6f02013-05-22 15:13:18 +000083}
84
reed2ad1aa62016-03-09 09:50:50 -080085template <typename T> void push_ref(lua_State* L, sk_sp<T> sp) {
86 *(T**)lua_newuserdata(L, sizeof(T*)) = sp.release();
87 luaL_getmetatable(L, get_mtname<T>());
88 lua_setmetatable(L, -2);
89}
90
reed@google.com74ce6f02013-05-22 15:13:18 +000091template <typename T> T* get_ref(lua_State* L, int index) {
reed@google.com3597b732013-05-22 20:12:50 +000092 return *(T**)luaL_checkudata(L, index, get_mtname<T>());
reed@google.com74ce6f02013-05-22 15:13:18 +000093}
94
95template <typename T> T* get_obj(lua_State* L, int index) {
reed@google.com3597b732013-05-22 20:12:50 +000096 return (T*)luaL_checkudata(L, index, get_mtname<T>());
reed@google.com74ce6f02013-05-22 15:13:18 +000097}
98
reed@google.com88c9ec92013-05-22 15:43:21 +000099static bool lua2bool(lua_State* L, int index) {
100 return !!lua_toboolean(L, index);
101}
102
reed@google.com74ce6f02013-05-22 15:13:18 +0000103///////////////////////////////////////////////////////////////////////////////
104
reed@google.com3597b732013-05-22 20:12:50 +0000105SkLua::SkLua(const char termCode[]) : fTermCode(termCode), fWeOwnL(true) {
106 fL = luaL_newstate();
107 luaL_openlibs(fL);
108 SkLua::Load(fL);
109}
110
111SkLua::SkLua(lua_State* L) : fL(L), fWeOwnL(false) {}
112
113SkLua::~SkLua() {
114 if (fWeOwnL) {
115 if (fTermCode.size() > 0) {
116 lua_getglobal(fL, fTermCode.c_str());
117 if (lua_pcall(fL, 0, 0, 0) != LUA_OK) {
118 SkDebugf("lua err: %s\n", lua_tostring(fL, -1));
119 }
120 }
121 lua_close(fL);
122 }
123}
124
125bool SkLua::runCode(const char code[]) {
126 int err = luaL_loadstring(fL, code) || lua_pcall(fL, 0, 0, 0);
127 if (err) {
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +0000128 SkDebugf("--- lua failed: %s\n", lua_tostring(fL, -1));
reed@google.com3597b732013-05-22 20:12:50 +0000129 return false;
130 }
131 return true;
132}
133
134bool SkLua::runCode(const void* code, size_t size) {
135 SkString str((const char*)code, size);
136 return this->runCode(str.c_str());
137}
138
139///////////////////////////////////////////////////////////////////////////////
140
141#define CHECK_SETFIELD(key) do if (key) lua_setfield(fL, -2, key); while (0)
142
reed@google.com29563872013-07-10 21:23:49 +0000143static void setfield_bool_if(lua_State* L, const char key[], bool pred) {
144 if (pred) {
145 lua_pushboolean(L, true);
146 lua_setfield(L, -2, key);
147 }
148}
149
reed@google.com74ce6f02013-05-22 15:13:18 +0000150static void setfield_string(lua_State* L, const char key[], const char value[]) {
151 lua_pushstring(L, value);
152 lua_setfield(L, -2, key);
153}
154
155static void setfield_number(lua_State* L, const char key[], double value) {
156 lua_pushnumber(L, value);
157 lua_setfield(L, -2, key);
158}
159
humper@google.com2815c192013-07-10 22:42:30 +0000160static void setfield_boolean(lua_State* L, const char key[], bool value) {
161 lua_pushboolean(L, value);
162 lua_setfield(L, -2, key);
163}
164
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +0000165static void setfield_scalar(lua_State* L, const char key[], SkScalar value) {
166 setfield_number(L, key, SkScalarToLua(value));
167}
168
reed@google.com3597b732013-05-22 20:12:50 +0000169static void setfield_function(lua_State* L,
170 const char key[], lua_CFunction value) {
171 lua_pushcfunction(L, value);
172 lua_setfield(L, -2, key);
reed@google.com74ce6f02013-05-22 15:13:18 +0000173}
174
reed7a72c672014-11-07 10:23:55 -0800175static int lua2int_def(lua_State* L, int index, int defaultValue) {
176 if (lua_isnumber(L, index)) {
177 return (int)lua_tonumber(L, index);
178 } else {
179 return defaultValue;
180 }
181}
182
183static SkScalar lua2scalar(lua_State* L, int index) {
184 SkASSERT(lua_isnumber(L, index));
185 return SkLuaToScalar(lua_tonumber(L, index));
186}
187
188static SkScalar lua2scalar_def(lua_State* L, int index, SkScalar defaultValue) {
189 if (lua_isnumber(L, index)) {
190 return SkLuaToScalar(lua_tonumber(L, index));
191 } else {
192 return defaultValue;
193 }
194}
195
196static SkScalar getarray_scalar(lua_State* L, int stackIndex, int arrayIndex) {
197 SkASSERT(lua_istable(L, stackIndex));
198 lua_rawgeti(L, stackIndex, arrayIndex);
mtklein8aacf202014-12-18 13:29:54 -0800199
reed7a72c672014-11-07 10:23:55 -0800200 SkScalar value = lua2scalar(L, -1);
201 lua_pop(L, 1);
202 return value;
203}
204
205static void getarray_scalars(lua_State* L, int stackIndex, SkScalar dst[], int count) {
206 for (int i = 0; i < count; ++i) {
207 dst[i] = getarray_scalar(L, stackIndex, i + 1);
208 }
209}
210
211static void getarray_points(lua_State* L, int stackIndex, SkPoint pts[], int count) {
212 getarray_scalars(L, stackIndex, &pts[0].fX, count * 2);
213}
214
reed@google.come3823fd2013-05-30 18:55:14 +0000215static void setarray_number(lua_State* L, int index, double value) {
216 lua_pushnumber(L, value);
217 lua_rawseti(L, -2, index);
218}
219
commit-bot@chromium.org4d803a92014-05-14 16:03:14 +0000220static void setarray_scalar(lua_State* L, int index, SkScalar value) {
221 setarray_number(L, index, SkScalarToLua(value));
222}
223
hstern0b401ce2016-08-02 09:17:59 -0700224static void setarray_string(lua_State* L, int index, const char str[]) {
225 lua_pushstring(L, str);
226 lua_rawseti(L, -2, index);
227}
228
reed@google.com74ce6f02013-05-22 15:13:18 +0000229void SkLua::pushBool(bool value, const char key[]) {
230 lua_pushboolean(fL, value);
231 CHECK_SETFIELD(key);
232}
233
234void SkLua::pushString(const char str[], const char key[]) {
235 lua_pushstring(fL, str);
236 CHECK_SETFIELD(key);
237}
238
reed@google.come3823fd2013-05-30 18:55:14 +0000239void SkLua::pushString(const char str[], size_t length, const char key[]) {
240 // TODO: how to do this w/o making a copy?
241 SkString s(str, length);
242 lua_pushstring(fL, s.c_str());
243 CHECK_SETFIELD(key);
244}
245
reed@google.com74ce6f02013-05-22 15:13:18 +0000246void SkLua::pushString(const SkString& str, const char key[]) {
247 lua_pushstring(fL, str.c_str());
248 CHECK_SETFIELD(key);
249}
250
251void SkLua::pushColor(SkColor color, const char key[]) {
252 lua_newtable(fL);
253 setfield_number(fL, "a", SkColorGetA(color) / 255.0);
254 setfield_number(fL, "r", SkColorGetR(color) / 255.0);
255 setfield_number(fL, "g", SkColorGetG(color) / 255.0);
256 setfield_number(fL, "b", SkColorGetB(color) / 255.0);
257 CHECK_SETFIELD(key);
258}
259
reed@google.come3823fd2013-05-30 18:55:14 +0000260void SkLua::pushU32(uint32_t value, const char key[]) {
261 lua_pushnumber(fL, (double)value);
262 CHECK_SETFIELD(key);
263}
264
reed@google.com74ce6f02013-05-22 15:13:18 +0000265void SkLua::pushScalar(SkScalar value, const char key[]) {
266 lua_pushnumber(fL, SkScalarToLua(value));
267 CHECK_SETFIELD(key);
268}
269
reed@google.come3823fd2013-05-30 18:55:14 +0000270void SkLua::pushArrayU16(const uint16_t array[], int count, const char key[]) {
271 lua_newtable(fL);
272 for (int i = 0; i < count; ++i) {
273 // make it base-1 to match lua convention
274 setarray_number(fL, i + 1, (double)array[i]);
275 }
276 CHECK_SETFIELD(key);
277}
278
commit-bot@chromium.org1301bf32014-03-17 23:09:47 +0000279void SkLua::pushArrayPoint(const SkPoint array[], int count, const char key[]) {
280 lua_newtable(fL);
281 for (int i = 0; i < count; ++i) {
282 // make it base-1 to match lua convention
283 lua_newtable(fL);
284 this->pushScalar(array[i].fX, "x");
285 this->pushScalar(array[i].fY, "y");
286 lua_rawseti(fL, -2, i + 1);
287 }
288 CHECK_SETFIELD(key);
289}
290
commit-bot@chromium.org4d803a92014-05-14 16:03:14 +0000291void SkLua::pushArrayScalar(const SkScalar array[], int count, const char key[]) {
292 lua_newtable(fL);
293 for (int i = 0; i < count; ++i) {
294 // make it base-1 to match lua convention
295 setarray_scalar(fL, i + 1, array[i]);
296 }
297 CHECK_SETFIELD(key);
298}
299
reed@google.com74ce6f02013-05-22 15:13:18 +0000300void SkLua::pushRect(const SkRect& r, const char key[]) {
301 lua_newtable(fL);
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +0000302 setfield_scalar(fL, "left", r.fLeft);
303 setfield_scalar(fL, "top", r.fTop);
304 setfield_scalar(fL, "right", r.fRight);
305 setfield_scalar(fL, "bottom", r.fBottom);
reed@google.com74ce6f02013-05-22 15:13:18 +0000306 CHECK_SETFIELD(key);
307}
308
309void SkLua::pushRRect(const SkRRect& rr, const char key[]) {
310 push_obj(fL, rr);
311 CHECK_SETFIELD(key);
312}
313
commit-bot@chromium.org4d803a92014-05-14 16:03:14 +0000314void SkLua::pushDash(const SkPathEffect::DashInfo& info, const char key[]) {
315 lua_newtable(fL);
316 setfield_scalar(fL, "phase", info.fPhase);
317 this->pushArrayScalar(info.fIntervals, info.fCount, "intervals");
318 CHECK_SETFIELD(key);
319}
320
321
reed@google.com74ce6f02013-05-22 15:13:18 +0000322void SkLua::pushMatrix(const SkMatrix& matrix, const char key[]) {
323 push_obj(fL, matrix);
324 CHECK_SETFIELD(key);
325}
326
327void SkLua::pushPaint(const SkPaint& paint, const char key[]) {
328 push_obj(fL, paint);
329 CHECK_SETFIELD(key);
330}
331
332void SkLua::pushPath(const SkPath& path, const char key[]) {
333 push_obj(fL, path);
334 CHECK_SETFIELD(key);
335}
336
337void SkLua::pushCanvas(SkCanvas* canvas, const char key[]) {
338 push_ref(fL, canvas);
339 CHECK_SETFIELD(key);
340}
341
fmalitab7425172014-08-26 07:56:44 -0700342void SkLua::pushTextBlob(const SkTextBlob* blob, const char key[]) {
343 push_ref(fL, const_cast<SkTextBlob*>(blob));
344 CHECK_SETFIELD(key);
345}
346
commit-bot@chromium.org5cc25352014-02-24 18:59:48 +0000347static const char* element_type(SkClipStack::Element::Type type) {
348 switch (type) {
349 case SkClipStack::Element::kEmpty_Type:
350 return "empty";
351 case SkClipStack::Element::kRect_Type:
352 return "rect";
353 case SkClipStack::Element::kRRect_Type:
354 return "rrect";
355 case SkClipStack::Element::kPath_Type:
356 return "path";
357 }
358 return "unknown";
359}
360
361static const char* region_op(SkRegion::Op op) {
362 switch (op) {
363 case SkRegion::kDifference_Op:
364 return "difference";
365 case SkRegion::kIntersect_Op:
366 return "intersect";
367 case SkRegion::kUnion_Op:
368 return "union";
369 case SkRegion::kXOR_Op:
370 return "xor";
371 case SkRegion::kReverseDifference_Op:
372 return "reverse-difference";
373 case SkRegion::kReplace_Op:
374 return "replace";
375 }
376 return "unknown";
377}
378
379void SkLua::pushClipStack(const SkClipStack& stack, const char* key) {
380 lua_newtable(fL);
381 SkClipStack::B2TIter iter(stack);
382 const SkClipStack::Element* element;
383 int i = 0;
bsalomon49f085d2014-09-05 13:34:00 -0700384 while ((element = iter.next())) {
bsalomon@google.com4ebe3822014-02-26 20:22:32 +0000385 this->pushClipStackElement(*element);
commit-bot@chromium.org5cc25352014-02-24 18:59:48 +0000386 lua_rawseti(fL, -2, ++i);
387 }
388 CHECK_SETFIELD(key);
389}
390
bsalomon@google.com4ebe3822014-02-26 20:22:32 +0000391void SkLua::pushClipStackElement(const SkClipStack::Element& element, const char* key) {
392 lua_newtable(fL);
393 SkClipStack::Element::Type type = element.getType();
394 this->pushString(element_type(type), "type");
395 switch (type) {
396 case SkClipStack::Element::kEmpty_Type:
397 break;
398 case SkClipStack::Element::kRect_Type:
399 this->pushRect(element.getRect(), "rect");
400 break;
401 case SkClipStack::Element::kRRect_Type:
402 this->pushRRect(element.getRRect(), "rrect");
403 break;
404 case SkClipStack::Element::kPath_Type:
405 this->pushPath(element.getPath(), "path");
406 break;
407 }
408 this->pushString(region_op(element.getOp()), "op");
409 this->pushBool(element.isAA(), "aa");
410 CHECK_SETFIELD(key);
411}
412
413
reed@google.com74ce6f02013-05-22 15:13:18 +0000414///////////////////////////////////////////////////////////////////////////////
415///////////////////////////////////////////////////////////////////////////////
416
reed@google.com74ce6f02013-05-22 15:13:18 +0000417static SkScalar getfield_scalar(lua_State* L, int index, const char key[]) {
418 SkASSERT(lua_istable(L, index));
419 lua_pushstring(L, key);
420 lua_gettable(L, index);
mtklein8aacf202014-12-18 13:29:54 -0800421
reed@google.com74ce6f02013-05-22 15:13:18 +0000422 SkScalar value = lua2scalar(L, -1);
423 lua_pop(L, 1);
424 return value;
425}
426
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +0000427static SkScalar getfield_scalar_default(lua_State* L, int index, const char key[], SkScalar def) {
428 SkASSERT(lua_istable(L, index));
429 lua_pushstring(L, key);
430 lua_gettable(L, index);
skia.committer@gmail.com370c5342013-06-09 07:01:05 +0000431
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +0000432 SkScalar value;
433 if (lua_isnil(L, -1)) {
434 value = def;
435 } else {
436 value = lua2scalar(L, -1);
437 }
438 lua_pop(L, 1);
439 return value;
440}
441
reed468b1812014-10-19 11:42:54 -0700442static SkScalar byte2unit(U8CPU byte) {
443 return byte / 255.0f;
444}
445
reed@google.com74ce6f02013-05-22 15:13:18 +0000446static U8CPU unit2byte(SkScalar x) {
447 if (x <= 0) {
448 return 0;
449 } else if (x >= 1) {
450 return 255;
451 } else {
452 return SkScalarRoundToInt(x * 255);
453 }
454}
455
456static SkColor lua2color(lua_State* L, int index) {
reed485557f2014-10-12 10:36:47 -0700457 return SkColorSetARGB(unit2byte(getfield_scalar_default(L, index, "a", 1)),
458 unit2byte(getfield_scalar_default(L, index, "r", 0)),
459 unit2byte(getfield_scalar_default(L, index, "g", 0)),
460 unit2byte(getfield_scalar_default(L, index, "b", 0)));
reed@google.com74ce6f02013-05-22 15:13:18 +0000461}
462
463static SkRect* lua2rect(lua_State* L, int index, SkRect* rect) {
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +0000464 rect->set(getfield_scalar_default(L, index, "left", 0),
465 getfield_scalar_default(L, index, "top", 0),
reed@google.com74ce6f02013-05-22 15:13:18 +0000466 getfield_scalar(L, index, "right"),
467 getfield_scalar(L, index, "bottom"));
468 return rect;
469}
470
reedf355df52014-10-12 12:18:40 -0700471static int lcanvas_clear(lua_State* L) {
472 get_ref<SkCanvas>(L, 1)->clear(0);
473 return 0;
474}
475
reed@google.com74ce6f02013-05-22 15:13:18 +0000476static int lcanvas_drawColor(lua_State* L) {
477 get_ref<SkCanvas>(L, 1)->drawColor(lua2color(L, 2));
478 return 0;
479}
480
reed9fbc3f32014-10-21 07:12:58 -0700481static int lcanvas_drawPaint(lua_State* L) {
482 get_ref<SkCanvas>(L, 1)->drawPaint(*get_obj<SkPaint>(L, 2));
483 return 0;
484}
485
reed@google.com74ce6f02013-05-22 15:13:18 +0000486static int lcanvas_drawRect(lua_State* L) {
487 SkRect rect;
reed7a72c672014-11-07 10:23:55 -0800488 lua2rect(L, 2, &rect);
489 const SkPaint* paint = get_obj<SkPaint>(L, 3);
490 get_ref<SkCanvas>(L, 1)->drawRect(rect, *paint);
reed@google.com74ce6f02013-05-22 15:13:18 +0000491 return 0;
492}
493
494static int lcanvas_drawOval(lua_State* L) {
495 SkRect rect;
496 get_ref<SkCanvas>(L, 1)->drawOval(*lua2rect(L, 2, &rect),
497 *get_obj<SkPaint>(L, 3));
498 return 0;
499}
500
501static int lcanvas_drawCircle(lua_State* L) {
502 get_ref<SkCanvas>(L, 1)->drawCircle(lua2scalar(L, 2),
503 lua2scalar(L, 3),
504 lua2scalar(L, 4),
505 *get_obj<SkPaint>(L, 5));
506 return 0;
507}
508
reed485557f2014-10-12 10:36:47 -0700509static SkPaint* lua2OptionalPaint(lua_State* L, int index, SkPaint* paint) {
510 if (lua_isnumber(L, index)) {
511 paint->setAlpha(SkScalarRoundToInt(lua2scalar(L, index) * 255));
512 return paint;
reedf355df52014-10-12 12:18:40 -0700513 } else if (lua_isuserdata(L, index)) {
reed485557f2014-10-12 10:36:47 -0700514 const SkPaint* ptr = get_obj<SkPaint>(L, index);
515 if (ptr) {
516 *paint = *ptr;
517 return paint;
518 }
519 }
halcanary96fcdcc2015-08-27 07:41:13 -0700520 return nullptr;
reed485557f2014-10-12 10:36:47 -0700521}
522
mike@reedtribe.org792bbd12013-06-11 02:20:28 +0000523static int lcanvas_drawImage(lua_State* L) {
524 SkCanvas* canvas = get_ref<SkCanvas>(L, 1);
525 SkImage* image = get_ref<SkImage>(L, 2);
halcanary96fcdcc2015-08-27 07:41:13 -0700526 if (nullptr == image) {
mike@reedtribe.org792bbd12013-06-11 02:20:28 +0000527 return 0;
528 }
529 SkScalar x = lua2scalar(L, 3);
530 SkScalar y = lua2scalar(L, 4);
531
532 SkPaint paint;
reed485557f2014-10-12 10:36:47 -0700533 canvas->drawImage(image, x, y, lua2OptionalPaint(L, 5, &paint));
mike@reedtribe.org792bbd12013-06-11 02:20:28 +0000534 return 0;
535}
536
reedba5fb932014-10-10 15:28:19 -0700537static int lcanvas_drawImageRect(lua_State* L) {
538 SkCanvas* canvas = get_ref<SkCanvas>(L, 1);
539 SkImage* image = get_ref<SkImage>(L, 2);
halcanary96fcdcc2015-08-27 07:41:13 -0700540 if (nullptr == image) {
reedba5fb932014-10-10 15:28:19 -0700541 return 0;
542 }
543
544 SkRect srcR, dstR;
halcanary96fcdcc2015-08-27 07:41:13 -0700545 SkRect* srcRPtr = nullptr;
reedba5fb932014-10-10 15:28:19 -0700546 if (!lua_isnil(L, 3)) {
547 srcRPtr = lua2rect(L, 3, &srcR);
548 }
549 lua2rect(L, 4, &dstR);
mtklein8aacf202014-12-18 13:29:54 -0800550
reedba5fb932014-10-10 15:28:19 -0700551 SkPaint paint;
reede47829b2015-08-06 10:02:53 -0700552 canvas->legacy_drawImageRect(image, srcRPtr, dstR, lua2OptionalPaint(L, 5, &paint));
reedba5fb932014-10-10 15:28:19 -0700553 return 0;
554}
555
reed7a72c672014-11-07 10:23:55 -0800556static int lcanvas_drawPatch(lua_State* L) {
557 SkPoint cubics[12];
558 SkColor colorStorage[4];
559 SkPoint texStorage[4];
560
halcanary96fcdcc2015-08-27 07:41:13 -0700561 const SkColor* colors = nullptr;
562 const SkPoint* texs = nullptr;
reed7a72c672014-11-07 10:23:55 -0800563
564 getarray_points(L, 2, cubics, 12);
565
566 colorStorage[0] = SK_ColorRED;
567 colorStorage[1] = SK_ColorGREEN;
568 colorStorage[2] = SK_ColorBLUE;
569 colorStorage[3] = SK_ColorGRAY;
570
571 if (lua_isnil(L, 4)) {
572 colors = colorStorage;
573 } else {
574 getarray_points(L, 4, texStorage, 4);
575 texs = texStorage;
576 }
577
halcanary96fcdcc2015-08-27 07:41:13 -0700578 get_ref<SkCanvas>(L, 1)->drawPatch(cubics, colors, texs, nullptr, *get_obj<SkPaint>(L, 5));
reed7a72c672014-11-07 10:23:55 -0800579 return 0;
580}
581
reed@google.comfd345872013-05-22 20:53:42 +0000582static int lcanvas_drawPath(lua_State* L) {
583 get_ref<SkCanvas>(L, 1)->drawPath(*get_obj<SkPath>(L, 2),
584 *get_obj<SkPaint>(L, 3));
585 return 0;
586}
587
reed96affcd2014-10-13 12:38:04 -0700588// drawPicture(pic, x, y, paint)
589static int lcanvas_drawPicture(lua_State* L) {
590 SkCanvas* canvas = get_ref<SkCanvas>(L, 1);
591 SkPicture* picture = get_ref<SkPicture>(L, 2);
592 SkScalar x = lua2scalar_def(L, 3, 0);
593 SkScalar y = lua2scalar_def(L, 4, 0);
halcanary96fcdcc2015-08-27 07:41:13 -0700594 SkMatrix matrix, *matrixPtr = nullptr;
reed96affcd2014-10-13 12:38:04 -0700595 if (x || y) {
596 matrix.setTranslate(x, y);
597 matrixPtr = &matrix;
598 }
599 SkPaint paint;
600 canvas->drawPicture(picture, matrixPtr, lua2OptionalPaint(L, 5, &paint));
601 return 0;
602}
603
mike@reedtribe.orge6469f12013-06-08 03:15:47 +0000604static int lcanvas_drawText(lua_State* L) {
605 if (lua_gettop(L) < 5) {
606 return 0;
607 }
608
609 if (lua_isstring(L, 2) && lua_isnumber(L, 3) && lua_isnumber(L, 4)) {
610 size_t len;
611 const char* text = lua_tolstring(L, 2, &len);
612 get_ref<SkCanvas>(L, 1)->drawText(text, len,
613 lua2scalar(L, 3), lua2scalar(L, 4),
614 *get_obj<SkPaint>(L, 5));
615 }
616 return 0;
617}
618
reed1b6ab442014-11-03 19:55:41 -0800619static int lcanvas_drawTextBlob(lua_State* L) {
620 const SkTextBlob* blob = get_ref<SkTextBlob>(L, 2);
621 SkScalar x = lua2scalar(L, 3);
622 SkScalar y = lua2scalar(L, 4);
623 const SkPaint& paint = *get_obj<SkPaint>(L, 5);
624 get_ref<SkCanvas>(L, 1)->drawTextBlob(blob, x, y, paint);
625 return 0;
626}
627
reed@google.com74ce6f02013-05-22 15:13:18 +0000628static int lcanvas_getSaveCount(lua_State* L) {
629 lua_pushnumber(L, get_ref<SkCanvas>(L, 1)->getSaveCount());
630 return 1;
631}
632
633static int lcanvas_getTotalMatrix(lua_State* L) {
634 SkLua(L).pushMatrix(get_ref<SkCanvas>(L, 1)->getTotalMatrix());
635 return 1;
636}
637
commit-bot@chromium.org5cc25352014-02-24 18:59:48 +0000638static int lcanvas_getClipStack(lua_State* L) {
639 SkLua(L).pushClipStack(*get_ref<SkCanvas>(L, 1)->getClipStack());
640 return 1;
641}
642
bsalomon@google.com4ebe3822014-02-26 20:22:32 +0000643int SkLua::lcanvas_getReducedClipStack(lua_State* L) {
644#if SK_SUPPORT_GPU
645 const SkCanvas* canvas = get_ref<SkCanvas>(L, 1);
csmartdaltoncbecb082016-07-22 08:59:08 -0700646 SkRect queryBounds = SkRect::Make(canvas->getTopLayerBounds());
csmartdalton77f2fae2016-08-08 09:55:06 -0700647 const GrReducedClip reducedClip(*canvas->getClipStack(), queryBounds);
bsalomon@google.com4ebe3822014-02-26 20:22:32 +0000648
csmartdalton77f2fae2016-08-08 09:55:06 -0700649 GrReducedClip::ElementList::Iter iter(reducedClip.elements());
bsalomon@google.com4ebe3822014-02-26 20:22:32 +0000650 int i = 0;
651 lua_newtable(L);
bsalomon49f085d2014-09-05 13:34:00 -0700652 while(iter.get()) {
bsalomon@google.com4ebe3822014-02-26 20:22:32 +0000653 SkLua(L).pushClipStackElement(*iter.get());
654 iter.next();
655 lua_rawseti(L, -2, ++i);
656 }
657 // Currently this only returns the element list to lua, not the initial state or result bounds.
658 // It could return these as additional items on the lua stack.
659 return 1;
660#else
661 return 0;
662#endif
663}
664
mike@reedtribe.orgfb858242013-06-08 16:39:44 +0000665static int lcanvas_save(lua_State* L) {
666 lua_pushinteger(L, get_ref<SkCanvas>(L, 1)->save());
667 return 1;
668}
669
reed86217d82014-10-25 20:44:40 -0700670static int lcanvas_saveLayer(lua_State* L) {
671 SkPaint paint;
halcanary96fcdcc2015-08-27 07:41:13 -0700672 lua_pushinteger(L, get_ref<SkCanvas>(L, 1)->saveLayer(nullptr, lua2OptionalPaint(L, 2, &paint)));
reed86217d82014-10-25 20:44:40 -0700673 return 1;
674}
675
mike@reedtribe.orgfb858242013-06-08 16:39:44 +0000676static int lcanvas_restore(lua_State* L) {
677 get_ref<SkCanvas>(L, 1)->restore();
678 return 0;
679}
680
mike@reedtribe.org1d32cc62013-06-13 01:28:56 +0000681static int lcanvas_scale(lua_State* L) {
682 SkScalar sx = lua2scalar_def(L, 2, 1);
683 SkScalar sy = lua2scalar_def(L, 3, sx);
684 get_ref<SkCanvas>(L, 1)->scale(sx, sy);
685 return 0;
686}
687
reed@google.com3597b732013-05-22 20:12:50 +0000688static int lcanvas_translate(lua_State* L) {
mike@reedtribe.org1d32cc62013-06-13 01:28:56 +0000689 SkScalar tx = lua2scalar_def(L, 2, 0);
690 SkScalar ty = lua2scalar_def(L, 3, 0);
691 get_ref<SkCanvas>(L, 1)->translate(tx, ty);
692 return 0;
693}
694
695static int lcanvas_rotate(lua_State* L) {
696 SkScalar degrees = lua2scalar_def(L, 2, 0);
697 get_ref<SkCanvas>(L, 1)->rotate(degrees);
reed@google.com3597b732013-05-22 20:12:50 +0000698 return 0;
699}
700
reedbdc49ae2014-10-14 09:34:52 -0700701static int lcanvas_concat(lua_State* L) {
702 get_ref<SkCanvas>(L, 1)->concat(*get_obj<SkMatrix>(L, 2));
703 return 0;
704}
705
reed485557f2014-10-12 10:36:47 -0700706static int lcanvas_newSurface(lua_State* L) {
707 int width = lua2int_def(L, 2, 0);
reed7a72c672014-11-07 10:23:55 -0800708 int height = lua2int_def(L, 3, 0);
reed485557f2014-10-12 10:36:47 -0700709 SkImageInfo info = SkImageInfo::MakeN32Premul(width, height);
reede8f30622016-03-23 18:59:25 -0700710 auto surface = get_ref<SkCanvas>(L, 1)->makeSurface(info);
halcanary96fcdcc2015-08-27 07:41:13 -0700711 if (nullptr == surface) {
reed485557f2014-10-12 10:36:47 -0700712 lua_pushnil(L);
713 } else {
reede8f30622016-03-23 18:59:25 -0700714 push_ref(L, surface);
reed485557f2014-10-12 10:36:47 -0700715 }
716 return 1;
717}
718
reed@google.com74ce6f02013-05-22 15:13:18 +0000719static int lcanvas_gc(lua_State* L) {
720 get_ref<SkCanvas>(L, 1)->unref();
721 return 0;
722}
723
bsalomon@google.com4ebe3822014-02-26 20:22:32 +0000724const struct luaL_Reg gSkCanvas_Methods[] = {
reedf355df52014-10-12 12:18:40 -0700725 { "clear", lcanvas_clear },
reed@google.com74ce6f02013-05-22 15:13:18 +0000726 { "drawColor", lcanvas_drawColor },
reed9fbc3f32014-10-21 07:12:58 -0700727 { "drawPaint", lcanvas_drawPaint },
reed@google.com74ce6f02013-05-22 15:13:18 +0000728 { "drawRect", lcanvas_drawRect },
729 { "drawOval", lcanvas_drawOval },
730 { "drawCircle", lcanvas_drawCircle },
mike@reedtribe.org792bbd12013-06-11 02:20:28 +0000731 { "drawImage", lcanvas_drawImage },
reedba5fb932014-10-10 15:28:19 -0700732 { "drawImageRect", lcanvas_drawImageRect },
reed7a72c672014-11-07 10:23:55 -0800733 { "drawPatch", lcanvas_drawPatch },
reed@google.comfd345872013-05-22 20:53:42 +0000734 { "drawPath", lcanvas_drawPath },
reed96affcd2014-10-13 12:38:04 -0700735 { "drawPicture", lcanvas_drawPicture },
mike@reedtribe.orge6469f12013-06-08 03:15:47 +0000736 { "drawText", lcanvas_drawText },
reed1b6ab442014-11-03 19:55:41 -0800737 { "drawTextBlob", lcanvas_drawTextBlob },
reed@google.com74ce6f02013-05-22 15:13:18 +0000738 { "getSaveCount", lcanvas_getSaveCount },
739 { "getTotalMatrix", lcanvas_getTotalMatrix },
commit-bot@chromium.org5cc25352014-02-24 18:59:48 +0000740 { "getClipStack", lcanvas_getClipStack },
bsalomon@google.com4ebe3822014-02-26 20:22:32 +0000741#if SK_SUPPORT_GPU
742 { "getReducedClipStack", SkLua::lcanvas_getReducedClipStack },
743#endif
mike@reedtribe.orgfb858242013-06-08 16:39:44 +0000744 { "save", lcanvas_save },
reed86217d82014-10-25 20:44:40 -0700745 { "saveLayer", lcanvas_saveLayer },
mike@reedtribe.orgfb858242013-06-08 16:39:44 +0000746 { "restore", lcanvas_restore },
mike@reedtribe.org1d32cc62013-06-13 01:28:56 +0000747 { "scale", lcanvas_scale },
reed@google.com3597b732013-05-22 20:12:50 +0000748 { "translate", lcanvas_translate },
mike@reedtribe.org1d32cc62013-06-13 01:28:56 +0000749 { "rotate", lcanvas_rotate },
reedbdc49ae2014-10-14 09:34:52 -0700750 { "concat", lcanvas_concat },
reed485557f2014-10-12 10:36:47 -0700751
752 { "newSurface", lcanvas_newSurface },
753
reed@google.com74ce6f02013-05-22 15:13:18 +0000754 { "__gc", lcanvas_gc },
halcanary96fcdcc2015-08-27 07:41:13 -0700755 { nullptr, nullptr }
reed@google.com74ce6f02013-05-22 15:13:18 +0000756};
757
758///////////////////////////////////////////////////////////////////////////////
759
mike@reedtribe.orgfb858242013-06-08 16:39:44 +0000760static int ldocument_beginPage(lua_State* L) {
halcanary96fcdcc2015-08-27 07:41:13 -0700761 const SkRect* contentPtr = nullptr;
mike@reedtribe.orgfb858242013-06-08 16:39:44 +0000762 push_ref(L, get_ref<SkDocument>(L, 1)->beginPage(lua2scalar(L, 2),
763 lua2scalar(L, 3),
764 contentPtr));
765 return 1;
766}
767
768static int ldocument_endPage(lua_State* L) {
769 get_ref<SkDocument>(L, 1)->endPage();
770 return 0;
771}
772
773static int ldocument_close(lua_State* L) {
774 get_ref<SkDocument>(L, 1)->close();
775 return 0;
776}
777
778static int ldocument_gc(lua_State* L) {
779 get_ref<SkDocument>(L, 1)->unref();
780 return 0;
781}
782
783static const struct luaL_Reg gSkDocument_Methods[] = {
784 { "beginPage", ldocument_beginPage },
785 { "endPage", ldocument_endPage },
786 { "close", ldocument_close },
787 { "__gc", ldocument_gc },
halcanary96fcdcc2015-08-27 07:41:13 -0700788 { nullptr, nullptr }
mike@reedtribe.orgfb858242013-06-08 16:39:44 +0000789};
790
791///////////////////////////////////////////////////////////////////////////////
792
reed@google.com74ce6f02013-05-22 15:13:18 +0000793static int lpaint_isAntiAlias(lua_State* L) {
794 lua_pushboolean(L, get_obj<SkPaint>(L, 1)->isAntiAlias());
795 return 1;
796}
797
798static int lpaint_setAntiAlias(lua_State* L) {
reed@google.com88c9ec92013-05-22 15:43:21 +0000799 get_obj<SkPaint>(L, 1)->setAntiAlias(lua2bool(L, 2));
reed@google.com74ce6f02013-05-22 15:13:18 +0000800 return 0;
801}
802
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +0000803static int lpaint_isDither(lua_State* L) {
804 lua_pushboolean(L, get_obj<SkPaint>(L, 1)->isDither());
805 return 1;
806}
807
reedbb8a0ab2014-11-03 22:32:07 -0800808static int lpaint_setDither(lua_State* L) {
809 get_obj<SkPaint>(L, 1)->setDither(lua2bool(L, 2));
810 return 0;
811}
812
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +0000813static int lpaint_isUnderlineText(lua_State* L) {
814 lua_pushboolean(L, get_obj<SkPaint>(L, 1)->isUnderlineText());
815 return 1;
816}
817
818static int lpaint_isStrikeThruText(lua_State* L) {
819 lua_pushboolean(L, get_obj<SkPaint>(L, 1)->isStrikeThruText());
820 return 1;
821}
822
823static int lpaint_isFakeBoldText(lua_State* L) {
824 lua_pushboolean(L, get_obj<SkPaint>(L, 1)->isFakeBoldText());
825 return 1;
826}
827
828static int lpaint_isLinearText(lua_State* L) {
829 lua_pushboolean(L, get_obj<SkPaint>(L, 1)->isLinearText());
830 return 1;
831}
832
833static int lpaint_isSubpixelText(lua_State* L) {
834 lua_pushboolean(L, get_obj<SkPaint>(L, 1)->isSubpixelText());
835 return 1;
836}
837
reed09a1d672014-10-11 13:13:11 -0700838static int lpaint_setSubpixelText(lua_State* L) {
839 get_obj<SkPaint>(L, 1)->setSubpixelText(lua2bool(L, 2));
840 return 1;
841}
842
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +0000843static int lpaint_isDevKernText(lua_State* L) {
844 lua_pushboolean(L, get_obj<SkPaint>(L, 1)->isDevKernText());
845 return 1;
846}
847
848static int lpaint_isLCDRenderText(lua_State* L) {
849 lua_pushboolean(L, get_obj<SkPaint>(L, 1)->isLCDRenderText());
850 return 1;
851}
852
reed36c9c112014-11-04 10:58:42 -0800853static int lpaint_setLCDRenderText(lua_State* L) {
854 get_obj<SkPaint>(L, 1)->setLCDRenderText(lua2bool(L, 2));
855 return 1;
856}
857
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +0000858static int lpaint_isEmbeddedBitmapText(lua_State* L) {
859 lua_pushboolean(L, get_obj<SkPaint>(L, 1)->isEmbeddedBitmapText());
860 return 1;
861}
862
863static int lpaint_isAutohinted(lua_State* L) {
864 lua_pushboolean(L, get_obj<SkPaint>(L, 1)->isAutohinted());
865 return 1;
866}
867
868static int lpaint_isVerticalText(lua_State* L) {
869 lua_pushboolean(L, get_obj<SkPaint>(L, 1)->isVerticalText());
870 return 1;
871}
872
reed468b1812014-10-19 11:42:54 -0700873static int lpaint_getAlpha(lua_State* L) {
874 SkLua(L).pushScalar(byte2unit(get_obj<SkPaint>(L, 1)->getAlpha()));
875 return 1;
876}
877
878static int lpaint_setAlpha(lua_State* L) {
879 get_obj<SkPaint>(L, 1)->setAlpha(unit2byte(lua2scalar(L, 2)));
880 return 0;
881}
882
reed@google.com74ce6f02013-05-22 15:13:18 +0000883static int lpaint_getColor(lua_State* L) {
884 SkLua(L).pushColor(get_obj<SkPaint>(L, 1)->getColor());
885 return 1;
886}
887
888static int lpaint_setColor(lua_State* L) {
889 get_obj<SkPaint>(L, 1)->setColor(lua2color(L, 2));
890 return 0;
891}
892
reed@google.come3823fd2013-05-30 18:55:14 +0000893static int lpaint_getTextSize(lua_State* L) {
894 SkLua(L).pushScalar(get_obj<SkPaint>(L, 1)->getTextSize());
895 return 1;
896}
897
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +0000898static int lpaint_getTextScaleX(lua_State* L) {
899 SkLua(L).pushScalar(get_obj<SkPaint>(L, 1)->getTextScaleX());
900 return 1;
901}
902
903static int lpaint_getTextSkewX(lua_State* L) {
904 SkLua(L).pushScalar(get_obj<SkPaint>(L, 1)->getTextSkewX());
905 return 1;
906}
907
reed@google.come3823fd2013-05-30 18:55:14 +0000908static int lpaint_setTextSize(lua_State* L) {
909 get_obj<SkPaint>(L, 1)->setTextSize(lua2scalar(L, 2));
910 return 0;
911}
912
mike@reedtribe.orge6469f12013-06-08 03:15:47 +0000913static int lpaint_getTypeface(lua_State* L) {
914 push_ref(L, get_obj<SkPaint>(L, 1)->getTypeface());
915 return 1;
916}
917
918static int lpaint_setTypeface(lua_State* L) {
bungeman13b9c952016-05-12 10:09:30 -0700919 get_obj<SkPaint>(L, 1)->setTypeface(sk_ref_sp(get_ref<SkTypeface>(L, 2)));
mike@reedtribe.orge6469f12013-06-08 03:15:47 +0000920 return 0;
921}
922
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +0000923static int lpaint_getHinting(lua_State* L) {
924 SkLua(L).pushU32(get_obj<SkPaint>(L, 1)->getHinting());
925 return 1;
926}
927
reed93a12152015-03-16 10:08:34 -0700928static int lpaint_getFilterQuality(lua_State* L) {
929 SkLua(L).pushU32(get_obj<SkPaint>(L, 1)->getFilterQuality());
reed7a72c672014-11-07 10:23:55 -0800930 return 1;
931}
932
reed93a12152015-03-16 10:08:34 -0700933static int lpaint_setFilterQuality(lua_State* L) {
reed7a72c672014-11-07 10:23:55 -0800934 int level = lua2int_def(L, 2, -1);
935 if (level >= 0 && level <= 3) {
reed93a12152015-03-16 10:08:34 -0700936 get_obj<SkPaint>(L, 1)->setFilterQuality((SkFilterQuality)level);
reed7a72c672014-11-07 10:23:55 -0800937 }
938 return 0;
939}
940
reed@google.come3823fd2013-05-30 18:55:14 +0000941static int lpaint_getFontID(lua_State* L) {
942 SkTypeface* face = get_obj<SkPaint>(L, 1)->getTypeface();
943 SkLua(L).pushU32(SkTypeface::UniqueID(face));
944 return 1;
945}
946
mike@reedtribe.orgfb858242013-06-08 16:39:44 +0000947static const struct {
948 const char* fLabel;
949 SkPaint::Align fAlign;
950} gAlignRec[] = {
951 { "left", SkPaint::kLeft_Align },
952 { "center", SkPaint::kCenter_Align },
953 { "right", SkPaint::kRight_Align },
954};
955
956static int lpaint_getTextAlign(lua_State* L) {
957 SkPaint::Align align = get_obj<SkPaint>(L, 1)->getTextAlign();
958 for (size_t i = 0; i < SK_ARRAY_COUNT(gAlignRec); ++i) {
959 if (gAlignRec[i].fAlign == align) {
960 lua_pushstring(L, gAlignRec[i].fLabel);
961 return 1;
962 }
963 }
964 return 0;
965}
966
967static int lpaint_setTextAlign(lua_State* L) {
968 if (lua_isstring(L, 2)) {
969 size_t len;
970 const char* label = lua_tolstring(L, 2, &len);
skia.committer@gmail.com370c5342013-06-09 07:01:05 +0000971
mike@reedtribe.orgfb858242013-06-08 16:39:44 +0000972 for (size_t i = 0; i < SK_ARRAY_COUNT(gAlignRec); ++i) {
973 if (!strcmp(gAlignRec[i].fLabel, label)) {
974 get_obj<SkPaint>(L, 1)->setTextAlign(gAlignRec[i].fAlign);
975 break;
976 }
977 }
978 }
979 return 0;
980}
981
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +0000982static int lpaint_getStroke(lua_State* L) {
983 lua_pushboolean(L, SkPaint::kStroke_Style == get_obj<SkPaint>(L, 1)->getStyle());
984 return 1;
985}
986
987static int lpaint_setStroke(lua_State* L) {
988 SkPaint::Style style;
skia.committer@gmail.com370c5342013-06-09 07:01:05 +0000989
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +0000990 if (lua_toboolean(L, 2)) {
991 style = SkPaint::kStroke_Style;
992 } else {
993 style = SkPaint::kFill_Style;
994 }
995 get_obj<SkPaint>(L, 1)->setStyle(style);
996 return 0;
997}
998
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +0000999static int lpaint_getStrokeCap(lua_State* L) {
1000 SkLua(L).pushU32(get_obj<SkPaint>(L, 1)->getStrokeCap());
1001 return 1;
1002}
1003
1004static int lpaint_getStrokeJoin(lua_State* L) {
1005 SkLua(L).pushU32(get_obj<SkPaint>(L, 1)->getStrokeJoin());
1006 return 1;
1007}
1008
1009static int lpaint_getTextEncoding(lua_State* L) {
commit-bot@chromium.org641bcc32013-12-19 10:39:59 +00001010 SkLua(L).pushU32(get_obj<SkPaint>(L, 1)->getTextEncoding());
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +00001011 return 1;
1012}
1013
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +00001014static int lpaint_getStrokeWidth(lua_State* L) {
1015 SkLua(L).pushScalar(get_obj<SkPaint>(L, 1)->getStrokeWidth());
1016 return 1;
1017}
1018
1019static int lpaint_setStrokeWidth(lua_State* L) {
1020 get_obj<SkPaint>(L, 1)->setStrokeWidth(lua2scalar(L, 2));
1021 return 0;
1022}
1023
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +00001024static int lpaint_getStrokeMiter(lua_State* L) {
1025 SkLua(L).pushScalar(get_obj<SkPaint>(L, 1)->getStrokeMiter());
1026 return 1;
1027}
1028
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +00001029static int lpaint_measureText(lua_State* L) {
1030 if (lua_isstring(L, 2)) {
1031 size_t len;
1032 const char* text = lua_tolstring(L, 2, &len);
1033 SkLua(L).pushScalar(get_obj<SkPaint>(L, 1)->measureText(text, len));
1034 return 1;
1035 }
1036 return 0;
1037}
1038
1039struct FontMetrics {
1040 SkScalar fTop; //!< The greatest distance above the baseline for any glyph (will be <= 0)
1041 SkScalar fAscent; //!< The recommended distance above the baseline (will be <= 0)
1042 SkScalar fDescent; //!< The recommended distance below the baseline (will be >= 0)
1043 SkScalar fBottom; //!< The greatest distance below the baseline for any glyph (will be >= 0)
1044 SkScalar fLeading; //!< The recommended distance to add between lines of text (will be >= 0)
1045 SkScalar fAvgCharWidth; //!< the average charactor width (>= 0)
1046 SkScalar fXMin; //!< The minimum bounding box x value for all glyphs
1047 SkScalar fXMax; //!< The maximum bounding box x value for all glyphs
1048 SkScalar fXHeight; //!< the height of an 'x' in px, or 0 if no 'x' in face
1049};
1050
1051static int lpaint_getFontMetrics(lua_State* L) {
1052 SkPaint::FontMetrics fm;
1053 SkScalar height = get_obj<SkPaint>(L, 1)->getFontMetrics(&fm);
skia.committer@gmail.com370c5342013-06-09 07:01:05 +00001054
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +00001055 lua_newtable(L);
1056 setfield_scalar(L, "top", fm.fTop);
1057 setfield_scalar(L, "ascent", fm.fAscent);
1058 setfield_scalar(L, "descent", fm.fDescent);
1059 setfield_scalar(L, "bottom", fm.fBottom);
1060 setfield_scalar(L, "leading", fm.fLeading);
1061 SkLua(L).pushScalar(height);
1062 return 2;
1063}
1064
reed@google.com29563872013-07-10 21:23:49 +00001065static int lpaint_getEffects(lua_State* L) {
1066 const SkPaint* paint = get_obj<SkPaint>(L, 1);
skia.committer@gmail.comde2e4e82013-07-11 07:01:01 +00001067
reed@google.com29563872013-07-10 21:23:49 +00001068 lua_newtable(L);
reed468b1812014-10-19 11:42:54 -07001069 setfield_bool_if(L, "looper", !!paint->getLooper());
1070 setfield_bool_if(L, "pathEffect", !!paint->getPathEffect());
1071 setfield_bool_if(L, "rasterizer", !!paint->getRasterizer());
1072 setfield_bool_if(L, "maskFilter", !!paint->getMaskFilter());
1073 setfield_bool_if(L, "shader", !!paint->getShader());
reed@google.com29563872013-07-10 21:23:49 +00001074 setfield_bool_if(L, "colorFilter", !!paint->getColorFilter());
1075 setfield_bool_if(L, "imageFilter", !!paint->getImageFilter());
reed468b1812014-10-19 11:42:54 -07001076 setfield_bool_if(L, "xfermode", !!paint->getXfermode());
reed@google.com29563872013-07-10 21:23:49 +00001077 return 1;
1078}
1079
robertphillips233bab92016-01-21 09:05:32 -08001080static int lpaint_getXfermode(lua_State* L) {
1081 const SkPaint* paint = get_obj<SkPaint>(L, 1);
1082 SkXfermode* xfermode = paint->getXfermode();
1083 if (xfermode) {
1084 push_ref(L, xfermode);
1085 return 1;
1086 }
1087 return 0;
1088}
1089
1090static int lpaint_setXfermode(lua_State* L) {
1091 SkPaint* paint = get_obj<SkPaint>(L, 1);
reedcfb6bdf2016-03-29 11:32:50 -07001092 paint->setXfermode(sk_ref_sp(get_ref<SkXfermode>(L, 2)));
robertphillips233bab92016-01-21 09:05:32 -08001093 return 0;
1094}
1095
reed22a517f2015-12-04 20:45:59 -08001096static int lpaint_getColorFilter(lua_State* L) {
1097 const SkPaint* paint = get_obj<SkPaint>(L, 1);
1098 SkColorFilter* cf = paint->getColorFilter();
1099 if (cf) {
1100 push_ref(L, cf);
1101 return 1;
1102 }
1103 return 0;
1104}
1105
1106static int lpaint_setColorFilter(lua_State* L) {
1107 SkPaint* paint = get_obj<SkPaint>(L, 1);
reedd053ce92016-03-22 10:17:23 -07001108 paint->setColorFilter(sk_ref_sp(get_ref<SkColorFilter>(L, 2)));
reed22a517f2015-12-04 20:45:59 -08001109 return 0;
1110}
1111
reed468b1812014-10-19 11:42:54 -07001112static int lpaint_getImageFilter(lua_State* L) {
1113 const SkPaint* paint = get_obj<SkPaint>(L, 1);
1114 SkImageFilter* imf = paint->getImageFilter();
1115 if (imf) {
1116 push_ref(L, imf);
1117 return 1;
1118 }
1119 return 0;
1120}
1121
1122static int lpaint_setImageFilter(lua_State* L) {
1123 SkPaint* paint = get_obj<SkPaint>(L, 1);
1124 paint->setImageFilter(get_ref<SkImageFilter>(L, 2));
1125 return 0;
1126}
1127
reed@google.com5fdc9832013-07-24 15:47:52 +00001128static int lpaint_getShader(lua_State* L) {
1129 const SkPaint* paint = get_obj<SkPaint>(L, 1);
1130 SkShader* shader = paint->getShader();
1131 if (shader) {
1132 push_ref(L, shader);
1133 return 1;
1134 }
1135 return 0;
1136}
1137
reed9fbc3f32014-10-21 07:12:58 -07001138static int lpaint_setShader(lua_State* L) {
1139 SkPaint* paint = get_obj<SkPaint>(L, 1);
reedfe630452016-03-25 09:08:00 -07001140 paint->setShader(sk_ref_sp(get_ref<SkShader>(L, 2)));
reed9fbc3f32014-10-21 07:12:58 -07001141 return 0;
1142}
1143
commit-bot@chromium.org1301bf32014-03-17 23:09:47 +00001144static int lpaint_getPathEffect(lua_State* L) {
1145 const SkPaint* paint = get_obj<SkPaint>(L, 1);
1146 SkPathEffect* pe = paint->getPathEffect();
1147 if (pe) {
1148 push_ref(L, pe);
1149 return 1;
1150 }
1151 return 0;
1152}
1153
hstern0b401ce2016-08-02 09:17:59 -07001154static int lpaint_getFillPath(lua_State* L) {
1155 const SkPaint* paint = get_obj<SkPaint>(L, 1);
1156 const SkPath* path = get_obj<SkPath>(L, 2);
1157
1158 SkPath fillpath;
1159 paint->getFillPath(*path, &fillpath);
1160
1161 SkLua lua(L);
1162 lua.pushPath(fillpath);
1163
1164 return 1;
1165}
1166
reed@google.com74ce6f02013-05-22 15:13:18 +00001167static int lpaint_gc(lua_State* L) {
1168 get_obj<SkPaint>(L, 1)->~SkPaint();
1169 return 0;
1170}
1171
1172static const struct luaL_Reg gSkPaint_Methods[] = {
1173 { "isAntiAlias", lpaint_isAntiAlias },
1174 { "setAntiAlias", lpaint_setAntiAlias },
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +00001175 { "isDither", lpaint_isDither },
reedbb8a0ab2014-11-03 22:32:07 -08001176 { "setDither", lpaint_setDither },
reed93a12152015-03-16 10:08:34 -07001177 { "getFilterQuality", lpaint_getFilterQuality },
1178 { "setFilterQuality", lpaint_setFilterQuality },
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +00001179 { "isUnderlineText", lpaint_isUnderlineText },
1180 { "isStrikeThruText", lpaint_isStrikeThruText },
1181 { "isFakeBoldText", lpaint_isFakeBoldText },
1182 { "isLinearText", lpaint_isLinearText },
1183 { "isSubpixelText", lpaint_isSubpixelText },
reed09a1d672014-10-11 13:13:11 -07001184 { "setSubpixelText", lpaint_setSubpixelText },
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +00001185 { "isDevKernText", lpaint_isDevKernText },
1186 { "isLCDRenderText", lpaint_isLCDRenderText },
reed36c9c112014-11-04 10:58:42 -08001187 { "setLCDRenderText", lpaint_setLCDRenderText },
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +00001188 { "isEmbeddedBitmapText", lpaint_isEmbeddedBitmapText },
1189 { "isAutohinted", lpaint_isAutohinted },
1190 { "isVerticalText", lpaint_isVerticalText },
reed468b1812014-10-19 11:42:54 -07001191 { "getAlpha", lpaint_getAlpha },
1192 { "setAlpha", lpaint_setAlpha },
reed@google.com74ce6f02013-05-22 15:13:18 +00001193 { "getColor", lpaint_getColor },
1194 { "setColor", lpaint_setColor },
reed@google.come3823fd2013-05-30 18:55:14 +00001195 { "getTextSize", lpaint_getTextSize },
1196 { "setTextSize", lpaint_setTextSize },
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +00001197 { "getTextScaleX", lpaint_getTextScaleX },
1198 { "getTextSkewX", lpaint_getTextSkewX },
mike@reedtribe.orge6469f12013-06-08 03:15:47 +00001199 { "getTypeface", lpaint_getTypeface },
1200 { "setTypeface", lpaint_setTypeface },
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +00001201 { "getHinting", lpaint_getHinting },
reed@google.come3823fd2013-05-30 18:55:14 +00001202 { "getFontID", lpaint_getFontID },
mike@reedtribe.orgfb858242013-06-08 16:39:44 +00001203 { "getTextAlign", lpaint_getTextAlign },
1204 { "setTextAlign", lpaint_setTextAlign },
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +00001205 { "getStroke", lpaint_getStroke },
1206 { "setStroke", lpaint_setStroke },
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +00001207 { "getStrokeCap", lpaint_getStrokeCap },
1208 { "getStrokeJoin", lpaint_getStrokeJoin },
1209 { "getTextEncoding", lpaint_getTextEncoding },
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +00001210 { "getStrokeWidth", lpaint_getStrokeWidth },
1211 { "setStrokeWidth", lpaint_setStrokeWidth },
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +00001212 { "getStrokeMiter", lpaint_getStrokeMiter },
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +00001213 { "measureText", lpaint_measureText },
1214 { "getFontMetrics", lpaint_getFontMetrics },
reed@google.com29563872013-07-10 21:23:49 +00001215 { "getEffects", lpaint_getEffects },
reed22a517f2015-12-04 20:45:59 -08001216 { "getColorFilter", lpaint_getColorFilter },
1217 { "setColorFilter", lpaint_setColorFilter },
reed468b1812014-10-19 11:42:54 -07001218 { "getImageFilter", lpaint_getImageFilter },
1219 { "setImageFilter", lpaint_setImageFilter },
robertphillips233bab92016-01-21 09:05:32 -08001220 { "getXfermode", lpaint_getXfermode },
1221 { "setXfermode", lpaint_setXfermode },
reed@google.com5fdc9832013-07-24 15:47:52 +00001222 { "getShader", lpaint_getShader },
reed9fbc3f32014-10-21 07:12:58 -07001223 { "setShader", lpaint_setShader },
commit-bot@chromium.org1301bf32014-03-17 23:09:47 +00001224 { "getPathEffect", lpaint_getPathEffect },
hstern0b401ce2016-08-02 09:17:59 -07001225 { "getFillPath", lpaint_getFillPath },
reed@google.com74ce6f02013-05-22 15:13:18 +00001226 { "__gc", lpaint_gc },
halcanary96fcdcc2015-08-27 07:41:13 -07001227 { nullptr, nullptr }
reed@google.com74ce6f02013-05-22 15:13:18 +00001228};
1229
1230///////////////////////////////////////////////////////////////////////////////
1231
reed@google.com5fdc9832013-07-24 15:47:52 +00001232static const char* mode2string(SkShader::TileMode mode) {
1233 static const char* gNames[] = { "clamp", "repeat", "mirror" };
1234 SkASSERT((unsigned)mode < SK_ARRAY_COUNT(gNames));
1235 return gNames[mode];
1236}
1237
1238static const char* gradtype2string(SkShader::GradientType t) {
1239 static const char* gNames[] = {
1240 "none", "color", "linear", "radial", "radial2", "sweep", "conical"
1241 };
1242 SkASSERT((unsigned)t < SK_ARRAY_COUNT(gNames));
1243 return gNames[t];
1244}
1245
1246static int lshader_isOpaque(lua_State* L) {
1247 SkShader* shader = get_ref<SkShader>(L, 1);
1248 return shader && shader->isOpaque();
1249}
1250
reedf5822822015-08-19 11:46:38 -07001251static int lshader_isABitmap(lua_State* L) {
reed@google.com5fdc9832013-07-24 15:47:52 +00001252 SkShader* shader = get_ref<SkShader>(L, 1);
1253 if (shader) {
1254 SkBitmap bm;
1255 SkMatrix matrix;
1256 SkShader::TileMode modes[2];
reedf5822822015-08-19 11:46:38 -07001257 if (shader->isABitmap(&bm, &matrix, modes)) {
1258 lua_newtable(L);
1259 setfield_number(L, "genID", bm.pixelRef() ? bm.pixelRef()->getGenerationID() : 0);
1260 setfield_number(L, "width", bm.width());
1261 setfield_number(L, "height", bm.height());
1262 setfield_string(L, "tileX", mode2string(modes[0]));
1263 setfield_string(L, "tileY", mode2string(modes[1]));
1264 return 1;
reed@google.com5fdc9832013-07-24 15:47:52 +00001265 }
1266 }
1267 return 0;
1268}
1269
1270static int lshader_asAGradient(lua_State* L) {
1271 SkShader* shader = get_ref<SkShader>(L, 1);
1272 if (shader) {
1273 SkShader::GradientInfo info;
1274 sk_bzero(&info, sizeof(info));
commit-bot@chromium.org74f96b92013-08-01 17:32:56 +00001275
reed@google.com5fdc9832013-07-24 15:47:52 +00001276 SkShader::GradientType t = shader->asAGradient(&info);
commit-bot@chromium.org74f96b92013-08-01 17:32:56 +00001277
reed@google.com5fdc9832013-07-24 15:47:52 +00001278 if (SkShader::kNone_GradientType != t) {
fmenozzib4f254e2016-06-28 14:03:03 -07001279 SkAutoTArray<SkScalar> pos(info.fColorCount);
1280 info.fColorOffsets = pos.get();
1281 shader->asAGradient(&info);
commit-bot@chromium.org74f96b92013-08-01 17:32:56 +00001282
fmenozzib4f254e2016-06-28 14:03:03 -07001283 lua_newtable(L);
fmenozzi7f2c85e2016-07-12 09:17:39 -07001284 setfield_string(L, "type", gradtype2string(t));
1285 setfield_string(L, "tile", mode2string(info.fTileMode));
1286 setfield_number(L, "colorCount", info.fColorCount);
fmenozzib4f254e2016-06-28 14:03:03 -07001287
1288 lua_newtable(L);
1289 for (int i = 0; i < info.fColorCount; i++) {
1290 // Lua uses 1-based indexing
1291 setarray_scalar(L, i+1, pos[i]);
1292 }
1293 lua_setfield(L, -2, "positions");
1294
reed@google.com5fdc9832013-07-24 15:47:52 +00001295 return 1;
1296 }
1297 }
1298 return 0;
1299}
1300
1301static int lshader_gc(lua_State* L) {
1302 get_ref<SkShader>(L, 1)->unref();
1303 return 0;
1304}
1305
1306static const struct luaL_Reg gSkShader_Methods[] = {
1307 { "isOpaque", lshader_isOpaque },
reedf5822822015-08-19 11:46:38 -07001308 { "isABitmap", lshader_isABitmap },
reed@google.com5fdc9832013-07-24 15:47:52 +00001309 { "asAGradient", lshader_asAGradient },
1310 { "__gc", lshader_gc },
halcanary96fcdcc2015-08-27 07:41:13 -07001311 { nullptr, nullptr }
reed@google.com5fdc9832013-07-24 15:47:52 +00001312};
1313
1314///////////////////////////////////////////////////////////////////////////////
1315
commit-bot@chromium.org4d803a92014-05-14 16:03:14 +00001316static int lpatheffect_asADash(lua_State* L) {
1317 SkPathEffect* pe = get_ref<SkPathEffect>(L, 1);
1318 if (pe) {
1319 SkPathEffect::DashInfo info;
1320 SkPathEffect::DashType dashType = pe->asADash(&info);
1321 if (SkPathEffect::kDash_DashType == dashType) {
1322 SkAutoTArray<SkScalar> intervals(info.fCount);
1323 info.fIntervals = intervals.get();
1324 pe->asADash(&info);
1325 SkLua(L).pushDash(info);
1326 return 1;
1327 }
1328 }
1329 return 0;
1330}
1331
commit-bot@chromium.org1301bf32014-03-17 23:09:47 +00001332static int lpatheffect_gc(lua_State* L) {
1333 get_ref<SkPathEffect>(L, 1)->unref();
1334 return 0;
1335}
1336
1337static const struct luaL_Reg gSkPathEffect_Methods[] = {
commit-bot@chromium.org4d803a92014-05-14 16:03:14 +00001338 { "asADash", lpatheffect_asADash },
commit-bot@chromium.org1301bf32014-03-17 23:09:47 +00001339 { "__gc", lpatheffect_gc },
halcanary96fcdcc2015-08-27 07:41:13 -07001340 { nullptr, nullptr }
commit-bot@chromium.org1301bf32014-03-17 23:09:47 +00001341};
1342
1343///////////////////////////////////////////////////////////////////////////////
1344
robertphillips233bab92016-01-21 09:05:32 -08001345static int lpxfermode_getTypeName(lua_State* L) {
1346 lua_pushstring(L, get_ref<SkXfermode>(L, 1)->getTypeName());
1347 return 1;
1348}
1349
1350static int lpxfermode_gc(lua_State* L) {
1351 get_ref<SkXfermode>(L, 1)->unref();
1352 return 0;
1353}
1354
1355static const struct luaL_Reg gSkXfermode_Methods[] = {
1356 { "getTypeName", lpxfermode_getTypeName },
1357 { "__gc", lpxfermode_gc },
1358 { nullptr, nullptr }
1359};
1360
1361///////////////////////////////////////////////////////////////////////////////
1362
reed22a517f2015-12-04 20:45:59 -08001363static int lpcolorfilter_gc(lua_State* L) {
1364 get_ref<SkColorFilter>(L, 1)->unref();
1365 return 0;
1366}
1367
1368static const struct luaL_Reg gSkColorFilter_Methods[] = {
1369 { "__gc", lpcolorfilter_gc },
1370 { nullptr, nullptr }
1371};
1372
1373///////////////////////////////////////////////////////////////////////////////
1374
reed468b1812014-10-19 11:42:54 -07001375static int lpimagefilter_gc(lua_State* L) {
1376 get_ref<SkImageFilter>(L, 1)->unref();
1377 return 0;
1378}
1379
1380static const struct luaL_Reg gSkImageFilter_Methods[] = {
1381 { "__gc", lpimagefilter_gc },
halcanary96fcdcc2015-08-27 07:41:13 -07001382 { nullptr, nullptr }
reed468b1812014-10-19 11:42:54 -07001383};
1384
1385///////////////////////////////////////////////////////////////////////////////
1386
humper@google.com2815c192013-07-10 22:42:30 +00001387static int lmatrix_getType(lua_State* L) {
1388 SkMatrix::TypeMask mask = get_obj<SkMatrix>(L, 1)->getType();
skia.committer@gmail.comde2e4e82013-07-11 07:01:01 +00001389
humper@google.com2815c192013-07-10 22:42:30 +00001390 lua_newtable(L);
1391 setfield_boolean(L, "translate", SkToBool(mask & SkMatrix::kTranslate_Mask));
1392 setfield_boolean(L, "scale", SkToBool(mask & SkMatrix::kScale_Mask));
1393 setfield_boolean(L, "affine", SkToBool(mask & SkMatrix::kAffine_Mask));
1394 setfield_boolean(L, "perspective", SkToBool(mask & SkMatrix::kPerspective_Mask));
1395 return 1;
1396}
1397
humper@google.com0f48ee02013-07-26 15:23:43 +00001398static int lmatrix_getScaleX(lua_State* L) {
1399 lua_pushnumber(L, get_obj<SkMatrix>(L,1)->getScaleX());
1400 return 1;
1401}
1402
1403static int lmatrix_getScaleY(lua_State* L) {
1404 lua_pushnumber(L, get_obj<SkMatrix>(L,1)->getScaleY());
1405 return 1;
1406}
1407
1408static int lmatrix_getTranslateX(lua_State* L) {
1409 lua_pushnumber(L, get_obj<SkMatrix>(L,1)->getTranslateX());
1410 return 1;
1411}
1412
1413static int lmatrix_getTranslateY(lua_State* L) {
1414 lua_pushnumber(L, get_obj<SkMatrix>(L,1)->getTranslateY());
1415 return 1;
1416}
1417
reed7a72c672014-11-07 10:23:55 -08001418static int lmatrix_invert(lua_State* L) {
1419 lua_pushboolean(L, get_obj<SkMatrix>(L, 1)->invert(get_obj<SkMatrix>(L, 2)));
1420 return 1;
1421}
1422
1423static int lmatrix_mapXY(lua_State* L) {
1424 SkPoint pt = { lua2scalar(L, 2), lua2scalar(L, 3) };
1425 get_obj<SkMatrix>(L, 1)->mapPoints(&pt, &pt, 1);
1426 lua_pushnumber(L, pt.x());
1427 lua_pushnumber(L, pt.y());
1428 return 2;
1429}
1430
reedbdc49ae2014-10-14 09:34:52 -07001431static int lmatrix_setRectToRect(lua_State* L) {
1432 SkMatrix* matrix = get_obj<SkMatrix>(L, 1);
1433 SkRect srcR, dstR;
1434 lua2rect(L, 2, &srcR);
1435 lua2rect(L, 3, &dstR);
1436 const char* scaleToFitStr = lua_tostring(L, 4);
1437 SkMatrix::ScaleToFit scaleToFit = SkMatrix::kFill_ScaleToFit;
1438
1439 if (scaleToFitStr) {
1440 const struct {
1441 const char* fName;
1442 SkMatrix::ScaleToFit fScaleToFit;
1443 } rec[] = {
1444 { "fill", SkMatrix::kFill_ScaleToFit },
1445 { "start", SkMatrix::kStart_ScaleToFit },
1446 { "center", SkMatrix::kCenter_ScaleToFit },
1447 { "end", SkMatrix::kEnd_ScaleToFit },
1448 };
1449
1450 for (size_t i = 0; i < SK_ARRAY_COUNT(rec); ++i) {
1451 if (strcmp(rec[i].fName, scaleToFitStr) == 0) {
1452 scaleToFit = rec[i].fScaleToFit;
1453 break;
1454 }
1455 }
1456 }
1457
1458 matrix->setRectToRect(srcR, dstR, scaleToFit);
1459 return 0;
1460}
1461
humper@google.com2815c192013-07-10 22:42:30 +00001462static const struct luaL_Reg gSkMatrix_Methods[] = {
1463 { "getType", lmatrix_getType },
humper@google.com0f48ee02013-07-26 15:23:43 +00001464 { "getScaleX", lmatrix_getScaleX },
1465 { "getScaleY", lmatrix_getScaleY },
1466 { "getTranslateX", lmatrix_getTranslateX },
1467 { "getTranslateY", lmatrix_getTranslateY },
reedbdc49ae2014-10-14 09:34:52 -07001468 { "setRectToRect", lmatrix_setRectToRect },
reed7a72c672014-11-07 10:23:55 -08001469 { "invert", lmatrix_invert },
1470 { "mapXY", lmatrix_mapXY },
halcanary96fcdcc2015-08-27 07:41:13 -07001471 { nullptr, nullptr }
humper@google.com2815c192013-07-10 22:42:30 +00001472};
1473
1474///////////////////////////////////////////////////////////////////////////////
1475
reed@google.com74ce6f02013-05-22 15:13:18 +00001476static int lpath_getBounds(lua_State* L) {
1477 SkLua(L).pushRect(get_obj<SkPath>(L, 1)->getBounds());
1478 return 1;
1479}
1480
commit-bot@chromium.orgd85b8222014-02-24 21:59:29 +00001481static const char* fill_type_to_str(SkPath::FillType fill) {
1482 switch (fill) {
1483 case SkPath::kEvenOdd_FillType:
1484 return "even-odd";
1485 case SkPath::kWinding_FillType:
1486 return "winding";
1487 case SkPath::kInverseEvenOdd_FillType:
1488 return "inverse-even-odd";
1489 case SkPath::kInverseWinding_FillType:
1490 return "inverse-winding";
1491 }
1492 return "unknown";
1493}
1494
1495static int lpath_getFillType(lua_State* L) {
1496 SkPath::FillType fill = get_obj<SkPath>(L, 1)->getFillType();
1497 SkLua(L).pushString(fill_type_to_str(fill));
1498 return 1;
1499}
1500
1501static SkString segment_masks_to_str(uint32_t segmentMasks) {
1502 SkString result;
1503 bool first = true;
1504 if (SkPath::kLine_SegmentMask & segmentMasks) {
1505 result.append("line");
1506 first = false;
1507 SkDEBUGCODE(segmentMasks &= ~SkPath::kLine_SegmentMask;)
1508 }
1509 if (SkPath::kQuad_SegmentMask & segmentMasks) {
1510 if (!first) {
1511 result.append(" ");
1512 }
1513 result.append("quad");
1514 first = false;
1515 SkDEBUGCODE(segmentMasks &= ~SkPath::kQuad_SegmentMask;)
1516 }
1517 if (SkPath::kConic_SegmentMask & segmentMasks) {
1518 if (!first) {
1519 result.append(" ");
1520 }
1521 result.append("conic");
1522 first = false;
1523 SkDEBUGCODE(segmentMasks &= ~SkPath::kConic_SegmentMask;)
1524 }
1525 if (SkPath::kCubic_SegmentMask & segmentMasks) {
1526 if (!first) {
1527 result.append(" ");
1528 }
1529 result.append("cubic");
1530 SkDEBUGCODE(segmentMasks &= ~SkPath::kCubic_SegmentMask;)
1531 }
1532 SkASSERT(0 == segmentMasks);
1533 return result;
1534}
1535
krajcevski95498ed2014-08-18 08:02:33 -07001536static int lpath_getSegmentTypes(lua_State* L) {
commit-bot@chromium.orgd85b8222014-02-24 21:59:29 +00001537 uint32_t segMasks = get_obj<SkPath>(L, 1)->getSegmentMasks();
1538 SkLua(L).pushString(segment_masks_to_str(segMasks));
1539 return 1;
1540}
1541
1542static int lpath_isConvex(lua_State* L) {
1543 bool isConvex = SkPath::kConvex_Convexity == get_obj<SkPath>(L, 1)->getConvexity();
1544 SkLua(L).pushBool(isConvex);
1545 return 1;
1546}
1547
reed@google.com74ce6f02013-05-22 15:13:18 +00001548static int lpath_isEmpty(lua_State* L) {
1549 lua_pushboolean(L, get_obj<SkPath>(L, 1)->isEmpty());
1550 return 1;
1551}
1552
1553static int lpath_isRect(lua_State* L) {
1554 SkRect r;
1555 bool pred = get_obj<SkPath>(L, 1)->isRect(&r);
1556 int ret_count = 1;
1557 lua_pushboolean(L, pred);
1558 if (pred) {
1559 SkLua(L).pushRect(r);
1560 ret_count += 1;
1561 }
1562 return ret_count;
1563}
1564
1565static const char* dir2string(SkPath::Direction dir) {
1566 static const char* gStr[] = {
1567 "unknown", "cw", "ccw"
1568 };
1569 SkASSERT((unsigned)dir < SK_ARRAY_COUNT(gStr));
1570 return gStr[dir];
1571}
1572
caryclark95bc5f32015-04-08 08:34:15 -07001573static int lpath_isNestedFillRects(lua_State* L) {
reed@google.com74ce6f02013-05-22 15:13:18 +00001574 SkRect rects[2];
1575 SkPath::Direction dirs[2];
caryclark95bc5f32015-04-08 08:34:15 -07001576 bool pred = get_obj<SkPath>(L, 1)->isNestedFillRects(rects, dirs);
reed@google.com74ce6f02013-05-22 15:13:18 +00001577 int ret_count = 1;
1578 lua_pushboolean(L, pred);
1579 if (pred) {
1580 SkLua lua(L);
1581 lua.pushRect(rects[0]);
1582 lua.pushRect(rects[1]);
1583 lua_pushstring(L, dir2string(dirs[0]));
1584 lua_pushstring(L, dir2string(dirs[0]));
1585 ret_count += 4;
1586 }
1587 return ret_count;
1588}
1589
commit-bot@chromium.orgc5302082014-02-26 21:38:47 +00001590static int lpath_countPoints(lua_State* L) {
1591 lua_pushinteger(L, get_obj<SkPath>(L, 1)->countPoints());
1592 return 1;
1593}
1594
hstern0b401ce2016-08-02 09:17:59 -07001595static int lpath_getVerbs(lua_State* L) {
1596 const SkPath* path = get_obj<SkPath>(L, 1);
1597 SkPath::Iter iter(*path, false);
1598 SkPoint pts[4];
1599
1600 lua_newtable(L);
1601
1602 bool done = false;
1603 int i = 0;
1604 do {
1605 switch (iter.next(pts, true)) {
1606 case SkPath::kMove_Verb:
1607 setarray_string(L, ++i, "move");
1608 break;
1609 case SkPath::kClose_Verb:
1610 setarray_string(L, ++i, "close");
1611 break;
1612 case SkPath::kLine_Verb:
1613 setarray_string(L, ++i, "line");
1614 break;
1615 case SkPath::kQuad_Verb:
1616 setarray_string(L, ++i, "quad");
1617 break;
1618 case SkPath::kConic_Verb:
1619 setarray_string(L, ++i, "conic");
1620 break;
1621 case SkPath::kCubic_Verb:
1622 setarray_string(L, ++i, "cubic");
1623 break;
1624 case SkPath::kDone_Verb:
1625 setarray_string(L, ++i, "done");
1626 done = true;
1627 break;
1628 }
1629 } while (!done);
1630
1631 return 1;
1632}
1633
reed@google.com74ce6f02013-05-22 15:13:18 +00001634static int lpath_reset(lua_State* L) {
1635 get_obj<SkPath>(L, 1)->reset();
1636 return 0;
1637}
1638
1639static int lpath_moveTo(lua_State* L) {
1640 get_obj<SkPath>(L, 1)->moveTo(lua2scalar(L, 2), lua2scalar(L, 3));
1641 return 0;
1642}
1643
1644static int lpath_lineTo(lua_State* L) {
1645 get_obj<SkPath>(L, 1)->lineTo(lua2scalar(L, 2), lua2scalar(L, 3));
1646 return 0;
1647}
1648
1649static int lpath_quadTo(lua_State* L) {
1650 get_obj<SkPath>(L, 1)->quadTo(lua2scalar(L, 2), lua2scalar(L, 3),
1651 lua2scalar(L, 4), lua2scalar(L, 5));
1652 return 0;
1653}
1654
1655static int lpath_cubicTo(lua_State* L) {
1656 get_obj<SkPath>(L, 1)->cubicTo(lua2scalar(L, 2), lua2scalar(L, 3),
1657 lua2scalar(L, 4), lua2scalar(L, 5),
1658 lua2scalar(L, 6), lua2scalar(L, 7));
1659 return 0;
1660}
1661
1662static int lpath_close(lua_State* L) {
1663 get_obj<SkPath>(L, 1)->close();
1664 return 0;
1665}
1666
1667static int lpath_gc(lua_State* L) {
1668 get_obj<SkPath>(L, 1)->~SkPath();
1669 return 0;
1670}
1671
1672static const struct luaL_Reg gSkPath_Methods[] = {
1673 { "getBounds", lpath_getBounds },
commit-bot@chromium.orgd85b8222014-02-24 21:59:29 +00001674 { "getFillType", lpath_getFillType },
krajcevski95498ed2014-08-18 08:02:33 -07001675 { "getSegmentTypes", lpath_getSegmentTypes },
hstern0b401ce2016-08-02 09:17:59 -07001676 { "getVerbs", lpath_getVerbs },
commit-bot@chromium.orgd85b8222014-02-24 21:59:29 +00001677 { "isConvex", lpath_isConvex },
reed@google.com74ce6f02013-05-22 15:13:18 +00001678 { "isEmpty", lpath_isEmpty },
1679 { "isRect", lpath_isRect },
caryclark95bc5f32015-04-08 08:34:15 -07001680 { "isNestedFillRects", lpath_isNestedFillRects },
commit-bot@chromium.orgc5302082014-02-26 21:38:47 +00001681 { "countPoints", lpath_countPoints },
reed@google.com74ce6f02013-05-22 15:13:18 +00001682 { "reset", lpath_reset },
1683 { "moveTo", lpath_moveTo },
1684 { "lineTo", lpath_lineTo },
1685 { "quadTo", lpath_quadTo },
1686 { "cubicTo", lpath_cubicTo },
1687 { "close", lpath_close },
1688 { "__gc", lpath_gc },
halcanary96fcdcc2015-08-27 07:41:13 -07001689 { nullptr, nullptr }
reed@google.com74ce6f02013-05-22 15:13:18 +00001690};
1691
1692///////////////////////////////////////////////////////////////////////////////
1693
1694static const char* rrect_type(const SkRRect& rr) {
1695 switch (rr.getType()) {
reed@google.com74ce6f02013-05-22 15:13:18 +00001696 case SkRRect::kEmpty_Type: return "empty";
1697 case SkRRect::kRect_Type: return "rect";
1698 case SkRRect::kOval_Type: return "oval";
1699 case SkRRect::kSimple_Type: return "simple";
commit-bot@chromium.orgf338d7c2014-03-17 21:17:30 +00001700 case SkRRect::kNinePatch_Type: return "nine-patch";
reed@google.com74ce6f02013-05-22 15:13:18 +00001701 case SkRRect::kComplex_Type: return "complex";
1702 }
mtklein@google.com330313a2013-08-22 15:37:26 +00001703 SkDEBUGFAIL("never get here");
reed@google.com74ce6f02013-05-22 15:13:18 +00001704 return "";
1705}
1706
1707static int lrrect_rect(lua_State* L) {
1708 SkLua(L).pushRect(get_obj<SkRRect>(L, 1)->rect());
1709 return 1;
1710}
1711
1712static int lrrect_type(lua_State* L) {
1713 lua_pushstring(L, rrect_type(*get_obj<SkRRect>(L, 1)));
1714 return 1;
1715}
1716
1717static int lrrect_radii(lua_State* L) {
reed@google.com7fa2a652014-01-27 13:42:58 +00001718 int corner = SkToInt(lua_tointeger(L, 2));
reed@google.com74ce6f02013-05-22 15:13:18 +00001719 SkVector v;
1720 if (corner < 0 || corner > 3) {
1721 SkDebugf("bad corner index %d", corner);
1722 v.set(0, 0);
1723 } else {
1724 v = get_obj<SkRRect>(L, 1)->radii((SkRRect::Corner)corner);
1725 }
1726 lua_pushnumber(L, v.fX);
1727 lua_pushnumber(L, v.fY);
1728 return 2;
1729}
1730
1731static int lrrect_gc(lua_State* L) {
1732 get_obj<SkRRect>(L, 1)->~SkRRect();
1733 return 0;
1734}
1735
1736static const struct luaL_Reg gSkRRect_Methods[] = {
1737 { "rect", lrrect_rect },
1738 { "type", lrrect_type },
1739 { "radii", lrrect_radii },
1740 { "__gc", lrrect_gc },
halcanary96fcdcc2015-08-27 07:41:13 -07001741 { nullptr, nullptr }
reed@google.com74ce6f02013-05-22 15:13:18 +00001742};
1743
1744///////////////////////////////////////////////////////////////////////////////
1745
mike@reedtribe.org792bbd12013-06-11 02:20:28 +00001746static int limage_width(lua_State* L) {
1747 lua_pushinteger(L, get_ref<SkImage>(L, 1)->width());
1748 return 1;
1749}
1750
1751static int limage_height(lua_State* L) {
1752 lua_pushinteger(L, get_ref<SkImage>(L, 1)->height());
1753 return 1;
1754}
1755
reed7a72c672014-11-07 10:23:55 -08001756static int limage_newShader(lua_State* L) {
1757 SkShader::TileMode tmode = SkShader::kClamp_TileMode;
halcanary96fcdcc2015-08-27 07:41:13 -07001758 const SkMatrix* localM = nullptr;
reed5671c5b2016-03-09 14:47:34 -08001759 push_ref(L, get_ref<SkImage>(L, 1)->makeShader(tmode, tmode, localM));
reed7a72c672014-11-07 10:23:55 -08001760 return 1;
1761}
1762
mike@reedtribe.org792bbd12013-06-11 02:20:28 +00001763static int limage_gc(lua_State* L) {
1764 get_ref<SkImage>(L, 1)->unref();
1765 return 0;
1766}
1767
1768static const struct luaL_Reg gSkImage_Methods[] = {
1769 { "width", limage_width },
1770 { "height", limage_height },
reed7a72c672014-11-07 10:23:55 -08001771 { "newShader", limage_newShader },
mike@reedtribe.org792bbd12013-06-11 02:20:28 +00001772 { "__gc", limage_gc },
halcanary96fcdcc2015-08-27 07:41:13 -07001773 { nullptr, nullptr }
mike@reedtribe.org792bbd12013-06-11 02:20:28 +00001774};
1775
1776///////////////////////////////////////////////////////////////////////////////
1777
reed485557f2014-10-12 10:36:47 -07001778static int lsurface_width(lua_State* L) {
1779 lua_pushinteger(L, get_ref<SkSurface>(L, 1)->width());
1780 return 1;
1781}
1782
1783static int lsurface_height(lua_State* L) {
1784 lua_pushinteger(L, get_ref<SkSurface>(L, 1)->height());
1785 return 1;
1786}
1787
1788static int lsurface_getCanvas(lua_State* L) {
1789 SkCanvas* canvas = get_ref<SkSurface>(L, 1)->getCanvas();
halcanary96fcdcc2015-08-27 07:41:13 -07001790 if (nullptr == canvas) {
reed485557f2014-10-12 10:36:47 -07001791 lua_pushnil(L);
1792 } else {
1793 push_ref(L, canvas);
1794 // note: we don't unref canvas, since getCanvas did not ref it.
1795 // warning: this is weird: now Lua owns a ref on this canvas, but what if they let
1796 // the real owner (the surface) go away, but still hold onto the canvas?
1797 // *really* we want to sort of ref the surface again, but have the native object
1798 // know that it is supposed to be treated as a canvas...
1799 }
1800 return 1;
1801}
1802
1803static int lsurface_newImageSnapshot(lua_State* L) {
reed9ce9d672016-03-17 10:51:11 -07001804 sk_sp<SkImage> image = get_ref<SkSurface>(L, 1)->makeImageSnapshot();
1805 if (!image) {
reed485557f2014-10-12 10:36:47 -07001806 lua_pushnil(L);
1807 } else {
reed9ce9d672016-03-17 10:51:11 -07001808 push_ref(L, image);
reed485557f2014-10-12 10:36:47 -07001809 }
1810 return 1;
1811}
1812
1813static int lsurface_newSurface(lua_State* L) {
1814 int width = lua2int_def(L, 2, 0);
reed96affcd2014-10-13 12:38:04 -07001815 int height = lua2int_def(L, 3, 0);
reed485557f2014-10-12 10:36:47 -07001816 SkImageInfo info = SkImageInfo::MakeN32Premul(width, height);
reede8f30622016-03-23 18:59:25 -07001817 auto surface = get_ref<SkSurface>(L, 1)->makeSurface(info);
halcanary96fcdcc2015-08-27 07:41:13 -07001818 if (nullptr == surface) {
reed485557f2014-10-12 10:36:47 -07001819 lua_pushnil(L);
1820 } else {
reede8f30622016-03-23 18:59:25 -07001821 push_ref(L, surface);
reed485557f2014-10-12 10:36:47 -07001822 }
1823 return 1;
1824}
1825
1826static int lsurface_gc(lua_State* L) {
1827 get_ref<SkSurface>(L, 1)->unref();
1828 return 0;
1829}
1830
1831static const struct luaL_Reg gSkSurface_Methods[] = {
1832 { "width", lsurface_width },
1833 { "height", lsurface_height },
1834 { "getCanvas", lsurface_getCanvas },
1835 { "newImageSnapshot", lsurface_newImageSnapshot },
1836 { "newSurface", lsurface_newSurface },
1837 { "__gc", lsurface_gc },
halcanary96fcdcc2015-08-27 07:41:13 -07001838 { nullptr, nullptr }
reed485557f2014-10-12 10:36:47 -07001839};
1840
1841///////////////////////////////////////////////////////////////////////////////
1842
reed96affcd2014-10-13 12:38:04 -07001843static int lpicturerecorder_beginRecording(lua_State* L) {
1844 const SkScalar w = lua2scalar_def(L, 2, -1);
1845 const SkScalar h = lua2scalar_def(L, 3, -1);
1846 if (w <= 0 || h <= 0) {
1847 lua_pushnil(L);
1848 return 1;
1849 }
1850
1851 SkCanvas* canvas = get_obj<SkPictureRecorder>(L, 1)->beginRecording(w, h);
halcanary96fcdcc2015-08-27 07:41:13 -07001852 if (nullptr == canvas) {
reed96affcd2014-10-13 12:38:04 -07001853 lua_pushnil(L);
1854 return 1;
1855 }
1856
1857 push_ref(L, canvas);
1858 return 1;
1859}
1860
1861static int lpicturerecorder_getCanvas(lua_State* L) {
1862 SkCanvas* canvas = get_obj<SkPictureRecorder>(L, 1)->getRecordingCanvas();
halcanary96fcdcc2015-08-27 07:41:13 -07001863 if (nullptr == canvas) {
reed96affcd2014-10-13 12:38:04 -07001864 lua_pushnil(L);
1865 return 1;
1866 }
1867 push_ref(L, canvas);
1868 return 1;
1869}
1870
1871static int lpicturerecorder_endRecording(lua_State* L) {
reedca2622b2016-03-18 07:25:55 -07001872 sk_sp<SkPicture> pic = get_obj<SkPictureRecorder>(L, 1)->finishRecordingAsPicture();
1873 if (!pic) {
reed96affcd2014-10-13 12:38:04 -07001874 lua_pushnil(L);
1875 return 1;
1876 }
reedca2622b2016-03-18 07:25:55 -07001877 push_ref(L, std::move(pic));
reed96affcd2014-10-13 12:38:04 -07001878 return 1;
1879}
1880
1881static int lpicturerecorder_gc(lua_State* L) {
1882 get_obj<SkPictureRecorder>(L, 1)->~SkPictureRecorder();
1883 return 0;
1884}
1885
1886static const struct luaL_Reg gSkPictureRecorder_Methods[] = {
1887 { "beginRecording", lpicturerecorder_beginRecording },
1888 { "getCanvas", lpicturerecorder_getCanvas },
1889 { "endRecording", lpicturerecorder_endRecording },
1890 { "__gc", lpicturerecorder_gc },
halcanary96fcdcc2015-08-27 07:41:13 -07001891 { nullptr, nullptr }
reed96affcd2014-10-13 12:38:04 -07001892};
1893
1894///////////////////////////////////////////////////////////////////////////////
1895
1896static int lpicture_width(lua_State* L) {
1897 lua_pushnumber(L, get_ref<SkPicture>(L, 1)->cullRect().width());
1898 return 1;
1899}
1900
1901static int lpicture_height(lua_State* L) {
1902 lua_pushnumber(L, get_ref<SkPicture>(L, 1)->cullRect().height());
1903 return 1;
1904}
1905
1906static int lpicture_gc(lua_State* L) {
1907 get_ref<SkPicture>(L, 1)->unref();
1908 return 0;
1909}
1910
1911static const struct luaL_Reg gSkPicture_Methods[] = {
1912 { "width", lpicture_width },
1913 { "height", lpicture_height },
1914 { "__gc", lpicture_gc },
halcanary96fcdcc2015-08-27 07:41:13 -07001915 { nullptr, nullptr }
reed96affcd2014-10-13 12:38:04 -07001916};
1917
1918///////////////////////////////////////////////////////////////////////////////
1919
reed1b6ab442014-11-03 19:55:41 -08001920static int ltextblob_bounds(lua_State* L) {
1921 SkLua(L).pushRect(get_ref<SkTextBlob>(L, 1)->bounds());
1922 return 1;
1923}
1924
1925static int ltextblob_gc(lua_State* L) {
1926 SkSafeUnref(get_ref<SkTextBlob>(L, 1));
1927 return 0;
1928}
1929
1930static const struct luaL_Reg gSkTextBlob_Methods[] = {
1931 { "bounds", ltextblob_bounds },
1932 { "__gc", ltextblob_gc },
halcanary96fcdcc2015-08-27 07:41:13 -07001933 { nullptr, nullptr }
reed1b6ab442014-11-03 19:55:41 -08001934};
1935
1936///////////////////////////////////////////////////////////////////////////////
1937
reed36c9c112014-11-04 10:58:42 -08001938static int ltypeface_getFamilyName(lua_State* L) {
1939 SkString str;
1940 get_ref<SkTypeface>(L, 1)->getFamilyName(&str);
1941 lua_pushstring(L, str.c_str());
1942 return 1;
1943}
1944
1945static int ltypeface_getStyle(lua_State* L) {
1946 lua_pushnumber(L, (double)get_ref<SkTypeface>(L, 1)->style());
1947 return 1;
1948}
1949
mike@reedtribe.orge6469f12013-06-08 03:15:47 +00001950static int ltypeface_gc(lua_State* L) {
commit-bot@chromium.org77887af2013-12-17 14:28:19 +00001951 SkSafeUnref(get_ref<SkTypeface>(L, 1));
mike@reedtribe.orge6469f12013-06-08 03:15:47 +00001952 return 0;
1953}
1954
1955static const struct luaL_Reg gSkTypeface_Methods[] = {
reed36c9c112014-11-04 10:58:42 -08001956 { "getFamilyName", ltypeface_getFamilyName },
1957 { "getStyle", ltypeface_getStyle },
mike@reedtribe.orge6469f12013-06-08 03:15:47 +00001958 { "__gc", ltypeface_gc },
halcanary96fcdcc2015-08-27 07:41:13 -07001959 { nullptr, nullptr }
mike@reedtribe.orge6469f12013-06-08 03:15:47 +00001960};
1961
1962///////////////////////////////////////////////////////////////////////////////
1963
reed@google.com74ce6f02013-05-22 15:13:18 +00001964class AutoCallLua {
1965public:
1966 AutoCallLua(lua_State* L, const char func[], const char verb[]) : fL(L) {
1967 lua_getglobal(L, func);
1968 if (!lua_isfunction(L, -1)) {
1969 int t = lua_type(L, -1);
1970 SkDebugf("--- expected function %d\n", t);
1971 }
skia.committer@gmail.com2d816ad2013-05-23 07:01:22 +00001972
reed@google.com74ce6f02013-05-22 15:13:18 +00001973 lua_newtable(L);
1974 setfield_string(L, "verb", verb);
1975 }
skia.committer@gmail.com2d816ad2013-05-23 07:01:22 +00001976
reed@google.com74ce6f02013-05-22 15:13:18 +00001977 ~AutoCallLua() {
1978 if (lua_pcall(fL, 1, 0, 0) != LUA_OK) {
1979 SkDebugf("lua err: %s\n", lua_tostring(fL, -1));
1980 }
1981 lua_settop(fL, -1);
1982 }
skia.committer@gmail.com2d816ad2013-05-23 07:01:22 +00001983
reed@google.com74ce6f02013-05-22 15:13:18 +00001984private:
1985 lua_State* fL;
1986};
1987
1988#define AUTO_LUA(verb) AutoCallLua acl(fL, fFunc.c_str(), verb)
1989
1990///////////////////////////////////////////////////////////////////////////////
1991
mike@reedtribe.orgfb858242013-06-08 16:39:44 +00001992static int lsk_newDocumentPDF(lua_State* L) {
halcanary96fcdcc2015-08-27 07:41:13 -07001993 const char* file = nullptr;
mike@reedtribe.orgfb858242013-06-08 16:39:44 +00001994 if (lua_gettop(L) > 0 && lua_isstring(L, 1)) {
halcanary96fcdcc2015-08-27 07:41:13 -07001995 file = lua_tolstring(L, 1, nullptr);
mike@reedtribe.orgfb858242013-06-08 16:39:44 +00001996 }
1997
halcanary676ab682016-05-03 12:10:04 -07001998 sk_sp<SkDocument> doc = SkDocument::MakePDF(file);
halcanary96fcdcc2015-08-27 07:41:13 -07001999 if (nullptr == doc) {
mike@reedtribe.orgfb858242013-06-08 16:39:44 +00002000 // do I need to push a nil on the stack and return 1?
2001 return 0;
2002 } else {
halcanary676ab682016-05-03 12:10:04 -07002003 push_ref(L, std::move(doc));
mike@reedtribe.orgfb858242013-06-08 16:39:44 +00002004 return 1;
2005 }
2006}
2007
reed468b1812014-10-19 11:42:54 -07002008static int lsk_newBlurImageFilter(lua_State* L) {
2009 SkScalar sigmaX = lua2scalar_def(L, 1, 0);
2010 SkScalar sigmaY = lua2scalar_def(L, 2, 0);
robertphillips6e7025a2016-04-04 04:31:25 -07002011 sk_sp<SkImageFilter> imf(SkBlurImageFilter::Make(sigmaX, sigmaY, nullptr));
2012 if (!imf) {
reed468b1812014-10-19 11:42:54 -07002013 lua_pushnil(L);
2014 } else {
robertphillips6e7025a2016-04-04 04:31:25 -07002015 push_ref(L, std::move(imf));
reed9fbc3f32014-10-21 07:12:58 -07002016 }
2017 return 1;
2018}
2019
2020static int lsk_newLinearGradient(lua_State* L) {
2021 SkScalar x0 = lua2scalar_def(L, 1, 0);
2022 SkScalar y0 = lua2scalar_def(L, 2, 0);
2023 SkColor c0 = lua2color(L, 3);
2024 SkScalar x1 = lua2scalar_def(L, 4, 0);
2025 SkScalar y1 = lua2scalar_def(L, 5, 0);
2026 SkColor c1 = lua2color(L, 6);
2027
2028 SkPoint pts[] = { { x0, y0 }, { x1, y1 } };
2029 SkColor colors[] = { c0, c1 };
robertphillips6e7025a2016-04-04 04:31:25 -07002030 sk_sp<SkShader> s(SkGradientShader::MakeLinear(pts, colors, nullptr, 2,
2031 SkShader::kClamp_TileMode));
reed2ad1aa62016-03-09 09:50:50 -08002032 if (!s) {
reed9fbc3f32014-10-21 07:12:58 -07002033 lua_pushnil(L);
2034 } else {
reed2ad1aa62016-03-09 09:50:50 -08002035 push_ref(L, std::move(s));
reed468b1812014-10-19 11:42:54 -07002036 }
2037 return 1;
2038}
2039
reedbdc49ae2014-10-14 09:34:52 -07002040static int lsk_newMatrix(lua_State* L) {
2041 push_new<SkMatrix>(L)->reset();
2042 return 1;
2043}
2044
reed@google.com3597b732013-05-22 20:12:50 +00002045static int lsk_newPaint(lua_State* L) {
2046 push_new<SkPaint>(L);
2047 return 1;
2048}
2049
2050static int lsk_newPath(lua_State* L) {
2051 push_new<SkPath>(L);
2052 return 1;
2053}
2054
reed96affcd2014-10-13 12:38:04 -07002055static int lsk_newPictureRecorder(lua_State* L) {
2056 push_new<SkPictureRecorder>(L);
2057 return 1;
2058}
2059
reed@google.com3597b732013-05-22 20:12:50 +00002060static int lsk_newRRect(lua_State* L) {
reedbdc49ae2014-10-14 09:34:52 -07002061 push_new<SkRRect>(L)->setEmpty();
reed@google.com3597b732013-05-22 20:12:50 +00002062 return 1;
2063}
2064
reed1b6ab442014-11-03 19:55:41 -08002065#include "SkTextBox.h"
2066// Sk.newTextBlob(text, rect, paint)
2067static int lsk_newTextBlob(lua_State* L) {
halcanary96fcdcc2015-08-27 07:41:13 -07002068 const char* text = lua_tolstring(L, 1, nullptr);
reed1b6ab442014-11-03 19:55:41 -08002069 SkRect bounds;
2070 lua2rect(L, 2, &bounds);
2071 const SkPaint& paint = *get_obj<SkPaint>(L, 3);
2072
2073 SkTextBox box;
2074 box.setMode(SkTextBox::kLineBreak_Mode);
2075 box.setBox(bounds);
2076 box.setText(text, strlen(text), paint);
2077
2078 SkScalar newBottom;
fmalita37283c22016-09-13 10:00:23 -07002079 push_ref<SkTextBlob>(L, box.snapshotTextBlob(&newBottom));
reed1b6ab442014-11-03 19:55:41 -08002080 SkLua(L).pushScalar(newBottom);
2081 return 2;
2082}
2083
mike@reedtribe.orge6469f12013-06-08 03:15:47 +00002084static int lsk_newTypeface(lua_State* L) {
halcanary96fcdcc2015-08-27 07:41:13 -07002085 const char* name = nullptr;
mike@reedtribe.orge6469f12013-06-08 03:15:47 +00002086 int style = SkTypeface::kNormal;
skia.committer@gmail.com63193672013-06-08 07:01:13 +00002087
mike@reedtribe.orge6469f12013-06-08 03:15:47 +00002088 int count = lua_gettop(L);
2089 if (count > 0 && lua_isstring(L, 1)) {
halcanary96fcdcc2015-08-27 07:41:13 -07002090 name = lua_tolstring(L, 1, nullptr);
mike@reedtribe.orge6469f12013-06-08 03:15:47 +00002091 if (count > 1 && lua_isnumber(L, 2)) {
halcanary96fcdcc2015-08-27 07:41:13 -07002092 style = lua_tointegerx(L, 2, nullptr) & SkTypeface::kBoldItalic;
mike@reedtribe.orge6469f12013-06-08 03:15:47 +00002093 }
2094 }
2095
mbocee6a9912016-05-31 11:42:36 -07002096 sk_sp<SkTypeface> face(SkTypeface::MakeFromName(name, SkFontStyle::FromOldStyle(style)));
mike@reedtribe.orge6469f12013-06-08 03:15:47 +00002097// SkDebugf("---- name <%s> style=%d, face=%p ref=%d\n", name, style, face, face->getRefCnt());
halcanary96fcdcc2015-08-27 07:41:13 -07002098 if (nullptr == face) {
bungeman13b9c952016-05-12 10:09:30 -07002099 face = SkTypeface::MakeDefault();
mike@reedtribe.orge6469f12013-06-08 03:15:47 +00002100 }
bungeman13b9c952016-05-12 10:09:30 -07002101 push_ref(L, std::move(face));
mike@reedtribe.orge6469f12013-06-08 03:15:47 +00002102 return 1;
2103}
reed@google.com3597b732013-05-22 20:12:50 +00002104
reed485557f2014-10-12 10:36:47 -07002105static int lsk_newRasterSurface(lua_State* L) {
reed7b864662014-11-04 13:24:47 -08002106 int width = lua2int_def(L, 1, 0);
reed485557f2014-10-12 10:36:47 -07002107 int height = lua2int_def(L, 2, 0);
2108 SkImageInfo info = SkImageInfo::MakeN32Premul(width, height);
robertphillips702edbd2015-06-23 06:26:08 -07002109 SkSurfaceProps props(0, kUnknown_SkPixelGeometry);
reede8f30622016-03-23 18:59:25 -07002110 auto surface = SkSurface::MakeRaster(info, &props);
halcanary96fcdcc2015-08-27 07:41:13 -07002111 if (nullptr == surface) {
reed485557f2014-10-12 10:36:47 -07002112 lua_pushnil(L);
2113 } else {
reede8f30622016-03-23 18:59:25 -07002114 push_ref(L, surface);
reed485557f2014-10-12 10:36:47 -07002115 }
2116 return 1;
2117}
2118
mike@reedtribe.org792bbd12013-06-11 02:20:28 +00002119static int lsk_loadImage(lua_State* L) {
2120 if (lua_gettop(L) > 0 && lua_isstring(L, 1)) {
halcanary96fcdcc2015-08-27 07:41:13 -07002121 const char* name = lua_tolstring(L, 1, nullptr);
reed9ce9d672016-03-17 10:51:11 -07002122 sk_sp<SkData> data(SkData::MakeFromFileName(name));
2123 if (data) {
2124 auto image = SkImage::MakeFromEncoded(std::move(data));
mike@reedtribe.org792bbd12013-06-11 02:20:28 +00002125 if (image) {
reed9ce9d672016-03-17 10:51:11 -07002126 push_ref(L, std::move(image));
mike@reedtribe.org792bbd12013-06-11 02:20:28 +00002127 return 1;
2128 }
2129 }
2130 }
2131 return 0;
2132}
2133
reed@google.com3597b732013-05-22 20:12:50 +00002134static void register_Sk(lua_State* L) {
2135 lua_newtable(L);
2136 lua_pushvalue(L, -1);
2137 lua_setglobal(L, "Sk");
2138 // the Sk table is still on top
2139
mike@reedtribe.orgfb858242013-06-08 16:39:44 +00002140 setfield_function(L, "newDocumentPDF", lsk_newDocumentPDF);
mike@reedtribe.org792bbd12013-06-11 02:20:28 +00002141 setfield_function(L, "loadImage", lsk_loadImage);
reed468b1812014-10-19 11:42:54 -07002142 setfield_function(L, "newBlurImageFilter", lsk_newBlurImageFilter);
reed9fbc3f32014-10-21 07:12:58 -07002143 setfield_function(L, "newLinearGradient", lsk_newLinearGradient);
reedbdc49ae2014-10-14 09:34:52 -07002144 setfield_function(L, "newMatrix", lsk_newMatrix);
reed@google.com3597b732013-05-22 20:12:50 +00002145 setfield_function(L, "newPaint", lsk_newPaint);
2146 setfield_function(L, "newPath", lsk_newPath);
reed96affcd2014-10-13 12:38:04 -07002147 setfield_function(L, "newPictureRecorder", lsk_newPictureRecorder);
reed@google.com3597b732013-05-22 20:12:50 +00002148 setfield_function(L, "newRRect", lsk_newRRect);
reed485557f2014-10-12 10:36:47 -07002149 setfield_function(L, "newRasterSurface", lsk_newRasterSurface);
reed1b6ab442014-11-03 19:55:41 -08002150 setfield_function(L, "newTextBlob", lsk_newTextBlob);
mike@reedtribe.orge6469f12013-06-08 03:15:47 +00002151 setfield_function(L, "newTypeface", lsk_newTypeface);
reed@google.com3597b732013-05-22 20:12:50 +00002152 lua_pop(L, 1); // pop off the Sk table
2153}
2154
reed@google.com74ce6f02013-05-22 15:13:18 +00002155#define REG_CLASS(L, C) \
2156 do { \
reed@google.com3597b732013-05-22 20:12:50 +00002157 luaL_newmetatable(L, get_mtname<C>()); \
reed@google.com74ce6f02013-05-22 15:13:18 +00002158 lua_pushvalue(L, -1); \
2159 lua_setfield(L, -2, "__index"); \
2160 luaL_setfuncs(L, g##C##_Methods, 0); \
2161 lua_pop(L, 1); /* pop off the meta-table */ \
2162 } while (0)
2163
2164void SkLua::Load(lua_State* L) {
reed@google.com3597b732013-05-22 20:12:50 +00002165 register_Sk(L);
reed@google.com74ce6f02013-05-22 15:13:18 +00002166 REG_CLASS(L, SkCanvas);
reed22a517f2015-12-04 20:45:59 -08002167 REG_CLASS(L, SkColorFilter);
mike@reedtribe.orgfb858242013-06-08 16:39:44 +00002168 REG_CLASS(L, SkDocument);
mike@reedtribe.org792bbd12013-06-11 02:20:28 +00002169 REG_CLASS(L, SkImage);
reed468b1812014-10-19 11:42:54 -07002170 REG_CLASS(L, SkImageFilter);
reed1b6ab442014-11-03 19:55:41 -08002171 REG_CLASS(L, SkMatrix);
reed@google.com74ce6f02013-05-22 15:13:18 +00002172 REG_CLASS(L, SkPaint);
commit-bot@chromium.org1301bf32014-03-17 23:09:47 +00002173 REG_CLASS(L, SkPath);
2174 REG_CLASS(L, SkPathEffect);
reed96affcd2014-10-13 12:38:04 -07002175 REG_CLASS(L, SkPicture);
2176 REG_CLASS(L, SkPictureRecorder);
reed@google.com74ce6f02013-05-22 15:13:18 +00002177 REG_CLASS(L, SkRRect);
reed@google.com5fdc9832013-07-24 15:47:52 +00002178 REG_CLASS(L, SkShader);
reed485557f2014-10-12 10:36:47 -07002179 REG_CLASS(L, SkSurface);
reed1b6ab442014-11-03 19:55:41 -08002180 REG_CLASS(L, SkTextBlob);
mike@reedtribe.orge6469f12013-06-08 03:15:47 +00002181 REG_CLASS(L, SkTypeface);
robertphillips233bab92016-01-21 09:05:32 -08002182 REG_CLASS(L, SkXfermode);
reed@google.com74ce6f02013-05-22 15:13:18 +00002183}
zachr@google.com28c27c82013-06-20 17:15:05 +00002184
reed@google.com7bce9982013-06-20 17:40:21 +00002185extern "C" int luaopen_skia(lua_State* L);
zachr@google.com28c27c82013-06-20 17:15:05 +00002186extern "C" int luaopen_skia(lua_State* L) {
2187 SkLua::Load(L);
2188 return 0;
2189}