hedgewars/hwengine.dpr
author unc0rr
Thu, 23 Nov 2006 21:51:47 +0000
changeset 267 bf7c1503f569
parent 208 a049157d673a
child 268 88809d92e504
permissions -rw-r--r--
Engine gets Data path from frontend
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
 *
183
57c2ef19f719 Relicense to GPL
unc0rr
parents: 174
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
57c2ef19f719 Relicense to GPL
unc0rr
parents: 174
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
57c2ef19f719 Relicense to GPL
unc0rr
parents: 174
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
     8
 *
183
57c2ef19f719 Relicense to GPL
unc0rr
parents: 174
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
57c2ef19f719 Relicense to GPL
unc0rr
parents: 174
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
57c2ef19f719 Relicense to GPL
unc0rr
parents: 174
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
57c2ef19f719 Relicense to GPL
unc0rr
parents: 174
diff changeset
    12
 * GNU General Public License for more details.
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    13
 *
183
57c2ef19f719 Relicense to GPL
unc0rr
parents: 174
diff changeset
    14
 * You should have received a copy of the GNU General Public License
57c2ef19f719 Relicense to GPL
unc0rr
parents: 174
diff changeset
    15
 * along with this program; if not, write to the Free Software
57c2ef19f719 Relicense to GPL
unc0rr
parents: 174
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    17
 *)
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    18
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    19
program hwengine;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    20
{$APPTYPE CONSOLE}
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    21
uses
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    22
  SDLh,
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    23
  uConsts in 'uConsts.pas',
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    24
  uGame in 'uGame.pas',
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    25
  uMisc in 'uMisc.pas',
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    26
  uStore in 'uStore.pas',
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    27
  uWorld in 'uWorld.pas',
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    28
  uIO in 'uIO.pas',
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    29
  uGears in 'uGears.pas',
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    30
  uConsole in 'uConsole.pas',
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    31
  uKeys in 'uKeys.pas',
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    32
  uTeams in 'uTeams.pas',
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    33
  uSound in 'uSound.pas',
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    34
  uRandom in 'uRandom.pas',
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    35
  uAI in 'uAI.pas',
79
29b477319854 - New test map
unc0rr
parents: 74
diff changeset
    36
  uAIMisc in 'uAIMisc.pas',
29b477319854 - New test map
unc0rr
parents: 74
diff changeset
    37
  uAIAmmoTests in 'uAIAmmoTests.pas',
29b477319854 - New test map
unc0rr
parents: 74
diff changeset
    38
  uAIActions in 'uAIActions.pas',
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    39
  uCollisions in 'uCollisions.pas',
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    40
  uLand in 'uLand.pas',
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    41
  uLandTemplates in 'uLandTemplates.pas',
54
839fd258ae6f - Fixed game loading
unc0rr
parents: 53
diff changeset
    42
  uLandObjects in 'uLandObjects.pas',
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 79
diff changeset
    43
  uLandGraphics in 'uLandGraphics.pas',
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 79
diff changeset
    44
  uLocale in 'uLocale.pas';
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    45
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    46
{$INCLUDE options.inc}
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    47
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    48
// also: GSHandlers.inc
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    49
//       CCHandlers.inc
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    50
//       HHHandlers.inc
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    52
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    53
procedure OnDestroy; forward;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    54
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    55
////////////////////////////////
79
29b477319854 - New test map
unc0rr
parents: 74
diff changeset
    56
procedure DoTimer(Lag: integer);
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    57
var s: string;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    58
begin
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    59
case GameState of
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    60
   gsLandGen: begin
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    61
              GenMap;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    62
              GameState:= gsStart;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    63
              end;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    64
     gsStart: begin
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    65
              AssignHHCoords;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    66
              AddMiscGears;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    67
              AdjustColor(cColorNearBlack);
56
a29135563e94 - Replaced water sprite
unc0rr
parents: 55
diff changeset
    68
              AdjustColor(cWaterColor);
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    69
              AdjustColor(cWhiteColor);
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    70
              StoreLoad;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    71
              AdjustColor(cConsoleSplitterColor);
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    72
              ResetKbd;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    73
              SoundLoad;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    74
              PlayMusic;
72
aeb2ac1878dc Basic save support in engine
unc0rr
parents: 71
diff changeset
    75
              if GameType = gmtSave then
aeb2ac1878dc Basic save support in engine
unc0rr
parents: 71
diff changeset
    76
                 begin
aeb2ac1878dc Basic save support in engine
unc0rr
parents: 71
diff changeset
    77
                 isSEBackup:= isSoundEnabled;
aeb2ac1878dc Basic save support in engine
unc0rr
parents: 71
diff changeset
    78
                 isSoundEnabled:= false
aeb2ac1878dc Basic save support in engine
unc0rr
parents: 71
diff changeset
    79
                 end;
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    80
              GameState:= gsGame
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    81
              end;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    82
     gsGame : begin
