hedgewars/uLocale.pas
changeset 80 3c3dc6a148ca
child 81 d74e0e914b50
equal deleted inserted replaced
79:29b477319854 80:3c3dc6a148ca
       
     1 (*
       
     2  * Hedgewars, a worms-like game
       
     3  * Copyright (c) 2006 Andrey Korotaev <unC0Rr@gmail.com>
       
     4  *
       
     5  * Distributed under the terms of the BSD-modified licence:
       
     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 deal
       
     9  * with 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  * 1. Redistributions of source code must retain the above copyright notice,
       
    15  *    this list of conditions and the following disclaimer.
       
    16  * 2. Redistributions in binary form must reproduce the above copyright notice,
       
    17  *    this list of conditions and the following disclaimer in the documentation
       
    18  *    and/or other materials provided with the distribution.
       
    19  * 3. The name of the author may not be used to endorse or promote products
       
    20  *    derived from this software without specific prior written permission.
       
    21  *
       
    22  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
       
    23  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
       
    24  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
       
    25  * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
       
    26  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
       
    27  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
       
    28  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
       
    29  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
       
    30  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
       
    31  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
       
    32  *)
       
    33 
       
    34 unit uLocale;
       
    35 interface
       
    36 type TAmmoStrId = (sidGrenade, sidClusterBomb, sidBazooka, sidUFO, sidShotgun,
       
    37                    sidPickHammer, sidSkip, sidRope, sidMine, sidDEagle,
       
    38                    sidDynamite, sidBaseballBat);
       
    39 var trammo: array[TAmmoStrId] of shortstring;
       
    40 
       
    41 procedure LoadLocale(FileName: string);
       
    42 
       
    43 implementation
       
    44 uses uMisc;
       
    45 
       
    46 procedure LoadLocale(FileName: string);
       
    47 var s: shortstring;
       
    48     f: textfile;
       
    49     a, b, c: integer;
       
    50 begin
       
    51 {$I-}
       
    52 assignfile(f, FileName);
       
    53 reset(f);
       
    54 TryDo(IOResult = 0, 'Cannot load locale "' + FileName + '"', true);
       
    55 while not eof(f) do
       
    56       begin
       
    57       readln(f, s);
       
    58       if Length(s) = 0 then continue;
       
    59       if s[1] = ';' then continue;
       
    60       TryDo(Length(s) > 6, 'Load locale: empty string', true);
       
    61       val(s[1]+s[2], a, c);
       
    62       TryDo(c = 0, 'Load locale: numbers should be two-digit', true);
       
    63       TryDo(s[3] = ':', 'Load locale: ":" expected', true);
       
    64       val(s[4]+s[5], b, c);
       
    65       TryDo(c = 0, 'Load locale: numbers should be two-digit', true);
       
    66       TryDo(s[6] = '=', 'Load locale: "=" expected', true);
       
    67       Delete(s, 1, 6);
       
    68       case a of
       
    69            0: if (b >=0) and (b <= ord(High(TAmmoStrId))) then trammo[TAmmoStrId(b)]:= s;
       
    70            end;
       
    71       end;
       
    72 closefile(f)
       
    73 {$I+}
       
    74 end;
       
    75 
       
    76 end.