summaryrefslogtreecommitdiff
path: root/client/ui.c
blob: 7731215640ac0f63f3b58d3d7872b8bff3acd3f6 (plain)
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
80
81
82
83
84
85
#include <ncurses.h>
#include <string.h>

#include "../shared/bin.h"
#include "../shared/util.h"
#include "i18n.h"
#include "main.h"
#include "strings.h"
#include "term.h"
#include "time.h"
#include "ui.h"

WINDOW *g_w2_ui_win;
WINDOW *g_w2_ui_pad_tabbar;
WINDOW *g_w2_ui_pad_body;
unsigned int g_w2_ui_width				= 0;
unsigned int g_w2_ui_height				= 0;
void (*g_w2_ui_current_tab)(bool first) = &w2_ui_dirc;
void (*g_w2_ui_last_tab)(bool first)	= NULL;

void w2_wmvaddstr(WINDOW *win, unsigned int y, unsigned int x, char *str) {
	wmove(win, y, x);
	waddstr(win, str);
}

void w2_wmvaddnstr(WINDOW *win, unsigned int y, unsigned int x, char *str, unsigned int len) {
	wmove(win, y, x);
	waddnstr(win, str, len);
}

void w2_ui_main() {
	g_w2_ui_width  = getmaxx(g_w2_ui_win);
	g_w2_ui_height = getmaxy(g_w2_ui_win);

	w2_ui_paint();
}

void w2_ui_paint() {
	w2_ui_paint_statusbar();
	if (w2_timer_end(W2_TIMER_UPDATE) >= (1000 / W2_UI_UPDATE_FPS)) {
		(*g_w2_ui_current_tab)(g_w2_ui_last_tab != g_w2_ui_current_tab);
		g_w2_ui_last_tab = g_w2_ui_current_tab;
		w2_timer_start(W2_TIMER_UPDATE);
	}
	prefresh(g_w2_ui_pad_tabbar, 0, 0, 2, 0, 2, g_w2_ui_width - 1);
	prefresh(g_w2_ui_pad_body, 0, 0, 4, 0, g_w2_ui_height - 2, g_w2_ui_width - 1);
	// wrefresh(g_w2_ui_win);
}

void w2_ui_paint_statusbar() {
	char temp[g_w2_ui_width];

	for (unsigned int i = 0; i < g_w2_ui_width; i++) temp[i] = ' ';
	mvaddnstr(0, 0, temp, g_w2_ui_width);
	mvaddnstr(1, 0, temp, g_w2_ui_width);
	mvaddnstr(2, 0, temp, g_w2_ui_width);

	g_w2_state.connected ? sprintf(temp, W2_UI_CONN_STAT_CONNECTED ", %ims %s", g_w2_state.ping,
								   W2_UI_CONN_STAT_PING)
						 : sprintf(temp, W2_UI_CONN_STAT_DISCONNECTED);
	mvaddstr(0, 0, temp);

	sprintf(temp, "(%s)", g_w2_state.info.build_str);
	mvaddstr(0, g_w2_ui_width / 2 - strlen(temp) / 2, temp);

	sprintf(temp, "%s %i%%", W2_UI_BATT_STAT_BATTERY, g_w2_state.battery_level);
	mvaddstr(0, g_w2_ui_width - strlen(temp), temp);

	sprintf(temp, "[%s]", g_w2_mode_strings[g_w2_state.mode]);
	mvaddstr(1, 0, temp);

	sprintf(temp, "%i %s, %i %s", 0, W2_UI_EXPT_STAT_WARNINGS, 0, W2_UI_EXPT_STAT_ERRORS);
	mvaddstr(1, g_w2_ui_width - strlen(temp), temp);

	w2_ui_paint_tabbar();

	for (unsigned int i = 0; i < g_w2_ui_width; i++) temp[i] = '-';
	mvaddnstr(3, 0, temp, g_w2_ui_width);
}

void w2_ui_paint_tabbar() {
	char temp[g_w2_ui_width];
	sprintf(temp, "-- tab bar here --");
	w2_wmvaddstr(g_w2_ui_pad_tabbar, 0, g_w2_ui_width / 2 - strlen(temp) / 2, temp);
}