-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcounter.js
125 lines (101 loc) · 3.87 KB
/
counter.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
module.exports = function(RED) {
"use strict";
function counter(config) {
RED.nodes.createNode(this, config);
var node = this;
this.outputs = Number(config.outputs || 1) === 1 ? "single" : "split";
this.init = Number(config.init || 0);
this.step = Number(config.step || 1);
this.lower = config.lower || null;
this.upper = config.upper || null;
this.mode = config.mode || "increment";
this.count = this.init;
this.on("input", function(msg) {
var lowerLimitReached = false,
upperLimitReached = false;
// use message parameters
if( msg.hasOwnProperty("increment") || msg.hasOwnProperty("decrement") ) {
var decremented = false;
// handle decrement value
if( msg.hasOwnProperty("decrement") ) {
var decrement = Number(msg.decrement);
if( !isNaN(decrement) && isFinite(decrement) ) {
node.count -= decrement;
decremented = true;
}
else {
this.error("decrement is not a numeric value", msg);
}
}
// handle increment value
if( !decremented ) {
var increment = Number(msg.increment || 1);
if( !isNaN(increment) && isFinite(increment) ) {
node.count += increment;
}
else {
this.error("increment is not a numeric value", msg);
}
}
}
// use default parameters
else {
if( isNaN(node.step) || !isFinite(node.step) ) {
this.error("step is not a numeric value", msg);
}
if( node.mode === "increment" ) {
node.count += node.step;
}
else if( node.mode === "decrement" ) {
node.count -= node.step;
}
else {
this.error("unknown mode '" + node.mode + "'", msg);
}
}
// handle reset
if( msg.hasOwnProperty("reset") && msg.reset ) {
node.count = typeof msg.reset === "number" ? msg.reset : node.init;
}
// handle lower limit
if( node.lower !== null ) {
var lower = Number(node.lower);
if( !isNaN(lower) && isFinite(lower) && node.count < lower ) {
node.count = lower;
lowerLimitReached = true;
}
}
// handle upper limit
if( node.upper !== null ) {
var upper = Number(node.upper);
if( !isNaN(upper) && isFinite(upper) && node.count > upper ) {
node.count = upper;
upperLimitReached = true;
}
}
// single output
if( node.outputs === "single" ) {
msg.count = node.count;
if( lowerLimitReached ) {
msg.countLowerLimitReached = true;
}
if( upperLimitReached ) {
msg.countUpperLimitReached = true;
}
node.send(msg);
}
// split output
else {
var obj = {payload: node.count};
if( lowerLimitReached ) {
obj.countLowerLimitReached = true;
}
if( upperLimitReached ) {
obj.countUpperLimitReached = true;
}
node.send([obj, msg]);
}
});
}
RED.nodes.registerType("counter", counter);
};