Small '#ifdef HAVE_TAGCACHE' fix
[Rockbox.git] / apps / language.c
blobd374fa18ea57fe0205dc58a7a20c447643f7b3fe
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2002 Daniel Stenberg
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
18 ****************************************************************************/
20 #include <file.h>
21 #if defined(SIMULATOR) && defined(__MINGW32__)
22 extern int printf(const char *format, ...);
23 #endif
25 #include "language.h"
26 #include "lang.h"
27 #include "debug.h"
28 #include "string.h"
30 static unsigned char language_buffer[MAX_LANGUAGE_SIZE];
32 void lang_init(void)
34 int i;
35 unsigned char *ptr = (unsigned char *) language_builtin;
37 for (i = 0; i < LANG_LAST_INDEX_IN_ARRAY; i++) {
38 language_strings[i] = ptr;
39 ptr += strlen((char *)ptr) + 1; /* advance pointer to next string */
43 int lang_load(const char *filename)
45 int fsize;
46 int fd = open(filename, O_RDONLY);
47 int retcode=0;
48 unsigned char lang_header[2];
49 if(fd == -1)
50 return 1;
51 fsize = filesize(fd) - 2;
52 if(fsize <= MAX_LANGUAGE_SIZE) {
53 read(fd, lang_header, 2);
54 if((lang_header[0] == LANGUAGE_COOKIE) &&
55 (lang_header[1] == LANGUAGE_VERSION)) {
56 read(fd, language_buffer, MAX_LANGUAGE_SIZE);
57 unsigned char *ptr = language_buffer;
58 int id;
59 lang_init(); /* initialize with builtin */
61 while(fsize>3) {
62 id = (ptr[0]<<8) | ptr[1]; /* get two-byte id */
63 ptr+=2; /* pass the id */
64 if(id < LANG_LAST_INDEX_IN_ARRAY) {
65 #if 0
66 printf("%2x New: %30s ", id, ptr);
67 printf("Replaces: %s\n", language_strings[id]);
68 #endif
69 language_strings[id] = ptr; /* point to this string */
71 while(*ptr) { /* pass the string */
72 fsize--;
73 ptr++;
75 fsize-=3; /* the id and the terminating zero */
76 ptr++; /* pass the terminating zero-byte */
79 else {
80 DEBUGF("Illegal language file\n");
81 retcode = 2;
84 else {
85 DEBUGF("Language %s too large: %d\n", filename, fsize);
86 retcode = 3;
88 close(fd);
89 return retcode;