hedgewars/hwengine.dpr
author unc0rr
Wed, 18 Mar 2009 15:48:43 +0000
changeset 1899 5763f46d7486
parent 1892 fddc1201df25
child 1906 644f93d8f148
permissions -rw-r--r--
Sync schemes config over net should work now (untested)
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
 (*
1066
1f1b3686a2b0 Update copyright headers a bit
unc0rr
parents: 1022
diff changeset
     2
 * Hedgewars, a free turn based strategy 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
1524
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    25
	SDLh,
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    26
	GL,
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    27
	uConsts in 'uConsts.pas',
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    28
	uGame in 'uGame.pas',
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    29
	uMisc in 'uMisc.pas',
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    30
	uStore in 'uStore.pas',
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    31
	uWorld in 'uWorld.pas',
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    32
	uIO in 'uIO.pas',
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    33
	uGears in 'uGears.pas',
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    34
	uVisualGears in 'uVisualGears.pas',
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    35
	uConsole in 'uConsole.pas',
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    36
	uKeys in 'uKeys.pas',
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    37
	uTeams in 'uTeams.pas',
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    38
	uSound in 'uSound.pas',
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    39
	uRandom in 'uRandom.pas',
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    40
	uAI in 'uAI.pas',
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    41
	uAIMisc in 'uAIMisc.pas',
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    42
	uAIAmmoTests in 'uAIAmmoTests.pas',
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    43
	uAIActions in 'uAIActions.pas',
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    44
	uCollisions in 'uCollisions.pas',
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    45
	uLand in 'uLand.pas',
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    46
	uLandTemplates in 'uLandTemplates.pas',
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    47
	uLandObjects in 'uLandObjects.pas',
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    48
	uLandGraphics in 'uLandGraphics.pas',
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    49
	uLocale in 'uLocale.pas',
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    50
	uAmmos in 'uAmmos.pas',
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    51
	uSHA in 'uSHA.pas',
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    52
	uFloat in 'uFloat.pas',
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    53
	uStats in 'uStats.pas',
1807
795f97007833 Split land texture into small ones:
unc0rr
parents: 1791
diff changeset
    54
	uChat in 'uChat.pas',
795f97007833 Split land texture into small ones:
unc0rr
parents: 1791
diff changeset
    55
	uLandTexture;
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    56
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    57
{$INCLUDE options.inc}
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    58
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    59
// also: GSHandlers.inc
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    60
//       CCHandlers.inc
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    61
//       HHHandlers.inc
357
165a040e4cfa - Fix Blow Torch and Air Attack
unc0rr
parents: 355
diff changeset
    62
//       SinTable.inc
271
f2f9a3d5b441 Protocol version sets in CMake
unc0rr
parents: 268
diff changeset
    63
//       proto.inc
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    64
1888
e76274ce7365 Add an ability to run engine without IPC connection.
unc0rr
parents: 1825
diff changeset
    65
var recordFileName : shortstring = '';
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    66
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    67
procedure OnDestroy; forward;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    68
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    69
////////////////////////////////
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 357
diff changeset
    70
procedure DoTimer(Lag: LongInt);
1080
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
    71
var s: string;
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    72
begin
564
17fb45c670c1 Finalize basic playlists implementation
unc0rr
parents: 529
diff changeset
    73
inc(RealTicks, Lag);
17fb45c670c1 Finalize basic playlists implementation
unc0rr
parents: 529
diff changeset
    74
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    75
case GameState of
1524
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    76
	gsLandGen: begin
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    77
			GenMap;
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    78
			GameState:= gsStart;
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    79
			end;
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    80
	gsStart: begin
1784
dfe9bafb4590 Apply nemo's patch polished by me:
unc0rr
parents: 1651
diff changeset
    81
			if HasBorder then DisableSomeWeapons;
1524
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    82
			AddClouds;
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    83
			AssignHHCoords;
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    84
			AddMiscGears;
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    85
			StoreLoad;
1825
c929f9111141 Nemo's patch allowing different water sprites size
unc0rr
parents: 1812
diff changeset
    86
            InitWorld;
1524
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    87
			ResetKbd;
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    88
			SoundLoad;
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    89
			if GameType = gmtSave then
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    90
				begin
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    91
				isSEBackup:= isSoundEnabled;
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    92
				isSoundEnabled:= false
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    93
				end;
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    94
			FinishProgress;
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    95
			PlayMusic;
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    96
			GameState:= gsGame
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    97
			end;
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    98
	gsConfirm,
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    99
	gsGame: begin
1645
f010d68adbb7 Fix two cursor bugs
unc0rr
parents: 1524
diff changeset
   100
			DrawWorld(Lag); // never place between ProcessKbd and DoGameTick - bugs due to /put cmd and isCursorVisible
1524
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
   101
			ProcessKbd;
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
   102
			DoGameTick(Lag);
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
   103
			ProcessVisualGears(Lag);
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
   104
			end;
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
   105
	gsChat: begin
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
   106
			DrawWorld(Lag);
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
   107
			DoGameTick(Lag);
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
   108
			ProcessVisualGears(Lag);
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
   109
			end;
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
   110
	gsExit: begin
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
   111
			OnDestroy;
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
   112
			end;
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
   113
	end;
564
17fb45c670c1 Finalize basic playlists implementation
unc0rr
parents: 529
diff changeset
   114
753
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
1524
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
   117
	begin
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
   118
	flagMakeCapture:= false;
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
   119
	s:= 'hw_' + cSeed + '_' + inttostr(GameTicks) + '.tga';
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
   120
	WriteLnToConsole('Saving ' + s);
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
   121
	MakeScreenshot(s);
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
   122
//	SDL_SaveBMP_RW(SDLPrimSurface, SDL_RWFromFile(Str2PChar(s), 'wb'), 1)
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
   123
	end;
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   124
end;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   125
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   126
////////////////////
79
29b477319854 - New test map
unc0rr
parents: 74
diff changeset
   127
procedure OnDestroy;
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   128
begin
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   129
{$IFDEF DEBUGFILE}AddFileLog('Freeing resources...');{$ENDIF}
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   130
if isSoundEnabled then ReleaseSound;
619
758da3d985fa - Update protocol doc
unc0rr
parents: 611
diff changeset
   131
StoreRelease;
1807
795f97007833 Split land texture into small ones:
unc0rr
parents: 1791
diff changeset
   132
FreeLand;
619
758da3d985fa - Update protocol doc
unc0rr
parents: 611
diff changeset
   133
SendKB;
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   134
CloseIPC;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   135
TTF_Quit;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   136
SDL_Quit;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   137
halt
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   138
end;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   139
1120
eb5a9f86f9c6 Add ability to resize engine's window
unc0rr
parents: 1097
diff changeset
   140
////////////////////////////////
eb5a9f86f9c6 Add ability to resize engine's window
unc0rr
parents: 1097
diff changeset
   141
procedure Resize(w, h: LongInt);
eb5a9f86f9c6 Add ability to resize engine's window
unc0rr
parents: 1097
diff changeset
   142
begin
eb5a9f86f9c6 Add ability to resize engine's window
unc0rr
parents: 1097
diff changeset
   143
cScreenWidth:= w;
eb5a9f86f9c6 Add ability to resize engine's window
unc0rr
parents: 1097
diff changeset
   144
cScreenHeight:= h;
eb5a9f86f9c6 Add ability to resize engine's window
unc0rr
parents: 1097
diff changeset
   145
if cFullScreen then
eb5a9f86f9c6 Add ability to resize engine's window
unc0rr
parents: 1097
diff changeset
   146
	ParseCommand('/fullscr 1', true)
eb5a9f86f9c6 Add ability to resize engine's window
unc0rr
parents: 1097
diff changeset
   147
else
eb5a9f86f9c6 Add ability to resize engine's window
unc0rr
parents: 1097
diff changeset
   148
	ParseCommand('/fullscr 0', true);
eb5a9f86f9c6 Add ability to resize engine's window
unc0rr
parents: 1097
diff changeset
   149
end;
eb5a9f86f9c6 Add ability to resize engine's window
unc0rr
parents: 1097
diff changeset
   150
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   151
///////////////////
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   152
procedure MainLoop;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   153
var PrevTime,
188
a7c2a61524c2 Cardinal -> Longword
unc0rr
parents: 183
diff changeset
   154
    CurrTime: Longword;
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   155
    event: TSDL_Event;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   156
begin
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   157
PrevTime:= SDL_GetTicks;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   158
repeat
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   159
while SDL_PollEvent(@event) <> 0 do
1120
eb5a9f86f9c6 Add ability to resize engine's window
unc0rr
parents: 1097
diff changeset
   160
	case event.type_ of
eb5a9f86f9c6 Add ability to resize engine's window
unc0rr
parents: 1097
diff changeset
   161
		SDL_KEYDOWN: if GameState = gsChat then KeyPressChat(event.key.keysym.unicode);
eb5a9f86f9c6 Add ability to resize engine's window
unc0rr
parents: 1097
diff changeset
   162
		SDL_ACTIVEEVENT: if (event.active.state and SDL_APPINPUTFOCUS) <> 0 then
eb5a9f86f9c6 Add ability to resize engine's window
unc0rr
parents: 1097
diff changeset
   163
				cHasFocus:= event.active.gain = 1;
1127
7e1b94a0fc1f - Disable ability to resize window
unc0rr
parents: 1121
diff changeset
   164
		//SDL_VIDEORESIZE: Resize(max(event.resize.w, 600), max(event.resize.h, 450));
1120
eb5a9f86f9c6 Add ability to resize engine's window
unc0rr
parents: 1097
diff changeset
   165
		SDL_QUITEV: isTerminated:= true
eb5a9f86f9c6 Add ability to resize engine's window
unc0rr
parents: 1097
diff changeset
   166
		end;
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   167
CurrTime:= SDL_GetTicks;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   168
if PrevTime + cTimerInterval <= CurrTime then
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   169
   begin
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   170
   DoTimer(CurrTime - PrevTime);
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   171
   PrevTime:= CurrTime
434
2c6ccce17f39 Many small improvements
unc0rr
parents: 426
diff changeset
   172
   end else SDL_Delay(1);
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   173
IPCCheckSock
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   174
until isTerminated
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   175
end;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   176
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   177
////////////////////
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   178
procedure GetParams;
889
3bf9dc791f45 Some work on newhwserv
unc0rr
parents: 887
diff changeset
   179
var
267
bf7c1503f569 Engine gets Data path from frontend
unc0rr
parents: 208
diff changeset
   180
{$IFDEF DEBUGFILE}
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 357
diff changeset
   181
    i: LongInt;
267
bf7c1503f569 Engine gets Data path from frontend
unc0rr
parents: 208
diff changeset
   182
{$ENDIF}
97
e7c1df9cce2c - make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents: 81
diff changeset
   183
    p: TPathType;
e7c1df9cce2c - make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents: 81
diff changeset
   184
begin
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   185
{$IFDEF DEBUGFILE}
97
e7c1df9cce2c - make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents: 81
diff changeset
   186
AddFileLog('Prefix: "' + PathPrefix +'"');
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   187
for i:= 0 to ParamCount do
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   188
    AddFileLog(inttostr(i) + ': ' + ParamStr(i));
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   189
{$ENDIF}
267
bf7c1503f569 Engine gets Data path from frontend
unc0rr
parents: 208
diff changeset
   190
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   191
case ParamCount of
1892
fddc1201df25 Some tweaks by nemo
unc0rr
parents: 1888
diff changeset
   192
 16: begin
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 497
diff changeset
   193
     val(ParamStr(2), cScreenWidth);
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 497
diff changeset
   194
     val(ParamStr(3), cScreenHeight);
1121
d595dc56b4f3 Remember initial resolution settings to use when switching to fullscreen mode
unc0rr
parents: 1120
diff changeset
   195
     cInitWidth:= cScreenWidth;
d595dc56b4f3 Remember initial resolution settings to use when switching to fullscreen mode
unc0rr
parents: 1120
diff changeset
   196
     cInitHeight:= cScreenHeight;
497
adf1aee202c6 merge fixes from branch
displacer
parents: 489
diff changeset
   197
     cBitsStr:= ParamStr(4);
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 497
diff changeset
   198
     val(cBitsStr, cBits);
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 497
diff changeset
   199
     val(ParamStr(5), ipcPort);
497
adf1aee202c6 merge fixes from branch
displacer
parents: 489
diff changeset
   200
     cFullScreen:= ParamStr(6) = '1';
adf1aee202c6 merge fixes from branch
displacer
parents: 489
diff changeset
   201
     isSoundEnabled:= ParamStr(7) = '1';
adf1aee202c6 merge fixes from branch
displacer
parents: 489
diff changeset
   202
     cLocaleFName:= ParamStr(8);
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 497
diff changeset
   203
     val(ParamStr(9), cInitVolume);
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 497
diff changeset
   204
     val(ParamStr(10), cTimerInterval);
497
adf1aee202c6 merge fixes from branch
displacer
parents: 489
diff changeset
   205
     PathPrefix:= ParamStr(11);
adf1aee202c6 merge fixes from branch
displacer
parents: 489
diff changeset
   206
     cShowFPS:= ParamStr(12) = '1';
529
812682c1ab62 Option for alternative damage tags
unc0rr
parents: 510
diff changeset
   207
     cAltDamage:= ParamStr(13) = '1';
949
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 947
diff changeset
   208
     UserNick:= DecodeBase64(ParamStr(14));
1128
9b3f42bf4eef Add an option to engine for turning music off
unc0rr
parents: 1127
diff changeset
   209
     isMusicEnabled:= ParamStr(15) = '1';
1812
3d4692e825e7 'Reduce quality' patch by nemo
unc0rr
parents: 1807
diff changeset
   210
     cReducedQuality:= ParamStr(16) = '1';
267
bf7c1503f569 Engine gets Data path from frontend
unc0rr
parents: 208
diff changeset
   211
     for p:= Succ(Low(TPathType)) to High(TPathType) do
949
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 947
diff changeset
   212
         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
   213
     end;
497
adf1aee202c6 merge fixes from branch
displacer
parents: 489
diff changeset
   214
  3: begin
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 497
diff changeset
   215
     val(ParamStr(2), ipcPort);
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   216
     GameType:= gmtLandPreview;
497
adf1aee202c6 merge fixes from branch
displacer
parents: 489
diff changeset
   217
     if ParamStr(3) <> 'landpreview' then OutError(errmsgShouldntRun, true);
1888
e76274ce7365 Add an ability to run engine without IPC connection.
unc0rr
parents: 1825
diff changeset
   218
     end;
1892
fddc1201df25 Some tweaks by nemo
unc0rr
parents: 1888
diff changeset
   219
 14: begin
1888
e76274ce7365 Add an ability to run engine without IPC connection.
unc0rr
parents: 1825
diff changeset
   220
     PathPrefix:= ParamStr(1);
e76274ce7365 Add an ability to run engine without IPC connection.
unc0rr
parents: 1825
diff changeset
   221
     recordFileName:= ParamStr(2);
1892
fddc1201df25 Some tweaks by nemo
unc0rr
parents: 1888
diff changeset
   222
     val(ParamStr(3), cScreenWidth);
fddc1201df25 Some tweaks by nemo
unc0rr
parents: 1888
diff changeset
   223
     val(ParamStr(4), cScreenHeight);
fddc1201df25 Some tweaks by nemo
unc0rr
parents: 1888
diff changeset
   224
     cInitWidth:= cScreenWidth;
fddc1201df25 Some tweaks by nemo
unc0rr
parents: 1888
diff changeset
   225
     cInitHeight:= cScreenHeight;
fddc1201df25 Some tweaks by nemo
unc0rr
parents: 1888
diff changeset
   226
     cBitsStr:= ParamStr(5);
fddc1201df25 Some tweaks by nemo
unc0rr
parents: 1888
diff changeset
   227
     val(cBitsStr, cBits);
fddc1201df25 Some tweaks by nemo
unc0rr
parents: 1888
diff changeset
   228
     cFullScreen:= ParamStr(6) = '1';
fddc1201df25 Some tweaks by nemo
unc0rr
parents: 1888
diff changeset
   229
     isSoundEnabled:= ParamStr(7) = '1';
fddc1201df25 Some tweaks by nemo
unc0rr
parents: 1888
diff changeset
   230
     cLocaleFName:= ParamStr(8);
fddc1201df25 Some tweaks by nemo
unc0rr
parents: 1888
diff changeset
   231
     val(ParamStr(9), cInitVolume);
fddc1201df25 Some tweaks by nemo
unc0rr
parents: 1888
diff changeset
   232
     val(ParamStr(10), cTimerInterval);
fddc1201df25 Some tweaks by nemo
unc0rr
parents: 1888
diff changeset
   233
     cShowFPS:= ParamStr(11) = '1';
fddc1201df25 Some tweaks by nemo
unc0rr
parents: 1888
diff changeset
   234
     cAltDamage:= ParamStr(12) = '1';
fddc1201df25 Some tweaks by nemo
unc0rr
parents: 1888
diff changeset
   235
     isMusicEnabled:= ParamStr(13) = '1';
fddc1201df25 Some tweaks by nemo
unc0rr
parents: 1888
diff changeset
   236
     cReducedQuality:= ParamStr(14) = '1';
1888
e76274ce7365 Add an ability to run engine without IPC connection.
unc0rr
parents: 1825
diff changeset
   237
     for p:= Succ(Low(TPathType)) to High(TPathType) do
e76274ce7365 Add an ability to run engine without IPC connection.
unc0rr
parents: 1825
diff changeset
   238
         if p <> ptMapCurrent then Pathz[p]:= PathPrefix + '/' + Pathz[p]
e76274ce7365 Add an ability to run engine without IPC connection.
unc0rr
parents: 1825
diff changeset
   239
     end;
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   240
   else
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   241
   OutError(errmsgShouldntRun, true)
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   242
   end
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   243
end;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   244
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   245
procedure ShowMainWindow;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   246
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
   247
if cFullScreen then ParseCommand('fullscr 1', true)
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
   248
               else ParseCommand('fullscr 0', true);
281
5b483aa9f2ab Pause support (mouse cursor is released when the game is paused)
unc0rr
parents: 271
diff changeset
   249
SDL_ShowCursor(0)
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   250
end;
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   251
160
207f520b9e83 Soma small fixes + new land template
unc0rr
parents: 159
diff changeset
   252
///////////////
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   253
procedure Game;
205
8d9aff55e6ab - Set version to 0.8
unc0rr
parents: 200
diff changeset
   254
var s: shortstring;
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   255
begin
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   256
WriteToConsole('Init SDL... ');
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   257
SDLTry(SDL_Init(SDL_INIT_VIDEO) >= 0, true);
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   258
WriteLnToConsole(msgOK);
753
40fc0deb388f Start conversion to OpenGL rendering
unc0rr
parents: 720
diff changeset
   259
377
d9b88dbdf5a9 Support unicode input for chat
unc0rr
parents: 371
diff changeset
   260
SDL_EnableUNICODE(1);
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   261
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   262
WriteToConsole('Init SDL_ttf... ');
200
a36102728776 Small fixes
unc0rr
parents: 188
diff changeset
   263
SDLTry(TTF_Init <> -1, true);
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   264
WriteLnToConsole(msgOK);
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   265
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   266
ShowMainWindow;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   267
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   268
InitKbdKeyTable;
1888
e76274ce7365 Add an ability to run engine without IPC connection.
unc0rr
parents: 1825
diff changeset
   269
e76274ce7365 Add an ability to run engine without IPC connection.
unc0rr
parents: 1825
diff changeset
   270
if recordFileName = '' then InitIPC;
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   271
WriteLnToConsole(msgGettingConfig);
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 79
diff changeset
   272
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 79
diff changeset
   273
LoadLocale(Pathz[ptLocale] + '/' + cLocaleFName);
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 79
diff changeset
   274
1888
e76274ce7365 Add an ability to run engine without IPC connection.
unc0rr
parents: 1825
diff changeset
   275
if recordFileName = '' then
e76274ce7365 Add an ability to run engine without IPC connection.
unc0rr
parents: 1825
diff changeset
   276
	SendIPCAndWaitReply('C')        // ask for game config
e76274ce7365 Add an ability to run engine without IPC connection.
unc0rr
parents: 1825
diff changeset
   277
else
e76274ce7365 Add an ability to run engine without IPC connection.
unc0rr
parents: 1825
diff changeset
   278
	LoadRecordFromFile(recordFileName);
205
8d9aff55e6ab - Set version to 0.8
unc0rr
parents: 200
diff changeset
   279
8d9aff55e6ab - Set version to 0.8
unc0rr
parents: 200
diff changeset
   280
s:= 'eproto ' + inttostr(cNetProtoVersion);
8d9aff55e6ab - Set version to 0.8
unc0rr
parents: 200
diff changeset
   281
SendIPCRaw(@s[0], Length(s) + 1); // send proto version
8d9aff55e6ab - Set version to 0.8
unc0rr
parents: 200
diff changeset
   282
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   283
InitTeams;
288
929c44745fd9 Ammo schemes and ammo stores support in engine
unc0rr
parents: 281
diff changeset
   284
AssignStores;
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   285
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   286
if isSoundEnabled then InitSound;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   287
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   288
StoreInit;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   289
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   290
isDeveloperMode:= false;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   291
55
e09f7c952a40 Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents: 54
diff changeset
   292
TryDo(InitStepsFlags = cifAllInited,
e09f7c952a40 Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents: 54
diff changeset
   293
      '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
   294
      true);
e09f7c952a40 Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents: 54
diff changeset
   295
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   296
MainLoop
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   297
end;
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   298
160
207f520b9e83 Soma small fixes + new land template
unc0rr
parents: 159
diff changeset
   299
/////////////////////////
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   300
procedure GenLandPreview;
566
1c1cb593cb81 Save some memory
unc0rr
parents: 565
diff changeset
   301
var Preview: TPreview;
1791
7c9d645d2591 Fix passing hedgehogs number from engine to frontend
unc0rr
parents: 1784
diff changeset
   302
	h: byte;
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   303
begin
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   304
InitIPC;
159
63909aecb0ed Preview stream doesn't need parsing now
unc0rr
parents: 158
diff changeset
   305
IPCWaitPongEvent;
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   306
TryDo(InitStepsFlags = cifRandomize,
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   307
      'Some parameters not set (flags = ' + inttostr(InitStepsFlags) + ')',
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   308
      true);
160
207f520b9e83 Soma small fixes + new land template
unc0rr
parents: 159
diff changeset
   309
566
1c1cb593cb81 Save some memory
unc0rr
parents: 565
diff changeset
   310
Preview:= GenPreview;
159
63909aecb0ed Preview stream doesn't need parsing now
unc0rr
parents: 158
diff changeset
   311
WriteLnToConsole('Sending preview...');
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   312
SendIPCRaw(@Preview, sizeof(Preview));
1791
7c9d645d2591 Fix passing hedgehogs number from engine to frontend
unc0rr
parents: 1784
diff changeset
   313
h:= MaxHedgehogs;
7c9d645d2591 Fix passing hedgehogs number from engine to frontend
unc0rr
parents: 1784
diff changeset
   314
SendIPCRaw(@h, sizeof(h));
159
63909aecb0ed Preview stream doesn't need parsing now
unc0rr
parents: 158
diff changeset
   315
WriteLnToConsole('Preview sent, disconnect');
158
e6c3223f3bca Don't synchronize after sending preview
unc0rr
parents: 155
diff changeset
   316
CloseIPC
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   317
end;
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   318
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   319
////////////////////////////////////////////////////////////////////////////////
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   320
/////////////////////////////// m a i n ////////////////////////////////////////
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   321
////////////////////////////////////////////////////////////////////////////////
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   322
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   323
begin
907
a5b0b93a39c8 Use constant generated by cmake for version string
unc0rr
parents: 905
diff changeset
   324
WriteLnToConsole('-= Hedgewars ' + cVersionString + ' =-');
720
97a9d67d5c3e - Add 'Delete' button to demos and saves pages
unc0rr
parents: 619
diff changeset
   325
WriteLnToConsole('   -= by unC0Rr =-   ');
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   326
GetParams;
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   327
Randomize;
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   328
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   329
if GameType = gmtLandPreview then GenLandPreview
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   330
                             else Game
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   331
end.