Base class for Greasy Fork plugins for Waze Map Editor
Script này sẽ không được không được cài đặt trực tiếp. Nó là một thư viện cho các script khác để bao gồm các chỉ thị meta
// @require https://update.greatest.deepsurf.us/scripts/450221/1804989/WME-Base.js
// ==UserScript==
// @name WME Base
// @version 0.6.1
// @description Base class for Greasy Fork plugins for Waze Map Editor
// @license MIT License
// @author Anton Shevchuk
// @namespace https://greatest.deepsurf.us/users/227648-anton-shevchuk
// @supportURL https://github.com/AntonShevchuk/wme-base/issues
// @match https://*.waze.com/editor*
// @match https://*.waze.com/*/editor*
// @exclude https://*.waze.com/user/editor*
// @icon https://t3.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=https://anton.shevchuk.name&size=64
// @grant none
// ==/UserScript==
(function () {
'use strict';
class WMEBase {
constructor(name, settings = null) {
this._helper = null;
this.id = name.toLowerCase().replace(/\s+/g, '-');
this.name = name;
this.wmeSDK = getWmeSdk({
scriptId: this.id,
scriptName: this.name,
});
if (settings && settings instanceof Settings) {
this.settings = settings;
}
else if (settings) {
this.settings = new Settings(name, settings);
}
else {
this.settings = new Settings(name, {});
}
jQuery(document)
.on('none.wme', (e) => this.onNone(e))
.on('segment.wme', (e, el, t) => this.onSegment(e, el, t))
.on('segments.wme', (e, el, t) => this.onSegments(e, el, t))
.on('node.wme', (e, el, t) => this.onNode(e, el, t))
.on('nodes.wme', (e, el, t) => this.onNodes(e, el, t))
.on('venue.wme', (e, el, t) => this.onVenue(e, el, t))
.on('venues.wme', (e, el, t) => this.onVenues(e, el, t))
.on('point.wme', (e, el, t) => this.onPoint(e, el, t))
.on('place.wme', (e, el, t) => this.onPlace(e, el, t))
.on('residential.wme', (e, el, t) => this.onResidential(e, el, t));
jQuery(window).on('beforeunload', (e) => this.onBeforeUnload(e));
}
// --- WMEUIHelper (lazy) ---
get helper() {
if (!this._helper) {
this._helper = new WMEUIHelper(this.name);
}
return this._helper;
}
// --- Logging ---
log(message, ...args) {
console.log('%c' + this.name + ': %c' + message, 'color: #0DAD8D; font-weight: bold', 'color: dimgray; font-weight: normal', ...args);
}
warn(message, ...args) {
console.warn('%c' + this.name + ': %c' + message, 'color: #DAA520; font-weight: bold', 'color: dimgray; font-weight: normal', ...args);
}
error(message, ...args) {
console.error('%c' + this.name + ': %c' + message, 'color: #FF4444; font-weight: bold', 'color: dimgray; font-weight: normal', ...args);
}
group(message, ...args) {
console.groupCollapsed('%c' + this.name + ': %c' + message, 'color: #0DAD8D; font-weight: bold', 'color: dimgray; font-weight: normal', ...args);
}
groupEnd() {
console.groupEnd();
}
// --- Shortcuts ---
createShortcut(id, description, keys, callback) {
const shortcutId = this.id + '-' + id;
let effective;
if (this.settings && this.settings.has('shortcuts', shortcutId)) {
// getAllShortcuts() returns numeric format "mod,keyCode" (e.g. "4,56");
// createShortcut() requires combo format "A+8". Convert on read-back.
effective = this.normalizeShortcutKeys(this.settings.get('shortcuts', shortcutId));
}
else {
effective = keys;
}
// The SDK requires the prior registration to be removed before
// re-creating with the same id. isShortcutRegistered is unreliable,
// so try delete unconditionally and swallow the "not found" error.
try {
this.wmeSDK.Shortcuts.deleteShortcut({ shortcutId });
}
catch (e) {
// expected on first load
}
const shortcut = {
callback: callback,
description: description,
shortcutId: shortcutId,
shortcutKeys: effective,
};
if (effective && this.wmeSDK.Shortcuts.areShortcutKeysInUse({ shortcutKeys: effective })) {
this.warn('Shortcut "' + effective + '" already in use');
shortcut.shortcutKeys = null;
}
this.wmeSDK.Shortcuts.createShortcut(shortcut);
}
// Convert WME's stored numeric format ("4,56" = Alt+8) to the combo
// format createShortcut expects ("A+8"). Pass through combo strings and
// null unchanged.
normalizeShortcutKeys(keys) {
if (keys == null)
return null;
const str = String(keys);
if (!/^\d+,-?\d+$/.test(str))
return str;
const [modStr, codeStr] = str.split(',');
const mod = parseInt(modStr, 10);
const code = parseInt(codeStr, 10);
if (isNaN(mod) || isNaN(code) || code < 0)
return null;
let mods = '';
if (mod & 4)
mods += 'A';
if (mod & 1)
mods += 'C';
if (mod & 2)
mods += 'S';
let char;
if (code >= 48 && code <= 57)
char = String.fromCharCode(code);
else if (code >= 65 && code <= 90)
char = String.fromCharCode(code).toLowerCase();
else
char = String(code);
return mods ? mods + '+' + char : char;
}
// --- Event handlers ---
onBeforeUnload(event) {
if (!this.settings)
return;
try {
const prefix = this.id + '-';
const all = this.wmeSDK.Shortcuts.getAllShortcuts() || [];
for (const sc of all) {
if (!sc.shortcutId || !sc.shortcutId.startsWith(prefix))
continue;
this.settings.set(['shortcuts', sc.shortcutId], sc.shortcutKeys);
}
}
catch (e) {
this.warn('Failed to persist shortcuts', e);
}
this.settings.save();
}
onNone(event) { }
onSegment(event, element, model) { }
onSegments(event, element, models) { }
onNode(event, element, model) { }
onNodes(event, element, models) { }
onVenue(event, element, model) { }
onVenues(event, element, models) { }
onPlace(event, element, model) { }
onPoint(event, element, model) { }
onResidential(event, element, model) { }
// --- Permissions ---
canEditSegment(model) {
return this.wmeSDK.DataModel.Segments.isRoadTypeDrivable({ roadType: model.roadType })
&& this.wmeSDK.DataModel.Segments.hasPermissions({ segmentId: model.id });
}
canEditVenue(model) {
return this.wmeSDK.DataModel.Venues.hasPermissions({ venueId: model.id });
}
// --- Selection ---
getSelection() {
return this.wmeSDK.Editing.getSelection() || null;
}
// --- Venues ---
getAllVenues(except = []) {
const venues = this.wmeSDK.DataModel.Venues.getAll();
const rank = this.wmeSDK.State.getUserInfo().rank;
return venues
.filter((venue) => venue.lockRank <= rank)
.filter((venue) => !except.length || except.indexOf(venue.categories[0]) === -1);
}
getSelectedVenue() {
return this.getSelectedVenues()?.[0] ?? null;
}
getSelectedVenues() {
const selection = this.getSelection();
if (!selection || selection.objectType !== 'venue') {
return [];
}
return selection.ids.map((id) => this.wmeSDK.DataModel.Venues.getById({ venueId: id }));
}
getSelectedVenueAddress() {
const venue = this.getSelectedVenue();
if (!venue)
return null;
return this.wmeSDK.DataModel.Venues.getAddress({ venueId: venue.id });
}
// --- Segments ---
getAllSegments(except = []) {
const segments = this.wmeSDK.DataModel.Segments.getAll();
const rank = this.wmeSDK.State.getUserInfo().rank;
return segments
.filter((segment) => segment.lockRank <= rank)
.filter((segment) => !except.length || except.indexOf(segment.roadType) === -1);
}
getSelectedSegment() {
return this.getSelectedSegments()?.[0] ?? null;
}
getSelectedSegments() {
const selection = this.getSelection();
if (!selection || selection.objectType !== 'segment') {
return [];
}
return selection.ids.map((id) => this.wmeSDK.DataModel.Segments.getById({ segmentId: id }));
}
getSelectedSegmentAddress() {
const segment = this.getSelectedSegment();
if (!segment)
return null;
return this.wmeSDK.DataModel.Segments.getAddress({ segmentId: segment.id });
}
// --- Nodes ---
getAllNodes(except = []) {
const nodes = this.wmeSDK.DataModel.Nodes.getAll();
if (!except.length)
return nodes;
return nodes.filter((node) => except.indexOf(node.id) === -1);
}
getSelectedNode() {
return this.getSelectedNodes()?.[0] ?? null;
}
getSelectedNodes() {
const selection = this.getSelection();
if (!selection || selection.objectType !== 'node') {
return [];
}
return selection.ids.map((id) => this.wmeSDK.DataModel.Nodes.getById({ nodeId: id }));
}
}
Object.assign(window, { WMEBase });
})();