hedgewars/hwengine.pas
author koda
Sun, 20 Dec 2009 20:08:17 +0000
changeset 2667 d9201436c6cf
parent 2663 d53918cd22bb
child 2669 4eec706e86b0
permissions -rw-r--r--
binding typo
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
2599
c7153d2348f3 move compiler directives to standard pascal
koda
parents: 2591
diff changeset
    19
{$INCLUDE "options.inc"}
2587
0dfa56a8513c fix a segfault in the iphone simulator by moving options.inc at the beginning of the file
koda
parents: 2586
diff changeset
    20
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    21
program hwengine;
2630
079ef82eac75 revamped file access and debug display
koda
parents: 2603
diff changeset
    22
uses	SDLh in 'SDLh.pas',
2152
a2811690da1b Patch by koda:
unc0rr
parents: 2145
diff changeset
    23
{$IFDEF GLES11}
1906
644f93d8f148 Apply koda's OpenGL ES compatibility patch
unc0rr
parents: 1892
diff changeset
    24
	gles11,
644f93d8f148 Apply koda's OpenGL ES compatibility patch
unc0rr
parents: 1892
diff changeset
    25
{$ELSE}
1524
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    26
	GL,
1906
644f93d8f148 Apply koda's OpenGL ES compatibility patch
unc0rr
parents: 1892
diff changeset
    27
{$ENDIF}
1524
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    28
	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
    29
	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
    30
	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
    31
	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
    32
	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
    33
	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
    34
	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
    35
	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
    36
	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
    37
	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
    38
	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
    39
	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
    40
	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
    41
	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
    42
	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
    43
	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
    44
	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
    45
	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
    46
	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
    47
	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
    48
	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
    49
	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
    50
	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
    51
	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
    52
	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
    53
	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
    54
	uStats in 'uStats.pas',
1807
795f97007833 Split land texture into small ones:
unc0rr
parents: 1791
diff changeset
    55
	uChat in 'uChat.pas',
2008
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
    56
	uLandTexture in 'uLandTexture.pas';
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    57
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    58
// also: GSHandlers.inc
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    59
//       CCHandlers.inc
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    60
//       HHHandlers.inc
357
165a040e4cfa - Fix Blow Torch and Air Attack
unc0rr
parents: 355
diff changeset
    61
//       SinTable.inc
271
f2f9a3d5b441 Protocol version sets in CMake
unc0rr
parents: 268
diff changeset
    62
//       proto.inc
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    63
1888
e76274ce7365 Add an ability to run engine without IPC connection.
unc0rr
parents: 1825
diff changeset
    64
var recordFileName : shortstring = '';
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    65
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    66
procedure OnDestroy; forward;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    67
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    68
////////////////////////////////
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 357
diff changeset
    69
procedure DoTimer(Lag: LongInt);
2243
b4764993f833 additional touch support and nemo's reduced land array size
koda
parents: 2191
diff changeset
    70
{$IFNDEF IPHONEOS}
1080
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
    71
var s: string;
2243
b4764993f833 additional touch support and nemo's reduced land array size
koda
parents: 2191
diff changeset
    72
{$ENDIF}
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    73
begin
564
17fb45c670c1 Finalize basic playlists implementation
unc0rr
parents: 529
diff changeset
    74
inc(RealTicks, Lag);
17fb45c670c1 Finalize basic playlists implementation
unc0rr
parents: 529
diff changeset
    75
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
    76
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
    77
	gsLandGen: begin
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    78
			GenMap;
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    79
			GameState:= gsStart;
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    80
			end;
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    81
	gsStart: begin
1784
dfe9bafb4590 Apply nemo's patch polished by me:
unc0rr
parents: 1651
diff changeset
    82
			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
    83
			AddClouds;
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    84
			AssignHHCoords;
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    85
			AddMiscGears;
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    86
			StoreLoad;
2428
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2413
diff changeset
    87
			InitWorld;
1524
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    88
			ResetKbd;
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    89
			SoundLoad;
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    90
			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
    91
				begin
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    92
				isSEBackup:= isSoundEnabled;
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    93
				isSoundEnabled:= false
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    94
				end;
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    95
			FinishProgress;
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    96
			PlayMusic;
2162
2bce91404d49 - Implement zoom-in and zoom-out
unc0rr
parents: 2161
diff changeset
    97
			SetScale(zoom);
1524
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    98
			GameState:= gsGame
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
    99
			end;
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
   100
	gsConfirm,
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
   101
	gsGame: begin
1645
f010d68adbb7 Fix two cursor bugs
unc0rr
parents: 1524
diff changeset
   102
			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
   103
			ProcessKbd;
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
   104
			DoGameTick(Lag);
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
   105
			ProcessVisualGears(Lag);
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
   106
			end;
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
   107
	gsChat: begin
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
   108
			DrawWorld(Lag);
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
   109
			DoGameTick(Lag);
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
   110
			ProcessVisualGears(Lag);
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
   111
			end;
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
   112
	gsExit: begin
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
   113
			OnDestroy;
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
   114
			end;
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
   115
	end;
564
17fb45c670c1 Finalize basic playlists implementation
unc0rr
parents: 529
diff changeset
   116
753
40fc0deb388f Start conversion to OpenGL rendering
unc0rr
parents: 720
diff changeset
   117
SDL_GL_SwapBuffers();
2171
8208946331ba Smaxx refactor of LoadImage to use flags, iphone changes by koda (mostly use of rgba instead of rgb)
nemo
parents: 2162
diff changeset
   118
{$IFNDEF IPHONEOS}
2633
9eb131794a6e trailing mods from previous commit
koda
parents: 2630
diff changeset
   119
// not going to make captures on the iPhone
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   120
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
   121
	begin
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
   122
	flagMakeCapture:= false;
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
   123
	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
   124
	WriteLnToConsole('Saving ' + s);
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
   125
	MakeScreenshot(s);
5a652a465559 Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents: 1128
diff changeset
   126
//	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
   127
	end;
2171
8208946331ba Smaxx refactor of LoadImage to use flags, iphone changes by koda (mostly use of rgba instead of rgb)
nemo
parents: 2162
diff changeset
   128
{$ENDIF}
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   129
end;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   130
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   131
////////////////////
79
29b477319854 - New test map
unc0rr
parents: 74
diff changeset
   132
procedure OnDestroy;
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   133
begin
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   134
{$IFDEF DEBUGFILE}AddFileLog('Freeing resources...');{$ENDIF}
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   135
if isSoundEnabled then ReleaseSound;
619
758da3d985fa - Update protocol doc
unc0rr
parents: 611
diff changeset
   136
StoreRelease;
1807
795f97007833 Split land texture into small ones:
unc0rr
parents: 1791
diff changeset
   137
FreeLand;
619
758da3d985fa - Update protocol doc
unc0rr
parents: 611
diff changeset
   138
