Subversion Repositories SvarDOS

Rev

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

Rev Author Line No. Line
597 mateuszvis 1
/*
2
 * Copyright (C) 2021-2022 Mateusz Viste
3
 *
4
 * usage: tlumacz en fr pl etc
5
 *
601 mateuszvis 6
 * computes an out.lng file that contains all language ressources.
597 mateuszvis 7
 *
8
 * DAT format:
9
 *
10
 * 4-bytes signature:
11
 * "SvL\x1b"
12
 *
13
 * Then "LANG BLOCKS" follow. Each LANG BLOCK is prefixed with 4 bytes:
14
 * II LL    - II is the LANG identifier ("EN", "PL", etc) and LL is the size
15
 *            of the block (65535 bytes max).
16
 *
17
 * Inside a LANG BLOCK is a set of strings:
18
 *
623 mateuszvis 19
 * II LL S  where II is the string's 16-bit identifier, LL is its length
20
 *          (1-65535) and S is the actual string. All strings are ASCIIZ (ie.
21
 *          they end with a NULL terminator).
597 mateuszvis 22
 *
23
 * The list of strings ends with a single 0-long string.
24
 */
25
 
26
 
27
#include <stdio.h>
28
#include <stdlib.h>
29
#include <string.h>
30
 
31
 
32
 
33
struct bitmap {
34
  unsigned char bits[8192];
35
};
36
 
37
static void bitmap_set(struct bitmap *b, unsigned short id) {
623 mateuszvis 38
  b->bits[id >> 3] |= 1 << (id & 7);
597 mateuszvis 39
}
40
 
41
static int bitmap_get(const struct bitmap *b, unsigned short id) {
623 mateuszvis 42
  return(b->bits[id >> 3] & (1 << (id & 7)));
597 mateuszvis 43
}
44
 
45
static void bitmap_init(struct bitmap *b) {
623 mateuszvis 46
  bzero(b, sizeof(struct bitmap));
597 mateuszvis 47
}
48
 
49
 
50
 
51
/* read a single line from fd and fills it into dst, returns line length
52
 * ending CR/LF is trimmed, as well as any trailing spaces */
53
static unsigned short readl(char *dst, size_t dstsz, FILE *fd) {
54
  unsigned short l, lastnonspace = 0;
55
 
56
  if (fgets(dst, dstsz, fd) == NULL) return(0xffff); /* EOF */
57
  /* trim at first CR or LF and return len */
58
  for (l = 0; (dst[l] != 0) && (dst[l] != '\r') && (dst[l] != '\n'); l++) {
59
    if (dst[l] != ' ') lastnonspace = l;
60
  }
61
 
62
  if (lastnonspace < l) l = lastnonspace + 1; /* rtrim */
63
  dst[l] = 0;
64
 
65
  return(l);
66
}
67
 
68
 
69
/* parse a line in format "1.50:somestring". fills id and returns a pointer to
70
 * the actual string part on success, or NULL on error */
71
static char *parseline(unsigned short *id, char *s) {
72
  int i;
73
  int dotpos = 0, colpos = 0, gotdigits = 0;
74
 
75
  /* I must have a . and a : in the first 9 bytes */
76
  for (i = 0;; i++) {
77
    if (s[i] == '.') {
78
      if ((dotpos != 0) || (gotdigits == 0)) break;
79
      dotpos = i;
80
      gotdigits = 0;
81
    } else if (s[i] == ':') {
82
      if (gotdigits != 0) colpos = i;
83
      break;
84
    } else if ((s[i] < '0') || (s[i] > '9')) {
85
      break;
86
    }
87
    gotdigits++;
88
  }
89
  /* did I collect everything? */
90
  if ((dotpos == 0) || (colpos == 0)) return(NULL);
91
  if (s[colpos + 1] == 0) return(NULL);
92
 
93
  *id = atoi(s);
94
  *id <<= 8;
95
  *id |= atoi(s + dotpos + 1);
96
 
97
  /* printf("parseline(): %04X = '%s'\r\n", *id, s + colpos + 1); */
98
 
99
  return(s + colpos + 1);
100
}
101
 
102
 
639 mateusz.vi 103
/* converts escape sequences like "\n" or "\t" into actual bytes, returns
104
 * the new length of the string. */
105
static unsigned short unesc_string(char *linebuff) {
106
  unsigned short i;
107
  for (i = 0; linebuff[i] != 0; i++) {
108
    if (linebuff[i] != '\\') continue;
109
    strcpy(linebuff + i, linebuff + i + 1);
110
    if (linebuff[i] == 0) break;
111
    switch (linebuff[i]) {
112
      case 'n':
113
        linebuff[i] = '\n';
114
        break;
115
      case 'r':
116
        linebuff[i] = '\r';
117
        break;
118
      case 't':
119
        linebuff[i] = '\t';
120
        break;
121
    }
122
  }
123
  return(i);
124
}
125
 
