blob: 7491086a85ed569368477c070d08c702c478d2d3 [file] [log] [blame]
reed@google.com74ce6f02013-05-22 15:13:18 +00001/*
2 * Copyright 2013 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#include "SkLua.h"
bsalomon@google.com4ebe3822014-02-26 20:22:32 +00009
10#if SK_SUPPORT_GPU
11#include "GrReducedClip.h"
12#endif
13
reed468b1812014-10-19 11:42:54 -070014#include "SkBlurImageFilter.h"
reed@google.com74ce6f02013-05-22 15:13:18 +000015#include "SkCanvas.h"
mike@reedtribe.org792bbd12013-06-11 02:20:28 +000016#include "SkData.h"
piotaixr4bcc2022014-09-17 14:33:30 -070017#include "SkDecodingImageGenerator.h"
mike@reedtribe.orgfb858242013-06-08 16:39:44 +000018#include "SkDocument.h"
reed9fbc3f32014-10-21 07:12:58 -070019#include "SkGradientShader.h"
mike@reedtribe.org792bbd12013-06-11 02:20:28 +000020#include "SkImage.h"
21#include "SkMatrix.h"
reed@google.com74ce6f02013-05-22 15:13:18 +000022#include "SkPaint.h"
23#include "SkPath.h"
reed96affcd2014-10-13 12:38:04 -070024#include "SkPictureRecorder.h"
reed@google.com5fdc9832013-07-24 15:47:52 +000025#include "SkPixelRef.h"
reed@google.com74ce6f02013-05-22 15:13:18 +000026#include "SkRRect.h"
27#include "SkString.h"
reed485557f2014-10-12 10:36:47 -070028#include "SkSurface.h"
fmalitab7425172014-08-26 07:56:44 -070029#include "SkTextBlob.h"
reed@google.come3823fd2013-05-30 18:55:14 +000030#include "SkTypeface.h"
reed@google.com74ce6f02013-05-22 15:13:18 +000031
32extern "C" {
reed@google.com3597b732013-05-22 20:12:50 +000033 #include "lua.h"
34 #include "lualib.h"
35 #include "lauxlib.h"
reed@google.com74ce6f02013-05-22 15:13:18 +000036}
37
reed@google.comfd345872013-05-22 20:53:42 +000038// return the metatable name for a given class
reed@google.com3597b732013-05-22 20:12:50 +000039template <typename T> const char* get_mtname();
reed@google.comfd345872013-05-22 20:53:42 +000040#define DEF_MTNAME(T) \
41 template <> const char* get_mtname<T>() { \
42 return #T "_LuaMetaTableName"; \
43 }
44
45DEF_MTNAME(SkCanvas)
mike@reedtribe.orgfb858242013-06-08 16:39:44 +000046DEF_MTNAME(SkDocument)
mike@reedtribe.org792bbd12013-06-11 02:20:28 +000047DEF_MTNAME(SkImage)
reed468b1812014-10-19 11:42:54 -070048DEF_MTNAME(SkImageFilter)
reed@google.comfd345872013-05-22 20:53:42 +000049DEF_MTNAME(SkMatrix)
50DEF_MTNAME(SkRRect)
51DEF_MTNAME(SkPath)
52DEF_MTNAME(SkPaint)
commit-bot@chromium.org1301bf32014-03-17 23:09:47 +000053DEF_MTNAME(SkPathEffect)
reed96affcd2014-10-13 12:38:04 -070054DEF_MTNAME(SkPicture)
55DEF_MTNAME(SkPictureRecorder)
reed@google.com5fdc9832013-07-24 15:47:52 +000056DEF_MTNAME(SkShader)
reed485557f2014-10-12 10:36:47 -070057DEF_MTNAME(SkSurface)
fmalitab7425172014-08-26 07:56:44 -070058DEF_MTNAME(SkTextBlob)
mike@reedtribe.orge6469f12013-06-08 03:15:47 +000059DEF_MTNAME(SkTypeface)
reed@google.com74ce6f02013-05-22 15:13:18 +000060
reed@google.com3597b732013-05-22 20:12:50 +000061template <typename T> T* push_new(lua_State* L) {
62 T* addr = (T*)lua_newuserdata(L, sizeof(T));
63 new (addr) T;
64 luaL_getmetatable(L, get_mtname<T>());
65 lua_setmetatable(L, -2);
66 return addr;
67}
reed@google.com74ce6f02013-05-22 15:13:18 +000068
69template <typename T> void push_obj(lua_State* L, const T& obj) {
70 new (lua_newuserdata(L, sizeof(T))) T(obj);
reed@google.com3597b732013-05-22 20:12:50 +000071 luaL_getmetatable(L, get_mtname<T>());
reed@google.com74ce6f02013-05-22 15:13:18 +000072 lua_setmetatable(L, -2);
73}
74
reed9fbc3f32014-10-21 07:12:58 -070075template <typename T> T* push_ref(lua_State* L, T* ref) {
commit-bot@chromium.org77887af2013-12-17 14:28:19 +000076 *(T**)lua_newuserdata(L, sizeof(T*)) = SkSafeRef(ref);
reed@google.com3597b732013-05-22 20:12:50 +000077 luaL_getmetatable(L, get_mtname<T>());
reed@google.com74ce6f02013-05-22 15:13:18 +000078 lua_setmetatable(L, -2);
reed9fbc3f32014-10-21 07:12:58 -070079 return ref;
reed@google.com74ce6f02013-05-22 15:13:18 +000080}
81
82template <typename T> T* get_ref(lua_State* L, int index) {
reed@google.com3597b732013-05-22 20:12:50 +000083 return *(T**)luaL_checkudata(L, index, get_mtname<T>());
reed@google.com74ce6f02013-05-22 15:13:18 +000084}
85
86template <typename T> T* get_obj(lua_State* L, int index) {
reed@google.com3597b732013-05-22 20:12:50 +000087 return (T*)luaL_checkudata(L, index, get_mtname<T>());
reed@google.com74ce6f02013-05-22 15:13:18 +000088}
89
reed@google.com88c9ec92013-05-22 15:43:21 +000090static bool lua2bool(lua_State* L, int index) {
91 return !!lua_toboolean(L, index);
92}
93
reed@google.com74ce6f02013-05-22 15:13:18 +000094///////////////////////////////////////////////////////////////////////////////
95
reed@google.com3597b732013-05-22 20:12:50 +000096SkLua::SkLua(const char termCode[]) : fTermCode(termCode), fWeOwnL(true) {
97 fL = luaL_newstate();
98 luaL_openlibs(fL);
99 SkLua::Load(fL);
100}
101
102SkLua::SkLua(lua_State* L) : fL(L), fWeOwnL(false) {}
103
104SkLua::~SkLua() {
105 if (fWeOwnL) {
106 if (fTermCode.size() > 0) {
107 lua_getglobal(fL, fTermCode.c_str());
108 if (lua_pcall(fL, 0, 0, 0) != LUA_OK) {
109 SkDebugf("lua err: %s\n", lua_tostring(fL, -1));
110 }
111 }
112 lua_close(fL);
113 }
114}
115
116bool SkLua::runCode(const char code[]) {
117 int err = luaL_loadstring(fL, code) || lua_pcall(fL, 0, 0, 0);
118 if (err) {
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +0000119 SkDebugf("--- lua failed: %s\n", lua_tostring(fL, -1));
reed@google.com3597b732013-05-22 20:12:50 +0000120 return false;
121 }
122 return true;
123}
124
125bool SkLua::runCode(const void* code, size_t size) {
126 SkString str((const char*)code, size);
127 return this->runCode(str.c_str());
128}
129
130///////////////////////////////////////////////////////////////////////////////
131
132#define CHECK_SETFIELD(key) do if (key) lua_setfield(fL, -2, key); while (0)
133
reed@google.com29563872013-07-10 21:23:49 +0000134static void setfield_bool_if(lua_State* L, const char key[], bool pred) {
135 if (pred) {
136 lua_pushboolean(L, true);
137 lua_setfield(L, -2, key);
138 }
139}
140
reed@google.com74ce6f02013-05-22 15:13:18 +0000141static void setfield_string(lua_State* L, const char key[], const char value[]) {
142 lua_pushstring(L, value);
143 lua_setfield(L, -2, key);
144}
145
146static void setfield_number(lua_State* L, const char key[], double value) {
147 lua_pushnumber(L, value);
148 lua_setfield(L, -2, key);
149}
150
humper@google.com2815c192013-07-10 22:42:30 +0000151static void setfield_boolean(lua_State* L, const char key[], bool value) {
152 lua_pushboolean(L, value);
153 lua_setfield(L, -2, key);
154}
155
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +0000156static void setfield_scalar(lua_State* L, const char key[], SkScalar value) {
157 setfield_number(L, key, SkScalarToLua(value));
158}
159
reed@google.com3597b732013-05-22 20:12:50 +0000160static void setfield_function(lua_State* L,
161 const char key[], lua_CFunction value) {
162 lua_pushcfunction(L, value);
163 lua_setfield(L, -2, key);
reed@google.com74ce6f02013-05-22 15:13:18 +0000164}
165
reed@google.come3823fd2013-05-30 18:55:14 +0000166static void setarray_number(lua_State* L, int index, double value) {
167 lua_pushnumber(L, value);
168 lua_rawseti(L, -2, index);
169}
170
commit-bot@chromium.org4d803a92014-05-14 16:03:14 +0000171static void setarray_scalar(lua_State* L, int index, SkScalar value) {
172 setarray_number(L, index, SkScalarToLua(value));
173}
174
reed@google.com74ce6f02013-05-22 15:13:18 +0000175void SkLua::pushBool(bool value, const char key[]) {
176 lua_pushboolean(fL, value);
177 CHECK_SETFIELD(key);
178}
179
180void SkLua::pushString(const char str[], const char key[]) {
181 lua_pushstring(fL, str);
182 CHECK_SETFIELD(key);
183}
184
reed@google.come3823fd2013-05-30 18:55:14 +0000185void SkLua::pushString(const char str[], size_t length, const char key[]) {
186 // TODO: how to do this w/o making a copy?
187 SkString s(str, length);
188 lua_pushstring(fL, s.c_str());
189 CHECK_SETFIELD(key);
190}
191
reed@google.com74ce6f02013-05-22 15:13:18 +0000192void SkLua::pushString(const SkString& str, const char key[]) {
193 lua_pushstring(fL, str.c_str());
194 CHECK_SETFIELD(key);
195}
196
197void SkLua::pushColor(SkColor color, const char key[]) {
198 lua_newtable(fL);
199 setfield_number(fL, "a", SkColorGetA(color) / 255.0);
200 setfield_number(fL, "r", SkColorGetR(color) / 255.0);
201 setfield_number(fL, "g", SkColorGetG(color) / 255.0);
202 setfield_number(fL, "b", SkColorGetB(color) / 255.0);
203 CHECK_SETFIELD(key);
204}
205
reed@google.come3823fd2013-05-30 18:55:14 +0000206void SkLua::pushU32(uint32_t value, const char key[]) {
207 lua_pushnumber(fL, (double)value);
208 CHECK_SETFIELD(key);
209}
210
reed@google.com74ce6f02013-05-22 15:13:18 +0000211void SkLua::pushScalar(SkScalar value, const char key[]) {
212 lua_pushnumber(fL, SkScalarToLua(value));
213 CHECK_SETFIELD(key);
214}
215
reed@google.come3823fd2013-05-30 18:55:14 +0000216void SkLua::pushArrayU16(const uint16_t array[], int count, const char key[]) {
217 lua_newtable(fL);
218 for (int i = 0; i < count; ++i) {
219 // make it base-1 to match lua convention
220 setarray_number(fL, i + 1, (double)array[i]);
221 }
222 CHECK_SETFIELD(key);
223}
224
commit-bot@chromium.org1301bf32014-03-17 23:09:47 +0000225void SkLua::pushArrayPoint(const SkPoint array[], int count, const char key[]) {
226 lua_newtable(fL);
227 for (int i = 0; i < count; ++i) {
228 // make it base-1 to match lua convention
229 lua_newtable(fL);
230 this->pushScalar(array[i].fX, "x");
231 this->pushScalar(array[i].fY, "y");
232 lua_rawseti(fL, -2, i + 1);
233 }
234 CHECK_SETFIELD(key);
235}
236
commit-bot@chromium.org4d803a92014-05-14 16:03:14 +0000237void SkLua::pushArrayScalar(const SkScalar array[], int count, const char key[]) {
238 lua_newtable(fL);
239 for (int i = 0; i < count; ++i) {
240 // make it base-1 to match lua convention
241 setarray_scalar(fL, i + 1, array[i]);
242 }
243 CHECK_SETFIELD(key);
244}
245
reed@google.com74ce6f02013-05-22 15:13:18 +0000246void SkLua::pushRect(const SkRect& r, const char key[]) {
247 lua_newtable(fL);
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +0000248 setfield_scalar(fL, "left", r.fLeft);
249 setfield_scalar(fL, "top", r.fTop);
250 setfield_scalar(fL, "right", r.fRight);
251 setfield_scalar(fL, "bottom", r.fBottom);
reed@google.com74ce6f02013-05-22 15:13:18 +0000252 CHECK_SETFIELD(key);
253}
254
255void SkLua::pushRRect(const SkRRect& rr, const char key[]) {
256 push_obj(fL, rr);
257 CHECK_SETFIELD(key);
258}
259
commit-bot@chromium.org4d803a92014-05-14 16:03:14 +0000260void SkLua::pushDash(const SkPathEffect::DashInfo& info, const char key[]) {
261 lua_newtable(fL);
262 setfield_scalar(fL, "phase", info.fPhase);
263 this->pushArrayScalar(info.fIntervals, info.fCount, "intervals");
264 CHECK_SETFIELD(key);
265}
266
267
reed@google.com74ce6f02013-05-22 15:13:18 +0000268void SkLua::pushMatrix(const SkMatrix& matrix, const char key[]) {
269 push_obj(fL, matrix);
270 CHECK_SETFIELD(key);
271}
272
273void SkLua::pushPaint(const SkPaint& paint, const char key[]) {
274 push_obj(fL, paint);
275 CHECK_SETFIELD(key);
276}
277
278void SkLua::pushPath(const SkPath& path, const char key[]) {
279 push_obj(fL, path);
280 CHECK_SETFIELD(key);
281}
282
283void SkLua::pushCanvas(SkCanvas* canvas, const char key[]) {
284 push_ref(fL, canvas);
285 CHECK_SETFIELD(key);
286}
287
fmalitab7425172014-08-26 07:56:44 -0700288void SkLua::pushTextBlob(const SkTextBlob* blob, const char key[]) {
289 push_ref(fL, const_cast<SkTextBlob*>(blob));
290 CHECK_SETFIELD(key);
291}
292
commit-bot@chromium.org5cc25352014-02-24 18:59:48 +0000293static const char* element_type(SkClipStack::Element::Type type) {
294 switch (type) {
295 case SkClipStack::Element::kEmpty_Type:
296 return "empty";
297 case SkClipStack::Element::kRect_Type:
298 return "rect";
299 case SkClipStack::Element::kRRect_Type:
300 return "rrect";
301 case SkClipStack::Element::kPath_Type:
302 return "path";
303 }
304 return "unknown";
305}
306
307static const char* region_op(SkRegion::Op op) {
308 switch (op) {
309 case SkRegion::kDifference_Op:
310 return "difference";
311 case SkRegion::kIntersect_Op:
312 return "intersect";
313 case SkRegion::kUnion_Op:
314 return "union";
315 case SkRegion::kXOR_Op:
316 return "xor";
317 case SkRegion::kReverseDifference_Op:
318 return "reverse-difference";
319 case SkRegion::kReplace_Op:
320 return "replace";
321 }
322 return "unknown";
323}
324
325void SkLua::pushClipStack(const SkClipStack& stack, const char* key) {
326 lua_newtable(fL);
327 SkClipStack::B2TIter iter(stack);
328 const SkClipStack::Element* element;
329 int i = 0;
bsalomon49f085d2014-09-05 13:34:00 -0700330 while ((element = iter.next())) {
bsalomon@google.com4ebe3822014-02-26 20:22:32 +0000331 this->pushClipStackElement(*element);
commit-bot@chromium.org5cc25352014-02-24 18:59:48 +0000332 lua_rawseti(fL, -2, ++i);
333 }
334 CHECK_SETFIELD(key);
335}
336
bsalomon@google.com4ebe3822014-02-26 20:22:32 +0000337void SkLua::pushClipStackElement(const SkClipStack::Element& element, const char* key) {
338 lua_newtable(fL);
339 SkClipStack::Element::Type type = element.getType();
340 this->pushString(element_type(type), "type");
341 switch (type) {
342 case SkClipStack::Element::kEmpty_Type:
343 break;
344 case SkClipStack::Element::kRect_Type:
345 this->pushRect(element.getRect(), "rect");
346 break;
347 case SkClipStack::Element::kRRect_Type:
348 this->pushRRect(element.getRRect(), "rrect");
349 break;
350 case SkClipStack::Element::kPath_Type:
351 this->pushPath(element.getPath(), "path");
352 break;
353 }
354 this->pushString(region_op(element.getOp()), "op");
355 this->pushBool(element.isAA(), "aa");
356 CHECK_SETFIELD(key);
357}
358
359
reed@google.com74ce6f02013-05-22 15:13:18 +0000360///////////////////////////////////////////////////////////////////////////////
361///////////////////////////////////////////////////////////////////////////////
362
reed485557f2014-10-12 10:36:47 -0700363static int lua2int_def(lua_State* L, int index, int defaultValue) {
364 if (lua_isnumber(L, index)) {
365 return (int)lua_tonumber(L, index);
366 } else {
367 return defaultValue;
368 }
369}
370
reed@google.com74ce6f02013-05-22 15:13:18 +0000371static SkScalar lua2scalar(lua_State* L, int index) {
372 SkASSERT(lua_isnumber(L, index));
373 return SkLuaToScalar(lua_tonumber(L, index));
374}
375
mike@reedtribe.org1d32cc62013-06-13 01:28:56 +0000376static SkScalar lua2scalar_def(lua_State* L, int index, SkScalar defaultValue) {
377 if (lua_isnumber(L, index)) {
378 return SkLuaToScalar(lua_tonumber(L, index));
379 } else {
380 return defaultValue;
381 }
382}
383
reed@google.com74ce6f02013-05-22 15:13:18 +0000384static SkScalar getfield_scalar(lua_State* L, int index, const char key[]) {
385 SkASSERT(lua_istable(L, index));
386 lua_pushstring(L, key);
387 lua_gettable(L, index);
skia.committer@gmail.com370c5342013-06-09 07:01:05 +0000388
reed@google.com74ce6f02013-05-22 15:13:18 +0000389 SkScalar value = lua2scalar(L, -1);
390 lua_pop(L, 1);
391 return value;
392}
393
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +0000394static SkScalar getfield_scalar_default(lua_State* L, int index, const char key[], SkScalar def) {
395 SkASSERT(lua_istable(L, index));
396 lua_pushstring(L, key);
397 lua_gettable(L, index);
skia.committer@gmail.com370c5342013-06-09 07:01:05 +0000398
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +0000399 SkScalar value;
400 if (lua_isnil(L, -1)) {
401 value = def;
402 } else {
403 value = lua2scalar(L, -1);
404 }
405 lua_pop(L, 1);
406 return value;
407}
408
reed468b1812014-10-19 11:42:54 -0700409static SkScalar byte2unit(U8CPU byte) {
410 return byte / 255.0f;
411}
412
reed@google.com74ce6f02013-05-22 15:13:18 +0000413static U8CPU unit2byte(SkScalar x) {
414 if (x <= 0) {
415 return 0;
416 } else if (x >= 1) {
417 return 255;
418 } else {
419 return SkScalarRoundToInt(x * 255);
420 }
421}
422
423static SkColor lua2color(lua_State* L, int index) {
reed485557f2014-10-12 10:36:47 -0700424 return SkColorSetARGB(unit2byte(getfield_scalar_default(L, index, "a", 1)),
425 unit2byte(getfield_scalar_default(L, index, "r", 0)),
426 unit2byte(getfield_scalar_default(L, index, "g", 0)),
427 unit2byte(getfield_scalar_default(L, index, "b", 0)));
reed@google.com74ce6f02013-05-22 15:13:18 +0000428}
429
430static SkRect* lua2rect(lua_State* L, int index, SkRect* rect) {
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +0000431 rect->set(getfield_scalar_default(L, index, "left", 0),
432 getfield_scalar_default(L, index, "top", 0),
reed@google.com74ce6f02013-05-22 15:13:18 +0000433 getfield_scalar(L, index, "right"),
434 getfield_scalar(L, index, "bottom"));
435 return rect;
436}
437
reedf355df52014-10-12 12:18:40 -0700438static int lcanvas_clear(lua_State* L) {
439 get_ref<SkCanvas>(L, 1)->clear(0);
440 return 0;
441}
442
reed@google.com74ce6f02013-05-22 15:13:18 +0000443static int lcanvas_drawColor(lua_State* L) {
444 get_ref<SkCanvas>(L, 1)->drawColor(lua2color(L, 2));
445 return 0;
446}
447
reed9fbc3f32014-10-21 07:12:58 -0700448static int lcanvas_drawPaint(lua_State* L) {
449 get_ref<SkCanvas>(L, 1)->drawPaint(*get_obj<SkPaint>(L, 2));
450 return 0;
451}
452
reed@google.com74ce6f02013-05-22 15:13:18 +0000453static int lcanvas_drawRect(lua_State* L) {
454 SkRect rect;
455 get_ref<SkCanvas>(L, 1)->drawRect(*lua2rect(L, 2, &rect),
456 *get_obj<SkPaint>(L, 3));
457 return 0;
458}
459
460static int lcanvas_drawOval(lua_State* L) {
461 SkRect rect;
462 get_ref<SkCanvas>(L, 1)->drawOval(*lua2rect(L, 2, &rect),
463 *get_obj<SkPaint>(L, 3));
464 return 0;
465}
466
467static int lcanvas_drawCircle(lua_State* L) {
468 get_ref<SkCanvas>(L, 1)->drawCircle(lua2scalar(L, 2),
469 lua2scalar(L, 3),
470 lua2scalar(L, 4),
471 *get_obj<SkPaint>(L, 5));
472 return 0;
473}
474
reed485557f2014-10-12 10:36:47 -0700475static SkPaint* lua2OptionalPaint(lua_State* L, int index, SkPaint* paint) {
476 if (lua_isnumber(L, index)) {
477 paint->setAlpha(SkScalarRoundToInt(lua2scalar(L, index) * 255));
478 return paint;
reedf355df52014-10-12 12:18:40 -0700479 } else if (lua_isuserdata(L, index)) {
reed485557f2014-10-12 10:36:47 -0700480 const SkPaint* ptr = get_obj<SkPaint>(L, index);
481 if (ptr) {
482 *paint = *ptr;
483 return paint;
484 }
485 }
486 return NULL;
487}
488
mike@reedtribe.org792bbd12013-06-11 02:20:28 +0000489static int lcanvas_drawImage(lua_State* L) {
490 SkCanvas* canvas = get_ref<SkCanvas>(L, 1);
491 SkImage* image = get_ref<SkImage>(L, 2);
492 if (NULL == image) {
493 return 0;
494 }
495 SkScalar x = lua2scalar(L, 3);
496 SkScalar y = lua2scalar(L, 4);
497
498 SkPaint paint;
reed485557f2014-10-12 10:36:47 -0700499 canvas->drawImage(image, x, y, lua2OptionalPaint(L, 5, &paint));
mike@reedtribe.org792bbd12013-06-11 02:20:28 +0000500 return 0;
501}
502
reedba5fb932014-10-10 15:28:19 -0700503static int lcanvas_drawImageRect(lua_State* L) {
504 SkCanvas* canvas = get_ref<SkCanvas>(L, 1);
505 SkImage* image = get_ref<SkImage>(L, 2);
506 if (NULL == image) {
507 return 0;
508 }
509
510 SkRect srcR, dstR;
511 SkRect* srcRPtr = NULL;
512 if (!lua_isnil(L, 3)) {
513 srcRPtr = lua2rect(L, 3, &srcR);
514 }
515 lua2rect(L, 4, &dstR);
516
517 SkPaint paint;
reed485557f2014-10-12 10:36:47 -0700518 canvas->drawImageRect(image, srcRPtr, dstR, lua2OptionalPaint(L, 5, &paint));
reedba5fb932014-10-10 15:28:19 -0700519 return 0;
520}
521
reed@google.comfd345872013-05-22 20:53:42 +0000522static int lcanvas_drawPath(lua_State* L) {
523 get_ref<SkCanvas>(L, 1)->drawPath(*get_obj<SkPath>(L, 2),
524 *get_obj<SkPaint>(L, 3));
525 return 0;
526}
527
reed96affcd2014-10-13 12:38:04 -0700528// drawPicture(pic, x, y, paint)
529static int lcanvas_drawPicture(lua_State* L) {
530 SkCanvas* canvas = get_ref<SkCanvas>(L, 1);
531 SkPicture* picture = get_ref<SkPicture>(L, 2);
532 SkScalar x = lua2scalar_def(L, 3, 0);
533 SkScalar y = lua2scalar_def(L, 4, 0);
534 SkMatrix matrix, *matrixPtr = NULL;
535 if (x || y) {
536 matrix.setTranslate(x, y);
537 matrixPtr = &matrix;
538 }
539 SkPaint paint;
540 canvas->drawPicture(picture, matrixPtr, lua2OptionalPaint(L, 5, &paint));
541 return 0;
542}
543
mike@reedtribe.orge6469f12013-06-08 03:15:47 +0000544static int lcanvas_drawText(lua_State* L) {
545 if (lua_gettop(L) < 5) {
546 return 0;
547 }
548
549 if (lua_isstring(L, 2) && lua_isnumber(L, 3) && lua_isnumber(L, 4)) {
550 size_t len;
551 const char* text = lua_tolstring(L, 2, &len);
552 get_ref<SkCanvas>(L, 1)->drawText(text, len,
553 lua2scalar(L, 3), lua2scalar(L, 4),
554 *get_obj<SkPaint>(L, 5));
555 }
556 return 0;
557}
558
reed1b6ab442014-11-03 19:55:41 -0800559static int lcanvas_drawTextBlob(lua_State* L) {
560 const SkTextBlob* blob = get_ref<SkTextBlob>(L, 2);
561 SkScalar x = lua2scalar(L, 3);
562 SkScalar y = lua2scalar(L, 4);
563 const SkPaint& paint = *get_obj<SkPaint>(L, 5);
564 get_ref<SkCanvas>(L, 1)->drawTextBlob(blob, x, y, paint);
565 return 0;
566}
567
reed@google.com74ce6f02013-05-22 15:13:18 +0000568static int lcanvas_getSaveCount(lua_State* L) {
569 lua_pushnumber(L, get_ref<SkCanvas>(L, 1)->getSaveCount());
570 return 1;
571}
572
573static int lcanvas_getTotalMatrix(lua_State* L) {
574 SkLua(L).pushMatrix(get_ref<SkCanvas>(L, 1)->getTotalMatrix());
575 return 1;
576}
577
commit-bot@chromium.org5cc25352014-02-24 18:59:48 +0000578static int lcanvas_getClipStack(lua_State* L) {
579 SkLua(L).pushClipStack(*get_ref<SkCanvas>(L, 1)->getClipStack());
580 return 1;
581}
582
bsalomon@google.com4ebe3822014-02-26 20:22:32 +0000583int SkLua::lcanvas_getReducedClipStack(lua_State* L) {
584#if SK_SUPPORT_GPU
585 const SkCanvas* canvas = get_ref<SkCanvas>(L, 1);
586 SkISize layerSize = canvas->getTopLayerSize();
587 SkIPoint layerOrigin = canvas->getTopLayerOrigin();
588 SkIRect queryBounds = SkIRect::MakeXYWH(layerOrigin.fX, layerOrigin.fY,
589 layerSize.fWidth, layerSize.fHeight);
590
591 GrReducedClip::ElementList elements;
592 GrReducedClip::InitialState initialState;
593 int32_t genID;
594 SkIRect resultBounds;
595
596 const SkClipStack& stack = *canvas->getClipStack();
597
598 GrReducedClip::ReduceClipStack(stack,
599 queryBounds,
600 &elements,
601 &genID,
602 &initialState,
603 &resultBounds,
604 NULL);
605
606 GrReducedClip::ElementList::Iter iter(elements);
607 int i = 0;
608 lua_newtable(L);
bsalomon49f085d2014-09-05 13:34:00 -0700609 while(iter.get()) {
bsalomon@google.com4ebe3822014-02-26 20:22:32 +0000610 SkLua(L).pushClipStackElement(*iter.get());
611 iter.next();
612 lua_rawseti(L, -2, ++i);
613 }
614 // Currently this only returns the element list to lua, not the initial state or result bounds.
615 // It could return these as additional items on the lua stack.
616 return 1;
617#else
618 return 0;
619#endif
620}
621
mike@reedtribe.orgfb858242013-06-08 16:39:44 +0000622static int lcanvas_save(lua_State* L) {
623 lua_pushinteger(L, get_ref<SkCanvas>(L, 1)->save());
624 return 1;
625}
626
reed86217d82014-10-25 20:44:40 -0700627static int lcanvas_saveLayer(lua_State* L) {
628 SkPaint paint;
629 lua_pushinteger(L, get_ref<SkCanvas>(L, 1)->saveLayer(NULL, lua2OptionalPaint(L, 2, &paint)));
630 return 1;
631}
632
mike@reedtribe.orgfb858242013-06-08 16:39:44 +0000633static int lcanvas_restore(lua_State* L) {
634 get_ref<SkCanvas>(L, 1)->restore();
635 return 0;
636}
637
mike@reedtribe.org1d32cc62013-06-13 01:28:56 +0000638static int lcanvas_scale(lua_State* L) {
639 SkScalar sx = lua2scalar_def(L, 2, 1);
640 SkScalar sy = lua2scalar_def(L, 3, sx);
641 get_ref<SkCanvas>(L, 1)->scale(sx, sy);
642 return 0;
643}
644
reed@google.com3597b732013-05-22 20:12:50 +0000645static int lcanvas_translate(lua_State* L) {
mike@reedtribe.org1d32cc62013-06-13 01:28:56 +0000646 SkScalar tx = lua2scalar_def(L, 2, 0);
647 SkScalar ty = lua2scalar_def(L, 3, 0);
648 get_ref<SkCanvas>(L, 1)->translate(tx, ty);
649 return 0;
650}
651
652static int lcanvas_rotate(lua_State* L) {
653 SkScalar degrees = lua2scalar_def(L, 2, 0);
654 get_ref<SkCanvas>(L, 1)->rotate(degrees);
reed@google.com3597b732013-05-22 20:12:50 +0000655 return 0;
656}
657
reedbdc49ae2014-10-14 09:34:52 -0700658static int lcanvas_concat(lua_State* L) {
659 get_ref<SkCanvas>(L, 1)->concat(*get_obj<SkMatrix>(L, 2));
660 return 0;
661}
662
reed485557f2014-10-12 10:36:47 -0700663static int lcanvas_newSurface(lua_State* L) {
664 int width = lua2int_def(L, 2, 0);
665 int height = lua2int_def(L, 2, 0);
666 SkImageInfo info = SkImageInfo::MakeN32Premul(width, height);
667 SkSurface* surface = get_ref<SkCanvas>(L, 1)->newSurface(info);
668 if (NULL == surface) {
669 lua_pushnil(L);
670 } else {
reed9fbc3f32014-10-21 07:12:58 -0700671 push_ref(L, surface)->unref();
reed485557f2014-10-12 10:36:47 -0700672 }
673 return 1;
674}
675
reed@google.com74ce6f02013-05-22 15:13:18 +0000676static int lcanvas_gc(lua_State* L) {
677 get_ref<SkCanvas>(L, 1)->unref();
678 return 0;
679}
680
bsalomon@google.com4ebe3822014-02-26 20:22:32 +0000681const struct luaL_Reg gSkCanvas_Methods[] = {
reedf355df52014-10-12 12:18:40 -0700682 { "clear", lcanvas_clear },
reed@google.com74ce6f02013-05-22 15:13:18 +0000683 { "drawColor", lcanvas_drawColor },
reed9fbc3f32014-10-21 07:12:58 -0700684 { "drawPaint", lcanvas_drawPaint },
reed@google.com74ce6f02013-05-22 15:13:18 +0000685 { "drawRect", lcanvas_drawRect },
686 { "drawOval", lcanvas_drawOval },
687 { "drawCircle", lcanvas_drawCircle },
mike@reedtribe.org792bbd12013-06-11 02:20:28 +0000688 { "drawImage", lcanvas_drawImage },
reedba5fb932014-10-10 15:28:19 -0700689 { "drawImageRect", lcanvas_drawImageRect },
reed@google.comfd345872013-05-22 20:53:42 +0000690 { "drawPath", lcanvas_drawPath },
reed96affcd2014-10-13 12:38:04 -0700691 { "drawPicture", lcanvas_drawPicture },
mike@reedtribe.orge6469f12013-06-08 03:15:47 +0000692 { "drawText", lcanvas_drawText },
reed1b6ab442014-11-03 19:55:41 -0800693 { "drawTextBlob", lcanvas_drawTextBlob },
reed@google.com74ce6f02013-05-22 15:13:18 +0000694 { "getSaveCount", lcanvas_getSaveCount },
695 { "getTotalMatrix", lcanvas_getTotalMatrix },
commit-bot@chromium.org5cc25352014-02-24 18:59:48 +0000696 { "getClipStack", lcanvas_getClipStack },
bsalomon@google.com4ebe3822014-02-26 20:22:32 +0000697#if SK_SUPPORT_GPU
698 { "getReducedClipStack", SkLua::lcanvas_getReducedClipStack },
699#endif
mike@reedtribe.orgfb858242013-06-08 16:39:44 +0000700 { "save", lcanvas_save },
reed86217d82014-10-25 20:44:40 -0700701 { "saveLayer", lcanvas_saveLayer },
mike@reedtribe.orgfb858242013-06-08 16:39:44 +0000702 { "restore", lcanvas_restore },
mike@reedtribe.org1d32cc62013-06-13 01:28:56 +0000703 { "scale", lcanvas_scale },
reed@google.com3597b732013-05-22 20:12:50 +0000704 { "translate", lcanvas_translate },
mike@reedtribe.org1d32cc62013-06-13 01:28:56 +0000705 { "rotate", lcanvas_rotate },
reedbdc49ae2014-10-14 09:34:52 -0700706 { "concat", lcanvas_concat },
reed485557f2014-10-12 10:36:47 -0700707
708 { "newSurface", lcanvas_newSurface },
709
reed@google.com74ce6f02013-05-22 15:13:18 +0000710 { "__gc", lcanvas_gc },
711 { NULL, NULL }
712};
713
714///////////////////////////////////////////////////////////////////////////////
715
mike@reedtribe.orgfb858242013-06-08 16:39:44 +0000716static int ldocument_beginPage(lua_State* L) {
717 const SkRect* contentPtr = NULL;
718 push_ref(L, get_ref<SkDocument>(L, 1)->beginPage(lua2scalar(L, 2),
719 lua2scalar(L, 3),
720 contentPtr));
721 return 1;
722}
723
724static int ldocument_endPage(lua_State* L) {
725 get_ref<SkDocument>(L, 1)->endPage();
726 return 0;
727}
728
729static int ldocument_close(lua_State* L) {
730 get_ref<SkDocument>(L, 1)->close();
731 return 0;
732}
733
734static int ldocument_gc(lua_State* L) {
735 get_ref<SkDocument>(L, 1)->unref();
736 return 0;
737}
738
739static const struct luaL_Reg gSkDocument_Methods[] = {
740 { "beginPage", ldocument_beginPage },
741 { "endPage", ldocument_endPage },
742 { "close", ldocument_close },
743 { "__gc", ldocument_gc },
744 { NULL, NULL }
745};
746
747///////////////////////////////////////////////////////////////////////////////
748
reed@google.com74ce6f02013-05-22 15:13:18 +0000749static int lpaint_isAntiAlias(lua_State* L) {
750 lua_pushboolean(L, get_obj<SkPaint>(L, 1)->isAntiAlias());
751 return 1;
752}
753
754static int lpaint_setAntiAlias(lua_State* L) {
reed@google.com88c9ec92013-05-22 15:43:21 +0000755 get_obj<SkPaint>(L, 1)->setAntiAlias(lua2bool(L, 2));
reed@google.com74ce6f02013-05-22 15:13:18 +0000756 return 0;
757}
758
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +0000759static int lpaint_isDither(lua_State* L) {
760 lua_pushboolean(L, get_obj<SkPaint>(L, 1)->isDither());
761 return 1;
762}
763
reedbb8a0ab2014-11-03 22:32:07 -0800764static int lpaint_setDither(lua_State* L) {
765 get_obj<SkPaint>(L, 1)->setDither(lua2bool(L, 2));
766 return 0;
767}
768
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +0000769static int lpaint_isUnderlineText(lua_State* L) {
770 lua_pushboolean(L, get_obj<SkPaint>(L, 1)->isUnderlineText());
771 return 1;
772}
773
774static int lpaint_isStrikeThruText(lua_State* L) {
775 lua_pushboolean(L, get_obj<SkPaint>(L, 1)->isStrikeThruText());
776 return 1;
777}
778
779static int lpaint_isFakeBoldText(lua_State* L) {
780 lua_pushboolean(L, get_obj<SkPaint>(L, 1)->isFakeBoldText());
781 return 1;
782}
783
784static int lpaint_isLinearText(lua_State* L) {
785 lua_pushboolean(L, get_obj<SkPaint>(L, 1)->isLinearText());
786 return 1;
787}
788
789static int lpaint_isSubpixelText(lua_State* L) {
790 lua_pushboolean(L, get_obj<SkPaint>(L, 1)->isSubpixelText());
791 return 1;
792}
793
reed09a1d672014-10-11 13:13:11 -0700794static int lpaint_setSubpixelText(lua_State* L) {
795 get_obj<SkPaint>(L, 1)->setSubpixelText(lua2bool(L, 2));
796 return 1;
797}
798
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +0000799static int lpaint_isDevKernText(lua_State* L) {
800 lua_pushboolean(L, get_obj<SkPaint>(L, 1)->isDevKernText());
801 return 1;
802}
803
804static int lpaint_isLCDRenderText(lua_State* L) {
805 lua_pushboolean(L, get_obj<SkPaint>(L, 1)->isLCDRenderText());
806 return 1;
807}
808
809static int lpaint_isEmbeddedBitmapText(lua_State* L) {
810 lua_pushboolean(L, get_obj<SkPaint>(L, 1)->isEmbeddedBitmapText());
811 return 1;
812}
813
814static int lpaint_isAutohinted(lua_State* L) {
815 lua_pushboolean(L, get_obj<SkPaint>(L, 1)->isAutohinted());
816 return 1;
817}
818
819static int lpaint_isVerticalText(lua_State* L) {
820 lua_pushboolean(L, get_obj<SkPaint>(L, 1)->isVerticalText());
821 return 1;
822}
823
reed468b1812014-10-19 11:42:54 -0700824static int lpaint_getAlpha(lua_State* L) {
825 SkLua(L).pushScalar(byte2unit(get_obj<SkPaint>(L, 1)->getAlpha()));
826 return 1;
827}
828
829static int lpaint_setAlpha(lua_State* L) {
830 get_obj<SkPaint>(L, 1)->setAlpha(unit2byte(lua2scalar(L, 2)));
831 return 0;
832}
833
reed@google.com74ce6f02013-05-22 15:13:18 +0000834static int lpaint_getColor(lua_State* L) {
835 SkLua(L).pushColor(get_obj<SkPaint>(L, 1)->getColor());
836 return 1;
837}
838
839static int lpaint_setColor(lua_State* L) {
840 get_obj<SkPaint>(L, 1)->setColor(lua2color(L, 2));
841 return 0;
842}
843
reed@google.come3823fd2013-05-30 18:55:14 +0000844static int lpaint_getTextSize(lua_State* L) {
845 SkLua(L).pushScalar(get_obj<SkPaint>(L, 1)->getTextSize());
846 return 1;
847}
848
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +0000849static int lpaint_getTextScaleX(lua_State* L) {
850 SkLua(L).pushScalar(get_obj<SkPaint>(L, 1)->getTextScaleX());
851 return 1;
852}
853
854static int lpaint_getTextSkewX(lua_State* L) {
855 SkLua(L).pushScalar(get_obj<SkPaint>(L, 1)->getTextSkewX());
856 return 1;
857}
858
reed@google.come3823fd2013-05-30 18:55:14 +0000859static int lpaint_setTextSize(lua_State* L) {
860 get_obj<SkPaint>(L, 1)->setTextSize(lua2scalar(L, 2));
861 return 0;
862}
863
mike@reedtribe.orge6469f12013-06-08 03:15:47 +0000864static int lpaint_getTypeface(lua_State* L) {
865 push_ref(L, get_obj<SkPaint>(L, 1)->getTypeface());
866 return 1;
867}
868
869static int lpaint_setTypeface(lua_State* L) {
870 get_obj<SkPaint>(L, 1)->setTypeface(get_ref<SkTypeface>(L, 2));
871 return 0;
872}
873
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +0000874static int lpaint_getHinting(lua_State* L) {
875 SkLua(L).pushU32(get_obj<SkPaint>(L, 1)->getHinting());
876 return 1;
877}
878
reed@google.come3823fd2013-05-30 18:55:14 +0000879static int lpaint_getFontID(lua_State* L) {
880 SkTypeface* face = get_obj<SkPaint>(L, 1)->getTypeface();
881 SkLua(L).pushU32(SkTypeface::UniqueID(face));
882 return 1;
883}
884
mike@reedtribe.orgfb858242013-06-08 16:39:44 +0000885static const struct {
886 const char* fLabel;
887 SkPaint::Align fAlign;
888} gAlignRec[] = {
889 { "left", SkPaint::kLeft_Align },
890 { "center", SkPaint::kCenter_Align },
891 { "right", SkPaint::kRight_Align },
892};
893
894static int lpaint_getTextAlign(lua_State* L) {
895 SkPaint::Align align = get_obj<SkPaint>(L, 1)->getTextAlign();
896 for (size_t i = 0; i < SK_ARRAY_COUNT(gAlignRec); ++i) {
897 if (gAlignRec[i].fAlign == align) {
898 lua_pushstring(L, gAlignRec[i].fLabel);
899 return 1;
900 }
901 }
902 return 0;
903}
904
905static int lpaint_setTextAlign(lua_State* L) {
906 if (lua_isstring(L, 2)) {
907 size_t len;
908 const char* label = lua_tolstring(L, 2, &len);
skia.committer@gmail.com370c5342013-06-09 07:01:05 +0000909
mike@reedtribe.orgfb858242013-06-08 16:39:44 +0000910 for (size_t i = 0; i < SK_ARRAY_COUNT(gAlignRec); ++i) {
911 if (!strcmp(gAlignRec[i].fLabel, label)) {
912 get_obj<SkPaint>(L, 1)->setTextAlign(gAlignRec[i].fAlign);
913 break;
914 }
915 }
916 }
917 return 0;
918}
919
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +0000920static int lpaint_getStroke(lua_State* L) {
921 lua_pushboolean(L, SkPaint::kStroke_Style == get_obj<SkPaint>(L, 1)->getStyle());
922 return 1;
923}
924
925static int lpaint_setStroke(lua_State* L) {
926 SkPaint::Style style;
skia.committer@gmail.com370c5342013-06-09 07:01:05 +0000927
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +0000928 if (lua_toboolean(L, 2)) {
929 style = SkPaint::kStroke_Style;
930 } else {
931 style = SkPaint::kFill_Style;
932 }
933 get_obj<SkPaint>(L, 1)->setStyle(style);
934 return 0;
935}
936
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +0000937static int lpaint_getStrokeCap(lua_State* L) {
938 SkLua(L).pushU32(get_obj<SkPaint>(L, 1)->getStrokeCap());
939 return 1;
940}
941
942static int lpaint_getStrokeJoin(lua_State* L) {
943 SkLua(L).pushU32(get_obj<SkPaint>(L, 1)->getStrokeJoin());
944 return 1;
945}
946
947static int lpaint_getTextEncoding(lua_State* L) {
commit-bot@chromium.org641bcc32013-12-19 10:39:59 +0000948 SkLua(L).pushU32(get_obj<SkPaint>(L, 1)->getTextEncoding());
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +0000949 return 1;
950}
951
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +0000952static int lpaint_getStrokeWidth(lua_State* L) {
953 SkLua(L).pushScalar(get_obj<SkPaint>(L, 1)->getStrokeWidth());
954 return 1;
955}
956
957static int lpaint_setStrokeWidth(lua_State* L) {
958 get_obj<SkPaint>(L, 1)->setStrokeWidth(lua2scalar(L, 2));
959 return 0;
960}
961
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +0000962static int lpaint_getStrokeMiter(lua_State* L) {
963 SkLua(L).pushScalar(get_obj<SkPaint>(L, 1)->getStrokeMiter());
964 return 1;
965}
966
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +0000967static int lpaint_measureText(lua_State* L) {
968 if (lua_isstring(L, 2)) {
969 size_t len;
970 const char* text = lua_tolstring(L, 2, &len);
971 SkLua(L).pushScalar(get_obj<SkPaint>(L, 1)->measureText(text, len));
972 return 1;
973 }
974 return 0;
975}
976
977struct FontMetrics {
978 SkScalar fTop; //!< The greatest distance above the baseline for any glyph (will be <= 0)
979 SkScalar fAscent; //!< The recommended distance above the baseline (will be <= 0)
980 SkScalar fDescent; //!< The recommended distance below the baseline (will be >= 0)
981 SkScalar fBottom; //!< The greatest distance below the baseline for any glyph (will be >= 0)
982 SkScalar fLeading; //!< The recommended distance to add between lines of text (will be >= 0)
983 SkScalar fAvgCharWidth; //!< the average charactor width (>= 0)
984 SkScalar fXMin; //!< The minimum bounding box x value for all glyphs
985 SkScalar fXMax; //!< The maximum bounding box x value for all glyphs
986 SkScalar fXHeight; //!< the height of an 'x' in px, or 0 if no 'x' in face
987};
988
989static int lpaint_getFontMetrics(lua_State* L) {
990 SkPaint::FontMetrics fm;
991 SkScalar height = get_obj<SkPaint>(L, 1)->getFontMetrics(&fm);
skia.committer@gmail.com370c5342013-06-09 07:01:05 +0000992
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +0000993 lua_newtable(L);
994 setfield_scalar(L, "top", fm.fTop);
995 setfield_scalar(L, "ascent", fm.fAscent);
996 setfield_scalar(L, "descent", fm.fDescent);
997 setfield_scalar(L, "bottom", fm.fBottom);
998 setfield_scalar(L, "leading", fm.fLeading);
999 SkLua(L).pushScalar(height);
1000 return 2;
1001}
1002
reed@google.com29563872013-07-10 21:23:49 +00001003static int lpaint_getEffects(lua_State* L) {
1004 const SkPaint* paint = get_obj<SkPaint>(L, 1);
skia.committer@gmail.comde2e4e82013-07-11 07:01:01 +00001005
reed@google.com29563872013-07-10 21:23:49 +00001006 lua_newtable(L);
reed468b1812014-10-19 11:42:54 -07001007 setfield_bool_if(L, "looper", !!paint->getLooper());
1008 setfield_bool_if(L, "pathEffect", !!paint->getPathEffect());
1009 setfield_bool_if(L, "rasterizer", !!paint->getRasterizer());
1010 setfield_bool_if(L, "maskFilter", !!paint->getMaskFilter());
1011 setfield_bool_if(L, "shader", !!paint->getShader());
reed@google.com29563872013-07-10 21:23:49 +00001012 setfield_bool_if(L, "colorFilter", !!paint->getColorFilter());
1013 setfield_bool_if(L, "imageFilter", !!paint->getImageFilter());
reed468b1812014-10-19 11:42:54 -07001014 setfield_bool_if(L, "xfermode", !!paint->getXfermode());
reed@google.com29563872013-07-10 21:23:49 +00001015 return 1;
1016}
1017
reed468b1812014-10-19 11:42:54 -07001018static int lpaint_getImageFilter(lua_State* L) {
1019 const SkPaint* paint = get_obj<SkPaint>(L, 1);
1020 SkImageFilter* imf = paint->getImageFilter();
1021 if (imf) {
1022 push_ref(L, imf);
1023 return 1;
1024 }
1025 return 0;
1026}
1027
1028static int lpaint_setImageFilter(lua_State* L) {
1029 SkPaint* paint = get_obj<SkPaint>(L, 1);
1030 paint->setImageFilter(get_ref<SkImageFilter>(L, 2));
1031 return 0;
1032}
1033
reed@google.com5fdc9832013-07-24 15:47:52 +00001034static int lpaint_getShader(lua_State* L) {
1035 const SkPaint* paint = get_obj<SkPaint>(L, 1);
1036 SkShader* shader = paint->getShader();
1037 if (shader) {
1038 push_ref(L, shader);
1039 return 1;
1040 }
1041 return 0;
1042}
1043
reed9fbc3f32014-10-21 07:12:58 -07001044static int lpaint_setShader(lua_State* L) {
1045 SkPaint* paint = get_obj<SkPaint>(L, 1);
1046 paint->setShader(get_ref<SkShader>(L, 2));
1047 return 0;
1048}
1049
commit-bot@chromium.org1301bf32014-03-17 23:09:47 +00001050static int lpaint_getPathEffect(lua_State* L) {
1051 const SkPaint* paint = get_obj<SkPaint>(L, 1);
1052 SkPathEffect* pe = paint->getPathEffect();
1053 if (pe) {
1054 push_ref(L, pe);
1055 return 1;
1056 }
1057 return 0;
1058}
1059
reed@google.com74ce6f02013-05-22 15:13:18 +00001060static int lpaint_gc(lua_State* L) {
1061 get_obj<SkPaint>(L, 1)->~SkPaint();
1062 return 0;
1063}
1064
1065static const struct luaL_Reg gSkPaint_Methods[] = {
1066 { "isAntiAlias", lpaint_isAntiAlias },
1067 { "setAntiAlias", lpaint_setAntiAlias },
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +00001068 { "isDither", lpaint_isDither },
reedbb8a0ab2014-11-03 22:32:07 -08001069 { "setDither", lpaint_setDither },
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +00001070 { "isUnderlineText", lpaint_isUnderlineText },
1071 { "isStrikeThruText", lpaint_isStrikeThruText },
1072 { "isFakeBoldText", lpaint_isFakeBoldText },
1073 { "isLinearText", lpaint_isLinearText },
1074 { "isSubpixelText", lpaint_isSubpixelText },
reed09a1d672014-10-11 13:13:11 -07001075 { "setSubpixelText", lpaint_setSubpixelText },
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +00001076 { "isDevKernText", lpaint_isDevKernText },
1077 { "isLCDRenderText", lpaint_isLCDRenderText },
1078 { "isEmbeddedBitmapText", lpaint_isEmbeddedBitmapText },
1079 { "isAutohinted", lpaint_isAutohinted },
1080 { "isVerticalText", lpaint_isVerticalText },
reed468b1812014-10-19 11:42:54 -07001081 { "getAlpha", lpaint_getAlpha },
1082 { "setAlpha", lpaint_setAlpha },
reed@google.com74ce6f02013-05-22 15:13:18 +00001083 { "getColor", lpaint_getColor },
1084 { "setColor", lpaint_setColor },
reed@google.come3823fd2013-05-30 18:55:14 +00001085 { "getTextSize", lpaint_getTextSize },
1086 { "setTextSize", lpaint_setTextSize },
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +00001087 { "getTextScaleX", lpaint_getTextScaleX },
1088 { "getTextSkewX", lpaint_getTextSkewX },
mike@reedtribe.orge6469f12013-06-08 03:15:47 +00001089 { "getTypeface", lpaint_getTypeface },
1090 { "setTypeface", lpaint_setTypeface },
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +00001091 { "getHinting", lpaint_getHinting },
reed@google.come3823fd2013-05-30 18:55:14 +00001092 { "getFontID", lpaint_getFontID },
mike@reedtribe.orgfb858242013-06-08 16:39:44 +00001093 { "getTextAlign", lpaint_getTextAlign },
1094 { "setTextAlign", lpaint_setTextAlign },
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +00001095 { "getStroke", lpaint_getStroke },
1096 { "setStroke", lpaint_setStroke },
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +00001097 { "getStrokeCap", lpaint_getStrokeCap },
1098 { "getStrokeJoin", lpaint_getStrokeJoin },
1099 { "getTextEncoding", lpaint_getTextEncoding },
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +00001100 { "getStrokeWidth", lpaint_getStrokeWidth },
1101 { "setStrokeWidth", lpaint_setStrokeWidth },
commit-bot@chromium.org1cd71fb2013-12-18 18:28:07 +00001102 { "getStrokeMiter", lpaint_getStrokeMiter },
mike@reedtribe.org73d9f1c2013-06-09 01:54:56 +00001103 { "measureText", lpaint_measureText },
1104 { "getFontMetrics", lpaint_getFontMetrics },
reed@google.com29563872013-07-10 21:23:49 +00001105 { "getEffects", lpaint_getEffects },
reed468b1812014-10-19 11:42:54 -07001106 { "getImageFilter", lpaint_getImageFilter },
1107 { "setImageFilter", lpaint_setImageFilter },
reed@google.com5fdc9832013-07-24 15:47:52 +00001108 { "getShader", lpaint_getShader },
reed9fbc3f32014-10-21 07:12:58 -07001109 { "setShader", lpaint_setShader },
commit-bot@chromium.org1301bf32014-03-17 23:09:47 +00001110 { "getPathEffect", lpaint_getPathEffect },
reed@google.com74ce6f02013-05-22 15:13:18 +00001111 { "__gc", lpaint_gc },
1112 { NULL, NULL }
1113};
1114
1115///////////////////////////////////////////////////////////////////////////////
1116
reed@google.com5fdc9832013-07-24 15:47:52 +00001117static const char* mode2string(SkShader::TileMode mode) {
1118 static const char* gNames[] = { "clamp", "repeat", "mirror" };
1119 SkASSERT((unsigned)mode < SK_ARRAY_COUNT(gNames));
1120 return gNames[mode];
1121}
1122
1123static const char* gradtype2string(SkShader::GradientType t) {
1124 static const char* gNames[] = {
1125 "none", "color", "linear", "radial", "radial2", "sweep", "conical"
1126 };
1127 SkASSERT((unsigned)t < SK_ARRAY_COUNT(gNames));
1128 return gNames[t];
1129}
1130
1131static int lshader_isOpaque(lua_State* L) {
1132 SkShader* shader = get_ref<SkShader>(L, 1);
1133 return shader && shader->isOpaque();
1134}
1135
1136static int lshader_asABitmap(lua_State* L) {
1137 SkShader* shader = get_ref<SkShader>(L, 1);
1138 if (shader) {
1139 SkBitmap bm;
1140 SkMatrix matrix;
1141 SkShader::TileMode modes[2];
1142 switch (shader->asABitmap(&bm, &matrix, modes)) {
1143 case SkShader::kDefault_BitmapType:
1144 lua_newtable(L);
1145 setfield_number(L, "genID", bm.pixelRef() ? bm.pixelRef()->getGenerationID() : 0);
1146 setfield_number(L, "width", bm.width());
1147 setfield_number(L, "height", bm.height());
1148 setfield_string(L, "tileX", mode2string(modes[0]));
1149 setfield_string(L, "tileY", mode2string(modes[1]));
1150 return 1;
1151 default:
1152 break;
1153 }
1154 }
1155 return 0;
1156}
1157
1158static int lshader_asAGradient(lua_State* L) {
1159 SkShader* shader = get_ref<SkShader>(L, 1);
1160 if (shader) {
1161 SkShader::GradientInfo info;
1162 sk_bzero(&info, sizeof(info));
commit-bot@chromium.org74f96b92013-08-01 17:32:56 +00001163
1164 SkColor colors[3]; // hacked in for extracting info on 3 color case.
skia.committer@gmail.combd74add2013-08-02 07:00:59 +00001165 SkScalar pos[3];
commit-bot@chromium.org74f96b92013-08-01 17:32:56 +00001166
1167 info.fColorCount = 3;
1168 info.fColors = &colors[0];
1169 info.fColorOffsets = &pos[0];
skia.committer@gmail.combd74add2013-08-02 07:00:59 +00001170
reed@google.com5fdc9832013-07-24 15:47:52 +00001171 SkShader::GradientType t = shader->asAGradient(&info);
commit-bot@chromium.org74f96b92013-08-01 17:32:56 +00001172
reed@google.com5fdc9832013-07-24 15:47:52 +00001173 if (SkShader::kNone_GradientType != t) {
1174 lua_newtable(L);
1175 setfield_string(L, "type", gradtype2string(t));
1176 setfield_number(L, "colorCount", info.fColorCount);
1177 setfield_string(L, "tile", mode2string(info.fTileMode));
commit-bot@chromium.org74f96b92013-08-01 17:32:56 +00001178
1179 if (info.fColorCount == 3){
1180 setfield_number(L, "midPos", pos[1]);
1181 }
skia.committer@gmail.combd74add2013-08-02 07:00:59 +00001182
reed@google.com5fdc9832013-07-24 15:47:52 +00001183 return 1;
1184 }
1185 }
1186 return 0;
1187}
1188
1189static int lshader_gc(lua_State* L) {
1190 get_ref<SkShader>(L, 1)->unref();
1191 return 0;
1192}
1193
1194static const struct luaL_Reg gSkShader_Methods[] = {
1195 { "isOpaque", lshader_isOpaque },
1196 { "asABitmap", lshader_asABitmap },
1197 { "asAGradient", lshader_asAGradient },
1198 { "__gc", lshader_gc },
1199 { NULL, NULL }
1200};
1201
1202///////////////////////////////////////////////////////////////////////////////
1203
commit-bot@chromium.org4d803a92014-05-14 16:03:14 +00001204static int lpatheffect_asADash(lua_State* L) {
1205 SkPathEffect* pe = get_ref<SkPathEffect>(L, 1);
1206 if (pe) {
1207 SkPathEffect::DashInfo info;
1208 SkPathEffect::DashType dashType = pe->asADash(&info);
1209 if (SkPathEffect::kDash_DashType == dashType) {
1210 SkAutoTArray<SkScalar> intervals(info.fCount);
1211 info.fIntervals = intervals.get();
1212 pe->asADash(&info);
1213 SkLua(L).pushDash(info);
1214 return 1;
1215 }
1216 }
1217 return 0;
1218}
1219
commit-bot@chromium.org1301bf32014-03-17 23:09:47 +00001220static int lpatheffect_gc(lua_State* L) {
1221 get_ref<SkPathEffect>(L, 1)->unref();
1222 return 0;
1223}
1224
1225static const struct luaL_Reg gSkPathEffect_Methods[] = {
commit-bot@chromium.org4d803a92014-05-14 16:03:14 +00001226 { "asADash", lpatheffect_asADash },
commit-bot@chromium.org1301bf32014-03-17 23:09:47 +00001227 { "__gc", lpatheffect_gc },
1228 { NULL, NULL }
1229};
1230
1231///////////////////////////////////////////////////////////////////////////////
1232
reed468b1812014-10-19 11:42:54 -07001233static int lpimagefilter_gc(lua_State* L) {
1234 get_ref<SkImageFilter>(L, 1)->unref();
1235 return 0;
1236}
1237
1238static const struct luaL_Reg gSkImageFilter_Methods[] = {
1239 { "__gc", lpimagefilter_gc },
1240 { NULL, NULL }
1241};
1242
1243///////////////////////////////////////////////////////////////////////////////
1244
humper@google.com2815c192013-07-10 22:42:30 +00001245static int lmatrix_getType(lua_State* L) {
1246 SkMatrix::TypeMask mask = get_obj<SkMatrix>(L, 1)->getType();
skia.committer@gmail.comde2e4e82013-07-11 07:01:01 +00001247
humper@google.com2815c192013-07-10 22:42:30 +00001248 lua_newtable(L);
1249 setfield_boolean(L, "translate", SkToBool(mask & SkMatrix::kTranslate_Mask));
1250 setfield_boolean(L, "scale", SkToBool(mask & SkMatrix::kScale_Mask));
1251 setfield_boolean(L, "affine", SkToBool(mask & SkMatrix::kAffine_Mask));
1252 setfield_boolean(L, "perspective", SkToBool(mask & SkMatrix::kPerspective_Mask));
1253 return 1;
1254}
1255
humper@google.com0f48ee02013-07-26 15:23:43 +00001256static int lmatrix_getScaleX(lua_State* L) {
1257 lua_pushnumber(L, get_obj<SkMatrix>(L,1)->getScaleX());
1258 return 1;
1259}
1260
1261static int lmatrix_getScaleY(lua_State* L) {
1262 lua_pushnumber(L, get_obj<SkMatrix>(L,1)->getScaleY());
1263 return 1;
1264}
1265
1266static int lmatrix_getTranslateX(lua_State* L) {
1267 lua_pushnumber(L, get_obj<SkMatrix>(L,1)->getTranslateX());
1268 return 1;
1269}
1270
1271static int lmatrix_getTranslateY(lua_State* L) {
1272 lua_pushnumber(L, get_obj<SkMatrix>(L,1)->getTranslateY());
1273 return 1;
1274}
1275
reedbdc49ae2014-10-14 09:34:52 -07001276static int lmatrix_setRectToRect(lua_State* L) {
1277 SkMatrix* matrix = get_obj<SkMatrix>(L, 1);
1278 SkRect srcR, dstR;
1279 lua2rect(L, 2, &srcR);
1280 lua2rect(L, 3, &dstR);
1281 const char* scaleToFitStr = lua_tostring(L, 4);
1282 SkMatrix::ScaleToFit scaleToFit = SkMatrix::kFill_ScaleToFit;
1283
1284 if (scaleToFitStr) {
1285 const struct {
1286 const char* fName;
1287 SkMatrix::ScaleToFit fScaleToFit;
1288 } rec[] = {
1289 { "fill", SkMatrix::kFill_ScaleToFit },
1290 { "start", SkMatrix::kStart_ScaleToFit },
1291 { "center", SkMatrix::kCenter_ScaleToFit },
1292 { "end", SkMatrix::kEnd_ScaleToFit },
1293 };
1294
1295 for (size_t i = 0; i < SK_ARRAY_COUNT(rec); ++i) {
1296 if (strcmp(rec[i].fName, scaleToFitStr) == 0) {
1297 scaleToFit = rec[i].fScaleToFit;
1298 break;
1299 }
1300 }
1301 }
1302
1303 matrix->setRectToRect(srcR, dstR, scaleToFit);
1304 return 0;
1305}
1306
humper@google.com2815c192013-07-10 22:42:30 +00001307static const struct luaL_Reg gSkMatrix_Methods[] = {
1308 { "getType", lmatrix_getType },
humper@google.com0f48ee02013-07-26 15:23:43 +00001309 { "getScaleX", lmatrix_getScaleX },
1310 { "getScaleY", lmatrix_getScaleY },
1311 { "getTranslateX", lmatrix_getTranslateX },
1312 { "getTranslateY", lmatrix_getTranslateY },
reedbdc49ae2014-10-14 09:34:52 -07001313 { "setRectToRect", lmatrix_setRectToRect },
humper@google.com2815c192013-07-10 22:42:30 +00001314 { NULL, NULL }
1315};
1316
1317///////////////////////////////////////////////////////////////////////////////
1318
reed@google.com74ce6f02013-05-22 15:13:18 +00001319static int lpath_getBounds(lua_State* L) {
1320 SkLua(L).pushRect(get_obj<SkPath>(L, 1)->getBounds());
1321 return 1;
1322}
1323
commit-bot@chromium.orgd85b8222014-02-24 21:59:29 +00001324static const char* fill_type_to_str(SkPath::FillType fill) {
1325 switch (fill) {
1326 case SkPath::kEvenOdd_FillType:
1327 return "even-odd";
1328 case SkPath::kWinding_FillType:
1329 return "winding";
1330 case SkPath::kInverseEvenOdd_FillType:
1331 return "inverse-even-odd";
1332 case SkPath::kInverseWinding_FillType:
1333 return "inverse-winding";
1334 }
1335 return "unknown";
1336}
1337
1338static int lpath_getFillType(lua_State* L) {
1339 SkPath::FillType fill = get_obj<SkPath>(L, 1)->getFillType();
1340 SkLua(L).pushString(fill_type_to_str(fill));
1341 return 1;
1342}
1343
1344static SkString segment_masks_to_str(uint32_t segmentMasks) {
1345 SkString result;
1346 bool first = true;
1347 if (SkPath::kLine_SegmentMask & segmentMasks) {
1348 result.append("line");
1349 first = false;
1350 SkDEBUGCODE(segmentMasks &= ~SkPath::kLine_SegmentMask;)
1351 }
1352 if (SkPath::kQuad_SegmentMask & segmentMasks) {
1353 if (!first) {
1354 result.append(" ");
1355 }
1356 result.append("quad");
1357 first = false;
1358 SkDEBUGCODE(segmentMasks &= ~SkPath::kQuad_SegmentMask;)
1359 }
1360 if (SkPath::kConic_SegmentMask & segmentMasks) {
1361 if (!first) {
1362 result.append(" ");
1363 }
1364 result.append("conic");
1365 first = false;
1366 SkDEBUGCODE(segmentMasks &= ~SkPath::kConic_SegmentMask;)
1367 }
1368 if (SkPath::kCubic_SegmentMask & segmentMasks) {
1369 if (!first) {
1370 result.append(" ");
1371 }
1372 result.append("cubic");
1373 SkDEBUGCODE(segmentMasks &= ~SkPath::kCubic_SegmentMask;)
1374 }
1375 SkASSERT(0 == segmentMasks);
1376 return result;
1377}
1378
krajcevski95498ed2014-08-18 08:02:33 -07001379static int lpath_getSegmentTypes(lua_State* L) {
commit-bot@chromium.orgd85b8222014-02-24 21:59:29 +00001380 uint32_t segMasks = get_obj<SkPath>(L, 1)->getSegmentMasks();
1381 SkLua(L).pushString(segment_masks_to_str(segMasks));
1382 return 1;
1383}
1384
1385static int lpath_isConvex(lua_State* L) {
1386 bool isConvex = SkPath::kConvex_Convexity == get_obj<SkPath>(L, 1)->getConvexity();
1387 SkLua(L).pushBool(isConvex);
1388 return 1;
1389}
1390
reed@google.com74ce6f02013-05-22 15:13:18 +00001391static int lpath_isEmpty(lua_State* L) {
1392 lua_pushboolean(L, get_obj<SkPath>(L, 1)->isEmpty());
1393 return 1;
1394}
1395
1396static int lpath_isRect(lua_State* L) {
1397 SkRect r;
1398 bool pred = get_obj<SkPath>(L, 1)->isRect(&r);
1399 int ret_count = 1;
1400 lua_pushboolean(L, pred);
1401 if (pred) {
1402 SkLua(L).pushRect(r);
1403 ret_count += 1;
1404 }
1405 return ret_count;
1406}
1407
1408static const char* dir2string(SkPath::Direction dir) {
1409 static const char* gStr[] = {
1410 "unknown", "cw", "ccw"
1411 };
1412 SkASSERT((unsigned)dir < SK_ARRAY_COUNT(gStr));
1413 return gStr[dir];
1414}
1415
1416static int lpath_isNestedRects(lua_State* L) {
1417 SkRect rects[2];
1418 SkPath::Direction dirs[2];
1419 bool pred = get_obj<SkPath>(L, 1)->isNestedRects(rects, dirs);
1420 int ret_count = 1;
1421 lua_pushboolean(L, pred);
1422 if (pred) {
1423 SkLua lua(L);
1424 lua.pushRect(rects[0]);
1425 lua.pushRect(rects[1]);
1426 lua_pushstring(L, dir2string(dirs[0]));
1427 lua_pushstring(L, dir2string(dirs[0]));
1428 ret_count += 4;
1429 }
1430 return ret_count;
1431}
1432
commit-bot@chromium.orgc5302082014-02-26 21:38:47 +00001433static int lpath_countPoints(lua_State* L) {
1434 lua_pushinteger(L, get_obj<SkPath>(L, 1)->countPoints());
1435 return 1;
1436}
1437
reed@google.com74ce6f02013-05-22 15:13:18 +00001438static int lpath_reset(lua_State* L) {
1439 get_obj<SkPath>(L, 1)->reset();
1440 return 0;
1441}
1442
1443static int lpath_moveTo(lua_State* L) {
1444 get_obj<SkPath>(L, 1)->moveTo(lua2scalar(L, 2), lua2scalar(L, 3));
1445 return 0;
1446}
1447
1448static int lpath_lineTo(lua_State* L) {
1449 get_obj<SkPath>(L, 1)->lineTo(lua2scalar(L, 2), lua2scalar(L, 3));
1450 return 0;
1451}
1452
1453static int lpath_quadTo(lua_State* L) {
1454 get_obj<SkPath>(L, 1)->quadTo(lua2scalar(L, 2), lua2scalar(L, 3),
1455 lua2scalar(L, 4), lua2scalar(L, 5));
1456 return 0;
1457}
1458
1459static int lpath_cubicTo(lua_State* L) {
1460 get_obj<SkPath>(L, 1)->cubicTo(lua2scalar(L, 2), lua2scalar(L, 3),
1461 lua2scalar(L, 4), lua2scalar(L, 5),
1462 lua2scalar(L, 6), lua2scalar(L, 7));
1463 return 0;
1464}
1465
1466static int lpath_close(lua_State* L) {
1467 get_obj<SkPath>(L, 1)->close();
1468 return 0;
1469}
1470
1471static int lpath_gc(lua_State* L) {
1472 get_obj<SkPath>(L, 1)->~SkPath();
1473 return 0;
1474}
1475
1476static const struct luaL_Reg gSkPath_Methods[] = {
1477 { "getBounds", lpath_getBounds },
commit-bot@chromium.orgd85b8222014-02-24 21:59:29 +00001478 { "getFillType", lpath_getFillType },
krajcevski95498ed2014-08-18 08:02:33 -07001479 { "getSegmentTypes", lpath_getSegmentTypes },
commit-bot@chromium.orgd85b8222014-02-24 21:59:29 +00001480 { "isConvex", lpath_isConvex },
reed@google.com74ce6f02013-05-22 15:13:18 +00001481 { "isEmpty", lpath_isEmpty },
1482 { "isRect", lpath_isRect },
1483 { "isNestedRects", lpath_isNestedRects },
commit-bot@chromium.orgc5302082014-02-26 21:38:47 +00001484 { "countPoints", lpath_countPoints },
reed@google.com74ce6f02013-05-22 15:13:18 +00001485 { "reset", lpath_reset },
1486 { "moveTo", lpath_moveTo },
1487 { "lineTo", lpath_lineTo },
1488 { "quadTo", lpath_quadTo },
1489 { "cubicTo", lpath_cubicTo },
1490 { "close", lpath_close },
1491 { "__gc", lpath_gc },
1492 { NULL, NULL }
1493};
1494
1495///////////////////////////////////////////////////////////////////////////////
1496
1497static const char* rrect_type(const SkRRect& rr) {
1498 switch (rr.getType()) {
1499 case SkRRect::kUnknown_Type: return "unknown";
1500 case SkRRect::kEmpty_Type: return "empty";
1501 case SkRRect::kRect_Type: return "rect";
1502 case SkRRect::kOval_Type: return "oval";
1503 case SkRRect::kSimple_Type: return "simple";
commit-bot@chromium.orgf338d7c2014-03-17 21:17:30 +00001504 case SkRRect::kNinePatch_Type: return "nine-patch";
reed@google.com74ce6f02013-05-22 15:13:18 +00001505 case SkRRect::kComplex_Type: return "complex";
1506 }
mtklein@google.com330313a2013-08-22 15:37:26 +00001507 SkDEBUGFAIL("never get here");
reed@google.com74ce6f02013-05-22 15:13:18 +00001508 return "";
1509}
1510
1511static int lrrect_rect(lua_State* L) {
1512 SkLua(L).pushRect(get_obj<SkRRect>(L, 1)->rect());
1513 return 1;
1514}
1515
1516static int lrrect_type(lua_State* L) {
1517 lua_pushstring(L, rrect_type(*get_obj<SkRRect>(L, 1)));
1518 return 1;
1519}
1520
1521static int lrrect_radii(lua_State* L) {
reed@google.com7fa2a652014-01-27 13:42:58 +00001522 int corner = SkToInt(lua_tointeger(L, 2));
reed@google.com74ce6f02013-05-22 15:13:18 +00001523 SkVector v;
1524 if (corner < 0 || corner > 3) {
1525 SkDebugf("bad corner index %d", corner);
1526 v.set(0, 0);
1527 } else {
1528 v = get_obj<SkRRect>(L, 1)->radii((SkRRect::Corner)corner);
1529 }
1530 lua_pushnumber(L, v.fX);
1531 lua_pushnumber(L, v.fY);
1532 return 2;
1533}
1534
1535static int lrrect_gc(lua_State* L) {
1536 get_obj<SkRRect>(L, 1)->~SkRRect();
1537 return 0;
1538}
1539
1540static const struct luaL_Reg gSkRRect_Methods[] = {
1541 { "rect", lrrect_rect },
1542 { "type", lrrect_type },
1543 { "radii", lrrect_radii },
1544 { "__gc", lrrect_gc },
1545 { NULL, NULL }
1546};
1547
1548///////////////////////////////////////////////////////////////////////////////
1549
mike@reedtribe.org792bbd12013-06-11 02:20:28 +00001550static int limage_width(lua_State* L) {
1551 lua_pushinteger(L, get_ref<SkImage>(L, 1)->width());
1552 return 1;
1553}
1554
1555static int limage_height(lua_State* L) {
1556 lua_pushinteger(L, get_ref<SkImage>(L, 1)->height());
1557 return 1;
1558}
1559
1560static int limage_gc(lua_State* L) {
1561 get_ref<SkImage>(L, 1)->unref();
1562 return 0;
1563}
1564
1565static const struct luaL_Reg gSkImage_Methods[] = {
1566 { "width", limage_width },
1567 { "height", limage_height },
1568 { "__gc", limage_gc },
1569 { NULL, NULL }
1570};
1571
1572///////////////////////////////////////////////////////////////////////////////
1573
reed485557f2014-10-12 10:36:47 -07001574static int lsurface_width(lua_State* L) {
1575 lua_pushinteger(L, get_ref<SkSurface>(L, 1)->width());
1576 return 1;
1577}
1578
1579static int lsurface_height(lua_State* L) {
1580 lua_pushinteger(L, get_ref<SkSurface>(L, 1)->height());
1581 return 1;
1582}
1583
1584static int lsurface_getCanvas(lua_State* L) {
1585 SkCanvas* canvas = get_ref<SkSurface>(L, 1)->getCanvas();
1586 if (NULL == canvas) {
1587 lua_pushnil(L);
1588 } else {
1589 push_ref(L, canvas);
1590 // note: we don't unref canvas, since getCanvas did not ref it.
1591 // warning: this is weird: now Lua owns a ref on this canvas, but what if they let
1592 // the real owner (the surface) go away, but still hold onto the canvas?
1593 // *really* we want to sort of ref the surface again, but have the native object
1594 // know that it is supposed to be treated as a canvas...
1595 }
1596 return 1;
1597}
1598
1599static int lsurface_newImageSnapshot(lua_State* L) {
1600 SkImage* image = get_ref<SkSurface>(L, 1)->newImageSnapshot();
1601 if (NULL == image) {
1602 lua_pushnil(L);
1603 } else {
reed9fbc3f32014-10-21 07:12:58 -07001604 push_ref(L, image)->unref();
reed485557f2014-10-12 10:36:47 -07001605 }
1606 return 1;
1607}
1608
1609static int lsurface_newSurface(lua_State* L) {
1610 int width = lua2int_def(L, 2, 0);
reed96affcd2014-10-13 12:38:04 -07001611 int height = lua2int_def(L, 3, 0);
reed485557f2014-10-12 10:36:47 -07001612 SkImageInfo info = SkImageInfo::MakeN32Premul(width, height);
1613 SkSurface* surface = get_ref<SkSurface>(L, 1)->newSurface(info);
1614 if (NULL == surface) {
1615 lua_pushnil(L);
1616 } else {
reed9fbc3f32014-10-21 07:12:58 -07001617 push_ref(L, surface)->unref();
reed485557f2014-10-12 10:36:47 -07001618 }
1619 return 1;
1620}
1621
1622static int lsurface_gc(lua_State* L) {
1623 get_ref<SkSurface>(L, 1)->unref();
1624 return 0;
1625}
1626
1627static const struct luaL_Reg gSkSurface_Methods[] = {
1628 { "width", lsurface_width },
1629 { "height", lsurface_height },
1630 { "getCanvas", lsurface_getCanvas },
1631 { "newImageSnapshot", lsurface_newImageSnapshot },
1632 { "newSurface", lsurface_newSurface },
1633 { "__gc", lsurface_gc },
1634 { NULL, NULL }
1635};
1636
1637///////////////////////////////////////////////////////////////////////////////
1638
reed96affcd2014-10-13 12:38:04 -07001639static int lpicturerecorder_beginRecording(lua_State* L) {
1640 const SkScalar w = lua2scalar_def(L, 2, -1);
1641 const SkScalar h = lua2scalar_def(L, 3, -1);
1642 if (w <= 0 || h <= 0) {
1643 lua_pushnil(L);
1644 return 1;
1645 }
1646
1647 SkCanvas* canvas = get_obj<SkPictureRecorder>(L, 1)->beginRecording(w, h);
1648 if (NULL == canvas) {
1649 lua_pushnil(L);
1650 return 1;
1651 }
1652
1653 push_ref(L, canvas);
1654 return 1;
1655}
1656
1657static int lpicturerecorder_getCanvas(lua_State* L) {
1658 SkCanvas* canvas = get_obj<SkPictureRecorder>(L, 1)->getRecordingCanvas();
1659 if (NULL == canvas) {
1660 lua_pushnil(L);
1661 return 1;
1662 }
1663 push_ref(L, canvas);
1664 return 1;
1665}
1666
1667static int lpicturerecorder_endRecording(lua_State* L) {
1668 SkPicture* pic = get_obj<SkPictureRecorder>(L, 1)->endRecording();
1669 if (NULL == pic) {
1670 lua_pushnil(L);
1671 return 1;
1672 }
reed9fbc3f32014-10-21 07:12:58 -07001673 push_ref(L, pic)->unref();
reed96affcd2014-10-13 12:38:04 -07001674 return 1;
1675}
1676
1677static int lpicturerecorder_gc(lua_State* L) {
1678 get_obj<SkPictureRecorder>(L, 1)->~SkPictureRecorder();
1679 return 0;
1680}
1681
1682static const struct luaL_Reg gSkPictureRecorder_Methods[] = {
1683 { "beginRecording", lpicturerecorder_beginRecording },
1684 { "getCanvas", lpicturerecorder_getCanvas },
1685 { "endRecording", lpicturerecorder_endRecording },
1686 { "__gc", lpicturerecorder_gc },
1687 { NULL, NULL }
1688};
1689
1690///////////////////////////////////////////////////////////////////////////////
1691
1692static int lpicture_width(lua_State* L) {
1693 lua_pushnumber(L, get_ref<SkPicture>(L, 1)->cullRect().width());
1694 return 1;
1695}
1696
1697static int lpicture_height(lua_State* L) {
1698 lua_pushnumber(L, get_ref<SkPicture>(L, 1)->cullRect().height());
1699 return 1;
1700}
1701
1702static int lpicture_gc(lua_State* L) {
1703 get_ref<SkPicture>(L, 1)->unref();
1704 return 0;
1705}
1706
1707static const struct luaL_Reg gSkPicture_Methods[] = {
1708 { "width", lpicture_width },
1709 { "height", lpicture_height },
1710 { "__gc", lpicture_gc },
1711 { NULL, NULL }
1712};
1713
1714///////////////////////////////////////////////////////////////////////////////
1715
reed1b6ab442014-11-03 19:55:41 -08001716static int ltextblob_bounds(lua_State* L) {
1717 SkLua(L).pushRect(get_ref<SkTextBlob>(L, 1)->bounds());
1718 return 1;
1719}
1720
1721static int ltextblob_gc(lua_State* L) {
1722 SkSafeUnref(get_ref<SkTextBlob>(L, 1));
1723 return 0;
1724}
1725
1726static const struct luaL_Reg gSkTextBlob_Methods[] = {
1727 { "bounds", ltextblob_bounds },
1728 { "__gc", ltextblob_gc },
1729 { NULL, NULL }
1730};
1731
1732///////////////////////////////////////////////////////////////////////////////
1733
mike@reedtribe.orge6469f12013-06-08 03:15:47 +00001734static int ltypeface_gc(lua_State* L) {
commit-bot@chromium.org77887af2013-12-17 14:28:19 +00001735 SkSafeUnref(get_ref<SkTypeface>(L, 1));
mike@reedtribe.orge6469f12013-06-08 03:15:47 +00001736 return 0;
1737}
1738
1739static const struct luaL_Reg gSkTypeface_Methods[] = {
1740 { "__gc", ltypeface_gc },
1741 { NULL, NULL }
1742};
1743
1744///////////////////////////////////////////////////////////////////////////////
1745
reed@google.com74ce6f02013-05-22 15:13:18 +00001746class AutoCallLua {
1747public:
1748 AutoCallLua(lua_State* L, const char func[], const char verb[]) : fL(L) {
1749 lua_getglobal(L, func);
1750 if (!lua_isfunction(L, -1)) {
1751 int t = lua_type(L, -1);
1752 SkDebugf("--- expected function %d\n", t);
1753 }
skia.committer@gmail.com2d816ad2013-05-23 07:01:22 +00001754
reed@google.com74ce6f02013-05-22 15:13:18 +00001755 lua_newtable(L);
1756 setfield_string(L, "verb", verb);
1757 }
skia.committer@gmail.com2d816ad2013-05-23 07:01:22 +00001758
reed@google.com74ce6f02013-05-22 15:13:18 +00001759 ~AutoCallLua() {
1760 if (lua_pcall(fL, 1, 0, 0) != LUA_OK) {
1761 SkDebugf("lua err: %s\n", lua_tostring(fL, -1));
1762 }
1763 lua_settop(fL, -1);
1764 }
skia.committer@gmail.com2d816ad2013-05-23 07:01:22 +00001765
reed@google.com74ce6f02013-05-22 15:13:18 +00001766private:
1767 lua_State* fL;
1768};
1769
1770#define AUTO_LUA(verb) AutoCallLua acl(fL, fFunc.c_str(), verb)
1771
1772///////////////////////////////////////////////////////////////////////////////
1773
mike@reedtribe.orgfb858242013-06-08 16:39:44 +00001774static int lsk_newDocumentPDF(lua_State* L) {
1775 const char* file = NULL;
1776 if (lua_gettop(L) > 0 && lua_isstring(L, 1)) {
1777 file = lua_tolstring(L, 1, NULL);
1778 }
1779
1780 SkDocument* doc = SkDocument::CreatePDF(file);
1781 if (NULL == doc) {
1782 // do I need to push a nil on the stack and return 1?
1783 return 0;
1784 } else {
reed9fbc3f32014-10-21 07:12:58 -07001785 push_ref(L, doc)->unref();
mike@reedtribe.orgfb858242013-06-08 16:39:44 +00001786 return 1;
1787 }
1788}
1789
reed468b1812014-10-19 11:42:54 -07001790static int lsk_newBlurImageFilter(lua_State* L) {
1791 SkScalar sigmaX = lua2scalar_def(L, 1, 0);
1792 SkScalar sigmaY = lua2scalar_def(L, 2, 0);
1793 SkImageFilter* imf = SkBlurImageFilter::Create(sigmaX, sigmaY);
1794 if (NULL == imf) {
1795 lua_pushnil(L);
1796 } else {
reed9fbc3f32014-10-21 07:12:58 -07001797 push_ref(L, imf)->unref();
1798 }
1799 return 1;
1800}
1801
1802static int lsk_newLinearGradient(lua_State* L) {
1803 SkScalar x0 = lua2scalar_def(L, 1, 0);
1804 SkScalar y0 = lua2scalar_def(L, 2, 0);
1805 SkColor c0 = lua2color(L, 3);
1806 SkScalar x1 = lua2scalar_def(L, 4, 0);
1807 SkScalar y1 = lua2scalar_def(L, 5, 0);
1808 SkColor c1 = lua2color(L, 6);
1809
1810 SkPoint pts[] = { { x0, y0 }, { x1, y1 } };
1811 SkColor colors[] = { c0, c1 };
1812 SkShader* s = SkGradientShader::CreateLinear(pts, colors, NULL, 2, SkShader::kClamp_TileMode);
1813 if (NULL == s) {
1814 lua_pushnil(L);
1815 } else {
1816 push_ref(L, s)->unref();
reed468b1812014-10-19 11:42:54 -07001817 }
1818 return 1;
1819}
1820
reedbdc49ae2014-10-14 09:34:52 -07001821static int lsk_newMatrix(lua_State* L) {
1822 push_new<SkMatrix>(L)->reset();
1823 return 1;
1824}
1825
reed@google.com3597b732013-05-22 20:12:50 +00001826static int lsk_newPaint(lua_State* L) {
1827 push_new<SkPaint>(L);
1828 return 1;
1829}
1830
1831static int lsk_newPath(lua_State* L) {
1832 push_new<SkPath>(L);
1833 return 1;
1834}
1835
reed96affcd2014-10-13 12:38:04 -07001836static int lsk_newPictureRecorder(lua_State* L) {
1837 push_new<SkPictureRecorder>(L);
1838 return 1;
1839}
1840
reed@google.com3597b732013-05-22 20:12:50 +00001841static int lsk_newRRect(lua_State* L) {
reedbdc49ae2014-10-14 09:34:52 -07001842 push_new<SkRRect>(L)->setEmpty();
reed@google.com3597b732013-05-22 20:12:50 +00001843 return 1;
1844}
1845
reed1b6ab442014-11-03 19:55:41 -08001846#include "SkTextBox.h"
1847// Sk.newTextBlob(text, rect, paint)
1848static int lsk_newTextBlob(lua_State* L) {
1849 const char* text = lua_tolstring(L, 1, NULL);
1850 SkRect bounds;
1851 lua2rect(L, 2, &bounds);
1852 const SkPaint& paint = *get_obj<SkPaint>(L, 3);
1853
1854 SkTextBox box;
1855 box.setMode(SkTextBox::kLineBreak_Mode);
1856 box.setBox(bounds);
1857 box.setText(text, strlen(text), paint);
1858
1859 SkScalar newBottom;
1860 SkAutoTUnref<SkTextBlob> blob(box.snapshotTextBlob(&newBottom));
1861 push_ref<SkTextBlob>(L, blob);
1862 SkLua(L).pushScalar(newBottom);
1863 return 2;
1864}
1865
mike@reedtribe.orge6469f12013-06-08 03:15:47 +00001866static int lsk_newTypeface(lua_State* L) {
1867 const char* name = NULL;
1868 int style = SkTypeface::kNormal;
skia.committer@gmail.com63193672013-06-08 07:01:13 +00001869
mike@reedtribe.orge6469f12013-06-08 03:15:47 +00001870 int count = lua_gettop(L);
1871 if (count > 0 && lua_isstring(L, 1)) {
1872 name = lua_tolstring(L, 1, NULL);
1873 if (count > 1 && lua_isnumber(L, 2)) {
1874 style = lua_tointegerx(L, 2, NULL) & SkTypeface::kBoldItalic;
1875 }
1876 }
1877
1878 SkTypeface* face = SkTypeface::CreateFromName(name,
1879 (SkTypeface::Style)style);
1880// SkDebugf("---- name <%s> style=%d, face=%p ref=%d\n", name, style, face, face->getRefCnt());
1881 if (NULL == face) {
1882 face = SkTypeface::RefDefault();
1883 }
reed9fbc3f32014-10-21 07:12:58 -07001884 push_ref(L, face)->unref();
mike@reedtribe.orge6469f12013-06-08 03:15:47 +00001885 return 1;
1886}
reed@google.com3597b732013-05-22 20:12:50 +00001887
reed485557f2014-10-12 10:36:47 -07001888static int lsk_newRasterSurface(lua_State* L) {
1889 int width = lua2int_def(L, 2, 0);
1890 int height = lua2int_def(L, 2, 0);
1891 SkImageInfo info = SkImageInfo::MakeN32Premul(width, height);
1892 SkSurface* surface = SkSurface::NewRaster(info);
1893 if (NULL == surface) {
1894 lua_pushnil(L);
1895 } else {
reed9fbc3f32014-10-21 07:12:58 -07001896 push_ref(L, surface)->unref();
reed485557f2014-10-12 10:36:47 -07001897 }
1898 return 1;
1899}
1900
mike@reedtribe.org792bbd12013-06-11 02:20:28 +00001901static int lsk_loadImage(lua_State* L) {
1902 if (lua_gettop(L) > 0 && lua_isstring(L, 1)) {
1903 const char* name = lua_tolstring(L, 1, NULL);
1904 SkAutoDataUnref data(SkData::NewFromFileName(name));
1905 if (data.get()) {
piotaixr4bcc2022014-09-17 14:33:30 -07001906 SkImage* image = SkImage::NewFromGenerator(
1907 SkDecodingImageGenerator::Create(data, SkDecodingImageGenerator::Options()));
1908
mike@reedtribe.org792bbd12013-06-11 02:20:28 +00001909 if (image) {
reed9fbc3f32014-10-21 07:12:58 -07001910 push_ref(L, image)->unref();
mike@reedtribe.org792bbd12013-06-11 02:20:28 +00001911 return 1;
1912 }
1913 }
1914 }
1915 return 0;
1916}
1917
reed@google.com3597b732013-05-22 20:12:50 +00001918static void register_Sk(lua_State* L) {
1919 lua_newtable(L);
1920 lua_pushvalue(L, -1);
1921 lua_setglobal(L, "Sk");
1922 // the Sk table is still on top
1923
mike@reedtribe.orgfb858242013-06-08 16:39:44 +00001924 setfield_function(L, "newDocumentPDF", lsk_newDocumentPDF);
mike@reedtribe.org792bbd12013-06-11 02:20:28 +00001925 setfield_function(L, "loadImage", lsk_loadImage);
reed468b1812014-10-19 11:42:54 -07001926 setfield_function(L, "newBlurImageFilter", lsk_newBlurImageFilter);
reed9fbc3f32014-10-21 07:12:58 -07001927 setfield_function(L, "newLinearGradient", lsk_newLinearGradient);
reedbdc49ae2014-10-14 09:34:52 -07001928 setfield_function(L, "newMatrix", lsk_newMatrix);
reed@google.com3597b732013-05-22 20:12:50 +00001929 setfield_function(L, "newPaint", lsk_newPaint);
1930 setfield_function(L, "newPath", lsk_newPath);
reed96affcd2014-10-13 12:38:04 -07001931 setfield_function(L, "newPictureRecorder", lsk_newPictureRecorder);
reed@google.com3597b732013-05-22 20:12:50 +00001932 setfield_function(L, "newRRect", lsk_newRRect);
reed485557f2014-10-12 10:36:47 -07001933 setfield_function(L, "newRasterSurface", lsk_newRasterSurface);
reed1b6ab442014-11-03 19:55:41 -08001934 setfield_function(L, "newTextBlob", lsk_newTextBlob);
mike@reedtribe.orge6469f12013-06-08 03:15:47 +00001935 setfield_function(L, "newTypeface", lsk_newTypeface);
reed@google.com3597b732013-05-22 20:12:50 +00001936 lua_pop(L, 1); // pop off the Sk table
1937}
1938
reed@google.com74ce6f02013-05-22 15:13:18 +00001939#define REG_CLASS(L, C) \
1940 do { \
reed@google.com3597b732013-05-22 20:12:50 +00001941 luaL_newmetatable(L, get_mtname<C>()); \
reed@google.com74ce6f02013-05-22 15:13:18 +00001942 lua_pushvalue(L, -1); \
1943 lua_setfield(L, -2, "__index"); \
1944 luaL_setfuncs(L, g##C##_Methods, 0); \
1945 lua_pop(L, 1); /* pop off the meta-table */ \
1946 } while (0)
1947
1948void SkLua::Load(lua_State* L) {
reed@google.com3597b732013-05-22 20:12:50 +00001949 register_Sk(L);
reed@google.com74ce6f02013-05-22 15:13:18 +00001950 REG_CLASS(L, SkCanvas);
mike@reedtribe.orgfb858242013-06-08 16:39:44 +00001951 REG_CLASS(L, SkDocument);
mike@reedtribe.org792bbd12013-06-11 02:20:28 +00001952 REG_CLASS(L, SkImage);
reed468b1812014-10-19 11:42:54 -07001953 REG_CLASS(L, SkImageFilter);
reed1b6ab442014-11-03 19:55:41 -08001954 REG_CLASS(L, SkMatrix);
reed@google.com74ce6f02013-05-22 15:13:18 +00001955 REG_CLASS(L, SkPaint);
commit-bot@chromium.org1301bf32014-03-17 23:09:47 +00001956 REG_CLASS(L, SkPath);
1957 REG_CLASS(L, SkPathEffect);
reed96affcd2014-10-13 12:38:04 -07001958 REG_CLASS(L, SkPicture);
1959 REG_CLASS(L, SkPictureRecorder);
reed@google.com74ce6f02013-05-22 15:13:18 +00001960 REG_CLASS(L, SkRRect);
reed@google.com5fdc9832013-07-24 15:47:52 +00001961 REG_CLASS(L, SkShader);
reed485557f2014-10-12 10:36:47 -07001962 REG_CLASS(L, SkSurface);
reed1b6ab442014-11-03 19:55:41 -08001963 REG_CLASS(L, SkTextBlob);
mike@reedtribe.orge6469f12013-06-08 03:15:47 +00001964 REG_CLASS(L, SkTypeface);
reed@google.com74ce6f02013-05-22 15:13:18 +00001965}
zachr@google.com28c27c82013-06-20 17:15:05 +00001966
reed@google.com7bce9982013-06-20 17:40:21 +00001967extern "C" int luaopen_skia(lua_State* L);
zachr@google.com28c27c82013-06-20 17:15:05 +00001968extern "C" int luaopen_skia(lua_State* L) {
1969 SkLua::Load(L);
1970 return 0;
1971}