author | nemo |
Sat, 03 Apr 2010 06:39:17 +0000 | |
changeset 3280 | 5e21acf0c59a |
parent 3080 | b7fa8ad60e3b |
child 3310 | e6e9b811d32f |
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 |
|
3080 | 23 |
type TAmmoStrId = (sidNothing, sidGrenade, sidClusterBomb, sidBazooka, sidBee, sidShotgun, |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2908
diff
changeset
|
24 |
sidPickHammer, sidSkip, sidRope, sidMine, sidDEagle, |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2908
diff
changeset
|
25 |
sidDynamite, sidBaseballBat, sidFirePunch, sidSeconds, |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2908
diff
changeset
|
26 |
sidParachute, sidAirAttack, sidMineStrike, sidBlowTorch, |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2908
diff
changeset
|
27 |
sidGirder, sidTeleport, sidSwitch, sidMortar, sidWhip, |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2908
diff
changeset
|
28 |
sidKamikaze, sidCake, sidSeduction, sidWatermelon, |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2908
diff
changeset
|
29 |
sidHellishBomb, sidDrill, sidBallgun, sidNapalm, sidRCPlane, |
2376 | 30 |
sidLowGravity, sidExtraDamage, sidInvulnerable, sidExtraTime, |
3066
5c0efa437728
Enable birdy. Has egg bombing. Eggs should possibly have a dX component. No poison yet, no egg sprite.
nemo
parents:
2999
diff
changeset
|
31 |
sidLaserSight, sidVampiric, sidSniperRifle, sidJetpack, sidMolotov, sidBirdy); |
285 | 32 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2908
diff
changeset
|
33 |
TMsgStrId = (sidStartFight, sidDraw, sidWinner, sidVolume, sidPaused, |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2908
diff
changeset
|
34 |
sidConfirm, sidSuddenDeath, sidRemaining, sidFuel, sidSync, |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2908
diff
changeset
|
35 |
sidNoEndTurn, sidNotYetAvailable); |
2376 | 36 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2908
diff
changeset
|
37 |
TEventId = (eidDied, eidDrowned, eidRoundStart, eidRoundWin, eidRoundDraw, |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2908
diff
changeset
|
38 |
eidNewHealthPack, eidNewAmmoPack, eidNewUtilityPack, eidTurnSkipped, eidHurtSelf, |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2908
diff
changeset
|
39 |
eidHomerun, eidFrozen); |
285 | 40 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2908
diff
changeset
|
41 |
TGoalStrId = (gidCaption, gidSubCaption, gidForts, gidLowGravity, gidInvulnerable, |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2908
diff
changeset
|
42 |
gidVampiric, gidKarma, gidKing, gidPlaceHog, gidArtillery, |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2908
diff
changeset
|
43 |
gidSolidLand, gidSharedAmmo, gidMineTimer, gidNoMineTimer, gidRandomMineTimer, |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2908
diff
changeset
|
44 |
gidDamageModifier); |
2863 | 45 |
|
2142 | 46 |
const MAX_EVENT_STRINGS = 100; |
2905 | 47 |
var trammo: array[TAmmoStrId] of ansistring; |
48 |
trammoc: array[TAmmoStrId] of ansistring; |
|
49 |
trammod: array[TAmmoStrId] of ansistring; |
|
50 |
trmsg: array[TMsgStrId] of ansistring; |
|
51 |
trgoal: array[TGoalStrId] of ansistring; |
|
184 | 52 |
|
2905 | 53 |
procedure LoadLocale(FileName: shortstring); |
184 | 54 |
function Format(fmt: shortstring; var arg: shortstring): shortstring; |
2905 | 55 |
function Format(fmt: ansistring; var arg: ansistring): ansistring; |
184 | 56 |
|
2905 | 57 |
function GetEventString(e: TEventId): ansistring; |
2140 | 58 |
|
184 | 59 |
implementation |
2693
3207e0eacd43
GameSetup is now a class, use of NSThread instead of pthreads, game doesn't quit after first execution (but crashes aftewards - the irony)
koda
parents:
2630
diff
changeset
|
60 |
uses uMisc, uRandom, uConsole; |
2142 | 61 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2908
diff
changeset
|
62 |
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
|
63 |
trevt_n: array[TEventId] of integer; |
184 | 64 |
|
2905 | 65 |
procedure LoadLocale(FileName: shortstring); |
2999 | 66 |
var s: ansistring; |
184 | 67 |
f: textfile; |
371 | 68 |
a, b, c: LongInt; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2908
diff
changeset
|
69 |
first: array[TEventId] of boolean; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2908
diff
changeset
|
70 |
e: TEventId; |
2722 | 71 |
loaded: boolean; |
184 | 72 |
begin |
2722 | 73 |
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
|
74 |
trammo[sidNothing]:= ' '; |
2144 | 75 |
for e:= Low(TEventId) to High(TEventId) do first[e]:= true; |
2140 | 76 |
|
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2693
diff
changeset
|
77 |
{$I-} // iochecks off |
2747 | 78 |
Assign(f, FileName); |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2693
diff
changeset
|
79 |
filemode:= 0; // readonly |
2747 | 80 |
Reset(f); |
2722 | 81 |
if IOResult = 0 then loaded:= true; |
82 |
TryDo(loaded, 'Cannot load locale "' + FileName + '"', false); |
|
83 |
if loaded then |
|
84 |
begin |
|
85 |
while not eof(f) do |
|
86 |
begin |
|
87 |
readln(f, s); |
|
88 |
if Length(s) = 0 then continue; |
|
89 |
if not (s[1] in ['0'..'9']) then continue; |
|
90 |
TryDo(Length(s) > 6, 'Load locale: empty string', true); |
|
91 |
val(s[1]+s[2], a, c); |
|
92 |
TryDo(c = 0, 'Load locale: numbers should be two-digit: ' + s, true); |
|
93 |
TryDo(s[3] = ':', 'Load locale: ":" expected', true); |
|
94 |
val(s[4]+s[5], b, c); |
|
95 |
TryDo(c = 0, 'Load locale: numbers should be two-digit' + s, true); |
|
96 |
TryDo(s[6] = '=', 'Load locale: "=" expected', true); |
|
97 |
Delete(s, 1, 6); |
|
98 |
case a of |
|
99 |
0: if (b >=0) and (b <= ord(High(TAmmoStrId))) then trammo[TAmmoStrId(b+1)]:= s; |
|
100 |
1: if (b >=0) and (b <= ord(High(TMsgStrId))) then trmsg[TMsgStrId(b)]:= s; |
|
101 |
2: if (b >=0) and (b <= ord(High(TEventId))) then begin |
|
102 |
TryDo(trevt_n[TEventId(b)] < MAX_EVENT_STRINGS, 'Too many event strings in ' + inttostr(a) + ':' + inttostr(b), false); |
|
103 |
if first[TEventId(b)] then |
|
104 |
begin |
|
105 |
trevt_n[TEventId(b)]:= 0; |
|
106 |
first[TEventId(b)]:= false; |
|
107 |
end; |
|
108 |
trevt[TEventId(b)][trevt_n[TEventId(b)]]:= s; |
|
109 |
inc(trevt_n[TEventId(b)]); |
|
110 |
end; |
|
2747 | 111 |
3: if (b >=0) and (b <= ord(High(TAmmoStrId))) then trammoc[TAmmoStrId(b+1)]:= s; |
112 |
4: if (b >=0) and (b <= ord(High(TAmmoStrId))) then trammod[TAmmoStrId(b+1)]:= s; |
|
2863 | 113 |
5: if (b >=0) and (b <= ord(High(TGoalStrId))) then trgoal[TGoalStrId(b)]:= s; |
2722 | 114 |
end; |
115 |
end; |
|
116 |
Close(f) |
|
117 |
end; |
|
184 | 118 |
{$I+} |
119 |
end; |
|
120 |
||
2905 | 121 |
function GetEventString(e: TEventId): ansistring; |
2140 | 122 |
begin |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2908
diff
changeset
|
123 |
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
|
124 |
GetEventString:= '*missing translation*' |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2908
diff
changeset
|
125 |
else |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2908
diff
changeset
|
126 |
GetEventString:= trevt[e][GetRandom(trevt_n[e])]; // Pick a random message and return it |
2140 | 127 |
end; |
128 |
||
184 | 129 |
function Format(fmt: shortstring; var arg: shortstring): shortstring; |
371 | 130 |
var i: LongInt; |
184 | 131 |
begin |
132 |
i:= Pos('%1', fmt); |
|
351 | 133 |
if i = 0 then Format:= fmt |
134 |
else Format:= copy(fmt, 1, i - 1) + arg + Format(copy(fmt, i + 2, Length(fmt) - i - 1), arg) |
|
184 | 135 |
end; |
136 |
||
2905 | 137 |
function Format(fmt: ansistring; var arg: ansistring): ansistring; |
138 |
var i: LongInt; |
|
139 |
begin |
|
140 |
i:= Pos('%1', fmt); |
|
141 |
if i = 0 then Format:= fmt |
|
142 |
else Format:= copy(fmt, 1, i - 1) + arg + Format(copy(fmt, i + 2, Length(fmt) - i - 1), arg) |
|
143 |
end; |
|
144 |
||
184 | 145 |
end. |