Subversion Repositories SvarDOS

Rev

Rev 1308 | Rev 1310 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1283 mateusz.vi 1
/* Sved, the SvarDOS editor
2
 *
3
 * Copyright (C) 2023 Mateusz Viste
4
 *
5
 * Sved is released under the terms of the MIT license.
6
 *
7
 * Permission is hereby granted, free of charge, to any person obtaining a copy
8
 * of this software and associated documentation files (the "Software"), to
9
 * deal in the Software without restriction, including without limitation the
10
 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
11
 * sell copies of the Software, and to permit persons to whom the Software is
12
 * furnished to do so, subject to the following conditions:
13
 *
14
 * The above copyright notice and this permission notice shall be included in
15
 * all copies or substantial portions of the Software.
16
 *
17
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
22
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
23
 * IN THE SOFTWARE.
24
 */
1275 mateusz.vi 25
 
1282 mateusz.vi 26
#include <dos.h>
27
#include <fcntl.h>
1275 mateusz.vi 28
#include <stdlib.h>
29
#include <string.h>
1288 mateusz.vi 30
#include <malloc.h>   /* _fcalloc() */
1275 mateusz.vi 31
 
32
#include "mdr\cout.h"
1307 mateusz.vi 33
#include "mdr\dos.h"
1275 mateusz.vi 34
#include "mdr\keyb.h"
35
 
1282 mateusz.vi 36
#include "svarlang\svarlang.h"
37
 
1275 mateusz.vi 38
#define COL_TXT        0
39
#define COL_STATUSBAR1 1
40
#define COL_STATUSBAR2 2
41
#define COL_SCROLLBAR  3
42
/* preload the mono scheme (to be overloaded at runtime if color adapter present) */
43
static unsigned char scheme[] = {0x07, 0x70, 0x70, 0x70};
44
 
45
#define SCROLL_CURSOR 0xB1
46
 
47
 
48
struct line {
1288 mateusz.vi 49
  struct line far *prev;
50
  struct line far *next;
1275 mateusz.vi 51
  unsigned short len;
52
  char payload[1];
53
};
54
 
55
struct linedb {
1288 mateusz.vi 56
  struct line far *topscreen;
57
  struct line far *cursor;
1275 mateusz.vi 58
  unsigned short xoffset;
59
};
60
 
61
 
1287 mateusz.vi 62
/* returns non-zero on error */
1289 mateusz.vi 63
static int line_add(struct linedb *db, const char far *line) {
64
  unsigned short slen;
1288 mateusz.vi 65
  struct line far *l;
1275 mateusz.vi 66
 
1289 mateusz.vi 67
  /* slen = strlen(line) (but for far pointer) */
68
  for (slen = 0; line[slen] != 0; slen++);
69
 
1275 mateusz.vi 70
  /* trim out CR/LF line endings */
71
  if ((slen >= 2) && (line[slen - 2] == '\r')) {
72
    slen -= 2;
73
  } else if ((slen >= 1) && (line[slen - 1] == '\n')) {
74
    slen--;
75
  }
76
 
1288 mateusz.vi 77
  l = _fcalloc(1, sizeof(struct line) + slen + 1);
1287 mateusz.vi 78
  if (l == NULL) return(-1);
79
 
1275 mateusz.vi 80
  l->prev = db->cursor;
81
  if (db->cursor) {
82
    l->next = db->cursor->next;
83
    db->cursor->next = l;
84
    l->next->prev = l;
85
  }
86
  db->cursor = l;
1288 mateusz.vi 87
  _fmemcpy(l->payload, line, slen);
1275 mateusz.vi 88
  l->len = slen;
1287 mateusz.vi 89
 
90
  return(0);
1275 mateusz.vi 91
}
92
 
93
 
1289 mateusz.vi 94
static void db_rewind(struct linedb *db) {
1275 mateusz.vi 95
  if (db->cursor == NULL) return;
96
  while (db->cursor->prev) db->cursor = db->cursor->prev;
97
  db->topscreen = db->cursor;
98
}
99
 
100
 
1289 mateusz.vi 101
static void load_colorscheme(void) {
1275 mateusz.vi 102
  scheme[COL_TXT] = 0x17;
103
  scheme[COL_STATUSBAR1] = 0x70;
104
  scheme[COL_STATUSBAR2] = 0x78;
105
  scheme[COL_SCROLLBAR] = 0x70;
106
}
107
 
