author | unc0rr |
Wed, 01 Feb 2006 20:42:53 +0000 | |
changeset 57 | e1a77ae57065 |
parent 56 | a29135563e94 |
child 64 | 9df467527ae5 |
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', |
|
51 |
uAIActions in 'uAIActions.pas', |
|
52 |
uAIMisc in 'uAIMisc.pas', |
|
53 |
uAIAmmoTests in 'uAIAmmoTests.pas', |
|
54 |
uCollisions in 'uCollisions.pas', |
|
55 |
uLand in 'uLand.pas', |
|
56 |
uLandTemplates in 'uLandTemplates.pas', |
|
54 | 57 |
uLandObjects in 'uLandObjects.pas', |
58 |
uLandGraphics in 'uLandGraphics.pas'; |
|
51 | 59 |
|
60 |
{$INCLUDE options.inc} |
|
61 |
||
62 |
// also: GSHandlers.inc |
|
63 |
// CCHandlers.inc |
|
64 |
// HHHandlers.inc |
|
65 |
||
66 |
||
67 |
procedure OnDestroy; forward; |
|
68 |
||
69 |
//////////////////////////////// |
|
70 |
procedure DoTimer(Lag: integer); // - обработка таймера |
|
71 |
const cCons: boolean = false; |
|
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; |
|
90 |
GameState:= gsGame |
|
91 |
end; |
|
92 |
gsGame : begin |
|
93 |
ProcessKbd; |
|
94 |
DoGameTick(Lag); |
|
95 |
DrawWorld(Lag, SDLPrimSurface); |
|
96 |
end; |
|
97 |
gsConsole: begin |
|
98 |
DoGameTick(Lag); |
|
99 |
DrawWorld(Lag, SDLPrimSurface); |
|
100 |
DrawConsole(SDLPrimSurface); |
|
101 |
end; |
|
102 |
gsExit : begin |
|
103 |
OnDestroy; |
|
104 |
end; |
|
105 |
end; |
|
106 |
SDL_Flip(SDLPrimSurface); |
|
107 |
if flagMakeCapture then |
|
108 |
begin |
|
109 |
flagMakeCapture:= false; |
|
110 |
s:= 'hw_' + ParamStr(5) + '_' + inttostr(GameTicks) + '.bmp'; |
|
111 |
WriteLnToConsole('Saving ' + s); |
|
112 |
SDL_SaveBMP_RW(SDLPrimSurface, SDL_RWFromFile(PChar(s), 'wb'), 1) |
|
113 |
end; |
|
114 |
end; |
|
115 |
||
116 |
//////////////////// |
|
117 |
procedure OnDestroy; // - очищаем память |
|
118 |
begin |
|
119 |
{$IFDEF DEBUGFILE}AddFileLog('Freeing resources...');{$ENDIF} |
|
120 |
if isSoundEnabled then ReleaseSound; |
|
121 |
StoreRelease; |
|
122 |
CloseIPC; |
|
123 |
TTF_Quit; |
|
124 |
SDL_Quit; |
|
125 |
halt |
|
126 |
end; |
|
127 |
||
128 |
/////////////////// |
|
129 |
procedure MainLoop; |
|
130 |
var PrevTime, |
|
131 |
CurrTime: Cardinal; |
|
132 |
event: TSDL_Event; |
|
133 |
begin |
|
134 |
PrevTime:= SDL_GetTicks; |
|
135 |
repeat |
|
136 |
while SDL_PollEvent(@event) <> 0 do |
|
137 |
case event.type_ of |
|
138 |
SDL_KEYDOWN: case GameState of |
|
139 |
gsGame: if event.key.keysym.sym = 96 then |
|
140 |
begin |
|
141 |
cConsoleYAdd:= cConsoleHeight; |
|
142 |
GameState:= gsConsole |
|
143 |
end; |
|
144 |
gsConsole: KeyPressConsole(event.key.keysym.sym); |
|
145 |
end; |
|
146 |
SDL_QUITEV: isTerminated:= true |
|
147 |
end; |
|
148 |
CurrTime:= SDL_GetTicks; |
|
149 |
if PrevTime + cTimerInterval <= CurrTime then |
|
150 |
begin |
|
151 |
DoTimer(CurrTime - PrevTime); |
|
152 |
PrevTime:= CurrTime |
|
153 |
end else {sleep(1)}; |
|
154 |
IPCCheckSock |
|
155 |
until isTerminated |
|
156 |
end; |
|
157 |
||
158 |
//////////////////// |
|
159 |
procedure GetParams; |
|
160 |
var c: integer; |
|
161 |
{$IFDEF DEBUGFILE} |
|
162 |
i: integer; |
|
163 |
begin |
|
164 |
for i:= 0 to ParamCount do |
|
165 |
AddFileLog(inttostr(i) + ': ' + ParamStr(i)); |
|
166 |
{$ELSE} |
|
167 |
begin |
|
168 |
{$ENDIF} |
|
169 |
if ParamCount=6 then |
|
170 |
begin |
|
171 |
val(ParamStr(1), cScreenWidth, c); |
|
172 |
val(ParamStr(2), cScreenHeight, c); |
|
55
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
54
diff
changeset
|
173 |
val(ParamStr(3), cBits, c); |
51 | 174 |
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
|
175 |
cFullScreen:= ParamStr(5) = '1'; |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
54
diff
changeset
|
176 |
isSoundEnabled:= ParamStr(6) = '1'; |
51 | 177 |
end else OutError(errmsgShouldntRun, true); |
178 |
end; |
|
179 |
||
180 |
procedure ShowMainWindow; |
|
181 |
var flags: Longword; |
|
182 |
begin |
|
183 |
flags:= SDL_HWSURFACE or SDL_DOUBLEBUF or SDL_HWACCEL; |
|
184 |
if cFullScreen then flags:= flags or SDL_FULLSCREEN |
|
185 |
else SDL_WM_SetCaption('Hedgewars', nil); |
|
186 |
SDLPrimSurface:= SDL_SetVideoMode(cScreenWidth, cScreenHeight, cBits, flags); |
|
187 |
TryDo(SDLPrimSurface <> nil, errmsgCreateSurface, true); |
|
188 |
PixelFormat:= SDLPrimSurface.format; |
|
189 |
SDL_ShowCursor(0); |
|
190 |
end; |
|
191 |
//////////////////////////////////////////////////////////////////////////////// |
|
192 |
/////////////////////////////// m a i n //////////////////////////////////////// |
|
193 |
//////////////////////////////////////////////////////////////////////////////// |
|
194 |
||
195 |
begin |
|
53 | 196 |
WriteLnToConsole('HedgeWars 0.1 alpha'); |
51 | 197 |
WriteLnToConsole(' -= by unC0Rr =- '); |
198 |
GetParams; |
|
199 |
Randomize; |
|
200 |
||
201 |
WriteToConsole('Init SDL... '); |
|
202 |
SDLTry(SDL_Init(SDL_INIT_VIDEO) >= 0, true); |
|
203 |
WriteLnToConsole(msgOK); |
|
204 |
||
205 |
WriteToConsole('Init SDL_ttf... '); |
|
206 |
SDLTry(TTF_Init >= 0, true); |
|
207 |
WriteLnToConsole(msgOK); |
|
208 |
||
209 |
ShowMainWindow; |
|
210 |
||
211 |
InitKbdKeyTable; |
|
212 |
InitIPC; |
|
213 |
WriteLnToConsole(msgGettingConfig); |
|
214 |
SendIPCAndWaitReply('C'); // запрос конфига игры |
|
215 |
InitTeams; |
|
216 |
||
217 |
if isSoundEnabled then InitSound; |
|
218 |
InitWorld; |
|
219 |
||
220 |
StoreInit; |
|
221 |
||
222 |
isDeveloperMode:= false; |
|
223 |
||
55
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
54
diff
changeset
|
224 |
TryDo(InitStepsFlags = cifAllInited, |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
54
diff
changeset
|
225 |
'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
|
226 |
true); |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
54
diff
changeset
|
227 |
|
51 | 228 |
MainLoop |
229 |
||
230 |
end. |