1
1
/**
2
- * ChatTurnManager v0.0.1
2
+ * ChatTurnManager v0.0.2
3
3
*
4
4
* Script to simplify Turn Order Management, and move it into chat.
5
5
* Commands:
@@ -32,7 +32,7 @@ var ChatTurnManager =
32
32
ChatTurnManager ||
33
33
( ( ) => {
34
34
"use strict" ;
35
- const version = "0.0.1 " ;
35
+ const version = "0.0.2 " ;
36
36
const counterName = "Round Counter" ;
37
37
38
38
const getTurns = ( ) => {
@@ -51,44 +51,42 @@ var ChatTurnManager =
51
51
Campaign ( ) . set ( "turnorder" , JSON . stringify ( turns ) ) ;
52
52
} ;
53
53
54
- const handleClear = ( msg , isGM ) => {
55
- if ( ! isGM ) return ;
56
- const turns = Campaign ( ) . get ( "turnorder" ) ;
57
- setTurns ( [ ] ) ;
58
- log ( `ChatTurnManager: CLEARING: ${ turns } ` )
59
- sendChat ( 'ChatTurnManager' , `/w GM Turns cleared. To restore, run <code>!turns-load ${ turns } </code>` )
54
+ const playerName = ( playerID ) => {
55
+ const player = getObj ( "player" , playerID ) ;
56
+ if ( ! player ) return player ;
57
+ return player . get ( "_displayname" ) ;
60
58
} ;
61
59
62
- const handleLoad = ( msg , isGM ) => {
63
- if ( ! isGM ) return ;
64
- Campaign ( ) . set ( "turnorder" , msg . split ( / \s + / , 2 ) [ 1 ] ) ;
65
- }
66
-
67
- const handleClean = ( msg ) => {
68
- let turns = getTurns ( ) ;
69
- turns = _ . filter ( turns , ( t ) => t . pr != 0 ) ;
70
- setTurns ( turns ) ;
60
+ const whisperToID = ( id , msg ) => {
61
+ const name = id === "GM" ? id : playerName ( id ) ;
62
+ if ( ! name ) return ;
63
+ sendChat ( "ChatTurnManager" , `/w "${ name } " ${ msg } ` ) ;
71
64
} ;
72
65
73
- const handleBegin = ( msg , isGM ) => {
74
- if ( ! isGM ) return ;
75
- let turns = getTurns ( ) ;
76
-
77
- turns = _ . filter ( turns , ( t ) => t . custom !== counterName ) ;
78
- turns = _ . sortBy ( turns , ( t ) => - t . pr ) ;
79
- turns . unshift ( { id : "-1 ", custom : counterName , pr : 1 , formula : "+1" } ) ;
80
-
81
- setTurns ( turns ) ;
66
+ const itemName = ( item ) => {
67
+ if ( item . id === "-1" ) return item . custom ;
68
+ const g = getObj ( "graphic" , item . id ) ;
69
+ if ( ! g ) return null ;
70
+ const name = g . get ( "name" ) ;
71
+ if ( name ) return name ;
72
+ const char = getObj ( "character ", g . get ( "represents" ) ) ;
73
+ if ( ! char ) return null ;
74
+ return char . get ( "name" ) ;
82
75
} ;
83
76
84
- const matchName = ( search , name ) => {
85
- return name && name . toLowerCase ( ) . startsWith ( search ) ;
86
- } ;
77
+ const findPrefixIndex = ( turns , prefix ) =>
78
+ turns . findIndex ( ( t ) => {
79
+ const name = itemName ( t ) ;
80
+ if ( ! name ) return false ;
81
+ return name . toLowerCase ( ) . startsWith ( prefix ) ;
82
+ } ) ;
87
83
88
- const addWithFormula = ( msg , formula ) => {
84
+ const addWithFormula = ( msg , isGM , playerID , formula ) => {
89
85
const parts = msg . split ( / \s + / ) ;
90
86
parts . shift ( ) ;
91
87
const newItem = { id : "-1" , pr : parseFloat ( parts . shift ( ) ) , formula } ;
88
+ if ( ! isGM ) newItem . p = true ;
89
+
92
90
let position = null ;
93
91
let search = null ;
94
92
if ( parts [ 0 ] . startsWith ( "--" ) ) {
@@ -99,53 +97,137 @@ var ChatTurnManager =
99
97
100
98
let turns = getTurns ( ) ;
101
99
let i = null ;
100
+
102
101
if ( search ) {
103
- i = turns . findIndex ( ( t ) => {
104
- if ( t . id === "-1" ) return matchName ( search , t . custom ) ;
105
- const g = getObj ( "graphic" , t . id ) ;
106
- if ( ! g ) return false ;
107
- let name = g . get ( "name" ) ;
108
- if ( name ) return matchName ( search , name ) ;
109
- else {
110
- const char = getObj ( "character" , g . get ( "represents" ) ) ;
111
- if ( ! char ) return false ;
112
- return matchName ( search , char . get ( "name" ) ) ;
113
- }
114
- } ) ;
115
- if ( i == - 1 ) i = null ;
116
- else if ( position === "after" ) i ++ ;
102
+ i = findPrefixIndex ( turns , search ) ;
103
+ if ( i == - 1 ) {
104
+ i = null ;
105
+ whisperToID ( playerID , `could not find item prefix “${ search } ”. Putting “${ newItem . custom } ” at the end.` ) ;
106
+ } else if ( position === "after" ) i ++ ;
117
107
}
118
108
119
109
if ( i !== null ) turns . splice ( i , 0 , newItem ) ;
120
110
else turns . push ( newItem ) ;
121
111
122
112
setTurns ( turns ) ;
113
+
114
+ if ( ! isGM ) {
115
+ const name = playerName ( playerID ) || "" ;
116
+ let pos = "" ;
117
+ if ( i !== null ) pos = ` in position ${ i + 1 } ` ;
118
+ whisperToID ( "GM" , `Player (${ name } ) added turn item “${ newItem . custom } ${ pos } ”` ) ;
119
+ }
120
+ } ;
121
+
122
+ const handleClear = ( msg , isGM , playerID ) => {
123
+ if ( ! isGM ) {
124
+ whisperToID ( playerID , "Only the GM can clear turn data." ) ;
125
+ return ;
126
+ }
127
+ const turns = Campaign ( ) . get ( "turnorder" ) ;
128
+ setTurns ( [ ] ) ;
129
+ log ( `ChatTurnManager: CLEARING: ${ turns } ` ) ;
130
+ whisperToID ( "GM" , `Turns cleared. To restore, run <code>!turns-load ${ turns } </code>` ) ;
131
+ } ;
132
+
133
+ const handleLoad = ( msg , isGM , playerID ) => {
134
+ if ( ! isGM ) {
135
+ whisperToID ( playerID , "Only the GM can load turn data." ) ;
136
+ return ;
137
+ }
138
+ Campaign ( ) . set ( "turnorder" , msg . split ( / \s + / , 2 ) [ 1 ] ) ;
139
+ } ;
140
+
141
+ const handleAppend = ( msg , isGM , playerID ) => {
142
+ if ( ! isGM ) {
143
+ whisperToID ( playerID , "Only the GM can append turn data." ) ;
144
+ return ;
145
+ }
146
+
147
+ try {
148
+ const data = JSON . parse ( msg . split ( / \s + / , 2 ) [ 1 ] ) ;
149
+ turns = getTurns ( ) ;
150
+ setTurns ( turns . concat ( data ) ) ;
151
+ } catch ( e ) {
152
+ whisperToID ( playerID , `ERROR appending data: '${ e . message } '` ) ;
153
+ }
154
+ } ;
155
+
156
+ const handleClean = ( msg ) => {
157
+ let turns = getTurns ( ) ;
158
+ turns = _ . filter ( turns , ( t ) => t . pr <= 0 ) ;
159
+ setTurns ( turns ) ;
123
160
} ;
124
161
125
- const handleUp = ( msg ) => {
126
- addWithFormula ( msg , "+1" ) ;
162
+ const handleBegin = ( msg , isGM ) => {
163
+ if ( ! isGM ) {
164
+ whisperToID ( playerID , "Only the GM can start the counter." ) ;
165
+ return ;
166
+ }
167
+ let turns = getTurns ( ) ;
168
+
169
+ turns = _ . filter ( turns , ( t ) => t . custom !== counterName ) ;
170
+ turns = _ . sortBy ( turns , ( t ) => - t . pr ) ;
171
+ turns . unshift ( { id : "-1" , custom : counterName , pr : 1 , formula : "+1" } ) ;
172
+
173
+ setTurns ( turns ) ;
174
+ } ;
175
+
176
+ const handleUp = ( msg , isGM , playerID ) => {
177
+ addWithFormula ( msg , isGM , playerID , "+1" ) ;
178
+ } ;
179
+
180
+ const handleDown = ( msg , isGM , playerID ) => {
181
+ addWithFormula ( msg , isGM , playerID , "-1" ) ;
127
182
} ;
128
183
129
- const handleDown = ( msg ) => {
130
- addWithFormula ( msg , "-1" ) ;
184
+ const handleRemove = ( msg , isGM , playerID ) => {
185
+ const parts = msg . split ( / \s + / , 2 ) ;
186
+ const prefix = parts [ 1 ] ;
187
+ if ( ! prefix ) {
188
+ whisperToID ( playerID , `missing item to remove!` ) ;
189
+ return ;
190
+ }
191
+
192
+ const turns = getTurns ( ) ;
193
+ const i = findPrefixIndex ( turns , prefix ) ;
194
+ if ( i === - 1 ) {
195
+ whisperToID ( playerID , `Cannot find prefix “${ prefix } ” to remove.` ) ;
196
+ return ;
197
+ }
198
+
199
+ if ( isGM || turns [ i ] . p ) {
200
+ turns . splice ( i , 1 ) ;
201
+ setTurns ( turns ) ;
202
+ return ;
203
+ }
204
+ const name = itemName ( turns [ i ] ) || "that item" ;
205
+ whisperToID ( playerID , `You do not have permission to remove ${ name } . Please ask the GM to do it.` ) ;
131
206
} ;
132
207
133
208
const handlers = {
134
209
handleClear,
135
210
handleLoad,
211
+ handleAppend,
136
212
handleClean,
137
213
handleBegin,
138
214
handleUp,
139
215
handleDown,
216
+ handleRemove,
140
217
handleStart : handleBegin ,
218
+ handleRm : handleRemove ,
141
219
} ;
142
220
143
221
const handleMessage = ( msg ) => {
144
222
if ( msg . type != "api" || ! msg . content . startsWith ( "!turns" ) ) return ;
145
223
const cmd = msg . content . split ( / \s + / ) [ 0 ] . substring ( 7 ) ;
146
224
const handler = handlers [ `handle${ cmd . charAt ( 0 ) . toUpperCase ( ) } ${ cmd . slice ( 1 ) } ` ] ;
147
- if ( handler ) handler ( msg . content , playerIsGM ( msg . playerid ) ) ;
148
- else log ( `ChatTurnManager: unknown cmd: ${ cmd } ` ) ;
225
+ if ( handler ) {
226
+ handler ( msg . content , playerIsGM ( msg . playerid ) , msg . playerid ) ;
227
+ return ;
228
+ }
229
+ log ( `ChatTurnManager: unknown cmd: ${ cmd } ` ) ;
230
+ whisperToID ( playerID , `Unknown command: ${ cmd } ` ) ;
149
231
} ;
150
232
151
233
const registerHandlers = ( ) => {
0 commit comments