hedgewars/hwengine.dpr
author unc0rr
Sun, 27 Jan 2008 15:02:12 +0000
changeset 762 5ecf042f6113
parent 756 2b307457fd68
child 766 cdc8f75ab7bc
permissions -rw-r--r--
More sprites are visible
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 497
diff changeset
     1
 (*
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
     2
 * Hedgewars, a worms-like game
393
db01cc79f278 Update copyright information
unc0rr
parents: 377
diff changeset
     3
 * Copyright (c) 2004-2007 Andrey Korotaev <unC0Rr@gmail.com>
51
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
355
40c68869899e Small fixes to bring engine to life
unc0rr
parents: 351
diff changeset
    19
{$IFNDEF FPC}
40c68869899e Small fixes to bring engine to life
unc0rr
parents: 351
diff changeset
    20
WriteLn('Only Freepascal supported');
40c68869899e Small fixes to bring engine to life
unc0rr
parents: 351
diff changeset
    21
{$ENDIF}
40c68869899e Small fixes to bring engine to life
unc0rr
parents: 351
diff changeset
    22
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    23
program hwengine;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    24
uses
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    25
  SDLh,
753
40fc0deb388f Start conversion to OpenGL rendering
unc0rr
parents: 720
diff changeset
    26
  GL,
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    27
  uConsts in 'uConsts.pas',
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    28
  uGame in 'uGame.pas',
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    29
  uMisc in 'uMisc.pas',
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    30
  uStore in 'uStore.pas',
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    31
  uWorld in 'uWorld.pas',
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    32
  uIO in 'uIO.pas',
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    33
  uGears in 'uGears.pas',
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    34
  uConsole in 'uConsole.pas',
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    35
  uKeys in 'uKeys.pas',
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    36
  uTeams in 'uTeams.pas',
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    37
  uSound in 'uSound.pas',
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    38
  uRandom in 'uRandom.pas',
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    39
  uAI in 'uAI.pas',
79
29b477319854 - New test map
unc0rr
parents: 74
diff changeset
    40
  uAIMisc in 'uAIMisc.pas',
29b477319854 - New test map
unc0rr
parents: 74
diff changeset
    41
  uAIAmmoTests in 'uAIAmmoTests.pas',
29b477319854 - New test map
unc0rr
parents: 74
diff changeset
    42
  uAIActions in 'uAIActions.pas',
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    43
  uCollisions in 'uCollisions.pas',
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    44
  uLand in 'uLand.pas',
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    45
  uLandTemplates in 'uLandTemplates.pas',
54
839fd258ae6f - Fixed game loading
unc0rr
parents: 53
diff changeset
    46
  uLandObjects in 'uLandObjects.pas',
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 79
diff changeset
    47
  uLandGraphics in 'uLandGraphics.pas',
288
929c44745fd9 Ammo schemes and ammo stores support in engine
unc0rr
parents: 281
diff changeset
    48
  uLocale in 'uLocale.pas',
316
57d50189ad86 Calculate land digest
unc0rr
parents: 308
diff changeset
    49
  uAmmos in 'uAmmos.pas',
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
    50
  uSHA in 'uSHA.pas',
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
    51
  uFloat in 'uFloat.pas';
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
{$INCLUDE options.inc}
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    54
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    55
// also: GSHandlers.inc
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    56
//       CCHandlers.inc
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    57
//       HHHandlers.inc
357
165a040e4cfa - Fix Blow Torch and Air Attack
unc0rr
parents: 355
diff changeset
    58
//       SinTable.inc
271
f2f9a3d5b441 Protocol version sets in CMake
unc0rr
parents: 268
diff changeset
    59
//       proto.inc
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
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    62
procedure OnDestroy; forward;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    63
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    64
////////////////////////////////
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 357
diff changeset
    65
procedure DoTimer(Lag: LongInt);
564
17fb45c670c1 Finalize basic playlists implementation
unc0rr
parents: 529
diff changeset
    66
const MusicTimerTicks: Longword = 0;
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    67
var s: string;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    68
begin
564
17fb45c670c1 Finalize basic playlists implementation
unc0rr
parents: 529
diff changeset
    69
inc(RealTicks, Lag);
17fb45c670c1 Finalize basic playlists implementation
unc0rr
parents: 529
diff changeset
    70
17fb45c670c1 Finalize basic playlists implementation
unc0rr
parents: 529
diff changeset
    71
inc(MusicTimerTicks, Lag);
565
092cb8deffc5 Fix some bug, finish playlist implementation
unc0rr
parents: 564
diff changeset
    72
if (MusicTimerTicks > 3000) and (GameState > gsStart) then
564
17fb45c670c1 Finalize basic playlists implementation
unc0rr
parents: 529
diff changeset
    73
   begin
17fb45c670c1 Finalize basic playlists implementation
unc0rr
parents: 529
diff changeset
    74
   PlayMusic;
17fb45c670c1 Finalize basic playlists implementation
unc0rr
parents: 529
diff changeset
    75
   MusicTimerTicks:= 0
17fb45c670c1 Finalize basic playlists implementation
unc0rr
parents: 529
diff changeset
    76
   end;
17fb45c670c1 Finalize basic playlists implementation
unc0rr
parents: 529
diff changeset
    77
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    78
case GameState of
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    79
   gsLandGen: begin
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    80
              GenMap;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    81
              GameState:= gsStart;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    82
              end;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    83
     gsStart: begin
565
092cb8deffc5 Fix some bug, finish playlist implementation
unc0rr
parents: 564
diff changeset
    84
              InitPlaylistChunk(GetRandom(High(LongWord)));
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    85
              AssignHHCoords;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    86
              AddMiscGears;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    87
              StoreLoad;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    88
              AdjustColor(cConsoleSplitterColor);
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    89
              ResetKbd;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    90
              SoundLoad;
72
aeb2ac1878dc Basic save support in engine
unc0rr
parents: 71
diff changeset
    91
              if GameType = gmtSave then
aeb2ac1878dc Basic save support in engine
unc0rr
parents: 71
diff changeset
    92
                 begin
aeb2ac1878dc Basic save support in engine
unc0rr
parents: 71
diff changeset
    93
                 isSEBackup:= isSoundEnabled;
aeb2ac1878dc Basic save support in engine
unc0rr
parents: 71
diff changeset
    94
                 isSoundEnabled:= false
aeb2ac1878dc Basic save support in engine
unc0rr
parents: 71
diff changeset
    95
                 end;
510
4e994e1b7abb New loading progress sprite code
unc0rr
parents: 498
diff changeset
    96
              FinishProgress;
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    97
              GameState:= gsGame
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    98
              end;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    99
     gsGame : begin
167
805fa9a27e9e "Trusted" binds
unc0rr
parents: 166
diff changeset
   100
              ProcessKbd;
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   101
              DoGameTick(Lag);
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   102
              DrawWorld(Lag, SDLPrimSurface);
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
   gsConsole: begin
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   105
              DoGameTick(Lag);
753
40fc0deb388f Start conversion to OpenGL rendering
unc0rr
parents: 720
diff changeset
   106
//              DrawWorld(Lag, SDLPrimSurface);
40fc0deb388f Start conversion to OpenGL rendering
unc0rr
parents: 720
diff changeset
   107
//              DrawConsole(SDLPrimSurface);
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   108
              end;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   109
     gsExit : begin
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   110
              OnDestroy;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   111
              end;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   112
     end;
564
17fb45c670c1 Finalize basic playlists implementation
unc0rr
parents: 529
diff changeset
   113
753
40fc0deb388f Start conversion to OpenGL rendering
unc0rr
parents: 720
diff changeset
   114
//SDL_Flip(SDLPrimSurface);
40fc0deb388f Start conversion to OpenGL rendering
unc0rr
parents: 720
diff changeset
   115
SDL_GL_SwapBuffers();
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   116
if flagMakeCapture then
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   117
   begin
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   118
   flagMakeCapture:= false;
81
d74e0e914b50 More translations
unc0rr
parents: 80
diff changeset
   119
   s:= 'hw_' + cSeed + '_' + inttostr(GameTicks) + '.bmp';
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   120
   WriteLnToConsole('Saving ' + s);
489
6b0ced304920 Fix "/capture" command
unc0rr
parents: 434
diff changeset
   121
   SDL_SaveBMP_RW(SDLPrimSurface, SDL_RWFromFile(Str2PChar(s), 'wb'), 1)
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   122
   end;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   123
end;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   124
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   125
////////////////////
79
29b477319854 - New test map
unc0rr
parents: 74
diff changeset
   126
procedure OnDestroy;
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   127
begin
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   128
{$IFDEF DEBUGFILE}AddFileLog('Freeing resources...');{$ENDIF}
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   129
if isSoundEnabled then ReleaseSound;
619
758da3d985fa - Update protocol doc
unc0rr
parents: 611
diff changeset
   130
StoreRelease;
758da3d985fa - Update protocol doc
unc0rr
parents: 611
diff changeset
   131
SendKB;
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   132
CloseIPC;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   133
TTF_Quit;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   134
SDL_Quit;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   135
halt
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   136
end;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   137
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   138
///////////////////
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   139
procedure MainLoop;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   140
var PrevTime,
188
a7c2a61524c2 Cardinal -> Longword
unc0rr
parents: 183
diff changeset
   141
    CurrTime: Longword;
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   142
    event: TSDL_Event;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   143
begin
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   144
PrevTime:= SDL_GetTicks;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   145
repeat
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   146
while SDL_PollEvent(@event) <> 0 do
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   147
      case event.type_ of
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   148
           SDL_KEYDOWN: case GameState of
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   149
                             gsGame: if event.key.keysym.sym = 96 then
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   150
                                        begin
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   151
                                        cConsoleYAdd:= cConsoleHeight;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   152
                                        GameState:= gsConsole
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   153
                                        end;
415
d6d3a6a473a3 - Bind also 9th slot
unc0rr
parents: 394
diff changeset
   154
                          gsConsole: if event.key.keysym.sym = 96 then
d6d3a6a473a3 - Bind also 9th slot
unc0rr
parents: 394
diff changeset
   155
                                        begin
d6d3a6a473a3 - Bind also 9th slot
unc0rr
parents: 394
diff changeset
   156
                                        GameState:= gsGame;
d6d3a6a473a3 - Bind also 9th slot
unc0rr
parents: 394
diff changeset
   157
                                        cConsoleYAdd:= 0;
d6d3a6a473a3 - Bind also 9th slot
unc0rr
parents: 394
diff changeset
   158
                                        ResetKbd
d6d3a6a473a3 - Bind also 9th slot
unc0rr
parents: 394
diff changeset
   159
                                        end else KeyPressConsole(event.key.keysym.unicode);
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   160
                             end;
308
806c3b55500d Release mouse when keyboard focus lost
unc0rr
parents: 302
diff changeset
   161
           SDL_ACTIVEEVENT: if (event.active.state and SDL_APPINPUTFOCUS) <> 0 then
806c3b55500d Release mouse when keyboard focus lost
unc0rr
parents: 302
diff changeset
   162
                               cHasFocus:= event.active.gain = 1;
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   163
           SDL_QUITEV: isTerminated:= true
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   164
           end;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   165
CurrTime:= SDL_GetTicks;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   166
if PrevTime + cTimerInterval <= CurrTime then
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   167
   begin
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   168
   DoTimer(CurrTime - PrevTime);
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   169
   PrevTime:= CurrTime
434
2c6ccce17f39 Many small improvements
unc0rr
parents: 426
diff changeset
   170
   end else SDL_Delay(1);
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   171
IPCCheckSock
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   172
until isTerminated
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   173
end;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   174
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   175
////////////////////
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   176
procedure GetParams;
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 497
diff changeset
   177
var 
267
bf7c1503f569 Engine gets Data path from frontend
unc0rr
parents: 208
diff changeset
   178
{$IFDEF DEBUGFILE}
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 357
diff changeset
   179
    i: LongInt;
267
bf7c1503f569 Engine gets Data path from frontend
unc0rr
parents: 208
diff changeset
   180
{$ENDIF}
97
e7c1df9cce2c - make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents: 81
diff changeset
   181
    p: TPathType;
e7c1df9cce2c - make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents: 81
diff changeset
   182
begin
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   183
{$IFDEF DEBUGFILE}
97
e7c1df9cce2c - make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents: 81
diff changeset
   184
AddFileLog('Prefix: "' + PathPrefix +'"');
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   185
for i:= 0 to ParamCount do
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   186
    AddFileLog(inttostr(i) + ': ' + ParamStr(i));
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   187
{$ENDIF}
267
bf7c1503f569 Engine gets Data path from frontend
unc0rr
parents: 208
diff changeset
   188
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   189
case ParamCount of
529
812682c1ab62 Option for alternative damage tags
unc0rr
parents: 510
diff changeset
   190
13: begin
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 497
diff changeset
   191
     val(ParamStr(2), cScreenWidth);
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 497
diff changeset
   192
     val(ParamStr(3), cScreenHeight);
497
adf1aee202c6 merge fixes from branch
displacer
parents: 489
diff changeset
   193
     cBitsStr:= ParamStr(4);
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 497
diff changeset
   194
     val(cBitsStr, cBits);
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 497
diff changeset
   195
     val(ParamStr(5), ipcPort);
497
adf1aee202c6 merge fixes from branch
displacer
parents: 489
diff changeset
   196
     cFullScreen:= ParamStr(6) = '1';
adf1aee202c6 merge fixes from branch
displacer
parents: 489
diff changeset
   197
     isSoundEnabled:= ParamStr(7) = '1';
adf1aee202c6 merge fixes from branch
displacer
parents: 489
diff changeset
   198
     cLocaleFName:= ParamStr(8);
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 497
diff changeset
   199
     val(ParamStr(9), cInitVolume);
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 497
diff changeset
   200
     val(ParamStr(10), cTimerInterval);
497
adf1aee202c6 merge fixes from branch
displacer
parents: 489
diff changeset
   201
     PathPrefix:= ParamStr(11);
adf1aee202c6 merge fixes from branch
displacer
parents: 489
diff changeset
   202
     cShowFPS:= ParamStr(12) = '1';
529
812682c1ab62 Option for alternative damage tags
unc0rr
parents: 510
diff changeset
   203
     cAltDamage:= ParamStr(13) = '1';
267
bf7c1503f569 Engine gets Data path from frontend
unc0rr
parents: 208
diff changeset
   204
     for p:= Succ(Low(TPathType)) to High(TPathType) do
bf7c1503f569 Engine gets Data path from frontend
unc0rr
parents: 208
diff changeset
   205
         if p <> ptMapCurrent then Pathz[p]:= PathPrefix + '/' + Pathz[p];
293
00a532e8808e Some Z-ordering
unc0rr
parents: 288
diff changeset
   206
     AddClouds
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   207
     end;
497
adf1aee202c6 merge fixes from branch
displacer
parents: 489
diff changeset
   208
  3: begin
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 497
diff changeset
   209
     val(ParamStr(2), ipcPort);
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   210
     GameType:= gmtLandPreview;
497
adf1aee202c6 merge fixes from branch
displacer
parents: 489
diff changeset
   211
     if ParamStr(3) <> 'landpreview' then OutError(errmsgShouldntRun, true);
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   212
     end
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   213
   else
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   214
   OutError(errmsgShouldntRun, true)
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   215
   end
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   216
end;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   217
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   218
procedure ShowMainWindow;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   219
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
   220
if cFullScreen then ParseCommand('fullscr 1', true)
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
   221
               else ParseCommand('fullscr 0', true);
281
5b483aa9f2ab Pause support (mouse cursor is released when the game is paused)
unc0rr
parents: 271
diff changeset
   222
SDL_ShowCursor(0)
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   223
end;
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   224
160
207f520b9e83 Soma small fixes + new land template
unc0rr
parents: 159
diff changeset
   225
///////////////
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   226
procedure Game;
205
8d9aff55e6ab - Set version to 0.8
unc0rr
parents: 200
diff changeset
   227
var s: shortstring;
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   228
begin
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   229
WriteToConsole('Init SDL... ');
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   230
SDLTry(SDL_Init(SDL_INIT_VIDEO) >= 0, true);
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   231
WriteLnToConsole(msgOK);
753
40fc0deb388f Start conversion to OpenGL rendering
unc0rr
parents: 720
diff changeset
   232
377
d9b88dbdf5a9 Support unicode input for chat
unc0rr
parents: 371
diff changeset
   233
SDL_EnableUNICODE(1);
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   234
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   235
WriteToConsole('Init SDL_ttf... ');
200
a36102728776 Small fixes
unc0rr
parents: 188
diff changeset
   236
SDLTry(TTF_Init <> -1, true);
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   237
WriteLnToConsole(msgOK);
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   238
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   239
ShowMainWindow;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   240
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   241
InitKbdKeyTable;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   242
InitIPC;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   243
WriteLnToConsole(msgGettingConfig);
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 79
diff changeset
   244
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 79
diff changeset
   245
LoadLocale(Pathz[ptLocale] + '/' + cLocaleFName);
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 79
diff changeset
   246
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 79
diff changeset
   247
SendIPCAndWaitReply('C');        // ask for game config
205
8d9aff55e6ab - Set version to 0.8
unc0rr
parents: 200
diff changeset
   248
8d9aff55e6ab - Set version to 0.8
unc0rr
parents: 200
diff changeset
   249
s:= 'eproto ' + inttostr(cNetProtoVersion);
8d9aff55e6ab - Set version to 0.8
unc0rr
parents: 200
diff changeset
   250
SendIPCRaw(@s[0], Length(s) + 1); // send proto version
8d9aff55e6ab - Set version to 0.8
unc0rr
parents: 200
diff changeset
   251
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   252
InitTeams;
288
929c44745fd9 Ammo schemes and ammo stores support in engine
unc0rr
parents: 281
diff changeset
   253
AssignStores;
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   254
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   255
if isSoundEnabled then InitSound;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   256
InitWorld;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   257
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   258
StoreInit;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   259
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   260
isDeveloperMode:= false;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   261
55
e09f7c952a40 Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents: 54
diff changeset
   262
TryDo(InitStepsFlags = cifAllInited,
e09f7c952a40 Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents: 54
diff changeset
   263
      '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
   264
      true);
e09f7c952a40 Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents: 54
diff changeset
   265
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   266
MainLoop
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   267
end;
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   268
160
207f520b9e83 Soma small fixes + new land template
unc0rr
parents: 159
diff changeset
   269
/////////////////////////
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   270
procedure GenLandPreview;
566
1c1cb593cb81 Save some memory
unc0rr
parents: 565
diff changeset
   271
var Preview: TPreview;
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   272
begin
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   273
InitIPC;
159
63909aecb0ed Preview stream doesn't need parsing now
unc0rr
parents: 158
diff changeset
   274
IPCWaitPongEvent;
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   275
TryDo(InitStepsFlags = cifRandomize,
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   276
      'Some parameters not set (flags = ' + inttostr(InitStepsFlags) + ')',
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   277
      true);
160
207f520b9e83 Soma small fixes + new land template
unc0rr
parents: 159
diff changeset
   278
566
1c1cb593cb81 Save some memory
unc0rr
parents: 565
diff changeset
   279
Preview:= GenPreview;
159
63909aecb0ed Preview stream doesn't need parsing now
unc0rr
parents: 158
diff changeset
   280
WriteLnToConsole('Sending preview...');
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   281
SendIPCRaw(@Preview, sizeof(Preview));
159
63909aecb0ed Preview stream doesn't need parsing now
unc0rr
parents: 158
diff changeset
   282
WriteLnToConsole('Preview sent, disconnect');
158
e6c3223f3bca Don't synchronize after sending preview
unc0rr
parents: 155
diff changeset
   283
CloseIPC
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   284
end;
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   285
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   286
////////////////////////////////////////////////////////////////////////////////
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   287
/////////////////////////////// m a i n ////////////////////////////////////////
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   288
////////////////////////////////////////////////////////////////////////////////
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   289
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   290
begin
720
97a9d67d5c3e - Add 'Delete' button to demos and saves pages
unc0rr
parents: 619
diff changeset
   291
WriteLnToConsole('-= HedgeWars 0.9.2 =-');
97a9d67d5c3e - Add 'Delete' button to demos and saves pages
unc0rr
parents: 619
diff changeset
   292
WriteLnToConsole('   -= by unC0Rr =-   ');
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   293
GetParams;
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   294
Randomize;
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   295
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   296
if GameType = gmtLandPreview then GenLandPreview
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   297
                             else Game
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   298
end.