source: libcaca/trunk/doc/shapes.txt @ 19

Last change on this file since 19 was 19, checked in by Sam Hocevar, 20 years ago
  • real Debian package files.
  • two new types of aliens. only one rules.
  • removed gfx_write in favor of gfx_putchar and gfx_putstr.
  • added bonuses at alien death. they do nothing yet.
  • seeker missiles. 'b' to test.
  • weapon resolution is now 16*char. needs to be generalized.
  • fixed the supernova bugs. center could collide with the tunnel, and the last frame was badly displayed.
  • lots of cleanups everywhere.
File size: 1.9 KB
Line 
1
2Starship
3--------
4
5   /\      /~\
6  (())     ]O[
7 I<__>I   I\#/I
8
9
10Aliens
11------
12
13 ,---.  ,---.
14 \O o/  \o O/
15 ^^^^^  ^^^^^
16 .     ,  .       ,
17  \oXo/    `-oXo-'  `--oXo--'  ,-oXo-.    ,oXo.
18   `V'       `V'       `V'    '  `V'  `  / `V' \
19
20  ,---.   ,---.   ,---.   ,---.   ,---.
21 (_°_°_) (__°_°) (°__°_) (_°__°) (°_°__)
22   ^ ^      ^ ^   ^  ^     ^  ^   ^ ^
23  ,---.   ,---.   ,---.   ,---.   ,---.
24 (((o))) ((((o)) (((o))) ((o)))) (((o)))
25  `---'   `---'   `---'   `---'   `---'
26 _o|o_
27  T|T
28
29Bonus
30-----
31  _    _    _
32 /|\  / \  /.\
33 \|/  \_/  \_/
34
35 ,--.  ,--.  ,--.
36 \VV/  \~~/  \  /
37  \/    \/    \/
38  _  _   _ _
39 ( `' ) ( ' )
40  \  /   `v'
41   \/
42   ___
43  / g \
44  \___/
45
46Shots
47-----
48
49.o@  . o @   .  o  @
50
51.o()  . o ()   .  o  ()
52
53 |     /   _,  ___  ._   \
54 |    /   '           `   \
55
56
57  |  __/   \__   |
58 /                \
59
60
61 \   __     __    /
62  |    \   /     |
63
64
65Explosions
66----------
67
68             |   .v,  .v,  .v,  .v,  .v,  .v,  . ,
69   +    o   -o-  >o<  >o<  >o<  >o<  > <  > <
70             |   '^`  '^`  '^`  '^`  '^`  '^`  ' `
71
72                      .|,    .v,    .v,    .v,    .v,    .v,    . ,
73   +     o     -o-   --o--  > o <  >( )<  >   <  > o <  >( )<  -   -
74                      '|`    '^`    '^`    '^`    '^`    '^`    ' `
75
76             _   ._,  .v,  _\~/_  _\ /_  . ' ,
77   +    o   )_(  )_(  > <  >   <  _   _ 
78                 ' `  '^`  ~/_\~   / \   ' . `
79
80             _   ._,  .v,  . ,
81   +    o   )_(  )_(  > <     
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
Note: See TracBrowser for help on using the repository browser.