SendKB;
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   139
CloseIPC;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   140
TTF_Quit;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   141
SDL_Quit;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   142
halt
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   143
end;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   144
1120
eb5a9f86f9c6 Add ability to resize engine's window
unc0rr
parents: 1097
diff changeset
   145
////////////////////////////////
eb5a9f86f9c6 Add ability to resize engine's window
unc0rr
parents: 1097
diff changeset
   146
procedure Resize(w, h: LongInt);
eb5a9f86f9c6 Add ability to resize engine's window
unc0rr
parents: 1097
diff changeset
   147
begin
eb5a9f86f9c6 Add ability to resize engine's window
unc0rr
parents: 1097
diff changeset
   148
cScreenWidth:= w;
eb5a9f86f9c6 Add ability to resize engine's window
unc0rr
parents: 1097
diff changeset
   149
cScreenHeight:= h;
eb5a9f86f9c6 Add ability to resize engine's window
unc0rr
parents: 1097
diff changeset
   150
if cFullScreen then
eb5a9f86f9c6 Add ability to resize engine's window
unc0rr
parents: 1097
diff changeset
   151
	ParseCommand('/fullscr 1', true)
eb5a9f86f9c6 Add ability to resize engine's window
unc0rr
parents: 1097
diff changeset
   152
else
eb5a9f86f9c6 Add ability to resize engine's window
unc0rr
parents: 1097
diff changeset
   153
	ParseCommand('/fullscr 0', true);
eb5a9f86f9c6 Add ability to resize engine's window
unc0rr
parents: 1097
diff changeset
   154
end;
eb5a9f86f9c6 Add ability to resize engine's window
unc0rr
parents: 1097
diff changeset
   155
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   156
///////////////////
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   157
procedure MainLoop;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   158
var PrevTime,
188
a7c2a61524c2 Cardinal -> Longword
unc0rr
parents: 183
diff changeset
   159
    CurrTime: Longword;
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   160
    event: TSDL_Event;
2591
c6597b65caea other controls implementation + sdlh revisited (once again)
koda
parents: 2590
diff changeset
   161
{$IFDEF TOUCHINPUT}
2579
e5e4ebf528b5 more updates on touch input/control
koda
parents: 2577
diff changeset
   162
type TDirection = (nodir, left, right);
2591
c6597b65caea other controls implementation + sdlh revisited (once again)
koda
parents: 2590
diff changeset
   163
var x, y, dx, dy, mouseState: LongInt;
c6597b65caea other controls implementation + sdlh revisited (once again)
koda
parents: 2590
diff changeset
   164
    tiltValue: LongInt;
2590
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   165
    direction: TDirection = nodir;
2591
c6597b65caea other controls implementation + sdlh revisited (once again)
koda
parents: 2590
diff changeset
   166
    movedbybuttons: boolean = false;
2569
6f77dd38294a ifdefs all the way
koda
parents: 2568
diff changeset
   167
{$ENDIF}
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   168
begin
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   169
PrevTime:= SDL_GetTicks;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   170
repeat
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   171
while SDL_PollEvent(@event) <> 0 do
2590
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   172
{$IFDEF TOUCHINPUT}
2591
c6597b65caea other controls implementation + sdlh revisited (once again)
koda
parents: 2590
diff changeset
   173
if (direction <> nodir) and (movedbybuttons = true) then
2590
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   174
begin
2600
7b21daf84933 revamped SDLh.pas
koda
parents: 2599
diff changeset
   175
	WriteLnToConsole('* Hedgehog moving *');
2590
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   176
        uKeys.isWalking:= true;
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   177
        if direction = left then uKeys.leftKey:= true
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   178
        else if direction = right then uKeys.rightKey:= true;
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   179
end
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   180
else uKeys.isWalking:= false;
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   181
{$ENDIF}
1120
eb5a9f86f9c6 Add ability to resize engine's window
unc0rr
parents: 1097
diff changeset
   182
	case event.type_ of
2586
204e6b2885bc added little/big endian checks, added symbol for touch input, simplified iphoneos definitions
koda
parents: 2581
diff changeset
   183
{$IFDEF SDL13}
2390
57fb33ab04a4 converts some gl calls to gles
koda
parents: 2379
diff changeset
   184
                SDL_WINDOWEVENT:
57fb33ab04a4 converts some gl calls to gles
koda
parents: 2379
diff changeset
   185
{$ELSE}
1120
eb5a9f86f9c6 Add ability to resize engine's window
unc0rr
parents: 1097
diff changeset
   186
		SDL_KEYDOWN: if GameState = gsChat then KeyPressChat(event.key.keysym.unicode);
2390
57fb33ab04a4 converts some gl calls to gles
koda
parents: 2379
diff changeset
   187
                SDL_ACTIVEEVENT:
57fb33ab04a4 converts some gl calls to gles
koda
parents: 2379
diff changeset
   188
{$ENDIF}
57fb33ab04a4 converts some gl calls to gles
koda
parents: 2379
diff changeset
   189
                        if (event.active.state and SDL_APPINPUTFOCUS) <> 0 then
1120
eb5a9f86f9c6 Add ability to resize engine's window
unc0rr
parents: 1097
diff changeset
   190
				cHasFocus:= event.active.gain = 1;
1127
7e1b94a0fc1f - Disable ability to resize window
unc0rr
parents: 1121
diff changeset
   191
		//SDL_VIDEORESIZE: Resize(max(event.resize.w, 600), max(event.resize.h, 450));
2586
204e6b2885bc added little/big endian checks, added symbol for touch input, simplified iphoneos definitions
koda
parents: 2581
diff changeset
   192
{$IFDEF TOUCHINPUT}
2590
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   193
                SDL_MOUSEMOTION: begin
2601
21ed7cec1fa2 fix iphone build
koda
parents: 2600
diff changeset
   194
{$IFDEF DEBUGFILE}
21ed7cec1fa2 fix iphone build
koda
parents: 2600
diff changeset
   195
                        AddFileLog('*********************************************       motion');
21ed7cec1fa2 fix iphone build
koda
parents: 2600
diff changeset
   196
{$ENDIF}
2590
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   197
                        mouseState:= SDL_GetMouseState(0, @x, @y);
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   198
                        SDL_GetRelativeMouseState(0, @dx, @dy);
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   199
                        
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   200
                        direction:= nodir;
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   201
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   202
                        if boolean(mouseState) then
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   203
                        begin
2600
7b21daf84933 revamped SDLh.pas
koda
parents: 2599
diff changeset
   204
{$IFDEF DEBUGFILE}		
2590
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   205
                                AddFileLog('x: ' + inttostr(x) + ' y: ' + inttostr(y) + ' dx: ' + inttostr(dx) + ' dy: ' + inttostr(dy));
