summaryrefslogtreecommitdiff
path: root/src/client.c
blob: 79a012d332fdc88156347ab65d6421156fe3e371 (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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
#include <stdio.h>
#include <stdlib.h>
#include <termios.h>
#include <unistd.h>
#include <poll.h>
#include <errno.h>
#include <ctype.h>
#include <stdint.h>
#include "str.h"
#include "ser.h"
#include "net.h"
#include "ticker.h"
#include "sig.h"
#include "content.h"
#include "chunk.h"

typedef struct {
	str name;
	uint64_t id;
} player;

typedef struct {
	peer conn;
	struct termios oldtio;
	str name;
	str pass;
	uint64_t self_id;
	array(player) players;
	str server_motd;
	chunk map;
	node *map_swap;
	vec2 player_pos;
} client;

void gfx_alt_buffer(bool enable)
{
	if (enable)
		printf("\e[?1049h\e[?25l");
	else
		printf("\e[?1049l\e[?25h");
}

void gfx_clear_effects()
{
	printf("\e[0m");
}

void gfx_set_color(color c, bool bg)
{
	printf("\e[%u;2;%u;%u;%um", bg ? 48 : 38, c.r, c.g, c.b);
}

void gfx_clear()
{
	printf("\e[2J");
}

void gfx_render(client *c, uint64_t dtime)
{
	gfx_clear();
	printf("\e[H");
	printf("%.*s\n", PSTR(c->server_motd));
	for (size_t i = 0; i < c->players.len; i++)
		printf("%.*s\n", PSTR(c->players.data[i].name));
	for (size_t y = 0; y < c->map.bounds.size.y; y++) {
		for (size_t x = 0; x < c->map.bounds.size.y; x++) {
			node *n = chunk_index(c->map, UVEC2(x, y));
			if (!n->present) {
				gfx_set_color(color_from_u32(0x555555), true);
				gfx_set_color(color_from_u32(0xffffff), false);
				printf("??");
			} else {
				gfx_set_color(n->col, true);
				printf("  ");
			}
		}
		gfx_clear_effects();
		printf("\n");
	}
	fflush(stdout);
}

void free_players(client *c)
{
	for (size_t i = 0; i < c->players.len; i++)
		free(c->players.data[i].name.data);

	free(c->players.data);

	c->players.len = 0;
	c->players.data = NULL;
}

void client_exit(client *c, int ret)
{
	free(c->name.data);
	free(c->pass.data);
	free(c->server_motd.data);

	free_players(c);

	peer_free(&c->conn);
	tcsetattr(STDIN_FILENO, TCSANOW, &c->oldtio);
	gfx_alt_buffer(false);
	fflush(stdout);

	exit(ret);
}

void handle_input(client *c, char ch)
{
	ch = tolower(ch);
	switch (ch) {
		case 'q': client_exit(c, EXIT_SUCCESS); break;
		default: break;
	}
}

void map_set_center(client *c, vec2 center)
{
	chunk old = c->map;

	c->map.data = c->map_swap;
	c->map.bounds.pos = center;
	c->map_swap = old.data;

	chunk_clear(c->map);
	chunk_copy(c->map, old);
}

bool deser_color(str *r, color *c)
{
	return deser_u8(r, &c->r) && deser_u8(r, &c->g) && deser_u8(r, &c->b);
}

bool deser_node(str *r, node *n)
{
	if (!deser_bool(r, &n->present)) return false;
	if (!n->present) return true;

	return deser_i8(r, &n->z)
		&& deser_color(r, &n->col);
}

bool handle_nodes(str *pkt, client *c)
{
	chunk ch;
	if (!deser_vec2(pkt, &ch.bounds.pos)) return false;
	if (!deser_uvec2(pkt, &ch.bounds.size)) return false;

	if (ch.bounds.size.x * ch.bounds.size.y > NODES_PKT_MAX) return false;

	node nodes[ch.bounds.size.x * ch.bounds.size.y];
	ch.pitch = ch.bounds.size.y;
	ch.data = nodes;

	for (uint32_t x = 0; x < ch.bounds.size.x; x++)
	for (uint32_t y = 0; y < ch.bounds.size.y; y++)
		if (!deser_node(pkt, chunk_index(ch, UVEC2(x, y)))) return false;

	chunk_copy(c->map, ch);
	return true;
}

bool handle_reset_map(str *pkt, client *c)
{
	(void) pkt;
	chunk_clear(c->map);
	return true;
}

bool handle_players(str *pkt, client *c)
{
	free_players(c);

	uint16_t len;
	if (!deser_u16(pkt, &len)) return false;

	c->players.data = malloc(sizeof *c->players.data * len);

	for (c->players.len = 0; c->players.len < len; c->players.len++) {
		player *p = &c->players.data[c->players.len];
		if (!deser_str(pkt, &p->name)) return false;
		if (!deser_u64(pkt, &p->id)) return false;
		if (str_eq(p->name, c->name))
			c->self_id = p->id;
		p->name = str_clone(p->name);
	}
	return true;
}

bool handle_hi(str *w, client *c)
{
	str motd;
	if (!deser_str(w, &motd)) return false;

	c->server_motd = str_clone(motd);
	return true;
}

bool handle_pkt(client *c, str pkt)
{
	pkt_type type;
	if (!deser_pkt_type(&pkt, &type))
		return false;

	switch (type) {
		case CPKT_HI: return handle_hi(&pkt, c);
		case CPKT_PLAYERS: return handle_players(&pkt, c);
		case CPKT_RESET_MAP: return handle_reset_map(&pkt, c);
		case CPKT_NODES: return handle_nodes(&pkt, c);
		default: return false;
	}
}

int main(int argc, char **argv)
{
	if (argc < 4) {
		fprintf(stderr, "usage: %s server port name [pass]\n", argv[0]);
		return EXIT_FAILURE;
	}

	signal_setup();

	client c = {0};

	const char *server = argv[1];
	const char *port = argv[2];
	c.name = str_clone(str_intro(argv[3]));
	c.pass = str_clone(argc < 5 ? S("") : str_intro(argv[4]));

	c.conn.socket = -1;

	tcgetattr(STDIN_FILENO, &c.oldtio); // TODO: handle error

	struct termios newtio = c.oldtio;
	newtio.c_lflag &= ~(ICANON | ECHO);
	tcsetattr(STDIN_FILENO, TCSANOW, &newtio); // TODO: handle error

	SET_NONBLOCK(STDIN_FILENO); // TODO: handle error

	int socket = socket_create(server, port, false);
	if (socket < 0)
		client_exit(&c, EXIT_FAILURE);
	str server_name = S("server");
	peer_init(&c.conn, socket, &server_name);

	setvbuf(stdout, NULL, _IOFBF, 0);
	gfx_alt_buffer(true);

	SEND_PKT(c.conn, SPKT_HI,
		ser_str(&pkt, c.name);
		ser_str(&pkt, c.pass);
	)

	c.map = chunk_alloc(box2_around(VEC2(0, 0), SIGHT_RANGE));
	c.map_swap = malloc(c.map.bounds.size.x * c.map.bounds.size.y * sizeof(node));

	ticker t;
	ticker_init(&t, NANOS/60);

	for (;;) {
		struct pollfd fds[2];

		fds[0].fd = STDIN_FILENO;
		fds[0].events = POLLIN;

		fds[1] = peer_prepare(&c.conn);

		if (poll(fds, 2, ticker_timeout(&t)) < 0) {
			switch (errno) {
				case EINTR: break;
				default: perror("poll"); continue;
			}
		}

		if (signal_stop)
			client_exit(&c, EXIT_SUCCESS);

		if (fds[0].revents) {
			// this is cursed
			// maybe dont do this idk
			char ch;
			errno = 0;
			while (read(STDIN_FILENO, &ch, 1) == 1)
				handle_input(&c, ch);
			switch (errno) {
				case 0: case EWOULDBLOCK: case EINTR: break;
				default: perror("read"); break;
			}
		}

		str pkt = peer_recv(&c.conn, fds[1]);
		if (c.conn.disco)
			client_exit(&c, EXIT_SUCCESS);
		if (pkt.len > 0 && !handle_pkt(&c, pkt))
			invalid_pkt(&c.conn, pkt);

		uint64_t dtime;
		if (ticker_tick(&t, &dtime))
			gfx_render(&c, dtime);
	}
}