admin管理员组文章数量:1345135
why my custom extension for turbowarp doesnt work? so im trying to make a numeral encoder/decoder for turbowarp and im having problem that my extension not loading successfully into turbo warp when importing it. this is also question on how to make turbowarp extension since i just started creating turbowarp extesions.
const numeralEncoder = {
id: 'numeralEncoder',
name: 'Numeral Encoder/Decoder',
blocks: [
{
opcode: 'encodeToNumbers',
blockType: 'reporter',
text: 'encode [text] to numbers',
arguments: {
text: {
type: 'string',
defaultValue: 'Hello'
}
},
func: function(args) {
return this.encodeToNumbers(args.text);
}
},
{
opcode: 'decodeFromNumbers',
blockType: 'reporter',
text: 'decode [numbers] to text',
arguments: {
numbers: {
type: 'string',
defaultValue: '72,101,108,108,111'
}
},
func: function(args) {
return this.decodeFromNumbers(args.numbers);
}
}
],
encodeToNumbers: function(text) {
const asciiValues = [];
for (let i = 0; i < text.length; i++) {
asciiValues.push(text.charCodeAt(i));
}
return asciiValues.join(',');
},
decodeFromNumbers: function(numbers) {
const asciiValues = numbers.split(',').map(Number);
let decodedString = '';
for (let i = 0; i < asciiValues.length; i++) {
decodedString += String.fromCharCode(asciiValues[i]);
}
return decodedString;
}
};
Extension.register(numeralEncoder);
本文标签: javascriptWhy my custom extension for turbowarp doesnt workStack Overflow
版权声明:本文标题:javascript - Why my custom extension for turbowarp doesnt work? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743772298a2536341.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论