2600
7b21daf84933 revamped SDLh.pas
koda
parents: 2599
diff changeset
   206
{$ENDIF}
2590
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   207
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   208
                                {* zoom slider *}
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   209
                                if (x <= 50) and (y <= 430) and (y > 50) then 
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   210
                                begin
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   211
                                        if (dy > 0) then uKeys.wheelDown:= true
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   212
                                        else if (dy < 0) then uKeys.wheelUp:= true;
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   213
                                end;
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   214
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   215
                                {* aim slider *}
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   216
                                if (x > 270) and (y > 50) and (y <= 430) then
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   217
                                begin
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   218
                                        if (dy > 0) then uKeys.downKey:= true
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   219
                                        else if (dy < 0) then uKeys.upKey:= true;
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   220
                                end;
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   221
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   222
                                {* switch *}
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   223
                                if (x > 50) and (x <= 270) and (y > 400) then
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   224
                                begin
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   225
                                        if (dy <> 0) then uKeys.tabKey:= true
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   226
                                end;
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   227
                        end;
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   228
                end;
2567
02ff5f9510b5 WE HAVE TOUCH INPUT
koda
parents: 2428
diff changeset
   229
        {*MoveCamera is in uWord.pas -- conflicts with other commands*}
02ff5f9510b5 WE HAVE TOUCH INPUT
koda
parents: 2428
diff changeset
   230
                SDL_MOUSEBUTTONDOWN: begin
2601
21ed7cec1fa2 fix iphone build
koda
parents: 2600
diff changeset
   231
{$IFDEF DEBUGFILE}
21ed7cec1fa2 fix iphone build
koda
parents: 2600
diff changeset
   232
                        AddFileLog('*********************************************       touch down');
21ed7cec1fa2 fix iphone build
koda
parents: 2600
diff changeset
   233
{$ENDIF}
2590
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   234
                        mouseState:= SDL_GetMouseState(0, @x, @y);                       
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   235
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   236
                        {* attack *}
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   237
                        if (x > 50) and (x <= 270) and (y <= 50) then
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   238
                        begin
2600
7b21daf84933 revamped SDLh.pas
koda
parents: 2599
diff changeset
   239
                                WriteLnToConsole('Space DOWN -- x: ' + inttostr(x) + ' y: ' + inttostr(y));
2590
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   240
                                uKeys.spaceKey:= true;
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   241
                                uKeys.isAttacking:= true;
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   242
                        end;
2579
e5e4ebf528b5 more updates on touch input/control
koda
parents: 2577
diff changeset
   243
2590
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   244
                        if (x <= 50) and (y <= 50) then
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   245
                        begin
2600
7b21daf84933 revamped SDLh.pas
koda
parents: 2599
diff changeset
   246
                                WriteLnToConsole('Left Arrow Key DOWN -- x: ' + inttostr(x) + ' y: ' + inttostr(y));
2590
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   247
                                direction:= left;
2591
c6597b65caea other controls implementation + sdlh revisited (once again)
koda
parents: 2590
diff changeset
   248
				movedbybuttons:= true;
2590
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   249
                        end;
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   250
                        
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   251
                        if (x > 270) and (y <= 50) then
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   252
                        begin
2600
7b21daf84933 revamped SDLh.pas
koda
parents: 2599
diff changeset
   253
                                WriteLnToConsole('Right Arrow Key DOWN -- x: ' + inttostr(x) + ' y: ' + inttostr(y));
2590
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   254
                                direction:= right;
2591
c6597b65caea other controls implementation + sdlh revisited (once again)
koda
parents: 2590
diff changeset
   255
				movedbybuttons:= true;
2590
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   256
                        end;
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   257
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   258
                        {* high jump *}                        
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   259
                        if (x > 160) and (x <= 270) and (y > 400) then
2577
275c1b068f68 WE HAVE HOGS MOVING ON IPHONE
koda
parents: 2569
diff changeset
   260
                        begin
275c1b068f68 WE HAVE HOGS MOVING ON IPHONE
koda
parents: 2569
diff changeset
   261
{$IFDEF DEBUGFILE}
2590
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   262
                                AddFileLog('Backspace -- x: ' + inttostr(x) + ' y: ' + inttostr(y));
2577
275c1b068f68 WE HAVE HOGS MOVING ON IPHONE
koda
parents: 2569
diff changeset
   263
{$ENDIF}
2590
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   264
                                uKeys.backspaceKey:= true;
2580
aeccc8f51d3f completes touch input/control (problems with moving camera)
koda
parents: 2579
diff changeset
   265
                        end;
2590
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   266
                end;
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   267
                SDL_MOUSEBUTTONUP: begin
2601
21ed7cec1fa2 fix iphone build
koda
parents: 2600
diff changeset
   268
{$IFDEF DEBUGFILE}
2590
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   269
                        AddFileLog('*********************************************       touch up');
2601
21ed7cec1fa2 fix iphone build
koda
parents: 2600
diff changeset
   270
{$ENDIF}
2590
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   271
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   272
                        mouseState:= SDL_GetMouseState(0, @x, @y);
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   273
                        uKeys.leftClick:= true;
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   274
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   275
                        {* open ammo menu *}
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   276
                        if (y > 430) and (x > 270) then
2580
aeccc8f51d3f completes touch input/control (problems with moving camera)
koda
parents: 2579
diff changeset
   277
                        begin
aeccc8f51d3f completes touch input/control (problems with moving camera)
koda
parents: 2579
diff changeset
   278
{$IFDEF DEBUGFILE}
2590
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   279
                                AddFileLog('Right Click -- x: ' + inttostr(x) + ' y: ' + inttostr(y) );
2580
aeccc8f51d3f completes touch input/control (problems with moving camera)
koda
parents: 2579
diff changeset
   280
{$ENDIF}
2590
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   281
                                uKeys.rightClick:= true;
2567
02ff5f9510b5 WE HAVE TOUCH INPUT
koda
parents: 2428
diff changeset
   282
                        end;
2590
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   283
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   284
                        {* long jump *}                        
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   285
                        if (x > 50) and (x <= 160) and (y > 400) then
2567
02ff5f9510b5 WE HAVE TOUCH INPUT
koda
parents: 2428
diff changeset
   286
                        begin
2580
aeccc8f51d3f completes touch input/control (problems with moving camera)
koda
parents: 2579
diff changeset
   287
{$IFDEF DEBUGFILE}
2590
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   288
                                AddFileLog('Enter -- x: ' + inttostr(x) + ' y: ' + inttostr(y));
2580
aeccc8f51d3f completes touch input/control (problems with moving camera)
koda
parents: 2579
diff changeset
   289
{$ENDIF}
2590
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   290
                                uKeys.enterKey:= true;
2580
aeccc8f51d3f completes touch input/control (problems with moving camera)
koda
parents: 2579
diff changeset
   291
                        end;
