Skip to content

Commit 7b93d35

Browse files
committed
Merge branch 'Pathv2-Jumpgate-Itsatrap' of github.com:shdwjk/roll20-api-scripts into Pathv2-Jumpgate-Itsatrap
2 parents 996df69 + da1270d commit 7b93d35

File tree

9 files changed

+13819
-31
lines changed

9 files changed

+13819
-31
lines changed

Earthdawn (FASA Official) character sheet companion/03.330/Earthdawn.js

+13,048
Large diffs are not rendered by default.

Earthdawn (FASA Official) character sheet companion/script.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "Earthdawn by FASA character sheet companion",
33
"script": "Earthdawn.js",
4-
"version": "03.301",
5-
"previousversions": ["03.30","03.19","03.15","03.023","03.022","03.021","03.020","03.001","03.000","02.042","02.041","02.040","02.000","01.002","01.001","01.000"],
4+
"version": "03.330",
5+
"previousversions": ["03.301","03.30","03.19","03.15","03.023","03.022","03.021","03.020","03.001","03.000","02.042","02.041","02.040","02.000","01.002","01.001","01.000"],
66
"description": "The Roll20 \"Earthdawn by FASA character sheet companion\" API script is made to work with the \"Earthdawn by FASA\" character sheet and \"Earthdawn 4th Edition\" Compendium. It provides many features that automate and assist in many tasks. It is optimized for Earthdawn 4th edition and 1879 1st Edition, but currently has limited support for other editions.\r\r For more information please see [Earthdawn Sheet wiki page](https://wiki.roll20.net/Earthdawn_-_FASA_Official_V2).",
77
"authors": "Chris Dickey",
88
"roll20userid": "633707",

