Skip to content

Commit bb85b15

Browse files
committed
Updated TurnMarker1 to v1.3.7
Updated TokenLock to v0.2.5 Added BounceTokens at v0.1.0
1 parent a952414 commit bb85b15

File tree

9 files changed

+1539
-99
lines changed

9 files changed

+1539
-99
lines changed

BounceTokens/0.1.0/BounceTokens.js

+196
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,196 @@
1+
// Github: https://github.com/shdwjk/Roll20API/blob/master/BounceTokens/BounceTokens.js
2+
// By: The Aaron, Arcane Scriptomancer
3+
// Contact: https://app.roll20.net/users/104025/the-aaron
4+
5+
var BounceTokens = BounceTokens || (function(){
6+
'use strict';
7+
8+
var version = '0.1.0',
9+
lastUpdate = 1473882811,
10+
schemaVersion = 0.1,
11+
bounceInterval = false,
12+
stepRate = 200,
13+
defaultSecondsPerCycle = 20,
14+
millisecondsPerSecond = 1000,
15+
16+
ch = function (c) {
17+
var entities = {
18+
'<' : 'lt',
19+
'>' : 'gt',
20+
"'" : '#39',
21+
'@' : '#64',
22+
'{' : '#123',
23+
'|' : '#124',
24+
'}' : '#125',
25+
'[' : '#91',
26+
']' : '#93',
27+
'"' : 'quot',
28+
'-' : 'mdash',
29+
' ' : 'nbsp'
30+
};
31+
32+
if(_.has(entities,c) ){
33+
return ('&'+entities[c]+';');
34+
}
35+
return '';
36+
},
37+
38+
showHelp = function() {
39+
sendChat('',
40+
'/w gm '+
41+
'<div style="border: 1px solid black; background-color: white; padding: 3px 3px;">'+
42+
'<div style="font-weight: bold; border-bottom: 1px solid black;font-size: 130%;">'+
43+
'BounceTokens v'+version+
44+
'<div style="clear: both"></div>'+
45+
'</div>'+
46+
'<div style="padding-left:10px;margin-bottom:3px;">'+
47+
'<p>Allows the GM to toggle bouncing of selected tokens</p>'+
48+
'</div>'+
49+
'<b>Commands</b>'+
50+
'<div style="padding-left:10px;"><b><span style="font-family: serif;">!bounce-start '+ch('[')+'Seconds Per Cycle'+ch(']')+'</span></b>'+
51+
'<div style="padding-left: 10px;padding-right:20px">'+
52+
'Starts a selected token bouncing, optionally with a speed.'+
53+
'<ul>'+
54+
'<li style="border-top: 1px solid #ccc;border-bottom: 1px solid #ccc;">'+
55+
'<b><span style="font-family: serif;">Seconds Per Cycle</span></b> '+ch('-')+' Specifies the number of seconds for the token to make a full bounce. <b>Default: '+defaultSecondsPerCycle +'</b></li>'+
56+
'</li> '+
57+
'</ul>'+
58+
'</div>'+
59+
'</div>'+
60+
'<div style="padding-left:10px;"><b><span style="font-family: serif;">!bounce-stop</span></b>'+
61+
'<div style="padding-left: 10px;padding-right:20px">'+
62+
'Stops the selected tokens from bouncing.'+
63+
'</div>'+
64+
'</div>'+
65+
'</div>'
66+
);
67+
},
68+
69+
70+
handleInput = function(msg) {
71+
var args,
72+
secondsPerCycle;
73+
74+
if ( "api" !== msg.type || !playerIsGM(msg.playerid) ) {
75+
return;
76+
}
77+
78+
args = msg.content.split(/\s+/);
79+
80+
switch(args[0]) {
81+
case '!bounce-start':
82+
if(!( msg.selected && msg.selected.length > 0 ) ) {
83+
showHelp();
84+
return;
85+
}
86+
87+
secondsPerCycle = Math.abs(args[1] || defaultSecondsPerCycle);
88+
_.chain(msg.selected)
89+
.map(function (o) {
90+
return getObj(o._type,o._id);
91+
})
92+
.filter(function(o){
93+
return 'token' === o.get('subtype');
94+
})
95+
.each(function(o){
96+
state.BounceTokens.bouncers[o.id]={
97+
id: o.id,
98+
top: o.get('top'),
99+
page: o.get('pageid'),
100+
rate: (secondsPerCycle*millisecondsPerSecond)
101+
};
102+
})
103+
;
104+
break;
105+
106+
case '!bounce-stop':
107+
if(!( msg.selected && msg.selected.length > 0 ) ) {
108+
showHelp();
109+
return;
110+
}
111+
112+
_.chain(msg.selected)
113+
.map(function (o) {
114+
return getObj(o._type,o._id);
115+
})
116+
.filter(function(o){
117+
return 'token' === o.get('subtype');
118+
})
119+
.each(function(o){
120+
o.set('top',state.BounceTokens.bouncers[o.id].top);
121+
delete state.BounceTokens.bouncers[o.id];
122+
})
123+
;
124+
break;
125+
}
126+
127+
},
128+
129+
animateBounce = function() {
130+
var pages = _.union([Campaign().get('playerpageid')], _.values(Campaign().get('playerspecificpages')));
131+
132+
_.chain(state.BounceTokens.bouncers)
133+
.filter(function(o){
134+
return _.contains(pages,o.page);
135+
})
136+
.each(function(sdata){
137+
var s = getObj('graphic',sdata.id);
138+
139+
if(!s) {
140+
delete state.BounceTokens.bouncers[sdata.id];
141+
} else {
142+
s.set({
143+
top: state.BounceTokens.bouncers[sdata.id].top - (s.get('height')*0.25)*Math.sin(( (Date.now()%sdata.rate)/sdata.rate )*Math.PI)
144+
});
145+
}
146+
});
147+
148+
},
149+
150+
handleTokenDelete = function(obj) {
151+
var found = _.findWhere(state.BounceTokens.bouncers, {id: obj.id});
152+
if(found) {
153+
delete state.BounceTokens.bouncers[obj.id];
154+
}
155+
},
156+
157+
handleTokenChange = function(obj) {
158+
var found = _.findWhere(state.BounceTokens.bouncers, {id: obj.id});
159+
if(found) {
160+
state.BounceTokens.bouncers[obj.id].top= obj.get('top');
161+
}
162+
},
163+
164+
checkInstall = function() {
165+
log('-=> BounceTokens v'+version+' <=- ['+(new Date(lastUpdate*1000))+']');
166+
167+
if( ! _.has(state,'BounceTokens') || state.BounceTokens.version !== schemaVersion) {
168+
log(' > Updating Schema to v'+schemaVersion+' <');
169+
170+
state.BounceTokens = {
171+
version: schemaVersion,
172+
bouncers: {}
173+
};
174+
}
175+
176+
bounceInterval = setInterval(animateBounce,stepRate);
177+
},
178+
179+
registerEventHandlers = function() {
180+
on('chat:message', handleInput);
181+
on('destroy:graphic', handleTokenDelete);
182+
on('change:graphic', handleTokenChange);
183+
};
184+
185+
return {
186+
CheckInstall: checkInstall,
187+
RegisterEventHandlers: registerEventHandlers
188+
};
189+
}());
190+
191+
on("ready",function(){
192+
'use strict';
193+
194+
BounceTokens.CheckInstall();
195+
BounceTokens.RegisterEventHandlers();
196+
});

