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);
|
|
83 |
AdjustColor(cWhiteColor);
|
|
84 |
StoreLoad;
|
|
85 |
AdjustColor(cConsoleSplitterColor);
|
|
86 |
ResetKbd;
|
|
87 |
SoundLoad;
|
|
88 |
PlayMusic;
|
|
89 |
GameState:= gsGame
|
|
90 |
end;
|
|
91 |
gsGame : begin
|
|
92 |
ProcessKbd;
|
|
93 |
DoGameTick(Lag);
|
|
94 |
DrawWorld(Lag, SDLPrimSurface);
|
|
95 |
end;
|
|
96 |
gsConsole: begin
|
|
97 |
DoGameTick(Lag);
|
|
98 |
DrawWorld(Lag, SDLPrimSurface);
|
|
99 |
DrawConsole(SDLPrimSurface);
|
|
100 |
end;
|
|
101 |
gsExit : begin
|
|
102 |
OnDestroy;
|
|
103 |
end;
|
|
104 |
end;
|
|
105 |
SDL_Flip(SDLPrimSurface);
|
|
106 |
if flagMakeCapture then
|
|
107 |
begin
|
|
108 |
flagMakeCapture:= false;
|
|
109 |
s:= 'hw_' + ParamStr(5) + '_' + inttostr(GameTicks) + '.bmp';
|
|
110 |
WriteLnToConsole('Saving ' + s);
|
|
111 |
SDL_SaveBMP_RW(SDLPrimSurface, SDL_RWFromFile(PChar(s), 'wb'), 1)
|
|
112 |
end;
|
|
113 |
end;
|
|
114 |
|
|
115 |
////////////////////
|
|
116 |
procedure OnDestroy; // - очищаем память
|
|
117 |
begin
|
|
118 |
{$IFDEF DEBUGFILE}AddFileLog('Freeing resources...');{$ENDIF}
|
|
119 |
if isSoundEnabled then ReleaseSound;
|
|
120 |
StoreRelease;
|
|
121 |
CloseIPC;
|
|
122 |
TTF_Quit;
|
|
123 |
SDL_Quit;
|
|
124 |
halt
|
|
125 |
end;
|
|
126 |
|
|
127 |
///////////////////
|
|
128 |
procedure MainLoop;
|
|
129 |
var PrevTime,
|
|
130 |
CurrTime: Cardinal;
|
|
131 |
event: TSDL_Event;
|
|
132 |
begin
|
|
133 |
PrevTime:= SDL_GetTicks;
|
|
134 |
repeat
|
|
135 |
while SDL_PollEvent(@event) <> 0 do
|
|
136 |
case event.type_ of
|
|
137 |
SDL_KEYDOWN: case GameState of
|
|
138 |
gsGame: if event.key.keysym.sym = 96 then
|
|
139 |
begin
|
|
140 |
cConsoleYAdd:= cConsoleHeight;
|
|
141 |
GameState:= gsConsole
|
|
142 |
end;
|
|
143 |
gsConsole: KeyPressConsole(event.key.keysym.sym);
|
|
144 |
end;
|
|
145 |
SDL_QUITEV: isTerminated:= true
|
|
146 |
end;
|
|
147 |
CurrTime:= SDL_GetTicks;
|
|
148 |
if PrevTime + cTimerInterval <= CurrTime then
|
|
149 |
begin
|
|
150 |
DoTimer(CurrTime - PrevTime);
|
|
151 |
PrevTime:= CurrTime
|
|
152 |
end else {sleep(1)};
|
|
153 |
IPCCheckSock
|
|
154 |
until isTerminated
|
|
155 |
end;
|
|
156 |
|
|
157 |
////////////////////
|
|
158 |
procedure GetParams;
|
|
159 |
var c: integer;
|
53
|
160 |
s: string;
|
51
|
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);
|
53
|
173 |
// "/mapname" is map, "avematan" is theme
|
|
174 |
s:= ParamStr(3);
|
|
175 |
if (Length(s) > 0) and (s[1] = '/') then Pathz[ptMapCurrent]:= Pathz[ptMaps] + s
|
|
176 |
else Pathz[ptThemeCurrent]:= Pathz[ptThemes] + '/' + ParamStr(3);
|
51
|
177 |
val(ParamStr(4), ipcPort, c);
|
|
178 |
SetRandomParams(ParamStr(5), rndfillstr);
|
|
179 |
cFullScreen:= ParamStr(6)[1] = '1'
|
|
180 |
end else OutError(errmsgShouldntRun, true);
|
|
181 |
end;
|
|
182 |
|
|
183 |
procedure ShowMainWindow;
|
|
184 |
var flags: Longword;
|
|
185 |
begin
|
|
186 |
flags:= SDL_HWSURFACE or SDL_DOUBLEBUF or SDL_HWACCEL;
|
|
187 |
if cFullScreen then flags:= flags or SDL_FULLSCREEN
|
|
188 |
else SDL_WM_SetCaption('Hedgewars', nil);
|
|
189 |
SDLPrimSurface:= SDL_SetVideoMode(cScreenWidth, cScreenHeight, cBits, flags);
|
|
190 |
TryDo(SDLPrimSurface <> nil, errmsgCreateSurface, true);
|
|
191 |
PixelFormat:= SDLPrimSurface.format;
|
|
192 |
SDL_ShowCursor(0);
|
|
193 |
end;
|
|
194 |
////////////////////////////////////////////////////////////////////////////////
|
|
195 |
/////////////////////////////// m a i n ////////////////////////////////////////
|
|
196 |
////////////////////////////////////////////////////////////////////////////////
|
|
197 |
|
|
198 |
begin
|
53
|
199 |
WriteLnToConsole('HedgeWars 0.1 alpha');
|
51
|
200 |
WriteLnToConsole(' -= by unC0Rr =- ');
|
|
201 |
GetParams;
|
|
202 |
Randomize;
|
|
203 |
|
|
204 |
WriteToConsole('Init SDL... ');
|
|
205 |
SDLTry(SDL_Init(SDL_INIT_VIDEO) >= 0, true);
|
|
206 |
WriteLnToConsole(msgOK);
|
|
207 |
|
|
208 |
WriteToConsole('Init SDL_ttf... ');
|
|
209 |
SDLTry(TTF_Init >= 0, true);
|
|
210 |
WriteLnToConsole(msgOK);
|
|
211 |
|
|
212 |
ShowMainWindow;
|
|
213 |
|
|
214 |
InitKbdKeyTable;
|
|
215 |
InitIPC;
|
|
216 |
WriteLnToConsole(msgGettingConfig);
|
|
217 |
SendIPCAndWaitReply('C'); // запрос конфига игры
|
|
218 |
InitTeams;
|
|
219 |
|
|
220 |
if isSoundEnabled then InitSound;
|
|
221 |
InitWorld;
|
|
222 |
|
|
223 |
StoreInit;
|
|
224 |
|
|
225 |
isDeveloperMode:= false;
|
|
226 |
|
|
227 |
MainLoop
|
|
228 |
|
|
229 |
end.
|