hedgewars/hwengine.dpr
author unc0rr
Sat, 12 Aug 2006 17:41:02 +0000
changeset 109 ab0340f580c2
parent 97 e7c1df9cce2c
child 155 401f4ea24715
permissions -rw-r--r--
- Initialize translations earlier - Fix some small issues and small cleanup
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
     1
(*
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
     2
 * Hedgewars, a worms-like game
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
     3
 * Copyright (c) 2004, 2005, 2006 Andrey Korotaev <unC0Rr@gmail.com>
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
     4
 *
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
     5
 * Distributed under the terms of the BSD-modified licence:
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
     6
 *
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
     7
 * Permission is hereby granted, free of charge, to any person obtaining a copy
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
     8
 * of this software and associated documentation files (the "Software"), to deal
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
     9
 * with the Software without restriction, including without limitation the
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    10
 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    11
 * sell copies of the Software, and to permit persons to whom the Software is
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    12
 * furnished to do so, subject to the following conditions:
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    13
 *
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    14
 * 1. Redistributions of source code must retain the above copyright notice,
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    15
 *    this list of conditions and the following disclaimer.
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    16
 * 2. Redistributions in binary form must reproduce the above copyright notice,
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    17
 *    this list of conditions and the following disclaimer in the documentation
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    18
 *    and/or other materials provided with the distribution.
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    19
 * 3. The name of the author may not be used to endorse or promote products
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    20
 *    derived from this software without specific prior written permission.
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    21
 *
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    22
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    23
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    24
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    25
 * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    26
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    27
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    28
 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    29
 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    30
 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    31
 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    32
 *)
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    33
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    34
program hwengine;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    35
{$APPTYPE CONSOLE}
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    36
uses
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    37
  SDLh,
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    38
  uConsts in 'uConsts.pas',
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    39
  uGame in 'uGame.pas',
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    40
  uMisc in 'uMisc.pas',
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    41
  uStore in 'uStore.pas',
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    42
  uWorld in 'uWorld.pas',
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    43
  uIO in 'uIO.pas',
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    44
  uGears in 'uGears.pas',
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    45
  uConsole in 'uConsole.pas',
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    46
  uKeys in 'uKeys.pas',
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    47
  uTeams in 'uTeams.pas',
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    48
  uSound in 'uSound.pas',
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    49
  uRandom in 'uRandom.pas',
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    50
  uAI in 'uAI.pas',
79
29b477319854 - New test map
unc0rr
parents: 74
diff changeset
    51
  uAIMisc in 'uAIMisc.pas',
29b477319854 - New test map
unc0rr
parents: 74
diff changeset
    52
  uAIAmmoTests in 'uAIAmmoTests.pas',
29b477319854 - New test map
unc0rr
parents: 74
diff changeset
    53
  uAIActions in 'uAIActions.pas',
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    54
  uCollisions in 'uCollisions.pas',
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    55
  uLand in 'uLand.pas',
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    56
  uLandTemplates in 'uLandTemplates.pas',
54
839fd258ae6f - Fixed game loading
unc0rr
parents: 53
diff changeset
    57
  uLandObjects in 'uLandObjects.pas',
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 79
diff changeset
    58
  uLandGraphics in 'uLandGraphics.pas',
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 79
diff changeset
    59
  uLocale in 'uLocale.pas';
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    60
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    61
{$INCLUDE options.inc}
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    62
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    63
// also: GSHandlers.inc
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    64
//       CCHandlers.inc
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    65
//       HHHandlers.inc
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    66
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    67
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    68
procedure OnDestroy; forward;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    69
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    70
////////////////////////////////
79
29b477319854 - New test map
unc0rr
parents: 74
diff changeset
    71
procedure DoTimer(Lag: integer);
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    72
var s: string;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    73
begin
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    74
case GameState of
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    75
   gsLandGen: begin
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    76
              GenMap;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    77
              GameState:= gsStart;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    78
              end;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    79
     gsStart: begin
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    80
              AssignHHCoords;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    81
              AddMiscGears;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    82
              AdjustColor(cColorNearBlack);
56
a29135563e94 - Replaced water sprite
unc0rr
parents: 55
diff changeset
    83
              AdjustColor(cWaterColor);
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    84
              AdjustColor(cWhiteColor);
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    85
              StoreLoad;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    86
              AdjustColor(cConsoleSplitterColor);
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    87
              ResetKbd;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    88
              SoundLoad;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    89
              PlayMusic;
72
aeb2ac1878dc Basic save support in engine
unc0rr
parents: 71
diff changeset
    90
              if GameType = gmtSave then
aeb2ac1878dc Basic save support in engine
unc0rr
parents: 71
diff changeset
    91
                 begin
