-
Notifications
You must be signed in to change notification settings - Fork 21
/
figlet.js
80 lines (69 loc) · 1.65 KB
/
figlet.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
/**
* Figlet JS
*
* Copyright (c) 2010 Scott González
* Dual licensed under the MIT (MIT-LICENSE.txt)
* and GPL (GPL-LICENSE.txt) licenses.
*
* http://github.com/scottgonzalez/figlet-js
*/
(function() {
var Figlet = (typeof exports !== "undefined" ? exports : window).Figlet = {
fonts: {},
parseFont: function(name, fn) {
if (name in Figlet.fonts) {
fn();
return;
}
Figlet.loadFont(name, function(defn) {
Figlet._parseFont(name, defn, fn);
});
},
_parseFont: function(name, defn, fn) {
var lines = defn.split("\n"),
header = lines[0].split(" "),
hardblank = header[0].charAt(header[0].length - 1),
height = +header[1],
comments = +header[5];
Figlet.fonts[name] = {
defn: lines.slice(comments + 1),
hardblank: hardblank,
height: height,
char: {}
};
fn();
},
parseChar: function(char, font) {
var fontDefn = Figlet.fonts[font];
if (char in fontDefn.char) {
return fontDefn.char[char];
}
var height = fontDefn.height,
start = (char - 32) * height,
charDefn = [],
i;
for (i = 0; i < height; i++) {
charDefn[i] = fontDefn.defn[start + i]
.replace(/@/g, "")
.replace(RegExp("\\" + fontDefn.hardblank, "g"), " ");
}
return fontDefn.char[char] = charDefn;
},
write: function(str, font, fn) {
Figlet.parseFont(font, function() {
var chars = [],
result = "";
for (var i = 0, len = str.length; i < len; i++) {
chars[i] = Figlet.parseChar(str.charCodeAt(i), font);
}
for (i = 0, height = chars[0].length; i < height; i++) {
for (var j = 0; j < len; j++) {
result += chars[j][i];
}
result += "\n";
}
fn(result);
});
}
};
})();