hedgewars/uLocale.pas
author unc0rr
Wed, 27 Sep 2006 20:52:22 +0000
changeset 175 d226d976d836
parent 108 08f1fe6f21f8
child 183 57c2ef19f719
permissions -rw-r--r--
- Some improvements to volume control - Simplified captions
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
 *
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
     5
 * Distributed under the terms of the BSD-modified licence:
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
     6
 *
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
     7
 * Permission is hereby granted, free of charge, to any person obtaining a copy
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
     8
 * of this software and associated documentation files (the "Software"), to deal
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
     9
 * with the Software without restriction, including without limitation the
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    10
 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    11
 * sell copies of the Software, and to permit persons to whom the Software is
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    12
 * furnished to do so, subject to the following conditions:
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    13
 *
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    14
 * 1. Redistributions of source code must retain the above copyright notice,
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    15
 *    this list of conditions and the following disclaimer.
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    16
 * 2. Redistributions in binary form must reproduce the above copyright notice,
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    17
 *    this list of conditions and the following disclaimer in the documentation
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    18
 *    and/or other materials provided with the distribution.
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    19
 * 3. The name of the author may not be used to endorse or promote products
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    20
 *    derived from this software without specific prior written permission.
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    21
 *
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    22
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    23
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    24
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    25
 * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    26
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    27
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    28
 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    29
 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    30
 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    31
 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    32
 *)
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
unit uLocale;
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    35
interface
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    36
type TAmmoStrId = (sidGrenade, sidClusterBomb, sidBazooka, sidUFO, sidShotgun,
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    37
                   sidPickHammer, sidSkip, sidRope, sidMine, sidDEagle,
83
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
    38
                   sidDynamite, sidBaseballBat, sidFirePunch, sidSeconds);
175
d226d976d836 - Some improvements to volume control
unc0rr
parents: 108
diff changeset
    39
     TMsgStrId = (sidStartFight, sidDraw, sidWinner, sidVolume);
108
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 83
diff changeset
    40
var trammo: array[TAmmoStrId] of string;
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 83
diff changeset
    41
    trmsg: array[TMsgStrId] of string;
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    42
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    43
procedure LoadLocale(FileName: string);
83
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
    44
function Format(fmt: shortstring; var arg: shortstring): shortstring;
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    45
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    46
implementation
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    47
uses uMisc;
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    48
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    49
procedure LoadLocale(FileName: string);
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    50
var s: shortstring;
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    51
    f: textfile;
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    52
    a, b, c: integer;
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    53
begin
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    54
{$I-}
108
08f1fe6f21f8 Small fixes for better FPC compatibility
unc0rr
parents: 83
diff changeset
    55
AssignFile(f, FileName);
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    56
reset(f);
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    57
TryDo(IOResult = 0, 'Cannot load locale "' + FileName + '"', true);
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    58
while not eof(f) do
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    59
      begin
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    60
      readln(f, s);
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    61
      if Length(s) = 0 then continue;
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    62
      if s[1] = ';' then continue;
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    63
      TryDo(Length(s) > 6, 'Load locale: empty string', true);
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    64
      val(s[1]+s[2], a, c);
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    65
      TryDo(c = 0, 'Load locale: numbers should be two-digit', true);
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    66
      TryDo(s[3] = ':', 'Load locale: ":" expected', true);
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    67
      val(s[4]+s[5], b, c);
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    68
      TryDo(c = 0, 'Load locale: numbers should be two-digit', true);
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    69
      TryDo(s[6] = '=', 'Load locale: "=" expected', true);
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    70
      Delete(s, 1, 6);
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    71
      case a of
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    72
           0: if (b >=0) and (b <= ord(High(TAmmoStrId))) then trammo[TAmmoStrId(b)]:= s;
81
d74e0e914b50 More translations
unc0rr
parents: 80
diff changeset
    73
           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
    74
           end;
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    75
      end;
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    76
closefile(f)
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    77
{$I+}
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    78
end;
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    79
83
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
    80
function Format(fmt: shortstring; var arg: shortstring): shortstring;
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
    81
var i: integer;
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
    82
begin
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
    83
i:= Pos('%1', fmt);
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
    84
if i = 0 then Result:= fmt
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
    85
         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
    86
end;
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 82
diff changeset
    87
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents:
diff changeset
    88
end.