108
 
1282 mateusz.vi 109
static void ui_basic(unsigned char screenw, unsigned char screenh, const char *fname) {
1275 mateusz.vi 110
  unsigned char i;
1302 mateusz.vi 111
  const char *s = svarlang_strid(0); /* HELP */
1275 mateusz.vi 112
  unsigned char helpcol = screenw - (strlen(s) + 4);
113
 
114
  /* clear screen */
115
  mdr_cout_cls(scheme[COL_TXT]);
116
 
117
  /* status bar */
118
  for (i = 0; i < helpcol; i++) {
119
    mdr_cout_char(screenh - 1, i, *fname, scheme[COL_STATUSBAR1]);
120
    if (*fname != 0) fname++;
121
  }
122
  mdr_cout_str(screenh - 1, helpcol, " F1=", scheme[COL_STATUSBAR2], 40);
123
  mdr_cout_str(screenh - 1, helpcol + 4, s, scheme[COL_STATUSBAR2], 40);
124
 
125
  /* scroll bar */
126
  for (i = 0; i < (screenh - 1); i++) {
127
    mdr_cout_char(i, screenw - 1, SCROLL_CURSOR, scheme[COL_SCROLLBAR]);
128
  }
129
}
130
 
131
 
1309 mateusz.vi 132
static void ui_help(unsigned char screenw) {
133
#define MAXLINLEN 35
134
  unsigned short i, x, offset;
135
  offset = (screenw - MAXLINLEN + 1) >> 1;
136
  mdr_cout_cursor_hide();
137
  for (i = 2; i <= 12; i++) {
138
    for (x = offset - 2; x < offset + MAXLINLEN; x++) mdr_cout_char(i, x, ' ', scheme[COL_STATUSBAR1]);
139
  }
140
 
141
  mdr_cout_str(3, offset, svarlang_str(0, 0), scheme[COL_STATUSBAR1], MAXLINLEN);
142
  for (i = 0; i <= 2; i++) {
143
    mdr_cout_str(5 + i, offset, svarlang_str(8, i), scheme[COL_STATUSBAR1], MAXLINLEN);
144
  }
145
  mdr_cout_str(9, offset, svarlang_str(8, 10), scheme[COL_STATUSBAR1], MAXLINLEN);
146
  mdr_cout_str(11, offset, svarlang_str(8, 11), scheme[COL_STATUSBAR1], MAXLINLEN);
147
 
148
  keyb_getkey();
149
  mdr_cout_cursor_show();
150
#undef MAXLINLEN
151
}
152
 
153
 
1282 mateusz.vi 154
static void ui_refresh(const struct linedb *db, unsigned char screenw, unsigned char screenh, unsigned char uidirtyfrom, unsigned char uidirtyto) {
1275 mateusz.vi 155
  unsigned char y = 0;
156
  unsigned char len;
1288 mateusz.vi 157
  struct line far *l;
1275 mateusz.vi 158
 
1288 mateusz.vi 159
#ifdef DBG_REFRESH
1282 mateusz.vi 160
  static char m = 'a';
161
  m++;
162
  if (m > 'z') m = 'a';
1288 mateusz.vi 163
#endif
1282 mateusz.vi 164
 
1289 mateusz.vi 165
  for (l = db->topscreen; l != NULL; l = l->next, y++) {
1282 mateusz.vi 166
 
167
    /* skip lines that do not to be refreshed */
1289 mateusz.vi 168
    if (y < uidirtyfrom) continue;
169
    if (y > uidirtyto) break;
1282 mateusz.vi 170
 
1275 mateusz.vi 171
    if (db->xoffset < l->len) {
1288 mateusz.vi 172
      for (len = 0; l->payload[len] != 0; len++) mdr_cout_char(y, len, l->payload[len], scheme[COL_TXT]);
1275 mateusz.vi 173
    } else {
174
      len = 0;
175
    }
176
    while (len < screenw - 1) mdr_cout_char(y, len++, ' ', scheme[COL_TXT]);
1282 mateusz.vi 177
 
1288 mateusz.vi 178
#ifdef DBG_REFRESH
1282 mateusz.vi 179
    mdr_cout_char(y, 0, m, scheme[COL_STATUSBAR1]);
1288 mateusz.vi 180
#endif
1282 mateusz.vi 181
 
1275 mateusz.vi 182
    if (y == screenh - 2) break;
183
  }
184
}
185
 
