event.js
4.51 KB
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
/**
* Visual Blocks Language
*
* Copyright 2021 openblock.cc.
* https://github.com/openblockcc/openblock-blocks
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
'use strict';
goog.provide('Blockly.Python.event');
goog.require('Blockly.Python');
Blockly.Python['event_whenmicrobitbegin'] = function(block) {
Blockly.Python.imports_["microbit"] = "from microbit import *";
var code = "";
var nextBlock = block.nextConnection && block.nextConnection.targetBlock();
if (!nextBlock) {
code += "pass\n";
}
return code;
};
Blockly.Python['event_whenmicrobitbuttonpressed'] = function(block) {
Blockly.Python.imports_["microbit"] = "from microbit import *";
var key = block.getFieldValue('KEY_OPTION');
var i = '';
while (Blockly.Python.loops_["event_whenmicrobitbegin" + key + i]) {
if (i === '') {
i = 1;
} else {
i++;
}
}
Blockly.Python.loops_["event_whenmicrobitbegin" + key + i] = "if button_" + key + ".is_pressed():\n" +
Blockly.Python.INDENT + Blockly.Python.INDENT + "on_button_" + key + i + "()";
var code = "def on_button_" + key + i + "():\n";
var nextBlock = block.nextConnection && block.nextConnection.targetBlock();
if (!nextBlock) {
code += Blockly.Python.INDENT + "pass\n";
} else {
var variablesName = [];
for (var x in Blockly.Python.variables_) {
variablesName.push(Blockly.Python.variables_[x].slice(0, Blockly.Python.variables_[x].indexOf('=') - 1));
}
if (variablesName.length !== 0) {
code += Blockly.Python.INDENT + "global " + variablesName.join(', ') + "\n";
}
code = Blockly.Python.scrub_(block, code);
}
Blockly.Python.libraries_["def on_button_" + key + i] = code;
return null;
};
Blockly.Python['event_whenmicrobitpinbeingtouched'] = function(block) {
Blockly.Python.imports_["microbit"] = "from microbit import *";
var pin = block.getFieldValue('PIN_OPTION');
var i = '';
while (Blockly.Python.loops_["event_whenmicrobitpinbeingtouched" + pin + i]) {
if (i === '') {
i = 1;
} else {
i++;
}
}
Blockly.Python.loops_["event_whenmicrobitpinbeingtouched" + pin + i] = "if pin" + pin + ".is_pressed():\n" +
Blockly.Python.INDENT + Blockly.Python.INDENT + "on_pin" + pin + i + "()";
var code = "def on_pin" + pin + i + "():\n";
var nextBlock = block.nextConnection && block.nextConnection.targetBlock();
if (!nextBlock) {
code += Blockly.Python.INDENT + "pass\n";
} else {
var variablesName = [];
for (var x in Blockly.Python.variables_) {
variablesName.push(Blockly.Python.variables_[x].slice(0, Blockly.Python.variables_[x].indexOf('=') - 1));
}
if (variablesName.length !== 0) {
code += Blockly.Python.INDENT + "global " + variablesName.join(', ') + "\n";
}
code = Blockly.Python.scrub_(block, code);
}
Blockly.Python.libraries_["def on_pin" + pin + i] = code;
return null;
};
Blockly.Python['event_whenmicrobitgesture'] = function(block) {
Blockly.Python.imports_["microbit"] = "from microbit import *";
var sta = block.getFieldValue('GESTURE_OPTION');
var i = '';
while (Blockly.Python.loops_["event_whenmicrobitgesture" + sta + i]) {
if (i === '') {
i = 1;
} else {
i++;
}
}
Blockly.Python.loops_["event_whenmicrobitgesture" + sta + i] = "if accelerometer.was_gesture('" + sta + "'):\n" +
Blockly.Python.INDENT + Blockly.Python.INDENT + "on_" + sta + i + "()";
var code = "def on_" + sta + i + "():\n";
var nextBlock = block.nextConnection && block.nextConnection.targetBlock();
if (!nextBlock) {
code += Blockly.Python.INDENT + "pass\n";
} else {
var variablesName = [];
for (var x in Blockly.Python.variables_) {
variablesName.push(Blockly.Python.variables_[x].slice(0, Blockly.Python.variables_[x].indexOf('=') - 1));
}
if (variablesName.length !== 0) {
code += Blockly.Python.INDENT + "global " + variablesName.join(', ') + "\n";
}
code = Blockly.Python.scrub_(block, code);
}
Blockly.Python.libraries_["def on_" + sta + i] = code;
return null;
};