-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.bit
188 lines (162 loc) · 5.52 KB
/
plugin.bit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
package:application/vnd.bitty-archive;
data:text/lua;count=3561;path=main.lua;
--[[
Plugin for the Bitty Engine
Copyright (C) 2020 - 2021 Tony Wang, all rights reserved
Homepage: https://paladin-t.github.io/bitty/
]]
-- Which assets are supposed to be injected from this plugin to target project.
local assets = {
'luax/compiler.lua',
'luax/README.txt'
}
-- Tips and example code.
local tips = 'Usage:\n require \'luax/compiler\'\n f = compile(\'source.luax\')\n f()'
local code = 'require \'luax/compiler\'\nf = compile(\'source.luax\')\nf()\n'
-- Plugin entry, called to determine the usage of this plugin.
function usage()
return { 'compiler' } -- This plugin is a compiler.
end
-- Plugin entry, called to determine the schema of this plugin.
function schema()
return {
-- Common.
name = 'Luax', -- Asset name registered for this plugin.
extension = 'luax', -- Asset extension registered for this plugin.
-- List of string.
keywords = {
'and', 'break', 'do', 'else', 'elseif', 'end',
'false', 'for', 'function', 'goto', 'if', 'in',
'local', 'nil', 'not', 'or', 'repeat', 'return',
'then', 'true', 'until', 'while'
},
identifiers = {
'__add', '__sub', '__mul', '__div',
'__mod', '__pow', '__unm', '__idiv',
'__band', '__bor', '__bxor', '__bnot',
'__shl', '__shr',
'__concat', '__len',
'__eq', '__lt', '__le',
'__index', '__newindex', '__call',
'__gc', '__close', '__mode', '__name', '__tostring',
'char', 'len', 'pack', 'type', 'unpack',
'_G', 'assert', 'collectgarbage', 'dofile', 'error', 'getmetatable', 'ipairs', 'load', 'loadfile', 'next', 'pairs', 'pcall', 'print', 'rawequal', 'rawget', 'rawlen', 'rawset', 'select', 'setmetatable', 'tonumber', 'tostring', 'xpcall',
'coroutine', 'create', 'isyieldable', 'resume', 'running', 'status', 'wrap', 'yield',
'require', 'package', 'config', 'cpath', 'loaded', 'loadlib', 'path', 'preload', 'searchers', 'searchpath',
'string', 'byte', 'dump', 'find', 'format', 'gmatch', 'gsub', 'lower', 'match', 'packsize', 'rep', 'reverse', 'sub', 'upper',
'utf8', 'charpattern', 'codes', 'codepoint', 'offset',
'table', 'concat', 'insert', 'move', 'remove', 'sort',
'math', 'abs', 'acos', 'asin', 'atan', 'ceil', 'cos', 'deg', 'exp', 'floor', 'fmod', 'huge', 'log', 'max', 'maxinteger', 'min', 'mininteger', 'modf', 'pi', 'rad', 'random', 'randomseed', 'sin', 'sqrt', 'tan', 'tointeger', 'ult',
'self'
},
quotes = { '\'', '"' },
-- String.
multiline_comment_start = '--[[',
multiline_comment_end = ']]',
-- C++ regex.
comment_patterns = { '\\-\\-.*' },
number_patterns = {
'0[xX][0-9a-fA-F]+[uU]?[lL]?[lL]?',
'[+-]?([0-9]+([.][0-9]*)?|[.][0-9]+)([eE][+-]?[0-9]+)?[fF]?',
'[+-]?[0-9]+[Uu]?[lL]?[lL]?'
},
identifier_patterns = { '[a-zA-Z_][a-zA-Z0-9_]*' },
punctuation_patterns = {
'[\\[\\]\\{\\}\\!\\#\\%\\^\\&\\*\\(\\)\\-\\+\\=\\~\\|\\:\\<\\>\\?\\/\\;\\,\\.]'
},
-- Boolean.
case_sensitive = true,
-- List of string.
assets = assets
}
end
-- Plugin entry, called to install necessary assets to your target project.
function compiler()
print('Install Luax compiler to the current project.')
waitbox('Installing')
:thus(function (rsp)
local install = function (name)
local data = Project.main:read(name)
data:poke(1)
Project.editing:write(name, data) -- Write into the target project.
end
for _, asset in ipairs(assets) do -- Install all necessary assets.
install(asset)
end
print('Done.')
msgbox(tips)
:thus(function ()
Platform.setClipboardText(code) -- Put example code to clipboard.
end)
end)
end
data:text/lua;count=1561;path=luax/compiler.lua;
--[[
Luax compiler for the Bitty Engine
Copyright (C) 2020 - 2021 Tony Wang, all rights reserved
Homepage: https://paladin-t.github.io/bitty/
]]
local interpreter = 'local function interpret(code, asset)\n' ..
' local chunk, ret = load(code, asset, "t", _ENV)\n' ..
' if chunk ~= nil then\n' ..
' chunk()\n' ..
' else\n' ..
' error(ret)\n' ..
' end\n' ..
'end\n'
local function trim(str)
return str:match'^%s*(.*%S)' or ''
end
-- Compiles from an asset.
function compile(asset)
if not asset then
error('Invalid asset.')
end
local bytes = Project.main:read(asset)
if not bytes then
error('Invalid asset.')
end
bytes:poke(1)
local src = bytes:readString()
local dst = ''
for ln in src:gmatch('([^\n]*)\n?') do
if #ln > 0 then
local inc, dec = ln:find('+='), ln:find('-=')
if inc then
local head = ln:sub(1, inc - 1)
local tail = ln:sub(inc + 2)
local token = trim(head)
ln = head .. '= ' .. token .. ' +' .. tail -- Concat parts.
elseif dec then
local head = ln:sub(1, dec - 1)
local tail = ln:sub(dec + 2)
local token = trim(head)
ln = head .. '= ' .. token .. ' -' .. tail -- Concat parts.
end
ln = '\'' .. ln .. '\\n\' ..'
dst = dst .. ln .. '\n' -- Concat lines.
else
ln = '\'\\n\' ..'
dst = dst .. ln .. '\n'
end
end
dst = dst .. '\'\'\n'
local full = interpreter .. 'interpret(' .. dst .. ', \'' .. asset .. '\')' -- Link the source code with the interpreter together.
return load(full, asset) -- Return loaded and parsed Lua chunk.
end
data:text/txt;count=102;path=luax/README.txt;
# Luax compiler for Bitty Engine
Usage:
require 'luax/compiler'
f = compile('source.luax')
f()
data:text/json;count=211;path=info.json;
{
"id": 0,
"title": "Luax Compiler",
"description": "Compile Luax source to Lua.",
"author": "Tony",
"version": "1.0",
"genre": "COMPILER",
"url": "https://github.com/paladin-t/bitty.luax_plugin"
}