167
805fa9a27e9e "Trusted" binds
unc0rr
parents: 166
diff changeset
    83
              ProcessKbd;
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    84
              DoGameTick(Lag);
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    85
              DrawWorld(Lag, SDLPrimSurface);
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    86
              end;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    87
   gsConsole: begin
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    88
              DoGameTick(Lag);
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    89
              DrawWorld(Lag, SDLPrimSurface);
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    90
              DrawConsole(SDLPrimSurface);
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    91
              end;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    92
     gsExit : begin
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    93
              OnDestroy;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    94
              end;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    95
     end;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    96
SDL_Flip(SDLPrimSurface);
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    97
if flagMakeCapture then
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    98
   begin
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    99
   flagMakeCapture:= false;
81
d74e0e914b50 More translations
unc0rr
parents: 80
diff changeset
   100
   s:= 'hw_' + cSeed + '_' + inttostr(GameTicks) + '.bmp';
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   101
   WriteLnToConsole('Saving ' + s);
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   102
   SDL_SaveBMP_RW(SDLPrimSurface, SDL_RWFromFile(PChar(s), 'wb'), 1)
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   103
   end;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   104
end;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   105
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   106
////////////////////
79
29b477319854 - New test map
unc0rr
parents: 74
diff changeset
   107
procedure OnDestroy;
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   108
begin
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   109
{$IFDEF DEBUGFILE}AddFileLog('Freeing resources...');{$ENDIF}
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   110
if isSoundEnabled then ReleaseSound;
208
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 205
diff changeset
   111
StoreRelease;SendKB;
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   112
CloseIPC;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   113
TTF_Quit;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   114
SDL_Quit;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   115
halt
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   116
end;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   117
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   118
///////////////////
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   119
procedure MainLoop;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   120
var PrevTime,
188
a7c2a61524c2 Cardinal -> Longword
unc0rr
parents: 183
diff changeset
   121
    CurrTime: Longword;
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   122
    event: TSDL_Event;
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
PrevTime:= SDL_GetTicks;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   125
repeat
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   126
while SDL_PollEvent(@event) <> 0 do
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   127
      case event.type_ of
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   128
           SDL_KEYDOWN: case GameState of
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   129
                             gsGame: if event.key.keysym.sym = 96 then
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   130
                                        begin
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   131
                                        cConsoleYAdd:= cConsoleHeight;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   132
                                        GameState:= gsConsole
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   133
                                        end;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   134
                          gsConsole: KeyPressConsole(event.key.keysym.sym);
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   135
                             end;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   136
           SDL_QUITEV: isTerminated:= true
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   137
           end;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   138
CurrTime:= SDL_GetTicks;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   139
if PrevTime + cTimerInterval <= CurrTime then
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   140
   begin
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   141
   DoTimer(CurrTime - PrevTime);
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   142
   PrevTime:= CurrTime
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   143
   end else {sleep(1)};
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   144
IPCCheckSock
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   145
until isTerminated
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   146
end;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   147
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   148
////////////////////
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   149
procedure GetParams;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   150
var c: integer;
267
bf7c1503f569 Engine gets Data path from frontend
unc0rr
parents: 208
diff changeset
   151
{$IFDEF DEBUGFILE}
bf7c1503f569 Engine gets Data path from frontend
unc0rr
parents: 208
diff changeset
   152
    i: integer;    
bf7c1503f569 Engine gets Data path from frontend
unc0rr
parents: 208
diff changeset
   153
{$ENDIF}
97
e7c1df9cce2c - make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents: 81
diff changeset
   154
    p: TPathType;
e7c1df9cce2c - make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents: 81
diff changeset
   155
begin
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   156
{$IFDEF DEBUGFILE}
97
e7c1df9cce2c - make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents: 81
diff changeset
   157
AddFileLog('Prefix: "' + PathPrefix +'"');
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   158
for i:= 0 to ParamCount do
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   159
    AddFileLog(inttostr(i) + ': ' + ParamStr(i));
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   160
{$ENDIF}
267
bf7c1503f569 Engine gets Data path from frontend
unc0rr
parents: 208
diff changeset
   161
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   162
case ParamCount of
267
bf7c1503f569 Engine gets Data path from frontend
unc0rr
parents: 208
diff changeset
   163
  9: begin
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   164
     val(ParamStr(1), cScreenWidth, c);
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   165
     val(ParamStr(2), cScreenHeight, c);
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   166
     cBitsStr:= ParamStr(3);
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   167
     val(cBitsStr, cBits, c);
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   168
     val(ParamStr(4), ipcPort, c);
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   169
     cFullScreen:= ParamStr(5) = '1';
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   170
     isSoundEnabled:= ParamStr(6) = '1';
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   171
     cLocaleFName:= ParamStr(7);
174
0b2c5b22f644 Changeable volume
unc0rr
parents: 167
diff changeset
   172
     val(ParamStr(8), cInitVolume, c);
267
bf7c1503f569 Engine gets Data path from frontend
unc0rr
parents: 208
diff changeset
   173
     PathPrefix:= ParamStr(9);
bf7c1503f569 Engine gets Data path from frontend
unc0rr
parents: 208
diff changeset
   174
     for p:= Succ(Low(TPathType)) to High(TPathType) do