186
 
1282 mateusz.vi 187
static void check_cursor_not_after_eol(struct linedb *db, unsigned char *cursorpos, unsigned char *uidirtyfrom, unsigned char *uidirtyto) {
1275 mateusz.vi 188
  if (db->xoffset + *cursorpos <= db->cursor->len) return;
189
 
190
  if (db->cursor->len < db->xoffset) {
191
    *cursorpos = 0;
192
    db->xoffset = db->cursor->len;
1282 mateusz.vi 193
    *uidirtyfrom = 0;
194
    *uidirtyto = 0xff;
1275 mateusz.vi 195
  } else {
196
    *cursorpos = db->cursor->len - db->xoffset;
197
  }
198
}
199
 
200
 
1282 mateusz.vi 201
static void cursor_up(struct linedb *db, unsigned char *cursorposy, unsigned char *uidirtyfrom, unsigned char *uidirtyto) {
1275 mateusz.vi 202
  if (db->cursor->prev != NULL) {
203
    db->cursor = db->cursor->prev;
204
    if (*cursorposy == 0) {
205
      db->topscreen = db->cursor;
1282 mateusz.vi 206
      *uidirtyfrom = 0;
207
      *uidirtyto = 0xff;
1275 mateusz.vi 208
    } else {
209
      *cursorposy -= 1;
210
    }
211
  }
212
}
213
 
214
 
1282 mateusz.vi 215
static void cursor_eol(struct linedb *db, unsigned char *cursorposx, unsigned char screenw, unsigned char *uidirtyfrom, unsigned char *uidirtyto) {
1275 mateusz.vi 216
  /* adjust xoffset to make sure eol is visible on screen */
1282 mateusz.vi 217
  if (db->xoffset > db->cursor->len) {
218
    db->xoffset = db->cursor->len - 1;
219
    *uidirtyfrom = 0;
220
    *uidirtyto = 0xff;
221
  }
222
 
223
  if (db->xoffset + screenw - 1 <= db->cursor->len) {
224
    db->xoffset = db->cursor->len - screenw + 2;
225
    *uidirtyfrom = 0;
226
    *uidirtyto = 0xff;
227
  }
1275 mateusz.vi 228
  *cursorposx = db->cursor->len - db->xoffset;
229
}
230
 
231
 
1282 mateusz.vi 232
static void cursor_down(struct linedb *db, unsigned char *cursorposy, unsigned char screenh, unsigned char *uidirtyfrom, unsigned char *uidirtyto) {
1276 mateusz.vi 233
  if (db->cursor->next != NULL) {
234
    db->cursor = db->cursor->next;
235
    if (*cursorposy < screenh - 2) {
236
      *cursorposy += 1;
237
    } else {
238
      db->topscreen = db->topscreen->next;
1282 mateusz.vi 239
      *uidirtyfrom = 0;
240
      *uidirtyto = 0xff;
1276 mateusz.vi 241
    }
242
  }
243
}
244
 
245
 
1302 mateusz.vi 246
static void cursor_left(struct linedb *db, unsigned char *cursorposx, unsigned char *cursorposy, unsigned char screenw, unsigned char *uidirtyfrom, unsigned char *uidirtyto) {
247
  if (*cursorposx > 0) {
248
    *cursorposx -= 1;
249
  } else if (db->xoffset > 0) {
250
    db->xoffset -= 1;
251
    *uidirtyfrom = 0;
252
    *uidirtyto = 0xff;
253
  } else if (db->cursor->prev != NULL) { /* jump to end of line above */
254
    cursor_up(db, cursorposy, uidirtyfrom, uidirtyto);
255
    cursor_eol(db, cursorposx, screenw, uidirtyfrom, uidirtyto);
256
  }
257
}
258
 
259
 
1282 mateusz.vi 260
static void cursor_home(struct linedb *db, unsigned char *cursorposx, unsigned char *uidirtyfrom, unsigned char *uidirtyto) {
1276 mateusz.vi 261
  *cursorposx = 0;
1282 mateusz.vi 262
  if (db->xoffset != 0) {
263
    db->xoffset = 0;
264
    *uidirtyfrom = 0;
265
    *uidirtyto = 0xff;
266
  }
1276 mateusz.vi 267
}
268
 
269
 
