-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrp.c
67 lines (56 loc) · 1.4 KB
/
trp.c
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
#include <stdio.h>
#include <curses.h>
#include "trp.h"
void drawTrp(WINDOW * win, int x, int y, int size1, int color, int full)
{
if(full==0)
{
/*******************************************************************/
/*-----------------------------METHOD------------------------------*/
/************* create horizontal lines in y and y+size *************/
/****** in line y - create from place x+size/3 to x+size*2/3 ******/
/*********** in line y+size/3 create line from x to x+size *********/
/************* create vertical lines in x and x+size/3: ************/
/* each time you do down, start on x earlier and finish on x after */
/*******************************************************************/
int size = (size1-1)/3;
int i;
color_set(color, NULL);
for (i=x+size; i<=x+(2*size);i++)
{
mvwaddstr(win,y, i, "*" );
}/*top*/
for (i=x; i<=x+3*size-1;i++)
{
mvwaddstr(win,y+size, i, "*" );
}/*bottom*/
/*to print the top and bottom lines*/
int j =y;
for (i=x+size;i>=x;i--)
{
mvwaddstr(win,j++, i, "*" );
}
j =y;
for(i=x+2*size; i<=x+3*size; i++)
{
mvwaddstr(win,j++, i, "*" );
}/*to print the side lines*/
refresh();
}
if(full==1)
{
int size = (size1-1)/3;
int i,j, l=0,h=0;
color_set(color, NULL);
for(j=y+size; j>=y;--j)
{
for (i=x+l; i<=x+(3*size)-h;i++)
{
mvwaddstr(win,j, i, "*" );
}
++l;
++h;
}
refresh();
}
}