author | koda |
Fri, 24 Jan 2014 10:56:22 +0100 | |
changeset 10068 | cbe06dc07332 |
parent 10015 | 4feced261c68 |
child 10080 | ac51bcb534ef |
permissions | -rw-r--r-- |
184 | 1 |
(* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
9998 | 3 |
* Copyright (c) 2004-2014 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; |
10009 | 29 |
function FormatA(fmt: PChar; arg: ansistring): ansistring; |
30 |
function GetEventString(e: TEventId): PChar; |
|
31 |
procedure initModule; |
|
32 |
procedure freeModule; |
|
2140 | 33 |
|
7048
0a4c88935902
the ios port runs again, although with a few things to sort out
koda
parents:
6700
diff
changeset
|
34 |
{$IFDEF HWLIBRARY} |
0a4c88935902
the ios port runs again, although with a few things to sort out
koda
parents:
6700
diff
changeset
|
35 |
procedure LoadLocaleWrapper(str: pchar); cdecl; export; |
0a4c88935902
the ios port runs again, although with a few things to sort out
koda
parents:
6700
diff
changeset
|
36 |
{$ENDIF} |
0a4c88935902
the ios port runs again, although with a few things to sort out
koda
parents:
6700
diff
changeset
|
37 |
|
184 | 38 |
implementation |
10015 | 39 |
uses uRandom, uVariables, uDebug, uPhysFSLayer, sysutils; |
2142 | 40 |
|
10009 | 41 |
var trevt: array[TEventId] of array [0..Pred(MAX_EVENT_STRINGS)] of PChar; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2908
diff
changeset
|
42 |
trevt_n: array[TEventId] of integer; |
184 | 43 |
|
2905 | 44 |
procedure LoadLocale(FileName: shortstring); |
10015 | 45 |
var s: PChar = nil; |
46 |
sc: PChar; |
|
8028 | 47 |
f: pfsFile; |
371 | 48 |
a, b, c: LongInt; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2908
diff
changeset
|
49 |
first: array[TEventId] of boolean; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2908
diff
changeset
|
50 |
e: TEventId; |
184 | 51 |
begin |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6528
diff
changeset
|
52 |
for e:= Low(TEventId) to High(TEventId) do |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6528
diff
changeset
|
53 |
first[e]:= true; |
2140 | 54 |
|
8028 | 55 |
f:= pfsOpenRead(FileName); |
56 |
TryDo(f <> nil, 'Cannot load locale "' + FileName + '"', false); |
|
57 |
||
58 |
if f <> nil then |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6528
diff
changeset
|
59 |
begin |
8028 | 60 |
while not pfsEof(f) do |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6528
diff
changeset
|
61 |
begin |
8107 | 62 |
pfsReadLnA(f, s); |
10009 | 63 |
if (Length(s) > 0) and (s[0] >= '0') and (s[0] <= '9') then |
64 |
begin |
|
65 |
TryDo(Length(s) > 6, 'Load locale: empty string', true); |
|
66 |
val(s[0]+s[1], a, c); |
|
67 |
TryDo(c = 0, 'Load locale: numbers should be two-digit: ' + s, true); |
|
68 |
TryDo(s[2] = ':', 'Load locale: ":" expected', true); |
|
69 |
val(s[3]+s[4], b, c); |
|
70 |
TryDo(c = 0, 'Load locale: numbers should be two-digit' + s, true); |
|
71 |
TryDo(s[5] = '=', 'Load locale: "=" expected', true); |
|
72 |
sc:= StrAlloc(length(s) - 5); |
|
73 |
StrCopy(sc, @s[6]); |
|
74 |
case a of |
|
75 |
0: if (b >=0) and (b <= ord(High(TAmmoStrId))) then |
|
76 |
trammo[TAmmoStrId(b)]:= sc; |
|
77 |
1: if (b >=0) and (b <= ord(High(TMsgStrId))) then |
|
78 |
trmsg[TMsgStrId(b)]:= sc; |
|
79 |
2: if (b >=0) and (b <= ord(High(TEventId))) then |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6528
diff
changeset
|
80 |
begin |
10009 | 81 |
TryDo(trevt_n[TEventId(b)] < MAX_EVENT_STRINGS, 'Too many event strings in ' + IntToStr(a) + ':' + IntToStr(b), false); |
82 |
if first[TEventId(b)] then |
|
83 |
begin |
|
84 |
trevt_n[TEventId(b)]:= 0; |
|
85 |
first[TEventId(b)]:= false; |
|
86 |
end; |
|
87 |
trevt[TEventId(b)][trevt_n[TEventId(b)]]:= sc; |
|
88 |
inc(trevt_n[TEventId(b)]); |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6528
diff
changeset
|
89 |
end; |
10009 | 90 |
3: if (b >=0) and (b <= ord(High(TAmmoStrId))) then |
91 |
trammoc[TAmmoStrId(b)]:= sc; |
|
92 |
4: if (b >=0) and (b <= ord(High(TAmmoStrId))) then |
|
93 |
trammod[TAmmoStrId(b)]:= sc; |
|
94 |
5: if (b >=0) and (b <= ord(High(TGoalStrId))) then |
|
95 |
trgoal[TGoalStrId(b)]:= sc; |
|
96 |
end; |
|
97 |
end; |
|
98 |
StrDispose(s); |
|
99 |
end; |
|
8028 | 100 |
pfsClose(f); |
2722 | 101 |
end; |
184 | 102 |
end; |
103 |
||
10009 | 104 |
function GetEventString(e: TEventId): PChar; |
2140 | 105 |
begin |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2908
diff
changeset
|
106 |
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
|
107 |
GetEventString:= '*missing translation*' |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2908
diff
changeset
|
108 |
else |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2908
diff
changeset
|
109 |
GetEventString:= trevt[e][GetRandom(trevt_n[e])]; // Pick a random message and return it |
2140 | 110 |
end; |
111 |
||
184 | 112 |
function Format(fmt: shortstring; var arg: shortstring): shortstring; |
371 | 113 |
var i: LongInt; |
184 | 114 |
begin |
115 |
i:= Pos('%1', fmt); |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6528
diff
changeset
|
116 |
if i = 0 then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6528
diff
changeset
|
117 |
Format:= fmt |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6528
diff
changeset
|
118 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6528
diff
changeset
|
119 |
Format:= copy(fmt, 1, i - 1) + arg + Format(copy(fmt, i + 2, Length(fmt) - i - 1), arg) |
184 | 120 |
end; |
121 |
||
10009 | 122 |
function FormatA(fmt: PChar; arg: ansistring): ansistring; |
2905 | 123 |
var i: LongInt; |
10009 | 124 |
s: ansistring; |
2905 | 125 |
begin |
10009 | 126 |
s:= fmt; |
127 |
||
128 |
i:= Pos('%1', s); |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6528
diff
changeset
|
129 |
if i = 0 then |
10009 | 130 |
FormatA:= s |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6528
diff
changeset
|
131 |
else |
10009 | 132 |
FormatA:= copy(s, 1, i - 1) + arg + FormatA(PChar(copy(s, i + 2, Length(s) - i - 1)), arg) |
2905 | 133 |
end; |
134 |
||
7048
0a4c88935902
the ios port runs again, although with a few things to sort out
koda
parents:
6700
diff
changeset
|
135 |
{$IFDEF HWLIBRARY} |
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3774
diff
changeset
|
136 |
procedure LoadLocaleWrapper(str: pchar); cdecl; export; |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3774
diff
changeset
|
137 |
begin |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3774
diff
changeset
|
138 |
LoadLocale(Strpas(str)); |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3774
diff
changeset
|
139 |
end; |
7048
0a4c88935902
the ios port runs again, although with a few things to sort out
koda
parents:
6700
diff
changeset
|
140 |
{$ENDIF} |
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3774
diff
changeset
|
141 |
|
10009 | 142 |
procedure initModule; |
143 |
var e: TEventId; |
|
144 |
i: LongInt; |
|
145 |
begin |
|
146 |
for e:= Low(TEventId) to High(TEventId) do |
|
147 |
for i:= 0 to Pred(MAX_EVENT_STRINGS) do |
|
148 |
trevt[e][i]:= nil; |
|
149 |
end; |
|
150 |
||
151 |
procedure freeModule; |
|
152 |
var e: TEventId; |
|
153 |
i: LongInt; |
|
154 |
begin |
|
155 |
for e:= Low(TEventId) to High(TEventId) do |
|
156 |
for i:= 0 to Pred(trevt_n[e]) do |
|
157 |
StrDispose(trevt[e][i]); |
|
158 |
end; |
|
159 |
||
184 | 160 |
end. |