summaryrefslogtreecommitdiffstats
path: root/tools/binlang
blob: 3d7fdff1dbf5cabfd0b44bc78e35725a2621ce6e (plain)
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
#!/usr/bin/env perl
############################################################################
#             __________               __   ___.                  
#   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___  
#   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /  
#   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <   
#   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
#                     \/            \/     \/    \/            \/ 
# $Id$
#
# Copyright (C) 2002 by Daniel Stenberg <daniel@haxx.se>
#
# All files in this archive are subject to the GNU General Public License.
# See the file COPYING in the source tree root for full license agreement.
#
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
# KIND, either express or implied.
#
############################################################################

if(!$ARGV[0] || !$ARGV[1] || !$ARGV[2]) {
    print <<MOO
Usage: binlang <english file> <language file> <output file>

Generate a binary language file.
MOO
;
    exit;
}

my $english = $ARGV[0];
my $input = $ARGV[1];
my $output = $ARGV[2];

my $idnum=0;

open(ENG, "<$english");
open(LANG, "<$input");
open(OFILE, ">$output");

my $langversion = 1;

binmode OFILE;

printf OFILE ("\x1a%c", $langversion); # magic lang file header

#
# We scan the english file to get the correct order of the id numbers
#
while(<ENG>) {
    if($_ =~ / *\#/) {
        # comment
        next;
    }
    # get rid of DOS newlines
    $_ =~ s/\r//g;
    if($_ =~ / *([a-z]+): *(.*)/) {
        ($var, $value) = ($1, $2);
        $set{$var} = $value;

        if($var eq "new") {
            # the last one for a single phrase
            $idnum{$set{'id'}}=$idnum;
            $idnum++;
            undef %set;
        }
    }
}
close(ENG);

while(<LANG>) {
    if($_ =~ / *\#/) {
        # comment
        next;
    }
    # get rid of DOS newlines
    $_ =~ s/\r//g;
    if($_ =~ / *([a-z]+): *(.*)/) {
        ($var, $value) = ($1, $2);
  #      print "$var => $value\n";

        $set{$var} = $value;

        if($var eq "new") {
            # the last one for a single phrase

            if(!$value) {
                # if not set, get the english version
                $value = $set{'eng'};
            }

            if($value =~ s/^\"(.*)\" *$/$1/g) {

                $idnum = $idnum{$set{'id'}};
                $idnum{$set{'id'}} = '_done_';

                printf OFILE ("%c%c%s\x00",
                              ($idnum>>8), ($idnum&0xff),
                              $value);
            }
            else {
                warn "String for ".$set{'id'}." misses quotes\n";
            }

            undef %set;
        }

    }

}
close(LANG);

close(OFILE);

foreach $k (keys(%idnum))
{
   if($idnum{$k} ne '_done_')
   {
      warn "Missing ID in $input: $k\n";
   }
}