Skip to content

Commit 04f6d60

Browse files
committed
Updated 1 Scripts
1 parent 2c6c50d commit 04f6d60

File tree

3 files changed

+313
-150
lines changed

3 files changed

+313
-150
lines changed

PCPP/0.3.3/PCPP.js

+161
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,161 @@
1+
// Github: https://github.com/shdwjk/Roll20API/blob/master/PCPP/PCPP.js
2+
// By: The Aaron, Arcane Scriptomancer
3+
// Contact: https://app.roll20.net/users/104025/the-aaron
4+
5+
var PCPP = PCPP || (function() {
6+
'use strict';
7+
8+
var version = '0.3.3',
9+
lastUpdate = 1530976126,
10+
schemaVersion = 0.1,
11+
12+
powerCardFunction = ()=>{},
13+
14+
checkInstall = function() {
15+
log('-=> PCPP v'+version+' <=- ['+(new Date(lastUpdate*1000))+']');
16+
17+
if("undefined" !== typeof PowerCard && _.isFunction(PowerCard.Process)) {
18+
powerCardFunction = PowerCard.Process;
19+
} else if("undefined" !== typeof PowerCardScript && _.isFunction(PowerCardScript.Process)) {
20+
powerCardFunction = PowerCardScript.Process;
21+
} else if("undefined" !== typeof PowerCards && _.isFunction(PowerCards.Process)) {
22+
powerCardFunction = PowerCards.Process;
23+
} else {
24+
log('No Powercard Script Found.');
25+
}
26+
},
27+
28+
handleInput = function(msg_orig) {
29+
var msg=_.clone(msg_orig),
30+
args,
31+
postMap,
32+
preMap={},
33+
expr,
34+
player_obj = getObj("player", msg.playerid);
35+
36+
if (msg.type !== "api") {
37+
return;
38+
}
39+
40+
args = msg.content.split(/\s+/);
41+
switch(args[0]) {
42+
case '!pcpp':
43+
44+
// Get the API Chat Command
45+
msg.who = msg.who.replace(" (GM)", "");
46+
msg.content = msg.content.replace("(GM) ", "");
47+
msg.content = msg.content.replace(/<br\/>\n/g, ' ').replace(/({{(.*?)}})/g," $2 ");
48+
49+
postMap = _.reduce(
50+
msg.content.match(/\[#\[(.*?)\]#\]/g),
51+
function(gmap,g){
52+
var attrmap=_.reduce(g.match(/@#\{(.*?)\}/g), function(amap,a){
53+
var parts=a.match(/@#\{([^|]*)\|([^|]*)\|?(.*)?\}/),
54+
character = findObjs({
55+
type:'character',
56+
name: parts[1]
57+
})[0],
58+
attr;
59+
60+
amap[a]=0;
61+
if(character) {
62+
attr = findObjs({
63+
type: 'attribute',
64+
characterid: character.id,
65+
name: parts[2]
66+
})[0];
67+
if(attr) {
68+
amap[a]=attr.get(parts[3]==='max'?'max':'current');
69+
}
70+
}
71+
return amap;
72+
},{});
73+
attrmap['[#[']='[[';
74+
attrmap[']#]']=']]';
75+
gmap[g]=_.reduce(attrmap,function(gmemo,v,k){
76+
return gmemo.replace(k,v);
77+
},g);
78+
return gmap;
79+
},{});
80+
81+
postMap = _.reduce(
82+
msg.content.match(/\[=\[(.*?)\]=\]/g),
83+
function(gmap,g){
84+
var attrmap=_.reduce(g.match(/@#\{(.*?)\}/g), function(amap,a){
85+
var parts=a.match(/@#\{([^|]*)\|([^|]*)\|?(.*)?\}/),
86+
character = findObjs({
87+
type:'character',
88+
name: parts[1]
89+
})[0],
90+
attr;
91+
92+
amap[a]=0;
93+
if(character) {
94+
attr = findObjs({
95+
type: 'attribute',
96+
characterid: character.id,
97+
name: parts[2]
98+
})[0];
99+
if(attr) {
100+
amap[a]=attr.get(parts[3]==='max'?'max':'current');
101+
}
102+
}
103+
return amap;
104+
},{});
105+
attrmap['[=[']='[[';
106+
attrmap[']=]']=']]';
107+
preMap[g]=true;
108+
gmap[g]=_.reduce(attrmap,function(gmemo,v,k){
109+
return gmemo.replace(k,v);
110+
},g);
111+
return gmap;
112+
},postMap);
113+
114+
expr=_.reduce(postMap,function(m,g){return m+g;},'').replace(/\s+/g,'');
115+
116+
if(expr) {
117+
sendChat('',expr,function(res){
118+
var num = (msg.inlinerolls && msg.inlinerolls.length) || 0,
119+
extraInlineRolls = _.toArray(res[0].inlinerolls);
120+
msg.inlinerolls = msg.inlinerolls || [];
121+
122+
msg.content=_.reduce(postMap,function(msgCon,v,k){
123+
var roll = extraInlineRolls.shift();
124+
if(preMap[k]) {
125+
return msgCon.replace(k, ((roll.results && roll.results.total) || '') );
126+
}
127+
128+
msg.inlinerolls.push(roll);
129+
return msgCon.replace(k,'$[['+(num++)+']]');
130+
},msg.content);
131+
132+
powerCardFunction(msg,player_obj);
133+
});
134+
} else {
135+
powerCardFunction(msg,player_obj);
136+
}
137+
138+
break;
139+
}
140+
},
141+
142+
registerEventHandlers = function() {
143+
on('chat:message', handleInput);
144+
};
145+
146+
return {
147+
CheckInstall: checkInstall,
148+
RegisterEventHandlers: registerEventHandlers
149+
};
150+
151+
}());
152+
153+
on('ready',function() {
154+
'use strict';
155+
156+
PCPP.CheckInstall();
157+
PCPP.RegisterEventHandlers();
158+
});
159+
160+
161+

0 commit comments

Comments
 (0)