aeb2ac1878dc Basic save support in engine
unc0rr
parents: 71
diff changeset
    92
                 isSEBackup:= isSoundEnabled;
aeb2ac1878dc Basic save support in engine
unc0rr
parents: 71
diff changeset
    93
                 isSoundEnabled:= false
aeb2ac1878dc Basic save support in engine
unc0rr
parents: 71
diff changeset
    94
                 end;
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    95
              GameState:= gsGame
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    96
              end;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    97
     gsGame : begin
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    98
              ProcessKbd;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    99
              DoGameTick(Lag);
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   100
              DrawWorld(Lag, SDLPrimSurface);
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   101
              end;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   102
   gsConsole: begin
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   103
              DoGameTick(Lag);
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   104
              DrawWorld(Lag, SDLPrimSurface);
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   105
              DrawConsole(SDLPrimSurface);
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   106
              end;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   107
     gsExit : begin
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   108
              OnDestroy;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   109
              end;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   110
     end;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   111
SDL_Flip(SDLPrimSurface);
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   112
if flagMakeCapture then
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   113
   begin
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   114
   flagMakeCapture:= false;
81
d74e0e914b50 More translations
unc0rr
parents: 80
diff changeset
   115
   s:= 'hw_' + cSeed + '_' + inttostr(GameTicks) + '.bmp';
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   116
   WriteLnToConsole('Saving ' + s);
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   117
   SDL_SaveBMP_RW(SDLPrimSurface, SDL_RWFromFile(PChar(s), 'wb'), 1)
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   118
   end;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   119
end;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   120
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   121
////////////////////
79
29b477319854 - New test map
unc0rr
parents: 74
diff changeset
   122
procedure OnDestroy;
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   123
begin
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   124
{$IFDEF DEBUGFILE}AddFileLog('Freeing resources...');{$ENDIF}
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   125
if isSoundEnabled then ReleaseSound;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   126
StoreRelease;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   127
CloseIPC;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   128
TTF_Quit;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   129
SDL_Quit;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   130
halt
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   131
end;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   132
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   133
///////////////////
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   134
procedure MainLoop;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   135
var PrevTime,
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   136
    CurrTime: Cardinal;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   137
    event: TSDL_Event;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   138
begin
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   139
PrevTime:= SDL_GetTicks;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   140
repeat
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   141
while SDL_PollEvent(@event) <> 0 do
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   142
      case event.type_ of
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   143
           SDL_KEYDOWN: case GameState of
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   144
                             gsGame: if event.key.keysym.sym = 96 then
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   145
                                        begin
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   146
                                        cConsoleYAdd:= cConsoleHeight;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   147
                                        GameState:= gsConsole
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   148
                                        end;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   149
                          gsConsole: KeyPressConsole(event.key.keysym.sym);
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   150
                             end;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   151
           SDL_QUITEV: isTerminated:= true
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   152
           end;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   153
CurrTime:= SDL_GetTicks;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   154
if PrevTime + cTimerInterval <= CurrTime then
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   155
   begin
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   156
   DoTimer(CurrTime - PrevTime);
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   157
   PrevTime:= CurrTime
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   158
   end else {sleep(1)};
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   159
IPCCheckSock
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   160
until isTerminated
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   161
end;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   162
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   163
////////////////////
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   164
procedure GetParams;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   165
var c: integer;
97
e7c1df9cce2c - make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents: 81
diff changeset
   166
    i: integer;
e7c1df9cce2c - make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents: 81
diff changeset
   167
    p: TPathType;
e7c1df9cce2c - make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents: 81
diff changeset
   168
begin
e7c1df9cce2c - make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents: 81
diff changeset
   169
PathPrefix:= ParamStr(0);
e7c1df9cce2c - make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents: 81
diff changeset
   170
for i:= 1 to Length(PathPrefix) do
e7c1df9cce2c - make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents: 81
diff changeset
   171
    if PathPrefix[i] = '\' then PathPrefix[i]:= '/';
e7c1df9cce2c - make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents: 81
diff changeset
   172
i:= Length(PathPrefix);
e7c1df9cce2c - make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents: 81
diff changeset
   173
while (i > 0) and not (PathPrefix[i] = '/') do dec(i);
e7c1df9cce2c - make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents: 81
diff changeset
   174
Delete(PathPrefix, i, Length(PathPrefix) - i + 1);
e7c1df9cce2c - make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents: 81
diff changeset
   175
dec(i);
e7c1df9cce2c - make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents: 81
diff changeset
   176
while (i > 0) and not (PathPrefix[i] = '/') do dec(i);
e7c1df9cce2c - make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents: 81
diff changeset
   177