2590
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   292
2580
aeccc8f51d3f completes touch input/control (problems with moving camera)
koda
parents: 2579
diff changeset
   293
                        {* reset zoom *}
aeccc8f51d3f completes touch input/control (problems with moving camera)
koda
parents: 2579
diff changeset
   294
                        if (x <= 50) and (y > 430) then
aeccc8f51d3f completes touch input/control (problems with moving camera)
koda
parents: 2579
diff changeset
   295
                        begin
aeccc8f51d3f completes touch input/control (problems with moving camera)
koda
parents: 2579
diff changeset
   296
{$IFDEF DEBUGFILE}
aeccc8f51d3f completes touch input/control (problems with moving camera)
koda
parents: 2579
diff changeset
   297
                                AddFileLog('Middle Click -- x: ' + inttostr(x) + ' y: ' + inttostr(y));
aeccc8f51d3f completes touch input/control (problems with moving camera)
koda
parents: 2579
diff changeset
   298
{$ENDIF}
aeccc8f51d3f completes touch input/control (problems with moving camera)
koda
parents: 2579
diff changeset
   299
                                uKeys.middleClick:= true;
aeccc8f51d3f completes touch input/control (problems with moving camera)
koda
parents: 2579
diff changeset
   300
                        end;
2579
e5e4ebf528b5 more updates on touch input/control
koda
parents: 2577
diff changeset
   301
2590
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   302
                        {* end movement and attack *}
2577
275c1b068f68 WE HAVE HOGS MOVING ON IPHONE
koda
parents: 2569
diff changeset
   303
{$IFDEF DEBUGFILE}
2590
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   304
                        AddFileLog('Arrow Keys UP | Space UP -- x: ' + inttostr(x) + ' y: ' + inttostr(y) );
2577
275c1b068f68 WE HAVE HOGS MOVING ON IPHONE
koda
parents: 2569
diff changeset
   305
{$ENDIF}
2590
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   306
                        direction:= nodir;
2591
c6597b65caea other controls implementation + sdlh revisited (once again)
koda
parents: 2590
diff changeset
   307
			movedbybuttons:= false;
2590
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   308
                        uKeys.isAttacking:= false;
2591
c6597b65caea other controls implementation + sdlh revisited (once again)
koda
parents: 2590
diff changeset
   309
		end;
2586
204e6b2885bc added little/big endian checks, added symbol for touch input, simplified iphoneos definitions
koda
parents: 2581
diff changeset
   310
{$ENDIF}
204e6b2885bc added little/big endian checks, added symbol for touch input, simplified iphoneos definitions
koda
parents: 2581
diff changeset
   311
{$IFDEF IPHONEOS}
2630
079ef82eac75 revamped file access and debug display
koda
parents: 2603
diff changeset
   312
(*		SDL_JOYAXISMOTION: begin
2580
aeccc8f51d3f completes touch input/control (problems with moving camera)
koda
parents: 2579
diff changeset
   313
                {* axis 0 = left and right;
aeccc8f51d3f completes touch input/control (problems with moving camera)
koda
parents: 2579
diff changeset
   314
                   axis 1 = up and down;
aeccc8f51d3f completes touch input/control (problems with moving camera)
koda
parents: 2579
diff changeset
   315
                   axis 2 = back and forth; *}
2591
c6597b65caea other controls implementation + sdlh revisited (once again)
koda
parents: 2590
diff changeset
   316
2600
7b21daf84933 revamped SDLh.pas
koda
parents: 2599
diff changeset
   317
                        WriteLnToConsole('*********************************************       accelerometer');
2591
c6597b65caea other controls implementation + sdlh revisited (once again)
koda
parents: 2590
diff changeset
   318
			
2633
9eb131794a6e trailing mods from previous commit
koda
parents: 2630
diff changeset
   319
			tiltValue:= SDL_JoystickGetAxis(uKeys.theJoystick, 0);
2591
c6597b65caea other controls implementation + sdlh revisited (once again)
koda
parents: 2590
diff changeset
   320
c6597b65caea other controls implementation + sdlh revisited (once again)
koda
parents: 2590
diff changeset
   321
                        if (CurrentTeam <> nil) then
2577
275c1b068f68 WE HAVE HOGS MOVING ON IPHONE
koda
parents: 2569
diff changeset
   322
                        begin
2600
7b21daf84933 revamped SDLh.pas
koda
parents: 2599
diff changeset
   323
{$IFDEF DEBUGFILE}
2591
c6597b65caea other controls implementation + sdlh revisited (once again)
koda
parents: 2590
diff changeset
   324
				AddFileLog('Joystick: 0; Axis: 0; Value: ' + inttostr(tiltValue));
2600
7b21daf84933 revamped SDLh.pas
koda
parents: 2599
diff changeset
   325
{$ENDIF}
2591
c6597b65caea other controls implementation + sdlh revisited (once again)
koda
parents: 2590
diff changeset
   326
c6597b65caea other controls implementation + sdlh revisited (once again)
koda
parents: 2590
diff changeset
   327
                                if tiltValue > 1500 then
2577
275c1b068f68 WE HAVE HOGS MOVING ON IPHONE
koda
parents: 2569
diff changeset
   328
                                begin
2591
c6597b65caea other controls implementation + sdlh revisited (once again)
koda
parents: 2590
diff changeset
   329
					uKeys.rightKey:= true;
c6597b65caea other controls implementation + sdlh revisited (once again)
koda
parents: 2590
diff changeset
   330
					uKeys.isWalking:= true;
2580
aeccc8f51d3f completes touch input/control (problems with moving camera)
koda
parents: 2579
diff changeset
   331
                                end
aeccc8f51d3f completes touch input/control (problems with moving camera)
koda
parents: 2579
diff changeset
   332
                                else
2591
c6597b65caea other controls implementation + sdlh revisited (once again)
koda
parents: 2590
diff changeset
   333
                                        if tiltValue <= -1500 then
2580
aeccc8f51d3f completes touch input/control (problems with moving camera)
koda
parents: 2579
diff changeset
   334
                                        begin 
2591
c6597b65caea other controls implementation + sdlh revisited (once again)
koda
parents: 2590
diff changeset
   335
						uKeys.leftKey:= true;
c6597b65caea other controls implementation + sdlh revisited (once again)
koda
parents: 2590
diff changeset
   336
						uKeys.isWalking:= true;
2579
e5e4ebf528b5 more updates on touch input/control
koda
parents: 2577
diff changeset
   337
                                        end
e5e4ebf528b5 more updates on touch input/control
koda
parents: 2577
diff changeset
   338
                                        else
2591
c6597b65caea other controls implementation + sdlh revisited (once again)
koda
parents: 2590
diff changeset
   339
                                                if (tiltValue  > -1500) and (tiltValue <= 1500) and (movedbybuttons = false) then uKeys.isWalking:= false;  
2577
275c1b068f68 WE HAVE HOGS MOVING ON IPHONE
koda
parents: 2569
diff changeset
   340
                        end;
2630
079ef82eac75 revamped file access and debug display
koda
parents: 2603
diff changeset
   341
                end;*)
