author | Stepan777 <stepik-777@mail.ru> |
Fri, 08 Jun 2012 02:52:35 +0400 | |
changeset 7198 | 5debd5fe526e |
parent 7180 | 53ffc8853008 |
child 7235 | baa69bd025d9 |
permissions | -rw-r--r-- |
2947 | 1 |
(* |
6952 | 2 |
* Hedgewars, a free turn based strategy game |
3 |
* Copyright (c) 2004-2012 Andrey Korotaev <unC0Rr@gmail.com> |
|
4 |
* |
|
5 |
* This program is free software; you can redistribute it and/or modify |
|
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation; version 2 of the License |
|
8 |
* |
|
9 |
* This program is distributed in the hope that it will be useful, |
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
* GNU General Public License for more details. |
|
13 |
* |
|
14 |
* You should have received a copy of the GNU General Public License |
|
15 |
* along with this program; if not, write to the Free Software |
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
17 |
*) |
|
51 | 18 |
|
2599 | 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 |
|
2800 | 21 |
{$IFDEF WIN32} |
22 |
{$R hwengine.rc} |
|
23 |
{$ENDIF} |
|
24 |
||
2803
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2800
diff
changeset
|
25 |
{$IFDEF HWLIBRARY} |
2698 | 26 |
unit hwengine; |
27 |
interface |
|
28 |
{$ELSE} |
|
51 | 29 |
program hwengine; |
2698 | 30 |
{$ENDIF} |
3407 | 31 |
|
6954
a61458a81480
changed uKeys to uInputHandler to better reflect its function
Xeli
parents:
6952
diff
changeset
|
32 |
uses SDLh, uMisc, uConsole, uGame, uConsts, uLand, uAmmos, uVisualGears, uGears, uStore, uWorld, uInputHandler, uSound, |
5174
f5294509783e
initial refactoring of ObjcExports and OverlayViewController
koda
parents:
5167
diff
changeset
|
33 |
uScript, uTeams, uStats, uIO, uLocale, uChat, uAI, uAIMisc, uRandom, uLandTexture, uCollisions, |
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
34 |
SysUtils, uTypes, uVariables, uCommands, uUtils, uCaptions, uDebug, uCommandHandlers, uLandPainted |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
35 |
{$IFDEF USE_VIDEO_RECORDING}, uVideoRec {$ENDIF} |
6341 | 36 |
{$IFDEF SDL13}, uTouch{$ENDIF}{$IFDEF ANDROID}, GLUnit{$ENDIF}; |
3697 | 37 |
|
2803
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2800
diff
changeset
|
38 |
{$IFDEF HWLIBRARY} |
3525 | 39 |
procedure initEverything(complete:boolean); |
40 |
procedure freeEverything(complete:boolean); |
|
5339 | 41 |
procedure Game(gameArgs: PPChar); cdecl; export; |
5458 | 42 |
procedure GenLandPreview(port: Longint); cdecl; export; |
51 | 43 |
|
2698 | 44 |
implementation |
45 |
{$ELSE} |
|
3611 | 46 |
procedure initEverything(complete:boolean); forward; |
3525 | 47 |
procedure freeEverything(complete:boolean); forward; |
2698 | 48 |
{$ENDIF} |
51 | 49 |
|
50 |
//////////////////////////////// |
|
7025 | 51 |
function DoTimer(Lag: LongInt): boolean; |
2905 | 52 |
var s: shortstring; |
51 | 53 |
begin |
7025 | 54 |
DoTimer:= false; |
6734
9709d15dabfa
Revert most of 033e4a8a9c74 and 9d501dc22f71 (see bug #362)
nemo
parents:
6700
diff
changeset
|
55 |
inc(RealTicks, Lag); |
564 | 56 |
|
2947 | 57 |
case GameState of |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
58 |
gsLandGen: |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
59 |
begin |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
60 |
GenMap; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
61 |
ParseCommand('sendlanddigest', true); |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
62 |
GameState:= gsStart; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
63 |
end; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
64 |
gsStart: |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
65 |
begin |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
66 |
if HasBorder then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
67 |
DisableSomeWeapons; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
68 |
AddClouds; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
69 |
AddFlakes; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
70 |
AssignHHCoords; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
71 |
AddMiscGears; |
6986
409dd3851309
add support for default pascal mode by removing default arguments value (maybe this also helps the parser)
koda
parents:
6954
diff
changeset
|
72 |
StoreLoad(false); |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
73 |
InitWorld; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
74 |
ResetKbd; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
75 |
if GameType = gmtSave then |
7021
0c75512a8920
adjust the scope of a few uSound variables and functions
koda
parents:
6986
diff
changeset
|
76 |
SetSound(false); |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
77 |
FinishProgress; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
78 |
PlayMusic; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
79 |
SetScale(zoom); |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
80 |
ScriptCall('onGameStart'); |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
81 |
GameState:= gsGame; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
82 |
end; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
83 |
gsConfirm, gsGame: |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
84 |
begin |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
85 |
DrawWorld(Lag); // never place between ProcessKbd and DoGameTick - bugs due to /put cmd and isCursorVisible |
6734
9709d15dabfa
Revert most of 033e4a8a9c74 and 9d501dc22f71 (see bug #362)
nemo
parents:
6700
diff
changeset
|
86 |
DoGameTick(Lag); |
9709d15dabfa
Revert most of 033e4a8a9c74 and 9d501dc22f71 (see bug #362)
nemo
parents:
6700
diff
changeset
|
87 |
ProcessVisualGears(Lag); |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
88 |
end; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
89 |
gsChat: |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
90 |
begin |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
91 |
DrawWorld(Lag); |
6734
9709d15dabfa
Revert most of 033e4a8a9c74 and 9d501dc22f71 (see bug #362)
nemo
parents:
6700
diff
changeset
|
92 |
DoGameTick(Lag); |
9709d15dabfa
Revert most of 033e4a8a9c74 and 9d501dc22f71 (see bug #362)
nemo
parents:
6700
diff
changeset
|
93 |
ProcessVisualGears(Lag); |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
94 |
end; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
95 |
gsExit: |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
96 |
begin |
7025 | 97 |
DoTimer:= true; |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
98 |
end; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
99 |
gsSuspend: |
7054 | 100 |
exit(false); |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
101 |
end; |
564 | 102 |
|
7049 | 103 |
SwapBuffers; |
4454 | 104 |
|
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
105 |
{$IFDEF USE_VIDEO_RECORDING} |
7180 | 106 |
if flagPrerecording then |
107 |
SaveCameraPosition; |
|
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
108 |
{$ENDIF} |
7180 | 109 |
|
2947 | 110 |
if flagMakeCapture then |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
111 |
begin |
2947 | 112 |
flagMakeCapture:= false; |
7151 | 113 |
{$IFDEF PAS2C} |
114 |
s:= 'hw'; |
|
115 |
{$ELSE} |
|
2947 | 116 |
s:= 'hw_' + FormatDateTime('YYYY-MM-DD_HH-mm-ss', Now()) + inttostr(GameTicks); |
7151 | 117 |
{$ENDIF} |
5912
d31eba29e706
screenshots: display a msg on failure and log causative error
sheepluva
parents:
5825
diff
changeset
|
118 |
|
4359 | 119 |
playSound(sndShutter); |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
120 |
|
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
121 |
if MakeScreenshot(s) then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
122 |
WriteLnToConsole('Screenshot saved: ' + s) |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
123 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
124 |
begin |
5912
d31eba29e706
screenshots: display a msg on failure and log causative error
sheepluva
parents:
5825
diff
changeset
|
125 |
WriteLnToConsole('Screenshot failed.'); |
d31eba29e706
screenshots: display a msg on failure and log causative error
sheepluva
parents:
5825
diff
changeset
|
126 |
AddChatString(#5 + 'screen capture failed (lack of memory or write permissions)'); |
6267
be5d40bb1e86
make screenshots with 32bits of depths, so that they are more opengles friendly
koda
parents:
6219
diff
changeset
|
127 |
end |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
128 |
end; |
51 | 129 |
end; |
130 |
||
131 |
/////////////////// |
|
3697 | 132 |
procedure MainLoop; |
6267
be5d40bb1e86
make screenshots with 32bits of depths, so that they are more opengles friendly
koda
parents:
6219
diff
changeset
|
133 |
var event: TSDL_Event; |
be5d40bb1e86
make screenshots with 32bits of depths, so that they are more opengles friendly
koda
parents:
6219
diff
changeset
|
134 |
PrevTime, CurrTime: Longword; |
7025 | 135 |
isTerminated: boolean; |
6013 | 136 |
{$IFDEF SDL13} |
5975 | 137 |
previousGameState: TGameState; |
6019 | 138 |
{$ELSE} |
5521 | 139 |
prevFocusState: boolean; |
6013 | 140 |
{$ENDIF} |
2698 | 141 |
begin |
7025 | 142 |
isTerminated:= false; |
2947 | 143 |
PrevTime:= SDL_GetTicks; |
3063 | 144 |
while isTerminated = false do |
145 |
begin |
|
5724 | 146 |
SDL_PumpEvents(); |
6598
fa518383563b
added pause/resume functionality for android, android need the opengl context to be recreated along with textures and whatnot
Xeli
parents:
6580
diff
changeset
|
147 |
|
6072 | 148 |
while SDL_PeepEvents(@event, 1, SDL_GETEVENT, {$IFDEF SDL13}SDL_FIRSTEVENT, SDL_LASTEVENT{$ELSE}SDL_ALLEVENTS{$ENDIF}) > 0 do |
2947 | 149 |
begin |
5339 | 150 |
case event.type_ of |
6072 | 151 |
{$IFDEF SDL13} |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
152 |
SDL_KEYDOWN: |
7025 | 153 |
if GameState = gsChat then |
3647
0d0df215fb52
making chat work... (keyboard support is heavily broken in sdl upstream)
koda
parents:
3634
diff
changeset
|
154 |
// sdl on iphone supports only ashii keyboards and the unicode field is deprecated in sdl 1.3 |
7025 | 155 |
KeyPressChat(SDL_GetKeyFromScancode(event.key.keysym.sym))//TODO correct for keymodifiers |
156 |
else |
|
157 |
ProcessKey(event.key); |
|
6917 | 158 |
SDL_KEYUP: |
7025 | 159 |
if GameState <> gsChat then |
160 |
ProcessKey(event.key); |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
161 |
|
5339 | 162 |
SDL_WINDOWEVENT: |
5052 | 163 |
if event.window.event = SDL_WINDOWEVENT_SHOWN then |
7025 | 164 |
begin |
4454 | 165 |
cHasFocus:= true; |
5521 | 166 |
onFocusStateChanged() |
7025 | 167 |
end |
5975 | 168 |
else if event.window.event = SDL_WINDOWEVENT_MINIMIZED then |
7025 | 169 |
begin |
5975 | 170 |
previousGameState:= GameState; |
171 |
GameState:= gsSuspend; |
|
7025 | 172 |
end |
5975 | 173 |
else if event.window.event = SDL_WINDOWEVENT_RESTORED then |
7025 | 174 |
begin |
5975 | 175 |
GameState:= previousGameState; |
6611 | 176 |
{$IFDEF ANDROID} |
177 |
//This call is used to reinitialize the glcontext and reload the textures |
|
6598
fa518383563b
added pause/resume functionality for android, android need the opengl context to be recreated along with textures and whatnot
Xeli
parents:
6580
diff
changeset
|
178 |
ParseCommand('fullscr '+intToStr(LongInt(cFullScreen)), true); |
fa518383563b
added pause/resume functionality for android, android need the opengl context to be recreated along with textures and whatnot
Xeli
parents:
6580
diff
changeset
|
179 |
{$ENDIF} |
7025 | 180 |
end |
6021 | 181 |
else if event.window.event = SDL_WINDOWEVENT_RESIZED then |
7025 | 182 |
begin |
6021 | 183 |
cNewScreenWidth:= max(2 * (event.window.data1 div 2), cMinScreenWidth); |
184 |
cNewScreenHeight:= max(2 * (event.window.data2 div 2), cMinScreenHeight); |
|
6611 | 185 |
cScreenResizeDelay:= RealTicks + 500{$IFDEF IPHONEOS}div 2{$ENDIF}; |
7025 | 186 |
end; |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
187 |
|
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
188 |
SDL_FINGERMOTION: |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
189 |
onTouchMotion(event.tfinger.x, event.tfinger.y,event.tfinger.dx, event.tfinger.dy, event.tfinger.fingerId); |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
190 |
|
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
191 |
SDL_FINGERDOWN: |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
192 |
onTouchDown(event.tfinger.x, event.tfinger.y, event.tfinger.fingerId); |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
193 |
|
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
194 |
SDL_FINGERUP: |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
195 |
onTouchUp(event.tfinger.x, event.tfinger.y, event.tfinger.fingerId); |
3647
0d0df215fb52
making chat work... (keyboard support is heavily broken in sdl upstream)
koda
parents:
3634
diff
changeset
|
196 |
{$ELSE} |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
197 |
SDL_KEYDOWN: |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
198 |
if GameState = gsChat then |
6917 | 199 |
KeyPressChat(event.key.keysym.unicode) |
200 |
else |
|
201 |
ProcessKey(event.key); |
|
202 |
SDL_KEYUP: |
|
7025 | 203 |
if GameState <> gsChat then |
204 |
ProcessKey(event.key); |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
205 |
|
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
206 |
SDL_MOUSEBUTTONDOWN: |
7025 | 207 |
ProcessMouse(event.button, true); |
208 |
||
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
209 |
SDL_MOUSEBUTTONUP: |
6917 | 210 |
ProcessMouse(event.button, false); |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
211 |
|
2947 | 212 |
SDL_ACTIVEEVENT: |
213 |
if (event.active.state and SDL_APPINPUTFOCUS) <> 0 then |
|
7025 | 214 |
begin |
5521 | 215 |
prevFocusState:= cHasFocus; |
2947 | 216 |
cHasFocus:= event.active.gain = 1; |
5521 | 217 |
if prevFocusState xor cHasFocus then |
218 |
onFocusStateChanged() |
|
7025 | 219 |
end; |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
220 |
|
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
221 |
SDL_VIDEORESIZE: |
7025 | 222 |
begin |
5816
ceb522b0f7d5
"fix" for a screen scaling problem I had after resizing to odd width number values
sheepluva
parents:
5815
diff
changeset
|
223 |
// using lower values than cMinScreenWidth or cMinScreenHeight causes widget overlap and off-screen widget parts |
ceb522b0f7d5
"fix" for a screen scaling problem I had after resizing to odd width number values
sheepluva
parents:
5815
diff
changeset
|
224 |
// Change by sheepluva: |
ceb522b0f7d5
"fix" for a screen scaling problem I had after resizing to odd width number values
sheepluva
parents:
5815
diff
changeset
|
225 |
// Let's only use even numbers for custom width/height since I ran into scaling issues with odd width values. |
ceb522b0f7d5
"fix" for a screen scaling problem I had after resizing to odd width number values
sheepluva
parents:
5815
diff
changeset
|
226 |
// Maybe just fixes the symptom not the actual cause(?), I'm too tired to find out :P |
ceb522b0f7d5
"fix" for a screen scaling problem I had after resizing to odd width number values
sheepluva
parents:
5815
diff
changeset
|
227 |
cNewScreenWidth:= max(2 * (event.resize.w div 2), cMinScreenWidth); |
ceb522b0f7d5
"fix" for a screen scaling problem I had after resizing to odd width number values
sheepluva
parents:
5815
diff
changeset
|
228 |
cNewScreenHeight:= max(2 * (event.resize.h div 2), cMinScreenHeight); |
5732
f3f381011728
Add a delay before applying screen resize to cut down on resize events (especially bad on OSes that need texture recreation)
nemo
parents:
5730
diff
changeset
|
229 |
cScreenResizeDelay:= RealTicks+500; |
7025 | 230 |
end; |
3463 | 231 |
{$ENDIF} |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
232 |
SDL_JOYAXISMOTION: |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
233 |
ControllerAxisEvent(event.jaxis.which, event.jaxis.axis, event.jaxis.value); |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
234 |
SDL_JOYHATMOTION: |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
235 |
ControllerHatEvent(event.jhat.which, event.jhat.hat, event.jhat.value); |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
236 |
SDL_JOYBUTTONDOWN: |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
237 |
ControllerButtonEvent(event.jbutton.which, event.jbutton.button, true); |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
238 |
SDL_JOYBUTTONUP: |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
239 |
ControllerButtonEvent(event.jbutton.which, event.jbutton.button, false); |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
240 |
SDL_QUITEV: |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
241 |
isTerminated:= true |
7025 | 242 |
end; //end case event.type_ of |
243 |
end; //end while SDL_PollEvent(@event) <> 0 do |
|
5732
f3f381011728
Add a delay before applying screen resize to cut down on resize events (especially bad on OSes that need texture recreation)
nemo
parents:
5730
diff
changeset
|
244 |
|
7025 | 245 |
if (cScreenResizeDelay <> 0) and (cScreenResizeDelay < RealTicks) and |
246 |
((cNewScreenWidth <> cScreenWidth) or (cNewScreenHeight <> cScreenHeight)) then |
|
247 |
begin |
|
248 |
cScreenResizeDelay:= 0; |
|
249 |
cScreenWidth:= cNewScreenWidth; |
|
250 |
cScreenHeight:= cNewScreenHeight; |
|
3463 | 251 |
|
7025 | 252 |
ParseCommand('fullscr '+intToStr(LongInt(cFullScreen)), true); |
253 |
WriteLnToConsole('window resize: ' + IntToStr(cScreenWidth) + ' x ' + IntToStr(cScreenHeight)); |
|
254 |
ScriptOnScreenResize(); |
|
255 |
InitCameraBorders(); |
|
256 |
InitTouchInterface(); |
|
257 |
end; |
|
258 |
||
259 |
CurrTime:= SDL_GetTicks(); |
|
6863 | 260 |
if PrevTime + longword(cTimerInterval) <= CurrTime then |
261 |
begin |
|
7025 | 262 |
isTerminated:= DoTimer(CurrTime - PrevTime); |
6863 | 263 |
PrevTime:= CurrTime |
264 |
end |
|
265 |
else SDL_Delay(1); |
|
266 |
IPCCheckSock(); |
|
3063 | 267 |
end; |
2698 | 268 |
end; |
269 |
||
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
270 |
{$IFDEF USE_VIDEO_RECORDING} |
7180 | 271 |
procedure RecorderMainLoop; |
272 |
var CurrTime, PrevTime: LongInt; |
|
273 |
begin |
|
274 |
if not BeginVideoRecording() then |
|
275 |
exit; |
|
276 |
DoTimer(0); // gsLandGen -> gsStart |
|
277 |
DoTimer(0); // gsStart -> gsGame |
|
278 |
||
279 |
CurrTime:= LoadNextCameraPosition(); |
|
280 |
fastScrolling:= true; |
|
281 |
DoTimer(CurrTime); |
|
282 |
fastScrolling:= false; |
|
283 |
while true do |
|
284 |
begin |
|
285 |
EncodeFrame(); |
|
286 |
PrevTime:= CurrTime; |
|
287 |
CurrTime:= LoadNextCameraPosition(); |
|
288 |
if CurrTime = -1 then |
|
289 |
break; |
|
290 |
DoTimer(CurrTime - PrevTime); |
|
291 |
IPCCheckSock(); |
|
292 |
end; |
|
293 |
StopVideoRecording(); |
|
294 |
end; |
|
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
295 |
{$ENDIF} |
7180 | 296 |
|
2698 | 297 |
/////////////// |
6072 | 298 |
procedure Game{$IFDEF HWLIBRARY}(gameArgs: PPChar); cdecl; export{$ENDIF}; |
7025 | 299 |
var p: TPathType; |
2947 | 300 |
s: shortstring; |
3611 | 301 |
i: LongInt; |
2698 | 302 |
begin |
2803
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2800
diff
changeset
|
303 |
{$IFDEF HWLIBRARY} |
2947 | 304 |
cBits:= 32; |
5365
326c7db9e410
Added an argument to Game(PChar) which provides a path to the data folder. This allows the user/java side to change from internal sdcard to sdcard
Xeli
parents:
5359
diff
changeset
|
305 |
cTimerInterval:= 8; |
5109
6d2e8a24277e
strangely enough, the new sdl rotation code is incompatible with our system... this is a workaround that should hold up until their code becomes more stable
koda
parents:
5066
diff
changeset
|
306 |
cShowFPS:= {$IFDEF DEBUGFILE}true{$ELSE}false{$ENDIF}; |
7151 | 307 |
ipcPort:= StrToInt(gameArgs[0]); |
308 |
cScreenWidth:= StrToInt(gameArgs[1]); |
|
309 |
cScreenHeight:= StrToInt(gameArgs[2]); |
|
310 |
cReducedQuality:= StrToInt(gameArgs[3]); |
|
5339 | 311 |
cLocaleFName:= gameArgs[4]; |
6603
ef9ed71e3cf7
ios sanity restored: applied new paths for sdl projects, turned off fullscreen, added 3 lines of documentation, removal of sdl patch (every mod has been integrated mainstream)
koda
parents:
6598
diff
changeset
|
312 |
// cFullScreen functionality is platform dependent, ifdef it if you need to modify it |
ef9ed71e3cf7
ios sanity restored: applied new paths for sdl projects, turned off fullscreen, added 3 lines of documentation, removal of sdl patch (every mod has been integrated mainstream)
koda
parents:
6598
diff
changeset
|
313 |
cFullScreen:= false; |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
314 |
|
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
315 |
if (Length(cLocaleFName) > 6) then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
316 |
cLocale := Copy(cLocaleFName,1,5) |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
317 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
318 |
cLocale := Copy(cLocaleFName,1,2); |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
319 |
|
5339 | 320 |
UserNick:= gameArgs[5]; |
7021
0c75512a8920
adjust the scope of a few uSound variables and functions
koda
parents:
6986
diff
changeset
|
321 |
SetSound(gameArgs[6] = '1'); |
0c75512a8920
adjust the scope of a few uSound variables and functions
koda
parents:
6986
diff
changeset
|
322 |
SetMusic(gameArgs[7] = '1'); |
5339 | 323 |
cAltDamage:= gameArgs[8] = '1'; |
6029
5073285b6599
changed Game arguments to accept data path on 9th array element (like planned)
koda
parents:
6023
diff
changeset
|
324 |
PathPrefix:= gameArgs[9]; |
6341 | 325 |
UserPathPrefix:= '../Documents'; |
5339 | 326 |
recordFileName:= gameArgs[10]; |
4814
e19791f08443
smaller rearrangement of (non stereo related) variables
koda
parents:
4812
diff
changeset
|
327 |
cStereoMode:= smNone; |
3624 | 328 |
{$ENDIF} |
5814
9ac119696510
change minimum resolution back to 640x480 (full weapon menu too big for smaller screens)
sheepluva
parents:
5732
diff
changeset
|
329 |
cMinScreenWidth:= min(cScreenWidth, cMinScreenWidth); |
9ac119696510
change minimum resolution back to 640x480 (full weapon menu too big for smaller screens)
sheepluva
parents:
5732
diff
changeset
|
330 |
cMinScreenHeight:= min(cScreenHeight, cMinScreenHeight); |
5686 | 331 |
cOrigScreenWidth:= cScreenWidth; |
332 |
cOrigScreenHeight:= cScreenHeight; |
|
3613 | 333 |
|
3611 | 334 |
initEverything(true); |
335 |
WriteLnToConsole('Hedgewars ' + cVersionString + ' engine (network protocol: ' + inttostr(cNetProtoVersion) + ')'); |
|
336 |
AddFileLog('Prefix: "' + PathPrefix +'"'); |
|
5339 | 337 |
AddFileLog('UserPrefix: "' + UserPathPrefix +'"'); |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
338 |
|
3611 | 339 |
for i:= 0 to ParamCount do |
340 |
AddFileLog(inttostr(i) + ': ' + ParamStr(i)); |
|
2698 | 341 |
|
2947 | 342 |
for p:= Succ(Low(TPathType)) to High(TPathType) do |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
343 |
if (p <> ptMapCurrent) and (p <> ptData) then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
344 |
UserPathz[p]:= UserPathPrefix + '/Data/' + Pathz[p]; |
5339 | 345 |
|
346 |
UserPathz[ptData]:= UserPathPrefix + '/Data'; |
|
347 |
||
348 |
for p:= Succ(Low(TPathType)) to High(TPathType) do |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
349 |
if p <> ptMapCurrent then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
350 |
Pathz[p]:= PathPrefix + '/' + Pathz[p]; |
3697 | 351 |
|
2947 | 352 |
WriteToConsole('Init SDL... '); |
4773
69f8431a5d20
yay, sdl resumed development and accepted some of our patches in mainstream
koda
parents:
4744
diff
changeset
|
353 |
SDLTry(SDL_Init(SDL_INIT_VIDEO or SDL_INIT_NOPARACHUTE) >= 0, true); |
2947 | 354 |
WriteLnToConsole(msgOK); |
2698 | 355 |
|
2947 | 356 |
SDL_EnableUNICODE(1); |
5565 | 357 |
SDL_ShowCursor(0); |
2698 | 358 |
|
2947 | 359 |
WriteToConsole('Init SDL_ttf... '); |
360 |
SDLTry(TTF_Init() <> -1, true); |
|
361 |
WriteLnToConsole(msgOK); |
|
2698 | 362 |
|
7180 | 363 |
if GameType = gmtRecord then |
364 |
InitOffscreenOpenGL() |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
365 |
else |
7180 | 366 |
begin |
367 |
// show main window |
|
368 |
if cFullScreen then |
|
369 |
ParseCommand('fullscr 1', true) |
|
370 |
else |
|
371 |
ParseCommand('fullscr 0', true); |
|
372 |
end; |
|
2698 | 373 |
|
2947 | 374 |
ControllerInit(); // has to happen before InitKbdKeyTable to map keys |
375 |
InitKbdKeyTable(); |
|
5174
f5294509783e
initial refactoring of ObjcExports and OverlayViewController
koda
parents:
5167
diff
changeset
|
376 |
AddProgress(); |
2698 | 377 |
|
5339 | 378 |
LoadLocale(UserPathz[ptLocale] + '/en.txt'); // Do an initial load with english |
2947 | 379 |
LoadLocale(Pathz[ptLocale] + '/en.txt'); // Do an initial load with english |
380 |
if cLocaleFName <> 'en.txt' then |
|
4046
cfdbddc4b385
making indentation consistent (noticed while debugging)
nemo
parents:
3976
diff
changeset
|
381 |
begin |
2719 | 382 |
// Try two letter locale first before trying specific locale overrides |
5110 | 383 |
if (Length(cLocale) > 2) and (Copy(cLocale,1,2) <> 'en') then |
5339 | 384 |
begin |
385 |
LoadLocale(UserPathz[ptLocale] + '/' + Copy(cLocale,1,2)+'.txt'); |
|
386 |
LoadLocale(Pathz[ptLocale] + '/' + Copy(cLocale,1,2)+'.txt') |
|
387 |
end; |
|
388 |
LoadLocale(UserPathz[ptLocale] + '/' + cLocaleFName); |
|
389 |
LoadLocale(Pathz[ptLocale] + '/' + cLocaleFName) |
|
5107
d7fc678d78f4
Allow override of voicepack with a locale voicepack. Untested, but should mean that a Default voice should use the Ukranian version if that is their locale.
nemo
parents:
5066
diff
changeset
|
390 |
end |
d7fc678d78f4
Allow override of voicepack with a locale voicepack. Untested, but should mean that a Default voice should use the Ukranian version if that is their locale.
nemo
parents:
5066
diff
changeset
|
391 |
else cLocale := 'en'; |
2698 | 392 |
|
3904
22e4d74240e5
finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents:
3843
diff
changeset
|
393 |
WriteLnToConsole(msgGettingConfig); |
4046
cfdbddc4b385
making indentation consistent (noticed while debugging)
nemo
parents:
3976
diff
changeset
|
394 |
|
2947 | 395 |
if recordFileName = '' then |
4046
cfdbddc4b385
making indentation consistent (noticed while debugging)
nemo
parents:
3976
diff
changeset
|
396 |
begin |
3904
22e4d74240e5
finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents:
3843
diff
changeset
|
397 |
InitIPC; |
7073 | 398 |
SendIPCAndWaitReply(_S'C'); // ask for game config |
4046
cfdbddc4b385
making indentation consistent (noticed while debugging)
nemo
parents:
3976
diff
changeset
|
399 |
end |
2947 | 400 |
else |
401 |
LoadRecordFromFile(recordFileName); |
|
2698 | 402 |
|
2947 | 403 |
ScriptOnGameInit; |
404 |
s:= 'eproto ' + inttostr(cNetProtoVersion); |
|
405 |
SendIPCRaw(@s[0], Length(s) + 1); // send proto version |
|
406 |
||
407 |
InitTeams(); |
|
408 |
AssignStores(); |
|
7180 | 409 |
|
410 |
if GameType = gmtRecord then |
|
411 |
SetSound(false); |
|
412 |
||
7021
0c75512a8920
adjust the scope of a few uSound variables and functions
koda
parents:
6986
diff
changeset
|
413 |
InitSound(); |
2590 | 414 |
|
2947 | 415 |
isDeveloperMode:= false; |
416 |
TryDo(InitStepsFlags = cifAllInited, 'Some parameters not set (flags = ' + inttostr(InitStepsFlags) + ')', true); |
|
417 |
ParseCommand('rotmask', true); |
|
7180 | 418 |
|
419 |
if GameType = gmtRecord then |
|
420 |
RecorderMainLoop() |
|
421 |
else |
|
422 |
MainLoop(); |
|
7021
0c75512a8920
adjust the scope of a few uSound variables and functions
koda
parents:
6986
diff
changeset
|
423 |
|
7026
8d1724e1337e
split OnDestroy across the appropriate modules (this doen't cause leaks on mobile, right?)
koda
parents:
7025
diff
changeset
|
424 |
// clean up all the memory allocated |
3611 | 425 |
freeEverything(true); |
2698 | 426 |
end; |
2590 | 427 |
|
3525 | 428 |
procedure initEverything (complete:boolean); |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
429 |
begin |
3365
37ac593e9027
wow all these files only for land preview and seed generation
koda
parents:
3312
diff
changeset
|
430 |
Randomize(); |
37ac593e9027
wow all these files only for land preview and seed generation
koda
parents:
3312
diff
changeset
|
431 |
|
7027 | 432 |
uUtils.initModule(complete); // this opens the debug file, must be the first |
3038 | 433 |
uMisc.initModule; |
4359 | 434 |
uVariables.initModule; |
7026
8d1724e1337e
split OnDestroy across the appropriate modules (this doen't cause leaks on mobile, right?)
koda
parents:
7025
diff
changeset
|
435 |
uConsole.initModule; |
4373 | 436 |
uCommands.initModule; |
4413 | 437 |
uCommandHandlers.initModule; |
3525 | 438 |
|
3038 | 439 |
uLand.initModule; |
4490 | 440 |
uLandPainted.initModule; |
3525 | 441 |
uIO.initModule; |
3697 | 442 |
|
3525 | 443 |
if complete then |
7026
8d1724e1337e
split OnDestroy across the appropriate modules (this doen't cause leaks on mobile, right?)
koda
parents:
7025
diff
changeset
|
444 |
begin |
6341 | 445 |
{$IFDEF ANDROID}GLUnit.init;{$ENDIF} |
446 |
{$IFDEF SDL13}uTouch.initModule;{$ENDIF} |
|
6415 | 447 |
uAI.initModule; |
3525 | 448 |
//uAIActions does not need initialization |
449 |
//uAIAmmoTests does not need initialization |
|
450 |
uAIMisc.initModule; |
|
451 |
uAmmos.initModule; |
|
452 |
uChat.initModule; |
|
453 |
uCollisions.initModule; |
|
454 |
//uFloat does not need initialization |
|
455 |
//uGame does not need initialization |
|
456 |
uGears.initModule; |
|
6954
a61458a81480
changed uKeys to uInputHandler to better reflect its function
Xeli
parents:
6952
diff
changeset
|
457 |
uInputHandler.initModule; |
3525 | 458 |
//uLandGraphics does not need initialization |
459 |
//uLandObjects does not need initialization |
|
460 |
//uLandTemplates does not need initialization |
|
3612
b50215a8a43d
land arrays are allocated dynamically, so DOWNSCALE and LOWRES macros are now removed and replaced by run time flags rqBlurryLand and rqLowRes
koda
parents:
3611
diff
changeset
|
461 |
uLandTexture.initModule; |
3525 | 462 |
//uLocale does not need initialization |
3697 | 463 |
uRandom.initModule; |
3525 | 464 |
uScript.initModule; |
465 |
uSound.initModule; |
|
466 |
uStats.initModule; |
|
467 |
uStore.initModule; |
|
468 |
uTeams.initModule; |
|
469 |
uVisualGears.initModule; |
|
470 |
uWorld.initModule; |
|
4393 | 471 |
uCaptions.initModule; |
7026
8d1724e1337e
split OnDestroy across the appropriate modules (this doen't cause leaks on mobile, right?)
koda
parents:
7025
diff
changeset
|
472 |
end; |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
473 |
end; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
474 |
|
3525 | 475 |
procedure freeEverything (complete:boolean); |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
476 |
begin |
3525 | 477 |
if complete then |
7026
8d1724e1337e
split OnDestroy across the appropriate modules (this doen't cause leaks on mobile, right?)
koda
parents:
7025
diff
changeset
|
478 |
begin |
8d1724e1337e
split OnDestroy across the appropriate modules (this doen't cause leaks on mobile, right?)
koda
parents:
7025
diff
changeset
|
479 |
WriteLnToConsole('Freeing resources...'); |
8d1724e1337e
split OnDestroy across the appropriate modules (this doen't cause leaks on mobile, right?)
koda
parents:
7025
diff
changeset
|
480 |
uAI.freeModule; |
8d1724e1337e
split OnDestroy across the appropriate modules (this doen't cause leaks on mobile, right?)
koda
parents:
7025
diff
changeset
|
481 |
uAIMisc.freeModule; //stub |
4393 | 482 |
uCaptions.freeModule; |
3525 | 483 |
uWorld.freeModule; |
3615 | 484 |
uVisualGears.freeModule; |
3525 | 485 |
uTeams.freeModule; |
7026
8d1724e1337e
split OnDestroy across the appropriate modules (this doen't cause leaks on mobile, right?)
koda
parents:
7025
diff
changeset
|
486 |
uInputHandler.freeModule; |
3525 | 487 |
uStats.freeModule; //stub |
3615 | 488 |
uSound.freeModule; |
3525 | 489 |
uScript.freeModule; |
490 |
uRandom.freeModule; //stub |
|
491 |
//uLocale does not need to be freed |
|
492 |
//uLandTemplates does not need to be freed |
|
3612
b50215a8a43d
land arrays are allocated dynamically, so DOWNSCALE and LOWRES macros are now removed and replaced by run time flags rqBlurryLand and rqLowRes
koda
parents:
3611
diff
changeset
|
493 |
uLandTexture.freeModule; |
3525 | 494 |
//uLandObjects does not need to be freed |
495 |
//uLandGraphics does not need to be freed |
|
496 |
uGears.freeModule; |
|
497 |
//uGame does not need to be freed |
|
498 |
//uFloat does not need to be freed |
|
499 |
uCollisions.freeModule; //stub |
|
4901 | 500 |
uChat.freeModule; |
3525 | 501 |
uAmmos.freeModule; |
502 |
//uAIAmmoTests does not need to be freed |
|
503 |
//uAIActions does not need to be freed |
|
7026
8d1724e1337e
split OnDestroy across the appropriate modules (this doen't cause leaks on mobile, right?)
koda
parents:
7025
diff
changeset
|
504 |
uStore.freeModule; |
7180 | 505 |
uVideoRec.freeModule; |
7026
8d1724e1337e
split OnDestroy across the appropriate modules (this doen't cause leaks on mobile, right?)
koda
parents:
7025
diff
changeset
|
506 |
end; |
3697 | 507 |
|
7026
8d1724e1337e
split OnDestroy across the appropriate modules (this doen't cause leaks on mobile, right?)
koda
parents:
7025
diff
changeset
|
508 |
uIO.freeModule; |
3038 | 509 |
uLand.freeModule; |
5066 | 510 |
uLandPainted.freeModule; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2715
diff
changeset
|
511 |
|
4413 | 512 |
uCommandHandlers.freeModule; |
4373 | 513 |
uCommands.freeModule; |
3038 | 514 |
uConsole.freeModule; |
4359 | 515 |
uVariables.freeModule; |
4374 | 516 |
uUtils.freeModule; |
3525 | 517 |
uMisc.freeModule; // uMisc closes the debug log. |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
518 |
end; |
2803
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2800
diff
changeset
|
519 |
|
2698 | 520 |
///////////////////////// |
3610 | 521 |
procedure GenLandPreview{$IFDEF HWLIBRARY}(port: LongInt); cdecl; export{$ENDIF}; |
7026
8d1724e1337e
split OnDestroy across the appropriate modules (this doen't cause leaks on mobile, right?)
koda
parents:
7025
diff
changeset
|
522 |
var Preview: TPreview; |
2698 | 523 |
begin |
3611 | 524 |
initEverything(false); |
3610 | 525 |
{$IFDEF HWLIBRARY} |
3365
37ac593e9027
wow all these files only for land preview and seed generation
koda
parents:
3312
diff
changeset
|
526 |
WriteLnToConsole('Preview connecting on port ' + inttostr(port)); |
37ac593e9027
wow all these files only for land preview and seed generation
koda
parents:
3312
diff
changeset
|
527 |
ipcPort:= port; |
6634
e00762923086
ios game configuration page supports rotation, with some enhancements (like the new slider); some glitches here and there
koda
parents:
6611
diff
changeset
|
528 |
InitStepsFlags:= cifRandomize; |
3365
37ac593e9027
wow all these files only for land preview and seed generation
koda
parents:
3312
diff
changeset
|
529 |
{$ENDIF} |
2947 | 530 |
InitIPC; |
531 |
IPCWaitPongEvent; |
|
532 |
TryDo(InitStepsFlags = cifRandomize, 'Some parameters not set (flags = ' + inttostr(InitStepsFlags) + ')', true); |
|
2698 | 533 |
|
7051 | 534 |
GenPreview(Preview); |
2947 | 535 |
WriteLnToConsole('Sending preview...'); |
536 |
SendIPCRaw(@Preview, sizeof(Preview)); |
|
3365
37ac593e9027
wow all these files only for land preview and seed generation
koda
parents:
3312
diff
changeset
|
537 |
SendIPCRaw(@MaxHedgehogs, sizeof(byte)); |
2947 | 538 |
WriteLnToConsole('Preview sent, disconnect'); |
3525 | 539 |
freeEverything(false); |
2698 | 540 |
end; |
541 |
||
3021 | 542 |
{$IFNDEF HWLIBRARY} |
2008 | 543 |
///////////////////// |
544 |
procedure DisplayUsage; |
|
2691 | 545 |
var i: LongInt; |
2008 | 546 |
begin |
7151 | 547 |
WriteLn(stdout, 'Wrong argument format: correct configurations is'); |
548 |
WriteLn(stdout, ''); |
|
549 |
WriteLn(stdout, ' hwengine <path to user hedgewars folder> <path to global data folder> <path to replay file> [options]'); |
|
550 |
WriteLn(stdout, ''); |
|
551 |
WriteLn(stdout, 'where [options] must be specified either as:'); |
|
552 |
WriteLn(stdout, ' --set-video [screen width] [screen height] [color dept]'); |
|
553 |
WriteLn(stdout, ' --set-audio [volume] [enable music] [enable sounds]'); |
|
554 |
WriteLn(stdout, ' --set-other [language file] [full screen] [show FPS]'); |
|
555 |
WriteLn(stdout, ' --set-multimedia [screen width] [screen height] [color dept] [volume] [enable music] [enable sounds] [language file] [full screen]'); |
|
556 |
WriteLn(stdout, ' --set-everything [screen width] [screen height] [color dept] [volume] [enable music] [enable sounds] [language file] [full screen] [show FPS] [alternate damage] [timer value] [reduced quality]'); |
|
557 |
WriteLn(stdout, ' --stats-only'); |
|
558 |
WriteLn(stdout, ''); |
|
559 |
WriteLn(stdout, 'Read documentation online at http://code.google.com/p/hedgewars/wiki/CommandLineOptions for more information'); |
|
560 |
WriteLn(stdout, ''); |
|
561 |
Write(stdout, 'PARSED COMMAND: '); |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
562 |
|
2947 | 563 |
for i:=0 to ParamCount do |
7151 | 564 |
Write(stdout, ParamStr(i) + ' '); |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
565 |
|
7151 | 566 |
WriteLn(stdout, ''); |
2008 | 567 |
end; |
568 |
||
51 | 569 |
//////////////////// |
3678
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
3670
diff
changeset
|
570 |
{$INCLUDE "ArgParsers.inc"} |
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
3670
diff
changeset
|
571 |
|
51 | 572 |
procedure GetParams; |
97
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
81
diff
changeset
|
573 |
begin |
5339 | 574 |
if (ParamCount < 3) then |
3678
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
3670
diff
changeset
|
575 |
GameType:= gmtSyntax |
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
3670
diff
changeset
|
576 |
else |
5339 | 577 |
if (ParamCount = 3) and ((ParamStr(3) = '--stats-only') or (ParamStr(3) = 'landpreview')) then |
3678
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
3670
diff
changeset
|
578 |
internalSetGameTypeLandPreviewFromParameters() |
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
579 |
else if ParamCount = cDefaultParamNum then |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
580 |
internalStartGameWithParameters() |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
581 |
{$IFDEF USE_VIDEO_RECORDING} |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
582 |
else if ParamCount = cVideorecParamNum then |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
583 |
internalStartVideoRecordingWithParameters() |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
584 |
{$ENDIF} |
3678
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
3670
diff
changeset
|
585 |
else |
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
586 |
playReplayFileWithParameters(); |
51 | 587 |
end; |
3021 | 588 |
|
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
589 |
//////////////////////////////////////////////////////////////////////////////// |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
590 |
/////////////////////////////// m a i n //////////////////////////////////////// |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
591 |
//////////////////////////////////////////////////////////////////////////////// |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
592 |
begin |
2947 | 593 |
GetParams(); |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
594 |
if (Length(cLocaleFName) > 6) then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
595 |
cLocale := Copy(cLocaleFName,1,5) |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
596 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
597 |
cLocale := Copy(cLocaleFName,1,2); |
2008 | 598 |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
599 |
if GameType = gmtLandPreview then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
600 |
GenLandPreview() |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
601 |
else if GameType = gmtSyntax then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6415
diff
changeset
|
602 |
DisplayUsage() |
2947 | 603 |
else Game(); |
3697 | 604 |
|
5565 | 605 |
// return 1 when engine is not called correctly |
7151 | 606 |
halt(LongInt(GameType = gmtSyntax)); |
2698 | 607 |
{$ENDIF} |
51 | 608 |
end. |