80
|
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,
|
83
|
38 |
sidDynamite, sidBaseballBat, sidFirePunch, sidSeconds);
|
175
|
39 |
TMsgStrId = (sidStartFight, sidDraw, sidWinner, sidVolume);
|
108
|
40 |
var trammo: array[TAmmoStrId] of string;
|
|
41 |
trmsg: array[TMsgStrId] of string;
|
80
|
42 |
|
|
43 |
procedure LoadLocale(FileName: string);
|
83
|
44 |
function Format(fmt: shortstring; var arg: shortstring): shortstring;
|
80
|
45 |
|
|
46 |
implementation
|
|
47 |
uses uMisc;
|
|
48 |
|
|
49 |
procedure LoadLocale(FileName: string);
|
|
50 |
var s: shortstring;
|
|
51 |
f: textfile;
|
|
52 |
a, b, c: integer;
|
|
53 |
begin
|
|
54 |
{$I-}
|
108
|
55 |
AssignFile(f, FileName);
|
80
|
56 |
reset(f);
|
|
57 |
TryDo(IOResult = 0, 'Cannot load locale "' + FileName + '"', true);
|
|
58 |
while not eof(f) do
|
|
59 |
begin
|
|
60 |
readln(f, s);
|
|
61 |
if Length(s) = 0 then continue;
|
|
62 |
if s[1] = ';' then continue;
|
|
63 |
TryDo(Length(s) > 6, 'Load locale: empty string', true);
|
|
64 |
val(s[1]+s[2], a, c);
|
|
65 |
TryDo(c = 0, 'Load locale: numbers should be two-digit', true);
|
|
66 |
TryDo(s[3] = ':', 'Load locale: ":" expected', true);
|
|
67 |
val(s[4]+s[5], b, c);
|
|
68 |
TryDo(c = 0, 'Load locale: numbers should be two-digit', true);
|
|
69 |
TryDo(s[6] = '=', 'Load locale: "=" expected', true);
|
|
70 |
Delete(s, 1, 6);
|
|
71 |
case a of
|
|
72 |
0: if (b >=0) and (b <= ord(High(TAmmoStrId))) then trammo[TAmmoStrId(b)]:= s;
|
81
|
73 |
1: if (b >=0) and (b <= ord(High(TMsgStrId))) then trmsg[TMsgStrId(b)]:= s;
|
80
|
74 |
end;
|
|
75 |
end;
|
|
76 |
closefile(f)
|
|
77 |
{$I+}
|
|
78 |
end;
|
|
79 |
|
83
|
80 |
function Format(fmt: shortstring; var arg: shortstring): shortstring;
|
|
81 |
var i: integer;
|
|
82 |
begin
|
|
83 |
i:= Pos('%1', fmt);
|
|
84 |
if i = 0 then Result:= fmt
|
|
85 |
else Result:= copy(fmt, 1, i - 1) + arg + Format(copy(fmt, i + 2, Length(fmt) - i - 1), arg)
|
|
86 |
end;
|
|
87 |
|
80
|
88 |
end.
|