diep_Shortcut

try to take over the world!

Verzia zo dňa 02.01.2023. Pozri najnovšiu verziu.

Tento skript by nemal byť nainštalovaný priamo. Je to knižnica pre ďalšie skripty, ktorú by mali používať cez meta príkaz // @require https://update.greasyfork.org/scripts/456843/1134295/diep_Shortcut.js

// ==UserScript==
// @name         diep_Shortcut
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       tariteur
// @match        https://diep.io/
// @icon         https://www.google.com/s2/favicons?sz=64&domain=diep.io
// @grant        none
// ==/UserScript==
(() => {
    const _window = 'undefined' == typeof unsafeWindow ? window : unsafeWindow;
    if (_window.diep_Shortcut) return;

    //diepAPI start
    var diep_Shortcut;
    /******/ (() => {
        // webpackBootstrap
        /******/ 'use strict';
        /******/ // The require scope
        /******/ var __webpack_require__ = {};
        /******/
        /************************************************************************/
        /******/ /* webpack/runtime/define property getters */
        /******/ (() => {
            /******/ // define getter functions for harmony exports
            /******/ __webpack_require__.d = (exports, definition) => {
                /******/ for (var key in definition) {
                    /******/ if (__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
                        /******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
                        /******/
                    }
                    /******/
                }
                /******/
            };
            /******/
        })();
        /******/
        /******/ /* webpack/runtime/hasOwnProperty shorthand */
        /******/ (() => {
            /******/ __webpack_require__.o = (obj, prop) => Object.prototype.hasOwnProperty.call(obj, prop);
            /******/
        })();
        /******/
        /******/ /* webpack/runtime/make namespace object */
        /******/ (() => {
            /******/ // define __esModule on exports
            /******/ __webpack_require__.r = (exports) => {
                /******/ if (typeof Symbol !== 'undefined' && Symbol.toStringTag) {
                    /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
                    /******/
                }
                /******/ Object.defineProperty(exports, '__esModule', { value: true });
                /******/
            };
            /******/
        })();
        /******/
        /************************************************************************/
        var __webpack_exports__ = {};
        // ESM COMPAT FLAG
        __webpack_require__.r(__webpack_exports__);

        // EXPORTS
        __webpack_require__.d(__webpack_exports__, {
            core: () => /* reexport */ core_namespaceObject,
        });

        // NAMESPACE OBJECT: ./src/core/index.ts
        var core_namespaceObject = {};
        __webpack_require__.r(core_namespaceObject);
        __webpack_require__.d(core_namespaceObject, {
            Canvas: () => Canvas,
        });

////////////////////pink////////violet/////bleu///////jaune//////rouge//////vert///////bleu clair//gris////
const textShadow = 'text-shadow:black 0.18vh 0, black -0.18vh 0, black 0 -0.18vh, black 0 0.18vh, black 0.18vh 0.18vh, black -0.18vh 0.18vh, black 0.18vh -0.18vh, black -0.18vh -0.18vh, black 0.09vh 0.18vh, black -0.09vh 0.18vh, black 0.09vh -0.18vh, black -0.09vh -0.18vh, black 0.18vh 0.09vh, black -0.18vh 0.09vh, black 0.18vh -0.09vh, black -0.18vh -0.09vh'
            class CANVAS {
            GUI_create(id, Class, text, x, y,width, height, color, border, fontSize, callback, bottom, right) {
                // Créer l'élément de l'interface graphique
                const guiElement = document.createElement('d-button');
                guiElement.id = id;
                guiElement.classList.add(Class);
                guiElement.innerHTML = text;
                guiElement.style.top = x+"%";
                guiElement.style.left = y+"%";
                guiElement.border = border;
                guiElement.style.fontSize = fontSize+"vw";
                guiElement.bg = color;
                guiElement.textBorder = fontSize;
                guiElement.textalign = 'center';
                guiElement.style.width = width+"vw";
                guiElement.style.height = height+"vh";
                if (bottom && right) {
                guiElement.style.position = 'fixed';
                guiElement.style.bottom = bottom;
                guiElement.style.right = right ;
                } else {
                guiElement.style.position = 'absolut';
                }
                guiElement.addEventListener('click', callback);
                // Append the GUI element to the body of the document
                document.body.appendChild(guiElement);
            }
            GUI_create_slider(id, min, max, step, value, x, y, width, height, callback) {
                // Créer l'élément de l'interface graphique
                const guiElement = document.createElement('input');
                guiElement.id = id;
                guiElement.type = "range";
                guiElement.min = min;
                guiElement.max = max;
                guiElement.step = step;
                guiElement.value = value;

                guiElement.style.top = x;
                guiElement.style.left = y;
                guiElement.style.width = width+"vw";
                guiElement.style.height = height+"vh";
                guiElement.style.position = 'absolute';

                guiElement.addEventListener('input', callback);
                // Append the GUI element to the body of the document
                document.body.appendChild(guiElement);
            }
            GUI_changeName(id, text) {
                const element = document.getElementById(id);
                element.innerHTML = text;
            }
            GUI_hide_or_showID(id, truefalse) {
                const element = document.getElementById(id);
                if (truefalse == undefined) {
                if (element.style.display === 'none') {
                  element.style.display = 'block';
                } else {
                element.style.display = 'none';
                }
             } else if (truefalse == true) {
             element.style.display = 'block';
             } else if (truefalse == false) {
             element.style.display = 'none';
             }
            }
            GUI_hide_or_showClass(Class, truefalse) {
              const elements = document.querySelectorAll(Class);
              for (const element of elements) {
              if (truefalse == undefined) {
              if (element.style.display === 'none') {
                  element.style.display = 'block';
                } else {
                element.style.display = 'none';
                 }
             } else if (truefalse == true) {
             element.style.display = 'block';
             } else if (truefalse == false) {
             element.style.display = 'none';
             }
            }
            }
            GUI_delete(id) {
                const element = document.getElementById(id);
                if (element) {
                element.parentNode.removeChild(element);
                }
            }
           drawText(canvasType , x, y, text1, text2, color, size, visibility, StrokeStyle, strokeStyleColor) {
                canvasType.save();
                canvasType.textAlign = "center"
                canvasType.font = `${size}px Ubuntu`;
                canvasType.fillStyle = color;
                canvasType.globalAlpha = visibility;
                canvasType.fillText(text1, x, y)
                if (StrokeStyle) {
                canvasType.strokeStyle = strokeStyleColor;
                canvasType.strokeText(text1, x, y);
                }
                canvasType.restore();
            }
            drawLine(canvasType, xy, XY, color, visibility) {
                canvasType.save();
                canvasType.fillStyle = color;
                canvasType.globalAlpha = visibility;
                canvasType.beginPath();
                canvasType.moveTo(xy.x, xy.y);
                canvasType.lineTo(XY.x, XY.y);
                canvasType.stroke();
                canvasType.restore();
            }

            drawPoint(canvasType, xy, radius, color, visibility, StrokeStyle, strokeStyleColor, strokeStyleSize) {
                canvasType.save();
                canvasType.fillStyle = color;
                canvasType.globalAlpha = visibility;
                canvasType.beginPath();
                canvasType.arc(xy.x, xy.y, radius, 0, 2 * Math.PI);
                canvasType.fill();
                if (StrokeStyle) {
                canvasType.lineWidth = strokeStyleSize;
                canvasType.strokeStyle = strokeStyleColor;
                canvasType.stroke();
                }
                canvasType.restore();
            }

            drawSquar(canvasType, x1, y1, x2, y2, size, color, visibility, StrokeStyle, strokeStyleColor, strokeStyleSize) {
                canvasType.save();
                canvasType.fillStyle = color;
                canvasType.globalAlpha = visibility;
                canvasType.fillRect(x1, y1, x2 - x1, y2 - y1);
                if (StrokeStyle) {
                canvasType.lineWidth = strokeStyleSize;
                canvasType.strokeStyle = strokeStyleColor;
                canvasType.stroke();
                }
                canvasType.restore();
            }
        }
        const Canvas = new CANVAS(); // CONCATENATED MODULE: ./src/tools/index.ts // CONCATENATED MODULE: ./src/types/index.ts // CONCATENATED MODULE: ./src/index.ts

        // const shortcut = new Shortcut();
        diep_Shortcut = __webpack_exports__;
        /******/
    })();
    //diepAPI end

    _window.diep_Shortcut = diep_Shortcut;
})();