author | nemo |
Wed, 24 Feb 2010 01:55:59 +0000 | |
changeset 2855 | 7e6adeb57427 |
parent 2826 | fbcfc86ef477 |
child 2856 | cc70797a0b75 |
permissions | -rw-r--r-- |
4 | 1 |
(* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
883 | 3 |
* Copyright (c) 2004-2008 Andrey Korotaev <unC0Rr@gmail.com> |
4 | 4 |
* |
183 | 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 |
|
4 | 8 |
* |
183 | 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. |
|
4 | 13 |
* |
183 | 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 |
|
4 | 17 |
*) |
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 |
|
4 | 21 |
unit uTeams; |
22 |
interface |
|
2768
b7e0b0751179
Request by soreau. Placement time proportional to map size.
nemo
parents:
2763
diff
changeset
|
23 |
uses SDLh, uConsts, uKeys, uGears, uRandom, uFloat, uStats, uVisualGears, uCollisions, uLand, |
2152 | 24 |
{$IFDEF GLES11} |
1906 | 25 |
gles11, |
26 |
{$ELSE} |
|
27 |
GL, |
|
28 |
{$ENDIF} |
|
29 |
uSound; |
|
534 | 30 |
|
31 |
type PHHAmmo = ^THHAmmo; |
|
1299 | 32 |
THHAmmo = array[0..cMaxSlotIndex, 0..cMaxSlotAmmoIndex] of TAmmo; |
534 | 33 |
|
1299 | 34 |
PHedgehog = ^THedgehog; |
35 |
PTeam = ^TTeam; |
|
36 |
PClan = ^TClan; |
|
2376 | 37 |
|
1299 | 38 |
THedgehog = record |
39 |
Name: string[MAXNAMELEN]; |
|
40 |
Gear: PGear; |
|
2042
905c554d62e6
Move Speech to visual gears. This checkin CRASHES on deletion of visual gear outside the doStep
nemo
parents:
2040
diff
changeset
|
41 |
SpeechGear: PVisualGear; |
1299 | 42 |
NameTagTex, |
43 |
HealthTagTex, |
|
44 |
HatTex: PTexture; |
|
45 |
Ammo: PHHAmmo; |
|
46 |
AmmoStore: Longword; |
|
47 |
CurSlot, CurAmmo: LongWord; |
|
48 |
Team: PTeam; |
|
2608 | 49 |
MultiShootAttacks: Longword; |
1299 | 50 |
visStepPos: LongWord; |
51 |
BotLevel : LongWord; // 0 - Human player |
|
52 |
HatVisibility: GLfloat; |
|
53 |
stats: TStatistics; |
|
54 |
Hat: String; |
|
2726 | 55 |
King: boolean; // Flag for a bunch of hedgehog attributes |
2762
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2758
diff
changeset
|
56 |
Unplaced: boolean; // Flag for hog placing mode |
1299 | 57 |
end; |
2376 | 58 |
|
1299 | 59 |
TTeam = record |
60 |
Clan: PClan; |
|
61 |
TeamName: string[MAXNAMELEN]; |
|
62 |
ExtDriven: boolean; |
|
63 |
Binds: TBinds; |
|
64 |
Hedgehogs: array[0..cMaxHHIndex] of THedgehog; |
|
65 |
CurrHedgehog: LongWord; |
|
66 |
NameTagTex: PTexture; |
|
67 |
CrosshairTex, |
|
68 |
GraveTex, |
|
2747 | 69 |
HealthTex, |
70 |
FlagTex: PTexture; |
|
71 |
Flag: string; |
|
1299 | 72 |
GraveName: string; |
73 |
FortName: string; |
|
74 |
TeamHealth: LongInt; |
|
75 |
TeamHealthBarWidth, |
|
76 |
NewTeamHealthBarWidth: LongInt; |
|
77 |
DrawHealthY: LongInt; |
|
78 |
AttackBar: LongWord; |
|
79 |
HedgehogsNumber: Longword; |
|
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1299
diff
changeset
|
80 |
hasGone: boolean; |
1654 | 81 |
voicepack: PVoicepack; |
1299 | 82 |
end; |
2376 | 83 |
|
1299 | 84 |
TClan = record |
85 |
Color: Longword; |
|
86 |
Teams: array[0..Pred(cMaxTeams)] of PTeam; |
|
87 |
TeamsNumber: Longword; |
|
88 |
CurrTeam: LongWord; |
|
89 |
ClanHealth: LongInt; |
|
90 |
ClanIndex: LongInt; |
|
91 |
TurnNumber: LongWord; |
|
92 |
end; |
|
4 | 93 |
|
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2695
diff
changeset
|
94 |
var CurrentTeam: PTeam; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2695
diff
changeset
|
95 |
PreviousTeam: PTeam; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2695
diff
changeset
|
96 |
CurrentHedgehog: PHedgehog; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2695
diff
changeset
|
97 |
TeamsArray: array[0..Pred(cMaxTeams)] of PTeam; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2695
diff
changeset
|
98 |
TeamsCount: Longword; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2695
diff
changeset
|
99 |
ClansArray: array[0..Pred(cMaxTeams)] of PClan; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2695
diff
changeset
|
100 |
ClansCount: Longword; |
2855
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2826
diff
changeset
|
101 |
LocalClan: Longword; // last non-bot, non-extdriven clan |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2826
diff
changeset
|
102 |
LocalAmmo: Longword; // last non-bot, non-extdriven clan's first team's ammo index |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2695
diff
changeset
|
103 |
CurMinAngle, CurMaxAngle: Longword; |
4 | 104 |
|
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2695
diff
changeset
|
105 |
procedure init_uTeams; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2695
diff
changeset
|
106 |
procedure free_uTeams; |
1058
c53c5c4e7b48
- Proper turns counting, split SwitchHedgehog into two functions
unc0rr
parents:
1011
diff
changeset
|
107 |
function AddTeam(TeamColor: Longword): PTeam; |
4 | 108 |
procedure SwitchHedgehog; |
1058
c53c5c4e7b48
- Proper turns counting, split SwitchHedgehog into two functions
unc0rr
parents:
1011
diff
changeset
|
109 |
procedure AfterSwitchHedgehog; |
4 | 110 |
procedure InitTeams; |
111 |
function TeamSize(p: PTeam): Longword; |
|
47 | 112 |
procedure RecountTeamHealth(team: PTeam); |
72 | 113 |
procedure RestoreTeamsFromSave; |
1058
c53c5c4e7b48
- Proper turns counting, split SwitchHedgehog into two functions
unc0rr
parents:
1011
diff
changeset
|
114 |
function CheckForWin: boolean; |
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1299
diff
changeset
|
115 |
procedure TeamGone(s: shortstring); |
2040 | 116 |
procedure TeamGoneEffect(var Team: TTeam); |
4 | 117 |
|
118 |
implementation |
|
2042
905c554d62e6
Move Speech to visual gears. This checkin CRASHES on deletion of visual gear outside the doStep
nemo
parents:
2040
diff
changeset
|
119 |
uses uMisc, uWorld, uAI, uLocale, uConsole, uAmmos, uChat; |
371 | 120 |
const MaxTeamHealth: LongInt = 0; |
4 | 121 |
|
92
0c359a7a2356
- Fix win message to appear only after all hedgehogs death
unc0rr
parents:
89
diff
changeset
|
122 |
function CheckForWin: boolean; |
576 | 123 |
var AliveClan: PClan; |
306 | 124 |
s: shortstring; |
1011 | 125 |
t, AliveCount, i, j: LongInt; |
83 | 126 |
begin |
548 | 127 |
AliveCount:= 0; |
549 | 128 |
for t:= 0 to Pred(ClansCount) do |
1299 | 129 |
if ClansArray[t]^.ClanHealth > 0 then |
130 |
begin |
|
131 |
inc(AliveCount); |
|
132 |
AliveClan:= ClansArray[t] |
|
133 |
end; |
|
548 | 134 |
|
1299 | 135 |
if (AliveCount > 1) |
136 |
or ((AliveCount = 1) and ((GameFlags and gfOneClanMode) <> 0)) then exit(false); |
|
351 | 137 |
CheckForWin:= true; |
83 | 138 |
|
139 |
TurnTimeLeft:= 0; |
|
548 | 140 |
if AliveCount = 0 then |
1011 | 141 |
begin // draw |
2619 | 142 |
AddCaption(trmsg[sidDraw], cWhiteColor, capgrpGameState); |
1011 | 143 |
SendStat(siGameResult, trmsg[sidDraw]); |
144 |
AddGear(0, 0, gtATFinishGame, 0, _0, _0, 3000) |
|
145 |
end else // win |
|
146 |
with AliveClan^ do |
|
147 |
begin |
|
148 |
if TeamsNumber = 1 then |
|
149 |
s:= Format(trmsg[sidWinner], Teams[0]^.TeamName) // team wins |
|
150 |
else |
|
151 |
s:= Format(trmsg[sidWinner], Teams[0]^.TeamName); // clan wins |
|
549 | 152 |
|
1011 | 153 |
for j:= 0 to Pred(TeamsNumber) do |
154 |
with Teams[j]^ do |
|
155 |
for i:= 0 to cMaxHHIndex do |
|
156 |
with Hedgehogs[i] do |
|
157 |
if (Gear <> nil) then |
|
158 |
Gear^.State:= gstWinner; |
|
2376 | 159 |
|
2619 | 160 |
AddCaption(s, cWhiteColor, capgrpGameState); |
1011 | 161 |
SendStat(siGameResult, s); |
162 |
AddGear(0, 0, gtATFinishGame, 0, _0, _0, 3000) |
|
163 |
end; |
|
307 | 164 |
SendStats |
83 | 165 |
end; |
166 |
||
4 | 167 |
procedure SwitchHedgehog; |
551 | 168 |
var c: LongWord; |
552 | 169 |
PrevHH, PrevTeam: LongWord; |
4 | 170 |
begin |
171 |
TargetPoint.X:= NoPointX; |
|
89 | 172 |
TryDo(CurrentTeam <> nil, 'nil Team', true); |
2762
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2758
diff
changeset
|
173 |
with CurrentHedgehog^ do |
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2758
diff
changeset
|
174 |
if (PreviousTeam <> nil) and PlacingHogs and Unplaced then |
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2758
diff
changeset
|
175 |
begin |
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2758
diff
changeset
|
176 |
Unplaced:= false; |
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2758
diff
changeset
|
177 |
if Gear <> nil then |
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2758
diff
changeset
|
178 |
begin |
2763
f21d3ca74ef2
Do CI correctly. Still need to allow for mode in case of no teleports in ammo
nemo
parents:
2762
diff
changeset
|
179 |
DeleteCI(Gear); |
2762
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2758
diff
changeset
|
180 |
FindPlace(Gear, false, 0, LAND_WIDTH); |
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2758
diff
changeset
|
181 |
if Gear <> nil then AddGearCI(Gear) |
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2758
diff
changeset
|
182 |
end |
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2758
diff
changeset
|
183 |
end; |
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2758
diff
changeset
|
184 |
|
1678 | 185 |
PreviousTeam:= CurrentTeam; |
547 | 186 |
|
944 | 187 |
with CurrentHedgehog^ do |
2762
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2758
diff
changeset
|
188 |
begin |
1299 | 189 |
if Gear <> nil then |
190 |
begin |
|
2608 | 191 |
MultiShootAttacks:= 0; |
1299 | 192 |
Gear^.Message:= 0; |
193 |
Gear^.Z:= cHHZ; |
|
194 |
RemoveGearFromList(Gear); |
|
195 |
InsertGearToList(Gear) |
|
2762
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2758
diff
changeset
|
196 |
end |
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2758
diff
changeset
|
197 |
end; |
4 | 198 |
|
550 | 199 |
c:= CurrentTeam^.Clan^.ClanIndex; |
4 | 200 |
repeat |
1058
c53c5c4e7b48
- Proper turns counting, split SwitchHedgehog into two functions
unc0rr
parents:
1011
diff
changeset
|
201 |
inc(c); |
c53c5c4e7b48
- Proper turns counting, split SwitchHedgehog into two functions
unc0rr
parents:
1011
diff
changeset
|
202 |
if c = ClansCount then |
c53c5c4e7b48
- Proper turns counting, split SwitchHedgehog into two functions
unc0rr
parents:
1011
diff
changeset
|
203 |
begin |
2762
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2758
diff
changeset
|
204 |
if not PlacingHogs then inc(TotalRounds); |
1058
c53c5c4e7b48
- Proper turns counting, split SwitchHedgehog into two functions
unc0rr
parents:
1011
diff
changeset
|
205 |
c:= 0 |
c53c5c4e7b48
- Proper turns counting, split SwitchHedgehog into two functions
unc0rr
parents:
1011
diff
changeset
|
206 |
end; |
c53c5c4e7b48
- Proper turns counting, split SwitchHedgehog into two functions
unc0rr
parents:
1011
diff
changeset
|
207 |
|
c53c5c4e7b48
- Proper turns counting, split SwitchHedgehog into two functions
unc0rr
parents:
1011
diff
changeset
|
208 |
with ClansArray[c]^ do |
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1299
diff
changeset
|
209 |
begin |
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1299
diff
changeset
|
210 |
PrevTeam:= CurrTeam; |
1058
c53c5c4e7b48
- Proper turns counting, split SwitchHedgehog into two functions
unc0rr
parents:
1011
diff
changeset
|
211 |
repeat |
c53c5c4e7b48
- Proper turns counting, split SwitchHedgehog into two functions
unc0rr
parents:
1011
diff
changeset
|
212 |
CurrTeam:= Succ(CurrTeam) mod TeamsNumber; |
c53c5c4e7b48
- Proper turns counting, split SwitchHedgehog into two functions
unc0rr
parents:
1011
diff
changeset
|
213 |
CurrentTeam:= Teams[CurrTeam]; |
c53c5c4e7b48
- Proper turns counting, split SwitchHedgehog into two functions
unc0rr
parents:
1011
diff
changeset
|
214 |
with CurrentTeam^ do |
c53c5c4e7b48
- Proper turns counting, split SwitchHedgehog into two functions
unc0rr
parents:
1011
diff
changeset
|
215 |
begin |
2726 | 216 |
PrevHH:= CurrHedgehog mod HedgehogsNumber; // prevent infinite loop when CurrHedgehog = 7, but HedgehogsNumber < 8 (team is destroyed before its first turn) |
1058
c53c5c4e7b48
- Proper turns counting, split SwitchHedgehog into two functions
unc0rr
parents:
1011
diff
changeset
|
217 |
repeat |
c53c5c4e7b48
- Proper turns counting, split SwitchHedgehog into two functions
unc0rr
parents:
1011
diff
changeset
|
218 |
CurrHedgehog:= Succ(CurrHedgehog) mod HedgehogsNumber; |
c53c5c4e7b48
- Proper turns counting, split SwitchHedgehog into two functions
unc0rr
parents:
1011
diff
changeset
|
219 |
until (Hedgehogs[CurrHedgehog].Gear <> nil) or (CurrHedgehog = PrevHH) |
1299 | 220 |
end |
2040 | 221 |
until (CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog].Gear <> nil) or (PrevTeam = CurrTeam); |
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1299
diff
changeset
|
222 |
end |
2040 | 223 |
until (CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog].Gear <> nil); |
83 | 224 |
|
1058
c53c5c4e7b48
- Proper turns counting, split SwitchHedgehog into two functions
unc0rr
parents:
1011
diff
changeset
|
225 |
CurrentHedgehog:= @(CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog]) |
c53c5c4e7b48
- Proper turns counting, split SwitchHedgehog into two functions
unc0rr
parents:
1011
diff
changeset
|
226 |
end; |
c53c5c4e7b48
- Proper turns counting, split SwitchHedgehog into two functions
unc0rr
parents:
1011
diff
changeset
|
227 |
|
c53c5c4e7b48
- Proper turns counting, split SwitchHedgehog into two functions
unc0rr
parents:
1011
diff
changeset
|
228 |
procedure AfterSwitchHedgehog; |
c53c5c4e7b48
- Proper turns counting, split SwitchHedgehog into two functions
unc0rr
parents:
1011
diff
changeset
|
229 |
var g: PGear; |
2762
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2758
diff
changeset
|
230 |
i, t: LongInt; |
1058
c53c5c4e7b48
- Proper turns counting, split SwitchHedgehog into two functions
unc0rr
parents:
1011
diff
changeset
|
231 |
begin |
2762
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2758
diff
changeset
|
232 |
if PlacingHogs then |
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2758
diff
changeset
|
233 |
begin |
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2758
diff
changeset
|
234 |
PlacingHogs:= false; |
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2758
diff
changeset
|
235 |
for t:= 0 to Pred(TeamsCount) do |
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2758
diff
changeset
|
236 |
for i:= 0 to cMaxHHIndex do |
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2758
diff
changeset
|
237 |
if (TeamsArray[t]^.Hedgehogs[i].Gear <> nil) and (TeamsArray[t]^.Hedgehogs[i].Unplaced) then |
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2758
diff
changeset
|
238 |
PlacingHogs:= true; |
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2758
diff
changeset
|
239 |
|
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2758
diff
changeset
|
240 |
if not PlacingHogs then // Reset various things I mucked with |
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2758
diff
changeset
|
241 |
begin |
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2758
diff
changeset
|
242 |
for i:= 0 to ClansCount do |
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2758
diff
changeset
|
243 |
if ClansArray[i] <> nil then ClansArray[i]^.TurnNumber:= 0; |
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2758
diff
changeset
|
244 |
ResetWeapons |
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2758
diff
changeset
|
245 |
end |
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2758
diff
changeset
|
246 |
end; |
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2758
diff
changeset
|
247 |
|
2431
23242609c44b
Real fix to ammo slot overflow (bug triggered by r2411 fix)
unc0rr
parents:
2376
diff
changeset
|
248 |
inc(CurrentTeam^.Clan^.TurnNumber); |
23242609c44b
Real fix to ammo slot overflow (bug triggered by r2411 fix)
unc0rr
parents:
2376
diff
changeset
|
249 |
|
1922 | 250 |
SwitchNotHeldAmmo(CurrentHedgehog^); |
2431
23242609c44b
Real fix to ammo slot overflow (bug triggered by r2411 fix)
unc0rr
parents:
2376
diff
changeset
|
251 |
|
602 | 252 |
with CurrentHedgehog^ do |
1299 | 253 |
begin |
254 |
with Gear^ do |
|
255 |
begin |
|
256 |
Z:= cCurrHHZ; |
|
257 |
State:= gstHHDriven; |
|
258 |
Active:= true |
|
259 |
end; |
|
260 |
RemoveGearFromList(Gear); |
|
261 |
InsertGearToList(Gear); |
|
262 |
FollowGear:= Gear |
|
263 |
end; |
|
941
b5222ddafe1f
- Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents:
927
diff
changeset
|
264 |
|
4 | 265 |
ResetKbd; |
351 | 266 |
|
267 |
cWindSpeed:= rndSign(GetRandom * cMaxWindSpeed); |
|
498 | 268 |
g:= AddGear(0, 0, gtATSmoothWindCh, 0, _0, _0, 1); |
351 | 269 |
g^.Tag:= hwRound(cWindSpeed * 72 / cMaxWindSpeed); |
4 | 270 |
{$IFDEF DEBUGFILE}AddFileLog('Wind = '+FloatToStr(cWindSpeed));{$ENDIF} |
602 | 271 |
ApplyAmmoChanges(CurrentHedgehog^); |
800 | 272 |
|
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2715
diff
changeset
|
273 |
{$IFNDEF IPHONEOS} |
1650
a65681cc27c2
Don't fallback to default binds set when switching to remotely driven team
unc0rr
parents:
1495
diff
changeset
|
274 |
if not CurrentTeam^.ExtDriven then SetBinds(CurrentTeam^.Binds); |
2579 | 275 |
{$ENDIF} |
1650
a65681cc27c2
Don't fallback to default binds set when switching to remotely driven team
unc0rr
parents:
1495
diff
changeset
|
276 |
|
176 | 277 |
bShowFinger:= true; |
800 | 278 |
|
801 | 279 |
if (CurrentTeam^.ExtDriven or (CurrentHedgehog^.BotLevel > 0)) then |
2745 | 280 |
PlaySound(sndIllGetYou, CurrentTeam^.voicepack) |
801 | 281 |
else |
2745 | 282 |
PlaySound(sndYesSir, CurrentTeam^.voicepack); |
800 | 283 |
|
2762
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2758
diff
changeset
|
284 |
if PlacingHogs then |
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2758
diff
changeset
|
285 |
begin |
2768
b7e0b0751179
Request by soreau. Placement time proportional to map size.
nemo
parents:
2763
diff
changeset
|
286 |
if CurrentHedgehog^.Unplaced then TurnTimeLeft:= 1000 * (MaxHedgehogs div 4) + 1000 |
2762
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2758
diff
changeset
|
287 |
else TurnTimeLeft:= 0 |
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2758
diff
changeset
|
288 |
end |
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2758
diff
changeset
|
289 |
else TurnTimeLeft:= cHedgehogTurnTime |
4 | 290 |
end; |
291 |
||
549 | 292 |
function AddTeam(TeamColor: Longword): PTeam; |
2695 | 293 |
var team: PTeam; |
549 | 294 |
c: LongInt; |
4 | 295 |
begin |
1170 | 296 |
TryDo(TeamsCount < cMaxTeams, 'Too many teams', true); |
2695 | 297 |
New(team); |
298 |
TryDo(team <> nil, 'AddTeam: team = nil', true); |
|
299 |
FillChar(team^, sizeof(TTeam), 0); |
|
300 |
team^.AttackBar:= 2; |
|
2806 | 301 |
team^.CurrHedgehog:= 0; |
2747 | 302 |
team^.Flag:= 'hedgewars'; |
547 | 303 |
|
2695 | 304 |
TeamsArray[TeamsCount]:= team; |
547 | 305 |
inc(TeamsCount); |
306 |
||
549 | 307 |
c:= Pred(ClansCount); |
308 |
while (c >= 0) and (ClansArray[c]^.Color <> TeamColor) do dec(c); |
|
309 |
if c < 0 then |
|
310 |
begin |
|
2695 | 311 |
new(team^.Clan); |
312 |
FillChar(team^.Clan^, sizeof(TClan), 0); |
|
313 |
ClansArray[ClansCount]:= team^.Clan; |
|
549 | 314 |
inc(ClansCount); |
2695 | 315 |
with team^.Clan^ do |
549 | 316 |
begin |
550 | 317 |
ClanIndex:= Pred(ClansCount); |
764
7513452b1d51
Now game looks almost like it did before switching to OpenGL
unc0rr
parents:
762
diff
changeset
|
318 |
Color:= TeamColor |
549 | 319 |
end |
320 |
end else |
|
321 |
begin |
|
2695 | 322 |
team^.Clan:= ClansArray[c]; |
549 | 323 |
end; |
324 |
||
2695 | 325 |
with team^.Clan^ do |
549 | 326 |
begin |
2695 | 327 |
Teams[TeamsNumber]:= team; |
549 | 328 |
inc(TeamsNumber) |
329 |
end; |
|
330 |
||
2695 | 331 |
CurrentTeam:= team; |
332 |
AddTeam:= team; |
|
4 | 333 |
end; |
334 |
||
47 | 335 |
procedure RecountAllTeamsHealth; |
547 | 336 |
var t: LongInt; |
2376 | 337 |
begin |
547 | 338 |
for t:= 0 to Pred(TeamsCount) do |
339 |
RecountTeamHealth(TeamsArray[t]) |
|
47 | 340 |
end; |
341 |
||
342 |
procedure InitTeams; |
|
547 | 343 |
var i, t: LongInt; |
2784 | 344 |
th, h: LongInt; |
47 | 345 |
begin |
2726 | 346 |
|
547 | 347 |
for t:= 0 to Pred(TeamsCount) do |
348 |
with TeamsArray[t]^ do |
|
47 | 349 |
begin |
2124 | 350 |
if (not ExtDriven) and (Hedgehogs[0].BotLevel = 0) then |
2855
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2826
diff
changeset
|
351 |
begin |
2124 | 352 |
LocalClan:= Clan^.ClanIndex + 1; |
2855
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2826
diff
changeset
|
353 |
LocalAmmo:= Hedgehogs[0].AmmoStore |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2826
diff
changeset
|
354 |
end; |
47 | 355 |
th:= 0; |
2784 | 356 |
for i:= 0 to cMaxHHIndex do |
357 |
if Hedgehogs[i].Gear <> nil then |
|
358 |
inc(th, Hedgehogs[i].Gear^.Health); |
|
359 |
if th > MaxTeamHealth then MaxTeamHealth:= th; |
|
2758
033aa644578f
Add one king per team instead of clan, kill off clan if all kings are dead. untested.
nemo
parents:
2747
diff
changeset
|
360 |
// Some initial King buffs |
033aa644578f
Add one king per team instead of clan, kill off clan if all kings are dead. untested.
nemo
parents:
2747
diff
changeset
|
361 |
if (GameFlags and gfKing) <> 0 then |
033aa644578f
Add one king per team instead of clan, kill off clan if all kings are dead. untested.
nemo
parents:
2747
diff
changeset
|
362 |
begin |
033aa644578f
Add one king per team instead of clan, kill off clan if all kings are dead. untested.
nemo
parents:
2747
diff
changeset
|
363 |
Hedgehogs[0].King:= true; |
033aa644578f
Add one king per team instead of clan, kill off clan if all kings are dead. untested.
nemo
parents:
2747
diff
changeset
|
364 |
Hedgehogs[0].Hat:= 'crown'; |
2784 | 365 |
h:= Hedgehogs[0].Gear^.Health; |
366 |
Hedgehogs[0].Gear^.Health:= hwRound(int2hwFloat(th)*_0_375); |
|
2785 | 367 |
if Hedgehogs[0].Gear^.Health > h then |
368 |
begin |
|
369 |
dec(th, h); |
|
370 |
inc(th, Hedgehogs[0].Gear^.Health); |
|
371 |
if th > MaxTeamHealth then MaxTeamHealth:= th |
|
372 |
end |
|
373 |
else Hedgehogs[0].Gear^.Health:= h |
|
2758
033aa644578f
Add one king per team instead of clan, kill off clan if all kings are dead. untested.
nemo
parents:
2747
diff
changeset
|
374 |
end; |
4 | 375 |
end; |
2726 | 376 |
|
47 | 377 |
RecountAllTeamsHealth |
4 | 378 |
end; |
379 |
||
380 |
function TeamSize(p: PTeam): Longword; |
|
2695 | 381 |
var i, value: Longword; |
4 | 382 |
begin |
2695 | 383 |
value:= 0; |
4 | 384 |
for i:= 0 to cMaxHHIndex do |
2695 | 385 |
if p^.Hedgehogs[i].Gear <> nil then inc(value); |
386 |
TeamSize:= value; |
|
4 | 387 |
end; |
388 |
||
549 | 389 |
procedure RecountClanHealth(clan: PClan); |
390 |
var i: LongInt; |
|
391 |
begin |
|
392 |
with clan^ do |
|
393 |
begin |
|
394 |
ClanHealth:= 0; |
|
395 |
for i:= 0 to Pred(TeamsNumber) do |
|
396 |
inc(ClanHealth, Teams[i]^.TeamHealth) |
|
397 |
end |
|
398 |
end; |
|
399 |
||
47 | 400 |
procedure RecountTeamHealth(team: PTeam); |
371 | 401 |
var i: LongInt; |
47 | 402 |
begin |
403 |
with team^ do |
|
1352
405ad07cf875
Add more support for handling disconnects while playing (not fully tested)
unc0rr
parents:
1351
diff
changeset
|
404 |
begin |
405ad07cf875
Add more support for handling disconnects while playing (not fully tested)
unc0rr
parents:
1351
diff
changeset
|
405 |
NewTeamHealthBarWidth:= 0; |
2376 | 406 |
|
1352
405ad07cf875
Add more support for handling disconnects while playing (not fully tested)
unc0rr
parents:
1351
diff
changeset
|
407 |
if not hasGone then |
405ad07cf875
Add more support for handling disconnects while playing (not fully tested)
unc0rr
parents:
1351
diff
changeset
|
408 |
for i:= 0 to cMaxHHIndex do |
405ad07cf875
Add more support for handling disconnects while playing (not fully tested)
unc0rr
parents:
1351
diff
changeset
|
409 |
if Hedgehogs[i].Gear <> nil then |
405ad07cf875
Add more support for handling disconnects while playing (not fully tested)
unc0rr
parents:
1351
diff
changeset
|
410 |
inc(NewTeamHealthBarWidth, Hedgehogs[i].Gear^.Health); |
405ad07cf875
Add more support for handling disconnects while playing (not fully tested)
unc0rr
parents:
1351
diff
changeset
|
411 |
|
405ad07cf875
Add more support for handling disconnects while playing (not fully tested)
unc0rr
parents:
1351
diff
changeset
|
412 |
TeamHealth:= NewTeamHealthBarWidth; |
405ad07cf875
Add more support for handling disconnects while playing (not fully tested)
unc0rr
parents:
1351
diff
changeset
|
413 |
if NewTeamHealthBarWidth > MaxTeamHealth then |
405ad07cf875
Add more support for handling disconnects while playing (not fully tested)
unc0rr
parents:
1351
diff
changeset
|
414 |
begin |
405ad07cf875
Add more support for handling disconnects while playing (not fully tested)
unc0rr
parents:
1351
diff
changeset
|
415 |
MaxTeamHealth:= NewTeamHealthBarWidth; |
405ad07cf875
Add more support for handling disconnects while playing (not fully tested)
unc0rr
parents:
1351
diff
changeset
|
416 |
RecountAllTeamsHealth; |
405ad07cf875
Add more support for handling disconnects while playing (not fully tested)
unc0rr
parents:
1351
diff
changeset
|
417 |
end else NewTeamHealthBarWidth:= (NewTeamHealthBarWidth * cTeamHealthWidth) div MaxTeamHealth |
405ad07cf875
Add more support for handling disconnects while playing (not fully tested)
unc0rr
parents:
1351
diff
changeset
|
418 |
end; |
549 | 419 |
|
420 |
RecountClanHealth(team^.Clan); |
|
421 |
||
2005 | 422 |
AddVisualGear(0, 0, vgtTeamHealthSorter) |
47 | 423 |
end; |
424 |
||
72 | 425 |
procedure RestoreTeamsFromSave; |
547 | 426 |
var t: LongInt; |
72 | 427 |
begin |
547 | 428 |
for t:= 0 to Pred(TeamsCount) do |
429 |
TeamsArray[t]^.ExtDriven:= false |
|
72 | 430 |
end; |
431 |
||
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1299
diff
changeset
|
432 |
procedure TeamGone(s: shortstring); |
2040 | 433 |
var t: LongInt; |
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1299
diff
changeset
|
434 |
begin |
1362 | 435 |
t:= 0; |
1356 | 436 |
while (t < cMaxTeams) |
437 |
and (TeamsArray[t] <> nil) |
|
438 |
and (TeamsArray[t]^.TeamName <> s) do inc(t); |
|
439 |
if (t = cMaxTeams) or (TeamsArray[t] = nil) then exit; |
|
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1299
diff
changeset
|
440 |
|
1356 | 441 |
with TeamsArray[t]^ do |
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1299
diff
changeset
|
442 |
begin |
1495 | 443 |
AddChatString('** '+ TeamName + ' is gone'); |
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1299
diff
changeset
|
444 |
hasGone:= true |
1355 | 445 |
end; |
2376 | 446 |
|
1363 | 447 |
RecountTeamHealth(TeamsArray[t]) |
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1299
diff
changeset
|
448 |
end; |
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1299
diff
changeset
|
449 |
|
2040 | 450 |
procedure TeamGoneEffect(var Team: TTeam); |
451 |
var i: LongInt; |
|
452 |
begin |
|
453 |
with Team do |
|
454 |
for i:= 0 to cMaxHHIndex do |
|
455 |
with Hedgehogs[i] do |
|
456 |
if Gear <> nil then |
|
2826
fbcfc86ef477
Remove invulnerability protection from the team gone effect
nemo
parents:
2806
diff
changeset
|
457 |
begin |
fbcfc86ef477
Remove invulnerability protection from the team gone effect
nemo
parents:
2806
diff
changeset
|
458 |
Gear^.Invulnerable:= false; |
2040 | 459 |
Gear^.Damage:= Gear^.Health |
2826
fbcfc86ef477
Remove invulnerability protection from the team gone effect
nemo
parents:
2806
diff
changeset
|
460 |
end |
2040 | 461 |
end; |
462 |
||
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2695
diff
changeset
|
463 |
procedure init_uTeams; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2695
diff
changeset
|
464 |
begin |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2695
diff
changeset
|
465 |
CurrentTeam:= nil; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2695
diff
changeset
|
466 |
PreviousTeam:= nil; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2695
diff
changeset
|
467 |
CurrentHedgehog:= nil; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2695
diff
changeset
|
468 |
TeamsCount:= 0; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2695
diff
changeset
|
469 |
ClansCount:= 0; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2695
diff
changeset
|
470 |
LocalClan:= 0; // first non-bot, non-extdriven clan |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2695
diff
changeset
|
471 |
end; |
4 | 472 |
|
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2695
diff
changeset
|
473 |
procedure free_uTeams; |
2715
0e4e0db79e2a
Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents:
2704
diff
changeset
|
474 |
var i: LongWord; |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2695
diff
changeset
|
475 |
begin |
2796 | 476 |
if TeamsCount > 0 then |
477 |
begin |
|
478 |
for i:= 0 to Pred(TeamsCount) do Dispose(TeamsArray[i]); |
|
479 |
for i:= 0 to Pred(ClansCount) do Dispose(ClansArray[i]); |
|
480 |
end; |
|
2715
0e4e0db79e2a
Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents:
2704
diff
changeset
|
481 |
TeamsCount:= 0; |
0e4e0db79e2a
Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents:
2704
diff
changeset
|
482 |
ClansCount:= 0 |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2695
diff
changeset
|
483 |
end; |
4 | 484 |
|
485 |
end. |