forked from oe5hpm/openBCM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
d_putwin.cpp
305 lines (281 loc) · 6.46 KB
/
d_putwin.cpp
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
/***************************************************************
BayCom(R) Packet-Radio fuer IBM PC
OpenBCM-Mailbox
--------------------
DOS: Ausgabe-Fenster
--------------------
Copyright (c) Florian Radlherr
Taubenbergstr. 32
83627 Warngau
Alle Rechte vorbehalten / All Rights Reserved
***************************************************************/
#include "baycom.h"
/*---------------------------------------------------------------------------*/
// Variablen
//
// e->index Zeiger auf die Stelle, in die das naechste Zeichen in den
// Puffer geschrieben wird.
//
// e->maxbuf Zeiger auf das Ende des Seitenpuffers. An diesem Ende
// wird hart umgebrochen, d.h. bei index=0 weitergemacht
//
// e->modified ist verschieden von null, wenn auf der Bildschirmseite
// mindestens 1 Zeichen steht. e->index ist naemlich sowohl dann
// null, wenn die Seite leer ist, als auch wenn die Seite neu
// beginnt weil ein wrap-around erfolgt ist.
//
//
// Anordnung des Puffers:
//
// Der Puffer sollte stets mindestens die Grö e des maximalen Bildschirm-
// inhaltes haben. Er kann aber auch beliebig grö er sein, max 64k.
//
// Neue Zeichen werden stets nach buf[e->index] geschrieben. Eine Zeile
// wird durch '\n' beendet
/*---------------------------------------------------------------------------*/
int putupdate(int full)
//*************************************************************************
//
// uebertraegt den Puffer an der aktuellen Position in das Bildschirmfenster
//
//*************************************************************************
{
int a,x;
int y,i=e->index;
int attr=color.put_text<<8;
int cattr=color.put_ctrl<<8;
int blank=attr|' '; // vorbesetzen fuer hoehere Geschwindigkeit
int lines=0,wlines=e->ylen-2*e->frame;
int yline;
int index=e->index;
int pos;
int xend=e->xend;
unsigned maxbuf=e->maxbuf;
int firstline=0;
unsigned col;
if (video_off)
return OK;
if (iskeytask())
col=color.activ_frame;
else
col=color.back_frame;
if (full)
wframe(col, e->title, 0);
//
// Startposition suchen (ab momentaner Cursorposition zurueckgehen)
//
while (i && lines < wlines)
{
if (buf[i-1] == LF)
{
firstline = i;
lines++;
}
i--;
}
if ((i == 0) && e->modified)
{
i=e->maxbuf;
while ((i > index) && lines < wlines)
{
if (buf[i-1] == LF)
{
if (i == maxbuf)
firstline = 0;
else
firstline = i;
lines++;
}
i--;
}
}
e->curline = lines;
i = firstline;
for (y=e->y+e->frame; y<e->yend; y++)
{
yline = (bildspalten * y);
x = e->x + e->frame;
while (((a=buf[i])!=LF) && (i!=index))
{
if (a < 32)
{
if(a == TAB)
{
int j = (x-e->x-1) % 8;
while (j < 8)
{
if (x < xend)
{
if (vorne[pos = yline+(x++)] == wa)
vram[pos] = blank;
}
j++;
}
}
else
{
if (x < xend)
{
if (vorne[pos = yline+(x++)] == wa)
vram[pos] = a | cattr;
}
}
}
else
{
if (x < xend)
{
if (vorne[pos = yline+(x++)] == wa)
vram[pos] = a | attr;
}
}
if ((++i) == maxbuf) i = 0;
}
while (x < xend)
{
if (vorne[pos = yline+(x++)] == wa)
vram[pos] = blank;
}
if (i != index)
{
if ((++i) == maxbuf)
i = 0;
}
}
if (e->linbuf)
{
wf(e->x+e->curcol, e->y+e->curline, color.put_text, "%*s",
e->xlen-e->curcol-(2*e->frame), e->linbuf);
}
setzcurs(e->curx, e->cury, e);
return OK;
}
/*---------------------------------------------------------------------------*/
void putflush_win(void)
{
setzcurs(e->curcol, e->curline, e);
if (m.scrolldelay)
putupdate(0);
}
/*---------------------------------------------------------------------------*/
void putvo_win(int c)
{
if (c != 7)
{
buf[e->index++]=c;
if (e->index==e->maxbuf)
{
e->index=0;
e->modified++;
}
if (c == LF)
{
if (e->curline==e->ylen-(e->frame<<1))
{
if (m.scrolldelay)
e->shouldupdate++;
else
wscrollup(color.put_text);
}
else
e->curline++;
waitfor(e_ticsfull);
e->curcol=e->frame;
}
else
{
if (e->curcol<=(e->xlen-(e->frame<<1)))
{
if (m.scrolldelay)
e->shouldupdate++;
else
wc(e->x+e->curcol, e->y+e->curline, color.put_text, c);
}
e->curcol++;
}
}
else
{
sound(1600);
wdelay(138);
nosound();
}
}
/*---------------------------------------------------------------------------*/
void inputline_win(char *s, int maxlen, char cut)
{
lastfunc("inputline_win");
putflush_win();
s[0]=0;
if (maxlen < 0)
maxlen = (-maxlen);
if (! cut)
maxlen--;
editline(e->curcol, e->curline, maxlen, s);
putf("%s\n", s);
putupdate(1);
if (! cut)
strcat(s, "\n");
}
/*---------------------------------------------------------------------------*/
void preparewin(int (*update)(int),char *name,unsigned buflen)
{
if (! e->xend || ! e->yend)
trace(tr_abbruch, "preparewin", "win size");
e->update = update;
if (strlen(name) < 16)
strcpy(e->title,name);
else
trace(tr_abbruch, "preparewin", "strlen name");
e->maxbuf = buflen;
if (buflen)
{
e->buf = (char *) t_malloc(e->maxbuf, "winb");
buf = e->buf;
}
wopen();
setkeyhere();
(*update)(1);
}
/*---------------------------------------------------------------------------*/
/*
void editwin(int);
static void putwin_edit(void)
{
int i;
int maxbuf=e->maxbuf;
if (e->modified)
{
i=e->index;
char *newbuf=(char *) t_malloc(e->maxbuf+1000, "newb");
while (i<e->maxbuf && buf[i]!=LF)
i++;
memcpy(newbuf, buf+i, e->maxbuf-i);
memcpy(newbuf+e->maxbuf-i, buf, e->index);
e->index+=(e->maxbuf-i);
t_free(buf);
buf=newbuf;
e->buf=newbuf;
}
e->maxbuf=e->index;
e->maxlines=0;
for (i=0; i<e->maxbuf; i++)
{
if (buf[i]==LF)
{
e->maxlines++;
e->index=i;
}
}
e->readlines=1;
e->curline=e->maxlines-1;
e->curcol--;
editwin(0);
e->curcol++;
e->curline=e->readlines;
e->index=e->maxbuf;
e->update=putupdate;
e->modified=0;
e->maxbuf=maxbuf;
}
*/