-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.h
79 lines (61 loc) · 2.42 KB
/
config.h
1
2
3
4
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
/*
* =====================================================================================
*
* Filename: config.h
*
* Description: configuration file
*
* Version: 1.0
* Created: Wednesday 24 December 2014 02:07:29 IST
* Revision: none
* Compiler: gcc
*
* Author: Ankan Biswas (talk2ankan), [email protected]
* Company: Bug17, West Bengal
*
* =====================================================================================
*/
#ifndef __CONFIG_H__
#define __CONFIG_H__
#define LOAD_PANEL_HEIGHT 18 /* panel height and width */
#define LOAD_PANEL_WIDTH 60
#define load_box_height 2 /* loading box height and width */
#define load_box_width 4
/*Change Color As Per Your Choise
COLOR_NAME COLOR_VALUE
---------------------------
COLOR_BLACK 0
COLOR_RED 1
COLOR_GREEN 2
COLOR_YELLOW 3
COLOR_BLUE 4
COLOR_MAGENTA 5
COLOR_CYAN 6
COLOR_WHITE 7
*/
#define LOAD_PANEL_COLOR COLOR_GREEN /* give COLOR_VALUE or COLOR_NAME as per your choise */
#define LOAD_BOX_COLOR COLOR_RED
#define LOAD_SPEED 50000 /* time to load your application */
#define LOAD_COUNT 98 /* number of moves or set the position of the box after loading*/
#define LOAD_TAG "loading..." /*load name*/
#define LOAD_TAG_POSITION 2 /*load name position, up and down only*/
/*NOTES OR LINES YOUR U WANT TO DISPLAY AFTER THE LOAD*/
#define line0 " "
#define line1 " Who am i? "
#define line2 ""
#define line3 "Howdy, I am Ankan Biswas. A linux freak in West Bengal."
#define line4 "I work at nowhere. "
#define line5 " "
#define line6 "------------------------------------------------------"
#define line7 " Version: 1.0 "
#define line8 " Created: Wednesday 24 December 2014 02:07:29 IST"
#define line9 "Compiler: gcc "
#define line10 "------------------------------------------------------"
#define line11 " Author: Ankan Biswas (talk2ankan) "
#define line12 " Email: [email protected] "
#define line13 "Website: http://ankanbiswas.in "
#define line14 "------------------------------------------------------"
#define line15 " < 'spacebar' to continue > < 'q' to quit >"
/* execute command of shell */
#define COMMAND "./game 3"
#endif