author | nemo |
Sun, 28 Feb 2010 17:52:29 +0000 | |
changeset 2889 | eacccd2476ba |
parent 2863 | 9eb53b1f1842 |
child 2903 | e28356fe532a |
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 |
|
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
|
23 |
type TAmmoStrId = (sidNothing, sidGrenade, sidClusterBomb, sidBazooka, sidUFO, sidShotgun, |
1263 | 24 |
sidPickHammer, sidSkip, sidRope, sidMine, sidDEagle, |
25 |
sidDynamite, sidBaseballBat, sidFirePunch, sidSeconds, |
|
26 |
sidParachute, sidAirAttack, sidMineStrike, sidBlowTorch, |
|
27 |
sidGirder, sidTeleport, sidSwitch, sidMortar, sidWhip, |
|
28 |
sidKamikaze, sidCake, sidSeduction, sidWatermelon, |
|
2376 | 29 |
sidHellishBomb, sidDrill, sidBallgun, sidNapalm, sidRCPlane, |
30 |
sidLowGravity, sidExtraDamage, sidInvulnerable, sidExtraTime, |
|
2457
ecf0c7e7995b
Initial molotov cocktail. Still needs graphics, tweaking of fire behaviour. Also changed probabilities for default weapon sets
nemo
parents:
2428
diff
changeset
|
31 |
sidLaserSight, sidVampiric, sidSniperRifle, sidJetpack, sidMolotov); |
285 | 32 |
|
1263 | 33 |
TMsgStrId = (sidStartFight, sidDraw, sidWinner, sidVolume, sidPaused, |
2747 | 34 |
sidConfirm, sidSuddenDeath, sidRemaining, sidFuel, sidSync, |
35 |
sidNoEndTurn, sidNotYetAvailable); |
|
2376 | 36 |
|
2143
ad05f6b2d1c0
New baseball bat sound, steam when fire lands on water (needs new hiss sound), bubbles when hedgehog drowns, more messages on
nemo
parents:
2142
diff
changeset
|
37 |
TEventId = (eidDied, eidDrowned, eidRoundStart, eidRoundWin, eidRoundDraw, |
2428 | 38 |
eidNewHealthPack, eidNewAmmoPack, eidNewUtilityPack, eidTurnSkipped, eidHurtSelf, |
2747 | 39 |
eidHomerun, eidFrozen); |
285 | 40 |
|
2863 | 41 |
TGoalStrId = (gidCaption, gidSubCaption, gidForts, gidLowGravity, gidInvulnerable, gidVampiric, gidKarma, gidKing, gidPlaceHog, gidArtillery, gidSolidLand); |
42 |
||
2142 | 43 |
const MAX_EVENT_STRINGS = 100; |
184 | 44 |
var trammo: array[TAmmoStrId] of string; |
2747 | 45 |
trammoc: array[TAmmoStrId] of string; |
46 |
trammod: array[TAmmoStrId] of string; |
|
184 | 47 |
trmsg: array[TMsgStrId] of string; |
2863 | 48 |
trgoal: array[TGoalStrId] of string; |
184 | 49 |
|
50 |
procedure LoadLocale(FileName: string); |
|
51 |
function Format(fmt: shortstring; var arg: shortstring): shortstring; |
|
52 |
||
2140 | 53 |
function GetEventString(e: TEventId): string; |
54 |
||
184 | 55 |
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
|
56 |
uses uMisc, uRandom, uConsole; |
2142 | 57 |
|
58 |
var trevt: array[TEventId] of array [0..Pred(MAX_EVENT_STRINGS)] of string; |
|
59 |
trevt_n: array[TEventId] of integer; |
|
184 | 60 |
|
61 |
procedure LoadLocale(FileName: string); |
|
62 |
var s: shortstring; |
|
63 |
f: textfile; |
|
371 | 64 |
a, b, c: LongInt; |
2143
ad05f6b2d1c0
New baseball bat sound, steam when fire lands on water (needs new hiss sound), bubbles when hedgehog drowns, more messages on
nemo
parents:
2142
diff
changeset
|
65 |
first: array[TEventId] of boolean; |
2144 | 66 |
e: TEventId; |
2722 | 67 |
loaded: boolean; |
184 | 68 |
begin |
2722 | 69 |
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
|
70 |
trammo[sidNothing]:= ' '; |
2144 | 71 |
for e:= Low(TEventId) to High(TEventId) do first[e]:= true; |
2140 | 72 |
|
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2693
diff
changeset
|
73 |
{$I-} // iochecks off |
2747 | 74 |
Assign(f, FileName); |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2693
diff
changeset
|
75 |
filemode:= 0; // readonly |
2747 | 76 |
Reset(f); |
2722 | 77 |
if IOResult = 0 then loaded:= true; |
78 |
TryDo(loaded, 'Cannot load locale "' + FileName + '"', false); |
|
79 |
if loaded then |
|
80 |
begin |
|
81 |
while not eof(f) do |
|
82 |
begin |
|
83 |
readln(f, s); |
|
84 |
if Length(s) = 0 then continue; |
|
85 |
if not (s[1] in ['0'..'9']) then continue; |
|
86 |
TryDo(Length(s) > 6, 'Load locale: empty string', true); |
|
87 |
val(s[1]+s[2], a, c); |
|
88 |
TryDo(c = 0, 'Load locale: numbers should be two-digit: ' + s, true); |
|
89 |
TryDo(s[3] = ':', 'Load locale: ":" expected', true); |
|
90 |
val(s[4]+s[5], b, c); |
|
91 |
TryDo(c = 0, 'Load locale: numbers should be two-digit' + s, true); |
|
92 |
TryDo(s[6] = '=', 'Load locale: "=" expected', true); |
|
93 |
Delete(s, 1, 6); |
|
94 |
case a of |
|
95 |
0: if (b >=0) and (b <= ord(High(TAmmoStrId))) then trammo[TAmmoStrId(b+1)]:= s; |
|
96 |
1: if (b >=0) and (b <= ord(High(TMsgStrId))) then trmsg[TMsgStrId(b)]:= s; |
|
97 |
2: if (b >=0) and (b <= ord(High(TEventId))) then begin |
|
98 |
TryDo(trevt_n[TEventId(b)] < MAX_EVENT_STRINGS, 'Too many event strings in ' + inttostr(a) + ':' + inttostr(b), false); |
|
99 |
if first[TEventId(b)] then |
|
100 |
begin |
|
101 |
trevt_n[TEventId(b)]:= 0; |
|
102 |
first[TEventId(b)]:= false; |
|
103 |
end; |
|
104 |
trevt[TEventId(b)][trevt_n[TEventId(b)]]:= s; |
|
105 |
inc(trevt_n[TEventId(b)]); |
|
106 |
end; |
|
2747 | 107 |
3: if (b >=0) and (b <= ord(High(TAmmoStrId))) then trammoc[TAmmoStrId(b+1)]:= s; |
108 |
4: if (b >=0) and (b <= ord(High(TAmmoStrId))) then trammod[TAmmoStrId(b+1)]:= s; |
|
2863 | 109 |
5: if (b >=0) and (b <= ord(High(TGoalStrId))) then trgoal[TGoalStrId(b)]:= s; |
2722 | 110 |
end; |
111 |
end; |
|
112 |
Close(f) |
|
113 |
end; |
|
184 | 114 |
{$I+} |
115 |
end; |
|
116 |
||
2140 | 117 |
function GetEventString(e: TEventId): string; |
118 |
begin |
|
119 |
if trevt_n[e] = 0 then // no messages for this event type? |
|
120 |
GetEventString:= '*missing translation*' |
|
121 |
else |
|
2142 | 122 |
GetEventString:= trevt[e][GetRandom(trevt_n[e])]; // Pick a random message and return it |
2140 | 123 |
end; |
124 |
||
184 | 125 |
function Format(fmt: shortstring; var arg: shortstring): shortstring; |
371 | 126 |
var i: LongInt; |
184 | 127 |
begin |
128 |
i:= Pos('%1', fmt); |
|
351 | 129 |
if i = 0 then Format:= fmt |
130 |
else Format:= copy(fmt, 1, i - 1) + arg + Format(copy(fmt, i + 2, Length(fmt) - i - 1), arg) |
|
184 | 131 |
end; |
132 |
||
133 |
end. |