Delete(PathPrefix, i, Length(PathPrefix) - i + 1);
e7c1df9cce2c - make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents: 81
diff changeset
   178
PathPrefix:= PathPrefix + '/share/hedgewars/';
e7c1df9cce2c - make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents: 81
diff changeset
   179
for p:= Low(TPathType) to High(TPathType) do
e7c1df9cce2c - make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents: 81
diff changeset
   180
    if p <> ptMapCurrent then Pathz[p]:= PathPrefix + Pathz[p];
e7c1df9cce2c - make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents: 81
diff changeset
   181
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   182
{$IFDEF DEBUGFILE}
97
e7c1df9cce2c - make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents: 81
diff changeset
   183
AddFileLog('Prefix: "' + PathPrefix +'"');
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   184
for i:= 0 to ParamCount do
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   185
    AddFileLog(inttostr(i) + ': ' + ParamStr(i));
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   186
{$ENDIF}
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 79
diff changeset
   187
if ParamCount = 7 then
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   188
   begin
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   189
   val(ParamStr(1), cScreenWidth, c);
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   190
   val(ParamStr(2), cScreenHeight, c);
74
42257fee61ae - Unicode support for team and hedgehogs names
unc0rr
parents: 72
diff changeset
   191
   cBitsStr:= ParamStr(3);
42257fee61ae - Unicode support for team and hedgehogs names
unc0rr
parents: 72
diff changeset
   192
   val(cBitsStr, cBits, c);
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   193
   val(ParamStr(4), ipcPort, c);
55
e09f7c952a40 Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents: 54
diff changeset
   194
   cFullScreen:= ParamStr(5) = '1';
e09f7c952a40 Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents: 54
diff changeset
   195
   isSoundEnabled:= ParamStr(6) = '1';
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 79
diff changeset
   196
   cLocaleFName:= ParamStr(7);
97
e7c1df9cce2c - make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents: 81
diff changeset
   197
   end else OutError(errmsgShouldntRun, true)
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   198
end;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   199
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   200
procedure ShowMainWindow;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   201
var flags: Longword;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   202
begin
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   203
flags:= SDL_HWSURFACE or SDL_DOUBLEBUF or SDL_HWACCEL;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   204
if cFullScreen then flags:= flags or SDL_FULLSCREEN
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   205
               else SDL_WM_SetCaption('Hedgewars', nil);
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   206
SDLPrimSurface:= SDL_SetVideoMode(cScreenWidth, cScreenHeight, cBits, flags);
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   207
TryDo(SDLPrimSurface <> nil, errmsgCreateSurface, true);
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   208
PixelFormat:= SDLPrimSurface.format;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   209
SDL_ShowCursor(0);
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   210
end;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   211
////////////////////////////////////////////////////////////////////////////////
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   212
/////////////////////////////// m a i n ////////////////////////////////////////
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   213
////////////////////////////////////////////////////////////////////////////////
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   214
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   215
begin
74
42257fee61ae - Unicode support for team and hedgehogs names
unc0rr
parents: 72
diff changeset
   216
WriteLnToConsole('-= HedgeWars 0.2 =-');
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   217
WriteLnToConsole('  -= by unC0Rr =-  ');
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   218
GetParams;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   219
Randomize;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   220
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   221
WriteToConsole('Init SDL... ');
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   222
SDLTry(SDL_Init(SDL_INIT_VIDEO) >= 0, true);
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   223
WriteLnToConsole(msgOK);
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   224
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   225
WriteToConsole('Init SDL_ttf... ');
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   226
SDLTry(TTF_Init >= 0, true);
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   227
WriteLnToConsole(msgOK);
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   228
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   229
ShowMainWindow;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   230
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   231
InitKbdKeyTable;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   232
InitIPC;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   233
WriteLnToConsole(msgGettingConfig);
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 79
diff changeset
   234
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 79
diff changeset
   235
LoadLocale(Pathz[ptLocale] + '/' + cLocaleFName);
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 79
diff changeset
   236
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 79
diff changeset
   237
SendIPCAndWaitReply('C');        // ask for game config
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   238
InitTeams;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   239
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   240
if isSoundEnabled then InitSound;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   241
InitWorld;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   242
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   243
StoreInit;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   244
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   245
isDeveloperMode:= false;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   246
55
e09f7c952a40 Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents: 54
diff changeset
   247
TryDo(InitStepsFlags = cifAllInited,
e09f7c952a40 Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents: 54
diff changeset
   248
      'Some parameters not set (flags = ' + inttostr(InitStepsFlags) + ')',
e09f7c952a40 Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents: 54
diff changeset
   249
      true);
e09f7c952a40 Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents: 54
diff changeset
   250
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   251
MainLoop
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   252
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   253
end.