blob: 8dbf1150ec985e8fc67f0623f8be80f650428fef [file] [log] [blame]
reed@google.com3597b732013-05-22 20:12:50 +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
Mike Kleinc0bd9f92019-04-23 12:05:21 -05008#include "include/core/SkCanvas.h"
9#include "include/core/SkData.h"
10#include "include/utils/SkLua.h"
11#include "samplecode/Sample.h"
12#include "tools/Resources.h"
reed@google.com3597b732013-05-22 20:12:50 +000013
14extern "C" {
15#include "lua.h"
16#include "lualib.h"
17#include "lauxlib.h"
18}
19
Hal Canaryc465d132017-12-08 10:21:31 -050020//#define LUA_FILENAME "lua/test.lua"
21#define LUA_FILENAME "lua/slides.lua"
reed18ea7772014-10-11 11:28:07 -070022
reed@google.com3597b732013-05-22 20:12:50 +000023static const char gDrawName[] = "onDrawContent";
reed18ea7772014-10-11 11:28:07 -070024static const char gClickName[] = "onClickHandler";
reed09a1d672014-10-11 13:13:11 -070025static const char gUnicharName[] = "onCharHandler";
reed@google.com3597b732013-05-22 20:12:50 +000026
reed09445a42014-10-10 20:31:24 -070027static const char gMissingCode[] = ""
28 "local paint = Sk.newPaint()"
29 "paint:setAntiAlias(true)"
30 "paint:setTextSize(30)"
31 ""
32 "function onDrawContent(canvas)"
33 " canvas:drawText('missing \"test.lua\"', 20, 50, paint)"
34 "end"
35 ;
reed@google.com3597b732013-05-22 20:12:50 +000036
Ben Wagnerb2c4ea62018-08-08 11:36:17 -040037class LuaView : public Sample {
reed@google.com3597b732013-05-22 20:12:50 +000038public:
halcanary96fcdcc2015-08-27 07:41:13 -070039 LuaView() : fLua(nullptr) {}
skia.committer@gmail.com2d816ad2013-05-23 07:01:22 +000040
Ben Wagner5a965802017-10-09 10:34:09 -040041 ~LuaView() override { delete fLua; }
reed@google.com3597b732013-05-22 20:12:50 +000042
reed09445a42014-10-10 20:31:24 -070043 void setImageFilename(lua_State* L) {
Hal Canaryc465d132017-12-08 10:21:31 -050044 SkString str = GetResourcePath("images/mandrill_256.png");
reed09445a42014-10-10 20:31:24 -070045
46 lua_getglobal(L, "setImageFilename");
47 if (lua_isfunction(L, -1)) {
48 fLua->pushString(str.c_str());
49 if (lua_pcall(L, 1, 0, 0) != LUA_OK) {
50 SkDebugf("lua err: %s\n", lua_tostring(L, -1));
51 }
52 }
53 }
54
reed@google.com3597b732013-05-22 20:12:50 +000055 lua_State* ensureLua() {
halcanary96fcdcc2015-08-27 07:41:13 -070056 if (nullptr == fLua) {
halcanary385fe4d2015-08-26 13:07:48 -070057 fLua = new SkLua;
reed09445a42014-10-10 20:31:24 -070058
Ben Wagnerd6de89b2018-05-22 11:24:21 -040059 sk_sp<SkData> data = GetResourceAsData(LUA_FILENAME);
reed09445a42014-10-10 20:31:24 -070060 if (data) {
61 fLua->runCode(data->data(), data->size());
reed09445a42014-10-10 20:31:24 -070062 this->setImageFilename(fLua->get());
63 } else {
64 fLua->runCode(gMissingCode);
65 }
reed@google.com3597b732013-05-22 20:12:50 +000066 }
67 return fLua->get();
68 }
69
70protected:
Hal Canary8a027312019-07-03 10:55:44 -040071 SkString name() override { return SkString("Lua"); }
72
Ben Wagnerb2c4ea62018-08-08 11:36:17 -040073 bool onQuery(Sample::Event* evt) override {
reed@google.com3597b732013-05-22 20:12:50 +000074 SkUnichar uni;
Ben Wagnerb2c4ea62018-08-08 11:36:17 -040075 if (Sample::CharQ(*evt, &uni)) {
reed09a1d672014-10-11 13:13:11 -070076 lua_State* L = this->ensureLua();
77 lua_getglobal(L, gUnicharName);
78 if (lua_isfunction(L, -1)) {
79 SkString str;
80 str.appendUnichar(uni);
81 fLua->pushString(str.c_str());
82 if (lua_pcall(L, 1, 1, 0) != LUA_OK) {
83 SkDebugf("lua err: %s\n", lua_tostring(L, -1));
84 } else {
85 if (lua_isboolean(L, -1) && lua_toboolean(L, -1)) {
reed09a1d672014-10-11 13:13:11 -070086 return true;
87 }
88 }
89 }
reed@google.com3597b732013-05-22 20:12:50 +000090 }
91 return this->INHERITED::onQuery(evt);
92 }
93
mtklein36352bf2015-03-25 18:17:31 -070094 void onDrawContent(SkCanvas* canvas) override {
reed@google.com3597b732013-05-22 20:12:50 +000095 lua_State* L = this->ensureLua();
96
97 lua_getglobal(L, gDrawName);
98 if (!lua_isfunction(L, -1)) {
99 int t = lua_type(L, -1);
100 SkDebugf("--- expected %s function %d, ignoring.\n", gDrawName, t);
101 lua_pop(L, 1);
102 } else {
103 // does it make sense to try to "cache" the lua version of this
104 // canvas between draws?
105 fLua->pushCanvas(canvas);
reedbdc49ae2014-10-14 09:34:52 -0700106 fLua->pushScalar(this->width());
107 fLua->pushScalar(this->height());
108 if (lua_pcall(L, 3, 1, 0) != LUA_OK) {
reed@google.com3597b732013-05-22 20:12:50 +0000109 SkDebugf("lua err: %s\n", lua_tostring(L, -1));
110 }
111 }
reed@google.com3597b732013-05-22 20:12:50 +0000112 }
113
Ben Wagnerb2c4ea62018-08-08 11:36:17 -0400114 virtual Sample::Click* onFindClickHandler(SkScalar x, SkScalar y,
mtklein36352bf2015-03-25 18:17:31 -0700115 unsigned modi) override {
reed18ea7772014-10-11 11:28:07 -0700116 lua_State* L = this->ensureLua();
117 lua_getglobal(L, gClickName);
118 if (lua_isfunction(L, -1)) {
119 fLua->pushScalar(x);
120 fLua->pushScalar(y);
reed7a72c672014-11-07 10:23:55 -0800121 fLua->pushString("down");
122 if (lua_pcall(L, 3, 1, 0) != LUA_OK) {
reed18ea7772014-10-11 11:28:07 -0700123 SkDebugf("lua err: %s\n", lua_tostring(L, -1));
124 } else {
125 if (lua_isboolean(L, -1) && lua_toboolean(L, -1)) {
Florin Malitaba19b6f2017-12-11 11:48:29 -0500126 return new Click(this);
reed18ea7772014-10-11 11:28:07 -0700127 }
128 }
129 }
reed@google.com3597b732013-05-22 20:12:50 +0000130 return this->INHERITED::onFindClickHandler(x, y, modi);
131 }
132
mtklein36352bf2015-03-25 18:17:31 -0700133 bool onClick(Click* click) override {
halcanary96fcdcc2015-08-27 07:41:13 -0700134 const char* state = nullptr;
reed7a72c672014-11-07 10:23:55 -0800135 switch (click->fState) {
136 case Click::kMoved_State:
137 state = "moved";
138 break;
139 case Click::kUp_State:
140 state = "up";
141 break;
142 default:
143 break;
144 }
145 if (state) {
reed7a72c672014-11-07 10:23:55 -0800146 lua_State* L = fLua->get();
147 lua_getglobal(L, gClickName);
148 fLua->pushScalar(click->fCurr.x());
149 fLua->pushScalar(click->fCurr.y());
150 fLua->pushString(state);
151 lua_pcall(L, 3, 1, 0);
152 return lua_isboolean(L, -1) && lua_toboolean(L, -1);
153 }
154 return true;
reed@google.com3597b732013-05-22 20:12:50 +0000155 }
156
157private:
158 SkLua* fLua;
159
Ben Wagnerb2c4ea62018-08-08 11:36:17 -0400160 typedef Sample INHERITED;
reed@google.com3597b732013-05-22 20:12:50 +0000161};
162
163//////////////////////////////////////////////////////////////////////////////
164
Ben Wagnerb2c4ea62018-08-08 11:36:17 -0400165DEF_SAMPLE( return new LuaView(); )