126
 
1061 mateusz.vi 127
/* opens a CATS-style file and compiles it into a ressources lang block
128
 * returns 0 on error, or the size of the generated data block otherwise */
597 mateuszvis 129
static unsigned short gen_langstrings(unsigned char *buff, const char *langid, struct bitmap *b, const struct bitmap *refb, const unsigned char *refblock) {
130
  unsigned short len = 0, linelen;
131
  FILE *fd;
132
  char fname[] = "XX.TXT";
623 mateuszvis 133
  static char linebuf[8192];
597 mateuszvis 134
  char *ptr;
135
  unsigned short id, linecount;
136
 
137
  bitmap_init(b);
138
 
139
  memcpy(fname + strlen(fname) - 6, langid, 2);
140
 
141
  fd = fopen(fname, "rb");
142
  if (fd == NULL) {
143
    printf("ERROR: FAILED TO OPEN '%s'\r\n", fname);
144
    return(0);
145
  }
146
 
147
  for (linecount = 1;; linecount++) {
148
 
149
    linelen = readl(linebuf, sizeof(linebuf), fd);
150
    if (linelen == 0xffff) break; /* EOF */
151
    if ((linelen == 0) || (linebuf[0] == '#')) continue;
152
 
639 mateusz.vi 153
    /* convert escaped chars to actual bytes (\n -> newline, etc) */
154
    linelen = unesc_string(linebuf);
155
 
597 mateuszvis 156
    /* read id and get ptr to actual string ("1.15:string") */
157
    ptr = parseline(&id, linebuf);
158
    if (ptr == NULL) {
623 mateuszvis 159
      printf("ERROR: line #%u of %s is malformed (linelen = %u):\r\n", linecount, fname, linelen);
160
      puts(linebuf);
597 mateuszvis 161
      len = 0;
162
      break;
163
    }
164
 
623 mateuszvis 165
    /* write string into block (II LL S) */
597 mateuszvis 166
    memcpy(buff + len, &id, 2);
167
    len += 2;
623 mateuszvis 168
    {
169
      unsigned short slen = strlen(ptr) + 1;
170
      memcpy(buff + len, &slen, 2);
171
      len += 2;
172
      memcpy(buff + len, ptr, slen);
173
      len += slen;
174
    }
597 mateuszvis 175
 
176
    /* if reference bitmap provided: check that the id is valid */
177
    if ((refb != NULL) && (bitmap_get(refb, id) == 0)) {
178
      printf("WARNING: %s[#%u] has an invalid id (%u.%u not present in ref lang)\r\n", fname, linecount, id >> 8, id & 0xff);
179
    }
180
 
181
    /* make sure this id is not already present */
182
    if (bitmap_get(b, id) == 0) {
183
      /* set bit in bitmap to remember I have this string */
184
      bitmap_set(b, id);
185
    } else {
186
      printf("WARNING: %s[#%u] has a duplicated id (%u.%u)\r\n", fname, linecount, id >> 8, id & 0xff);
187
    }
188
  }
189
 
190
  fclose(fd);
191
 
192
  /* if refblock provided, pull missing strings from it */
193
  if (refblock != NULL) {
194
    for (;;) {
623 mateuszvis 195
      unsigned short slen;
196
      id = ((unsigned short *)refblock)[0];
197
      slen = ((unsigned short *)refblock)[1];
198
      if ((id == 0) && (slen == 0)) break;
597 mateuszvis 199
      if (bitmap_get(b, id) == 0) {
200
        printf("WARNING: %s is missing string %u.%u (pulled from ref lang)\r\n", fname, id >> 8, id & 0xff);
201
        /* copy missing string from refblock */
623 mateuszvis 202
        memcpy(buff + len, refblock, slen + 4);
203
        len += slen + 4;
597 mateuszvis 204
      }
623 mateuszvis 205
      refblock += slen + 4;
597 mateuszvis 206
    }
207
  }
208
 
209
  /* write the block terminator (0-long string) */
210
  buff[len++] = 0; /* id */
211
  buff[len++] = 0; /* id */
212
  buff[len++] = 0; /* len */
623 mateuszvis 213
  buff[len++] = 0; /* len */
214
  buff[len++] = 0; /* empty string */
597 mateuszvis 215
 
216
  return(len);
217
}
218
 
219
 
