|
| 1 | +// Github: https://github.com/shdwjk/Roll20API/blob/master/Mark/Mark.js |
| 2 | +// By: The Aaron, Arcane Scriptomancer |
| 3 | +// Contact: https://app.roll20.net/users/104025/the-aaron |
| 4 | + |
| 5 | +var Mark = Mark || (function() { |
| 6 | + 'use strict'; |
| 7 | + |
| 8 | + var version = '0.3.5', |
| 9 | + lastUpdate = 1514912751, |
| 10 | + schemaVersion = 0.2, |
| 11 | + markerURL = 'https://s3.amazonaws.com/files.d20.io/images/4994795/7MdfzjgXCkaESbRbxATFSw/thumb.png?1406949835', |
| 12 | + |
| 13 | + ch = function (c) { |
| 14 | + var entities = { |
| 15 | + '<' : 'lt', |
| 16 | + '>' : 'gt', |
| 17 | + "'" : '#39', |
| 18 | + '@' : '#64', |
| 19 | + '{' : '#123', |
| 20 | + '|' : '#124', |
| 21 | + '}' : '#125', |
| 22 | + '[' : '#91', |
| 23 | + ']' : '#93', |
| 24 | + '"' : 'quot', |
| 25 | + '-' : 'mdash', |
| 26 | + ' ' : 'nbsp' |
| 27 | + }; |
| 28 | + |
| 29 | + if(_.has(entities,c) ){ |
| 30 | + return ('&'+entities[c]+';'); |
| 31 | + } |
| 32 | + return ''; |
| 33 | + }, |
| 34 | + |
| 35 | + showHelp = function(who) { |
| 36 | + sendChat('', |
| 37 | + '/w "'+who+'" ' |
| 38 | ++'<div style="border: 1px solid black; background-color: white; padding: 3px 3px;">' |
| 39 | + +'<div style="font-weight: bold; border-bottom: 1px solid black;font-size: 130%;">' |
| 40 | + +'Mark v'+version |
| 41 | + +'</div>' |
| 42 | + +'<div style="padding-left:10px;margin-bottom:3px;">' |
| 43 | + +'<p>Mark places a numbered marker under each token whose id is supplied ' |
| 44 | + +'to it. Markers are cleared when the Turn Order changes, is closed, ' |
| 45 | + +'or when the player page changes. This script is intended to allow players ' |
| 46 | + +'to mark their targets for discussion with the GM, usually as part of an ' |
| 47 | + +'attack.</p>' |
| 48 | + +'</div>' |
| 49 | + +'<b>Commands</b>' |
| 50 | + +'<div style="padding-left:10px;">' |
| 51 | + +'<b><span style="font-family: serif;">!mark '+ch('<')+'Token ID'+ch('>')+' ['+ch('<')+'Token ID'+ch('>')+' ... ]</span></b>' |
| 52 | + +'<div style="padding-left: 10px;padding-right:20px">' |
| 53 | + +'<p>This command requires a minimum of 1 parameter. For each supplied Token ID, a marker is placed beneath it with a numbered status. The status number starts at 1, increases with each marker placed, and resets the when markers are cleared.</p>' |
| 54 | + +'<p><b>Note:</b> If you are using multiple '+ch('@')+ch('{')+'target'+ch('|')+'token_id'+ch('}')+' calls in a macro, and need to mark fewer than the suppled number of arguments, simply select the same token several times. The duplicates will be removed.</p>' |
| 55 | + +'<ul>' |
| 56 | + +'<li style="border-top: 1px solid #ccc;border-bottom: 1px solid #ccc;">' |
| 57 | + +'<b><span style="font-family: serif;">'+ch('<')+'Token ID'+ch('>')+'</span></b> '+ch('-')+' A Token ID, usually supplied with something like '+ch('@')+ch('{')+'target'+ch('|')+'Target 1'+ch('|')+'token_id'+ch('}')+'.' |
| 58 | + +'</li> ' |
| 59 | + +'</ul>' |
| 60 | + +'</div>' |
| 61 | + +'<b><span style="font-family: serif;">!mark-clear</span></b>' |
| 62 | + +'<div style="padding-left: 10px;padding-right:20px">' |
| 63 | + +'<p>Clears all the markers. (GM Only)</p>' |
| 64 | + +'</div>' |
| 65 | + +'</div>' |
| 66 | ++'</div>' |
| 67 | + ); |
| 68 | + }, |
| 69 | + |
| 70 | + reset = function() { |
| 71 | + state.Mark.count=0; |
| 72 | + _.each(findObjs({ |
| 73 | + type: 'graphic', |
| 74 | + subtype: 'token', |
| 75 | + imgsrc: markerURL |
| 76 | + }), (g)=>g.remove()); |
| 77 | + }, |
| 78 | + |
| 79 | + getStatusForCount = function(count) { |
| 80 | + var colorOrder=["red", "blue", "green", "brown", "purple", "pink", "yellow"]; |
| 81 | + return _.chain(count.toString().split('')) |
| 82 | + .reduce(function(memo,d){ |
| 83 | + if(colorOrder.length) { |
| 84 | + memo.push(colorOrder.shift()+'@'+d); |
| 85 | + } |
| 86 | + return memo; |
| 87 | + }, []) |
| 88 | + .value() |
| 89 | + .reverse() |
| 90 | + .join(','); |
| 91 | + }, |
| 92 | + |
| 93 | + handleInput = function(msg) { |
| 94 | + var args, |
| 95 | + who, |
| 96 | + errors=[], |
| 97 | + tokens; |
| 98 | + |
| 99 | + if (msg.type !== "api" ) { |
| 100 | + return; |
| 101 | + } |
| 102 | + |
| 103 | + who=(getObj('player',msg.playerid)||{get:()=>'API'}).get('_displayname'); |
| 104 | + |
| 105 | + args = msg.content.split(/ +/); |
| 106 | + switch(args[0]) { |
| 107 | + case '!mark-clear': |
| 108 | + if(playerIsGM(msg.playerid)) { |
| 109 | + reset(); |
| 110 | + } |
| 111 | + break; |
| 112 | + |
| 113 | + case '!mark': |
| 114 | + if(1 === args.length) { |
| 115 | + showHelp(who); |
| 116 | + break; |
| 117 | + } |
| 118 | + |
| 119 | + tokens=_.chain(args) |
| 120 | + .rest() |
| 121 | + .uniq() |
| 122 | + .map(function(a){ |
| 123 | + var t=getObj('graphic',a); |
| 124 | + if(! t) { |
| 125 | + errors.push('Argument [<b>'+a+'</b>] is not a valid token id.'); |
| 126 | + } |
| 127 | + return t; |
| 128 | + },errors) |
| 129 | + .filter(function(t){ |
| 130 | + return undefined !== t; |
| 131 | + }) |
| 132 | + .value(); |
| 133 | + |
| 134 | + if(errors.length) { |
| 135 | + sendChat('','/w "'+who+'" ' |
| 136 | + +'<div style="border: 1px solid black; background-color: white; padding: 3px 3px;">' |
| 137 | + +'<div><span style="font-weight:bold;color:#990000;">Error:</span> ' |
| 138 | + +errors.join('</div><div><span style="font-weight:bold;color:#990000;">Error:</span> ') |
| 139 | + +'</div>' |
| 140 | + +'</div>' |
| 141 | + ); |
| 142 | + } |
| 143 | + |
| 144 | + _.each(tokens, function (t) { |
| 145 | + let size=( Math.max(t.get('width'), t.get('height') ) * 1.7), |
| 146 | + count=++state.Mark.count, |
| 147 | + status=getStatusForCount(count), |
| 148 | + m = createObj('graphic',{ |
| 149 | + imgsrc: markerURL, |
| 150 | + subtype: 'token', |
| 151 | + pageid: t.get('pageid'), |
| 152 | + width: size, |
| 153 | + height: size, |
| 154 | + top: t.get('top'), |
| 155 | + left: t.get('left'), |
| 156 | + layer: 'objects', |
| 157 | + statusmarkers: status |
| 158 | + }); |
| 159 | + |
| 160 | + toBack(m); |
| 161 | + }); |
| 162 | + |
| 163 | + break; |
| 164 | + } |
| 165 | + |
| 166 | + }, |
| 167 | + |
| 168 | + checkInstall = function() { |
| 169 | + log('-=> Mark v'+version+' <=- ['+(new Date(lastUpdate*1000))+']'); |
| 170 | + |
| 171 | + if( ! _.has(state,'Mark') || state.Mark.version !== schemaVersion) |
| 172 | + log(' > Updating Schema to v'+schemaVersion+' <'); |
| 173 | + { |
| 174 | + /* Default Settings stored in the state. */ |
| 175 | + state.Mark = { |
| 176 | + version: schemaVersion, |
| 177 | + count: 0, |
| 178 | + markedtokens: {} |
| 179 | + }; |
| 180 | + } |
| 181 | + }, |
| 182 | + |
| 183 | + handlePlayerPageChange = function() { |
| 184 | + reset(); |
| 185 | + }, |
| 186 | + |
| 187 | + handleTurnOrderChange = function(obj,prev) { |
| 188 | + var to = JSON.parse(obj.get("turnorder")), |
| 189 | + po = JSON.parse(prev.turnorder); |
| 190 | + |
| 191 | + if( (_.isArray(to) && _.isArray(po) && !_.isEqual(to[0],po[0]) ) || (_.isArray(to) && ! _.isArray(po)) ) { |
| 192 | + reset(); |
| 193 | + } |
| 194 | + }, |
| 195 | + |
| 196 | + handleInitiativePageChange = function(obj) { |
| 197 | + if(false === obj.get('initiativepage')) { |
| 198 | + reset(); |
| 199 | + } |
| 200 | + }, |
| 201 | + |
| 202 | + registerEventHandlers = function() { |
| 203 | + on('chat:message', handleInput); |
| 204 | + on('change:campaign:playerpageid', handlePlayerPageChange); |
| 205 | + on('change:campaign:turnorder', handleTurnOrderChange); |
| 206 | + on('change:campaign:initiativepage', handleInitiativePageChange); |
| 207 | + }; |
| 208 | + |
| 209 | + return { |
| 210 | + RegisterEventHandlers: registerEventHandlers, |
| 211 | + CheckInstall: checkInstall, |
| 212 | + Reset: reset |
| 213 | + }; |
| 214 | +}()); |
| 215 | + |
| 216 | +on("ready",function(){ |
| 217 | + 'use strict'; |
| 218 | + |
| 219 | + Mark.CheckInstall(); |
| 220 | + Mark.RegisterEventHandlers(); |
| 221 | +}); |
0 commit comments