hedgewars/uLocale.pas
author unc0rr
Mon, 29 Sep 2008 22:14:23 +0000
changeset 1301 c6fe8a4bfd34
parent 1263 24677a82531d
child 1573 cf88e0ace609
permissions -rw-r--r--
Fix a bug screwing team selection up in network game (REMOVETEAM message doesn't have teamID, and after removing the team QMap still contains old info, when add and remove team with the same name, total hedgehogs number will be decreased by first team hh number)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
     1
(*
1066
1f1b3686a2b0 Update copyright headers a bit
unc0rr
parents: 1063
diff changeset
     2
 * Hedgewars, a free turn based strategy game
925
c20156328529 Implement whip weapon
unc0rr
parents: 924
diff changeset
     3
 * Copyright (c) 2006-2008 Andrey Korotaev <unC0Rr@gmail.com>
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
     4
 *
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
     8
 *
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    12
 * GNU General Public License for more details.
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    13
 *
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    14
 * You should have received a copy of the GNU General Public License
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    15
 * along with this program; if not, write to the Free Software
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    17
 *)
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    18
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    19
unit uLocale;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    20
interface
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    21
type TAmmoStrId = (sidGrenade, sidClusterBomb, sidBazooka, sidUFO, sidShotgun,
1263
24677a82531d Add Hellish bomb weapon
unc0rr
parents: 1261
diff changeset
    22
			sidPickHammer, sidSkip, sidRope, sidMine, sidDEagle,
24677a82531d Add Hellish bomb weapon
unc0rr
parents: 1261
diff changeset
    23
			sidDynamite, sidBaseballBat, sidFirePunch, sidSeconds,
24677a82531d Add Hellish bomb weapon
unc0rr
parents: 1261
diff changeset
    24
			sidParachute, sidAirAttack, sidMineStrike, sidBlowTorch,
24677a82531d Add Hellish bomb weapon
unc0rr
parents: 1261
diff changeset
    25
			sidGirder, sidTeleport, sidSwitch, sidMortar, sidWhip,
24677a82531d Add Hellish bomb weapon
unc0rr
parents: 1261
diff changeset
    26
			sidKamikaze, sidCake, sidSeduction, sidWatermelon,
24677a82531d Add Hellish bomb weapon
unc0rr
parents: 1261
diff changeset
    27
			sidHellishBomb);
285
cdab49768c83 Mine Strike weapon
unc0rr
parents: 281
diff changeset
    28
1263
24677a82531d Add Hellish bomb weapon
unc0rr
parents: 1261
diff changeset
    29
	TMsgStrId = (sidStartFight, sidDraw, sidWinner, sidVolume, sidPaused,
24677a82531d Add Hellish bomb weapon
unc0rr
parents: 1261
diff changeset
    30
			sidConfirm, sidSuddenDeath);
285
cdab49768c83 Mine Strike weapon
unc0rr
parents: 281
diff changeset
    31
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    32
var trammo: array[TAmmoStrId] of string;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    33
    trmsg: array[TMsgStrId] of string;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    34
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    35
procedure LoadLocale(FileName: string);
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    36
function Format(fmt: shortstring; var arg: shortstring): shortstring;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    37
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    38
implementation
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    39
uses uMisc;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    40
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    41
procedure LoadLocale(FileName: string);
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    42
var s: shortstring;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    43
    f: textfile;
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 351
diff changeset
    44
    a, b, c: LongInt;
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    45
begin
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    46
{$I-}
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 302
diff changeset
    47
Assign(f, FileName);
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    48
reset(f);
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    49
TryDo(IOResult = 0, 'Cannot load locale "' + FileName + '"', true);
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    50
while not eof(f) do
1263
24677a82531d Add Hellish bomb weapon
unc0rr
parents: 1261
diff changeset
    51
	begin
24677a82531d Add Hellish bomb weapon
unc0rr
parents: 1261
diff changeset
    52
	readln(f, s);
24677a82531d Add Hellish bomb weapon
unc0rr
parents: 1261
diff changeset
    53
	if Length(s) = 0 then continue;
24677a82531d Add Hellish bomb weapon
unc0rr
parents: 1261
diff changeset
    54
	if s[1] = ';' then continue;
24677a82531d Add Hellish bomb weapon
unc0rr
parents: 1261
diff changeset
    55
	TryDo(Length(s) > 6, 'Load locale: empty string', true);
24677a82531d Add Hellish bomb weapon
unc0rr
parents: 1261
diff changeset
    56
	val(s[1]+s[2], a, c);
24677a82531d Add Hellish bomb weapon
unc0rr
parents: 1261
diff changeset
    57
	TryDo(c = 0, 'Load locale: numbers should be two-digit: ' + s, true);
24677a82531d Add Hellish bomb weapon
unc0rr
parents: 1261
diff changeset
    58
	TryDo(s[3] = ':', 'Load locale: ":" expected', true);
24677a82531d Add Hellish bomb weapon
unc0rr
parents: 1261
diff changeset
    59
	val(s[4]+s[5], b, c);
24677a82531d Add Hellish bomb weapon
unc0rr
parents: 1261
diff changeset
    60
	TryDo(c = 0, 'Load locale: numbers should be two-digit' + s, true);
24677a82531d Add Hellish bomb weapon
unc0rr
parents: 1261
diff changeset
    61
	TryDo(s[6] = '=', 'Load locale: "=" expected', true);
24677a82531d Add Hellish bomb weapon
unc0rr
parents: 1261
diff changeset
    62
	Delete(s, 1, 6);
24677a82531d Add Hellish bomb weapon
unc0rr
parents: 1261
diff changeset
    63
	case a of
24677a82531d Add Hellish bomb weapon
unc0rr
parents: 1261
diff changeset
    64
		0: if (b >=0) and (b <= ord(High(TAmmoStrId))) then trammo[TAmmoStrId(b)]:= s;
24677a82531d Add Hellish bomb weapon
unc0rr
parents: 1261
diff changeset
    65
		1: if (b >=0) and (b <= ord(High(TMsgStrId))) then trmsg[TMsgStrId(b)]:= s;
24677a82531d Add Hellish bomb weapon
unc0rr
parents: 1261
diff changeset
    66
		end;
24677a82531d Add Hellish bomb weapon
unc0rr
parents: 1261
diff changeset
    67
	end;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 302
diff changeset
    68
Close(f)
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    69
{$I+}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    70
end;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    71
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    72
function Format(fmt: shortstring; var arg: shortstring): shortstring;
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 351
diff changeset
    73
var i: LongInt;
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    74
begin
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    75
i:= Pos('%1', fmt);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 302
diff changeset
    76
if i = 0 then Format:= fmt
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 302
diff changeset
    77
         else Format:= copy(fmt, 1, i - 1) + arg + Format(copy(fmt, i + 2, Length(fmt) - i - 1), arg)
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    78
end;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    79
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    80
end.