599 mateuszvis 220
#define MEMBLOCKSZ 65000
597 mateuszvis 221
 
222
int main(int argc, char **argv) {
223
  FILE *fd;
224
  int ecode = 0;
225
  char *buff, *refblock;
1061 mateusz.vi 226
  unsigned short refblocksz = 0;
597 mateuszvis 227
  static struct bitmap bufbitmap;
228
  static struct bitmap refbitmap;
229
  unsigned short i;
1061 mateusz.vi 230
  unsigned short biggest_langsz = 0;
597 mateuszvis 231
 
232
  if (argc < 2) {
233
    puts("usage: tlumacz en fr pl etc");
234
    return(1);
235
  }
236
 
237
  buff = malloc(MEMBLOCKSZ);
238
  refblock = malloc(MEMBLOCKSZ);
239
  if ((buff == NULL) || (refblock == NULL)) {
240
    puts("out of memory");
241
    return(1);
242
  }
243
 
601 mateuszvis 244
  fd = fopen("out.lng", "wb");
597 mateuszvis 245
  if (fd == NULL) {
246
    puts("ERR: failed to open or create SVARCOM.LNG");
247
    return(1);
248
  }
249
 
250
  /* write sig */
251
  fwrite("SvL\x1b", 1, 4, fd);
252
 
253
  /* write lang blocks */
254
  for (i = 1; i < argc; i++) {
255
    unsigned short sz;
256
    char id[3];
257
 
258
    if (strlen(argv[i]) != 2) {
259
      printf("INVALID LANG SPECIFIED: %s\r\n", argv[i]);
260
      ecode = 1;
261
      break;
262
    }
263
 
264
    id[0] = argv[i][0];
265
    id[1] = argv[i][1];
266
    id[2] = 0;
267
    if (id[0] >= 'a') id[0] -= 'a' - 'A';
268
    if (id[1] >= 'a') id[1] -= 'a' - 'A';
269
 
270
    sz = gen_langstrings(buff, id, &bufbitmap, (i != 1)?&refbitmap:NULL, (i != 1)?refblock:NULL);
271
    if (sz == 0) {
272
      printf("ERROR COMPUTING LANG '%s'\r\n", id);
273
      ecode = 1;
274
      break;
275
    } else {
276
      printf("computed %s lang block of %u bytes\r\n", id, sz);
1061 mateusz.vi 277
      if (sz > biggest_langsz) biggest_langsz = sz;
597 mateuszvis 278
    }
279
    /* write lang ID to file, followed by block size and then the actual block */
280
    if ((fwrite(id, 1, 2, fd) != 2) ||
281
        (fwrite(&sz, 1, 2, fd) != 2) ||
282
        (fwrite(buff, 1, sz, fd) != sz)) {
283
      printf("ERROR WRITING TO OUTPUT FILE\r\n");
284
      ecode = 1;
285
      break;
286
    }
1061 mateusz.vi 287
    /* remember reference data for other languages */
597 mateuszvis 288
    if (i == 1) {
1061 mateusz.vi 289
      refblocksz = sz;
597 mateuszvis 290
      memcpy(refblock, buff, MEMBLOCKSZ);
291
      memcpy(&refbitmap, &bufbitmap, sizeof(struct bitmap));
292
    }
293
  }
294
 
295
  fclose(fd);
296
 
1061 mateusz.vi 297
  /* compute the deflang.c file containing a dump of the reference block */
298
  fd = fopen("DEFLANG.C", "wb");
299
  if (fd == NULL) {
300
    puts("ERROR: FAILED TO OPEN OR CREATE DEFLANG.C");
301
    ecode = 1;
302
  } else {
303
    unsigned short allocsz = biggest_langsz + (biggest_langsz / 20);
304
    printf("biggest lang block is %u bytes -> allocating a %u bytes buffer\n", biggest_langsz, allocsz);
305
    fprintf(fd, "/* THIS FILE HAS BEEN GENERATED BY TLUMACZ (PART OF THE SVARLANG LIBRARY) */\r\n");
306
    fprintf(fd, "const unsigned short svarlang_memsz = %uu;\r\n", allocsz);
307
    fprintf(fd, "char svarlang_mem[%u] = {\r\n", allocsz);
308
    for (i = 0; i < refblocksz; i++) {
309
      fprintf(fd, "%u", buff[i]);
310
      if (i + 1 < refblocksz) fprintf(fd, ",");
311
      if ((i & 15) == 15) fprintf(fd, "\r\n");
312
    }
313
    fprintf(fd, "};\r\n");
314
    fclose(fd);
315
  }
316
 
597 mateuszvis 317
  return(ecode);
318
}