2567
02ff5f9510b5 WE HAVE TOUCH INPUT
koda
parents: 2428
diff changeset
   342
{$ELSE}
2379
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   343
		SDL_MOUSEBUTTONDOWN: if event.button.button = SDL_BUTTON_WHEELDOWN then uKeys.wheelDown:= true;
2667
d9201436c6cf binding typo
koda
parents: 2663
diff changeset
   344
		SDL_MOUSEBUTTONUP: if event.button.button = SDL_BUTTON_WHEELUP then uKeys.wheelUp:= true;
2591
c6597b65caea other controls implementation + sdlh revisited (once again)
koda
parents: 2590
diff changeset
   345
		SDL_JOYAXISMOTION: ControllerAxisEvent(event.jaxis.which, event.jaxis.axis, event.jaxis.value);
c6597b65caea other controls implementation + sdlh revisited (once again)
koda
parents: 2590
diff changeset
   346
		SDL_JOYHATMOTION: ControllerHatEvent(event.jhat.which, event.jhat.hat, event.jhat.value);
2428
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2413
diff changeset
   347
		SDL_JOYBUTTONDOWN: ControllerButtonEvent(event.jbutton.which, event.jbutton.button, true);
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2413
diff changeset
   348
		SDL_JOYBUTTONUP: ControllerButtonEvent(event.jbutton.which, event.jbutton.button, false);
2577
275c1b068f68 WE HAVE HOGS MOVING ON IPHONE
koda
parents: 2569
diff changeset
   349
{$ENDIF}
1120
eb5a9f86f9c6 Add ability to resize engine's window
unc0rr
parents: 1097
diff changeset
   350
		SDL_QUITEV: isTerminated:= true
2590
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   351
        end;
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   352
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   353
CurrTime:= SDL_GetTicks;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   354
if PrevTime + cTimerInterval <= CurrTime then
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   355
   begin
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   356
   DoTimer(CurrTime - PrevTime);
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   357
   PrevTime:= CurrTime
434
2c6ccce17f39 Many small improvements
unc0rr
parents: 426
diff changeset
   358
   end else SDL_Delay(1);
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   359
IPCCheckSock
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   360
until isTerminated
2590
e7e87e3c67db touch control completely revamped
koda
parents: 2587
diff changeset
   361
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   362
end;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   363
2008
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   364
/////////////////////
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   365
procedure DisplayUsage;
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   366
begin
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   367
	WriteLn('Wrong argument format: correct configurations is');
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   368
	WriteLn();
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   369
	WriteLn('  hwengine <path to data folder> <path to replay file> [option]');
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   370
	WriteLn();
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   371
	WriteLn('where [option] must be specified either as');
2264
b8fff48235de documentation fix
koda
parents: 2252
diff changeset
   372
	WriteLn(' --set-video [screen width] [screen height] [color dept]');
2008
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   373
	WriteLn(' --set-audio [volume] [enable music] [enable sounds]');
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   374
	WriteLn(' --set-other [language file] [full screen] [show FPS]');
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   375
	WriteLn(' --set-multimedia [screen height] [screen width] [color dept] [volume] [enable music] [enable sounds] [language file] [full screen]');
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   376
	WriteLn(' --set-everything [screen height] [screen width] [color dept] [volume] [enable music] [enable sounds] [language file] [full screen] [show FPS] [alternate damage] [timer value] [reduced quality]');
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   377
	WriteLn();
2015
d2848d723690 koda's patch
unc0rr
parents: 2008
diff changeset
   378
	WriteLn('Read documentation online at http://www.hedgewars.org/node/1465 for more information');
d2848d723690 koda's patch
unc0rr
parents: 2008
diff changeset
   379
	halt(1);
2008
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   380
end;
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   381
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   382
////////////////////
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   383
procedure GetParams;
889
3bf9dc791f45 Some work on newhwserv
unc0rr
parents: 887
diff changeset
   384
var
267
bf7c1503f569 Engine gets Data path from frontend
unc0rr
parents: 208
diff changeset
   385
{$IFDEF DEBUGFILE}
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 357
diff changeset
   386
    i: LongInt;
267
bf7c1503f569 Engine gets Data path from frontend
unc0rr
parents: 208
diff changeset
   387
{$ENDIF}
97
e7c1df9cce2c - make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents: 81
diff changeset
   388
    p: TPathType;
e7c1df9cce2c - make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents: 81
diff changeset
   389
begin
267
bf7c1503f569 Engine gets Data path from frontend
unc0rr
parents: 208
diff changeset
   390
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   391
case ParamCount of
2392
a55dbef5cf31 Smaxx's patch fixing openal sound issues with poor card drivers
koda
parents: 2390
diff changeset
   392
 17: begin
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 497
diff changeset
   393
     val(ParamStr(2), cScreenWidth);
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 497
diff changeset
   394
     val(ParamStr(3), cScreenHeight);
1121
d595dc56b4f3 Remember initial resolution settings to use when switching to fullscreen mode
unc0rr
parents: 1120
diff changeset
   395
     cInitWidth:= cScreenWidth;
d595dc56b4f3 Remember initial resolution settings to use when switching to fullscreen mode
unc0rr
parents: 1120
diff changeset
   396
     cInitHeight:= cScreenHeight;
497
adf1aee202c6 merge fixes from branch
displacer
parents: 489
diff changeset
   397
     cBitsStr:= ParamStr(4);
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 497
diff changeset
   398
     val(cBitsStr, cBits);
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 497
diff changeset
   399
     val(ParamStr(5), ipcPort);
497
adf1aee202c6 merge fixes from branch
displacer
parents: 489
diff changeset
   400
     cFullScreen:= ParamStr(6) = '1';
adf1aee202c6 merge fixes from branch
displacer
parents: 489
diff changeset
   401
     isSoundEnabled:= ParamStr(7) = '1';
2413
d921d13a8546 fix that nasty "Pascal Internal Error" when compiling
koda
parents: 2409
diff changeset
   402
     isSoundHardware:= ParamStr(8) = '1';
2392
a55dbef5cf31 Smaxx's patch fixing openal sound issues with poor card drivers
koda
parents: 2390
diff changeset
   403
     cLocaleFName:= ParamStr(9);
a55dbef5cf31 Smaxx's patch fixing openal sound issues with poor card drivers
koda
parents: 2390
diff changeset
   404
     val(ParamStr(10), cInitVolume);
a55dbef5cf31 Smaxx's patch fixing openal sound issues with poor card drivers
koda
parents: 2390
diff changeset
   405
     val(ParamStr(11), cTimerInterval);
