blob: ad6f996ac3fe65954a3ca12f795231f3836e0a2e [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#ifndef SkLua_DEFINED
9#define SkLua_DEFINED
10
bsalomon@google.com4ebe3822014-02-26 20:22:32 +000011#include "SkClipStack.h"
reed@google.com74ce6f02013-05-22 15:13:18 +000012#include "SkColor.h"
commit-bot@chromium.org4d803a92014-05-14 16:03:14 +000013#include "SkPathEffect.h"
reed@google.com74ce6f02013-05-22 15:13:18 +000014#include "SkScalar.h"
reed@google.com3597b732013-05-22 20:12:50 +000015#include "SkString.h"
reed@google.com74ce6f02013-05-22 15:13:18 +000016
17struct lua_State;
18
19class SkCanvas;
20class SkMatrix;
21class SkPaint;
22class SkPath;
23struct SkRect;
24class SkRRect;
fmalitab7425172014-08-26 07:56:44 -070025class SkTextBlob;
reed@google.com74ce6f02013-05-22 15:13:18 +000026
27#define SkScalarToLua(x) SkScalarToDouble(x)
28#define SkLuaToScalar(x) SkDoubleToScalar(x)
29
30class SkLua {
31public:
32 static void Load(lua_State*);
33
reed@google.com3597b732013-05-22 20:12:50 +000034 SkLua(const char termCode[] = NULL); // creates a new L, will close it
35 SkLua(lua_State*); // uses L, will not close it
reed@google.com74ce6f02013-05-22 15:13:18 +000036 ~SkLua();
37
reed@google.com3597b732013-05-22 20:12:50 +000038 lua_State* get() const { return fL; }
39 lua_State* operator*() const { return fL; }
40 lua_State* operator->() const { return fL; }
skia.committer@gmail.com2d816ad2013-05-23 07:01:22 +000041
reed@google.com3597b732013-05-22 20:12:50 +000042 bool runCode(const char code[]);
43 bool runCode(const void* code, size_t size);
skia.committer@gmail.com2d816ad2013-05-23 07:01:22 +000044
reed@google.com74ce6f02013-05-22 15:13:18 +000045 void pushBool(bool, const char tableKey[] = NULL);
46 void pushString(const char[], const char tableKey[] = NULL);
reed@google.come3823fd2013-05-30 18:55:14 +000047 void pushString(const char[], size_t len, const char tableKey[] = NULL);
reed@google.com74ce6f02013-05-22 15:13:18 +000048 void pushString(const SkString&, const char tableKey[] = NULL);
reed@google.come3823fd2013-05-30 18:55:14 +000049 void pushArrayU16(const uint16_t[], int count, const char tableKey[] = NULL);
commit-bot@chromium.org1301bf32014-03-17 23:09:47 +000050 void pushArrayPoint(const SkPoint[], int count, const char key[] = NULL);
commit-bot@chromium.org4d803a92014-05-14 16:03:14 +000051 void pushArrayScalar(const SkScalar[], int count, const char key[] = NULL);
reed@google.com74ce6f02013-05-22 15:13:18 +000052 void pushColor(SkColor, const char tableKey[] = NULL);
reed@google.come3823fd2013-05-30 18:55:14 +000053 void pushU32(uint32_t, const char tableKey[] = NULL);
reed@google.com74ce6f02013-05-22 15:13:18 +000054 void pushScalar(SkScalar, const char tableKey[] = NULL);
55 void pushRect(const SkRect&, const char tableKey[] = NULL);
56 void pushRRect(const SkRRect&, const char tableKey[] = NULL);
commit-bot@chromium.org4d803a92014-05-14 16:03:14 +000057 void pushDash(const SkPathEffect::DashInfo&, const char tableKey[] = NULL);
reed@google.com74ce6f02013-05-22 15:13:18 +000058 void pushMatrix(const SkMatrix&, const char tableKey[] = NULL);
59 void pushPaint(const SkPaint&, const char tableKey[] = NULL);
60 void pushPath(const SkPath&, const char tableKey[] = NULL);
61 void pushCanvas(SkCanvas*, const char tableKey[] = NULL);
commit-bot@chromium.org5cc25352014-02-24 18:59:48 +000062 void pushClipStack(const SkClipStack&, const char tableKey[] = NULL);
bsalomon@google.com4ebe3822014-02-26 20:22:32 +000063 void pushClipStackElement(const SkClipStack::Element& element, const char tableKey[] = NULL);
fmalitab7425172014-08-26 07:56:44 -070064 void pushTextBlob(const SkTextBlob*, const char tableKey[] = NULL);
bsalomon@google.com4ebe3822014-02-26 20:22:32 +000065
66 // This SkCanvas lua methods is declared here to benefit from SkLua's friendship with SkCanvas.
67 static int lcanvas_getReducedClipStack(lua_State* L);
reed@google.com74ce6f02013-05-22 15:13:18 +000068
69private:
reed@google.com3597b732013-05-22 20:12:50 +000070 lua_State* fL;
71 SkString fTermCode;
72 bool fWeOwnL;
reed@google.com74ce6f02013-05-22 15:13:18 +000073};
74
75#endif