hedgewars/uLocale.pas
author unc0rr
Thu, 05 Oct 2006 16:33:18 +0000
changeset 183 57c2ef19f719
parent 175 d226d976d836
child 184 f97a7a3dc8f6
permissions -rw-r--r--
Relicense to GPL
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
     1
(*
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
     2
 * Hedgewars, a worms-like game
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
     3
 * Copyright (c) 2006 Andrey Korotaev <unC0Rr@gmail.com>
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
     4
 *
183
57c2ef19f719 Relicense to GPL
unc0rr
parents: 175
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
57c2ef19f719 Relicense to GPL
unc0rr
parents: 175
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
57c2ef19f719 Relicense to GPL
unc0rr
parents: 175
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
     8
 *
183
57c2ef19f719 Relicense to GPL
unc0rr
parents: 175
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
57c2ef19f719 Relicense to GPL
unc0rr
parents: 175
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
57c2ef19f719 Relicense to GPL
unc0rr
parents: 175
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
57c2ef19f719 Relicense to GPL
unc0rr
parents: 175
diff changeset
    12
 * GNU General Public License for more details.
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    13
 *
183
57c2ef19f719 Relicense to GPL
unc0rr
parents: 175
diff changeset
    14
 * You should have received a copy of the GNU General Public License
57c2ef19f719 Relicense to GPL
unc0rr
parents: 175
diff changeset
    15
 * along with this program; if not, write to the Free Software
57c2ef19f719 Relicense to GPL
unc0rr
parents: 175
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    17
 *)
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    18
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    19
unit uLocale;
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    20
interface
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    21
type TAmmoStrId = (sidGrenade, sidClusterBomb, sidBazooka, sidUFO, sidShotgun,
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    22
                   sidPickHammer, sidSkip, sidRope, sidMine, sidDEagle,
83
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
    23
                   sidDynamite, sidBaseballBat, sidFirePunch, sidSeconds);
175
d226d976d836 - Some improvements to volume control
unc0rr
parents: 108
diff changeset
    24
     TMsgStrId = (sidStartFight, sidDraw, sidWinner, sidVolume);
108
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 83
diff changeset
    25
var trammo: array[TAmmoStrId] of string;
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 83
diff changeset
    26
    trmsg: array[TMsgStrId] of string;
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    27
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    28
procedure LoadLocale(FileName: string);
83
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
    29
function Format(fmt: shortstring; var arg: shortstring): shortstring;
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    30
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    31
implementation
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    32
uses uMisc;
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    33
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    34
procedure LoadLocale(FileName: string);
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    35
var s: shortstring;
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    36
    f: textfile;
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    37
    a, b, c: integer;
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    38
begin
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    39
{$I-}
108
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 83
diff changeset
    40
AssignFile(f, FileName);
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    41
reset(f);
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    42
TryDo(IOResult = 0, 'Cannot load locale "' + FileName + '"', true);
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    43
while not eof(f) do
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    44
      begin
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    45
      readln(f, s);
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    46
      if Length(s) = 0 then continue;
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    47
      if s[1] = ';' then continue;
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    48
      TryDo(Length(s) > 6, 'Load locale: empty string', true);
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    49
      val(s[1]+s[2], a, c);
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    50
      TryDo(c = 0, 'Load locale: numbers should be two-digit', true);
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    51
      TryDo(s[3] = ':', 'Load locale: ":" expected', true);
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    52
      val(s[4]+s[5], b, c);
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    53
      TryDo(c = 0, 'Load locale: numbers should be two-digit', true);
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    54
      TryDo(s[6] = '=', 'Load locale: "=" expected', true);
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    55
      Delete(s, 1, 6);
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    56
      case a of
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    57
           0: if (b >=0) and (b <= ord(High(TAmmoStrId))) then trammo[TAmmoStrId(b)]:= s;
81
d74e0e914b50 More translations
unc0rr
parents: 80
diff changeset
    58
           1: if (b >=0) and (b <= ord(High(TMsgStrId))) then trmsg[TMsgStrId(b)]:= s;
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    59
           end;
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    60
      end;
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    61
closefile(f)
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    62
{$I+}
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    63
end;
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    64
83
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
    65
function Format(fmt: shortstring; var arg: shortstring): shortstring;
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
    66
var i: integer;
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
    67
begin
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
    68
i:= Pos('%1', fmt);
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
    69
if i = 0 then Result:= fmt
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
    70
         else Result:= copy(fmt, 1, i - 1) + arg + Format(copy(fmt, i + 2, Length(fmt) - i - 1), arg)
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
    71
end;
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
    72
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    73
end.