author | unc0rr |
Fri, 26 Jan 2007 22:36:21 +0000 | |
changeset 369 | 2aed85310727 |
parent 351 | 29bc9c36ad5f |
child 370 | c75410fe3133 |
permissions | -rw-r--r-- |
4 | 1 |
(* |
2 |
* Hedgewars, a worms-like game |
|
51 | 3 |
* Copyright (c) 2005, 2006 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 |
||
19 |
unit uAI; |
|
20 |
interface |
|
351 | 21 |
uses uFloat; |
4 | 22 |
{$INCLUDE options.inc} |
191
a03c2d037e24
Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents:
183
diff
changeset
|
23 |
procedure ProcessBot(FrameNo: Longword); |
64 | 24 |
procedure FreeActionsList; |
4 | 25 |
|
26 |
implementation |
|
369 | 27 |
uses uTeams, uConsts, SDLh, uAIMisc, uGears, uAIAmmoTests, uAIActions, uMisc, |
295 | 28 |
uAIThinkStack, uAmmos; |
4 | 29 |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
30 |
var BestActions: TActions; |
75 | 31 |
CanUseAmmo: array [TAmmoType] of boolean; |
191
a03c2d037e24
Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents:
183
diff
changeset
|
32 |
AIThinkStart: Longword; |
a03c2d037e24
Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents:
183
diff
changeset
|
33 |
isThinking: boolean = false; |
4 | 34 |
|
369 | 35 |
procedure FreeActionsList; |
64 | 36 |
begin |
369 | 37 |
isThinking:= false; |
64 | 38 |
BestActions.Count:= 0; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
39 |
BestActions.Pos:= 0 |
369 | 40 |
end; |
41 |
||
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
42 |
procedure TestAmmos(var Actions: TActions; Me: PGear); |
136 | 43 |
var Time, BotLevel: Longword; |
71 | 44 |
Angle, Power, Score, ExplX, ExplY, ExplR: integer; |
64 | 45 |
i: integer; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
46 |
a, aa: TAmmoType; |
4 | 47 |
begin |
369 | 48 |
BotLevel:= PHedgehog(Me^.Hedgehog)^.BotLevel; |
136 | 49 |
|
64 | 50 |
for i:= 0 to Pred(Targets.Count) do |
80 | 51 |
if (Targets.ar[i].Score >= 0) then |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
52 |
begin |
369 | 53 |
with CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog] do |
54 |
a:= Ammo^[CurSlot, CurAmmo].AmmoType; |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
55 |
aa:= a; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
56 |
repeat |
75 | 57 |
if CanUseAmmo[a] then |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
58 |
begin |
136 | 59 |
Score:= AmmoTests[a](Me, Targets.ar[i].Point, BotLevel, Time, Angle, Power, ExplX, ExplY, ExplR); |
139 | 60 |
if Actions.Score + Score > BestActions.Score then |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
61 |
begin |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
62 |
BestActions:= Actions; |
136 | 63 |
inc(BestActions.Score, Score); |
194 | 64 |
|
369 | 65 |
AddAction(BestActions, aia_Weapon, Longword(a), 500, 0, 0); |
66 |
if Time <> 0 then AddAction(BestActions, aia_Timer, Time div 1000, 400, 0, 0); |
|
67 |
if (Angle > 0) then AddAction(BestActions, aia_LookRight, 0, 200, 0, 0) |
|
68 |
else if (Angle < 0) then AddAction(BestActions, aia_LookLeft, 0, 200, 0, 0); |
|
83 | 69 |
if (Ammoz[a].Ammo.Propz and ammoprop_NoCrosshair) = 0 then |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
70 |
begin |
369 | 71 |
Angle:= integer(Me^.Angle) - Abs(Angle); |
83 | 72 |
if Angle > 0 then |
73 |
begin |
|
369 | 74 |
AddAction(BestActions, aia_Up, aim_push, 500, 0, 0); |
75 |
AddAction(BestActions, aia_Up, aim_release, Angle, 0, 0) |
|
83 | 76 |
end else if Angle < 0 then |
77 |
begin |
|
369 | 78 |
AddAction(BestActions, aia_Down, aim_push, 500, 0, 0); |
79 |
AddAction(BestActions, aia_Down, aim_release, -Angle, 0, 0) |
|
83 | 80 |
end |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
81 |
end; |
369 | 82 |
AddAction(BestActions, aia_attack, aim_push, 800, 0, 0); |
83 |
AddAction(BestActions, aia_attack, aim_release, Power, 0, 0); |
|
71 | 84 |
if ExplR > 0 then |
85 |
AddAction(BestActions, aia_AwareExpl, ExplR, 10, ExplX, ExplY); |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
86 |
end |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
87 |
end; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
88 |
if a = High(TAmmoType) then a:= Low(TAmmoType) |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
89 |
else inc(a) |
369 | 90 |
until (a = aa) or (PHedgehog(Me^.Hedgehog)^.AttacksNum > 0) |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
91 |
end |
64 | 92 |
end; |
4 | 93 |
|
64 | 94 |
procedure Walk(Me: PGear); |
80 | 95 |
const FallPixForBranching = cHHRadius * 2 + 8; |
75 | 96 |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
97 |
var Actions: TActions; |
191
a03c2d037e24
Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents:
183
diff
changeset
|
98 |
ticks, maxticks, steps, BotLevel: Longword; |
a03c2d037e24
Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents:
183
diff
changeset
|
99 |
BaseRate, Rate: integer; |
75 | 100 |
GoInfo: TGoInfo; |
80 | 101 |
CanGo: boolean; |
102 |
AltMe: TGear; |
|
64 | 103 |
begin |
369 | 104 |
BotLevel:= PHedgehog(Me^.Hedgehog)^.BotLevel; |
75 | 105 |
|
369 | 106 |
if (Me^.State and gstAttacked) = 0 then maxticks:= max(0, TurnTimeLeft - 5000 - 4000 * BotLevel) |
75 | 107 |
else maxticks:= TurnTimeLeft; |
108 |
||
194 | 109 |
BaseRate:= RatePlace(Me); |
75 | 110 |
|
191
a03c2d037e24
Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents:
183
diff
changeset
|
111 |
repeat |
a03c2d037e24
Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents:
183
diff
changeset
|
112 |
if not Pop(ticks, Actions, Me^) then |
a03c2d037e24
Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents:
183
diff
changeset
|
113 |
begin |
a03c2d037e24
Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents:
183
diff
changeset
|
114 |
isThinking:= false; |
a03c2d037e24
Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents:
183
diff
changeset
|
115 |
exit |
a03c2d037e24
Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents:
183
diff
changeset
|
116 |
end; |
193 | 117 |
|
369 | 118 |
AddAction(Actions, Me^.Message, aim_push, 10, 0, 0); |
119 |
if (Me^.Message and gm_Left) <> 0 then AddAction(Actions, aia_WaitXL, hwRound(Me^.X), 0, 0, 0) |
|
120 |
else AddAction(Actions, aia_WaitXR, hwRound(Me^.X), 0, 0, 0); |
|
121 |
AddAction(Actions, Me^.Message, aim_release, 0, 0, 0); |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
122 |
steps:= 0; |
369 | 123 |
if ((Me^.State and gstAttacked) = 0) then TestAmmos(Actions, Me); |
82 | 124 |
|
191
a03c2d037e24
Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents:
183
diff
changeset
|
125 |
while not PosInThinkStack(Me) do |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
126 |
begin |
80 | 127 |
CanGo:= HHGo(Me, @AltMe, GoInfo); |
75 | 128 |
inc(ticks, GoInfo.Ticks); |
129 |
if ticks > maxticks then break; |
|
194 | 130 |
|
136 | 131 |
if (BotLevel < 5) and (GoInfo.JumpType = jmpHJump) then // hjump support |
80 | 132 |
if Push(ticks, Actions, AltMe, Me^.Message) then |
191
a03c2d037e24
Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents:
183
diff
changeset
|
133 |
with ThinkStack.States[Pred(ThinkStack.Count)] do |
80 | 134 |
begin |
369 | 135 |
AddAction(MadeActions, aia_HJump, 0, 305, 0, 0); |
136 |
AddAction(MadeActions, aia_HJump, 0, 350, 0, 0); |
|
137 |
if (Me^.dX < 0) then AddAction(MadeActions, aia_WaitXL, hwRound(AltMe.X), 0, 0, 0) |
|
138 |
else AddAction(MadeActions, aia_WaitXR, hwRound(AltMe.X), 0, 0, 0); |
|
80 | 139 |
end; |
136 | 140 |
if (BotLevel < 3) and (GoInfo.JumpType = jmpLJump) then // ljump support |
80 | 141 |
if Push(ticks, Actions, AltMe, Me^.Message) then |
191
a03c2d037e24
Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents:
183
diff
changeset
|
142 |
with ThinkStack.States[Pred(ThinkStack.Count)] do |
250 | 143 |
begin |
369 | 144 |
AddAction(MadeActions, aia_LJump, 0, 305, 0, 0); |
145 |
if (Me^.dX < 0) then AddAction(MadeActions, aia_WaitXL, hwRound(AltMe.X), 0, 0, 0) |
|
146 |
else AddAction(MadeActions, aia_WaitXR, hwRound(AltMe.X), 0, 0, 0); |
|
250 | 147 |
end; |
144 | 148 |
|
80 | 149 |
if not CanGo then break; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
150 |
inc(steps); |
369 | 151 |
Actions.actions[Actions.Count - 2].Param:= hwRound(Me^.X); |
70 | 152 |
Rate:= RatePlace(Me); |
191
a03c2d037e24
Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents:
183
diff
changeset
|
153 |
if Rate > BaseRate then |
70 | 154 |
begin |
155 |
BestActions:= Actions; |
|
191
a03c2d037e24
Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents:
183
diff
changeset
|
156 |
BestActions.Score:= 1; |
a03c2d037e24
Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents:
183
diff
changeset
|
157 |
isThinking:= false; |
a03c2d037e24
Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents:
183
diff
changeset
|
158 |
exit |
70 | 159 |
end |
191
a03c2d037e24
Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents:
183
diff
changeset
|
160 |
else if Rate < BaseRate then break; |
193 | 161 |
if GoInfo.FallPix >= FallPixForBranching then |
162 |
Push(ticks, Actions, Me^, Me^.Message xor 3); // aia_Left xor 3 = aia_Right |
|
163 |
||
369 | 164 |
if ((Me^.State and gstAttacked) = 0) |
194 | 165 |
and ((steps mod 4) = 0) then |
166 |
begin |
|
167 |
if SDL_GetTicks - AIThinkStart > 3 then |
|
168 |
begin |
|
169 |
dec(Actions.Count, 3); |
|
170 |
Push(ticks, Actions, Me^, Me^.Message); |
|
171 |
exit |
|
172 |
end; |
|
173 |
TestAmmos(Actions, Me) |
|
174 |
end |
|
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
175 |
end; |
191
a03c2d037e24
Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents:
183
diff
changeset
|
176 |
until false |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
177 |
end; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
178 |
|
191
a03c2d037e24
Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents:
183
diff
changeset
|
179 |
procedure Think(Me: PGear); |
74 | 180 |
var BackMe, WalkMe: TGear; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
181 |
begin |
191
a03c2d037e24
Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents:
183
diff
changeset
|
182 |
AIThinkStart:= SDL_GetTicks; |
74 | 183 |
BackMe:= Me^; |
184 |
WalkMe:= BackMe; |
|
369 | 185 |
if (Me^.State and gstAttacked) = 0 then |
74 | 186 |
if Targets.Count > 0 then |
187 |
begin |
|
188 |
Walk(@WalkMe); |
|
191
a03c2d037e24
Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents:
183
diff
changeset
|
189 |
if not isThinking then |
146 | 190 |
begin |
191
a03c2d037e24
Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents:
183
diff
changeset
|
191 |
if BestActions.Score < -1023 then |
a03c2d037e24
Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents:
183
diff
changeset
|
192 |
begin |
a03c2d037e24
Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents:
183
diff
changeset
|
193 |
BestActions.Count:= 0; |
369 | 194 |
AddAction(BestActions, aia_Skip, 0, 250, 0, 0); |
191
a03c2d037e24
Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents:
183
diff
changeset
|
195 |
end; |
369 | 196 |
Me^.State:= Me^.State and not gstHHThinking |
191
a03c2d037e24
Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents:
183
diff
changeset
|
197 |
end |
80 | 198 |
end else |
74 | 199 |
else begin |
191
a03c2d037e24
Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents:
183
diff
changeset
|
200 |
FillBonuses(true); |
193 | 201 |
Walk(@WalkMe); |
369 | 202 |
AddAction(BestActions, aia_Wait, GameTicks + 100, 100, 0, 0); |
191
a03c2d037e24
Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents:
183
diff
changeset
|
203 |
end |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
204 |
end; |
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
205 |
|
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
206 |
procedure StartThink(Me: PGear); |
75 | 207 |
var a: TAmmoType; |
191
a03c2d037e24
Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents:
183
diff
changeset
|
208 |
tmp: integer; |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
209 |
begin |
369 | 210 |
if ((Me^.State and gstAttacking) <> 0) or isInMultiShoot then exit; |
191
a03c2d037e24
Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents:
183
diff
changeset
|
211 |
ThinkingHH:= Me; |
a03c2d037e24
Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents:
183
diff
changeset
|
212 |
isThinking:= true; |
a03c2d037e24
Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents:
183
diff
changeset
|
213 |
|
a03c2d037e24
Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents:
183
diff
changeset
|
214 |
ClearThinkStack; |
a03c2d037e24
Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents:
183
diff
changeset
|
215 |
|
369 | 216 |
Me^.State:= Me^.State or gstHHThinking; |
217 |
Me^.Message:= 0; |
|
70 | 218 |
FillTargets; |
80 | 219 |
if Targets.Count = 0 then |
220 |
begin |
|
369 | 221 |
OutError('AI: no targets!?', false); |
80 | 222 |
exit |
223 |
end; |
|
191
a03c2d037e24
Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents:
183
diff
changeset
|
224 |
|
369 | 225 |
FillBonuses((Me^.State and gstAttacked) <> 0); |
191
a03c2d037e24
Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents:
183
diff
changeset
|
226 |
|
75 | 227 |
for a:= Low(TAmmoType) to High(TAmmoType) do |
369 | 228 |
CanUseAmmo[a]:= Assigned(AmmoTests[a]) and HHHasAmmo(PHedgehog(Me^.Hedgehog), a); |
191
a03c2d037e24
Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents:
183
diff
changeset
|
229 |
|
a03c2d037e24
Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents:
183
diff
changeset
|
230 |
BestActions.Count:= 0; |
a03c2d037e24
Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents:
183
diff
changeset
|
231 |
BestActions.Pos:= 0; |
a03c2d037e24
Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents:
183
diff
changeset
|
232 |
BestActions.Score:= 0; |
a03c2d037e24
Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents:
183
diff
changeset
|
233 |
tmp:= random(2) + 1; |
a03c2d037e24
Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents:
183
diff
changeset
|
234 |
Push(0, BestActions, Me^, tmp); |
a03c2d037e24
Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents:
183
diff
changeset
|
235 |
Push(0, BestActions, Me^, tmp xor 3); |
a03c2d037e24
Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents:
183
diff
changeset
|
236 |
BestActions.Score:= Low(integer); |
a03c2d037e24
Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents:
183
diff
changeset
|
237 |
|
a03c2d037e24
Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents:
183
diff
changeset
|
238 |
Think(Me) |
369 | 239 |
end; |
4 | 240 |
|
191
a03c2d037e24
Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents:
183
diff
changeset
|
241 |
procedure ProcessBot(FrameNo: Longword); |
369 | 242 |
const LastFrameNo: Longword = 0; |
4 | 243 |
begin |
369 | 244 |
with CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog] do |
66
9643d75baf1e
Many AI improvements, bots do think in separate thread
unc0rr
parents:
64
diff
changeset
|
245 |
if (Gear <> nil) |
369 | 246 |
and ((Gear^.State and gstHHDriven) <> 0) |
144 | 247 |
and (TurnTimeLeft < cHedgehogTurnTime - 50) then |
191
a03c2d037e24
Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents:
183
diff
changeset
|
248 |
if not isThinking then |
a03c2d037e24
Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents:
183
diff
changeset
|
249 |
if (BestActions.Pos >= BestActions.Count) then StartThink(Gear) |
a03c2d037e24
Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents:
183
diff
changeset
|
250 |
else ProcessAction(BestActions, Gear) |
193 | 251 |
else if FrameNo <> LastFrameNo then |
252 |
begin |
|
253 |
LastFrameNo:= FrameNo; |
|
254 |
Think(Gear) |
|
255 |
end; |
|
369 | 256 |
end; |
4 | 257 |
|
258 |
end. |