nadesiko3 3.2.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +107 -0
- package/bin/cnako3 +10 -0
- package/bin/cnako3.bat +11 -0
- package/bin/nako3server.bat +6 -0
- package/demo/ace_editor.html +90 -0
- package/demo/ace_editor_tabs.html +162 -0
- package/demo/basic.html +71 -0
- package/demo/browsers.html +128 -0
- package/demo/css/basic.css +3 -0
- package/demo/css/common.css +157 -0
- package/demo/css/editor.css +8 -0
- package/demo/css/flow.css +3 -0
- package/demo/css/index.css +3 -0
- package/demo/extlib/ace@1.4.12/ace.js +17 -0
- package/demo/extlib/ace@1.4.12/ext-code_lens.min.js +1 -0
- package/demo/extlib/ace@1.4.12/ext-language_tools.min.js +1 -0
- package/demo/extlib/ace@1.4.12/ext-options.min.js +1 -0
- package/demo/extlib/ace@1.4.12/ext-settings_menu.js +8 -0
- package/demo/extlib/ace@1.4.12/keybinding-vscode.js +8 -0
- package/demo/extlib/ace@1.4.12/theme-monokai.js +8 -0
- package/demo/extlib/ace@1.4.12/theme-xcode.js +8 -0
- package/demo/extlib/chart.js@3.2.1/chart.min.js +13 -0
- package/demo/extlib/pure-min.css +11 -0
- package/demo/flow.html +97 -0
- package/demo/graph.html +53 -0
- package/demo/image/nako.png +0 -0
- package/demo/image/nakopad-icon256.png +0 -0
- package/demo/image/turtle.fla +0 -0
- package/demo/image/turtle.png +0 -0
- package/demo/index.html +134 -0
- package/demo/js/common.js +17 -0
- package/demo/js/turtle3d_test.js +44 -0
- package/demo/js/turtle_test.js +44 -0
- package/demo/runscript.html +47 -0
- package/demo/runscript2.html +33 -0
- package/demo/turtle.html +58 -0
- package/demo/turtle2.html +141 -0
- package/demo/turtle3.html +278 -0
- package/demo/turtle3d.html +58 -0
- package/demo/turtle3d2.html +107 -0
- package/demo/version.html +24 -0
- package/doc/SETUP.md +172 -0
- package/doc/about.md +34 -0
- package/doc/browsers.md +60 -0
- package/doc/docgen.md +21 -0
- package/doc/editor.md +44 -0
- package/doc/files.md +37 -0
- package/doc/plugins.md +195 -0
- package/doc/release.md +78 -0
- package/doc/win32.md +57 -0
- package/package.json +196 -0
- package/release/_hash.txt +65 -0
- package/release/_script-tags.txt +13 -0
- package/release/command.json +1 -0
- package/release/command.json.js +1 -0
- package/release/command_cnako3.json +1 -0
- package/release/command_list.json +1 -0
- package/release/editor.js +2 -0
- package/release/editor.js.LICENSE.txt +32 -0
- package/release/josi.json +48 -0
- package/release/nako_gen_async.js +1 -0
- package/release/nako_gen_async.js.LICENSE.txt +595 -0
- package/release/plugin_caniuse.js +1 -0
- package/release/plugin_caniuse.js.LICENSE.txt +411 -0
- package/release/plugin_csv.js +1 -0
- package/release/plugin_csv.js.LICENSE.txt +367 -0
- package/release/plugin_datetime.js +1 -0
- package/release/plugin_datetime.js.LICENSE.txt +471 -0
- package/release/plugin_kansuji.js +1 -0
- package/release/plugin_kansuji.js.LICENSE.txt +491 -0
- package/release/plugin_markup.js +1 -0
- package/release/plugin_markup.js.LICENSE.txt +363 -0
- package/release/plugin_turtle.js +1 -0
- package/release/plugin_turtle.js.LICENSE.txt +435 -0
- package/release/plugin_webworker.js +1 -0
- package/release/plugin_webworker.js.LICENSE.txt +491 -0
- package/release/version.js +2 -0
- package/release/version.js.LICENSE.txt +32 -0
- package/release/wnako3.js +2 -0
- package/release/wnako3.js.LICENSE.txt +1 -0
- package/release/wnako3webworker.js +1 -0
- package/release/wnako3webworker.js.LICENSE.txt +847 -0
- package/release/yoyakugo.json +30 -0
- package/src/browsers.md +60 -0
- package/src/cnako3.js +466 -0
- package/src/commander_ja.js +154 -0
- package/src/enako3.js +69 -0
- package/src/era.json +22 -0
- package/src/index.js +5 -0
- package/src/nako3.js +836 -0
- package/src/nako3_assert.js +37 -0
- package/src/nako3editorfix.sfd +106 -0
- package/src/nako3editorfix.woff +0 -0
- package/src/nako3server.js +51 -0
- package/src/nako_colors.js +86 -0
- package/src/nako_errors.js +176 -0
- package/src/nako_gen.js +1459 -0
- package/src/nako_gen_async.js +1622 -0
- package/src/nako_global.js +113 -0
- package/src/nako_indent.js +480 -0
- package/src/nako_josi_list.js +46 -0
- package/src/nako_lex_rules.js +259 -0
- package/src/nako_lexer.js +576 -0
- package/src/nako_logger.js +138 -0
- package/src/nako_parser3.js +1768 -0
- package/src/nako_parser_base.js +265 -0
- package/src/nako_parser_const.js +37 -0
- package/src/nako_prepare.js +293 -0
- package/src/nako_reserved_words.js +35 -0
- package/src/nako_source_mapping.js +251 -0
- package/src/nako_test.js +37 -0
- package/src/nako_version.js +8 -0
- package/src/plugin_browser.js +191 -0
- package/src/plugin_browser_ajax.js +352 -0
- package/src/plugin_browser_audio.js +109 -0
- package/src/plugin_browser_canvas.js +462 -0
- package/src/plugin_browser_chart.js +296 -0
- package/src/plugin_browser_color.js +49 -0
- package/src/plugin_browser_crypto.js +26 -0
- package/src/plugin_browser_dialog.js +53 -0
- package/src/plugin_browser_dom_basic.js +322 -0
- package/src/plugin_browser_dom_event.js +193 -0
- package/src/plugin_browser_dom_parts.js +163 -0
- package/src/plugin_browser_geolocation.js +51 -0
- package/src/plugin_browser_hotkey.js +25 -0
- package/src/plugin_browser_html.js +59 -0
- package/src/plugin_browser_in_worker.js +44 -0
- package/src/plugin_browser_location.js +21 -0
- package/src/plugin_browser_speech.js +111 -0
- package/src/plugin_browser_storage.js +121 -0
- package/src/plugin_browser_system.js +12 -0
- package/src/plugin_browser_websocket.js +73 -0
- package/src/plugin_caniuse.js +24 -0
- package/src/plugin_csv.js +57 -0
- package/src/plugin_datetime.js +414 -0
- package/src/plugin_express.js +212 -0
- package/src/plugin_kansuji.js +224 -0
- package/src/plugin_keigo.js +55 -0
- package/src/plugin_markup.js +32 -0
- package/src/plugin_math.js +319 -0
- package/src/plugin_node.js +1018 -0
- package/src/plugin_promise.js +94 -0
- package/src/plugin_system.js +2109 -0
- package/src/plugin_test.js +38 -0
- package/src/plugin_turtle.js +646 -0
- package/src/plugin_webworker.js +334 -0
- package/src/plugin_weykturtle3d.js +1216 -0
- package/src/plugin_worker.js +92 -0
- package/src/repl.nako3 +63 -0
- package/src/turtle-elephant.png +0 -0
- package/src/turtle-panda.png +0 -0
- package/src/turtle64.png +0 -0
- package/src/wnako3.js +162 -0
- package/src/wnako3_editor.css +215 -0
- package/src/wnako3_editor.js +1645 -0
- package/src/wnako3_editor_marker_red.png +0 -0
- package/src/wnako3_editor_marker_red.xcf +0 -0
- package/src/wnako3_editor_marker_yellow.png +0 -0
- package/src/wnako3_editor_marker_yellow.xcf +0 -0
- package/src/wnako3webworker.js +70 -0
- package/test/ace_editor/karma.config.js +94 -0
- package/test/ace_editor/test/.babelrc.json +3 -0
- package/test/ace_editor/test/ace_editor_test.js +178 -0
- package/test/ace_editor/test/html/custom_context.html +140 -0
- package/test/async/async_basic_test.js +124 -0
- package/test/browser/karma.config.js +212 -0
- package/test/browser/test/.babelrc.json +3 -0
- package/test/browser/test/compare_util.js +50 -0
- package/test/browser/test/html/canvas_basic.html +1 -0
- package/test/browser/test/html/div_basic.html +2 -0
- package/test/browser/test/html/event_dom_form.html +4 -0
- package/test/browser/test/html/event_dom_scrolldiv.html +5 -0
- package/test/browser/test/image/canvas_test1.png +0 -0
- package/test/browser/test/image/canvas_test2.png +0 -0
- package/test/browser/test/image/canvas_test3.png +0 -0
- package/test/browser/test/image/canvas_test4.png +0 -0
- package/test/browser/test/image/canvas_test7.png +0 -0
- package/test/browser/test/image/canvas_test8.png +0 -0
- package/test/browser/test/image/canvas_test_blank.png +0 -0
- package/test/browser/test/image/elephant_kana.png +0 -0
- package/test/browser/test/image/panda_kana.png +0 -0
- package/test/browser/test/image/turtle_kana.png +0 -0
- package/test/browser/test/import_plugin_checker.js +24 -0
- package/test/browser/test/plugin_browser_test.js +52 -0
- package/test/browser/test/plugin_browser_test_ajax.js +123 -0
- package/test/browser/test/plugin_browser_test_color.js +18 -0
- package/test/browser/test/plugin_browser_test_dialog.js +72 -0
- package/test/browser/test/plugin_browser_test_dom_event.js +598 -0
- package/test/browser/test/plugin_browser_test_dom_parts.js +125 -0
- package/test/browser/test/plugin_browser_test_system.js +9 -0
- package/test/browser/test/plugin_turtle_test.js +817 -0
- package/test/browser/test/plugin_webworker_test.js +87 -0
- package/test/browser/test/require_test.js +71 -0
- package/test/bundled/karma.config.base.js +117 -0
- package/test/bundled/karma.config.js +86 -0
- package/test/bundled/test/.babelrc.json +3 -0
- package/test/bundled/test/bundled_test.js +69 -0
- package/test/bundled/test/html/custom_context.html +65 -0
- package/test/bundled/test/html/custom_debug.html +66 -0
- package/test/bundled/test4b.cmd +52 -0
- package/test/bundled/test_base/.babelrc.json +3 -0
- package/test/bundled/test_base/_checktool_test.js +25 -0
- package/test/bundled/test_base/basic_ajax_test.js +56 -0
- package/test/bundled/test_base/basic_async_test.js +18 -0
- package/test/bundled/test_base/basic_test.js +153 -0
- package/test/bundled/test_base/calc_test.js +132 -0
- package/test/bundled/test_base/css/browsers_box.css +114 -0
- package/test/bundled/test_base/html/custom_context.html +69 -0
- package/test/bundled/test_base/html/custom_debug.html +71 -0
- package/test/bundled/test_base/js/browsers_box.js +72 -0
- package/test/bundled/test_base/plugin_csv_test.js +37 -0
- package/test/bundled/test_base/plugin_datetime_test.js +115 -0
- package/test/bundled/test_base/plugin_kansuji_test.js +49 -0
- package/test/bundled/test_base/plugin_system_test.js +410 -0
- package/test/bundled/test_base/plugin_webworker_test.js +53 -0
- package/test/bundled/test_base/resources/ok.txt +1 -0
- package/test/bundled/test_base/test_utils.js +191 -0
- package/test/common/array_test.js +40 -0
- package/test/common/basic_test.js +317 -0
- package/test/common/calc_test.js +139 -0
- package/test/common/debug_test.js +16 -0
- package/test/common/error_test.js +16 -0
- package/test/common/flow_test.js +360 -0
- package/test/common/func_call.js +136 -0
- package/test/common/func_test.js +149 -0
- package/test/common/indent_test.js +362 -0
- package/test/common/lex_test.js +146 -0
- package/test/common/literal_test.js +72 -0
- package/test/common/nako_logger_test.js +26 -0
- package/test/common/plugin_browser_test.js +24 -0
- package/test/common/plugin_browser_ut_audio_test.js +88 -0
- package/test/common/plugin_browser_ut_color_test.js +21 -0
- package/test/common/plugin_browser_ut_dialog_test.js +100 -0
- package/test/common/plugin_browser_ut_html_test.js +13 -0
- package/test/common/plugin_browser_ut_system_test.js +10 -0
- package/test/common/plugin_csv_test.js +39 -0
- package/test/common/plugin_datetime_test.js +120 -0
- package/test/common/plugin_kansuji_test.js +59 -0
- package/test/common/plugin_promise_test.js +18 -0
- package/test/common/plugin_system_test.js +451 -0
- package/test/common/prepare_test.js +93 -0
- package/test/common/re_test.js +20 -0
- package/test/common/variable_scope_test.js +105 -0
- package/test/jsconfig.json +19 -0
- package/test/karma.config.js +91 -0
- package/test/node/add_test.nako3 +1 -0
- package/test/node/async_test.js +80 -0
- package/test/node/commander_ja_test.js +82 -0
- package/test/node/error_message_test.js +244 -0
- package/test/node/kai_test.nako3 +6 -0
- package/test/node/node_test.js +43 -0
- package/test/node/plugin_broken.js.txt +3 -0
- package/test/node/plugin_browser_ut_ajax_test.js +355 -0
- package/test/node/plugin_browser_ut_location_test.js +32 -0
- package/test/node/plugin_markup_test.js +44 -0
- package/test/node/plugin_math_test.js +42 -0
- package/test/node/plugin_node_test.js +93 -0
- package/test/node/plugin_test.js +16 -0
- package/test/node/relative_import_test_1.nako3 +1 -0
- package/test/node/relative_import_test_2.nako3 +2 -0
- package/test/node/require_nako3_test.js +59 -0
- package/test/node/requiretest.nako3 +4 -0
- package/test/node/requiretest_indirect.nako3 +1 -0
- package/test/node/requiretest_name.nako3 +5 -0
- package/test/node/runtime_error.nako3 +2 -0
- package/test/node/side_effects_test.js +106 -0
- package/test/node/sjis.txt +5 -0
- package/test/node/syntax_error.nako3 +2 -0
- package/test/node/wnako3_editor_test.js +360 -0
- package/tools/README.md +7 -0
- package/tools/nako3edit/html/edit.html +83 -0
- package/tools/nako3edit/html/edit_plugin.js +6 -0
- package/tools/nako3edit/html/files.html +49 -0
- package/tools/nako3edit/html/nako3edit.css +66 -0
- package/tools/nako3edit/index.nako3 +145 -0
- package/tools/nako3edit/run.js +12 -0
- package/tools/nako3server/html/edit.html +104 -0
- package/tools/nako3server/html/edit_plugin.js +6 -0
- package/tools/nako3server/html/files.html +53 -0
- package/tools/nako3server/html/nako3edit.css +66 -0
- package/tools/nako3server/index.nako3 +129 -0
- package/tools/nako3server/run.js +12 -0
|
@@ -0,0 +1,334 @@
|
|
|
1
|
+
// @ts-nocheck
|
|
2
|
+
const PluginWebWorker = {
|
|
3
|
+
'初期化': {
|
|
4
|
+
type: 'func',
|
|
5
|
+
josi: [],
|
|
6
|
+
pure: true,
|
|
7
|
+
fn: function (sys) {
|
|
8
|
+
sys._webworker = {
|
|
9
|
+
setNakoHandler: function (work) {
|
|
10
|
+
work.onmessage = (event) => {
|
|
11
|
+
const data = event.data || { type: '', data: '' }
|
|
12
|
+
const type = data.type || ''
|
|
13
|
+
const value = data.data || ''
|
|
14
|
+
switch (type) {
|
|
15
|
+
case 'output':
|
|
16
|
+
if (work.onoutput) {
|
|
17
|
+
work.onoutput.apply(sys, [value, event])
|
|
18
|
+
}
|
|
19
|
+
break
|
|
20
|
+
case 'data':
|
|
21
|
+
if (work.ondata) {
|
|
22
|
+
work.ondata.apply(sys, [value, event])
|
|
23
|
+
}
|
|
24
|
+
break
|
|
25
|
+
case 'error':
|
|
26
|
+
sys.logger.error(value.noColor)
|
|
27
|
+
break
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
work.onerror = (event) => {
|
|
31
|
+
const e = new Error(typeof event.message !== 'undefined' ? event.message : 'no message')
|
|
32
|
+
sys.logger.error(e)
|
|
33
|
+
}
|
|
34
|
+
work.onerrormessage = (event) => {
|
|
35
|
+
const e = new Error(typeof event.message !== 'undefined' ? event.message : 'no message')
|
|
36
|
+
sys.logger.error(e)
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
inWorker: () => {
|
|
40
|
+
// eslint-disable-next-line no-undef
|
|
41
|
+
return typeof WorkerGlobalScope !== 'undefined' && self instanceof WorkerGlobalScope
|
|
42
|
+
},
|
|
43
|
+
getBaseUrlFromTag: () => {
|
|
44
|
+
if (!self.document) { return '' }
|
|
45
|
+
const pluginName = 'plugin_webworker.js'
|
|
46
|
+
let path = location.pathname
|
|
47
|
+
if (path.substr(path.length - 1, 1) !== '/') {
|
|
48
|
+
const paths = path.split('/')
|
|
49
|
+
path = paths.slice(paths.length - 1, 1).join('/') & '/'
|
|
50
|
+
}
|
|
51
|
+
const scripts = document.querySelectorAll('script')
|
|
52
|
+
for (let i = 0; i < scripts.length; i++) {
|
|
53
|
+
const script = scripts[i]
|
|
54
|
+
let src = script.src || ''
|
|
55
|
+
const index = src.indexOf(pluginName)
|
|
56
|
+
if (index >= 0) {
|
|
57
|
+
if (src.length - index === pluginName.length ||
|
|
58
|
+
'?&#'.indexOf(src.substr(index + pluginName.length, 1)) >= 0) {
|
|
59
|
+
src = src.substring(0, index)
|
|
60
|
+
if (src.substring(0, 1) === '/') {
|
|
61
|
+
// スクリプトソースはorigin無しの絶対パス
|
|
62
|
+
return location.origin + src
|
|
63
|
+
}
|
|
64
|
+
if (/^[a-zA-Z]+:\/\//.test(src)) {
|
|
65
|
+
// スクリプトソースは絶対URI
|
|
66
|
+
return src
|
|
67
|
+
}
|
|
68
|
+
// スクリプトソースはorigin無しの相対パス
|
|
69
|
+
return location.origin + path + src
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
// スクリプトソースが見つからなかったのでドキュメントのURIを返す
|
|
74
|
+
return location.origin + path
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
sys.__v0['ワーカーURL'] = sys._webworker.getBaseUrlFromTag()
|
|
78
|
+
}
|
|
79
|
+
},
|
|
80
|
+
// @イベント定数
|
|
81
|
+
'対象イベント': { type: 'const', value: '' }, // @たいしょういべんと
|
|
82
|
+
'受信データ': { type: 'const', value: '' }, // @たいしょういべんと
|
|
83
|
+
|
|
84
|
+
'ワーカーURL': { type: 'const', value: '' }, // @わーかーURL
|
|
85
|
+
'ワーカーURL設定': { // @なでしこv3のファイルのあるURLを設定 // @わーかーURLせってい
|
|
86
|
+
type: 'func',
|
|
87
|
+
josi: [['に', 'へ', 'と']],
|
|
88
|
+
pure: true,
|
|
89
|
+
fn: function (url, sys) {
|
|
90
|
+
if (url && url.substring(url.length - 1) !== '/') {
|
|
91
|
+
url += '/'
|
|
92
|
+
}
|
|
93
|
+
sys.__v0['ワーカーURL'] = url
|
|
94
|
+
},
|
|
95
|
+
return_none: true
|
|
96
|
+
},
|
|
97
|
+
|
|
98
|
+
// @NAKOワーカー
|
|
99
|
+
'ワーカー起動': { // @指定したURLでWebWorkerを起動する。ワーカオブジェクトを返す。 // @わーかーきどう
|
|
100
|
+
type: 'func',
|
|
101
|
+
josi: [['で', 'を', 'の']],
|
|
102
|
+
pure: true,
|
|
103
|
+
fn: function (url, sys) {
|
|
104
|
+
return new Worker(url)
|
|
105
|
+
},
|
|
106
|
+
return_none: false
|
|
107
|
+
},
|
|
108
|
+
'ワーカーJS起動': { // @指定したJavascriptのソースでWebWorkerを起動する。ワーカオブジェクトを返す。 // @わーかーJSきどう
|
|
109
|
+
type: 'func',
|
|
110
|
+
josi: [['で', 'を', 'の']],
|
|
111
|
+
pure: true,
|
|
112
|
+
fn: function (src, sys) {
|
|
113
|
+
const blob = new Blob([src], { type: 'application/javascript' })
|
|
114
|
+
const url = URL.createObjectURL(blob)
|
|
115
|
+
return new Worker(url)
|
|
116
|
+
},
|
|
117
|
+
return_none: false
|
|
118
|
+
},
|
|
119
|
+
'NAKOワーカー起動': { // @指定したなでしこ3のWebWorkerを起動する。ワーカオブジェクトを返す。 // @NAKOわーかーきどう
|
|
120
|
+
type: 'func',
|
|
121
|
+
josi: [['で']],
|
|
122
|
+
isVariableJosi: true,
|
|
123
|
+
pure: true,
|
|
124
|
+
fn: function (plugins, sys) {
|
|
125
|
+
let url
|
|
126
|
+
if (typeof sys === 'undefined') { sys = plugins; plugins = undefined }
|
|
127
|
+
if (plugins !== undefined) {
|
|
128
|
+
if (!(plugins instanceof Array)) {
|
|
129
|
+
throw new Error('プラグインはファイル名を配列で指定してください')
|
|
130
|
+
}
|
|
131
|
+
const baseurl = sys.__v0['ワーカーURL']
|
|
132
|
+
let code = `importScripts('${baseurl}wnako3webworker.js')\n`
|
|
133
|
+
const l = plugins.length
|
|
134
|
+
let i
|
|
135
|
+
for (i = 0; i < l; i++) {
|
|
136
|
+
code += `importScripts('${baseurl}${plugins[i]}')\n`
|
|
137
|
+
}
|
|
138
|
+
const blob = new Blob([code], { type: 'application/javascript' })
|
|
139
|
+
url = URL.createObjectURL(blob)
|
|
140
|
+
} else {
|
|
141
|
+
url = sys.__v0['ワーカーURL'] + 'wnako3webworker.js'
|
|
142
|
+
}
|
|
143
|
+
const myWorker = new Worker(url)
|
|
144
|
+
if (myWorker) {
|
|
145
|
+
sys._webworker.setNakoHandler(myWorker)
|
|
146
|
+
}
|
|
147
|
+
return myWorker
|
|
148
|
+
},
|
|
149
|
+
return_none: false
|
|
150
|
+
},
|
|
151
|
+
'NAKOワーカーハンドラ設定': { // @ワーカーにNAKOワーカーのための設定を行う。 // @NAKOわーかーはんどらせってい
|
|
152
|
+
type: 'func',
|
|
153
|
+
josi: [['に', 'へ', 'の']],
|
|
154
|
+
pure: true,
|
|
155
|
+
fn: function (work, sys) {
|
|
156
|
+
sys._webworker.setNakoHandler(work)
|
|
157
|
+
},
|
|
158
|
+
return_none: true
|
|
159
|
+
},
|
|
160
|
+
'NAKOワーカーデータ受信時': { // @無名関数Fでなでしこv3エンジンに対してワーカーメッセージによりデータを受信した時に実行するイベントを設定。『受信データ』に受信したデータ。『対象イベント』にイベント引数。 // @NAKOわーかーでーたじゅしんしたとき
|
|
161
|
+
type: 'func',
|
|
162
|
+
josi: [['で'], ['から']],
|
|
163
|
+
isVariableJosi: true,
|
|
164
|
+
pure: false,
|
|
165
|
+
fn: function (func, work, sys) {
|
|
166
|
+
if (typeof sys === 'undefined') { sys = work; work = self }
|
|
167
|
+
func = sys.__findVar(func, null) // 文字列指定なら関数に変換
|
|
168
|
+
work.ondata = (data, e) => {
|
|
169
|
+
sys.__v0['受信データ'] = data
|
|
170
|
+
sys.__v0['対象イベント'] = e
|
|
171
|
+
return func(e, sys)
|
|
172
|
+
}
|
|
173
|
+
},
|
|
174
|
+
return_none: true
|
|
175
|
+
},
|
|
176
|
+
'NAKOワーカー表示時': { // @無名関数Fでなでしこv3エンジンに対してワーカーメッセージにより表示データを受信した時に実行するイベントを設定。『受信データ』に表示しようとしたデータ。『対象イベント』にイベント引数。 // @NAKOわーかーひょうじしたとき
|
|
177
|
+
type: 'func',
|
|
178
|
+
josi: [['で'], ['から']],
|
|
179
|
+
pure: false,
|
|
180
|
+
fn: function (func, work, sys) {
|
|
181
|
+
func = sys.__findVar(func, null) // 文字列指定なら関数に変換
|
|
182
|
+
work.onoutput = (data, e) => {
|
|
183
|
+
sys.__v0['受信データ'] = data
|
|
184
|
+
sys.__v0['対象イベント'] = e
|
|
185
|
+
return func(e, sys)
|
|
186
|
+
}
|
|
187
|
+
},
|
|
188
|
+
return_none: true
|
|
189
|
+
},
|
|
190
|
+
'ワーカーメッセージ受信時': { // @無名関数Fでworkに対してメッセージを受信した時に実行するイベントを設定。『受信データ』に受信したデータ。『対象イベント』にイベント引数。 // @わーかーめっせーじじゅしんしたとき
|
|
191
|
+
type: 'func',
|
|
192
|
+
josi: [['で'], ['から']],
|
|
193
|
+
isVariableJosi: true,
|
|
194
|
+
pure: false,
|
|
195
|
+
fn: function (func, work, sys) {
|
|
196
|
+
if (typeof sys === 'undefined') { sys = work; work = self }
|
|
197
|
+
func = sys.__findVar(func, null) // 文字列指定なら関数に変換
|
|
198
|
+
work.onmessage = (e) => {
|
|
199
|
+
sys.__v0['受信データ'] = e.data
|
|
200
|
+
sys.__v0['対象イベント'] = e
|
|
201
|
+
return func(e, sys)
|
|
202
|
+
}
|
|
203
|
+
},
|
|
204
|
+
return_none: true
|
|
205
|
+
},
|
|
206
|
+
'NAKOワーカープログラム起動': { // @WORKERに固有の形式でプログラムの転送と実行行う。 // @NAKOわーかーぷろぐらむきどう
|
|
207
|
+
type: 'func',
|
|
208
|
+
josi: [['に', 'で'], ['を']],
|
|
209
|
+
pure: true,
|
|
210
|
+
fn: function (work, data, sys) {
|
|
211
|
+
const msg = {
|
|
212
|
+
type: 'run',
|
|
213
|
+
data: data
|
|
214
|
+
}
|
|
215
|
+
work.postMessage(msg)
|
|
216
|
+
},
|
|
217
|
+
return_none: true
|
|
218
|
+
},
|
|
219
|
+
'NAKOワーカーリセット': { // @WORKERに固有の形式でプログラムの転送と実行行う。 // @わーかーりせっと
|
|
220
|
+
type: 'func',
|
|
221
|
+
josi: [['を']],
|
|
222
|
+
pure: true,
|
|
223
|
+
fn: function (work, sys) {
|
|
224
|
+
const msg = {
|
|
225
|
+
type: 'reset',
|
|
226
|
+
data: ''
|
|
227
|
+
}
|
|
228
|
+
work.postMessage(msg)
|
|
229
|
+
},
|
|
230
|
+
return_none: true
|
|
231
|
+
},
|
|
232
|
+
'ワーカー終了': { // @WORKERを終了する。 // @わーかーしゅうりょう
|
|
233
|
+
type: 'func',
|
|
234
|
+
josi: [['を']],
|
|
235
|
+
isVariableJosi: true,
|
|
236
|
+
pure: true,
|
|
237
|
+
fn: function (work, sys) {
|
|
238
|
+
if (typeof sys === 'undefined') { sys = work; work = self }
|
|
239
|
+
work.terminate()
|
|
240
|
+
},
|
|
241
|
+
return_none: true
|
|
242
|
+
},
|
|
243
|
+
'NAKOワーカー終了': { // @WORKERを終了する。 // @NAKOわーかーしゅうりょう
|
|
244
|
+
type: 'func',
|
|
245
|
+
josi: [['を']],
|
|
246
|
+
isVariableJosi: true,
|
|
247
|
+
pure: true,
|
|
248
|
+
fn: function (work, sys) {
|
|
249
|
+
if (typeof sys === 'undefined') {
|
|
250
|
+
self.close()
|
|
251
|
+
return
|
|
252
|
+
}
|
|
253
|
+
const msg = {
|
|
254
|
+
type: 'close',
|
|
255
|
+
data: ''
|
|
256
|
+
}
|
|
257
|
+
work.postMessage(msg)
|
|
258
|
+
},
|
|
259
|
+
return_none: true
|
|
260
|
+
},
|
|
261
|
+
'NAKOワーカーデータ送信': { // @WORKERに固有の形式でデータを送信する。 // @NAKOわーかーでーたそうしん
|
|
262
|
+
type: 'func',
|
|
263
|
+
josi: [['を'], ['に', 'へ']],
|
|
264
|
+
isVariableJosi: true,
|
|
265
|
+
pure: true,
|
|
266
|
+
fn: function (data, work, sys) {
|
|
267
|
+
if (typeof sys === 'undefined') { sys = work; work = self }
|
|
268
|
+
const msg = {
|
|
269
|
+
type: 'data',
|
|
270
|
+
data: data
|
|
271
|
+
}
|
|
272
|
+
work.postMessage(msg)
|
|
273
|
+
},
|
|
274
|
+
return_none: true
|
|
275
|
+
},
|
|
276
|
+
'ワーカーメッセージ送信': { // @WORKERにメッセージを送信する。 // @わーかーめっせーじそうしん
|
|
277
|
+
type: 'func',
|
|
278
|
+
josi: [['を'], ['に', 'へ']],
|
|
279
|
+
isVariableJosi: true,
|
|
280
|
+
pure: true,
|
|
281
|
+
fn: function (msg, work, sys) {
|
|
282
|
+
if (typeof sys === 'undefined') { sys = work; work = self }
|
|
283
|
+
work.postMessage(msg)
|
|
284
|
+
},
|
|
285
|
+
return_none: true
|
|
286
|
+
},
|
|
287
|
+
'NAKOワーカー転送': { // @WORKERにユーザー定義関数またはユーザ定義のグローバル変数を転送する。 // @NAKOわーかーてんそう
|
|
288
|
+
type: 'func',
|
|
289
|
+
josi: [['を'], ['に', 'へ']],
|
|
290
|
+
isVariableJosi: true,
|
|
291
|
+
pure: false,
|
|
292
|
+
fn: function (datas, work, sys) {
|
|
293
|
+
if (typeof sys === 'undefined') { sys = work; work = self }
|
|
294
|
+
const obj = []
|
|
295
|
+
if (typeof datas === 'string') { datas = [datas] }
|
|
296
|
+
datas.forEach(data => {
|
|
297
|
+
if (typeof sys.__varslist[2][data] !== 'undefined') {
|
|
298
|
+
obj.push({
|
|
299
|
+
type: 'val',
|
|
300
|
+
name: data,
|
|
301
|
+
content: sys.__varslist[2][data]
|
|
302
|
+
})
|
|
303
|
+
} else
|
|
304
|
+
if (typeof sys.__varslist[1][data] !== 'undefined') {
|
|
305
|
+
obj.push({
|
|
306
|
+
type: 'func',
|
|
307
|
+
name: data,
|
|
308
|
+
content: {
|
|
309
|
+
meta: sys.gen.nako_func[data],
|
|
310
|
+
func: Object.assign({}, sys.compiler.funclist[data], { fn: null })
|
|
311
|
+
}
|
|
312
|
+
})
|
|
313
|
+
} else {
|
|
314
|
+
throw new Error('指定した名前のユーザ関数もしくはグローバル変数がありません:' + data)
|
|
315
|
+
}
|
|
316
|
+
})
|
|
317
|
+
if (obj.length > 0) {
|
|
318
|
+
const msg = {
|
|
319
|
+
type: 'trans',
|
|
320
|
+
data: obj
|
|
321
|
+
}
|
|
322
|
+
work.postMessage(msg)
|
|
323
|
+
}
|
|
324
|
+
},
|
|
325
|
+
return_none: true
|
|
326
|
+
}
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
if (typeof (navigator) === 'object' && typeof (navigator.nako3) === 'object') {
|
|
330
|
+
navigator.nako3.addPluginObject('PluginWebWorker', PluginWebWorker)
|
|
331
|
+
}
|
|
332
|
+
if (typeof (module) === 'object') {
|
|
333
|
+
module.exports = PluginWebWorker
|
|
334
|
+
}
|