aboutsummaryrefslogtreecommitdiffstats
path: root/fileconsole.cpp
blob: 9032cb60db6f061aab37908d97dfb8eaaca22126 (plain) (blame)
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
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
// fileconsole.cpp
// Revision 6-feb-2005

#ifdef __BORLANDC__
#pragma warn -8022
#endif

#include "file.h"

#include "blassic.h"
#include "error.h"
#include "cursor.h"
#include "edit.h"
#include "sysvar.h"
#include "util.h"

#include "trace.h"

#include <iostream>
using std::cerr;
using std::endl;
#include <string>
#include <algorithm>

#ifndef BLASSIC_USE_WINDOWS

#include <unistd.h>

#else

#include <windows.h>
#undef max
#undef min
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#if defined HAVE_IO_H || ! defined BLASSIC_CONFIG
#include <io.h>
#endif

#endif

//***********************************************
//		Auxiliary functions
//***********************************************

namespace {

class updateposchar {
public:
	updateposchar (int & pos) :
		pos (pos)
	{ }
	void operator () (const char c)
	{
		switch (c)
		{
		case '\r':
		case '\n':
			pos= 0;
			break;
		case '\b':
			if (pos > 0)
				--pos;
			break;
		case '\a':
			// Bell does not use space in screen.
			break;
		case '\t':
			pos= ( (pos / 8) + 1) * 8;
			break;
		default:
			++pos;
		}
	}
private:
	int & pos;
};

void updatepos (int & pos, const std::string & str)
{
	std::for_each (str.begin (), str.end (), updateposchar (pos) );
}

} // namespace

namespace blassic {

namespace file {

//***********************************************
//              BlFileConsole
//***********************************************

class BlFileConsole : public BlFile {
public:
	//BlFileConsole (std::istream & nin, std::ostream & nout);
	BlFileConsole ();
	bool isfile () const { return false; }
	virtual bool eof ();
	virtual void flush ();
	virtual size_t getwidth () const;
	virtual void movecharforward ();
	virtual void movecharforward (size_t n);
	virtual void movecharback ();
	virtual void movecharback (size_t n);
	virtual void movecharup ();
	virtual void movecharup (size_t n);
	virtual void movechardown ();
	virtual void movechardown (size_t n);
	virtual void showcursor ();
	virtual void hidecursor ();
	virtual std::string getkey ();
	virtual std::string inkey ();
	void getline (std::string & str, bool endline= true);
	std::string read (size_t n);
	void tab ();
	void tab (size_t n);
	void gotoxy (int x, int y);
	virtual void setcolor (int color);
	virtual void setbackground (int color);
	virtual void cls ();
	int pos ();
	bool poll ();
private:
	void outstring (const std::string & str);
	void outchar (char c);
	//void outnumber (BlNumber n);
	//void outinteger (BlInteger n);

