MyBot Compiler

MyBot Pixel Place Compile Client

此脚本不应直接安装,它是一个供其他脚本使用的外部库。如果您需要使用该库,请在脚本元属性加入:// @require https://update.gf.qytechs.cn/scripts/479131/1275798/MyBot%20Compiler.js

  1. // ==UserScript==
  2. // @name MyBot Compiler
  3. // @description MyBot Pixel Place Compile Client
  4. // @version 1.6.2
  5. // @author SamaelWired
  6. // @namespace https://gf.qytechs.cn/tr/users/976572
  7. // @match https://pixelplace.io/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=pixelplace.io
  9. // @license MIT
  10. // @grant none
  11. // @run-at document-start
  12. // ==/UserScript==
  13. (() => {
  14. const MyBot = window.MyBot || {modules: {}};
  15. window.MyBot = MyBot;
  16. if ('Compiler' in MyBot.modules) return;
  17.  
  18. const module = {};
  19. module.args = {};
  20. module.intervals = [];
  21. module.main = null;
  22.  
  23. module.config = ({timer, packetSpeed, packetCount}) => {
  24. if (module.main) {
  25. module.args.timer.clearInterval(module.main[0]);
  26. module.main = [
  27. timer.setInterval(module.main[1]),
  28. module.main[1]
  29. ];
  30. }
  31.  
  32. if (module.intervals.length) {
  33. module.intervals = module.intervals.map(([id, func, ws]) => {
  34. module.args.timer.clearInterval(id);
  35. ws._inter = timer.setInterval(func, packetCount > 0 ? 0 : 1e3/packetSpeed);
  36. return [ws._inter, func, ws];
  37. });
  38. }
  39.  
  40. Object.assign(module.args, {timer, packetSpeed, packetCount});
  41. };
  42.  
  43. module.compile = () => {
  44. const {timer, packetCount, packetSpeed} = module.args;
  45. Object.assign(MyBot, {
  46. ws: null,
  47. map: {},
  48. onclick: null,
  49. queueId: 0,
  50. queue: [],
  51. pos: 0,
  52. lock: false,
  53. last: [0, 0, 255],
  54. set(x, y, p) {
  55. MyBot.queue.push([x, y, p, MyBot.queueId++]);
  56. },
  57. _id: 0,
  58. _posSocket: 0,
  59. sockets: [],
  60. getSocket() {
  61. let i = 0;
  62. let ws = null;
  63. while (i++ < MyBot.sockets.length) {
  64. const _ws = MyBot.sockets[MyBot._posSocket++];
  65. if (MyBot._posSocket > MyBot.sockets.length-1) MyBot._posSocket = 0;
  66. if (!_ws) continue;
  67. if (_ws.ignore) continue;
  68. if (MyBot.config.packetCount > 0) {
  69. if (_ws.count > 0) _ws.count--;
  70. else continue;
  71. } else if (!_ws.can || !_ws.ready) continue;
  72.  
  73. ws = _ws;
  74. break;
  75. }
  76. return ws;
  77. }
  78. });
  79.  
  80. let progress = false;
  81. const mainFunc = () => {
  82. if (progress) return;
  83. progress = true;
  84. while (MyBot.pos < MyBot.queue.length) {
  85. const [x, y, p, i] = MyBot.queue[MyBot.pos++];
  86. if (p === 255 || MyBot.map.get(x, y) === 255) {
  87. MyBot.queue.splice(--MyBot.pos, 1);
  88. continue;
  89. }
  90. if (MyBot.map.get(x, y) === p) continue;
  91. const ws = MyBot.getSocket();
  92. if (!ws) {
  93. MyBot.pos--;
  94. progress = false;
  95. return;
  96. }
  97. ws.can = false;
  98. MyBot.CWSS.send.call(ws, `42["p",[${x},${y},${p},${1+MyBot.pos}]]`);
  99. continue;
  100. }
  101. if (MyBot.lock && MyBot.pos > MyBot.queue.length-1) {
  102. MyBot.pos = 0;
  103. progress = false;
  104. return;
  105. }
  106. MyBot.pos = 0;
  107. MyBot.queue = [];
  108. MyBot.queueId = 0;
  109. progress = false;
  110. };
  111. module.main = [timer.setInterval(mainFunc), mainFunc];
  112.  
  113. MyBot.modules.MapLoader.subscribe((module, map) => {
  114. Object.assign(MyBot.map, map);
  115. MyBot.map.pixels = new Uint8Array(map.pixels);
  116. MyBot.serverId = map.serverId;
  117. });
  118.  
  119. module.hook = {
  120. priority: 0,
  121. open() {
  122. if (!this.username) {
  123. MyBot.ws = this;
  124. this.addEventListener('close', e=>{
  125. MyBot.ws = null;
  126. });
  127. }
  128.  
  129. MyBot.sockets.push(this);
  130. this.id = MyBot._id++;
  131. const func = () => this.can = true;
  132.  
  133. this.addEventListener('close', () => {
  134. const el = module.intervals.find(([id, f, ws]) => f == func);
  135. module.intervals.splice(module.intervals.indexOf(el), 1);
  136. module.args.timer.clearInterval(this._inter);
  137. MyBot.sockets.splice(MyBot.sockets.indexOf(this),1);
  138. });
  139. this.can = true;
  140. this._inter = module.args.timer.setInterval(func, packetCount > 0 ? 0 : 1e3/packetSpeed);
  141. module.intervals.push([this._inter, func, this]);
  142. return arguments;
  143. },
  144.  
  145. message({data}) {
  146. if (MyBot.ws != this) return arguments;
  147.  
  148. const message = JSON.parse(data.split(/(?<=^\d+)(?=[^\d])/)[1] || '[]');
  149. if (!message.length) return arguments;
  150.  
  151. const [event, json] = message;
  152. if (event == 'canvas') {
  153. json.map(p => MyBot.map.set(...p));
  154. MyBot.ws.ready = true;
  155. }
  156. if (event == 'p') {
  157. json.map(p => MyBot.map.set(...p));
  158. this.count = MyBot.config.packetCount;
  159. }
  160.  
  161. return arguments;
  162. },
  163.  
  164. send(data) {
  165. if (MyBot.ws != this) return arguments;
  166.  
  167. const message = JSON.parse(data.split(/(?<=^\d+)(?=[^\d])/)[1] || '[]');
  168. if (!message.length) return arguments;
  169.  
  170. const [event, json] = message;
  171. if (event == 'p') {
  172. const [x, y, pixel] = json;
  173. MyBot.last = [x, y, pixel];
  174. if (MyBot.onclick && MyBot.onclick(x, y, pixel) === false) return;
  175. }
  176.  
  177. return arguments;
  178. }
  179. };
  180. MyBot.CWSS.setHook(module.hook);
  181. };
  182.  
  183. MyBot.modules.Compiler = module;
  184. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址