a55dbef5cf31 Smaxx's patch fixing openal sound issues with poor card drivers
koda
parents: 2390
diff changeset
   406
     PathPrefix:= ParamStr(12);
a55dbef5cf31 Smaxx's patch fixing openal sound issues with poor card drivers
koda
parents: 2390
diff changeset
   407
     cShowFPS:= ParamStr(13) = '1';
a55dbef5cf31 Smaxx's patch fixing openal sound issues with poor card drivers
koda
parents: 2390
diff changeset
   408
     cAltDamage:= ParamStr(14) = '1';
a55dbef5cf31 Smaxx's patch fixing openal sound issues with poor card drivers
koda
parents: 2390
diff changeset
   409
     UserNick:= DecodeBase64(ParamStr(15));
a55dbef5cf31 Smaxx's patch fixing openal sound issues with poor card drivers
koda
parents: 2390
diff changeset
   410
     isMusicEnabled:= ParamStr(16) = '1';
a55dbef5cf31 Smaxx's patch fixing openal sound issues with poor card drivers
koda
parents: 2390
diff changeset
   411
     cReducedQuality:= ParamStr(17) = '1';
267
bf7c1503f569 Engine gets Data path from frontend
unc0rr
parents: 208
diff changeset
   412
     for p:= Succ(Low(TPathType)) to High(TPathType) do
949
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 947
diff changeset
   413
         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
   414
     end;
2390
57fb33ab04a4 converts some gl calls to gles
koda
parents: 2379
diff changeset
   415
{$IFDEF IPHONEOS}
2252
03fd99dff989 accessory stuff for iphone
koda
parents: 2244
diff changeset
   416
  0: begin
2663
d53918cd22bb random updates for 10.6 and iphone builds
koda
parents: 2647
diff changeset
   417
        PathPrefix:= 'Data';
d53918cd22bb random updates for 10.6 and iphone builds
koda
parents: 2647
diff changeset
   418
        recordFileName:= 'save.hws';
2630
079ef82eac75 revamped file access and debug display
koda
parents: 2603
diff changeset
   419
        val('320', cScreenWidth);
079ef82eac75 revamped file access and debug display
koda
parents: 2603
diff changeset
   420
        val('480', cScreenHeight);
079ef82eac75 revamped file access and debug display
koda
parents: 2603
diff changeset
   421
        cInitWidth:= cScreenWidth;
079ef82eac75 revamped file access and debug display
koda
parents: 2603
diff changeset
   422
        cInitHeight:= cScreenHeight;
079ef82eac75 revamped file access and debug display
koda
parents: 2603
diff changeset
   423
        cBitsStr:= '32';
079ef82eac75 revamped file access and debug display
koda
parents: 2603
diff changeset
   424
        val(cBitsStr, cBits);
079ef82eac75 revamped file access and debug display
koda
parents: 2603
diff changeset
   425
        val('100', cInitVolume);
079ef82eac75 revamped file access and debug display
koda
parents: 2603
diff changeset
   426
        isMusicEnabled:= false;
079ef82eac75 revamped file access and debug display
koda
parents: 2603
diff changeset
   427
        isSoundEnabled:= false;
079ef82eac75 revamped file access and debug display
koda
parents: 2603
diff changeset
   428
        cLocaleFName:= 'en.txt';
079ef82eac75 revamped file access and debug display
koda
parents: 2603
diff changeset
   429
        cFullScreen:= true; //T or F is is the same here
079ef82eac75 revamped file access and debug display
koda
parents: 2603
diff changeset
   430
        cAltDamage:= false;
079ef82eac75 revamped file access and debug display
koda
parents: 2603
diff changeset
   431
        cShowFPS:= true;
079ef82eac75 revamped file access and debug display
koda
parents: 2603
diff changeset
   432
        val('8', cTimerInterval);
079ef82eac75 revamped file access and debug display
koda
parents: 2603
diff changeset
   433
        cReducedQuality:= false;
2252
03fd99dff989 accessory stuff for iphone
koda
parents: 2244
diff changeset
   434
03fd99dff989 accessory stuff for iphone
koda
parents: 2244
diff changeset
   435
        for p:= Succ(Low(TPathType)) to High(TPathType) do
2630
079ef82eac75 revamped file access and debug display
koda
parents: 2603
diff changeset
   436
                if p <> ptMapCurrent then Pathz[p]:= PathPrefix + '/' + Pathz[p]
2252
03fd99dff989 accessory stuff for iphone
koda
parents: 2244
diff changeset
   437
     end;
2390
57fb33ab04a4 converts some gl calls to gles
koda
parents: 2379
diff changeset
   438
{$ENDIF}
497
adf1aee202c6 merge fixes from branch
displacer
parents: 489
diff changeset
   439
  3: begin
498
9c8b385dc9a1 - Get rid of operator := to have GPC support
unc0rr
parents: 497
diff changeset
   440
     val(ParamStr(2), ipcPort);
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   441
     GameType:= gmtLandPreview;
497
adf1aee202c6 merge fixes from branch
displacer
parents: 489
diff changeset
   442
     if ParamStr(3) <> 'landpreview' then OutError(errmsgShouldntRun, true);
1888
e76274ce7365 Add an ability to run engine without IPC connection.
unc0rr
parents: 1825
diff changeset
   443
     end;
2008
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   444
  2: begin
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   445
		PathPrefix:= ParamStr(1);
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   446
		recordFileName:= ParamStr(2);
2376
ece7b87f1334 Strip trailing spaces
nemo
parents: 2326
diff changeset
   447
2008
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   448
		for p:= Succ(Low(TPathType)) to High(TPathType) do
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   449
			if p <> ptMapCurrent then Pathz[p]:= PathPrefix + '/' + Pathz[p]
2630
079ef82eac75 revamped file access and debug display
koda
parents: 2603
diff changeset
   450
     end;
2008
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   451
  6: begin
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   452
		PathPrefix:= ParamStr(1);
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   453
		recordFileName:= ParamStr(2);
2376
ece7b87f1334 Strip trailing spaces
nemo
parents: 2326
diff changeset
   454
2008
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   455
		if ParamStr(3) = '--set-video'	then
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   456
		begin
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   457
			val(ParamStr(4), cScreenWidth);
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   458
			val(ParamStr(5), cScreenHeight);
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   459
			cInitWidth:= cScreenWidth;
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   460
			cInitHeight:= cScreenHeight;
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   461
			cBitsStr:= ParamStr(6);
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   462
			val(cBitsStr, cBits);
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   463
		end
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   464
		else
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   465
		begin
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   466
			if ParamStr(3) = '--set-audio' then
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   467
			begin
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   468
				val(ParamStr(4), cInitVolume);
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   469
				isMusicEnabled:= ParamStr(5) = '1';
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   470
				isSoundEnabled:= ParamStr(6) = '1';
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   471
			end
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   472
			else
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   473
			begin
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   474
				if ParamStr(3) = '--set-other' then
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   475
				begin
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   476
					cLocaleFName:= ParamStr(4);
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   477
					cFullScreen:= ParamStr(5) = '1';
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   478
					cShowFPS:= ParamStr(6) = '1';
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   479
				end
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   480
				else DisplayUsage;
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   481
			end
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   482
		end;
