Class: AsciiDrawingGenerator::Drawing

Inherits:
Object
  • Object
show all
Defined in:
lib/ascii_drawing_generator.rb

Class Method Summary collapse

Class Method Details

.dead_catObject



150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
# File 'lib/ascii_drawing_generator.rb', line 150

def self.dead_cat

    dead_cat ='
       / \      / \
      / ∆ \____/ ∆ \
     /              \
    /    X      X    \
    \    ~~ ▽ ~~     /
     \      __      /
      )============(
     /*    *   *   *\
    /  * | |   | |*  \
    |*   | | * | |  *|
    \____OOO___OOO___/'

end

.draw_catObject



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
# File 'lib/ascii_drawing_generator.rb', line 5

def self.draw_cat
  heads = []
  bodies = []
  heads.push('
        ∆        ∆
      /   \____/   \
     /∞∞∞∞∞∞∞∞∞∞∞∞∞∞\
    |    ಠ      ಠ    |
    |   ==  ︿  ==   |
     \              /')

    heads.push('
        ^        ^
      /   \____/   \
     /      VVV     \
    |   。◕      ◕。   |
    |   ==  ‿‿  ==   |
     \              /')
     heads.push('
       / \      / \
      / ∆ \____/ ∆ \
     /              \
    /   (。♥)  (。♥)   \
    \  *    ▽     *  /
     \      ‿‿      /')
     heads.push('
       / \      / \
      / ∆ \____/ ∆ \
     /   _      _   \
    /   (o)    (o)   \
    \   ~~~ (*) ~~~  /
     \       ^      /')
     heads.push('
        ^        ^
      /   \____/   \
     /              \
    |    ^ ---- ^    |
    |                |
     \              /')
     heads.push('
       / \      / \
      /   \____/   \
     /  ...    ...  \
    /    ▽      ▽    \
    \      =:=       /
     \              /')
  bodies.push('
      )============(
     />            <\
    />   | |   | |  <\
    |>   | |   | |  <|
    \____OOO___OOO___/')
   bodies.push('
      )✧✧✧✧✧✧✧✧✧✧✧✧(
     /              \
    |   | | __ | |   |
    |   OOO    OOO   |
    |    |      |    |
    |     \____/     |
     \__OOO____OOO__/')
    bodies.push('
      )◆◇◆◇◆◇◆◇◆◇◆◇(
     /◭            ◮\
    /◭  |  |  |  |  ◮\
    |◭  |◆◇|  |◇◆|  ◮|
    \__OOO____OOO___/')
    bodies.push('
     (--------------)
    (|    |   |    | )
   (-|    |---|    |--)      ))))
  (  |    |   |    |   )       ))
 (   |    |   |    |    )      ))
 (___()()()___()()()____)))))))))')
 bodies.push('
      )=====*======(
     / ~     ~      \  /\
    |   |  ~     |~  | \ \
    | ~ |     ~  |   |  \ \
   /|   | ~      |  ~|\ / /
   \|  ~|      ~ |   |// /
    /___/--------/___/__/')
    bodies.push('
     /=∞=∞=∞=∞=∞=∞=∞\
    /                \
   |   |          |   |
   |   |          |   |
    \   \        /   /
     \___\------/___/
      ')
  heads[rand(heads.size)]+bodies[rand(bodies.size)]
end

.draw_humanObject



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
# File 'lib/ascii_drawing_generator.rb', line 97

def self.draw_human

  hair = []
  eyes = []
  mouth = []
  bodies = []

  hair.push('
     ______  ___
    /      \/    \
   /              \
  |  ___________  |')

   hair.push('
  /\/\/\/\/\/\/\/\
  |               |
  |  ___________  |')

  eyes.push('
  | | ___   ___ | |
  | | (。◕) (。◕) | |')

   eyes.push('
  | | ___   ___ | |
  | | (●。) (●。) | |')


  mouth.push('
   \|     っ    |/
    |   〇      |
     \_________/')

  mouth.push('
   \|  ミ っ ミ |/
    |    ‿      |
     \_________/')


    bodies.push('
        |   |
     ___=====___
    /           \
   /  |       |  \ ')
  bodies.push('
        |   |
     ___*****___
    /-----------\
   /--|-------|--\ ')

  hair[rand(hair.size)]+eyes[rand(eyes.size)]+mouth[rand(mouth.size)]+bodies[rand(bodies.size)]

end