Encoding.
[hackover2013-badge-firmware.git] / core / cmd / ansi.h
1 /**************************************************************************/
2 /*!
3 @file ansi.h
4 @author K. Townsend (microBuilder.eu)
5
6 @section LICENSE
7
8 Software License Agreement (BSD License)
9
10 Copyright (c) 2012 K. Townsend
11 All rights reserved.
12
13 Redistribution and use in source and binary forms, with or without
14 modification, are permitted provided that the following conditions are met:
15 1. Redistributions of source code must retain the above copyright
16 notice, this list of conditions and the following disclaimer.
17 2. Redistributions in binary form must reproduce the above copyright
18 notice, this list of conditions and the following disclaimer in the
19 documentation and/or other materials provided with the distribution.
20 3. Neither the name of the copyright holders nor the
21 names of its contributors may be used to endorse or promote products
22 derived from this software without specific prior written permission.
23
24 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ''AS IS'' AND ANY
25 EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
26 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
27 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY
28 DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
29 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
30 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
31 ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
33 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34 */
35 /**************************************************************************/
36
37 #ifndef __ANSI_H__
38 #define __ANSI_H__
39
40 #include "projectconfig.h"
41
42 // See: http://www.inwap.com/pdp10/ansicode.txt
43
44 // Ex: printf("%s%s%s Bold Black Inverted Text %s \r\n", ANSICODES_GRAPHICS_STYLE_BOLD, ANSICODES_GRAPHICS_FORECOLOR_BLACK, ANSICODES_GRAPHICS_STYLE_NEGATIVE, ANSICODES_GRAPHICS_CLEARALL);
45
46 #define ANSICODES_GRAPHICS_CLEARALL "\e[0m"
47 #define ANSICODES_GRAPHICS_STYLE_BOLD "\e[1m"
48 #define ANSICODES_GRAPHICS_STYLE_DIM "\e[2m"
49 #define ANSICODES_GRAPHICS_STYLE_ITALIC "\e[3m"
50 #define ANSICODES_GRAPHICS_STYLE_UNDERSCORE "\e[4m"
51 #define ANSICODES_GRAPHICS_STYLE_SLOWBLINK "\e[5m"
52 #define ANSICODES_GRAPHICS_STYLE_FASTBLINK "\e[6m"
53 #define ANSICODES_GRAPHICS_STYLE_NEGATIVE "\e[7m"
54 #define ANSICODES_GRAPHICS_STYLE_CONCEALED "\e[8m" // Do not display character
55 #define ANSICODES_GRAPHICS_STYLE_CANCELBOLDDIM "\e[22m"
56 #define ANSICODES_GRAPHICS_STYLE_CANCELUNDERLINE "\e[24m"
57 #define ANSICODES_GRAPHICS_STYLE_CANCELBLINK "\e[25m"
58 #define ANSICODES_GRAPHICS_STYLE_CANCELNEGATIVE "\e[27m"
59 #define ANSICODES_GRAPHICS_FORECOLOR_BLACK "\e[30m"
60 #define ANSICODES_GRAPHICS_FORECOLOR_RED "\e[31m"
61 #define ANSICODES_GRAPHICS_FORECOLOR_GREEN "\e[32m"
62 #define ANSICODES_GRAPHICS_FORECOLOR_YELLOW "\e[33m"
63 #define ANSICODES_GRAPHICS_FORECOLOR_BLUE "\e[34m"
64 #define ANSICODES_GRAPHICS_FORECOLOR_MAGENTA "\e[35m"
65 #define ANSICODES_GRAPHICS_FORECOLOR_CYAN "\e[36m"
66 #define ANSICODES_GRAPHICS_FORECOLOR_WHITE "\e[37m"
67 #define ANSICODES_GRAPHICS_BACKCOLOR_BLACK "\e[40m"
68 #define ANSICODES_GRAPHICS_BACKCOLOR_RED "\e[41m"
69 #define ANSICODES_GRAPHICS_BACKCOLOR_GREEN "\e[42m"
70 #define ANSICODES_GRAPHICS_BACKCOLOR_YELLOW "\e[43m"
71 #define ANSICODES_GRAPHICS_BACKCOLOR_BLUE "\e[44m"
72 #define ANSICODES_GRAPHICS_BACKCOLOR_MAGENTA "\e[45m"
73 #define ANSICODES_GRAPHICS_BACKCOLOR_CYAN "\e[46m"
74 #define ANSICODES_GRAPHICS_BACKCOLOR_WHITE "\e[47m"
75
76 #endif
This page took 0.060517 seconds and 5 git commands to generate.