author | koda |
Sat, 15 Jan 2011 21:32:44 +0100 | |
branch | 0.9.15 |
changeset 4751 | 849740a91d36 |
parent 4403 | 0dfe26f48ec1 |
child 4807 | 180dbfb13903 |
permissions | -rw-r--r-- |
184 | 1 |
(* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
925 | 3 |
* Copyright (c) 2006-2008 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; |
2357
babe1a55e284
Add an empty weapon to avoid selection of weapons which aren't yet ready. Might all be useful to switch to amNothing in certain situations, like after using up all ropes, instead of bazooka.
nemo
parents:
2185
diff
changeset
|
47 |
trammo[sidNothing]:= ' '; |
2144 | 48 |
for e:= Low(TEventId) to High(TEventId) do first[e]:= true; |
2140 | 49 |
|
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2693
diff
changeset
|
50 |
{$I-} // iochecks off |
2747 | 51 |
Assign(f, FileName); |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2693
diff
changeset
|
52 |
filemode:= 0; // readonly |
2747 | 53 |
Reset(f); |
2722 | 54 |
if IOResult = 0 then loaded:= true; |
55 |
TryDo(loaded, 'Cannot load locale "' + FileName + '"', false); |
|
56 |
if loaded then |
|
57 |
begin |
|
58 |
while not eof(f) do |
|
59 |
begin |
|
60 |
readln(f, s); |
|
61 |
if Length(s) = 0 then continue; |
|
62 |
if not (s[1] in ['0'..'9']) 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: ' + s, 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' + s, 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+1)]:= s; |
|
73 |
1: if (b >=0) and (b <= ord(High(TMsgStrId))) then trmsg[TMsgStrId(b)]:= s; |
|
74 |
2: if (b >=0) and (b <= ord(High(TEventId))) then begin |
|
4374 | 75 |
TryDo(trevt_n[TEventId(b)] < MAX_EVENT_STRINGS, 'Too many event strings in ' + IntToStr(a) + ':' + IntToStr(b), false); |
2722 | 76 |
if first[TEventId(b)] then |
77 |
begin |
|
78 |
trevt_n[TEventId(b)]:= 0; |
|
79 |
first[TEventId(b)]:= false; |
|
80 |
end; |
|
81 |
trevt[TEventId(b)][trevt_n[TEventId(b)]]:= s; |
|
82 |
inc(trevt_n[TEventId(b)]); |
|
83 |
end; |
|
2747 | 84 |
3: if (b >=0) and (b <= ord(High(TAmmoStrId))) then trammoc[TAmmoStrId(b+1)]:= s; |
85 |
4: if (b >=0) and (b <= ord(High(TAmmoStrId))) then trammod[TAmmoStrId(b+1)]:= s; |
|
2863 | 86 |
5: if (b >=0) and (b <= ord(High(TGoalStrId))) then trgoal[TGoalStrId(b)]:= s; |
2722 | 87 |
end; |
88 |
end; |
|
89 |
Close(f) |
|
90 |
end; |
|
184 | 91 |
{$I+} |
92 |
end; |
|
93 |
||
2905 | 94 |
function GetEventString(e: TEventId): ansistring; |
2140 | 95 |
begin |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2908
diff
changeset
|
96 |
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
|
97 |
GetEventString:= '*missing translation*' |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2908
diff
changeset
|
98 |
else |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2908
diff
changeset
|
99 |
GetEventString:= trevt[e][GetRandom(trevt_n[e])]; // Pick a random message and return it |
2140 | 100 |
end; |
101 |
||
184 | 102 |
function Format(fmt: shortstring; var arg: shortstring): shortstring; |
371 | 103 |
var i: LongInt; |
184 | 104 |
begin |
105 |
i:= Pos('%1', fmt); |
|
351 | 106 |
if i = 0 then Format:= fmt |
107 |
else Format:= copy(fmt, 1, i - 1) + arg + Format(copy(fmt, i + 2, Length(fmt) - i - 1), arg) |
|
184 | 108 |
end; |
109 |
||
2905 | 110 |
function Format(fmt: ansistring; var arg: ansistring): ansistring; |
111 |
var i: LongInt; |
|
112 |
begin |
|
113 |
i:= Pos('%1', fmt); |
|
114 |
if i = 0 then Format:= fmt |
|
115 |
else Format:= copy(fmt, 1, i - 1) + arg + Format(copy(fmt, i + 2, Length(fmt) - i - 1), arg) |
|
116 |
end; |
|
117 |
||
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3774
diff
changeset
|
118 |
procedure LoadLocaleWrapper(str: pchar); cdecl; export; |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3774
diff
changeset
|
119 |
begin |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3774
diff
changeset
|
120 |
LoadLocale(Strpas(str)); |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3774
diff
changeset
|
121 |
end; |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3774
diff
changeset
|
122 |
|
184 | 123 |
end. |