1308 mateusz.vi 270
static void cursor_right(struct linedb *db, unsigned char *cursorposx, unsigned char *cursorposy, unsigned char screenw, unsigned char screenh, unsigned char *uidirtyfrom, unsigned char *uidirtyto) {
271
  if (db->cursor->len > db->xoffset + *cursorposx) {
272
    if (*cursorposx < screenw - 2) {
273
      *cursorposx += 1;
274
    } else {
275
      db->xoffset += 1;
276
      *uidirtyfrom = 0;
277
      *uidirtyto = 0xff;
278
    }
279
  } else {
280
    cursor_down(db, cursorposy, screenh, uidirtyfrom, uidirtyto);
281
    cursor_home(db, cursorposx, uidirtyfrom, uidirtyto);
282
  }
283
}
284
 
285
 
1292 mateusz.vi 286
static void del(struct linedb *db, unsigned char cursorposx, unsigned char cursorposy, unsigned char *uidirtyfrom, unsigned char *uidirtyto) {
287
  if (cursorposx + db->xoffset < db->cursor->len) {
288
    _fmemmove(db->cursor->payload + cursorposx + db->xoffset, db->cursor->payload + cursorposx + db->xoffset + 1, db->cursor->len - cursorposx - db->xoffset);
289
    db->cursor->len -= 1; /* do this AFTER memmove so the copy includes the nul terminator */
290
    *uidirtyfrom = cursorposy;
291
    *uidirtyto = cursorposy;
292
  } else if (db->cursor->next != NULL) { /* cursor is at end of line: merge current line with next one (if there is a next one) */
293
    struct line far *nextline = db->cursor->next;
294
    if (db->cursor->next->len > 0) {
295
      void far *newptr = _frealloc(db->cursor, sizeof(struct line) + db->cursor->len + db->cursor->next->len + 1);
296
      if (newptr != NULL) {
297
        db->cursor = newptr;
298
        _fmemcpy(db->cursor->payload + db->cursor->len, db->cursor->next->payload, db->cursor->next->len + 1);
299
        db->cursor->len += db->cursor->next->len;
300
        /* update db->topscreen if needed */
301
        if (cursorposy == 0) db->topscreen = db->cursor;
302
      }
303
    }
304
    db->cursor->next = db->cursor->next->next;
305
    db->cursor->next->prev = db->cursor;
306
    if (db->cursor->prev != NULL) db->cursor->prev->next = db->cursor; /* in case realloc changed my pointer */
307
    _ffree(nextline);
308
    *uidirtyfrom = cursorposy;
309
    *uidirtyto = 0xff;
310
  }
311
}
312
 
313
 
1302 mateusz.vi 314
static void bkspc(struct linedb *db, unsigned char *cursorposx, unsigned char *cursorposy, unsigned char screenw, unsigned char *uidirtyfrom, unsigned char *uidirtyto) {
315
 
316
  /* backspace is basically "left + del", not applicable only if cursor is on 1st byte of the file */
317
  if ((*cursorposx == 0) && (db->xoffset == 0) && (db->cursor->prev == NULL)) return;
318
 
319
  cursor_left(db, cursorposx, cursorposy, screenw, uidirtyfrom, uidirtyto);
320
  del(db, *cursorposx, *cursorposy, uidirtyfrom, uidirtyto);
321
}
322
 
323
 
1286 mateusz.vi 324
/* a custom argv-parsing routine that looks directly inside the PSP, avoids the need
325
 * of argc and argv, saves some 330 bytes of binary size */
326
static char *parseargv(void) {
327
  char *tail = (void *)0x81; /* THIS WORKS ONLY IN SMALL MEMORY MODEL */
328
  unsigned char count = 0;
329
  char *argv[4];
330
 
331
  while (count < 4) {
332
    /* jump to nearest arg */
333
    while (*tail == ' ') {
334
      *tail = 0;
335
      tail++;
336
    }
337
 
338
    if (*tail == '\r') {
339
      *tail = 0;
340
      break;
341
    }
342
 
343
    argv[count++] = tail;
344
 
345
    /* jump to next delimiter */
346
    while ((*tail != ' ') && (*tail != '\r')) tail++;
347
  }
348
 
349
  /* check args now */
350
  if (count != 1) return(NULL);
351
 
352
  return(argv[0]);
353
}
354
 
355
 
