2015-12-30 16:21:42 +02:00
|
|
|
module Spinner
|
|
|
|
Charset = {
|
2016-08-23 22:08:09 +02:00
|
|
|
arrow: ["←", "↖", "↑", "↗", "→", "↘", "↓", "↙"],
|
|
|
|
arrow2: [">>---> ", " >>---> ", " >>---> ", " >>---> ", " >>--->", " <---<<", " <---<< ", " <---<< ", " <---<< ", "<---<< "],
|
|
|
|
fan: ["┤", "┘", "┴", "└", "├", "┌", "┬", "┐"],
|
|
|
|
fan1: ["+", "x"],
|
|
|
|
fan2: ["v", "<", "^", ">"],
|
|
|
|
triangle: ["◢", "◣", "◤", "◥"],
|
|
|
|
square: ["◰", "◳", "◲", "◱"],
|
|
|
|
circle: ["◴", "◷", "◶", "◵"],
|
|
|
|
big_circle: ["◐", "◓", "◑", "◒"],
|
|
|
|
boom: [".", "o", "O", "@", "*"],
|
|
|
|
pipe: ["|", "/", "-", "\\"],
|
|
|
|
alphabet: ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z"],
|
|
|
|
matrix: ["ヲ", "ァ", "ィ", "ゥ", "ェ", "ォ", "ャ", "ュ", "ョ", "ッ", "ア", "イ", "ウ", "エ", "オ", "カ", "キ", "ク", "ケ", "コ", "サ", "シ", "ス", "セ", "ソ", "タ", "チ", "ツ", "テ", "ト", "ナ", "ニ", "ヌ", "ネ", "ノ", "ハ", "ヒ", "フ", "ヘ", "ホ", "マ", "ミ", "ム", "メ", "モ", "ヤ", "ユ", "ヨ", "ラ", "リ", "ル", "レ", "ロ", "ワ", "ン"],
|
|
|
|
three_dots: [". ", ".. ", "..."],
|
|
|
|
eyes: ["◡◡", "⊙⊙", "◠◠"],
|
|
|
|
dots: ["⠁", "⠂", "⠄", "⡀", "⢀", "⠠", "⠐", "⠈"],
|
|
|
|
snake: ["⣾", "⣽", "⣻", "⢿", "⡿", "⣟", "⣯", "⣷"],
|
|
|
|
snake1: ["⠋", "⠙", "⠹", "⠸", "⠼", "⠴", "⠦", "⠧", "⠇", "⠏"],
|
|
|
|
snake2: ["⠋", "⠙", "⠚", "⠒", "⠂", "⠂", "⠒", "⠲", "⠴", "⠦", "⠖", "⠒", "⠐", "⠐", "⠒", "⠓", "⠋"],
|
|
|
|
square1: ["■", "□", "▪", "▫"],
|
|
|
|
square2: ["▖", "▘", "▝", "▗"],
|
|
|
|
square3: ["▁", "▃", "▄", "▅", "▆", "▇", "█", "▇", "▆", "▅", "▄", "▃", "▁"],
|
|
|
|
square4: ["▉", "▊", "▋", "▌", "▍", "▎", "▏", "▎", "▍", "▌", "▋", "▊", "▉"],
|
|
|
|
square5: ["▁", "▂", "▃", "▄", "▅", "▆", "▇", "█", "▉", "▊", "▋", "▌", "▍", "▎", "▏", "▏", "▎", "▍", "▌", "▋", "▊", "▉", "█", "▇", "▆", "▅", "▄", "▃", "▂", "▁"],
|
|
|
|
thin_arrow: ["←", "↑", "→", "↓"],
|
|
|
|
big_arrow: ["⇐", "⇖", "⇑", "⇗", "⇒", "⇘", "⇓", "⇙"],
|
|
|
|
balloon: [".", "o", "O", "°", "O", "o", "."],
|
|
|
|
progress: ["[ ]", "[= ]", "[== ]", "[=== ]", "[==== ]", "[===== ]", "[====== ]", "[======= ]", "[======== ]", "[========= ]", "[==========]"],
|
|
|
|
progress1: ["(*---------)", "(-*--------)", "(--*-------)", "(---*------)", "(----*-----)", "(-----*----)", "(------*---)", "(-------*--)", "(--------*-)", "(---------*)"],
|
|
|
|
progress2: ["█▒▒▒▒▒▒▒▒▒", "███▒▒▒▒▒▒▒", "█████▒▒▒▒▒", "███████▒▒▒", "██████████"],
|
|
|
|
progress3: ["[ ]", "[=> ]", "[===> ]", "[=====> ]", "[======> ]", "[========> ]", "[==========> ]", "[============> ]", "[==============> ]", "[================> ]", "[==================> ]", "[===================>]"],
|
|
|
|
fish: [">))'> ", " >))'> ", " >))'> ", " >))'> ", " >))'>", " <'((<", " <'((< ", " <'((< ", " <'((< ", "<'((< "],
|
2015-12-30 16:21:42 +02:00
|
|
|
}
|
|
|
|
end
|