JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
7f80a76d2e548f61257d5e4004c1de59d0f02c90
[watch-my-terminal.git] / terminal.coffee
1 # this file is used by the client and server.
2
3 # work around lack of module system in the browser:
4 if exports?
5         my_exports = exports
6 else
7         window.terminal = {}
8         my_exports = window.terminal
9
10 class Terminal
11         # public:
12         constructor: (width, height) ->
13                 @width = 1
14                 @height = 1
15                 @text = []
16                 @attributes = []
17                 @x = 0
18                 @y = 0
19                 @a = 0 # cursor attributes
20                 @partial = ''
21                 @resize width, height
22         
23         resize: (width, height) ->
24                 # FIXME: write a version that retains some of the data
25                 @width = width
26                 @height = height
27                 @text = []
28                 @attributes = []
29                 for y in [0...height]
30                         @text[y] = []
31                         @attributes[y] = []
32                         for x in [0...width]
33                                 @text[y].push ' '
34                                 @attributes[y].push 0
35
36         # pass data from stdout
37         update: (data) ->
38                 return unless data?.length > 0
39                 if @partial.length > 0
40                         data = @partial + data
41                         @partial = ''
42                 parts = data.split(/\x1b\[/)
43                 if parts.length > 1
44                         if -1 is @escape_sequence_length parts[parts.length - 1]
45                                 @partial = parts.pop()
46                 if parts.length > 0
47                         for i in [0...parts.length]
48                                 if i is 0
49                                         @update_text parts[i]
50                                 else
51                                         @update_sequence_then_text parts[i]
52                 return
53         
54         clear_rest_of_line: ->
55                 for i in [@x...@width]
56                         @text[@y][i] = ' '
57                         @attributes[@y][i] = @a
58         
59         add_new_line: ->
60                 # clear top line
61                 for i in [0...@width]
62                         @text[0][i] = ' '
63                         @attributes[0][i] = 0
64                 # move (newly cleared) top line to the bottom
65                 tmp = @text.shift()
66                 @text.push(tmp)
67                 tmp = @attributes.shift()
68                 @attributes.push(tmp)
69                 # slide cursor up with rest of text
70                 @y -= 1
71         
72         wrap_to_next_line: ->
73                 if @y is @height - 1
74                         @add_new_line()
75                 @y += 1
76                 @x = 0
77
78         # str has no escape sequences
79         update_text: (str) ->
80                 return unless str.length > 0
81                 for c in str
82                         switch c
83                                 when '\t' # tab
84                                         @update_text "        ".substr(@x % 8)
85                                 when '\x07' # bell
86                                         false
87                                 when '\x0d' # cr
88                                         @x = 0
89                                 when '\x08' # backspace
90                                         if @x > 0
91                                                 @x -= 1
92                                                 @text[@y][@x] = ' '
93                                                 # should this set the attribute too?
94                                 when '\x0a', '\x0b' # lf, vertical tab (same thing)
95                                         @wrap_to_next_line()
96                                 else
97                                         @text[@y][@x] = c
98                                         @attributes[@y][@x] = @a
99                                         @x += 1
100                                         if @x is @width
101                                                 @wrap_to_next_line()
102                 return
103         
104         set_attribute_bits: (mask, value) ->
105                 @a = (@a & ~mask) | value
106
107         csi_m: default: "0", go: ->
108                 for i in arguments
109                         fixed = i
110                         while fixed[0] is '0'
111                                 fixed = fixed.substr 1
112                         switch fixed
113
114                                 # remove all style/color
115                                 when '' # leading zeros are removed (even if that's all of them)
116                                         @set_attribute_bits 0xffffff, 0
117
118                                 # style attributes
119                                 when '1' # bold
120                                         @set_attribute_bits 0x10000, 0x10000
121                                 when '4' # underline
122                                         @set_attribute_bits 0x20000, 0x20000
123                                 when '5' # blink
124                                         @set_attribute_bits 0x40000, 0x40000
125                                 when '8' # invisible
126                                         @set_attribute_bits 0x80000, 0x80000
127                                 
128                                 # disable style attributes
129                                 when '22' # not bold... according to a page
130                                         @set_attribute_bits 0x10000, 0
131                                 when '21' # ... though this would make more sense for "not bold"
132                                         @set_attribute_bits 0x10000, 0
133                                 when '24' # not underline
134                                         @set_attribute_bits 0x20000, 0
135                                 when '25' # not blink
136                                         @set_attribute_bits 0x40000, 0
137                                 when '28' # not invisible
138                                         @set_attribute_bits 0x80000, 0
139
140                                 # 8 fg colors
141                                 when '30' # fg black
142                                         @set_attribute_bits 0xff, 0x00
143                                 when '31' # fg red
144                                         @set_attribute_bits 0xff, 0x01
145                                 when '32' # fg green
146                                         @set_attribute_bits 0xff, 0x02
147                                 when '33' # fg yellow
148                                         @set_attribute_bits 0xff, 0x03
149                                 when '34' # fg blue
150                                         @set_attribute_bits 0xff, 0x04
151                                 when '35' # fg magenta
152                                         @set_attribute_bits 0xff, 0x05
153                                 when '36' # fg cyan
154                                         @set_attribute_bits 0xff, 0x06
155                                 when '37', '39' # fg white  (39 is default)
156                                         @set_attribute_bits 0xff, 0x07
157
158                                 # 8 bg colors
159                                 when '40' # bg black
160                                         @set_attribute_bits 0xff00, 0x0000
161                                 when '41' # bg red
162                                         @set_attribute_bits 0xff00, 0x0100
163                                 when '42' # bg green
164                                         @set_attribute_bits 0xff00, 0x0200
165                                 when '43' # bg yellow
166                                         @set_attribute_bits 0xff00, 0x0300
167                                 when '44' # bg blue
168                                         @set_attribute_bits 0xff00, 0x0400
169                                 when '45' # bg magenta
170                                         @set_attribute_bits 0xff00, 0x0500
171                                 when '46' # bg cyan
172                                         @set_attribute_bits 0xff00, 0x0600
173                                 when '47' # bg white
174                                         @set_attribute_bits 0xff00, 0x0700
175                                 when '49' # bg default
176                                         @set_attribute_bits 0xff00, 0x0000
177
178                                 # bright fg colors
179                                 when '90' # fg bright black
180                                         @set_attribute_bits 0xff, 0x08
181                                 when '91' # fg bright red
182                                         @set_attribute_bits 0xff, 0x09
183                                 when '92' # fg bright green
184                                         @set_attribute_bits 0xff, 0x0a
185                                 when '93' # fg bright yellow
186                                         @set_attribute_bits 0xff, 0x0b
187                                 when '94' # fg bright blue
188                                         @set_attribute_bits 0xff, 0x0c
189                                 when '95' # fg bright magenta
190                                         @set_attribute_bits 0xff, 0x0d
191                                 when '96' # fg bright cyan
192                                         @set_attribute_bits 0xff, 0x0e
193                                 when '97' # fg bright white
194                                         @set_attribute_bits 0xff, 0x0f
195
196                                 # bright bg colors
197                                 when '100' # bg bright black
198                                         @set_attribute_bits 0xff, 0x08
199                                 when '101' # bg bright red
200                                         @set_attribute_bits 0xff, 0x09
201                                 when '102' # bg bright green
202                                         @set_attribute_bits 0xff, 0x0a
203                                 when '103' # bg bright yellow
204                                         @set_attribute_bits 0xff, 0x0b
205                                 when '104' # bg bright blue
206                                         @set_attribute_bits 0xff, 0x0c
207                                 when '105' # bg bright magenta
208                                         @set_attribute_bits 0xff, 0x0d
209                                 when '106' # bg bright cyan
210                                         @set_attribute_bits 0xff, 0x0e
211                                 when '107' # bg bright white
212                                         @set_attribute_bits 0xff, 0x0f
213
214
215                                 else
216                                         # if we don't recognize the style, go back to default
217                                         @set_attribute_bits 0xffffff, 0
218                 return
219
220         # str is the whole escape sequence (minus the esc[ prefix)
221         update_sequence: (str) ->
222                 command = @["csi_#{str.substr str.length - 1}"]
223                 return unless command?
224                 args = str.substr(0, str.length - 1).split ';'
225                 for i in [0...args.length]
226                         if args[i] is ''
227                                 args[i] = command.default
228                 command.go.call this, args...
229
230         update_sequence_then_text: (str) ->
231                 len = @escape_sequence_length str
232                 if len is -1
233                         console.log "couldn't find escape sequence here: #{str.substr 0, 25}"
234                         @update_text "ESC[" + str
235                 else
236                         @update_sequence str.substr 0, len
237                         @update_text str.substr len
238
239         escape_sequence_length: (str) ->
240                 parts = str.match(/^[0-9;?]{0,25}./)
241                 return -1 unless parts?
242                 return parts[0].length
243
244 my_exports.new = (width, height) ->
245         return new Terminal width, height