author | Wuzzy <Wuzzy2@mail.ru> |
Sun, 08 Jul 2018 01:30:13 +0200 | |
changeset 13454 | 794dcf69a5aa |
parent 13157 | c5453cbdeb87 |
child 13457 | b587cdb03bac |
permissions | -rw-r--r-- |
184 | 1 |
(* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
11046 | 3 |
* Copyright (c) 2004-2015 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 |
|
10108
c68cf030eded
update FSF address. note: two sdl include files (by Sam Lantinga) still have the old FSF address in their copyright - but I ain't gonna touch their copyright headers
sheepluva
parents:
10105
diff
changeset
|
16 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
184 | 17 |
*) |
18 |
||
2630 | 19 |
{$INCLUDE "options.inc"} |
20 |
||
184 | 21 |
unit uLocale; |
22 |
interface |
|
4361 | 23 |
uses uTypes; |
2863 | 24 |
|
12461
e29a4238dc19
Increase maximum event string message count to 255
Wuzzy <almikes@aol.com>
parents:
11802
diff
changeset
|
25 |
const MAX_EVENT_STRINGS = 255; |
13043
9119726e22bc
Engine: Allow to use up to 9 placeholders in Format and FormatA
Wuzzy <Wuzzy2@mail.ru>
parents:
12461
diff
changeset
|
26 |
const MAX_FORMAT_STRING_SYMBOLS = 9; |
184 | 27 |
|
2905 | 28 |
procedure LoadLocale(FileName: shortstring); |
13043
9119726e22bc
Engine: Allow to use up to 9 placeholders in Format and FormatA
Wuzzy <Wuzzy2@mail.ru>
parents:
12461
diff
changeset
|
29 |
function Format(fmt: shortstring; args: array of shortstring): shortstring; |
9119726e22bc
Engine: Allow to use up to 9 placeholders in Format and FormatA
Wuzzy <Wuzzy2@mail.ru>
parents:
12461
diff
changeset
|
30 |
function FormatA(fmt: ansistring; args: array of ansistring): ansistring; |
9119726e22bc
Engine: Allow to use up to 9 placeholders in Format and FormatA
Wuzzy <Wuzzy2@mail.ru>
parents:
12461
diff
changeset
|
31 |
function Format(fmt: shortstring; arg: shortstring): shortstring; |
9119726e22bc
Engine: Allow to use up to 9 placeholders in Format and FormatA
Wuzzy <Wuzzy2@mail.ru>
parents:
12461
diff
changeset
|
32 |
function FormatA(fmt: ansistring; arg: ansistring): ansistring; |
10122
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
33 |
function GetEventString(e: TEventId): ansistring; |
2140 | 34 |
|
7048
0a4c88935902
the ios port runs again, although with a few things to sort out
koda
parents:
6700
diff
changeset
|
35 |
{$IFDEF HWLIBRARY} |
11790
ac93cfc17365
- Pass also userPath to LoadLocaleWrapper
antonc27 <antonc27@mail.ru>
parents:
11684
diff
changeset
|
36 |
procedure LoadLocaleWrapper(path: pchar; userpath: pchar; filename: pchar); cdecl; export; |
7048
0a4c88935902
the ios port runs again, although with a few things to sort out
koda
parents:
6700
diff
changeset
|
37 |
{$ENDIF} |
0a4c88935902
the ios port runs again, although with a few things to sort out
koda
parents:
6700
diff
changeset
|
38 |
|
184 | 39 |
implementation |
10122
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
40 |
uses uRandom, uUtils, uVariables, uDebug, uPhysFSLayer; |
2142 | 41 |
|
10122
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
42 |
var trevt: array[TEventId] of array [0..Pred(MAX_EVENT_STRINGS)] of ansistring; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2908
diff
changeset
|
43 |
trevt_n: array[TEventId] of integer; |
184 | 44 |
|
2905 | 45 |
procedure LoadLocale(FileName: shortstring); |
10127 | 46 |
var s: ansistring; |
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); |
11532 | 56 |
checkFails(f <> nil, 'Cannot load locale "' + FileName + '"', false); |
8028 | 57 |
|
10249 | 58 |
s:= ''; |
59 |
||
8028 | 60 |
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
|
61 |
begin |
8028 | 62 |
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
|
63 |
begin |
8107 | 64 |
pfsReadLnA(f, s); |
10122
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
65 |
if Length(s) = 0 then |
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
66 |
continue; |
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
67 |
if (s[1] < '0') or (s[1] > '9') then |
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
68 |
continue; |
11532 | 69 |
checkFails(Length(s) > 6, 'Load locale: empty string', true); |
10127 | 70 |
{$IFNDEF PAS2C} |
10122
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
71 |
val(s[1]+s[2], a, c); |
11532 | 72 |
checkFails(c = 0, ansistring('Load locale: numbers should be two-digit: ') + s, true); |
10122
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
73 |
val(s[4]+s[5], b, c); |
11532 | 74 |
checkFails(c = 0, ansistring('Load locale: numbers should be two-digit: ') + s, true); |
10127 | 75 |
{$ELSE} |
76 |
val(s[1]+s[2], a); |
|
77 |
val(s[4]+s[5], b); |
|
78 |
{$ENDIF} |
|
11532 | 79 |
checkFails(s[3] = ':', 'Load locale: ":" expected', true); |
80 |
checkFails(s[6] = '=', 'Load locale: "=" expected', true); |
|
81 |
if not allOK then exit; |
|
10122
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
82 |
Delete(s, 1, 6); |
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
83 |
case a of |
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
84 |
0: if (b >=0) and (b <= ord(High(TAmmoStrId))) then |
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
85 |
trammo[TAmmoStrId(b)]:= s; |
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
86 |
1: if (b >=0) and (b <= ord(High(TMsgStrId))) then |
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
87 |
trmsg[TMsgStrId(b)]:= s; |
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
88 |
2: if (b >=0) and (b <= ord(High(TEventId))) then |
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
89 |
begin |
11532 | 90 |
checkFails(trevt_n[TEventId(b)] < MAX_EVENT_STRINGS, 'Too many event strings in ' + IntToStr(a) + ':' + IntToStr(b), false); |
10122
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
91 |
if first[TEventId(b)] then |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6528
diff
changeset
|
92 |
begin |
10122
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
93 |
trevt_n[TEventId(b)]:= 0; |
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
94 |
first[TEventId(b)]:= false; |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6528
diff
changeset
|
95 |
end; |
10122
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
96 |
trevt[TEventId(b)][trevt_n[TEventId(b)]]:= s; |
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
97 |
inc(trevt_n[TEventId(b)]); |
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
98 |
end; |
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
99 |
3: if (b >=0) and (b <= ord(High(TAmmoStrId))) then |
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
100 |
trammoc[TAmmoStrId(b)]:= s; |
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
101 |
4: if (b >=0) and (b <= ord(High(TAmmoStrId))) then |
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
102 |
trammod[TAmmoStrId(b)]:= s; |
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
103 |
5: if (b >=0) and (b <= ord(High(TGoalStrId))) then |
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
104 |
trgoal[TGoalStrId(b)]:= s; |
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
105 |
end; |
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
106 |
end; |
8028 | 107 |
pfsClose(f); |
2722 | 108 |
end; |
184 | 109 |
end; |
110 |
||
10122
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
111 |
function GetEventString(e: TEventId): ansistring; |
2140 | 112 |
begin |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2908
diff
changeset
|
113 |
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
|
114 |
GetEventString:= '*missing translation*' |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2908
diff
changeset
|
115 |
else |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2908
diff
changeset
|
116 |
GetEventString:= trevt[e][GetRandom(trevt_n[e])]; // Pick a random message and return it |
2140 | 117 |
end; |
118 |
||
13043
9119726e22bc
Engine: Allow to use up to 9 placeholders in Format and FormatA
Wuzzy <Wuzzy2@mail.ru>
parents:
12461
diff
changeset
|
119 |
// Format the string fmt. |
9119726e22bc
Engine: Allow to use up to 9 placeholders in Format and FormatA
Wuzzy <Wuzzy2@mail.ru>
parents:
12461
diff
changeset
|
120 |
// Take a shortstring with placeholders %1, %2, %3, etc. and replace |
9119726e22bc
Engine: Allow to use up to 9 placeholders in Format and FormatA
Wuzzy <Wuzzy2@mail.ru>
parents:
12461
diff
changeset
|
121 |
// them with the corresponding elements of an array with up to |
9119726e22bc
Engine: Allow to use up to 9 placeholders in Format and FormatA
Wuzzy <Wuzzy2@mail.ru>
parents:
12461
diff
changeset
|
122 |
// MAX_FORMAT_STRING_SYMBOLS. Important! Each placeholder can only be |
9119726e22bc
Engine: Allow to use up to 9 placeholders in Format and FormatA
Wuzzy <Wuzzy2@mail.ru>
parents:
12461
diff
changeset
|
123 |
// used exactly once and numbers MUST NOT be skipped (e.g. using %1 and %3 |
9119726e22bc
Engine: Allow to use up to 9 placeholders in Format and FormatA
Wuzzy <Wuzzy2@mail.ru>
parents:
12461
diff
changeset
|
124 |
// but not %2. |
9119726e22bc
Engine: Allow to use up to 9 placeholders in Format and FormatA
Wuzzy <Wuzzy2@mail.ru>
parents:
12461
diff
changeset
|
125 |
function Format(fmt: shortstring; args: array of shortstring): shortstring; |
9119726e22bc
Engine: Allow to use up to 9 placeholders in Format and FormatA
Wuzzy <Wuzzy2@mail.ru>
parents:
12461
diff
changeset
|
126 |
var i, p: LongInt; |
9119726e22bc
Engine: Allow to use up to 9 placeholders in Format and FormatA
Wuzzy <Wuzzy2@mail.ru>
parents:
12461
diff
changeset
|
127 |
tempstr: shortstring; |
184 | 128 |
begin |
13043
9119726e22bc
Engine: Allow to use up to 9 placeholders in Format and FormatA
Wuzzy <Wuzzy2@mail.ru>
parents:
12461
diff
changeset
|
129 |
tempstr:= fmt; |
9119726e22bc
Engine: Allow to use up to 9 placeholders in Format and FormatA
Wuzzy <Wuzzy2@mail.ru>
parents:
12461
diff
changeset
|
130 |
for i:=0 to MAX_FORMAT_STRING_SYMBOLS - 1 do |
9119726e22bc
Engine: Allow to use up to 9 placeholders in Format and FormatA
Wuzzy <Wuzzy2@mail.ru>
parents:
12461
diff
changeset
|
131 |
begin |
13157
c5453cbdeb87
uLocale: Fix broken Format function
Wuzzy <Wuzzy2@mail.ru>
parents:
13043
diff
changeset
|
132 |
p:= Pos('%'+IntToStr(i+1), tempstr); |
13043
9119726e22bc
Engine: Allow to use up to 9 placeholders in Format and FormatA
Wuzzy <Wuzzy2@mail.ru>
parents:
12461
diff
changeset
|
133 |
if (p = 0) or (i >= Length(args)) then |
9119726e22bc
Engine: Allow to use up to 9 placeholders in Format and FormatA
Wuzzy <Wuzzy2@mail.ru>
parents:
12461
diff
changeset
|
134 |
break |
9119726e22bc
Engine: Allow to use up to 9 placeholders in Format and FormatA
Wuzzy <Wuzzy2@mail.ru>
parents:
12461
diff
changeset
|
135 |
else |
9119726e22bc
Engine: Allow to use up to 9 placeholders in Format and FormatA
Wuzzy <Wuzzy2@mail.ru>
parents:
12461
diff
changeset
|
136 |
begin |
9119726e22bc
Engine: Allow to use up to 9 placeholders in Format and FormatA
Wuzzy <Wuzzy2@mail.ru>
parents:
12461
diff
changeset
|
137 |
delete(tempstr, p, 2); |
9119726e22bc
Engine: Allow to use up to 9 placeholders in Format and FormatA
Wuzzy <Wuzzy2@mail.ru>
parents:
12461
diff
changeset
|
138 |
insert(args[i], tempstr, p); |
9119726e22bc
Engine: Allow to use up to 9 placeholders in Format and FormatA
Wuzzy <Wuzzy2@mail.ru>
parents:
12461
diff
changeset
|
139 |
end; |
9119726e22bc
Engine: Allow to use up to 9 placeholders in Format and FormatA
Wuzzy <Wuzzy2@mail.ru>
parents:
12461
diff
changeset
|
140 |
end; |
9119726e22bc
Engine: Allow to use up to 9 placeholders in Format and FormatA
Wuzzy <Wuzzy2@mail.ru>
parents:
12461
diff
changeset
|
141 |
Format:= tempstr; |
184 | 142 |
end; |
143 |
||
13043
9119726e22bc
Engine: Allow to use up to 9 placeholders in Format and FormatA
Wuzzy <Wuzzy2@mail.ru>
parents:
12461
diff
changeset
|
144 |
// Same as Format, but for ansistring |
9119726e22bc
Engine: Allow to use up to 9 placeholders in Format and FormatA
Wuzzy <Wuzzy2@mail.ru>
parents:
12461
diff
changeset
|
145 |
function FormatA(fmt: ansistring; args: array of ansistring): ansistring; |
9119726e22bc
Engine: Allow to use up to 9 placeholders in Format and FormatA
Wuzzy <Wuzzy2@mail.ru>
parents:
12461
diff
changeset
|
146 |
var i, p: LongInt; |
9119726e22bc
Engine: Allow to use up to 9 placeholders in Format and FormatA
Wuzzy <Wuzzy2@mail.ru>
parents:
12461
diff
changeset
|
147 |
tempstr: ansistring; |
2905 | 148 |
begin |
13043
9119726e22bc
Engine: Allow to use up to 9 placeholders in Format and FormatA
Wuzzy <Wuzzy2@mail.ru>
parents:
12461
diff
changeset
|
149 |
tempstr:= fmt; |
9119726e22bc
Engine: Allow to use up to 9 placeholders in Format and FormatA
Wuzzy <Wuzzy2@mail.ru>
parents:
12461
diff
changeset
|
150 |
for i:=0 to MAX_FORMAT_STRING_SYMBOLS - 1 do |
9119726e22bc
Engine: Allow to use up to 9 placeholders in Format and FormatA
Wuzzy <Wuzzy2@mail.ru>
parents:
12461
diff
changeset
|
151 |
begin |
9119726e22bc
Engine: Allow to use up to 9 placeholders in Format and FormatA
Wuzzy <Wuzzy2@mail.ru>
parents:
12461
diff
changeset
|
152 |
p:= Pos('%'+IntToStr(i+1), tempstr); |
9119726e22bc
Engine: Allow to use up to 9 placeholders in Format and FormatA
Wuzzy <Wuzzy2@mail.ru>
parents:
12461
diff
changeset
|
153 |
if (p = 0) or (i >= Length(args)) then |
9119726e22bc
Engine: Allow to use up to 9 placeholders in Format and FormatA
Wuzzy <Wuzzy2@mail.ru>
parents:
12461
diff
changeset
|
154 |
break |
9119726e22bc
Engine: Allow to use up to 9 placeholders in Format and FormatA
Wuzzy <Wuzzy2@mail.ru>
parents:
12461
diff
changeset
|
155 |
else |
9119726e22bc
Engine: Allow to use up to 9 placeholders in Format and FormatA
Wuzzy <Wuzzy2@mail.ru>
parents:
12461
diff
changeset
|
156 |
begin |
9119726e22bc
Engine: Allow to use up to 9 placeholders in Format and FormatA
Wuzzy <Wuzzy2@mail.ru>
parents:
12461
diff
changeset
|
157 |
delete(tempstr, p, 2); |
9119726e22bc
Engine: Allow to use up to 9 placeholders in Format and FormatA
Wuzzy <Wuzzy2@mail.ru>
parents:
12461
diff
changeset
|
158 |
insert(args[i], tempstr, p); |
9119726e22bc
Engine: Allow to use up to 9 placeholders in Format and FormatA
Wuzzy <Wuzzy2@mail.ru>
parents:
12461
diff
changeset
|
159 |
end; |
9119726e22bc
Engine: Allow to use up to 9 placeholders in Format and FormatA
Wuzzy <Wuzzy2@mail.ru>
parents:
12461
diff
changeset
|
160 |
end; |
9119726e22bc
Engine: Allow to use up to 9 placeholders in Format and FormatA
Wuzzy <Wuzzy2@mail.ru>
parents:
12461
diff
changeset
|
161 |
FormatA:= tempstr; |
9119726e22bc
Engine: Allow to use up to 9 placeholders in Format and FormatA
Wuzzy <Wuzzy2@mail.ru>
parents:
12461
diff
changeset
|
162 |
end; |
9119726e22bc
Engine: Allow to use up to 9 placeholders in Format and FormatA
Wuzzy <Wuzzy2@mail.ru>
parents:
12461
diff
changeset
|
163 |
|
9119726e22bc
Engine: Allow to use up to 9 placeholders in Format and FormatA
Wuzzy <Wuzzy2@mail.ru>
parents:
12461
diff
changeset
|
164 |
// Same as Format above, but with only one placeholder %1, replaced by arg. |
9119726e22bc
Engine: Allow to use up to 9 placeholders in Format and FormatA
Wuzzy <Wuzzy2@mail.ru>
parents:
12461
diff
changeset
|
165 |
function Format(fmt: shortstring; arg: shortstring): shortstring; |
9119726e22bc
Engine: Allow to use up to 9 placeholders in Format and FormatA
Wuzzy <Wuzzy2@mail.ru>
parents:
12461
diff
changeset
|
166 |
begin |
9119726e22bc
Engine: Allow to use up to 9 placeholders in Format and FormatA
Wuzzy <Wuzzy2@mail.ru>
parents:
12461
diff
changeset
|
167 |
Format:= Format(fmt, [arg]); |
9119726e22bc
Engine: Allow to use up to 9 placeholders in Format and FormatA
Wuzzy <Wuzzy2@mail.ru>
parents:
12461
diff
changeset
|
168 |
end; |
9119726e22bc
Engine: Allow to use up to 9 placeholders in Format and FormatA
Wuzzy <Wuzzy2@mail.ru>
parents:
12461
diff
changeset
|
169 |
|
9119726e22bc
Engine: Allow to use up to 9 placeholders in Format and FormatA
Wuzzy <Wuzzy2@mail.ru>
parents:
12461
diff
changeset
|
170 |
// Same as above, but for ansistring |
9119726e22bc
Engine: Allow to use up to 9 placeholders in Format and FormatA
Wuzzy <Wuzzy2@mail.ru>
parents:
12461
diff
changeset
|
171 |
function FormatA(fmt: ansistring; arg: ansistring): ansistring; |
9119726e22bc
Engine: Allow to use up to 9 placeholders in Format and FormatA
Wuzzy <Wuzzy2@mail.ru>
parents:
12461
diff
changeset
|
172 |
begin |
9119726e22bc
Engine: Allow to use up to 9 placeholders in Format and FormatA
Wuzzy <Wuzzy2@mail.ru>
parents:
12461
diff
changeset
|
173 |
FormatA:= FormatA(fmt, [arg]); |
2905 | 174 |
end; |
175 |
||
7048
0a4c88935902
the ios port runs again, although with a few things to sort out
koda
parents:
6700
diff
changeset
|
176 |
{$IFDEF HWLIBRARY} |
11790
ac93cfc17365
- Pass also userPath to LoadLocaleWrapper
antonc27 <antonc27@mail.ru>
parents:
11684
diff
changeset
|
177 |
procedure LoadLocaleWrapper(path: pchar; userpath: pchar; filename: pchar); cdecl; export; |
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3774
diff
changeset
|
178 |
begin |
11141
01e8e5a6a8c1
- Fix for crash on loading SingleWeaponViewController in Settings
antonc27 <antonc27@mail.ru>
parents:
10249
diff
changeset
|
179 |
PathPrefix := Strpas(path); |
11790
ac93cfc17365
- Pass also userPath to LoadLocaleWrapper
antonc27 <antonc27@mail.ru>
parents:
11684
diff
changeset
|
180 |
UserPathPrefix := Strpas(userpath); |
11141
01e8e5a6a8c1
- Fix for crash on loading SingleWeaponViewController in Settings
antonc27 <antonc27@mail.ru>
parents:
10249
diff
changeset
|
181 |
|
11790
ac93cfc17365
- Pass also userPath to LoadLocaleWrapper
antonc27 <antonc27@mail.ru>
parents:
11684
diff
changeset
|
182 |
//normally this var set in preInit of engine |
ac93cfc17365
- Pass also userPath to LoadLocaleWrapper
antonc27 <antonc27@mail.ru>
parents:
11684
diff
changeset
|
183 |
allOK := true; |
ac93cfc17365
- Pass also userPath to LoadLocaleWrapper
antonc27 <antonc27@mail.ru>
parents:
11684
diff
changeset
|
184 |
|
11802
975c130c3901
- Don't forget to init uVaribles inside LoadLocaleWrapper call
antonc27 <antonc27@mail.ru>
parents:
11790
diff
changeset
|
185 |
uVariables.initModule; |
975c130c3901
- Don't forget to init uVaribles inside LoadLocaleWrapper call
antonc27 <antonc27@mail.ru>
parents:
11790
diff
changeset
|
186 |
|
11684 | 187 |
PathPrefix:= PathPrefix + #0; |
188 |
UserPathPrefix:= UserPathPrefix + #0; |
|
189 |
uPhysFSLayer.initModule(@PathPrefix[1], @UserPathPrefix[1]); |
|
190 |
PathPrefix:= copy(PathPrefix, 1, length(PathPrefix) - 1); |
|
191 |
UserPathPrefix:= copy(UserPathPrefix, 1, length(UserPathPrefix) - 1); |
|
11141
01e8e5a6a8c1
- Fix for crash on loading SingleWeaponViewController in Settings
antonc27 <antonc27@mail.ru>
parents:
10249
diff
changeset
|
192 |
|
01e8e5a6a8c1
- Fix for crash on loading SingleWeaponViewController in Settings
antonc27 <antonc27@mail.ru>
parents:
10249
diff
changeset
|
193 |
LoadLocale(Strpas(filename)); |
01e8e5a6a8c1
- Fix for crash on loading SingleWeaponViewController in Settings
antonc27 <antonc27@mail.ru>
parents:
10249
diff
changeset
|
194 |
|
01e8e5a6a8c1
- Fix for crash on loading SingleWeaponViewController in Settings
antonc27 <antonc27@mail.ru>
parents:
10249
diff
changeset
|
195 |
uPhysFSLayer.freeModule; |
11802
975c130c3901
- Don't forget to init uVaribles inside LoadLocaleWrapper call
antonc27 <antonc27@mail.ru>
parents:
11790
diff
changeset
|
196 |
uVariables.freeModule; |
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3774
diff
changeset
|
197 |
end; |
7048
0a4c88935902
the ios port runs again, although with a few things to sort out
koda
parents:
6700
diff
changeset
|
198 |
{$ENDIF} |
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3774
diff
changeset
|
199 |
|
184 | 200 |
end. |