author | unc0rr |
Fri, 21 Jul 2006 20:37:44 +0000 | |
changeset 81 | d74e0e914b50 |
parent 80 | 3c3dc6a148ca |
child 97 | e7c1df9cce2c |
permissions | -rw-r--r-- |
51 | 1 |
(* |
2 |
* Hedgewars, a worms-like game |
|
3 |
* Copyright (c) 2004, 2005, 2006 Andrey Korotaev <unC0Rr@gmail.com> |
|
4 |
* |
|
5 |
* Distributed under the terms of the BSD-modified licence: |
|
6 |
* |
|
7 |
* Permission is hereby granted, free of charge, to any person obtaining a copy |
|
8 |
* of this software and associated documentation files (the "Software"), to deal |
|
9 |
* with the Software without restriction, including without limitation the |
|
10 |
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or |
|
11 |
* sell copies of the Software, and to permit persons to whom the Software is |
|
12 |
* furnished to do so, subject to the following conditions: |
|
13 |
* |
|
14 |
* 1. Redistributions of source code must retain the above copyright notice, |
|
15 |
* this list of conditions and the following disclaimer. |
|
16 |
* 2. Redistributions in binary form must reproduce the above copyright notice, |
|
17 |
* this list of conditions and the following disclaimer in the documentation |
|
18 |
* and/or other materials provided with the distribution. |
|
19 |
* 3. The name of the author may not be used to endorse or promote products |
|
20 |
* derived from this software without specific prior written permission. |
|
21 |
* |
|
22 |
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED |
|
23 |
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
|
24 |
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO |
|
25 |
* EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
|
26 |
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
|
27 |
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; |
|
28 |
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
|
29 |
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
|
30 |
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
|
31 |
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|
32 |
*) |
|
33 |
||
34 |
program hwengine; |
|
35 |
{$APPTYPE CONSOLE} |
|
36 |
uses |
|
37 |
SDLh, |
|
38 |
uConsts in 'uConsts.pas', |
|
39 |
uGame in 'uGame.pas', |
|
40 |
uMisc in 'uMisc.pas', |
|
41 |
uStore in 'uStore.pas', |
|
42 |
uWorld in 'uWorld.pas', |
|
43 |
uIO in 'uIO.pas', |
|
44 |
uGears in 'uGears.pas', |
|
45 |
uConsole in 'uConsole.pas', |
|
46 |
uKeys in 'uKeys.pas', |
|
47 |
uTeams in 'uTeams.pas', |
|
48 |
uSound in 'uSound.pas', |
|
49 |
uRandom in 'uRandom.pas', |
|
50 |
uAI in 'uAI.pas', |
|
79 | 51 |
uAIMisc in 'uAIMisc.pas', |
52 |
uAIAmmoTests in 'uAIAmmoTests.pas', |
|
53 |
uAIActions in 'uAIActions.pas', |
|
51 | 54 |
uCollisions in 'uCollisions.pas', |
55 |
uLand in 'uLand.pas', |
|
56 |
uLandTemplates in 'uLandTemplates.pas', |
|
54 | 57 |
uLandObjects in 'uLandObjects.pas', |
80 | 58 |
uLandGraphics in 'uLandGraphics.pas', |
59 |
uLocale in 'uLocale.pas'; |
|
51 | 60 |
|
61 |
{$INCLUDE options.inc} |
|
62 |
||
63 |
// also: GSHandlers.inc |
|
64 |
// CCHandlers.inc |
|
65 |
// HHHandlers.inc |
|
66 |
||
67 |
||
68 |
procedure OnDestroy; forward; |
|
69 |
||
70 |
//////////////////////////////// |
|
79 | 71 |
procedure DoTimer(Lag: integer); |
51 | 72 |
var s: string; |
73 |
begin |
|
74 |
case GameState of |
|
75 |
gsLandGen: begin |
|
76 |
GenMap; |
|
77 |
GameState:= gsStart; |
|
78 |
end; |
|
79 |
gsStart: begin |
|
80 |
AssignHHCoords; |
|
81 |
AddMiscGears; |
|
82 |
AdjustColor(cColorNearBlack); |
|
56 | 83 |
AdjustColor(cWaterColor); |
51 | 84 |
AdjustColor(cWhiteColor); |
85 |
StoreLoad; |
|
86 |
AdjustColor(cConsoleSplitterColor); |
|
87 |
ResetKbd; |
|
88 |
SoundLoad; |
|
89 |
PlayMusic; |
|
72 | 90 |
if GameType = gmtSave then |
91 |
begin |
|
92 |
isSEBackup:= isSoundEnabled; |
|
93 |
isSoundEnabled:= false |
|
94 |
end; |
|
51 | 95 |
GameState:= gsGame |
96 |
end; |
|
97 |
gsGame : begin |
|
98 |
ProcessKbd; |
|
99 |
DoGameTick(Lag); |
|
100 |
DrawWorld(Lag, SDLPrimSurface); |
|
101 |
end; |
|
102 |
gsConsole: begin |
|
103 |
DoGameTick(Lag); |
|
104 |
DrawWorld(Lag, SDLPrimSurface); |
|
105 |
DrawConsole(SDLPrimSurface); |
|
106 |
end; |
|
107 |
gsExit : begin |
|
108 |
OnDestroy; |
|
109 |
end; |
|
110 |
end; |
|
111 |
SDL_Flip(SDLPrimSurface); |
|
112 |
if flagMakeCapture then |
|
113 |
begin |
|
114 |
flagMakeCapture:= false; |
|
81 | 115 |
s:= 'hw_' + cSeed + '_' + inttostr(GameTicks) + '.bmp'; |
51 | 116 |
WriteLnToConsole('Saving ' + s); |
117 |
SDL_SaveBMP_RW(SDLPrimSurface, SDL_RWFromFile(PChar(s), 'wb'), 1) |
|
118 |
end; |
|
119 |
end; |
|
120 |
||
121 |
//////////////////// |
|
79 | 122 |
procedure OnDestroy; |
51 | 123 |
begin |
124 |
{$IFDEF DEBUGFILE}AddFileLog('Freeing resources...');{$ENDIF} |
|
125 |
if isSoundEnabled then ReleaseSound; |
|
126 |
StoreRelease; |
|
127 |
CloseIPC; |
|
128 |
TTF_Quit; |
|
129 |
SDL_Quit; |
|
130 |
halt |
|
131 |
end; |
|
132 |
||
133 |
/////////////////// |
|
134 |
procedure MainLoop; |
|
135 |
var PrevTime, |
|
136 |
CurrTime: Cardinal; |
|
137 |
event: TSDL_Event; |
|
138 |
begin |
|
139 |
PrevTime:= SDL_GetTicks; |
|
140 |
repeat |
|
141 |
while SDL_PollEvent(@event) <> 0 do |
|
142 |
case event.type_ of |
|
143 |
SDL_KEYDOWN: case GameState of |
|
144 |
gsGame: if event.key.keysym.sym = 96 then |
|
145 |
begin |
|
146 |
cConsoleYAdd:= cConsoleHeight; |
|
147 |
GameState:= gsConsole |
|
148 |
end; |
|
149 |
gsConsole: KeyPressConsole(event.key.keysym.sym); |
|
150 |
end; |
|
151 |
SDL_QUITEV: isTerminated:= true |
|
152 |
end; |
|
153 |
CurrTime:= SDL_GetTicks; |
|
154 |
if PrevTime + cTimerInterval <= CurrTime then |
|
155 |
begin |
|
156 |
DoTimer(CurrTime - PrevTime); |
|
157 |
PrevTime:= CurrTime |
|
158 |
end else {sleep(1)}; |
|
159 |
IPCCheckSock |
|
160 |
until isTerminated |
|
161 |
end; |
|
162 |
||
163 |
//////////////////// |
|
164 |
procedure GetParams; |
|
165 |
var c: integer; |
|
166 |
{$IFDEF DEBUGFILE} |
|
167 |
i: integer; |
|
168 |
begin |
|
169 |
for i:= 0 to ParamCount do |
|
170 |
AddFileLog(inttostr(i) + ': ' + ParamStr(i)); |
|
171 |
{$ELSE} |
|
172 |
begin |
|
173 |
{$ENDIF} |
|
80 | 174 |
if ParamCount = 7 then |
51 | 175 |
begin |
176 |
val(ParamStr(1), cScreenWidth, c); |
|
177 |
val(ParamStr(2), cScreenHeight, c); |
|
74 | 178 |
cBitsStr:= ParamStr(3); |
179 |
val(cBitsStr, cBits, c); |
|
51 | 180 |
val(ParamStr(4), ipcPort, c); |
55
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
54
diff
changeset
|
181 |
cFullScreen:= ParamStr(5) = '1'; |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
54
diff
changeset
|
182 |
isSoundEnabled:= ParamStr(6) = '1'; |
80 | 183 |
cLocaleFName:= ParamStr(7); |
51 | 184 |
end else OutError(errmsgShouldntRun, true); |
185 |
end; |
|
186 |
||
187 |
procedure ShowMainWindow; |
|
188 |
var flags: Longword; |
|
189 |
begin |
|
190 |
flags:= SDL_HWSURFACE or SDL_DOUBLEBUF or SDL_HWACCEL; |
|
191 |
if cFullScreen then flags:= flags or SDL_FULLSCREEN |
|
192 |
else SDL_WM_SetCaption('Hedgewars', nil); |
|
193 |
SDLPrimSurface:= SDL_SetVideoMode(cScreenWidth, cScreenHeight, cBits, flags); |
|
194 |
TryDo(SDLPrimSurface <> nil, errmsgCreateSurface, true); |
|
195 |
PixelFormat:= SDLPrimSurface.format; |
|
196 |
SDL_ShowCursor(0); |
|
197 |
end; |
|
198 |
//////////////////////////////////////////////////////////////////////////////// |
|
199 |
/////////////////////////////// m a i n //////////////////////////////////////// |
|
200 |
//////////////////////////////////////////////////////////////////////////////// |
|
201 |
||
202 |
begin |
|
74 | 203 |
WriteLnToConsole('-= HedgeWars 0.2 =-'); |
51 | 204 |
WriteLnToConsole(' -= by unC0Rr =- '); |
205 |
GetParams; |
|
206 |
Randomize; |
|
207 |
||
208 |
WriteToConsole('Init SDL... '); |
|
209 |
SDLTry(SDL_Init(SDL_INIT_VIDEO) >= 0, true); |
|
210 |
WriteLnToConsole(msgOK); |
|
211 |
||
212 |
WriteToConsole('Init SDL_ttf... '); |
|
213 |
SDLTry(TTF_Init >= 0, true); |
|
214 |
WriteLnToConsole(msgOK); |
|
215 |
||
216 |
ShowMainWindow; |
|
217 |
||
218 |
InitKbdKeyTable; |
|
219 |
InitIPC; |
|
220 |
WriteLnToConsole(msgGettingConfig); |
|
80 | 221 |
|
222 |
LoadLocale(Pathz[ptLocale] + '/' + cLocaleFName); |
|
223 |
||
224 |
SendIPCAndWaitReply('C'); // ask for game config |
|
51 | 225 |
InitTeams; |
226 |
||
227 |
if isSoundEnabled then InitSound; |
|
228 |
InitWorld; |
|
229 |
||
230 |
StoreInit; |
|
231 |
||
232 |
isDeveloperMode:= false; |
|
233 |
||
55
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
54
diff
changeset
|
234 |
TryDo(InitStepsFlags = cifAllInited, |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
54
diff
changeset
|
235 |
'Some parameters not set (flags = ' + inttostr(InitStepsFlags) + ')', |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
54
diff
changeset
|
236 |
true); |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
54
diff
changeset
|
237 |
|
51 | 238 |
MainLoop |
239 |
||
240 |
end. |