2376
ece7b87f1334 Strip trailing spaces
nemo
parents: 2326
diff changeset
   483
2008
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   484
		for p:= Succ(Low(TPathType)) to High(TPathType) do
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   485
			if p <> ptMapCurrent then Pathz[p]:= PathPrefix + '/' + Pathz[p]
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   486
	end;
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   487
 11: begin
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   488
		PathPrefix:= ParamStr(1);
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   489
		recordFileName:= ParamStr(2);
2376
ece7b87f1334 Strip trailing spaces
nemo
parents: 2326
diff changeset
   490
2008
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   491
		if ParamStr(3) = '--set-multimedia' then
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   492
		begin
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   493
			val(ParamStr(4), cScreenWidth);
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   494
			val(ParamStr(5), cScreenHeight);
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   495
			cInitWidth:= cScreenWidth;
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   496
			cInitHeight:= cScreenHeight;
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   497
			cBitsStr:= ParamStr(6);
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   498
			val(cBitsStr, cBits);
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   499
			val(ParamStr(7), cInitVolume);
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   500
			isMusicEnabled:= ParamStr(8) = '1';
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   501
			isSoundEnabled:= ParamStr(9) = '1';
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   502
			cLocaleFName:= ParamStr(10);
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   503
			cFullScreen:= ParamStr(11) = '1';
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   504
		end
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   505
		else DisplayUsage;
2376
ece7b87f1334 Strip trailing spaces
nemo
parents: 2326
diff changeset
   506
2008
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   507
		for p:= Succ(Low(TPathType)) to High(TPathType) do
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   508
			if p <> ptMapCurrent then Pathz[p]:= PathPrefix + '/' + Pathz[p]
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   509
	end;
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   510
 15: begin
2154
3d2917be12c3 Change default output to stderr since /tmp doesn't exist under windows and is useless under iphoneos, add a couple of extra parameters
nemo
parents: 2152
diff changeset
   511
		PathPrefix:= ParamStr(1);
3d2917be12c3 Change default output to stderr since /tmp doesn't exist under windows and is useless under iphoneos, add a couple of extra parameters
nemo
parents: 2152
diff changeset
   512
		recordFileName:= ParamStr(2);
2008
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   513
		if ParamStr(3) = '--set-everything' then
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   514
		begin
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   515
			val(ParamStr(4), cScreenWidth);
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   516
			val(ParamStr(5), cScreenHeight);
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   517
			cInitWidth:= cScreenWidth;
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   518
			cInitHeight:= cScreenHeight;
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   519
			cBitsStr:= ParamStr(6);
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   520
			val(cBitsStr, cBits);
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   521
			val(ParamStr(7), cInitVolume);
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   522
			isMusicEnabled:= ParamStr(8) = '1';
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   523
			isSoundEnabled:= ParamStr(9) = '1';
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   524
			cLocaleFName:= ParamStr(10);
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   525
			cFullScreen:= ParamStr(11) = '1';
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   526
			cAltDamage:= ParamStr(12) = '1';
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   527
			cShowFPS:= ParamStr(13) = '1';
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   528
			val(ParamStr(14), cTimerInterval);
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   529
			cReducedQuality:= ParamStr(15) = '1';
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   530
		end
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   531
		else DisplayUsage;
2376
ece7b87f1334 Strip trailing spaces
nemo
parents: 2326
diff changeset
   532
2008
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   533
		for p:= Succ(Low(TPathType)) to High(TPathType) do
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   534
			if p <> ptMapCurrent then Pathz[p]:= PathPrefix + '/' + Pathz[p]
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   535
	end;
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   536
	else DisplayUsage;
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   537
	end;
2630
079ef82eac75 revamped file access and debug display
koda
parents: 2603
diff changeset
   538
079ef82eac75 revamped file access and debug display
koda
parents: 2603
diff changeset
   539
{$IFDEF DEBUGFILE}
079ef82eac75 revamped file access and debug display
koda
parents: 2603
diff changeset
   540
AddFileLog('Prefix: "' + PathPrefix +'"');
079ef82eac75 revamped file access and debug display
koda
parents: 2603
diff changeset
   541
for i:= 0 to ParamCount do
079ef82eac75 revamped file access and debug display
koda
parents: 2603
diff changeset
   542
	AddFileLog(inttostr(i) + ': ' + ParamStr(i));
079ef82eac75 revamped file access and debug display
koda
parents: 2603
diff changeset
   543
{$IFDEF IPHONEOS}
2633
9eb131794a6e trailing mods from previous commit
koda
parents: 2630
diff changeset
   544
	WriteLnToConsole('Saving debug file at: ' + get_documents_path());
2630
079ef82eac75 revamped file access and debug display
koda
parents: 2603
diff changeset
   545
{$ENDIF}
079ef82eac75 revamped file access and debug display
koda
parents: 2603
diff changeset
   546
{$ENDIF}
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   547
end;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   548
2016
73b0bcc4396d lost pieces of previous patch
unc0rr
parents: 2015
diff changeset
   549
/////////////////////////
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   550
procedure ShowMainWindow;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   551
begin
2633
9eb131794a6e trailing mods from previous commit
koda
parents: 2630
diff changeset
   552
	if cFullScreen then ParseCommand('fullscr 1', true)
9eb131794a6e trailing mods from previous commit
koda
parents: 2630
diff changeset
   553
	else ParseCommand('fullscr 0', true);
9eb131794a6e trailing mods from previous commit
koda
parents: 2630
diff changeset
   554
	SDL_ShowCursor(0)
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   555
end;
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   556
160
207f520b9e83 Soma small fixes + new land template
unc0rr
parents: 159
diff changeset
   557
///////////////
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   558
procedure Game;
205
8d9aff55e6ab - Set version to 0.8
unc0rr
parents: 200
diff changeset
   559
var s: shortstring;
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   560
begin
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   561
WriteToConsole('Init SDL... ');
2428
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2413
diff changeset
   562
SDLTry(SDL_Init(SDL_INIT_VIDEO or SDL_INIT_JOYSTICK) >= 0, true);
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   563
WriteLnToConsole(msgOK);
753
40fc0deb388f Start conversion to OpenGL rendering
unc0rr
parents: 720
diff changeset
   564
377
d9b88dbdf5a9 Support unicode input for chat
unc0rr
parents: 371
diff changeset
   565
SDL_EnableUNICODE(1);
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   566
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   567
WriteToConsole('Init SDL_ttf... ');
200
a36102728776 Small fixes
unc0rr
parents: 188
diff changeset
   568
