This repository has been archived by the owner on Jun 25, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathutil.js
404 lines (333 loc) · 6.99 KB
/
util.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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
"use strict";
Math.sign = function(x)
{
return (x > 0) - (x < 0);
};
// round away from zero, opposite of truncation
Math.roundInfinity = function(x)
{
return x > 0 ? Math.ceil(x) : Math.floor(x);
};
Math.floatToRandom = function(x)
{
var floor = Math.floor(x)
return floor + (Math.random() > x - floor);
}
/**
* Return the triangle wave function between -1 and 1 with the given frequency a
*/
Math.triangle = function(a)
{
return function(t)
{
var r = t / a;
return -1 + 4 * Math.abs(r + .25 - Math.floor(r + .75));
}
};
/**
* Return a rectangle wave function between -1 and 1 (can also yield 0) with the
* given frequency a
*/
Math.rectangle = function(a)
{
var triangle = Math.triangle(a);
return function(t)
{
return Math.sign(triangle(t));
};
};
// return 1 if x > y, -1 if y > x, 0 otherwise
Math.compare = function(x, y)
{
return Math.sign(x - y);
};
/**
* index, n.:
* Alphabetical list of words of no possible interest where an
* alphabetical list of subjects with references ought to be.
*/
Array.prototype.findIndex = function(f)
{
var result;
this.some(function(value, index)
{
if(f(value))
{
result = index;
return true;
}
});
return result;
};
Array.prototype.find = function(f)
{
var index = this.findIndex(f);
if(index === undefined)
{
return undefined;
}
else
{
return this[index];
}
};
// delete one element by value
Array.prototype.delete = function(v)
{
var index = this.indexOf(v);
if(index !== -1)
{
return this.slice(0, index).concat(this.slice(index + 1));
}
return this;
};
// concatMap :: (a -> [b]) -> [a] -> [b]
// Map a function over a list and concatenate the results.
Array.prototype.concatMap = function(f)
{
var result = [];
this.forEach(function(x)
{
result = result.concat(f(x));
});
return result;
};
Array.prototype.deleteList = function(xs)
{
return this.filter(function(x)
{
return xs.indexOf(x) === -1;
});
};
Array.replicate = function(n, x)
{
var xs = [];
for(var i = 0; i < n; i++)
{
xs[i] = x;
}
return xs;
}
// partition :: (a -> Bool) -> [a] -> ([a], [a])
// The partition function takes a predicate a list and returns the pair of lists
// of elements which do and do not satisfy the predicate, respectively
Array.prototype.partition = function(f)
{
return this.reduce(function(result, x)
{
if(f(x))
{
result[0].push(x);
}
else
{
result[1].push(x);
}
return result;
}, [[], []]);
};
Array.toArray = function(xs)
{
return [].slice.call(xs);
};
Function.byIndex = function(index, value)
{
return function(obj)
{
return obj[index] === value;
};
}
// not well tested, works for everything that we need
Object.deepcopy = function clone(obj)
{
if(typeof obj === "object")
{
if(obj instanceof Array)
{
return obj.map(clone);
}
else if(obj.__proto__)
{
var result = {
__proto__: obj.__proto__
},
keys = Object.keys(obj);
for(var i = 0; i < keys.length; i++)
{
result[keys[i]] = obj[keys[i]];
}
}
else
{
var result = {};
for(var k in obj)
{
result[k] = clone(obj[k]);
}
}
return result;
}
else
{
return obj;
}
};
Object.isArray = function(x)
{
return x instanceof Array;
}
Function.not = function(f)
{
return function(x) { return !f(x); };
}
function range(min, max, step)
{
var result = [];
step = step || 1;
dbg_assert(step > 0);
if(max === undefined)
{
max = min;
min = 0;
}
for(var i = min; i < max; i += step)
{
//yield i; // fuck you
result.push(i);
}
return result;
}
/**
* Hook obj[name], so when it gets called, func will get called too
*/
Function.hook = function(obj, name, func)
{
var old = obj[name];
obj[name] = function()
{
old.apply(this, arguments);
func.apply(this, arguments);
};
}
Object.extend = function(o1, o2)
{
var keys = Object.keys(o2),
key;
for(var i = 0; i < keys.length; i++)
{
key = keys[i];
o1[key] = o2[key];
}
return o1;
};
Object.deleteByValue = function(obj, value)
{
var keys = Object.keys(obj),
key
for(var i = 0; i < keys.length; i++)
{
key = keys[i];
if(obj[keys[i]] === value)
{
delete obj[keys[i]];
}
}
}
Object.merge = function(o1, o2)
{
return Object.extend(Object.extend({}, o1), o2);
};
Object.values = function(obj)
{
var keys = Object.keys(obj),
result = [];
for(var i = 0; i < keys.length; i++)
{
result.push(obj[keys[i]]);
}
return result;
};
function dbg_log(str)
{
document.getElementById("debug").textContent = str;
}
function dbg_warn(str)
{
document.getElementById("warn").textContent += str + "\n";
}
/**
* @param {string=} msg
*/
function dbg_assert(cond, msg)
{
if(!cond)
{
//console.log("assert failed");
//console.log(msg || "");
console.trace();
throw "Assert failed: " + msg;
}
}
/**
* @param {function(string,number)=} onerror
*/
function http_get(url, onready, onerror)
{
var http = new XMLHttpRequest();
http.onreadystatechange = function()
{
if(http.readyState === 4)
{
if(http.status === 200)
{
onready(http.responseText, url);
}
else
{
if(onerror)
{
onerror(http.responseText, http.status);
}
}
}
};
http.open("get", url, true);
http.send("");
return {
cancel : function()
{
http.abort();
}
};
}
// Given a list of objects and a list of keys that should exist on the objects,
// get the cartesian product of the values and return objects with the result of
// each product
function cartesianProductOnObjects(list, keys)
{
if(!Object.isArray(list))
{
list = [list];
}
return keys.reduce(singleProduct, list);
function singleProduct(list, key)
{
return list.concatMap(function(obj)
{
var values = obj[key];
if(!Object.isArray(values))
{
return [obj];
}
else
{
return values.map(function(val)
{
var x = Object.deepcopy(obj);
x[key] = val;
return x;
});
}
});
}
}