	std::istream & in;
	std::ostream & out;
	bool ttyin, ttyout;
	#ifndef BLASSIC_USE_WINDOWS
	int xpos;
	#endif
};

BlFile * newBlFileConsole ()
{
	return new BlFileConsole ();
}

//BlFileConsole::BlFileConsole (std::istream & nin, std::ostream & nout) :
BlFileConsole::BlFileConsole () :
	BlFile (OpenMode (Input | Output) ),
	//in (nin),
	//out (nout),
	in (std::cin),
	out (std::cout),
	ttyin (isatty (0) ),
	ttyout (isatty (1) )
	//#ifndef _Windows
	#ifndef BLASSIC_USE_WINDOWS
	, xpos (0)
	#endif
{
	TRACEFUNC (tr, "BlFileConsole::BlFileConsole");
	TRMESSAGE (tr, std::string ("ttyin ") +
		(ttyin ? "is" : "is not") + " a tty");
	TRMESSAGE (tr, std::string ("ttyout ") +
		(ttyout ? "is" : "is not") + " a tty");
}

bool BlFileConsole::eof ()
{
	if (! ttyin)
	{
		int c= in.get ();
		if (! in || c == EOF)
			return true;
		else
		{
			in.unget ();
			return false;
		}
	}
	else
	{
		return false;
	}
}

void BlFileConsole::flush ()
{
	out << std::flush;
}

size_t BlFileConsole::getwidth () const
{
	return cursor::getwidth ();
}

void BlFileConsole::movecharforward ()
{
	cursor::movecharforward ();
}

void BlFileConsole::movecharforward (size_t n)
{
	cursor::movecharforward (n);
}

void BlFileConsole::movecharback ()
{
	cursor::movecharback ();
}

void BlFileConsole::movecharback (size_t n)
{
	cursor::movecharback (n);
}

void BlFileConsole::movecharup ()
{
	cursor::movecharup ();
}

void BlFileConsole::movecharup (size_t n)
{
	cursor::movecharup (n);
}

void BlFileConsole::movechardown ()
{
	cursor::movechardown ();
}

void BlFileConsole::movechardown (size_t n)
{
	cursor::movechardown (n);
}

void BlFileConsole::showcursor ()
{
	cursor::showcursor ();
}

void BlFileConsole::hidecursor ()
{
	cursor::hidecursor ();
}

std::string BlFileConsole::getkey ()
{
	//TRACEFUNC (tr, "BlFileConsole::getkey");

	if (ttyin)
	{
		std::string str= cursor::getkey ();

		#ifdef BLASSIC_USE_WINDOWS

		if (str.size () == 1)
		{
			char c= str [0];
			OemToCharBuff (& c, & c, 1);
			return std::string (1, c);
		}

		#endif

		return str;
	}
	else
	{
		int c= in.get ();
		if (! in || c == EOF)
			throw ErrPastEof;
		return std::string (1, static_cast <char> (c) );
	}
}

std::string BlFileConsole::inkey ()
{
	std::string str= cursor::inkey ();

	#ifdef BLASSIC_USE_WINDOWS

	if (ttyin && str.size () == 1)
	{
		char c= str [0];
		OemToCharBuff (& c, & c, 1);
		return std::string (1, c);
	}

	#endif

	return str;
}

void BlFileConsole::getline (std::string & str, bool endline)
{
	using blassic::edit::editline;

	TRACEFUNC (tr, "BlFileConsole::getline");

	if (ttyin)
	{
		std::string auxstr;
		//int inicol= getcursorx ();
		int inicol= pos ();
		while (! editline (* this, auxstr, 0, inicol, endline) )
			continue;
		swap (str, auxstr);
	}
	else
	{
		std::getline (in, str);
		if (! in)
			throw ErrPastEof;
	}

	if (fInterrupted)
	{
		in.clear ();
		str.erase ();
		return;
	}

	#ifdef BLASSIC_USE_WINDOWS

	if (ttyin)
	{
		size_t l= str.size ();
		util::auto_buffer <char> aux (l);
		OemToCharBuff (str.data (), aux, l);
		str= std::string (aux, l);
	}

	#endif
}

std::string BlFileConsole::read (size_t n)
{
	util::auto_buffer <char> buf (n);
	in.read (buf, n);
	return std::string (buf, n);
}

void BlFileConsole::tab ()
{
	int zone= static_cast <int> (sysvar::get16 (sysvar::Zone) );
	if (zone == 0)
	{
		outchar ('\t');
		return;
	}

	#if 0

	#ifdef BLASSIC_USE_WINDOWS

	int newpos= getcursorx ();

	#else

	int pos= xpos;

	#endif

	#else

	int newpos= pos ();

	#endif

	const int width= 80; // This may need another approach.
	if (newpos >= (width / zone) * zone)
		endline ();
	else
	{
		do
		{
			outchar (' ');
			++newpos;
		} while (newpos % zone);
	}
}

void BlFileConsole::tab (size_t n)
{
	int p= pos ();
	if (p > static_cast <int> (n) )
	{
		outchar ('\n');
		p= pos ();
	}
	outstring (std::string (n - p, ' ') );
}

void BlFileConsole::outstring (const std::string & str)
{
	TRACEFUNC (tr, "BlFileConsole::outstring");

	#ifdef BLASSIC_USE_WINDOWS

	if (ttyout)
	{
		size_t l= str.size ();
		util::auto_buffer <char> aux (l + 1);
		CharToOemBuff (str.data (), aux, l);
		aux [l]= 0;
		out << aux;
	}
	else
		out << str;

	#else

	out << str;
	updatepos (xpos, str);

	#endif

	#ifndef NDEBUG
	out << std::flush;
	#endif

	if (! out)
	{
		out.clear ();
		//throw std::runtime_error ("Al diablo");
	}
}

void BlFileConsole::outchar (char c)
{
	#ifdef BLASSIC_USE_WINDOWS

	if (ttyout)
		CharToOemBuff (& c, & c, 1);

	#endif

	if (c == '\n')
		out << endl;
	else
		out << c;

	#ifndef BLASSIC_USE_WINDOWS

	updateposchar (xpos).operator () (c);

	#endif

	if (! out)
	{
		out.clear ();
		//throw std::runtime_error ("Al diablo");
	}
}

#if 0

void BlFileConsole::outnumber (BlNumber n)
{
	#if 0
	if (graphics::ingraphicsmode () )
		graphics::stringout (to_string (n) );
	else
	#endif
		out << n;
}

void BlFileConsole::outinteger (BlInteger n)
{
	#if 0
	if (graphics::ingraphicsmode () )
		graphics::stringout (to_string (n) );
	else
	#endif
		out << n;
}

#endif

void BlFileConsole::gotoxy (int x, int y)
{
	cursor::gotoxy (x, y);

	#ifndef BLASSIC_USE_WINDOWS

	xpos= x;

	#endif
}

void BlFileConsole::setcolor (int color)
{
	cursor::textcolor (color);
}

void BlFileConsole::setbackground (int color)
{
	cursor::textbackground (color);
}

void BlFileConsole::cls ()
{
	cursor::cls ();

	#ifndef BLASSIC_USE_WINDOWS

	xpos= 0;

	#endif
}

int BlFileConsole::pos ()
{
	#ifdef BLASSIC_USE_WINDOWS

	return cursor::getcursorx ();

	#else

	return xpos;

	#endif
}

bool BlFileConsole::poll ()
{
	return cursor::pollin ();
}

} // namespace file

} // namespace blassic

// End of fileconsole.cpp
Un proyecto texto-plano.xyz