SDLTry(TTF_Init <> -1, true);
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   569
WriteLnToConsole(msgOK);
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   570
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   571
ShowMainWindow;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   572
2428
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2413
diff changeset
   573
ControllerInit; // has to happen before InitKbdKeyTable to map keys
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   574
InitKbdKeyTable;
1888
e76274ce7365 Add an ability to run engine without IPC connection.
unc0rr
parents: 1825
diff changeset
   575
e76274ce7365 Add an ability to run engine without IPC connection.
unc0rr
parents: 1825
diff changeset
   576
if recordFileName = '' then InitIPC;
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   577
WriteLnToConsole(msgGettingConfig);
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 79
diff changeset
   578
2039
3001445b4500 Try to prevent locale problems:
unc0rr
parents: 2016
diff changeset
   579
if cLocaleFName <> 'en.txt' then
3001445b4500 Try to prevent locale problems:
unc0rr
parents: 2016
diff changeset
   580
	LoadLocale(Pathz[ptLocale] + '/en.txt');
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 79
diff changeset
   581
LoadLocale(Pathz[ptLocale] + '/' + cLocaleFName);
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 79
diff changeset
   582
1888
e76274ce7365 Add an ability to run engine without IPC connection.
unc0rr
parents: 1825
diff changeset
   583
if recordFileName = '' then
e76274ce7365 Add an ability to run engine without IPC connection.
unc0rr
parents: 1825
diff changeset
   584
	SendIPCAndWaitReply('C')        // ask for game config
e76274ce7365 Add an ability to run engine without IPC connection.
unc0rr
parents: 1825
diff changeset
   585
else
2600
7b21daf84933 revamped SDLh.pas
koda
parents: 2599
diff changeset
   586
 	LoadRecordFromFile(recordFileName);
205
8d9aff55e6ab - Set version to 0.8
unc0rr
parents: 200
diff changeset
   587
8d9aff55e6ab - Set version to 0.8
unc0rr
parents: 200
diff changeset
   588
s:= 'eproto ' + inttostr(cNetProtoVersion);
8d9aff55e6ab - Set version to 0.8
unc0rr
parents: 200
diff changeset
   589
SendIPCRaw(@s[0], Length(s) + 1); // send proto version
8d9aff55e6ab - Set version to 0.8
unc0rr
parents: 200
diff changeset
   590
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   591
InitTeams;
288
929c44745fd9 Ammo schemes and ammo stores support in engine
unc0rr
parents: 281
diff changeset
   592
AssignStores;
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   593
2600
7b21daf84933 revamped SDLh.pas
koda
parents: 2599
diff changeset
   594
if isSoundEnabled then
7b21daf84933 revamped SDLh.pas
koda
parents: 2599
diff changeset
   595
	InitSound;
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   596
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   597
StoreInit;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   598
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   599
isDeveloperMode:= false;
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   600
2600
7b21daf84933 revamped SDLh.pas
koda
parents: 2599
diff changeset
   601
TryDo(InitStepsFlags = cifAllInited, 'Some parameters not set (flags = ' + inttostr(InitStepsFlags) + ')', true);
55
e09f7c952a40 Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents: 54
diff changeset
   602
2428
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2413
diff changeset
   603
MainLoop;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2413
diff changeset
   604
ControllerClose
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   605
end;
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   606
160
207f520b9e83 Soma small fixes + new land template
unc0rr
parents: 159
diff changeset
   607
/////////////////////////
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   608
procedure GenLandPreview;
566
1c1cb593cb81 Save some memory
unc0rr
parents: 565
diff changeset
   609
var Preview: TPreview;
1791
7c9d645d2591 Fix passing hedgehogs number from engine to frontend
unc0rr
parents: 1784
diff changeset
   610
	h: byte;
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   611
begin
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   612
InitIPC;
159
63909aecb0ed Preview stream doesn't need parsing now
unc0rr
parents: 158
diff changeset
   613
IPCWaitPongEvent;
2600
7b21daf84933 revamped SDLh.pas
koda
parents: 2599
diff changeset
   614
TryDo(InitStepsFlags = cifRandomize, 'Some parameters not set (flags = ' + inttostr(InitStepsFlags) + ')', true);
160
207f520b9e83 Soma small fixes + new land template
unc0rr
parents: 159
diff changeset
   615
566
1c1cb593cb81 Save some memory
unc0rr
parents: 565
diff changeset
   616
Preview:= GenPreview;
159
63909aecb0ed Preview stream doesn't need parsing now
unc0rr
parents: 158
diff changeset
   617
WriteLnToConsole('Sending preview...');
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   618
SendIPCRaw(@Preview, sizeof(Preview));
1791
7c9d645d2591 Fix passing hedgehogs number from engine to frontend
unc0rr
parents: 1784
diff changeset
   619
h:= MaxHedgehogs;
7c9d645d2591 Fix passing hedgehogs number from engine to frontend
unc0rr
parents: 1784
diff changeset
   620
SendIPCRaw(@h, sizeof(h));
159
63909aecb0ed Preview stream doesn't need parsing now
unc0rr
parents: 158
diff changeset
   621
WriteLnToConsole('Preview sent, disconnect');
158
e6c3223f3bca Don't synchronize after sending preview
unc0rr
parents: 155
diff changeset
   622
CloseIPC
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   623
end;
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   624
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   625
////////////////////////////////////////////////////////////////////////////////
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   626
/////////////////////////////// m a i n ////////////////////////////////////////
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   627
////////////////////////////////////////////////////////////////////////////////
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   628
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   629
begin
2667
d9201436c6cf binding typo
koda
parents: 2663
diff changeset
   630
WriteLnToConsole('Hedgewars ' + cVersionString + ' engine (network protocol: ' + inttostr(cNetProtoVersion) + ')');
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   631
GetParams;
2145
fa43619eb3e7 A few FIXME flags for easy grepping
nemo
parents: 2105
diff changeset
   632
// FIXME -  hack in font with support for CJK
2105
580f7610d661 Allow CJK override for zh_CN/zh_TW/ja
nemo
parents: 2039
diff changeset
   633
if (cLocaleFName = 'zh_CN.txt') or (cLocaleFName = 'zh_TW.txt') or (cLocaleFName = 'ja.txt') then
580f7610d661 Allow CJK override for zh_CN/zh_TW/ja
nemo
parents: 2039
diff changeset
   634
    Fontz:= FontzCJK;
580f7610d661 Allow CJK override for zh_CN/zh_TW/ja
nemo
parents: 2039
diff changeset
   635
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   636
Randomize;
2008
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   637
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   638
if GameType = gmtLandPreview then GenLandPreview
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   639
                             else Game
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents:
diff changeset
   640
end.
2008
fc2fb5c938c3 Patch by koda:
unc0rr
parents: 2006
diff changeset
   641