aboutsummarylogtreecommitdiffstats
path: root/graph.c
diff options
context:
space:
mode:
authorAntony Kellermann2018-03-12 14:28:25 -0400
committerAntony Kellermann2018-03-12 14:28:25 -0400
commit3f2c67221fc705e202aef9f9ef46e715acb6d44f (patch)
treeb632d854a89c8ed526c5d4c5a96f6757354c591d /graph.c
parent9581f647acc6afbbc0c0be2904e1ac5ee4bd4007 (diff)
downloadaur-3f2c67221fc705e202aef9f9ef46e715acb6d44f.tar.gz
Transitioned graph to NCurses
Diffstat (limited to 'graph.c')
-rw-r--r--graph.c54
1 files changed, 39 insertions, 15 deletions
diff --git a/graph.c b/graph.c
index ffbafd40bd26..9313ebfb4a17 100644
--- a/graph.c
+++ b/graph.c
@@ -1,13 +1,37 @@
#include "graph.h"
+void graph_main(const char* ticker_name_string){
+ initscr();
+ noecho();
+ keypad(stdscr, TRUE);
+ curs_set(0);
+ double* data = api_get_hist_5y(ticker_name_string);
+ if (data != NULL) {
+ time_t now = time(NULL);
+ struct tm* ts = localtime(&now);
+ ts->tm_year -= 5;
+ graph_print(data, ts);
+ }
+ else puts("Invalid symbol.");
+
+ int ch;
+ while (1) {
+ ch = getch();
+ if (ch == 'q')
+ break;
+ }
+ endwin();
+ free(data);
+}
+
void graph_print(const double* points, struct tm* start_time) {
struct winsize w;
ioctl(STDOUT_FILENO, TIOCGWINSZ, &w);
- int cols = w.ws_col - 10; // 10 offset per side to give space for graph labels
+ int cols = w.ws_col - 11; // 10 offset to give space for graph labels + 1 for right side
int lines = w.ws_row - ROWS_SPACING;
lines -= lines % ROWS_SPACING; // Round down to multiple of 5
if (cols < 10 || lines < 10) {
- puts("Terminal not large enough.\n");
+ puts("Terminal not large enough.");
return;
}
@@ -24,35 +48,35 @@ void graph_print(const double* points, struct tm* start_time) {
for (int i = lines; i >= 0; i--) {
if (i % ROWS_SPACING == 0) // Print y-axis price labels with width 10
- printf("%9.2lf ", (max - ((lines - i) * line_diff)));
- else printf(" ");
+ printw("%9.2lf ", (max - ((lines - i) * line_diff)));
+ else printw(" ");
for (int j = 0; j < cols; j++) {
dat = points[(int) ((double) j * data_length / cols)];
if (dat <= (max - ((lines - i) * line_diff)) && dat > (min + ((i - 1) * line_diff)))
- putchar('*');
+ addch(ACS_DIAMOND);
else if (i % ROWS_SPACING == 0 && j % COLS_SPACING == 0)
- putchar('+');
+ addch(ACS_PLUS);
else if (i % ROWS_SPACING == 0)
- putchar('-');
+ addch(ACS_HLINE);
else if (j % COLS_SPACING == 0)
- putchar('|');
- else putchar(' ');
+ addch(ACS_VLINE);
+ else addch(' ');
}
- putchar('\n');
+ addch('\n');
}
- printf(" ");
+ printw(" ");
char time_string[16];
- int x = data_length / (COLS_SPACING - 1);
+ double x = (DAYS_TO_BUSINESS_DAYS_RATIO * data_length) / (cols / COLS_SPACING);
struct tm copy = *start_time;
for (int i = 0; i < cols; i++) {
if (i % (2 * COLS_SPACING) == 0 && cols - i > 10) { // Print x-axis date labels every two
if (i != 0)
- copy.tm_mday += 2 * x;
+ copy.tm_mday += x * 2;
mktime(&copy);
strftime(time_string, 16, "%m/%d/%Y", &copy);
- printf("%s ", time_string); // Width 2 * COLS_SPACING
+ printw("%s ", time_string); // Width 2 * COLS_SPACING
}
}
- putchar('\n');
+ addch('\n');
} \ No newline at end of file