]> gitweb.factorcode.org Git - factor.git/blob - library/ansi.factor
fac785efc6d4767d7a48301003aa1d2525da94b4
[factor.git] / library / ansi.factor
1 !:folding=indent:collapseFolds=1:
2
3 ! $Id$
4 !
5 ! Copyright (C) 2004 Slava Pestov.
6
7 ! Redistribution and use in source and binary forms, with or without
8 ! modification, are permitted provided that the following conditions are met:
9
10 ! 1. Redistributions of source code must retain the above copyright notice,
11 !    this list of conditions and the following disclaimer.
12
13 ! 2. Redistributions in binary form must reproduce the above copyright notice,
14 !    this list of conditions and the following disclaimer in the documentation
15 !    and/or other materials provided with the distribution.
16
17 ! THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
18 ! INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
19 ! FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
20 ! DEVELOPERS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 ! SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
22 ! PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
23 ! OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
24 ! WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
25 ! OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
26 ! ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28 IN: ansi
29 USE: combinators
30 USE: lists
31 USE: kernel
32 USE: format
33 USE: namespaces
34 USE: stack
35 USE: streams
36 USE: strings
37
38 !!! Some words for outputting ANSI colors.
39 : black   0 ; inline
40 : red     1 ; inline
41 : green   2 ; inline
42 : yellow  3 ; inline
43 : blue    4 ; inline
44 : magenta 5 ; inline
45 : cyan    6 ; inline
46 : white   7 ; inline
47
48 : clear ( -- code )
49     #! Clear screen
50     "\e[2J\e[H" ; inline
51
52 : reset ( -- code )
53     #! Reset ANSI color codes.
54     "\e[0m" ; inline
55
56 : bold ( -- code )
57     #! Switch on boldface.
58     "\e[1m" ; inline
59
60 : fg ( color -- code )
61     #! Set foreground color.
62     "\e[3" swap "m" cat3 ; inline
63
64 : bg ( color -- code )
65     #! Set foreground color.
66     "\e[4" swap "m" cat3 ; inline
67
68 : ansi-attrs ( -- esc )
69     "bold"    get [ bold % ] when
70     "ansi-fg" get [ fg % ] when*
71     "ansi-bg" get [ bg % ] when* ;
72
73 : ansi-attr-string ( string -- string )
74     <% ansi-attrs % reset % %> ;
75
76 : <ansi-stream>/fwrite-attr ( string stream -- )
77     [ ansi-attr-string ] dip fwrite ;
78
79 : <ansi-stream> ( stream -- stream )
80     #! Wraps the given stream in an ANSI stream. ANSI streams
81     #! support the following character attributes:
82     #! bold    - if not f, text is boldface.
83     #! ansi-fg - foreground color
84     #! ansi-bg - background color
85     <extend-stream> [
86         [
87             "stream" get <ansi-stream>/fwrite-attr
88         ] "fwrite-attr" set
89     ] extend ;