forked from bschug/poedit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrule.js
133 lines (109 loc) · 3.07 KB
/
rule.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
126
127
128
129
130
131
132
133
function Rule (visibility) {
this.show = visibility;
this.filters = [];
this.modifiers = [];
this.codeLines = [];
this.match = function (item) {
return this.filters.every( function (filter) { return filter.match( item ); } );
}
this.applyTo = function (item) {
item.setVisibility( this.show );
this.modifiers.forEach( function (modifier) { modifier.applyTo( item ); } );
}
}
// -------------------- Filters ---------------------
function ItemLevelFilter (comparer, itemLevel) {
this.match = function (item) {
return comparer( item.itemLevel, itemLevel );
};
}
function DropLevelFilter (comparer, dropLevel) {
this.match = function (item) {
return comparer( item.dropLevel, dropLevel );
};
}
function QualityFilter (comparer, quality) {
this.match = function (item) {
return comparer( item.quality, quality );
};
}
// Rarity uses integer representation
function RarityFilter (comparer, rarity) {
this.match = function (item) {
return comparer( item.rarity, rarity );
};
}
function ClassFilter (itemClasses) {
this.match = function (item) {
return itemClasses.some( function (cls) { return StrUtils.contains( cls, item.itemClass ); } );
};
}
function BaseTypeFilter (baseTypes) {
this.match = function (item) {
return baseTypes.some( function (bt) { return StrUtils.contains( bt, item.baseType ); } );
};
}
function SocketsFilter (comparer, numSockets) {
this.match = function (item) {
return comparer( item.getNumSockets(), numSockets );
};
}
function LinkedSocketsFilter (comparer, numLinkedSockets) {
this.match = function (item) {
var largestSocketGroup = item.sockets
.map( function (grp) { return grp.length; } )
.reduce( function (prev, cur) { return Math.max(prev, cur); }, 0 );
return comparer( largestSocketGroup, numLinkedSockets );
};
}
function SocketGroupFilter (groups) {
this.minSocketCounts = groups.map( StrUtils.countChars );
function isSubsetOf (subsetCounts, containerCounts) {
for (var s in containerCounts) {
if (!(s in subsetCounts)) {
return false;
}
if (subsetCounts[s] < containerCounts[s]) {
return false;
}
}
return true;
}
function matchSocketGroups (grp, refGroups) {
var socketCounts = StrUtils.countChars( grp );
return refGroups.some( function (refGrp) {
return isSubsetOf( socketCounts, refGrp );
} );
}
this.match = function (item) {
return item.sockets.some( function (grp) {
return matchSocketGroups( grp, this.minSocketCounts );
}, this );
}
}
// ------------------------ Modifiers --------------------------------------
function SetBackgroundColorModifier (color) {
this.applyTo = function (item) {
item.setBackgroundColor( color );
}
}
function SetBorderColorModifier (color) {
this.applyTo = function (item) {
item.setBorderColor( color );
}
}
function SetTextColorModifier (color) {
this.applyTo = function (item) {
item.setTextColor( color );
}
}
function PlayAlertSoundModifier (soundId) {
this.applyTo = function (item) {
// not implemented
}
}
function SetFontSizeModifier (fontSize) {
this.applyTo = function (item) {
item.setFontSize( fontSize );
}
}