BounceTokens/BounceTokens.js

+196
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,196 @@
1+
// Github: https://github.com/shdwjk/Roll20API/blob/master/BounceTokens/BounceTokens.js
2+
// By: The Aaron, Arcane Scriptomancer
3+
// Contact: https://app.roll20.net/users/104025/the-aaron
4+
5+
var BounceTokens = BounceTokens || (function(){
6+
'use strict';
7+
8+
var version = '0.1.0',
9+
lastUpdate = 1473882811,
10+
schemaVersion = 0.1,
11+
bounceInterval = false,
12+
stepRate = 200,
13+
defaultSecondsPerCycle = 20,
14+
millisecondsPerSecond = 1000,
15+
16+
ch = function (c) {
17+
var entities = {
18+
'<' : 'lt',
19+
'>' : 'gt',
20+
"'" : '#39',
21+
'@' : '#64',
22+
'{' : '#123',
23+
'|' : '#124',
24+
'}' : '#125',
25+
'[' : '#91',
26+
']' : '#93',
27+
'"' : 'quot',
28+
'-' : 'mdash',
29+
' ' : 'nbsp'
30+
};
31+
32+
if(_.has(entities,c) ){
33+
return ('&'+entities[c]+';');
34+
}
35+
return '';
36+
},
37+
38+
showHelp = function() {
39+
sendChat('',
40+
'/w gm '+
41+
'<div style="border: 1px solid black; background-color: white; padding: 3px 3px;">'+
42+
'<div style="font-weight: bold; border-bottom: 1px solid black;font-size: 130%;">'+
43+
'BounceTokens v'+version+
44+
'<div style="clear: both"></div>'+
45+
'</div>'+
46+
'<div style="padding-left:10px;margin-bottom:3px;">'+
47+
'<p>Allows the GM to toggle bouncing of selected tokens</p>'+
48+
'</div>'+
49+
'<b>Commands</b>'+
50+
'<div style="padding-left:10px;"><b><span style="font-family: serif;">!bounce-start '+ch('[')+'Seconds Per Cycle'+ch(']')+'</span></b>'+
51+
'<div style="padding-left: 10px;padding-right:20px">'+
52+
'Starts a selected token bouncing, optionally with a speed.'+
53+
'<ul>'+
54+
'<li style="border-top: 1px solid #ccc;border-bottom: 1px solid #ccc;">'+
55+
'<b><span style="font-family: serif;">Seconds Per Cycle</span></b> '+ch('-')+' Specifies the number of seconds for the token to make a full bounce. <b>Default: '+defaultSecondsPerCycle +'</b></li>'+
56+
'</li> '+
57+
'</ul>'+
58+
'</div>'+
59+
'</div>'+
60+
'<div style="padding-left:10px;"><b><span style="font-family: serif;">!bounce-stop</span></b>'+
61+
'<div style="padding-left: 10px;padding-right:20px">'+
62+
'Stops the selected tokens from bouncing.'+
63+
'</div>'+
64+
'</div>'+
65+
'</div>'
66+
);
67+
},
68+
69+
70+
handleInput = function(msg) {
71+
var args,
72+
secondsPerCycle;
73+
74+
if ( "api" !== msg.type || !playerIsGM(msg.playerid) ) {
75+
return;
76+
}
77+
78+
args = msg.content.split(/\s+/);
79+
80+
switch(args[0]) {
81+
case '!bounce-start':
82+
if(!( msg.selected && msg.selected.length > 0 ) ) {
83+
showHelp();
84+
return;
85+
}
86+
87+
secondsPerCycle = Math.abs(args[1] || defaultSecondsPerCycle);
88+
_.chain(msg.selected)
89+
.map(function (o) {
90+
return getObj(o._type,o._id);
91+
})
92+
.filter(function(o){
93+
return 'token' === o.get('subtype');
94+
})
95+
.each(function(o){
96+
state.BounceTokens.bouncers[o.id]={
97+
id: o.id,
98+
top: o.get('top'),
99+
page: o.get('pageid'),
100+
rate: (secondsPerCycle*millisecondsPerSecond)
101+
};
102+
})
103+
;
104+
break;
105+
106+
case '!bounce-stop':
107+
if(!( msg.selected && msg.selected.length > 0 ) ) {
108+
showHelp();
109+
return;
110+
}
111+
112+
_.chain(msg.selected)
113+
.map(function (o) {
114+
return getObj(o._type,o._id);
115+
})
116+
.filter(function(o){
117+
return 'token' === o.get('subtype');
118+
})
119+
.each(function(o){
120+
o.set('top',state.BounceTokens.bouncers[o.id].top);
121+
delete state.BounceTokens.bouncers[o.id];
122+
})
123+
;
124+
break;
125+
}
126+
127+
},
128+
129+
animateBounce = function() {
130+
var pages = _.union([Campaign().get('playerpageid')], _.values(Campaign().get('playerspecificpages')));
131+
132+
_.chain(state.BounceTokens.bouncers)
133+
.filter(function(o){
134+
return _.contains(pages,o.page);
135+
})
136+
.each(function(sdata){
137+
var s = getObj('graphic',sdata.id);
138+
139+
if(!s) {
140+
delete state.BounceTokens.bouncers[sdata.id];
141+
} else {
142+
s.set({
143+
top: state.BounceTokens.bouncers[sdata.id].top - (s.get('height')*0.25)*Math.sin(( (Date.now()%sdata.rate)/sdata.rate )*Math.PI)
144+
});
145+
}
146+
});
147+
148+
},
149+
150+
handleTokenDelete = function(obj) {
151+
var found = _.findWhere(state.BounceTokens.bouncers, {id: obj.id});
152+
if(found) {
153+
delete state.BounceTokens.bouncers[obj.id];
154+
}
155+
},
156+
157+
handleTokenChange = function(obj) {
158+
var found = _.findWhere(state.BounceTokens.bouncers, {id: obj.id});
159+
if(found) {
160+
state.BounceTokens.bouncers[obj.id].top= obj.get('top');
161+
}
162+
},
163+
164+
checkInstall = function() {
165+
log('-=> BounceTokens v'+version+' <=- ['+(new Date(lastUpdate*1000))+']');
166+
167+
if( ! _.has(state,'BounceTokens') || state.BounceTokens.version !== schemaVersion) {
168+
log(' > Updating Schema to v'+schemaVersion+' <');
169+
170+
state.BounceTokens = {
171+
version: schemaVersion,
172+
bouncers: {}
173+
};
174+
}
175+
176+
bounceInterval = setInterval(animateBounce,stepRate);
177+
},
178+
179+
registerEventHandlers = function() {
180+
on('chat:message', handleInput);
181+
on('destroy:graphic', handleTokenDelete);
182+
on('change:graphic', handleTokenChange);
183+
};
184+
185+
return {
186+
CheckInstall: checkInstall,
187+
RegisterEventHandlers: registerEventHandlers
188+
};
189+
}());
190+
191+
on("ready",function(){
192+
'use strict';
193+
194+
BounceTokens.CheckInstall();
195+
BounceTokens.RegisterEventHandlers();
196+
});

0 commit comments

Comments
 (0)