1287 mateusz.vi 356
static int loadfile(struct linedb *db, const char *fname) {
357
  char buff[1024];
358
  unsigned int prevlen = 0, len, llen;
359
  int fd;
360
  int r = 0;
361
 
362
  if (_dos_open(fname, O_RDONLY, &fd) != 0) {
363
    mdr_coutraw_puts("Failed to open file:");
364
    mdr_coutraw_puts(fname);
365
    return(-1);
366
  }
367
 
368
  do {
369
    if (_dos_read(fd, buff + prevlen, sizeof(buff) - prevlen, &len) == 0) {
370
      len += prevlen;
371
    } else {
372
      len = prevlen;
373
    }
374
 
375
    /* look for nearest \n and replace with 0*/
376
    for (llen = 0; buff[llen] != '\n'; llen++) {
377
      if (llen == sizeof(buff)) break;
378
    }
379
    buff[llen] = 0;
380
    if ((llen > 0) && (buff[llen - 1])) buff[llen - 1] = 0; /* trim \r if line ending is cr/lf */
381
    if (line_add(db, buff) != 0) {
382
      mdr_coutraw_puts("out of memory");
383
      r = -1;
384
      break;
385
    }
386
 
387
    len -= llen + 1;
388
    memmove(buff, buff + llen + 1, len);
389
    prevlen = len;
390
  } while (len > 0);
391
 
392
  _dos_close(fd);
393
 
394
  return(r);
395
}
396
 
397
 