bf7c1503f569 Engine gets Data path from frontend
unc0rr
parents: 208
diff changeset
   175
         if p <> ptMapCurrent then Pathz[p]:= PathPrefix + '/' + Pathz[p];
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   176
     end;
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   177
  2: begin
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   178
     val(ParamStr(1), ipcPort, c);
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   179
     GameType:= gmtLandPreview;
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   180
     if ParamStr(2) <> 'landpreview' then OutError(errmsgShouldntRun, true);
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   181
     end
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   182
   else
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   183
   OutError(errmsgShouldntRun, true)
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   184
   end
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   185
end;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   186
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   187
procedure ShowMainWindow;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   188
begin
166
2920ab2bf329 Switching between fullscreen and windowed modes on 'F' key
unc0rr
parents: 161
diff changeset
   189
if cFullScreen then ParseCommand('fullscr 1')
2920ab2bf329 Switching between fullscreen and windowed modes on 'F' key
unc0rr
parents: 161
diff changeset
   190
               else ParseCommand('fullscr 0')
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   191
end;
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   192
160
207f520b9e83 Soma small fixes + new land template
unc0rr
parents: 159
diff changeset
   193
///////////////
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   194
procedure Game;
205
8d9aff55e6ab - Set version to 0.8
unc0rr
parents: 200
diff changeset
   195
var s: shortstring;
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   196
begin
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   197
WriteToConsole('Init SDL... ');
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   198
SDLTry(SDL_Init(SDL_INIT_VIDEO) >= 0, true);
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   199
WriteLnToConsole(msgOK);
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   200
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   201
WriteToConsole('Init SDL_ttf... ');
200
a36102728776 Small fixes
unc0rr
parents: 188
diff changeset
   202
SDLTry(TTF_Init <> -1, true);
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   203
WriteLnToConsole(msgOK);
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   204
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   205
ShowMainWindow;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   206
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   207
InitKbdKeyTable;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   208
InitIPC;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   209
WriteLnToConsole(msgGettingConfig);
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 79
diff changeset
   210
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 79
diff changeset
   211
LoadLocale(Pathz[ptLocale] + '/' + cLocaleFName);
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 79
diff changeset
   212
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 79
diff changeset
   213
SendIPCAndWaitReply('C');        // ask for game config
205
8d9aff55e6ab - Set version to 0.8
unc0rr
parents: 200
diff changeset
   214
8d9aff55e6ab - Set version to 0.8
unc0rr
parents: 200
diff changeset
   215
s:= 'eproto ' + inttostr(cNetProtoVersion);
8d9aff55e6ab - Set version to 0.8
unc0rr
parents: 200
diff changeset
   216
SendIPCRaw(@s[0], Length(s) + 1); // send proto version
8d9aff55e6ab - Set version to 0.8
unc0rr
parents: 200
diff changeset
   217
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   218
InitTeams;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   219
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   220
if isSoundEnabled then InitSound;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   221
InitWorld;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   222
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   223
StoreInit;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   224
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   225
isDeveloperMode:= false;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   226
55
e09f7c952a40 Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents: 54
diff changeset
   227
TryDo(InitStepsFlags = cifAllInited,
e09f7c952a40 Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents: 54
diff changeset
   228
      '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
   229
      true);
e09f7c952a40 Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents: 54
diff changeset
   230
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   231
MainLoop
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   232
end;
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   233
160
207f520b9e83 Soma small fixes + new land template
unc0rr
parents: 159
diff changeset
   234
/////////////////////////
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   235
procedure GenLandPreview;
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   236
begin
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   237
InitIPC;
159
63909aecb0ed Preview stream doesn't need parsing now
unc0rr
parents: 158
diff changeset
   238
IPCWaitPongEvent;
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   239
TryDo(InitStepsFlags = cifRandomize,
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   240
      'Some parameters not set (flags = ' + inttostr(InitStepsFlags) + ')',
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   241
      true);
160
207f520b9e83 Soma small fixes + new land template
unc0rr
parents: 159
diff changeset
   242
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   243
GenPreview;
159
63909aecb0ed Preview stream doesn't need parsing now
unc0rr
parents: 158
diff changeset
   244
WriteLnToConsole('Sending preview...');
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   245
SendIPCRaw(@Preview, sizeof(Preview));
159
63909aecb0ed Preview stream doesn't need parsing now
unc0rr
parents: 158
diff changeset
   246
WriteLnToConsole('Preview sent, disconnect');
158
e6c3223f3bca Don't synchronize after sending preview
unc0rr
parents: 155
diff changeset
   247
CloseIPC
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   248
end;
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   249
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   250
////////////////////////////////////////////////////////////////////////////////
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   251
/////////////////////////////// m a i n ////////////////////////////////////////
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   252
////////////////////////////////////////////////////////////////////////////////
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   253
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   254
begin
205
8d9aff55e6ab - Set version to 0.8
unc0rr
parents: 200
diff changeset
   255
WriteLnToConsole('-= HedgeWars 0.8 =-');
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   256
WriteLnToConsole('  -= by unC0Rr =-  ');
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   257
GetParams;
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   258
Randomize;
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   259
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   260
if GameType = gmtLandPreview then GenLandPreview
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   261
                             else Game
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   262
end.