Its A Trap/src/main.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ var ItsATrap = (() => {
121121
* @param {Graphic} token
122122
*/
123123
function _checkTrapInteractions(token) {
124-
if(token.iatIgnoreToken)
124+
if(ignoreTokens[token.id])
125125
return;
126126

127127
// Objects on the GM layer don't set off traps.
@@ -649,10 +649,11 @@ var ItsATrap = (() => {
649649
// This is to prevent a bug related to dropping default tokens for characters
650650
// to the VTT, which sometimes caused traps to trigger as though the dropped
651651
// token has move.
652+
let ignoreTokens = {};
652653
on('add:graphic', token => {
653-
token.iatIgnoreToken = true;
654+
ignoreTokens[token.id] = true;
654655
setTimeout(() => {
655-
delete token.iatIgnoreToken;
656+
delete ignoreTokens[token.id];
656657
}, 1000);
657658
});
658659

Plugger/1.0.10/Plugger.js

+677
Large diffs are not rendered by default.

Plugger/Plugger.js

+24-21
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
Name : Plugger
44
GitHub : https://github.com/TimRohr22/Cauldron/tree/master/Plugger
55
Roll20 Contact : timmaugh
6-
Version : 1.0.9
7-
Last Update : 17 MAY 2024
6+
Version : 1.0.10
7+
Last Update : 8 OCT 2024
88
=========================================================
99
*/
1010
var API_Meta = API_Meta || {};
@@ -15,10 +15,10 @@ API_Meta.Plugger = { offset: Number.MAX_SAFE_INTEGER, lineCount: -1 };
1515

1616
const Plugger = (() => {
1717
const apiproject = 'Plugger';
18-
const version = '1.0.9';
18+
const version = '1.0.10';
1919
const schemaVersion = 0.1;
2020
API_Meta[apiproject].version = version;
21-
const vd = new Date(1715952845199);
21+
const vd = new Date(1728392407761);
2222
const versionInfo = () => {
2323
log(`\u0166\u0166 ${apiproject} v${API_Meta[apiproject].version}, ${vd.getFullYear()}/${vd.getMonth() + 1}/${vd.getDate()} \u0166\u0166 -- offset ${API_Meta[apiproject].offset}`);
2424
if (!state.hasOwnProperty(apiproject) || state[apiproject].version !== schemaVersion) {
@@ -361,13 +361,14 @@ const PluggerPlugins01 = (() => {
361361
return;
362362
};
363363

364-
const tickSplit = (s, ticks = ["'", "`", '"'], split = ['|', '#'], mark = '--') => {
364+
const tickSplit = (cmd, ticks = ["'", "`", '"'], split = ['|', '#'], mark = '--') => {
365365
const escapeRegExp = (string) => { return string.replace(/[.*+\-?^${}()|[\]\\]/g, '\\$&'); };
366366
let index = 0;
367367
let tokens = [];
368368
let markrx,
369369
openrx,
370-
splitrx;
370+
splitrx,
371+
markbase;
371372

372373
class ArgToken {
373374
constructor(type = '') {
@@ -380,10 +381,12 @@ const PluggerPlugins01 = (() => {
380381
if (
381382
split && Array.isArray(split) && split.length &&
382383
ticks && Array.isArray(ticks) && ticks.length &&
383-
s && typeof s === 'string' && s.length
384+
mark && typeof mark === 'string' && mark.length &&
385+
cmd && typeof cmd === 'string' && cmd.length
384386
) {
385-
markrx = new RegExp(`(?:^|\\s+)${escapeRegExp(mark).replace(/\s/g, '\\s')}(.+?)(?:${split.map(s => escapeRegExp(s)).join('|')})`, 'g');
386-
openrx = new RegExp(`^\\s+${escapeRegExp(mark).replace(/\s/g, '\\s')}`);
387+
markbase = `\\s+${escapeRegExp(mark).replace(/\s/g, '\\s')}`;
388+
markrx = new RegExp(`${markbase}(.+?)(?:${split.map(s => escapeRegExp(s)).join('|')}|(?=${markbase})|$)`, 'g');
389+
openrx = new RegExp(`^${markbase}`);
387390
splitrx = new RegExp(`^($|${split.map(s => escapeRegExp(s)).join('|')})`);
388391
return true;
389392
}
@@ -394,7 +397,7 @@ const PluggerPlugins01 = (() => {
394397
ticks.some(t => {
395398
let res;
396399
let rx = new RegExp(`^${escapeRegExp(t)}`);
397-
if ((res = rx.exec(s.slice(index))) !== null) {
400+
if ((res = rx.exec(cmd.slice(index))) !== null) {
398401
tick = t;
399402
index += res[0].length;
400403
return true;
@@ -407,12 +410,12 @@ const PluggerPlugins01 = (() => {
407410
let res;
408411
if (tick) {
409412
let tickrx = new RegExp(`^${escapeRegExp(tick)}`);
410-
if ((res = tickrx.exec(s.slice(index))) !== null) {
413+
if ((res = tickrx.exec(cmd.slice(index))) !== null) {
411414
index += res[0].length;
412415
}
413416
}
414-
if (index < s.length) {
415-
if ((res = splitrx.exec(s.slice(index))) !== null) {
417+
if (index < cmd.length) {
418+
if ((res = splitrx.exec(cmd.slice(index))) !== null) {
416419
index += res[0].length;
417420
}
418421
}
@@ -422,35 +425,35 @@ const PluggerPlugins01 = (() => {
422425
let tick = getTick();
423426
let rx;
424427
if (tick) {
425-
rx = new RegExp(`^.+?(?=$|${escapeRegExp(tick)})`);
428+
rx = new RegExp(`^.*?(?=$|${escapeRegExp(tick)})`);
426429
} else {
427-
rx = new RegExp(`^.+?(?=$|${split.map(s => escapeRegExp(s)).join('|')}|\\s+${escapeRegExp(mark).replace(/\s/g, '\\s')})`);
430+
rx = new RegExp(`^.+?(?=$|${split.map(s => escapeRegExp(s)).join('|')}|${markbase})`);
428431
}
429-
let res = rx.exec(s.slice(index));
432+
let res = rx.exec(cmd.slice(index));
430433
token.results.push(res[0]);
431434
index += res[0].length;
432-
if (index < s.length) {
435+
if (index < cmd.length) {
433436
transition(tick);
434437
}
435438
};
436439

437440
const getArg = () => {
438441
let res;
439442
markrx.lastIndex = 0;
440-
if ((res = markrx.exec(s.slice(index))) === null) {
441-
index = s.length;
443+
if ((res = markrx.exec(cmd.slice(index))) === null) {
444+
index = cmd.length;
442445
return;
443446
}
444447
let token = new ArgToken(res[1]);
445448
index += markrx.lastIndex;
446-
while (index < s.length && !openrx.test(s.slice(index))) {
449+
while (index < cmd.length && !openrx.test(cmd.slice(index))) {
447450
getPart(token);
448451
}
449452
tokens.push(token);
450453
};
451454

452455
if (validate()) {
453-
while (index < s.length) {
456+
while (index < cmd.length) {
454457
getArg();
455458
}
456459
return tokens;

Plugger/script.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "Plugger",
33
"script": "Plugger.js",
4-
"version": "1.0.9",
4+
"version": "1.0.10",
55
"description": "Plugger is a meta-script and part of the Meta-Toolbox. Plugger allows for scripts to be run from within the command lines that are inteded for other scripts, and it runs those scripts at meta-script priority (before the intended-recipient script receives the message). With only a few lines of modificadtions, scripts can be registered as plugins, which allows them to return information to the command line. By returning the data to the command line, Plugger ensures that the data is available to the intended-recipient script.\r\rFor more information, see the original thread in the API forum:\r\r[Plugger Forum Thread](https://app.roll20.net/forum/post/10005724/meta-script-plugger-give-scripts-and-plugins-zero-order-priority)\r\rOr read about the full set of meta-scripts available: \r\r[Meta Toolbox Forum Thread](https://app.roll20.net/forum/post/10005695/script-set-the-meta-toolbox)",
66
"authors": "timmaugh",
77
"roll20userid": "5962076",
@@ -17,6 +17,7 @@
1717
"1.0.5",
1818
"1.0.6",
1919
"1.0.7",
20-
"1.0.8"
20+
"1.0.8",
21+
"1.0.9"
2122
]
2223
}

Triggered Cleanup/script.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"name": "Triggered Cleanup",
33
"script": "Triggered Cleanup.js",
4-
"version": "1.0",
4+
"version": "1.1",
55
"previousversions": [],
6-
"description": "Originally designed for a specific table, this script was made with one-offs and LC/Westmarches in mind. Many APIs find difficulties in running scripts when numerous tokens are left on a table. This script removes all tokens linked to a character sheet when using the command [!cleanup] in the chat. It also deletes tokens when the linked character sheet is deleted. It will ignore any tokens on a map that has the word [bullpen] in the name (not case-sensitive)",
6+
"description": "Originally designed for a specific table, this script was made with one-offs and LCs/Westmarches in mind. Many APIs find difficulties in running scripts when numerous tokens are left on a table. This script removes all tokens linked to a character sheet when using the command [!cleanup] in the chat. It also deletes tokens when the linked character sheet is deleted. It will ignore any tokens on a map that has the word [bullpen] in the name (not case-sensitive)",
77
"authors": "Jeffrey Simons",
88
"roll20userid": "4069317",
99
"useroptions": [],
1010
"dependencies": [],
1111
"conflicts": []
12-
}
12+
}
+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Improved efficiency by reorganizing when certain calls were made.
2+
3+
Found that two findObjs calls were performed with every chat entry. This should now only trigger when the API command is used.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
/* This script wildelete all tokens that are linked to a character when entering [!cleanup] in the chat (not case-sensitive).
2+
The script will also delete tokens for character sheets that are deleted.
3+
The script will not delete any tokens on a map with the phrase "Bullpen" (not case sensitive) in the name.
4+
*/
5+
on('destroy:character',function(obj){
6+
log(obj.get('_id'))
7+
let tokens = findObjs({ type: 'graphic', represents: obj.get('_id') });
8+
const inMap = new Array()
9+
let maps = findObjs({type: 'page'})
10+
for (let i = 0; i < maps.length; i++) {
11+
if (maps[i].get('name').toLowerCase().includes('bullpen')){
12+
inMap.push(maps[i])
13+
}
14+
}
15+
for(let i = 0; i < tokens.length; i++){
16+
let flag = 1
17+
for(let j = 0; j < inMap.length; j++){
18+
if(tokens[i].get('_pageid')===inMap[j].get('_id')){
19+
log("inMap Name: " + inMap[j].get('name'))
20+
flag = 0
21+
}
22+
}
23+
if (flag){
24+
tokens[i].remove();
25+
}
26+
}
27+
})
28+
29+
on("chat:message", function(msg) {
30+
if(msg.content.toLowerCase() === "!cleanup"){
31+
let tokens = findObjs({ type: 'graphic' });
32+
const inMap = new Array()
33+
let maps = findObjs({type: 'page'})
34+
for (let i = 0; i < maps.length; i++) {
35+
if (maps[i].get('name').toLowerCase().includes('bullpen')){
36+
inMap.push(maps[i])
37+
}
38+
}
39+
for(let i = 0; i < tokens.length; i++){
40+
log("Token: " + tokens[i].get('_id') + " & " + tokens[i].get('represents'))
41+
let flag = 1
42+
for(let j = 0; j < inMap.length; j++){
43+
if(tokens[i].get('represents') === ''){
44+
flag = 0
45+
}
46+
if(tokens[i].get('_pageid')===inMap[j].get('_id')){
47+
flag = 0
48+
}
49+
}
50+
if (flag){
51+
tokens[i].remove();
52+
}
53+
}
54+
}
55+
})

0 commit comments

Comments
 (0)