author | nemo |
Tue, 28 Jun 2011 21:48:28 -0400 | |
changeset 5352 | 7f57d0c7816a |
parent 4976 | 088d40d8aba2 |
child 6453 | 11c578d30bd3 |
permissions | -rw-r--r-- |
184 | 1 |
(* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
4976 | 3 |
* Copyright (c) 2004-2011 Andrey Korotaev <unC0Rr@gmail.com> |
184 | 4 |
* |
5 |
* This program is free software; you can redistribute it and/or modify |
|
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation; version 2 of the License |
|
8 |
* |
|
9 |
* This program is distributed in the hope that it will be useful, |
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
* GNU General Public License for more details. |
|
13 |
* |
|
14 |
* You should have received a copy of the GNU General Public License |
|
15 |
* along with this program; if not, write to the Free Software |
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
17 |
*) |
|
18 |
||
2630 | 19 |
{$INCLUDE "options.inc"} |
20 |
||
184 | 21 |
unit uLocale; |
22 |
interface |
|
4361 | 23 |
uses uTypes; |
2863 | 24 |
|
2142 | 25 |
const MAX_EVENT_STRINGS = 100; |
184 | 26 |
|
2905 | 27 |
procedure LoadLocale(FileName: shortstring); |
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3774
diff
changeset
|
28 |
function Format(fmt: shortstring; var arg: shortstring): shortstring; |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3774
diff
changeset
|
29 |
function Format(fmt: ansistring; var arg: ansistring): ansistring; |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3774
diff
changeset
|
30 |
function GetEventString(e: TEventId): ansistring; |
2140 | 31 |
|
184 | 32 |
implementation |
4403 | 33 |
uses uRandom, uUtils, uVariables, uDebug; |
2142 | 34 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2908
diff
changeset
|
35 |
var trevt: array[TEventId] of array [0..Pred(MAX_EVENT_STRINGS)] of ansistring; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2908
diff
changeset
|
36 |
trevt_n: array[TEventId] of integer; |
184 | 37 |
|
2905 | 38 |
procedure LoadLocale(FileName: shortstring); |
2999 | 39 |
var s: ansistring; |
184 | 40 |
f: textfile; |
371 | 41 |
a, b, c: LongInt; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2908
diff
changeset
|
42 |
first: array[TEventId] of boolean; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2908
diff
changeset
|
43 |
e: TEventId; |
2722 | 44 |
loaded: boolean; |
184 | 45 |
begin |
2722 | 46 |
loaded:= false; |
2144 | 47 |
for e:= Low(TEventId) to High(TEventId) do first[e]:= true; |
2140 | 48 |
|
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2693
diff
changeset
|
49 |
{$I-} // iochecks off |
2747 | 50 |
Assign(f, FileName); |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2693
diff
changeset
|
51 |
filemode:= 0; // readonly |
2747 | 52 |
Reset(f); |
2722 | 53 |
if IOResult = 0 then loaded:= true; |
54 |
TryDo(loaded, 'Cannot load locale "' + FileName + '"', false); |
|
55 |
if loaded then |
|
56 |
begin |
|
57 |
while not eof(f) do |
|
58 |
begin |
|
59 |
readln(f, s); |
|
60 |
if Length(s) = 0 then continue; |
|
61 |
if not (s[1] in ['0'..'9']) then continue; |
|
62 |
TryDo(Length(s) > 6, 'Load locale: empty string', true); |
|
63 |
val(s[1]+s[2], a, c); |
|
64 |
TryDo(c = 0, 'Load locale: numbers should be two-digit: ' + s, true); |
|
65 |
TryDo(s[3] = ':', 'Load locale: ":" expected', true); |
|
66 |
val(s[4]+s[5], b, c); |
|
67 |
TryDo(c = 0, 'Load locale: numbers should be two-digit' + s, true); |
|
68 |
TryDo(s[6] = '=', 'Load locale: "=" expected', true); |
|
69 |
Delete(s, 1, 6); |
|
70 |
case a of |
|
4807
180dbfb13903
display caption for ammotype amNothing when switched to so that players know what just happened
sheepluva
parents:
4403
diff
changeset
|
71 |
0: if (b >=0) and (b <= ord(High(TAmmoStrId))) then trammo[TAmmoStrId(b)]:= s; |
2722 | 72 |
1: if (b >=0) and (b <= ord(High(TMsgStrId))) then trmsg[TMsgStrId(b)]:= s; |
73 |
2: if (b >=0) and (b <= ord(High(TEventId))) then begin |
|
4374 | 74 |
TryDo(trevt_n[TEventId(b)] < MAX_EVENT_STRINGS, 'Too many event strings in ' + IntToStr(a) + ':' + IntToStr(b), false); |
2722 | 75 |
if first[TEventId(b)] then |
76 |
begin |
|
77 |
trevt_n[TEventId(b)]:= 0; |
|
78 |
first[TEventId(b)]:= false; |
|
79 |
end; |
|
80 |
trevt[TEventId(b)][trevt_n[TEventId(b)]]:= s; |
|
81 |
inc(trevt_n[TEventId(b)]); |
|
82 |
end; |
|
4807
180dbfb13903
display caption for ammotype amNothing when switched to so that players know what just happened
sheepluva
parents:
4403
diff
changeset
|
83 |
3: if (b >=0) and (b <= ord(High(TAmmoStrId))) then trammoc[TAmmoStrId(b)]:= s; |
180dbfb13903
display caption for ammotype amNothing when switched to so that players know what just happened
sheepluva
parents:
4403
diff
changeset
|
84 |
4: if (b >=0) and (b <= ord(High(TAmmoStrId))) then trammod[TAmmoStrId(b)]:= s; |
2863 | 85 |
5: if (b >=0) and (b <= ord(High(TGoalStrId))) then trgoal[TGoalStrId(b)]:= s; |
2722 | 86 |
end; |
87 |
end; |
|
88 |
Close(f) |
|
89 |
end; |
|
184 | 90 |
{$I+} |
91 |
end; |
|
92 |
||
2905 | 93 |
function GetEventString(e: TEventId): ansistring; |
2140 | 94 |
begin |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2908
diff
changeset
|
95 |
if trevt_n[e] = 0 then // no messages for this event type? |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2908
diff
changeset
|
96 |
GetEventString:= '*missing translation*' |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2908
diff
changeset
|
97 |
else |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2908
diff
changeset
|
98 |
GetEventString:= trevt[e][GetRandom(trevt_n[e])]; // Pick a random message and return it |
2140 | 99 |
end; |
100 |
||
184 | 101 |
function Format(fmt: shortstring; var arg: shortstring): shortstring; |
371 | 102 |
var i: LongInt; |
184 | 103 |
begin |
104 |
i:= Pos('%1', fmt); |
|
351 | 105 |
if i = 0 then Format:= fmt |
106 |
else Format:= copy(fmt, 1, i - 1) + arg + Format(copy(fmt, i + 2, Length(fmt) - i - 1), arg) |
|
184 | 107 |
end; |
108 |
||
2905 | 109 |
function Format(fmt: ansistring; var arg: ansistring): ansistring; |
110 |
var i: LongInt; |
|
111 |
begin |
|
112 |
i:= Pos('%1', fmt); |
|
113 |
if i = 0 then Format:= fmt |
|
114 |
else Format:= copy(fmt, 1, i - 1) + arg + Format(copy(fmt, i + 2, Length(fmt) - i - 1), arg) |
|
115 |
end; |
|
116 |
||
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3774
diff
changeset
|
117 |
procedure LoadLocaleWrapper(str: pchar); cdecl; export; |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3774
diff
changeset
|
118 |
begin |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3774
diff
changeset
|
119 |
LoadLocale(Strpas(str)); |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3774
diff
changeset
|
120 |
end; |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3774
diff
changeset
|
121 |
|
184 | 122 |
end. |