blob: 9369a6bd9db4ed9425e32d5eb5a205c787fb6603 [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
reed@google.com74ce6f02013-05-22 15:13:18 +0000224void SkLua::pushBool(bool value, const char key[]) {
225 lua_pushboolean(fL, value);
226 CHECK_SETFIELD(key);
227}
228
229void SkLua::pushString(const char str[], const char key[]) {
230 lua_pushstring(fL, str);
231 CHECK_SETFIELD(key);
232}
233
reed@google.come3823fd2013-05-30 18:55:14 +0000234void SkLua::pushString(const char str[], size_t length, const char key[]) {
235 // TODO: how to do this w/o making a copy?
236 SkString s(str, length);
237 lua_pushstring(fL, s.c_str());
238 CHECK_SETFIELD(key);
239}
240
reed@google.com74ce6f02013-05-22 15:13:18 +0000241void SkLua::pushString(const SkString& str, const char key[]) {
242 lua_pushstring(fL, str.c_str());
243 CHECK_SETFIELD(key);
244}
245
246void SkLua::pushColor(SkColor color, const char key[]) {
247 lua_newtable(fL);
248 setfield_number(fL, "a", SkColorGetA(color) / 255.0);
249 setfield_number(fL, "r", SkColorGetR(color) / 255.0);
250 setfield_number(fL, "g", SkColorGetG(color) / 255.0);
251 setfield_number(fL, "b", SkColorGetB(color) / 255.0);
252 CHECK_SETFIELD(key);
253}
254
reed@google.come3823fd2013-05-30 18:55:14 +0000255void SkLua::pushU32(uint32_t value, const char key[]) {
256 lua_pushnumber(fL, (double)value);
257 CHECK_SETFIELD(key);
258}
259
reed@google.com74ce6f02013-05-22 15:13:18 +0000260void SkLua::pushScalar(SkScalar value, const char key[]) {
261 lua_pushnumber(fL, SkScalarToLua(value));
262 CHECK_SETFIELD(key);
263}
264
reed@google.come3823fd2013-05-30 18:55:14 +0000265void SkLua::pushArrayU16(const uint16_t array[], int count, const char key[]) {
266 lua_newtable(fL);
267 for (int i = 0; i < count; ++i) {
268 // make it base-1 to match lua convention
269 setarray_number(fL, i + 1, (double)array[i]);
270 }
271 CHECK_SETFIELD(key);
272}
273
commit-bot@chromium.org1301bf32014-03-17 23:09:47 +0000274void SkLua::pushArrayPoint(const SkPoint array[], int count, const char key[]) {
275 lua_newtable(fL);
276 for (int i = 0; i < count; ++i) {
277 // make it base-1 to match lua convention
278 lua_newtable(fL);
279 this->pushScalar(array[i].fX, "x");
280 this->pushScalar(array[i].fY, "y");
281 lua_rawseti(fL, -2, i + 1);
282 }
283 CHECK_SETFIELD(key);
284}
285
commit-bot@chromium.org4d803a92014-05-14 16:03:14 +0000286void SkLua::pushArrayScalar(const SkScalar array[], int count, const char key[]) {
287 lua_newtable(fL);
288 for (int i = 0; i < count; ++i) {
289 // make it base-1 to match lua convention
290 setarray_scalar(fL, i + 1, array[i]);
291 }
292 CHECK_SETFIELD(key);
293}
294
reed@google.com74ce6f02013-05-22 15:13:18 +0000295void SkLua::pushRect(const SkRect& r, const char key[]) {
296 lua_newtable(fL);
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +0000297 setfield_scalar(fL, "left", r.fLeft);
298 setfield_scalar(fL, "top", r.fTop);
299 setfield_scalar(fL, "right", r.fRight);
300 setfield_scalar(fL, "bottom", r.fBottom);
reed@google.com74ce6f02013-05-22 15:13:18 +0000301 CHECK_SETFIELD(key);
302}
303
304void SkLua::pushRRect(const SkRRect& rr, const char key[]) {
305 push_obj(fL, rr);
306 CHECK_SETFIELD(key);
307}
308
commit-bot@chromium.org4d803a92014-05-14 16:03:14 +0000309void SkLua::pushDash(const SkPathEffect::DashInfo& info, const char key[]) {
310 lua_newtable(fL);
311 setfield_scalar(fL, "phase", info.fPhase);
312 this->pushArrayScalar(info.fIntervals, info.fCount, "intervals");
313 CHECK_SETFIELD(key);
314}
315
316
reed@google.com74ce6f02013-05-22 15:13:18 +0000317void SkLua::pushMatrix(const SkMatrix& matrix, const char key[]) {
318 push_obj(fL, matrix);
319 CHECK_SETFIELD(key);
320}
321
322void SkLua::pushPaint(const SkPaint& paint, const char key[]) {
323 push_obj(fL, paint);
324 CHECK_SETFIELD(key);
325}
326
327void SkLua::pushPath(const SkPath& path, const char key[]) {
328 push_obj(fL, path);
329 CHECK_SETFIELD(key);
330}
331
332void SkLua::pushCanvas(SkCanvas* canvas, const char key[]) {
333 push_ref(fL, canvas);
334 CHECK_SETFIELD(key);
335}
336
fmalitab7425172014-08-26 07:56:44 -0700337void SkLua::pushTextBlob(const SkTextBlob* blob, const char key[]) {
338 push_ref(fL, const_cast<SkTextBlob*>(blob));
339 CHECK_SETFIELD(key);
340}
341
commit-bot@chromium.org5cc25352014-02-24 18:59:48 +0000342static const char* element_type(SkClipStack::Element::Type type) {
343 switch (type) {
344 case SkClipStack::Element::kEmpty_Type:
345 return "empty";
346 case SkClipStack::Element::kRect_Type:
347 return "rect";
348 case SkClipStack::Element::kRRect_Type:
349 return "rrect";
350 case SkClipStack::Element::kPath_Type:
351 return "path";
352 }
353 return "unknown";
354}
355
356static const char* region_op(SkRegion::Op op) {
357 switch (op) {
358 case SkRegion::kDifference_Op:
359 return "difference";
360 case SkRegion::kIntersect_Op:
361 return "intersect";
362 case SkRegion::kUnion_Op:
363 return "union";
364 case SkRegion::kXOR_Op:
365 return "xor";
366 case SkRegion::kReverseDifference_Op:
367 return "reverse-difference";
368 case SkRegion::kReplace_Op:
369 return "replace";
370 }
371 return "unknown";
372}
373
374void SkLua::pushClipStack(const SkClipStack& stack, const char* key) {
375 lua_newtable(fL);
376 SkClipStack::B2TIter iter(stack);
377 const SkClipStack::Element* element;
378 int i = 0;
bsalomon49f085d2014-09-05 13:34:00 -0700379 while ((element = iter.next())) {
bsalomon@google.com4ebe3822014-02-26 20:22:32 +0000380 this->pushClipStackElement(*element);
commit-bot@chromium.org5cc25352014-02-24 18:59:48 +0000381 lua_rawseti(fL, -2, ++i);
382 }
383 CHECK_SETFIELD(key);
384}
385
bsalomon@google.com4ebe3822014-02-26 20:22:32 +0000386void SkLua::pushClipStackElement(const SkClipStack::Element& element, const char* key) {
387 lua_newtable(fL);
388 SkClipStack::Element::Type type = element.getType();
389 this->pushString(element_type(type), "type");
390 switch (type) {
391 case SkClipStack::Element::kEmpty_Type:
392 break;
393 case SkClipStack::Element::kRect_Type:
394 this->pushRect(element.getRect(), "rect");
395 break;
396 case SkClipStack::Element::kRRect_Type:
397 this->pushRRect(element.getRRect(), "rrect");
398 break;
399 case SkClipStack::Element::kPath_Type:
400 this->pushPath(element.getPath(), "path");
401 break;
402 }
403 this->pushString(region_op(element.getOp()), "op");
404 this->pushBool(element.isAA(), "aa");
405 CHECK_SETFIELD(key);
406}
407
408
reed@google.com74ce6f02013-05-22 15:13:18 +0000409///////////////////////////////////////////////////////////////////////////////
410///////////////////////////////////////////////////////////////////////////////
411
reed@google.com74ce6f02013-05-22 15:13:18 +0000412static SkScalar getfield_scalar(lua_State* L, int index, const char key[]) {
413 SkASSERT(lua_istable(L, index));
414 lua_pushstring(L, key);
415 lua_gettable(L, index);
mtklein8aacf202014-12-18 13:29:54 -0800416
reed@google.com74ce6f02013-05-22 15:13:18 +0000417 SkScalar value = lua2scalar(L, -1);
418 lua_pop(L, 1);
419 return value;
420}
421
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +0000422static SkScalar getfield_scalar_default(lua_State* L, int index, const char key[], SkScalar def) {
423 SkASSERT(lua_istable(L, index));
424 lua_pushstring(L, key);
425 lua_gettable(L, index);
skia.committer@gmail.com370c5342013-06-09 07:01:05 +0000426
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +0000427 SkScalar value;
428 if (lua_isnil(L, -1)) {
429 value = def;
430 } else {
431 value = lua2scalar(L, -1);
432 }
433 lua_pop(L, 1);
434 return value;
435}
436
reed468b1812014-10-19 11:42:54 -0700437static SkScalar byte2unit(U8CPU byte) {
438 return byte / 255.0f;
439}
440
reed@google.com74ce6f02013-05-22 15:13:18 +0000441static U8CPU unit2byte(SkScalar x) {
442 if (x <= 0) {
443 return 0;
444 } else if (x >= 1) {
445 return 255;
446 } else {
447 return SkScalarRoundToInt(x * 255);
448 }
449}
450
451static SkColor lua2color(lua_State* L, int index) {
reed485557f2014-10-12 10:36:47 -0700452 return SkColorSetARGB(unit2byte(getfield_scalar_default(L, index, "a", 1)),
453 unit2byte(getfield_scalar_default(L, index, "r", 0)),
454 unit2byte(getfield_scalar_default(L, index, "g", 0)),
455 unit2byte(getfield_scalar_default(L, index, "b", 0)));
reed@google.com74ce6f02013-05-22 15:13:18 +0000456}
457
458static SkRect* lua2rect(lua_State* L, int index, SkRect* rect) {
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +0000459 rect->set(getfield_scalar_default(L, index, "left", 0),
460 getfield_scalar_default(L, index, "top", 0),
reed@google.com74ce6f02013-05-22 15:13:18 +0000461 getfield_scalar(L, index, "right"),
462 getfield_scalar(L, index, "bottom"));
463 return rect;
464}
465
reedf355df52014-10-12 12:18:40 -0700466static int lcanvas_clear(lua_State* L) {
467 get_ref<SkCanvas>(L, 1)->clear(0);
468 return 0;
469}
470
reed@google.com74ce6f02013-05-22 15:13:18 +0000471static int lcanvas_drawColor(lua_State* L) {
472 get_ref<SkCanvas>(L, 1)->drawColor(lua2color(L, 2));
473 return 0;
474}
475
reed9fbc3f32014-10-21 07:12:58 -0700476static int lcanvas_drawPaint(lua_State* L) {
477 get_ref<SkCanvas>(L, 1)->drawPaint(*get_obj<SkPaint>(L, 2));
478 return 0;
479}
480
reed@google.com74ce6f02013-05-22 15:13:18 +0000481static int lcanvas_drawRect(lua_State* L) {
482 SkRect rect;
reed7a72c672014-11-07 10:23:55 -0800483 lua2rect(L, 2, &rect);
484 const SkPaint* paint = get_obj<SkPaint>(L, 3);
485 get_ref<SkCanvas>(L, 1)->drawRect(rect, *paint);
reed@google.com74ce6f02013-05-22 15:13:18 +0000486 return 0;
487}
488
489static int lcanvas_drawOval(lua_State* L) {
490 SkRect rect;
491 get_ref<SkCanvas>(L, 1)->drawOval(*lua2rect(L, 2, &rect),
492 *get_obj<SkPaint>(L, 3));
493 return 0;
494}
495
496static int lcanvas_drawCircle(lua_State* L) {
497 get_ref<SkCanvas>(L, 1)->drawCircle(lua2scalar(L, 2),
498 lua2scalar(L, 3),
499 lua2scalar(L, 4),
500 *get_obj<SkPaint>(L, 5));
501 return 0;
502}
503
reed485557f2014-10-12 10:36:47 -0700504static SkPaint* lua2OptionalPaint(lua_State* L, int index, SkPaint* paint) {
505 if (lua_isnumber(L, index)) {
506 paint->setAlpha(SkScalarRoundToInt(lua2scalar(L, index) * 255));
507 return paint;
reedf355df52014-10-12 12:18:40 -0700508 } else if (lua_isuserdata(L, index)) {
reed485557f2014-10-12 10:36:47 -0700509 const SkPaint* ptr = get_obj<SkPaint>(L, index);
510 if (ptr) {
511 *paint = *ptr;
512 return paint;
513 }
514 }
halcanary96fcdcc2015-08-27 07:41:13 -0700515 return nullptr;
reed485557f2014-10-12 10:36:47 -0700516}
517
mike@reedtribe.org792bbd12013-06-11 02:20:28 +0000518static int lcanvas_drawImage(lua_State* L) {
519 SkCanvas* canvas = get_ref<SkCanvas>(L, 1);
520 SkImage* image = get_ref<SkImage>(L, 2);
halcanary96fcdcc2015-08-27 07:41:13 -0700521 if (nullptr == image) {
mike@reedtribe.org792bbd12013-06-11 02:20:28 +0000522 return 0;
523 }
524 SkScalar x = lua2scalar(L, 3);
525 SkScalar y = lua2scalar(L, 4);
526
527 SkPaint paint;
reed485557f2014-10-12 10:36:47 -0700528 canvas->drawImage(image, x, y, lua2OptionalPaint(L, 5, &paint));
mike@reedtribe.org792bbd12013-06-11 02:20:28 +0000529 return 0;
530}
531
reedba5fb932014-10-10 15:28:19 -0700532static int lcanvas_drawImageRect(lua_State* L) {
533 SkCanvas* canvas = get_ref<SkCanvas>(L, 1);
534 SkImage* image = get_ref<SkImage>(L, 2);
halcanary96fcdcc2015-08-27 07:41:13 -0700535 if (nullptr == image) {
reedba5fb932014-10-10 15:28:19 -0700536 return 0;
537 }
538
539 SkRect srcR, dstR;
halcanary96fcdcc2015-08-27 07:41:13 -0700540 SkRect* srcRPtr = nullptr;
reedba5fb932014-10-10 15:28:19 -0700541 if (!lua_isnil(L, 3)) {
542 srcRPtr = lua2rect(L, 3, &srcR);
543 }
544 lua2rect(L, 4, &dstR);
mtklein8aacf202014-12-18 13:29:54 -0800545
reedba5fb932014-10-10 15:28:19 -0700546 SkPaint paint;
reede47829b2015-08-06 10:02:53 -0700547 canvas->legacy_drawImageRect(image, srcRPtr, dstR, lua2OptionalPaint(L, 5, &paint));
reedba5fb932014-10-10 15:28:19 -0700548 return 0;
549}
550
reed7a72c672014-11-07 10:23:55 -0800551static int lcanvas_drawPatch(lua_State* L) {
552 SkPoint cubics[12];
553 SkColor colorStorage[4];
554 SkPoint texStorage[4];
555
halcanary96fcdcc2015-08-27 07:41:13 -0700556 const SkColor* colors = nullptr;
557 const SkPoint* texs = nullptr;
reed7a72c672014-11-07 10:23:55 -0800558
559 getarray_points(L, 2, cubics, 12);
560
561 colorStorage[0] = SK_ColorRED;
562 colorStorage[1] = SK_ColorGREEN;
563 colorStorage[2] = SK_ColorBLUE;
564 colorStorage[3] = SK_ColorGRAY;
565
566 if (lua_isnil(L, 4)) {
567 colors = colorStorage;
568 } else {
569 getarray_points(L, 4, texStorage, 4);
570 texs = texStorage;
571 }
572
halcanary96fcdcc2015-08-27 07:41:13 -0700573 get_ref<SkCanvas>(L, 1)->drawPatch(cubics, colors, texs, nullptr, *get_obj<SkPaint>(L, 5));
reed7a72c672014-11-07 10:23:55 -0800574 return 0;
575}
576
reed@google.comfd345872013-05-22 20:53:42 +0000577static int lcanvas_drawPath(lua_State* L) {
578 get_ref<SkCanvas>(L, 1)->drawPath(*get_obj<SkPath>(L, 2),
579 *get_obj<SkPaint>(L, 3));
580 return 0;
581}
582
reed96affcd2014-10-13 12:38:04 -0700583// drawPicture(pic, x, y, paint)
584static int lcanvas_drawPicture(lua_State* L) {
585 SkCanvas* canvas = get_ref<SkCanvas>(L, 1);
586 SkPicture* picture = get_ref<SkPicture>(L, 2);
587 SkScalar x = lua2scalar_def(L, 3, 0);
588 SkScalar y = lua2scalar_def(L, 4, 0);
halcanary96fcdcc2015-08-27 07:41:13 -0700589 SkMatrix matrix, *matrixPtr = nullptr;
reed96affcd2014-10-13 12:38:04 -0700590 if (x || y) {
591 matrix.setTranslate(x, y);
592 matrixPtr = &matrix;
593 }
594 SkPaint paint;
595 canvas->drawPicture(picture, matrixPtr, lua2OptionalPaint(L, 5, &paint));
596 return 0;
597}
598
mike@reedtribe.orge6469f12013-06-08 03:15:47 +0000599static int lcanvas_drawText(lua_State* L) {
600 if (lua_gettop(L) < 5) {
601 return 0;
602 }
603
604 if (lua_isstring(L, 2) && lua_isnumber(L, 3) && lua_isnumber(L, 4)) {
605 size_t len;
606 const char* text = lua_tolstring(L, 2, &len);
607 get_ref<SkCanvas>(L, 1)->drawText(text, len,
608 lua2scalar(L, 3), lua2scalar(L, 4),
609 *get_obj<SkPaint>(L, 5));
610 }
611 return 0;
612}
613
reed1b6ab442014-11-03 19:55:41 -0800614static int lcanvas_drawTextBlob(lua_State* L) {
615 const SkTextBlob* blob = get_ref<SkTextBlob>(L, 2);
616 SkScalar x = lua2scalar(L, 3);
617 SkScalar y = lua2scalar(L, 4);
618 const SkPaint& paint = *get_obj<SkPaint>(L, 5);
619 get_ref<SkCanvas>(L, 1)->drawTextBlob(blob, x, y, paint);
620 return 0;
621}
622
reed@google.com74ce6f02013-05-22 15:13:18 +0000623static int lcanvas_getSaveCount(lua_State* L) {
624 lua_pushnumber(L, get_ref<SkCanvas>(L, 1)->getSaveCount());
625 return 1;
626}
627
628static int lcanvas_getTotalMatrix(lua_State* L) {
629 SkLua(L).pushMatrix(get_ref<SkCanvas>(L, 1)->getTotalMatrix());
630 return 1;
631}
632
commit-bot@chromium.org5cc25352014-02-24 18:59:48 +0000633static int lcanvas_getClipStack(lua_State* L) {
634 SkLua(L).pushClipStack(*get_ref<SkCanvas>(L, 1)->getClipStack());
635 return 1;
636}
637
bsalomon@google.com4ebe3822014-02-26 20:22:32 +0000638int SkLua::lcanvas_getReducedClipStack(lua_State* L) {
639#if SK_SUPPORT_GPU
640 const SkCanvas* canvas = get_ref<SkCanvas>(L, 1);
senorblancoafc7cce2016-02-02 18:44:15 -0800641 SkIRect queryBounds = canvas->getTopLayerBounds();
bsalomon@google.com4ebe3822014-02-26 20:22:32 +0000642
643 GrReducedClip::ElementList elements;
644 GrReducedClip::InitialState initialState;
645 int32_t genID;
646 SkIRect resultBounds;
647
648 const SkClipStack& stack = *canvas->getClipStack();
649
650 GrReducedClip::ReduceClipStack(stack,
651 queryBounds,
652 &elements,
653 &genID,
654 &initialState,
655 &resultBounds,
halcanary96fcdcc2015-08-27 07:41:13 -0700656 nullptr);
bsalomon@google.com4ebe3822014-02-26 20:22:32 +0000657
658 GrReducedClip::ElementList::Iter iter(elements);
659 int i = 0;
660 lua_newtable(L);
bsalomon49f085d2014-09-05 13:34:00 -0700661 while(iter.get()) {
bsalomon@google.com4ebe3822014-02-26 20:22:32 +0000662 SkLua(L).pushClipStackElement(*iter.get());
663 iter.next();
664 lua_rawseti(L, -2, ++i);
665 }
666 // Currently this only returns the element list to lua, not the initial state or result bounds.
667 // It could return these as additional items on the lua stack.
668 return 1;
669#else
670 return 0;
671#endif
672}
673
mike@reedtribe.orgfb858242013-06-08 16:39:44 +0000674static int lcanvas_save(lua_State* L) {
675 lua_pushinteger(L, get_ref<SkCanvas>(L, 1)->save());
676 return 1;
677}
678
reed86217d82014-10-25 20:44:40 -0700679static int lcanvas_saveLayer(lua_State* L) {
680 SkPaint paint;
halcanary96fcdcc2015-08-27 07:41:13 -0700681 lua_pushinteger(L, get_ref<SkCanvas>(L, 1)->saveLayer(nullptr, lua2OptionalPaint(L, 2, &paint)));
reed86217d82014-10-25 20:44:40 -0700682 return 1;
683}
684
mike@reedtribe.orgfb858242013-06-08 16:39:44 +0000685static int lcanvas_restore(lua_State* L) {
686 get_ref<SkCanvas>(L, 1)->restore();
687 return 0;
688}
689
mike@reedtribe.org1d32cc62013-06-13 01:28:56 +0000690static int lcanvas_scale(lua_State* L) {
691 SkScalar sx = lua2scalar_def(L, 2, 1);
692 SkScalar sy = lua2scalar_def(L, 3, sx);
693 get_ref<SkCanvas>(L, 1)->scale(sx, sy);
694 return 0;
695}
696
reed@google.com3597b732013-05-22 20:12:50 +0000697static int lcanvas_translate(lua_State* L) {
mike@reedtribe.org1d32cc62013-06-13 01:28:56 +0000698 SkScalar tx = lua2scalar_def(L, 2, 0);
699 SkScalar ty = lua2scalar_def(L, 3, 0);
700 get_ref<SkCanvas>(L, 1)->translate(tx, ty);
701 return 0;
702}
703
704static int lcanvas_rotate(lua_State* L) {
705 SkScalar degrees = lua2scalar_def(L, 2, 0);
706 get_ref<SkCanvas>(L, 1)->rotate(degrees);
reed@google.com3597b732013-05-22 20:12:50 +0000707 return 0;
708}
709
reedbdc49ae2014-10-14 09:34:52 -0700710static int lcanvas_concat(lua_State* L) {
711 get_ref<SkCanvas>(L, 1)->concat(*get_obj<SkMatrix>(L, 2));
712 return 0;
713}
714
reed485557f2014-10-12 10:36:47 -0700715static int lcanvas_newSurface(lua_State* L) {
716 int width = lua2int_def(L, 2, 0);
reed7a72c672014-11-07 10:23:55 -0800717 int height = lua2int_def(L, 3, 0);
reed485557f2014-10-12 10:36:47 -0700718 SkImageInfo info = SkImageInfo::MakeN32Premul(width, height);
reede8f30622016-03-23 18:59:25 -0700719 auto surface = get_ref<SkCanvas>(L, 1)->makeSurface(info);
halcanary96fcdcc2015-08-27 07:41:13 -0700720 if (nullptr == surface) {
reed485557f2014-10-12 10:36:47 -0700721 lua_pushnil(L);
722 } else {
reede8f30622016-03-23 18:59:25 -0700723 push_ref(L, surface);
reed485557f2014-10-12 10:36:47 -0700724 }
725 return 1;
726}
727
reed@google.com74ce6f02013-05-22 15:13:18 +0000728static int lcanvas_gc(lua_State* L) {
729 get_ref<SkCanvas>(L, 1)->unref();
730 return 0;
731}
732
bsalomon@google.com4ebe3822014-02-26 20:22:32 +0000733const struct luaL_Reg gSkCanvas_Methods[] = {
reedf355df52014-10-12 12:18:40 -0700734 { "clear", lcanvas_clear },
reed@google.com74ce6f02013-05-22 15:13:18 +0000735 { "drawColor", lcanvas_drawColor },
reed9fbc3f32014-10-21 07:12:58 -0700736 { "drawPaint", lcanvas_drawPaint },
reed@google.com74ce6f02013-05-22 15:13:18 +0000737 { "drawRect", lcanvas_drawRect },
738 { "drawOval", lcanvas_drawOval },
739 { "drawCircle", lcanvas_drawCircle },
mike@reedtribe.org792bbd12013-06-11 02:20:28 +0000740 { "drawImage", lcanvas_drawImage },
reedba5fb932014-10-10 15:28:19 -0700741 { "drawImageRect", lcanvas_drawImageRect },
reed7a72c672014-11-07 10:23:55 -0800742 { "drawPatch", lcanvas_drawPatch },
reed@google.comfd345872013-05-22 20:53:42 +0000743 { "drawPath", lcanvas_drawPath },
reed96affcd2014-10-13 12:38:04 -0700744 { "drawPicture", lcanvas_drawPicture },
mike@reedtribe.orge6469f12013-06-08 03:15:47 +0000745 { "drawText", lcanvas_drawText },
reed1b6ab442014-11-03 19:55:41 -0800746 { "drawTextBlob", lcanvas_drawTextBlob },
reed@google.com74ce6f02013-05-22 15:13:18 +0000747 { "getSaveCount", lcanvas_getSaveCount },
748 { "getTotalMatrix", lcanvas_getTotalMatrix },
commit-bot@chromium.org5cc25352014-02-24 18:59:48 +0000749 { "getClipStack", lcanvas_getClipStack },
bsalomon@google.com4ebe3822014-02-26 20:22:32 +0000750#if SK_SUPPORT_GPU
751 { "getReducedClipStack", SkLua::lcanvas_getReducedClipStack },
752#endif
mike@reedtribe.orgfb858242013-06-08 16:39:44 +0000753 { "save", lcanvas_save },
reed86217d82014-10-25 20:44:40 -0700754 { "saveLayer", lcanvas_saveLayer },
mike@reedtribe.orgfb858242013-06-08 16:39:44 +0000755 { "restore", lcanvas_restore },
mike@reedtribe.org1d32cc62013-06-13 01:28:56 +0000756 { "scale", lcanvas_scale },
reed@google.com3597b732013-05-22 20:12:50 +0000757 { "translate", lcanvas_translate },
mike@reedtribe.org1d32cc62013-06-13 01:28:56 +0000758 { "rotate", lcanvas_rotate },
reedbdc49ae2014-10-14 09:34:52 -0700759 { "concat", lcanvas_concat },
reed485557f2014-10-12 10:36:47 -0700760
761 { "newSurface", lcanvas_newSurface },
762
reed@google.com74ce6f02013-05-22 15:13:18 +0000763 { "__gc", lcanvas_gc },
halcanary96fcdcc2015-08-27 07:41:13 -0700764 { nullptr, nullptr }
reed@google.com74ce6f02013-05-22 15:13:18 +0000765};
766
767///////////////////////////////////////////////////////////////////////////////
768
mike@reedtribe.orgfb858242013-06-08 16:39:44 +0000769static int ldocument_beginPage(lua_State* L) {
halcanary96fcdcc2015-08-27 07:41:13 -0700770 const SkRect* contentPtr = nullptr;
mike@reedtribe.orgfb858242013-06-08 16:39:44 +0000771 push_ref(L, get_ref<SkDocument>(L, 1)->beginPage(lua2scalar(L, 2),
772 lua2scalar(L, 3),
773 contentPtr));
774 return 1;
775}
776
777static int ldocument_endPage(lua_State* L) {
778 get_ref<SkDocument>(L, 1)->endPage();
779 return 0;
780}
781
782static int ldocument_close(lua_State* L) {
783 get_ref<SkDocument>(L, 1)->close();
784 return 0;
785}
786
787static int ldocument_gc(lua_State* L) {
788 get_ref<SkDocument>(L, 1)->unref();
789 return 0;
790}
791
792static const struct luaL_Reg gSkDocument_Methods[] = {
793 { "beginPage", ldocument_beginPage },
794 { "endPage", ldocument_endPage },
795 { "close", ldocument_close },
796 { "__gc", ldocument_gc },
halcanary96fcdcc2015-08-27 07:41:13 -0700797 { nullptr, nullptr }
mike@reedtribe.orgfb858242013-06-08 16:39:44 +0000798};
799
800///////////////////////////////////////////////////////////////////////////////
801
reed@google.com74ce6f02013-05-22 15:13:18 +0000802static int lpaint_isAntiAlias(lua_State* L) {
803 lua_pushboolean(L, get_obj<SkPaint>(L, 1)->isAntiAlias());
804 return 1;
805}
806
807static int lpaint_setAntiAlias(lua_State* L) {
reed@google.com88c9ec92013-05-22 15:43:21 +0000808 get_obj<SkPaint>(L, 1)->setAntiAlias(lua2bool(L, 2));
reed@google.com74ce6f02013-05-22 15:13:18 +0000809 return 0;
810}
811
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +0000812static int lpaint_isDither(lua_State* L) {
813 lua_pushboolean(L, get_obj<SkPaint>(L, 1)->isDither());
814 return 1;
815}
816
reedbb8a0ab2014-11-03 22:32:07 -0800817static int lpaint_setDither(lua_State* L) {
818 get_obj<SkPaint>(L, 1)->setDither(lua2bool(L, 2));
819 return 0;
820}
821
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +0000822static int lpaint_isUnderlineText(lua_State* L) {
823 lua_pushboolean(L, get_obj<SkPaint>(L, 1)->isUnderlineText());
824 return 1;
825}
826
827static int lpaint_isStrikeThruText(lua_State* L) {
828 lua_pushboolean(L, get_obj<SkPaint>(L, 1)->isStrikeThruText());
829 return 1;
830}
831
832static int lpaint_isFakeBoldText(lua_State* L) {
833 lua_pushboolean(L, get_obj<SkPaint>(L, 1)->isFakeBoldText());
834 return 1;
835}
836
837static int lpaint_isLinearText(lua_State* L) {
838 lua_pushboolean(L, get_obj<SkPaint>(L, 1)->isLinearText());
839 return 1;
840}
841
842static int lpaint_isSubpixelText(lua_State* L) {
843 lua_pushboolean(L, get_obj<SkPaint>(L, 1)->isSubpixelText());
844 return 1;
845}
846
reed09a1d672014-10-11 13:13:11 -0700847static int lpaint_setSubpixelText(lua_State* L) {
848 get_obj<SkPaint>(L, 1)->setSubpixelText(lua2bool(L, 2));
849 return 1;
850}
851
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +0000852static int lpaint_isDevKernText(lua_State* L) {
853 lua_pushboolean(L, get_obj<SkPaint>(L, 1)->isDevKernText());
854 return 1;
855}
856
857static int lpaint_isLCDRenderText(lua_State* L) {
858 lua_pushboolean(L, get_obj<SkPaint>(L, 1)->isLCDRenderText());
859 return 1;
860}
861
reed36c9c112014-11-04 10:58:42 -0800862static int lpaint_setLCDRenderText(lua_State* L) {
863 get_obj<SkPaint>(L, 1)->setLCDRenderText(lua2bool(L, 2));
864 return 1;
865}
866
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +0000867static int lpaint_isEmbeddedBitmapText(lua_State* L) {
868 lua_pushboolean(L, get_obj<SkPaint>(L, 1)->isEmbeddedBitmapText());
869 return 1;
870}
871
872static int lpaint_isAutohinted(lua_State* L) {
873 lua_pushboolean(L, get_obj<SkPaint>(L, 1)->isAutohinted());
874 return 1;
875}
876
877static int lpaint_isVerticalText(lua_State* L) {
878 lua_pushboolean(L, get_obj<SkPaint>(L, 1)->isVerticalText());
879 return 1;
880}
881
reed468b1812014-10-19 11:42:54 -0700882static int lpaint_getAlpha(lua_State* L) {
883 SkLua(L).pushScalar(byte2unit(get_obj<SkPaint>(L, 1)->getAlpha()));
884 return 1;
885}
886
887static int lpaint_setAlpha(lua_State* L) {
888 get_obj<SkPaint>(L, 1)->setAlpha(unit2byte(lua2scalar(L, 2)));
889 return 0;
890}
891
reed@google.com74ce6f02013-05-22 15:13:18 +0000892static int lpaint_getColor(lua_State* L) {
893 SkLua(L).pushColor(get_obj<SkPaint>(L, 1)->getColor());
894 return 1;
895}
896
897static int lpaint_setColor(lua_State* L) {
898 get_obj<SkPaint>(L, 1)->setColor(lua2color(L, 2));
899 return 0;
900}
901
reed@google.come3823fd2013-05-30 18:55:14 +0000902static int lpaint_getTextSize(lua_State* L) {
903 SkLua(L).pushScalar(get_obj<SkPaint>(L, 1)->getTextSize());
904 return 1;
905}
906
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +0000907static int lpaint_getTextScaleX(lua_State* L) {
908 SkLua(L).pushScalar(get_obj<SkPaint>(L, 1)->getTextScaleX());
909 return 1;
910}
911
912static int lpaint_getTextSkewX(lua_State* L) {
913 SkLua(L).pushScalar(get_obj<SkPaint>(L, 1)->getTextSkewX());
914 return 1;
915}
916
reed@google.come3823fd2013-05-30 18:55:14 +0000917static int lpaint_setTextSize(lua_State* L) {
918 get_obj<SkPaint>(L, 1)->setTextSize(lua2scalar(L, 2));
919 return 0;
920}
921
mike@reedtribe.orge6469f12013-06-08 03:15:47 +0000922static int lpaint_getTypeface(lua_State* L) {
923 push_ref(L, get_obj<SkPaint>(L, 1)->getTypeface());
924 return 1;
925}
926
927static int lpaint_setTypeface(lua_State* L) {
928 get_obj<SkPaint>(L, 1)->setTypeface(get_ref<SkTypeface>(L, 2));
929 return 0;
930}
931
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +0000932static int lpaint_getHinting(lua_State* L) {
933 SkLua(L).pushU32(get_obj<SkPaint>(L, 1)->getHinting());
934 return 1;
935}
936
reed93a12152015-03-16 10:08:34 -0700937static int lpaint_getFilterQuality(lua_State* L) {
938 SkLua(L).pushU32(get_obj<SkPaint>(L, 1)->getFilterQuality());
reed7a72c672014-11-07 10:23:55 -0800939 return 1;
940}
941
reed93a12152015-03-16 10:08:34 -0700942static int lpaint_setFilterQuality(lua_State* L) {
reed7a72c672014-11-07 10:23:55 -0800943 int level = lua2int_def(L, 2, -1);
944 if (level >= 0 && level <= 3) {
reed93a12152015-03-16 10:08:34 -0700945 get_obj<SkPaint>(L, 1)->setFilterQuality((SkFilterQuality)level);
reed7a72c672014-11-07 10:23:55 -0800946 }
947 return 0;
948}
949
reed@google.come3823fd2013-05-30 18:55:14 +0000950static int lpaint_getFontID(lua_State* L) {
951 SkTypeface* face = get_obj<SkPaint>(L, 1)->getTypeface();
952 SkLua(L).pushU32(SkTypeface::UniqueID(face));
953 return 1;
954}
955
mike@reedtribe.orgfb858242013-06-08 16:39:44 +0000956static const struct {
957 const char* fLabel;
958 SkPaint::Align fAlign;
959} gAlignRec[] = {
960 { "left", SkPaint::kLeft_Align },
961 { "center", SkPaint::kCenter_Align },
962 { "right", SkPaint::kRight_Align },
963};
964
965static int lpaint_getTextAlign(lua_State* L) {
966 SkPaint::Align align = get_obj<SkPaint>(L, 1)->getTextAlign();
967 for (size_t i = 0; i < SK_ARRAY_COUNT(gAlignRec); ++i) {
968 if (gAlignRec[i].fAlign == align) {
969 lua_pushstring(L, gAlignRec[i].fLabel);
970 return 1;
971 }
972 }
973 return 0;
974}
975
976static int lpaint_setTextAlign(lua_State* L) {
977 if (lua_isstring(L, 2)) {
978 size_t len;
979 const char* label = lua_tolstring(L, 2, &len);
skia.committer@gmail.com370c5342013-06-09 07:01:05 +0000980
mike@reedtribe.orgfb858242013-06-08 16:39:44 +0000981 for (size_t i = 0; i < SK_ARRAY_COUNT(gAlignRec); ++i) {
982 if (!strcmp(gAlignRec[i].fLabel, label)) {
983 get_obj<SkPaint>(L, 1)->setTextAlign(gAlignRec[i].fAlign);
984 break;
985 }
986 }
987 }
988 return 0;
989}
990
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +0000991static int lpaint_getStroke(lua_State* L) {
992 lua_pushboolean(L, SkPaint::kStroke_Style == get_obj<SkPaint>(L, 1)->getStyle());
993 return 1;
994}
995
996static int lpaint_setStroke(lua_State* L) {
997 SkPaint::Style style;
skia.committer@gmail.com370c5342013-06-09 07:01:05 +0000998
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +0000999 if (lua_toboolean(L, 2)) {
1000 style = SkPaint::kStroke_Style;
1001 } else {
1002 style = SkPaint::kFill_Style;
1003 }
1004 get_obj<SkPaint>(L, 1)->setStyle(style);
1005 return 0;
1006}
1007
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +00001008static int lpaint_getStrokeCap(lua_State* L) {
1009 SkLua(L).pushU32(get_obj<SkPaint>(L, 1)->getStrokeCap());
1010 return 1;
1011}
1012
1013static int lpaint_getStrokeJoin(lua_State* L) {
1014 SkLua(L).pushU32(get_obj<SkPaint>(L, 1)->getStrokeJoin());
1015 return 1;
1016}
1017
1018static int lpaint_getTextEncoding(lua_State* L) {
commit-bot@chromium.org641bcc32013-12-19 10:39:59 +00001019 SkLua(L).pushU32(get_obj<SkPaint>(L, 1)->getTextEncoding());
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +00001020 return 1;
1021}
1022
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +00001023static int lpaint_getStrokeWidth(lua_State* L) {
1024 SkLua(L).pushScalar(get_obj<SkPaint>(L, 1)->getStrokeWidth());
1025 return 1;
1026}
1027
1028static int lpaint_setStrokeWidth(lua_State* L) {
1029 get_obj<SkPaint>(L, 1)->setStrokeWidth(lua2scalar(L, 2));
1030 return 0;
1031}
1032
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +00001033static int lpaint_getStrokeMiter(lua_State* L) {
1034 SkLua(L).pushScalar(get_obj<SkPaint>(L, 1)->getStrokeMiter());
1035 return 1;
1036}
1037
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +00001038static int lpaint_measureText(lua_State* L) {
1039 if (lua_isstring(L, 2)) {
1040 size_t len;
1041 const char* text = lua_tolstring(L, 2, &len);
1042 SkLua(L).pushScalar(get_obj<SkPaint>(L, 1)->measureText(text, len));
1043 return 1;
1044 }
1045 return 0;
1046}
1047
1048struct FontMetrics {
1049 SkScalar fTop; //!< The greatest distance above the baseline for any glyph (will be <= 0)
1050 SkScalar fAscent; //!< The recommended distance above the baseline (will be <= 0)
1051 SkScalar fDescent; //!< The recommended distance below the baseline (will be >= 0)
1052 SkScalar fBottom; //!< The greatest distance below the baseline for any glyph (will be >= 0)
1053 SkScalar fLeading; //!< The recommended distance to add between lines of text (will be >= 0)
1054 SkScalar fAvgCharWidth; //!< the average charactor width (>= 0)
1055 SkScalar fXMin; //!< The minimum bounding box x value for all glyphs
1056 SkScalar fXMax; //!< The maximum bounding box x value for all glyphs
1057 SkScalar fXHeight; //!< the height of an 'x' in px, or 0 if no 'x' in face
1058};
1059
1060static int lpaint_getFontMetrics(lua_State* L) {
1061 SkPaint::FontMetrics fm;
1062 SkScalar height = get_obj<SkPaint>(L, 1)->getFontMetrics(&fm);
skia.committer@gmail.com370c5342013-06-09 07:01:05 +00001063
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +00001064 lua_newtable(L);
1065 setfield_scalar(L, "top", fm.fTop);
1066 setfield_scalar(L, "ascent", fm.fAscent);
1067 setfield_scalar(L, "descent", fm.fDescent);
1068 setfield_scalar(L, "bottom", fm.fBottom);
1069 setfield_scalar(L, "leading", fm.fLeading);
1070 SkLua(L).pushScalar(height);
1071 return 2;
1072}
1073
reed@google.com29563872013-07-10 21:23:49 +00001074static int lpaint_getEffects(lua_State* L) {
1075 const SkPaint* paint = get_obj<SkPaint>(L, 1);
skia.committer@gmail.comde2e4e82013-07-11 07:01:01 +00001076
reed@google.com29563872013-07-10 21:23:49 +00001077 lua_newtable(L);
reed468b1812014-10-19 11:42:54 -07001078 setfield_bool_if(L, "looper", !!paint->getLooper());
1079 setfield_bool_if(L, "pathEffect", !!paint->getPathEffect());
1080 setfield_bool_if(L, "rasterizer", !!paint->getRasterizer());
1081 setfield_bool_if(L, "maskFilter", !!paint->getMaskFilter());
1082 setfield_bool_if(L, "shader", !!paint->getShader());
reed@google.com29563872013-07-10 21:23:49 +00001083 setfield_bool_if(L, "colorFilter", !!paint->getColorFilter());
1084 setfield_bool_if(L, "imageFilter", !!paint->getImageFilter());
reed468b1812014-10-19 11:42:54 -07001085 setfield_bool_if(L, "xfermode", !!paint->getXfermode());
reed@google.com29563872013-07-10 21:23:49 +00001086 return 1;
1087}
1088
robertphillips233bab92016-01-21 09:05:32 -08001089static int lpaint_getXfermode(lua_State* L) {
1090 const SkPaint* paint = get_obj<SkPaint>(L, 1);
1091 SkXfermode* xfermode = paint->getXfermode();
1092 if (xfermode) {
1093 push_ref(L, xfermode);
1094 return 1;
1095 }
1096 return 0;
1097}
1098
1099static int lpaint_setXfermode(lua_State* L) {
1100 SkPaint* paint = get_obj<SkPaint>(L, 1);
reedcfb6bdf2016-03-29 11:32:50 -07001101 paint->setXfermode(sk_ref_sp(get_ref<SkXfermode>(L, 2)));
robertphillips233bab92016-01-21 09:05:32 -08001102 return 0;
1103}
1104
reed22a517f2015-12-04 20:45:59 -08001105static int lpaint_getColorFilter(lua_State* L) {
1106 const SkPaint* paint = get_obj<SkPaint>(L, 1);
1107 SkColorFilter* cf = paint->getColorFilter();
1108 if (cf) {
1109 push_ref(L, cf);
1110 return 1;
1111 }
1112 return 0;
1113}
1114
1115static int lpaint_setColorFilter(lua_State* L) {
1116 SkPaint* paint = get_obj<SkPaint>(L, 1);
reedd053ce92016-03-22 10:17:23 -07001117 paint->setColorFilter(sk_ref_sp(get_ref<SkColorFilter>(L, 2)));
reed22a517f2015-12-04 20:45:59 -08001118 return 0;
1119}
1120
reed468b1812014-10-19 11:42:54 -07001121static int lpaint_getImageFilter(lua_State* L) {
1122 const SkPaint* paint = get_obj<SkPaint>(L, 1);
1123 SkImageFilter* imf = paint->getImageFilter();
1124 if (imf) {
1125 push_ref(L, imf);
1126 return 1;
1127 }
1128 return 0;
1129}
1130
1131static int lpaint_setImageFilter(lua_State* L) {
1132 SkPaint* paint = get_obj<SkPaint>(L, 1);
1133 paint->setImageFilter(get_ref<SkImageFilter>(L, 2));
1134 return 0;
1135}
1136
reed@google.com5fdc9832013-07-24 15:47:52 +00001137static int lpaint_getShader(lua_State* L) {
1138 const SkPaint* paint = get_obj<SkPaint>(L, 1);
1139 SkShader* shader = paint->getShader();
1140 if (shader) {
1141 push_ref(L, shader);
1142 return 1;
1143 }
1144 return 0;
1145}
1146
reed9fbc3f32014-10-21 07:12:58 -07001147static int lpaint_setShader(lua_State* L) {
1148 SkPaint* paint = get_obj<SkPaint>(L, 1);
reedfe630452016-03-25 09:08:00 -07001149 paint->setShader(sk_ref_sp(get_ref<SkShader>(L, 2)));
reed9fbc3f32014-10-21 07:12:58 -07001150 return 0;
1151}
1152
commit-bot@chromium.org1301bf32014-03-17 23:09:47 +00001153static int lpaint_getPathEffect(lua_State* L) {
1154 const SkPaint* paint = get_obj<SkPaint>(L, 1);
1155 SkPathEffect* pe = paint->getPathEffect();
1156 if (pe) {
1157 push_ref(L, pe);
1158 return 1;
1159 }
1160 return 0;
1161}
1162
reed@google.com74ce6f02013-05-22 15:13:18 +00001163static int lpaint_gc(lua_State* L) {
1164 get_obj<SkPaint>(L, 1)->~SkPaint();
1165 return 0;
1166}
1167
1168static const struct luaL_Reg gSkPaint_Methods[] = {
1169 { "isAntiAlias", lpaint_isAntiAlias },
1170 { "setAntiAlias", lpaint_setAntiAlias },
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +00001171 { "isDither", lpaint_isDither },
reedbb8a0ab2014-11-03 22:32:07 -08001172 { "setDither", lpaint_setDither },
reed93a12152015-03-16 10:08:34 -07001173 { "getFilterQuality", lpaint_getFilterQuality },
1174 { "setFilterQuality", lpaint_setFilterQuality },
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +00001175 { "isUnderlineText", lpaint_isUnderlineText },
1176 { "isStrikeThruText", lpaint_isStrikeThruText },
1177 { "isFakeBoldText", lpaint_isFakeBoldText },
1178 { "isLinearText", lpaint_isLinearText },
1179 { "isSubpixelText", lpaint_isSubpixelText },
reed09a1d672014-10-11 13:13:11 -07001180 { "setSubpixelText", lpaint_setSubpixelText },
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +00001181 { "isDevKernText", lpaint_isDevKernText },
1182 { "isLCDRenderText", lpaint_isLCDRenderText },
reed36c9c112014-11-04 10:58:42 -08001183 { "setLCDRenderText", lpaint_setLCDRenderText },
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +00001184 { "isEmbeddedBitmapText", lpaint_isEmbeddedBitmapText },
1185 { "isAutohinted", lpaint_isAutohinted },
1186 { "isVerticalText", lpaint_isVerticalText },
reed468b1812014-10-19 11:42:54 -07001187 { "getAlpha", lpaint_getAlpha },
1188 { "setAlpha", lpaint_setAlpha },
reed@google.com74ce6f02013-05-22 15:13:18 +00001189 { "getColor", lpaint_getColor },
1190 { "setColor", lpaint_setColor },
reed@google.come3823fd2013-05-30 18:55:14 +00001191 { "getTextSize", lpaint_getTextSize },
1192 { "setTextSize", lpaint_setTextSize },
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +00001193 { "getTextScaleX", lpaint_getTextScaleX },
1194 { "getTextSkewX", lpaint_getTextSkewX },
mike@reedtribe.orge6469f12013-06-08 03:15:47 +00001195 { "getTypeface", lpaint_getTypeface },
1196 { "setTypeface", lpaint_setTypeface },
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +00001197 { "getHinting", lpaint_getHinting },
reed@google.come3823fd2013-05-30 18:55:14 +00001198 { "getFontID", lpaint_getFontID },
mike@reedtribe.orgfb858242013-06-08 16:39:44 +00001199 { "getTextAlign", lpaint_getTextAlign },
1200 { "setTextAlign", lpaint_setTextAlign },
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +00001201 { "getStroke", lpaint_getStroke },
1202 { "setStroke", lpaint_setStroke },
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +00001203 { "getStrokeCap", lpaint_getStrokeCap },
1204 { "getStrokeJoin", lpaint_getStrokeJoin },
1205 { "getTextEncoding", lpaint_getTextEncoding },
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +00001206 { "getStrokeWidth", lpaint_getStrokeWidth },
1207 { "setStrokeWidth", lpaint_setStrokeWidth },
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +00001208 { "getStrokeMiter", lpaint_getStrokeMiter },
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +00001209 { "measureText", lpaint_measureText },
1210 { "getFontMetrics", lpaint_getFontMetrics },
reed@google.com29563872013-07-10 21:23:49 +00001211 { "getEffects", lpaint_getEffects },
reed22a517f2015-12-04 20:45:59 -08001212 { "getColorFilter", lpaint_getColorFilter },
1213 { "setColorFilter", lpaint_setColorFilter },
reed468b1812014-10-19 11:42:54 -07001214 { "getImageFilter", lpaint_getImageFilter },
1215 { "setImageFilter", lpaint_setImageFilter },
robertphillips233bab92016-01-21 09:05:32 -08001216 { "getXfermode", lpaint_getXfermode },
1217 { "setXfermode", lpaint_setXfermode },
reed@google.com5fdc9832013-07-24 15:47:52 +00001218 { "getShader", lpaint_getShader },
reed9fbc3f32014-10-21 07:12:58 -07001219 { "setShader", lpaint_setShader },
commit-bot@chromium.org1301bf32014-03-17 23:09:47 +00001220 { "getPathEffect", lpaint_getPathEffect },
reed@google.com74ce6f02013-05-22 15:13:18 +00001221 { "__gc", lpaint_gc },
halcanary96fcdcc2015-08-27 07:41:13 -07001222 { nullptr, nullptr }
reed@google.com74ce6f02013-05-22 15:13:18 +00001223};
1224
1225///////////////////////////////////////////////////////////////////////////////
1226
reed@google.com5fdc9832013-07-24 15:47:52 +00001227static const char* mode2string(SkShader::TileMode mode) {
1228 static const char* gNames[] = { "clamp", "repeat", "mirror" };
1229 SkASSERT((unsigned)mode < SK_ARRAY_COUNT(gNames));
1230 return gNames[mode];
1231}
1232
1233static const char* gradtype2string(SkShader::GradientType t) {
1234 static const char* gNames[] = {
1235 "none", "color", "linear", "radial", "radial2", "sweep", "conical"
1236 };
1237 SkASSERT((unsigned)t < SK_ARRAY_COUNT(gNames));
1238 return gNames[t];
1239}
1240
1241static int lshader_isOpaque(lua_State* L) {
1242 SkShader* shader = get_ref<SkShader>(L, 1);
1243 return shader && shader->isOpaque();
1244}
1245
reedf5822822015-08-19 11:46:38 -07001246static int lshader_isABitmap(lua_State* L) {
reed@google.com5fdc9832013-07-24 15:47:52 +00001247 SkShader* shader = get_ref<SkShader>(L, 1);
1248 if (shader) {
1249 SkBitmap bm;
1250 SkMatrix matrix;
1251 SkShader::TileMode modes[2];
reedf5822822015-08-19 11:46:38 -07001252 if (shader->isABitmap(&bm, &matrix, modes)) {
1253 lua_newtable(L);
1254 setfield_number(L, "genID", bm.pixelRef() ? bm.pixelRef()->getGenerationID() : 0);
1255 setfield_number(L, "width", bm.width());
1256 setfield_number(L, "height", bm.height());
1257 setfield_string(L, "tileX", mode2string(modes[0]));
1258 setfield_string(L, "tileY", mode2string(modes[1]));
1259 return 1;
reed@google.com5fdc9832013-07-24 15:47:52 +00001260 }
1261 }
1262 return 0;
1263}
1264
1265static int lshader_asAGradient(lua_State* L) {
1266 SkShader* shader = get_ref<SkShader>(L, 1);
1267 if (shader) {
1268 SkShader::GradientInfo info;
1269 sk_bzero(&info, sizeof(info));
commit-bot@chromium.org74f96b92013-08-01 17:32:56 +00001270
1271 SkColor colors[3]; // hacked in for extracting info on 3 color case.
skia.committer@gmail.combd74add2013-08-02 07:00:59 +00001272 SkScalar pos[3];
commit-bot@chromium.org74f96b92013-08-01 17:32:56 +00001273
1274 info.fColorCount = 3;
1275 info.fColors = &colors[0];
1276 info.fColorOffsets = &pos[0];
skia.committer@gmail.combd74add2013-08-02 07:00:59 +00001277
reed@google.com5fdc9832013-07-24 15:47:52 +00001278 SkShader::GradientType t = shader->asAGradient(&info);
commit-bot@chromium.org74f96b92013-08-01 17:32:56 +00001279
reed@google.com5fdc9832013-07-24 15:47:52 +00001280 if (SkShader::kNone_GradientType != t) {
1281 lua_newtable(L);
1282 setfield_string(L, "type", gradtype2string(t));
1283 setfield_number(L, "colorCount", info.fColorCount);
1284 setfield_string(L, "tile", mode2string(info.fTileMode));
commit-bot@chromium.org74f96b92013-08-01 17:32:56 +00001285
1286 if (info.fColorCount == 3){
1287 setfield_number(L, "midPos", pos[1]);
1288 }
skia.committer@gmail.combd74add2013-08-02 07:00:59 +00001289
reed@google.com5fdc9832013-07-24 15:47:52 +00001290 return 1;
1291 }
1292 }
1293 return 0;
1294}
1295
1296static int lshader_gc(lua_State* L) {
1297 get_ref<SkShader>(L, 1)->unref();
1298 return 0;
1299}
1300
1301static const struct luaL_Reg gSkShader_Methods[] = {
1302 { "isOpaque", lshader_isOpaque },
reedf5822822015-08-19 11:46:38 -07001303 { "isABitmap", lshader_isABitmap },
reed@google.com5fdc9832013-07-24 15:47:52 +00001304 { "asAGradient", lshader_asAGradient },
1305 { "__gc", lshader_gc },
halcanary96fcdcc2015-08-27 07:41:13 -07001306 { nullptr, nullptr }
reed@google.com5fdc9832013-07-24 15:47:52 +00001307};
1308
1309///////////////////////////////////////////////////////////////////////////////
1310
commit-bot@chromium.org4d803a92014-05-14 16:03:14 +00001311static int lpatheffect_asADash(lua_State* L) {
1312 SkPathEffect* pe = get_ref<SkPathEffect>(L, 1);
1313 if (pe) {
1314 SkPathEffect::DashInfo info;
1315 SkPathEffect::DashType dashType = pe->asADash(&info);
1316 if (SkPathEffect::kDash_DashType == dashType) {
1317 SkAutoTArray<SkScalar> intervals(info.fCount);
1318 info.fIntervals = intervals.get();
1319 pe->asADash(&info);
1320 SkLua(L).pushDash(info);
1321 return 1;
1322 }
1323 }
1324 return 0;
1325}
1326
commit-bot@chromium.org1301bf32014-03-17 23:09:47 +00001327static int lpatheffect_gc(lua_State* L) {
1328 get_ref<SkPathEffect>(L, 1)->unref();
1329 return 0;
1330}
1331
1332static const struct luaL_Reg gSkPathEffect_Methods[] = {
commit-bot@chromium.org4d803a92014-05-14 16:03:14 +00001333 { "asADash", lpatheffect_asADash },
commit-bot@chromium.org1301bf32014-03-17 23:09:47 +00001334 { "__gc", lpatheffect_gc },
halcanary96fcdcc2015-08-27 07:41:13 -07001335 { nullptr, nullptr }
commit-bot@chromium.org1301bf32014-03-17 23:09:47 +00001336};
1337
1338///////////////////////////////////////////////////////////////////////////////
1339
robertphillips233bab92016-01-21 09:05:32 -08001340static int lpxfermode_getTypeName(lua_State* L) {
1341 lua_pushstring(L, get_ref<SkXfermode>(L, 1)->getTypeName());
1342 return 1;
1343}
1344
1345static int lpxfermode_gc(lua_State* L) {
1346 get_ref<SkXfermode>(L, 1)->unref();
1347 return 0;
1348}
1349
1350static const struct luaL_Reg gSkXfermode_Methods[] = {
1351 { "getTypeName", lpxfermode_getTypeName },
1352 { "__gc", lpxfermode_gc },
1353 { nullptr, nullptr }
1354};
1355
1356///////////////////////////////////////////////////////////////////////////////
1357
reed22a517f2015-12-04 20:45:59 -08001358static int lpcolorfilter_gc(lua_State* L) {
1359 get_ref<SkColorFilter>(L, 1)->unref();
1360 return 0;
1361}
1362
1363static const struct luaL_Reg gSkColorFilter_Methods[] = {
1364 { "__gc", lpcolorfilter_gc },
1365 { nullptr, nullptr }
1366};
1367
1368///////////////////////////////////////////////////////////////////////////////
1369
reed468b1812014-10-19 11:42:54 -07001370static int lpimagefilter_gc(lua_State* L) {
1371 get_ref<SkImageFilter>(L, 1)->unref();
1372 return 0;
1373}
1374
1375static const struct luaL_Reg gSkImageFilter_Methods[] = {
1376 { "__gc", lpimagefilter_gc },
halcanary96fcdcc2015-08-27 07:41:13 -07001377 { nullptr, nullptr }
reed468b1812014-10-19 11:42:54 -07001378};
1379
1380///////////////////////////////////////////////////////////////////////////////
1381
humper@google.com2815c192013-07-10 22:42:30 +00001382static int lmatrix_getType(lua_State* L) {
1383 SkMatrix::TypeMask mask = get_obj<SkMatrix>(L, 1)->getType();
skia.committer@gmail.comde2e4e82013-07-11 07:01:01 +00001384
humper@google.com2815c192013-07-10 22:42:30 +00001385 lua_newtable(L);
1386 setfield_boolean(L, "translate", SkToBool(mask & SkMatrix::kTranslate_Mask));
1387 setfield_boolean(L, "scale", SkToBool(mask & SkMatrix::kScale_Mask));
1388 setfield_boolean(L, "affine", SkToBool(mask & SkMatrix::kAffine_Mask));
1389 setfield_boolean(L, "perspective", SkToBool(mask & SkMatrix::kPerspective_Mask));
1390 return 1;
1391}
1392
humper@google.com0f48ee02013-07-26 15:23:43 +00001393static int lmatrix_getScaleX(lua_State* L) {
1394 lua_pushnumber(L, get_obj<SkMatrix>(L,1)->getScaleX());
1395 return 1;
1396}
1397
1398static int lmatrix_getScaleY(lua_State* L) {
1399 lua_pushnumber(L, get_obj<SkMatrix>(L,1)->getScaleY());
1400 return 1;
1401}
1402
1403static int lmatrix_getTranslateX(lua_State* L) {
1404 lua_pushnumber(L, get_obj<SkMatrix>(L,1)->getTranslateX());
1405 return 1;
1406}
1407
1408static int lmatrix_getTranslateY(lua_State* L) {
1409 lua_pushnumber(L, get_obj<SkMatrix>(L,1)->getTranslateY());
1410 return 1;
1411}
1412
reed7a72c672014-11-07 10:23:55 -08001413static int lmatrix_invert(lua_State* L) {
1414 lua_pushboolean(L, get_obj<SkMatrix>(L, 1)->invert(get_obj<SkMatrix>(L, 2)));
1415 return 1;
1416}
1417
1418static int lmatrix_mapXY(lua_State* L) {
1419 SkPoint pt = { lua2scalar(L, 2), lua2scalar(L, 3) };
1420 get_obj<SkMatrix>(L, 1)->mapPoints(&pt, &pt, 1);
1421 lua_pushnumber(L, pt.x());
1422 lua_pushnumber(L, pt.y());
1423 return 2;
1424}
1425
reedbdc49ae2014-10-14 09:34:52 -07001426static int lmatrix_setRectToRect(lua_State* L) {
1427 SkMatrix* matrix = get_obj<SkMatrix>(L, 1);
1428 SkRect srcR, dstR;
1429 lua2rect(L, 2, &srcR);
1430 lua2rect(L, 3, &dstR);
1431 const char* scaleToFitStr = lua_tostring(L, 4);
1432 SkMatrix::ScaleToFit scaleToFit = SkMatrix::kFill_ScaleToFit;
1433
1434 if (scaleToFitStr) {
1435 const struct {
1436 const char* fName;
1437 SkMatrix::ScaleToFit fScaleToFit;
1438 } rec[] = {
1439 { "fill", SkMatrix::kFill_ScaleToFit },
1440 { "start", SkMatrix::kStart_ScaleToFit },
1441 { "center", SkMatrix::kCenter_ScaleToFit },
1442 { "end", SkMatrix::kEnd_ScaleToFit },
1443 };
1444
1445 for (size_t i = 0; i < SK_ARRAY_COUNT(rec); ++i) {
1446 if (strcmp(rec[i].fName, scaleToFitStr) == 0) {
1447 scaleToFit = rec[i].fScaleToFit;
1448 break;
1449 }
1450 }
1451 }
1452
1453 matrix->setRectToRect(srcR, dstR, scaleToFit);
1454 return 0;
1455}
1456
humper@google.com2815c192013-07-10 22:42:30 +00001457static const struct luaL_Reg gSkMatrix_Methods[] = {
1458 { "getType", lmatrix_getType },
humper@google.com0f48ee02013-07-26 15:23:43 +00001459 { "getScaleX", lmatrix_getScaleX },
1460 { "getScaleY", lmatrix_getScaleY },
1461 { "getTranslateX", lmatrix_getTranslateX },
1462 { "getTranslateY", lmatrix_getTranslateY },
reedbdc49ae2014-10-14 09:34:52 -07001463 { "setRectToRect", lmatrix_setRectToRect },
reed7a72c672014-11-07 10:23:55 -08001464 { "invert", lmatrix_invert },
1465 { "mapXY", lmatrix_mapXY },
halcanary96fcdcc2015-08-27 07:41:13 -07001466 { nullptr, nullptr }
humper@google.com2815c192013-07-10 22:42:30 +00001467};
1468
1469///////////////////////////////////////////////////////////////////////////////
1470
reed@google.com74ce6f02013-05-22 15:13:18 +00001471static int lpath_getBounds(lua_State* L) {
1472 SkLua(L).pushRect(get_obj<SkPath>(L, 1)->getBounds());
1473 return 1;
1474}
1475
commit-bot@chromium.orgd85b8222014-02-24 21:59:29 +00001476static const char* fill_type_to_str(SkPath::FillType fill) {
1477 switch (fill) {
1478 case SkPath::kEvenOdd_FillType:
1479 return "even-odd";
1480 case SkPath::kWinding_FillType:
1481 return "winding";
1482 case SkPath::kInverseEvenOdd_FillType:
1483 return "inverse-even-odd";
1484 case SkPath::kInverseWinding_FillType:
1485 return "inverse-winding";
1486 }
1487 return "unknown";
1488}
1489
1490static int lpath_getFillType(lua_State* L) {
1491 SkPath::FillType fill = get_obj<SkPath>(L, 1)->getFillType();
1492 SkLua(L).pushString(fill_type_to_str(fill));
1493 return 1;
1494}
1495
1496static SkString segment_masks_to_str(uint32_t segmentMasks) {
1497 SkString result;
1498 bool first = true;
1499 if (SkPath::kLine_SegmentMask & segmentMasks) {
1500 result.append("line");
1501 first = false;
1502 SkDEBUGCODE(segmentMasks &= ~SkPath::kLine_SegmentMask;)
1503 }
1504 if (SkPath::kQuad_SegmentMask & segmentMasks) {
1505 if (!first) {
1506 result.append(" ");
1507 }
1508 result.append("quad");
1509 first = false;
1510 SkDEBUGCODE(segmentMasks &= ~SkPath::kQuad_SegmentMask;)
1511 }
1512 if (SkPath::kConic_SegmentMask & segmentMasks) {
1513 if (!first) {
1514 result.append(" ");
1515 }
1516 result.append("conic");
1517 first = false;
1518 SkDEBUGCODE(segmentMasks &= ~SkPath::kConic_SegmentMask;)
1519 }
1520 if (SkPath::kCubic_SegmentMask & segmentMasks) {
1521 if (!first) {
1522 result.append(" ");
1523 }
1524 result.append("cubic");
1525 SkDEBUGCODE(segmentMasks &= ~SkPath::kCubic_SegmentMask;)
1526 }
1527 SkASSERT(0 == segmentMasks);
1528 return result;
1529}
1530
krajcevski95498ed2014-08-18 08:02:33 -07001531static int lpath_getSegmentTypes(lua_State* L) {
commit-bot@chromium.orgd85b8222014-02-24 21:59:29 +00001532 uint32_t segMasks = get_obj<SkPath>(L, 1)->getSegmentMasks();
1533 SkLua(L).pushString(segment_masks_to_str(segMasks));
1534 return 1;
1535}
1536
1537static int lpath_isConvex(lua_State* L) {
1538 bool isConvex = SkPath::kConvex_Convexity == get_obj<SkPath>(L, 1)->getConvexity();
1539 SkLua(L).pushBool(isConvex);
1540 return 1;
1541}
1542
reed@google.com74ce6f02013-05-22 15:13:18 +00001543static int lpath_isEmpty(lua_State* L) {
1544 lua_pushboolean(L, get_obj<SkPath>(L, 1)->isEmpty());
1545 return 1;
1546}
1547
1548static int lpath_isRect(lua_State* L) {
1549 SkRect r;
1550 bool pred = get_obj<SkPath>(L, 1)->isRect(&r);
1551 int ret_count = 1;
1552 lua_pushboolean(L, pred);
1553 if (pred) {
1554 SkLua(L).pushRect(r);
1555 ret_count += 1;
1556 }
1557 return ret_count;
1558}
1559
1560static const char* dir2string(SkPath::Direction dir) {
1561 static const char* gStr[] = {
1562 "unknown", "cw", "ccw"
1563 };
1564 SkASSERT((unsigned)dir < SK_ARRAY_COUNT(gStr));
1565 return gStr[dir];
1566}
1567
caryclark95bc5f32015-04-08 08:34:15 -07001568static int lpath_isNestedFillRects(lua_State* L) {
reed@google.com74ce6f02013-05-22 15:13:18 +00001569 SkRect rects[2];
1570 SkPath::Direction dirs[2];
caryclark95bc5f32015-04-08 08:34:15 -07001571 bool pred = get_obj<SkPath>(L, 1)->isNestedFillRects(rects, dirs);
reed@google.com74ce6f02013-05-22 15:13:18 +00001572 int ret_count = 1;
1573 lua_pushboolean(L, pred);
1574 if (pred) {
1575 SkLua lua(L);
1576 lua.pushRect(rects[0]);
1577 lua.pushRect(rects[1]);
1578 lua_pushstring(L, dir2string(dirs[0]));
1579 lua_pushstring(L, dir2string(dirs[0]));
1580 ret_count += 4;
1581 }
1582 return ret_count;
1583}
1584
commit-bot@chromium.orgc5302082014-02-26 21:38:47 +00001585static int lpath_countPoints(lua_State* L) {
1586 lua_pushinteger(L, get_obj<SkPath>(L, 1)->countPoints());
1587 return 1;
1588}
1589
reed@google.com74ce6f02013-05-22 15:13:18 +00001590static int lpath_reset(lua_State* L) {
1591 get_obj<SkPath>(L, 1)->reset();
1592 return 0;
1593}
1594
1595static int lpath_moveTo(lua_State* L) {
1596 get_obj<SkPath>(L, 1)->moveTo(lua2scalar(L, 2), lua2scalar(L, 3));
1597 return 0;
1598}
1599
1600static int lpath_lineTo(lua_State* L) {
1601 get_obj<SkPath>(L, 1)->lineTo(lua2scalar(L, 2), lua2scalar(L, 3));
1602 return 0;
1603}
1604
1605static int lpath_quadTo(lua_State* L) {
1606 get_obj<SkPath>(L, 1)->quadTo(lua2scalar(L, 2), lua2scalar(L, 3),
1607 lua2scalar(L, 4), lua2scalar(L, 5));
1608 return 0;
1609}
1610
1611static int lpath_cubicTo(lua_State* L) {
1612 get_obj<SkPath>(L, 1)->cubicTo(lua2scalar(L, 2), lua2scalar(L, 3),
1613 lua2scalar(L, 4), lua2scalar(L, 5),
1614 lua2scalar(L, 6), lua2scalar(L, 7));
1615 return 0;
1616}
1617
1618static int lpath_close(lua_State* L) {
1619 get_obj<SkPath>(L, 1)->close();
1620 return 0;
1621}
1622
1623static int lpath_gc(lua_State* L) {
1624 get_obj<SkPath>(L, 1)->~SkPath();
1625 return 0;
1626}
1627
1628static const struct luaL_Reg gSkPath_Methods[] = {
1629 { "getBounds", lpath_getBounds },
commit-bot@chromium.orgd85b8222014-02-24 21:59:29 +00001630 { "getFillType", lpath_getFillType },
krajcevski95498ed2014-08-18 08:02:33 -07001631 { "getSegmentTypes", lpath_getSegmentTypes },
commit-bot@chromium.orgd85b8222014-02-24 21:59:29 +00001632 { "isConvex", lpath_isConvex },
reed@google.com74ce6f02013-05-22 15:13:18 +00001633 { "isEmpty", lpath_isEmpty },
1634 { "isRect", lpath_isRect },
caryclark95bc5f32015-04-08 08:34:15 -07001635 { "isNestedFillRects", lpath_isNestedFillRects },
commit-bot@chromium.orgc5302082014-02-26 21:38:47 +00001636 { "countPoints", lpath_countPoints },
reed@google.com74ce6f02013-05-22 15:13:18 +00001637 { "reset", lpath_reset },
1638 { "moveTo", lpath_moveTo },
1639 { "lineTo", lpath_lineTo },
1640 { "quadTo", lpath_quadTo },
1641 { "cubicTo", lpath_cubicTo },
1642 { "close", lpath_close },
1643 { "__gc", lpath_gc },
halcanary96fcdcc2015-08-27 07:41:13 -07001644 { nullptr, nullptr }
reed@google.com74ce6f02013-05-22 15:13:18 +00001645};
1646
1647///////////////////////////////////////////////////////////////////////////////
1648
1649static const char* rrect_type(const SkRRect& rr) {
1650 switch (rr.getType()) {
reed@google.com74ce6f02013-05-22 15:13:18 +00001651 case SkRRect::kEmpty_Type: return "empty";
1652 case SkRRect::kRect_Type: return "rect";
1653 case SkRRect::kOval_Type: return "oval";
1654 case SkRRect::kSimple_Type: return "simple";
commit-bot@chromium.orgf338d7c2014-03-17 21:17:30 +00001655 case SkRRect::kNinePatch_Type: return "nine-patch";
reed@google.com74ce6f02013-05-22 15:13:18 +00001656 case SkRRect::kComplex_Type: return "complex";
1657 }
mtklein@google.com330313a2013-08-22 15:37:26 +00001658 SkDEBUGFAIL("never get here");
reed@google.com74ce6f02013-05-22 15:13:18 +00001659 return "";
1660}
1661
1662static int lrrect_rect(lua_State* L) {
1663 SkLua(L).pushRect(get_obj<SkRRect>(L, 1)->rect());
1664 return 1;
1665}
1666
1667static int lrrect_type(lua_State* L) {
1668 lua_pushstring(L, rrect_type(*get_obj<SkRRect>(L, 1)));
1669 return 1;
1670}
1671
1672static int lrrect_radii(lua_State* L) {
reed@google.com7fa2a652014-01-27 13:42:58 +00001673 int corner = SkToInt(lua_tointeger(L, 2));
reed@google.com74ce6f02013-05-22 15:13:18 +00001674 SkVector v;
1675 if (corner < 0 || corner > 3) {
1676 SkDebugf("bad corner index %d", corner);
1677 v.set(0, 0);
1678 } else {
1679 v = get_obj<SkRRect>(L, 1)->radii((SkRRect::Corner)corner);
1680 }
1681 lua_pushnumber(L, v.fX);
1682 lua_pushnumber(L, v.fY);
1683 return 2;
1684}
1685
1686static int lrrect_gc(lua_State* L) {
1687 get_obj<SkRRect>(L, 1)->~SkRRect();
1688 return 0;
1689}
1690
1691static const struct luaL_Reg gSkRRect_Methods[] = {
1692 { "rect", lrrect_rect },
1693 { "type", lrrect_type },
1694 { "radii", lrrect_radii },
1695 { "__gc", lrrect_gc },
halcanary96fcdcc2015-08-27 07:41:13 -07001696 { nullptr, nullptr }
reed@google.com74ce6f02013-05-22 15:13:18 +00001697};
1698
1699///////////////////////////////////////////////////////////////////////////////
1700
mike@reedtribe.org792bbd12013-06-11 02:20:28 +00001701static int limage_width(lua_State* L) {
1702 lua_pushinteger(L, get_ref<SkImage>(L, 1)->width());
1703 return 1;
1704}
1705
1706static int limage_height(lua_State* L) {
1707 lua_pushinteger(L, get_ref<SkImage>(L, 1)->height());
1708 return 1;
1709}
1710
reed7a72c672014-11-07 10:23:55 -08001711static int limage_newShader(lua_State* L) {
1712 SkShader::TileMode tmode = SkShader::kClamp_TileMode;
halcanary96fcdcc2015-08-27 07:41:13 -07001713 const SkMatrix* localM = nullptr;
reed5671c5b2016-03-09 14:47:34 -08001714 push_ref(L, get_ref<SkImage>(L, 1)->makeShader(tmode, tmode, localM));
reed7a72c672014-11-07 10:23:55 -08001715 return 1;
1716}
1717
mike@reedtribe.org792bbd12013-06-11 02:20:28 +00001718static int limage_gc(lua_State* L) {
1719 get_ref<SkImage>(L, 1)->unref();
1720 return 0;
1721}
1722
1723static const struct luaL_Reg gSkImage_Methods[] = {
1724 { "width", limage_width },
1725 { "height", limage_height },
reed7a72c672014-11-07 10:23:55 -08001726 { "newShader", limage_newShader },
mike@reedtribe.org792bbd12013-06-11 02:20:28 +00001727 { "__gc", limage_gc },
halcanary96fcdcc2015-08-27 07:41:13 -07001728 { nullptr, nullptr }
mike@reedtribe.org792bbd12013-06-11 02:20:28 +00001729};
1730
1731///////////////////////////////////////////////////////////////////////////////
1732
reed485557f2014-10-12 10:36:47 -07001733static int lsurface_width(lua_State* L) {
1734 lua_pushinteger(L, get_ref<SkSurface>(L, 1)->width());
1735 return 1;
1736}
1737
1738static int lsurface_height(lua_State* L) {
1739 lua_pushinteger(L, get_ref<SkSurface>(L, 1)->height());
1740 return 1;
1741}
1742
1743static int lsurface_getCanvas(lua_State* L) {
1744 SkCanvas* canvas = get_ref<SkSurface>(L, 1)->getCanvas();
halcanary96fcdcc2015-08-27 07:41:13 -07001745 if (nullptr == canvas) {
reed485557f2014-10-12 10:36:47 -07001746 lua_pushnil(L);
1747 } else {
1748 push_ref(L, canvas);
1749 // note: we don't unref canvas, since getCanvas did not ref it.
1750 // warning: this is weird: now Lua owns a ref on this canvas, but what if they let
1751 // the real owner (the surface) go away, but still hold onto the canvas?
1752 // *really* we want to sort of ref the surface again, but have the native object
1753 // know that it is supposed to be treated as a canvas...
1754 }
1755 return 1;
1756}
1757
1758static int lsurface_newImageSnapshot(lua_State* L) {
reed9ce9d672016-03-17 10:51:11 -07001759 sk_sp<SkImage> image = get_ref<SkSurface>(L, 1)->makeImageSnapshot();
1760 if (!image) {
reed485557f2014-10-12 10:36:47 -07001761 lua_pushnil(L);
1762 } else {
reed9ce9d672016-03-17 10:51:11 -07001763 push_ref(L, image);
reed485557f2014-10-12 10:36:47 -07001764 }
1765 return 1;
1766}
1767
1768static int lsurface_newSurface(lua_State* L) {
1769 int width = lua2int_def(L, 2, 0);
reed96affcd2014-10-13 12:38:04 -07001770 int height = lua2int_def(L, 3, 0);
reed485557f2014-10-12 10:36:47 -07001771 SkImageInfo info = SkImageInfo::MakeN32Premul(width, height);
reede8f30622016-03-23 18:59:25 -07001772 auto surface = get_ref<SkSurface>(L, 1)->makeSurface(info);
halcanary96fcdcc2015-08-27 07:41:13 -07001773 if (nullptr == surface) {
reed485557f2014-10-12 10:36:47 -07001774 lua_pushnil(L);
1775 } else {
reede8f30622016-03-23 18:59:25 -07001776 push_ref(L, surface);
reed485557f2014-10-12 10:36:47 -07001777 }
1778 return 1;
1779}
1780
1781static int lsurface_gc(lua_State* L) {
1782 get_ref<SkSurface>(L, 1)->unref();
1783 return 0;
1784}
1785
1786static const struct luaL_Reg gSkSurface_Methods[] = {
1787 { "width", lsurface_width },
1788 { "height", lsurface_height },
1789 { "getCanvas", lsurface_getCanvas },
1790 { "newImageSnapshot", lsurface_newImageSnapshot },
1791 { "newSurface", lsurface_newSurface },
1792 { "__gc", lsurface_gc },
halcanary96fcdcc2015-08-27 07:41:13 -07001793 { nullptr, nullptr }
reed485557f2014-10-12 10:36:47 -07001794};
1795
1796///////////////////////////////////////////////////////////////////////////////
1797
reed96affcd2014-10-13 12:38:04 -07001798static int lpicturerecorder_beginRecording(lua_State* L) {
1799 const SkScalar w = lua2scalar_def(L, 2, -1);
1800 const SkScalar h = lua2scalar_def(L, 3, -1);
1801 if (w <= 0 || h <= 0) {
1802 lua_pushnil(L);
1803 return 1;
1804 }
1805
1806 SkCanvas* canvas = get_obj<SkPictureRecorder>(L, 1)->beginRecording(w, h);
halcanary96fcdcc2015-08-27 07:41:13 -07001807 if (nullptr == canvas) {
reed96affcd2014-10-13 12:38:04 -07001808 lua_pushnil(L);
1809 return 1;
1810 }
1811
1812 push_ref(L, canvas);
1813 return 1;
1814}
1815
1816static int lpicturerecorder_getCanvas(lua_State* L) {
1817 SkCanvas* canvas = get_obj<SkPictureRecorder>(L, 1)->getRecordingCanvas();
halcanary96fcdcc2015-08-27 07:41:13 -07001818 if (nullptr == canvas) {
reed96affcd2014-10-13 12:38:04 -07001819 lua_pushnil(L);
1820 return 1;
1821 }
1822 push_ref(L, canvas);
1823 return 1;
1824}
1825
1826static int lpicturerecorder_endRecording(lua_State* L) {
reedca2622b2016-03-18 07:25:55 -07001827 sk_sp<SkPicture> pic = get_obj<SkPictureRecorder>(L, 1)->finishRecordingAsPicture();
1828 if (!pic) {
reed96affcd2014-10-13 12:38:04 -07001829 lua_pushnil(L);
1830 return 1;
1831 }
reedca2622b2016-03-18 07:25:55 -07001832 push_ref(L, std::move(pic));
reed96affcd2014-10-13 12:38:04 -07001833 return 1;
1834}
1835
1836static int lpicturerecorder_gc(lua_State* L) {
1837 get_obj<SkPictureRecorder>(L, 1)->~SkPictureRecorder();
1838 return 0;
1839}
1840
1841static const struct luaL_Reg gSkPictureRecorder_Methods[] = {
1842 { "beginRecording", lpicturerecorder_beginRecording },
1843 { "getCanvas", lpicturerecorder_getCanvas },
1844 { "endRecording", lpicturerecorder_endRecording },
1845 { "__gc", lpicturerecorder_gc },
halcanary96fcdcc2015-08-27 07:41:13 -07001846 { nullptr, nullptr }
reed96affcd2014-10-13 12:38:04 -07001847};
1848
1849///////////////////////////////////////////////////////////////////////////////
1850
1851static int lpicture_width(lua_State* L) {
1852 lua_pushnumber(L, get_ref<SkPicture>(L, 1)->cullRect().width());
1853 return 1;
1854}
1855
1856static int lpicture_height(lua_State* L) {
1857 lua_pushnumber(L, get_ref<SkPicture>(L, 1)->cullRect().height());
1858 return 1;
1859}
1860
1861static int lpicture_gc(lua_State* L) {
1862 get_ref<SkPicture>(L, 1)->unref();
1863 return 0;
1864}
1865
1866static const struct luaL_Reg gSkPicture_Methods[] = {
1867 { "width", lpicture_width },
1868 { "height", lpicture_height },
1869 { "__gc", lpicture_gc },
halcanary96fcdcc2015-08-27 07:41:13 -07001870 { nullptr, nullptr }
reed96affcd2014-10-13 12:38:04 -07001871};
1872
1873///////////////////////////////////////////////////////////////////////////////
1874
reed1b6ab442014-11-03 19:55:41 -08001875static int ltextblob_bounds(lua_State* L) {
1876 SkLua(L).pushRect(get_ref<SkTextBlob>(L, 1)->bounds());
1877 return 1;
1878}
1879
1880static int ltextblob_gc(lua_State* L) {
1881 SkSafeUnref(get_ref<SkTextBlob>(L, 1));
1882 return 0;
1883}
1884
1885static const struct luaL_Reg gSkTextBlob_Methods[] = {
1886 { "bounds", ltextblob_bounds },
1887 { "__gc", ltextblob_gc },
halcanary96fcdcc2015-08-27 07:41:13 -07001888 { nullptr, nullptr }
reed1b6ab442014-11-03 19:55:41 -08001889};
1890
1891///////////////////////////////////////////////////////////////////////////////
1892
reed36c9c112014-11-04 10:58:42 -08001893static int ltypeface_getFamilyName(lua_State* L) {
1894 SkString str;
1895 get_ref<SkTypeface>(L, 1)->getFamilyName(&str);
1896 lua_pushstring(L, str.c_str());
1897 return 1;
1898}
1899
1900static int ltypeface_getStyle(lua_State* L) {
1901 lua_pushnumber(L, (double)get_ref<SkTypeface>(L, 1)->style());
1902 return 1;
1903}
1904
mike@reedtribe.orge6469f12013-06-08 03:15:47 +00001905static int ltypeface_gc(lua_State* L) {
commit-bot@chromium.org77887af2013-12-17 14:28:19 +00001906 SkSafeUnref(get_ref<SkTypeface>(L, 1));
mike@reedtribe.orge6469f12013-06-08 03:15:47 +00001907 return 0;
1908}
1909
1910static const struct luaL_Reg gSkTypeface_Methods[] = {
reed36c9c112014-11-04 10:58:42 -08001911 { "getFamilyName", ltypeface_getFamilyName },
1912 { "getStyle", ltypeface_getStyle },
mike@reedtribe.orge6469f12013-06-08 03:15:47 +00001913 { "__gc", ltypeface_gc },
halcanary96fcdcc2015-08-27 07:41:13 -07001914 { nullptr, nullptr }
mike@reedtribe.orge6469f12013-06-08 03:15:47 +00001915};
1916
1917///////////////////////////////////////////////////////////////////////////////
1918
reed@google.com74ce6f02013-05-22 15:13:18 +00001919class AutoCallLua {
1920public:
1921 AutoCallLua(lua_State* L, const char func[], const char verb[]) : fL(L) {
1922 lua_getglobal(L, func);
1923 if (!lua_isfunction(L, -1)) {
1924 int t = lua_type(L, -1);
1925 SkDebugf("--- expected function %d\n", t);
1926 }
skia.committer@gmail.com2d816ad2013-05-23 07:01:22 +00001927
reed@google.com74ce6f02013-05-22 15:13:18 +00001928 lua_newtable(L);
1929 setfield_string(L, "verb", verb);
1930 }
skia.committer@gmail.com2d816ad2013-05-23 07:01:22 +00001931
reed@google.com74ce6f02013-05-22 15:13:18 +00001932 ~AutoCallLua() {
1933 if (lua_pcall(fL, 1, 0, 0) != LUA_OK) {
1934 SkDebugf("lua err: %s\n", lua_tostring(fL, -1));
1935 }
1936 lua_settop(fL, -1);
1937 }
skia.committer@gmail.com2d816ad2013-05-23 07:01:22 +00001938
reed@google.com74ce6f02013-05-22 15:13:18 +00001939private:
1940 lua_State* fL;
1941};
1942
1943#define AUTO_LUA(verb) AutoCallLua acl(fL, fFunc.c_str(), verb)
1944
1945///////////////////////////////////////////////////////////////////////////////
1946
mike@reedtribe.orgfb858242013-06-08 16:39:44 +00001947static int lsk_newDocumentPDF(lua_State* L) {
halcanary96fcdcc2015-08-27 07:41:13 -07001948 const char* file = nullptr;
mike@reedtribe.orgfb858242013-06-08 16:39:44 +00001949 if (lua_gettop(L) > 0 && lua_isstring(L, 1)) {
halcanary96fcdcc2015-08-27 07:41:13 -07001950 file = lua_tolstring(L, 1, nullptr);
mike@reedtribe.orgfb858242013-06-08 16:39:44 +00001951 }
1952
1953 SkDocument* doc = SkDocument::CreatePDF(file);
halcanary96fcdcc2015-08-27 07:41:13 -07001954 if (nullptr == doc) {
mike@reedtribe.orgfb858242013-06-08 16:39:44 +00001955 // do I need to push a nil on the stack and return 1?
1956 return 0;
1957 } else {
reed9fbc3f32014-10-21 07:12:58 -07001958 push_ref(L, doc)->unref();
mike@reedtribe.orgfb858242013-06-08 16:39:44 +00001959 return 1;
1960 }
1961}
1962
reed468b1812014-10-19 11:42:54 -07001963static int lsk_newBlurImageFilter(lua_State* L) {
1964 SkScalar sigmaX = lua2scalar_def(L, 1, 0);
1965 SkScalar sigmaY = lua2scalar_def(L, 2, 0);
robertphillips6e7025a2016-04-04 04:31:25 -07001966 sk_sp<SkImageFilter> imf(SkBlurImageFilter::Make(sigmaX, sigmaY, nullptr));
1967 if (!imf) {
reed468b1812014-10-19 11:42:54 -07001968 lua_pushnil(L);
1969 } else {
robertphillips6e7025a2016-04-04 04:31:25 -07001970 push_ref(L, std::move(imf));
reed9fbc3f32014-10-21 07:12:58 -07001971 }
1972 return 1;
1973}
1974
1975static int lsk_newLinearGradient(lua_State* L) {
1976 SkScalar x0 = lua2scalar_def(L, 1, 0);
1977 SkScalar y0 = lua2scalar_def(L, 2, 0);
1978 SkColor c0 = lua2color(L, 3);
1979 SkScalar x1 = lua2scalar_def(L, 4, 0);
1980 SkScalar y1 = lua2scalar_def(L, 5, 0);
1981 SkColor c1 = lua2color(L, 6);
1982
1983 SkPoint pts[] = { { x0, y0 }, { x1, y1 } };
1984 SkColor colors[] = { c0, c1 };
robertphillips6e7025a2016-04-04 04:31:25 -07001985 sk_sp<SkShader> s(SkGradientShader::MakeLinear(pts, colors, nullptr, 2,
1986 SkShader::kClamp_TileMode));
reed2ad1aa62016-03-09 09:50:50 -08001987 if (!s) {
reed9fbc3f32014-10-21 07:12:58 -07001988 lua_pushnil(L);
1989 } else {
reed2ad1aa62016-03-09 09:50:50 -08001990 push_ref(L, std::move(s));
reed468b1812014-10-19 11:42:54 -07001991 }
1992 return 1;
1993}
1994
reedbdc49ae2014-10-14 09:34:52 -07001995static int lsk_newMatrix(lua_State* L) {
1996 push_new<SkMatrix>(L)->reset();
1997 return 1;
1998}
1999
reed@google.com3597b732013-05-22 20:12:50 +00002000static int lsk_newPaint(lua_State* L) {
2001 push_new<SkPaint>(L);
2002 return 1;
2003}
2004
2005static int lsk_newPath(lua_State* L) {
2006 push_new<SkPath>(L);
2007 return 1;
2008}
2009
reed96affcd2014-10-13 12:38:04 -07002010static int lsk_newPictureRecorder(lua_State* L) {
2011 push_new<SkPictureRecorder>(L);
2012 return 1;
2013}
2014
reed@google.com3597b732013-05-22 20:12:50 +00002015static int lsk_newRRect(lua_State* L) {
reedbdc49ae2014-10-14 09:34:52 -07002016 push_new<SkRRect>(L)->setEmpty();
reed@google.com3597b732013-05-22 20:12:50 +00002017 return 1;
2018}
2019
reed1b6ab442014-11-03 19:55:41 -08002020#include "SkTextBox.h"
2021// Sk.newTextBlob(text, rect, paint)
2022static int lsk_newTextBlob(lua_State* L) {
halcanary96fcdcc2015-08-27 07:41:13 -07002023 const char* text = lua_tolstring(L, 1, nullptr);
reed1b6ab442014-11-03 19:55:41 -08002024 SkRect bounds;
2025 lua2rect(L, 2, &bounds);
2026 const SkPaint& paint = *get_obj<SkPaint>(L, 3);
2027
2028 SkTextBox box;
2029 box.setMode(SkTextBox::kLineBreak_Mode);
2030 box.setBox(bounds);
2031 box.setText(text, strlen(text), paint);
2032
2033 SkScalar newBottom;
2034 SkAutoTUnref<SkTextBlob> blob(box.snapshotTextBlob(&newBottom));
2035 push_ref<SkTextBlob>(L, blob);
2036 SkLua(L).pushScalar(newBottom);
2037 return 2;
2038}
2039
mike@reedtribe.orge6469f12013-06-08 03:15:47 +00002040static int lsk_newTypeface(lua_State* L) {
halcanary96fcdcc2015-08-27 07:41:13 -07002041 const char* name = nullptr;
mike@reedtribe.orge6469f12013-06-08 03:15:47 +00002042 int style = SkTypeface::kNormal;
skia.committer@gmail.com63193672013-06-08 07:01:13 +00002043
mike@reedtribe.orge6469f12013-06-08 03:15:47 +00002044 int count = lua_gettop(L);
2045 if (count > 0 && lua_isstring(L, 1)) {
halcanary96fcdcc2015-08-27 07:41:13 -07002046 name = lua_tolstring(L, 1, nullptr);
mike@reedtribe.orge6469f12013-06-08 03:15:47 +00002047 if (count > 1 && lua_isnumber(L, 2)) {
halcanary96fcdcc2015-08-27 07:41:13 -07002048 style = lua_tointegerx(L, 2, nullptr) & SkTypeface::kBoldItalic;
mike@reedtribe.orge6469f12013-06-08 03:15:47 +00002049 }
2050 }
2051
2052 SkTypeface* face = SkTypeface::CreateFromName(name,
2053 (SkTypeface::Style)style);
2054// SkDebugf("---- name <%s> style=%d, face=%p ref=%d\n", name, style, face, face->getRefCnt());
halcanary96fcdcc2015-08-27 07:41:13 -07002055 if (nullptr == face) {
mike@reedtribe.orge6469f12013-06-08 03:15:47 +00002056 face = SkTypeface::RefDefault();
2057 }
reed9fbc3f32014-10-21 07:12:58 -07002058 push_ref(L, face)->unref();
mike@reedtribe.orge6469f12013-06-08 03:15:47 +00002059 return 1;
2060}
reed@google.com3597b732013-05-22 20:12:50 +00002061
reed485557f2014-10-12 10:36:47 -07002062static int lsk_newRasterSurface(lua_State* L) {
reed7b864662014-11-04 13:24:47 -08002063 int width = lua2int_def(L, 1, 0);
reed485557f2014-10-12 10:36:47 -07002064 int height = lua2int_def(L, 2, 0);
2065 SkImageInfo info = SkImageInfo::MakeN32Premul(width, height);
robertphillips702edbd2015-06-23 06:26:08 -07002066 SkSurfaceProps props(0, kUnknown_SkPixelGeometry);
reede8f30622016-03-23 18:59:25 -07002067 auto surface = SkSurface::MakeRaster(info, &props);
halcanary96fcdcc2015-08-27 07:41:13 -07002068 if (nullptr == surface) {
reed485557f2014-10-12 10:36:47 -07002069 lua_pushnil(L);
2070 } else {
reede8f30622016-03-23 18:59:25 -07002071 push_ref(L, surface);
reed485557f2014-10-12 10:36:47 -07002072 }
2073 return 1;
2074}
2075
mike@reedtribe.org792bbd12013-06-11 02:20:28 +00002076static int lsk_loadImage(lua_State* L) {
2077 if (lua_gettop(L) > 0 && lua_isstring(L, 1)) {
halcanary96fcdcc2015-08-27 07:41:13 -07002078 const char* name = lua_tolstring(L, 1, nullptr);
reed9ce9d672016-03-17 10:51:11 -07002079 sk_sp<SkData> data(SkData::MakeFromFileName(name));
2080 if (data) {
2081 auto image = SkImage::MakeFromEncoded(std::move(data));
mike@reedtribe.org792bbd12013-06-11 02:20:28 +00002082 if (image) {
reed9ce9d672016-03-17 10:51:11 -07002083 push_ref(L, std::move(image));
mike@reedtribe.org792bbd12013-06-11 02:20:28 +00002084 return 1;
2085 }
2086 }
2087 }
2088 return 0;
2089}
2090
reed@google.com3597b732013-05-22 20:12:50 +00002091static void register_Sk(lua_State* L) {
2092 lua_newtable(L);
2093 lua_pushvalue(L, -1);
2094 lua_setglobal(L, "Sk");
2095 // the Sk table is still on top
2096
mike@reedtribe.orgfb858242013-06-08 16:39:44 +00002097 setfield_function(L, "newDocumentPDF", lsk_newDocumentPDF);
mike@reedtribe.org792bbd12013-06-11 02:20:28 +00002098 setfield_function(L, "loadImage", lsk_loadImage);
reed468b1812014-10-19 11:42:54 -07002099 setfield_function(L, "newBlurImageFilter", lsk_newBlurImageFilter);
reed9fbc3f32014-10-21 07:12:58 -07002100 setfield_function(L, "newLinearGradient", lsk_newLinearGradient);
reedbdc49ae2014-10-14 09:34:52 -07002101 setfield_function(L, "newMatrix", lsk_newMatrix);
reed@google.com3597b732013-05-22 20:12:50 +00002102 setfield_function(L, "newPaint", lsk_newPaint);
2103 setfield_function(L, "newPath", lsk_newPath);
reed96affcd2014-10-13 12:38:04 -07002104 setfield_function(L, "newPictureRecorder", lsk_newPictureRecorder);
reed@google.com3597b732013-05-22 20:12:50 +00002105 setfield_function(L, "newRRect", lsk_newRRect);
reed485557f2014-10-12 10:36:47 -07002106 setfield_function(L, "newRasterSurface", lsk_newRasterSurface);
reed1b6ab442014-11-03 19:55:41 -08002107 setfield_function(L, "newTextBlob", lsk_newTextBlob);
mike@reedtribe.orge6469f12013-06-08 03:15:47 +00002108 setfield_function(L, "newTypeface", lsk_newTypeface);
reed@google.com3597b732013-05-22 20:12:50 +00002109 lua_pop(L, 1); // pop off the Sk table
2110}
2111
reed@google.com74ce6f02013-05-22 15:13:18 +00002112#define REG_CLASS(L, C) \
2113 do { \
reed@google.com3597b732013-05-22 20:12:50 +00002114 luaL_newmetatable(L, get_mtname<C>()); \
reed@google.com74ce6f02013-05-22 15:13:18 +00002115 lua_pushvalue(L, -1); \
2116 lua_setfield(L, -2, "__index"); \
2117 luaL_setfuncs(L, g##C##_Methods, 0); \
2118 lua_pop(L, 1); /* pop off the meta-table */ \
2119 } while (0)
2120
2121void SkLua::Load(lua_State* L) {
reed@google.com3597b732013-05-22 20:12:50 +00002122 register_Sk(L);
reed@google.com74ce6f02013-05-22 15:13:18 +00002123 REG_CLASS(L, SkCanvas);
reed22a517f2015-12-04 20:45:59 -08002124 REG_CLASS(L, SkColorFilter);
mike@reedtribe.orgfb858242013-06-08 16:39:44 +00002125 REG_CLASS(L, SkDocument);
mike@reedtribe.org792bbd12013-06-11 02:20:28 +00002126 REG_CLASS(L, SkImage);
reed468b1812014-10-19 11:42:54 -07002127 REG_CLASS(L, SkImageFilter);
reed1b6ab442014-11-03 19:55:41 -08002128 REG_CLASS(L, SkMatrix);
reed@google.com74ce6f02013-05-22 15:13:18 +00002129 REG_CLASS(L, SkPaint);
commit-bot@chromium.org1301bf32014-03-17 23:09:47 +00002130 REG_CLASS(L, SkPath);
2131 REG_CLASS(L, SkPathEffect);
reed96affcd2014-10-13 12:38:04 -07002132 REG_CLASS(L, SkPicture);
2133 REG_CLASS(L, SkPictureRecorder);
reed@google.com74ce6f02013-05-22 15:13:18 +00002134 REG_CLASS(L, SkRRect);
reed@google.com5fdc9832013-07-24 15:47:52 +00002135 REG_CLASS(L, SkShader);
reed485557f2014-10-12 10:36:47 -07002136 REG_CLASS(L, SkSurface);
reed1b6ab442014-11-03 19:55:41 -08002137 REG_CLASS(L, SkTextBlob);
mike@reedtribe.orge6469f12013-06-08 03:15:47 +00002138 REG_CLASS(L, SkTypeface);
robertphillips233bab92016-01-21 09:05:32 -08002139 REG_CLASS(L, SkXfermode);
reed@google.com74ce6f02013-05-22 15:13:18 +00002140}
zachr@google.com28c27c82013-06-20 17:15:05 +00002141
reed@google.com7bce9982013-06-20 17:40:21 +00002142extern "C" int luaopen_skia(lua_State* L);
zachr@google.com28c27c82013-06-20 17:15:05 +00002143extern "C" int luaopen_skia(lua_State* L) {
2144 SkLua::Load(L);
2145 return 0;
2146}