1286 mateusz.vi 398
int main(void) {
399
  const char *fname;
1275 mateusz.vi 400
  struct linedb db;
401
  unsigned char screenw = 0, screenh = 0;
402
  unsigned char cursorposx = 0, cursorposy = 0;
1282 mateusz.vi 403
  unsigned char uidirtyfrom = 0, uidirtyto = 0xff; /* make sure to redraw entire UI at first run */
1275 mateusz.vi 404
 
405
  bzero(&db, sizeof(db));
406
 
1307 mateusz.vi 407
  {
408
    char nlspath[128], lang[8];
409
    svarlang_autoload_pathlist("sved", mdr_dos_getenv(nlspath, "NLSPATH", sizeof(nlspath)), mdr_dos_getenv(lang, "LANG", sizeof(lang)));
410
  }
1282 mateusz.vi 411
 
1286 mateusz.vi 412
  fname = parseargv();
413
 
414
  if (fname == NULL) {
1302 mateusz.vi 415
    mdr_coutraw_puts(svarlang_str(1,0)); /* usage: sved file.txt */
1275 mateusz.vi 416
    return(0);
417
  }
418
 
1282 mateusz.vi 419
  /* load file */
1287 mateusz.vi 420
  if (loadfile(&db, fname) != 0) return(1);
1282 mateusz.vi 421
 
1275 mateusz.vi 422
  /* add an empty line at end if not present already */
423
  if (db.cursor->len != 0) line_add(&db, "");
424
 
425
  if (mdr_cout_init(&screenw, &screenh)) load_colorscheme();
426
  ui_basic(screenw, screenh, fname);
427
 
428
  db_rewind(&db);
429
 
430
  for (;;) {
431
    int k;
432
 
1282 mateusz.vi 433
    check_cursor_not_after_eol(&db, &cursorposx, &uidirtyfrom, &uidirtyto);
1275 mateusz.vi 434
    mdr_cout_locate(cursorposy, cursorposx);
435
 
1282 mateusz.vi 436
    if (uidirtyfrom != 0xff) {
437
      ui_refresh(&db, screenw, screenh, uidirtyfrom, uidirtyto);
438
      uidirtyfrom = 0xff;
439
    }
1275 mateusz.vi 440
 
441
    k = keyb_getkey();
1282 mateusz.vi 442
 
1275 mateusz.vi 443
    if (k == 0x150) { /* down */
1282 mateusz.vi 444
      cursor_down(&db, &cursorposy, screenh, &uidirtyfrom, &uidirtyto);
1275 mateusz.vi 445
 
446
    } else if (k == 0x148) { /* up */
1282 mateusz.vi 447
      cursor_up(&db, &cursorposy, &uidirtyfrom, &uidirtyto);
1275 mateusz.vi 448
 
449
    } else if (k == 0x14D) { /* right */
1308 mateusz.vi 450
      cursor_right(&db, &cursorposx, &cursorposy, screenw, screenh, &uidirtyfrom, &uidirtyto);
1275 mateusz.vi 451
 
452
    } else if (k == 0x14B) { /* left */
1302 mateusz.vi 453
      cursor_left(&db, &cursorposx, &cursorposy, screenw, &uidirtyfrom, &uidirtyto);
1275 mateusz.vi 454
 
1282 mateusz.vi 455
    } else if (k == 0x149) { /* pgup */
456
      // TODO
457
 
458
    } else if (k == 0x151) { /* pgdown */
459
      // TODO
460
 
461
    } else if (k == 0x147) { /* home */
462
       cursor_home(&db, &cursorposx, &uidirtyfrom, &uidirtyto);
463
 
464
    } else if (k == 0x14F) { /* end */
465
       cursor_eol(&db, &cursorposx, screenw, &uidirtyfrom, &uidirtyto);
466
 
1275 mateusz.vi 467
    } else if (k == 0x1B) { /* ESC */
468
      break;
469
 
1289 mateusz.vi 470
    } else if (k == 0x0D) { /* ENTER */
471
      /* add a new line */
472
      if (line_add(&db, db.cursor->payload + db.xoffset + cursorposx) == 0) {
473
        /* trim the line above */
474
        db.cursor->prev->len = db.xoffset + cursorposx;
475
        db.cursor->prev->payload[db.cursor->prev->len] = 0;
476
        /* move cursor to the (new) line below */
477
        cursorposx = 0;
478
        if (cursorposy < screenh - 2) {
479
          uidirtyfrom = cursorposy;
480
          cursorposy++;
481
        } else {
482
          db.topscreen = db.topscreen->next;
483
          uidirtyfrom = 0;
484
        }
485
        uidirtyto = 0xff;
486
      } else {
487
        /* ERROR: OUT OF MEMORY */
488
      }
489
 
1292 mateusz.vi 490
    } else if (k == 0x153) {  /* DEL */
491
      del(&db, cursorposx, cursorposy, &uidirtyfrom, &uidirtyto);
492
 
1302 mateusz.vi 493
    } else if (k == 0x008) { /* BKSPC */
494
      bkspc(&db, &cursorposx, &cursorposy, screenw, &uidirtyfrom, &uidirtyto);
495
 
1308 mateusz.vi 496
    } else if ((k >= 0x20) && (k <= 0xff)) { /* "normal" character */
497
      struct line far *n;
498
      n = _frealloc(db.cursor, sizeof(struct line) + db.cursor->len);
499
      if (n != NULL) {
500
        unsigned short off = db.xoffset + cursorposx;
501
        if (n->prev) n->prev->next = n;
502
        if (n->next) n->next->prev = n;
503
        if (db.topscreen == db.cursor) db.topscreen = n;
504
        db.cursor = n;
505
        _fmemmove(db.cursor->payload + off + 1, db.cursor->payload + off, db.cursor->len - off + 1);
506
        db.cursor->len += 1;
507
        uidirtyfrom = cursorposy;
508
        uidirtyto = cursorposy;
509
        db.cursor->payload[off] = k;
510
        cursor_right(&db, &cursorposx, &cursorposy, screenw, screenh, &uidirtyfrom, &uidirtyto);
511
      }
512
 
1309 mateusz.vi 513
    } else if (k == 0x13b) { /* F1 */
514
      ui_help(screenw);
515
      uidirtyfrom = 0;
516
      uidirtyto = 0xff;
517
 
1282 mateusz.vi 518
    } else { /* UNHANDLED KEY - TODO IGNORE THIS IN PRODUCTION RELEASE */
519
      char buff[4];
520
      const char *HEX = "0123456789ABCDEF";
521
      buff[0] = HEX[(k >> 8) & 15];
522
      buff[1] = HEX[(k >> 4) & 15];
523
      buff[2] = HEX[k & 15];
524
      mdr_cout_str(screenh - 1, 0, "UNHANDLED KEY: 0x", scheme[COL_STATUSBAR1], 17);
525
      mdr_cout_str(screenh - 1, 17, buff, scheme[COL_STATUSBAR1], 3);
1275 mateusz.vi 526
      keyb_getkey();
527
      break;
528
    }
529
  }
530
 
531
  mdr_cout_close();
532
 
533
  /* TODO free memory */
534
 
535
  return(0);
536
}