author | antonc27 <antonc27@mail.ru> |
Fri, 16 Oct 2015 17:34:06 +0200 | |
branch | ios-revival |
changeset 11218 | d8135421833c |
parent 11204 | 08c6ccc28007 |
child 11408 | b894922d58cc |
child 11537 | bf86c6cb9341 |
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 |
|
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; |
10122
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
29 |
function FormatA(fmt: ansistring; var arg: ansistring): ansistring; |
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
30 |
function GetEventString(e: TEventId): ansistring; |
2140 | 31 |
|
7048
0a4c88935902
the ios port runs again, although with a few things to sort out
koda
parents:
6700
diff
changeset
|
32 |
{$IFDEF HWLIBRARY} |
11141
01e8e5a6a8c1
- Fix for crash on loading SingleWeaponViewController in Settings
antonc27 <antonc27@mail.ru>
parents:
10249
diff
changeset
|
33 |
procedure LoadLocaleWrapper(path: 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
|
34 |
{$ENDIF} |
0a4c88935902
the ios port runs again, although with a few things to sort out
koda
parents:
6700
diff
changeset
|
35 |
|
184 | 36 |
implementation |
10122
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
37 |
uses uRandom, uUtils, uVariables, uDebug, uPhysFSLayer; |
2142 | 38 |
|
10122
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
39 |
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
|
40 |
trevt_n: array[TEventId] of integer; |
184 | 41 |
|
2905 | 42 |
procedure LoadLocale(FileName: shortstring); |
10127 | 43 |
var s: ansistring; |
8028 | 44 |
f: pfsFile; |
371 | 45 |
a, b, c: LongInt; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2908
diff
changeset
|
46 |
first: array[TEventId] of boolean; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2908
diff
changeset
|
47 |
e: TEventId; |
184 | 48 |
begin |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6528
diff
changeset
|
49 |
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
|
50 |
first[e]:= true; |
2140 | 51 |
|
8028 | 52 |
f:= pfsOpenRead(FileName); |
53 |
TryDo(f <> nil, 'Cannot load locale "' + FileName + '"', false); |
|
54 |
||
10249 | 55 |
s:= ''; |
56 |
||
8028 | 57 |
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
|
58 |
begin |
8028 | 59 |
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
|
60 |
begin |
8107 | 61 |
pfsReadLnA(f, s); |
10122
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
62 |
if Length(s) = 0 then |
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
63 |
continue; |
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
64 |
if (s[1] < '0') or (s[1] > '9') then |
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
65 |
continue; |
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
66 |
TryDo(Length(s) > 6, 'Load locale: empty string', true); |
10127 | 67 |
{$IFNDEF PAS2C} |
10122
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
68 |
val(s[1]+s[2], a, c); |
10123 | 69 |
TryDo(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
|
70 |
val(s[4]+s[5], b, c); |
10123 | 71 |
TryDo(c = 0, ansistring('Load locale: numbers should be two-digit: ') + s, true); |
10127 | 72 |
{$ELSE} |
73 |
val(s[1]+s[2], a); |
|
74 |
val(s[4]+s[5], b); |
|
75 |
{$ENDIF} |
|
76 |
TryDo(s[3] = ':', 'Load locale: ":" expected', true); |
|
10122
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
77 |
TryDo(s[6] = '=', 'Load locale: "=" expected', true); |
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
78 |
Delete(s, 1, 6); |
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
79 |
case a of |
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
80 |
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
|
81 |
trammo[TAmmoStrId(b)]:= s; |
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
82 |
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
|
83 |
trmsg[TMsgStrId(b)]:= s; |
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
84 |
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
|
85 |
begin |
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
86 |
TryDo(trevt_n[TEventId(b)] < MAX_EVENT_STRINGS, 'Too many event strings in ' + IntToStr(a) + ':' + IntToStr(b), false); |
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
87 |
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
|
88 |
begin |
10122
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
89 |
trevt_n[TEventId(b)]:= 0; |
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
90 |
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
|
91 |
end; |
10122
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
92 |
trevt[TEventId(b)][trevt_n[TEventId(b)]]:= s; |
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
93 |
inc(trevt_n[TEventId(b)]); |
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
94 |
end; |
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
95 |
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
|
96 |
trammoc[TAmmoStrId(b)]:= s; |
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
97 |
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
|
98 |
trammod[TAmmoStrId(b)]:= s; |
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
99 |
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
|
100 |
trgoal[TGoalStrId(b)]:= s; |
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
101 |
end; |
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
102 |
end; |
8028 | 103 |
pfsClose(f); |
2722 | 104 |
end; |
184 | 105 |
end; |
106 |
||
10122
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
107 |
function GetEventString(e: TEventId): ansistring; |
2140 | 108 |
begin |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2908
diff
changeset
|
109 |
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
|
110 |
GetEventString:= '*missing translation*' |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2908
diff
changeset
|
111 |
else |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2908
diff
changeset
|
112 |
GetEventString:= trevt[e][GetRandom(trevt_n[e])]; // Pick a random message and return it |
2140 | 113 |
end; |
114 |
||
184 | 115 |
function Format(fmt: shortstring; var arg: shortstring): shortstring; |
371 | 116 |
var i: LongInt; |
184 | 117 |
begin |
118 |
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
|
119 |
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
|
120 |
Format:= fmt |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6528
diff
changeset
|
121 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6528
diff
changeset
|
122 |
Format:= copy(fmt, 1, i - 1) + arg + Format(copy(fmt, i + 2, Length(fmt) - i - 1), arg) |
184 | 123 |
end; |
124 |
||
10122
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
125 |
function FormatA(fmt: ansistring; var arg: ansistring): ansistring; |
2905 | 126 |
var i: LongInt; |
127 |
begin |
|
10122
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
128 |
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
|
129 |
if i = 0 then |
10122
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
130 |
FormatA:= fmt |
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 |
10122
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10116
diff
changeset
|
132 |
FormatA:= copy(fmt, 1, i - 1) + arg + FormatA(copy(fmt, i + 2, Length(fmt) - 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} |
11141
01e8e5a6a8c1
- Fix for crash on loading SingleWeaponViewController in Settings
antonc27 <antonc27@mail.ru>
parents:
10249
diff
changeset
|
136 |
procedure LoadLocaleWrapper(path: pchar; filename: pchar); cdecl; export; |
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3774
diff
changeset
|
137 |
begin |
11141
01e8e5a6a8c1
- Fix for crash on loading SingleWeaponViewController in Settings
antonc27 <antonc27@mail.ru>
parents:
10249
diff
changeset
|
138 |
PathPrefix := Strpas(path); |
01e8e5a6a8c1
- Fix for crash on loading SingleWeaponViewController in Settings
antonc27 <antonc27@mail.ru>
parents:
10249
diff
changeset
|
139 |
|
01e8e5a6a8c1
- Fix for crash on loading SingleWeaponViewController in Settings
antonc27 <antonc27@mail.ru>
parents:
10249
diff
changeset
|
140 |
uUtils.initModule(false); |
11204
08c6ccc28007
- Fix for locale string in SingleWeaponViewController
antonc27 <antonc27@mail.ru>
parents:
11151
diff
changeset
|
141 |
uVariables.initModule; |
11141
01e8e5a6a8c1
- Fix for crash on loading SingleWeaponViewController in Settings
antonc27 <antonc27@mail.ru>
parents:
10249
diff
changeset
|
142 |
uPhysFSLayer.initModule; |
01e8e5a6a8c1
- Fix for crash on loading SingleWeaponViewController in Settings
antonc27 <antonc27@mail.ru>
parents:
10249
diff
changeset
|
143 |
|
01e8e5a6a8c1
- Fix for crash on loading SingleWeaponViewController in Settings
antonc27 <antonc27@mail.ru>
parents:
10249
diff
changeset
|
144 |
LoadLocale(Strpas(filename)); |
01e8e5a6a8c1
- Fix for crash on loading SingleWeaponViewController in Settings
antonc27 <antonc27@mail.ru>
parents:
10249
diff
changeset
|
145 |
|
01e8e5a6a8c1
- Fix for crash on loading SingleWeaponViewController in Settings
antonc27 <antonc27@mail.ru>
parents:
10249
diff
changeset
|
146 |
uPhysFSLayer.freeModule; |
11204
08c6ccc28007
- Fix for locale string in SingleWeaponViewController
antonc27 <antonc27@mail.ru>
parents:
11151
diff
changeset
|
147 |
uVariables.freeModule; |
11141
01e8e5a6a8c1
- Fix for crash on loading SingleWeaponViewController in Settings
antonc27 <antonc27@mail.ru>
parents:
10249
diff
changeset
|
148 |
uUtils.freeModule; |
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3774
diff
changeset
|
149 |
end; |
7048
0a4c88935902
the ios port runs again, although with a few things to sort out
koda
parents:
6700
diff
changeset
|
150 |
{$ENDIF} |
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3774
diff
changeset
|
151 |
|
184 | 152 |
end. |