-
Notifications
You must be signed in to change notification settings - Fork 0
/
devices_srv.lua
448 lines (431 loc) · 9.02 KB
/
devices_srv.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
-- vim:et
function Device:link(dev) -- use only in map generators
self.initok=true
local l=self:connect(dev)
if l then
links:add(l)
end
end
function Device:f_path()
if self.cl=="R" and next(self.ldevs) then
local ok=self.gotpwr
local chk={}
local tmp=self.ldevs
local tmp2={}
chk[self]=self
while next(tmp) do
for _,d in pairs(tmp) do
if not chk[d] and not d.nochk and d.gotpwr~=ok then
chk[d]=d
if not ok and count(d.bdevs)>1 then
d.lupd=true
else
d.gotpwr=ok
if ok then
d.lupd=false
end
if d.cl=="R" then
for _,o in pairs(d.ldevs) do
tmp2[o]=o
end
end
end
end
end
tmp=tmp2
tmp2={}
end
end
end
function Device:chk_devs()
local k=self.pl and "base" or "pwr"
local chk={}
local ok=false
local tmp=self.bdevs
local tmp2={}
chk[self]=self
while next(tmp) do
for _,d in pairs(tmp) do
if not chk[d] and d.gotpwr then
if d[k] then
ok=true
break
end
chk[d]=d
if not d.nochk then
for _,o in pairs(d.bdevs) do
tmp2[o]=o
end
end
end
end
if ok then
break
end
tmp=tmp2
tmp2={}
end
if self.gotpwr==ok then
return false
end
self.gotpwr=ok
return true
end
function Device:check()
if self.deleted then
return
end
if not self.initok then
return
end
if self.nochk then
return
end
if self.lupd and self:chk_devs() then
self:f_path()
end
local ok=self.gotpwr
if not ok and self.online then
self.online=false
cput("Ds:%d:0",self.idx)
end
if self.cl=="V" then
if not ok and self.attch then
self:update("detach")
end
if ok and not self.attch then
self:update("attach")
end
end
end
function Device:heal(dev,v)
self.health=min(self.health+v,self.maxhealth)
dev.pt=1.0
self.pt=1.0
if dev.maxpkt then
dev.pkt=dev.pkt-v
mput("Ph:%d:%d:%d:%d",dev.idx,self.idx,dev.pkt,self.health)
else
mput("Ph:%d:%d::%d",dev.idx,self.idx,self.health)
end
end
function Device:packet(dev,v)
if self.deleted then
return
end
if self.health<self.maxhealth then
self:heal(dev,v)
return
end
if not self.maxpkt then
return
end
self.pkt=min(self.pkt+v,self.maxpkt)
dev.pt=1.0
self.pt=1.0
if dev.maxpkt then
dev.pkt=dev.pkt-v
mput("Pr:%d:%d:%d:%d",dev.idx,self.idx,dev.pkt,self.pkt)
else
mput("Pr:%d:%d::%d",dev.idx,self.idx,self.pkt)
end
end
function Vault:packet(dev,v)
if self.deleted then
return
end
if self.health<self.maxhealth then
self:heal(dev,v)
return
end
local pl=self.pl
dev.pt=1.0
self.pt=1.0
dev.pkt=dev.pkt-v
pl.cash=min(pl.cash+v,pl.maxcash)
mput("Pc:%d:%d:%d:%d",dev.idx,self.idx,pl.cash,dev.pkt)
end
function Vault:update(e,pl)
if e=="delete" then
if self.attch then
self.pl.vcnt=self.pl.vcnt-1
self.pl.maxcash=self.pl.vcnt*VCASH
self.pl.cash=min(self.pl.cash,self.pl.maxcash)
cput("PC:%d:%d:%d",self.pl.idx,self.pl.cash,self.pl.maxcash)
end
return
end
if e=="detach" then
self.pl.vcnt=self.pl.vcnt-1
self.pl.maxcash=self.pl.vcnt*VCASH
self.pl.cash=min(self.pl.cash,self.pl.maxcash)
self.attch=false
cput("PC:%d:%d:%d",self.pl.idx,self.pl.cash,self.pl.maxcash)
return
end
if e=="attach" then
self.pl.vcnt=self.pl.vcnt+1
self.pl.maxcash=self.pl.vcnt*VCASH
self.attch=true
cput("PC:%d:%d:%d",self.pl.idx,self.pl.cash,self.pl.maxcash)
return
end
end
function Power:logic()
local i,d,l,c,e,v
l=#self.links
c=l
e=self.ec
i=self.li>l and 1 or self.li
while c>0 and e>0 do
d=self.links[i].dev2
i=i<l and i+1 or 1
if d.online then
v=nil
if d.health<d.maxhealth then
v=self.pwr
elseif d.maxpkt and d.pkt<d.maxpkt then
v=self.pwr
end
if v then
d:packet(self,v)
e=e-1
end
end
c=c-1
end
self.li=i
end
function Router:chk_units()
local t=uhash:get(self.x-SHOTR,self.y-SHOTR,self.x+SHOTR,self.y+SHOTR)
local tx,ty,len,v
local ok=false
for _,u in pairs(t) do
if u.pl==self.pl then
tx,ty=u.x-self.x,u.y-self.y
len=sqrt(tx*tx+ty*ty)
if len<SHOTR then
v=nil
if u.health<u.maxhealth then
v=u.maxhealth-u.health
elseif u.maxpkt and u.pkt<u.maxpkt then
v=u.maxpkt-u.pkt
end
if v then
v=min(MAXH,self.pkt,v)
u:packet(self,v)
ok=true
end
end
end
if self.pkt<1 then
break
end
end
return ok
end
function Router:logic()
if self.pkt<1 then
return
end
if self:chk_units() then
return
end
local i,d,l,c,e,v
l=#self.links
c=l
e=self.ec
i=self.li>l and 1 or self.li
while c>0 and e>0 do
d=self.links[i].dev2
i=i<l and i+1 or 1
if d.online then
v=nil
if d.health<d.maxhealth then
v=d.maxhealth-d.health
v=min(MAXH,self.pkt,v)
elseif d.maxpkt and d.pkt<d.maxpkt then
v=d.maxpkt-d.pkt
if d.cl=="T" then
v=min(MAXH,self.pkt,v)
else
v=min(MAXV,self.pkt,v)
end
elseif d.cl=="V" then
v=min(MAXV,self.pkt)
end
if v then
d:packet(self,v)
e=e-1
if self.pkt<1 then
break
end
end
end
c=c-1
end
self.li=i
end
function Tower:shot(targ)
local tx,ty=targ.x-self.x,targ.y-self.y
if targ.deleted or sqrt(tx*tx+ty*ty)>SHOTT then
return
end
self.pt=1.0
self.pkt=self.pkt-3
targ.health=targ.health-10
if targ.isdev then
targ.pt=1.0
if targ.health<1 then
targ:delete()
cput("TD:%d:%d:%d",self.idx,targ.idx,self.pkt)
devices:del(targ)
else
mput("TH:%d:%d:%d:%d",self.idx,targ.idx,self.pkt,targ.health)
end
return
end
if targ.health<1 then
targ:delete()
cput("Td:%d:%d:%d",self.idx,targ.idx,self.pkt)
units:del(targ)
else
mput("Th:%d:%d:%d:%d",self.idx,targ.idx,self.pkt,targ.health)
end
end
function Tower:logic()
if self.pkt<3 then
return
end
local t=uhash:get(self.x-SHOTT,self.y-SHOTT,self.x+SHOTT,self.y+SHOTT)
local targ=nil
local tlen=SHOTT
local tx,ty,len
for _,u in pairs(t) do
if u.pl~=self.pl then
tx,ty=u.x-self.x,u.y-self.y
len=sqrt(tx*tx+ty*ty)
if len<tlen then
targ=u
tlen=len
end
end
end
if targ then
self:shot(targ)
return
end
t=dhash:get(self.x-SHOTT,self.y-SHOTT,self.x+SHOTT,self.y+SHOTT)
targ=nil
tlen=SHOTT
for _,o in pairs(t) do
if o.pl~=self.pl and o.initok and o.cl~="G" then
tx,ty=o.x-self.x,o.y-self.y
len=sqrt(tx*tx+ty*ty)
if len<tlen then
targ=o
tlen=len
end
end
end
if targ then
self:shot(targ)
end
end
function Unit:heal(dev,v)
self.health=min(self.health+v,self.maxhealth)
dev.pt=1.0
self.pt=1.0
if dev.maxpkt then
dev.pkt=dev.pkt-v
mput("Pu:%d:%d:%d:%d",dev.idx,self.idx,dev.pkt,self.health)
else
mput("Pu:%d:%d::%d",dev.idx,self.idx,self.health)
end
end
function Unit:packet(dev,v)
if self.deleted then
return
end
if self.health<self.maxhealth then
self:heal(dev,v)
return
end
if not self.maxpkt then
return
end
self.pkt=min(self.pkt+v,self.maxpkt)
dev.pt=1.0
if dev.maxpkt then
dev.pkt=dev.pkt-v
mput("Ps:%d:%d:%d:%d",dev.idx,self.idx,dev.pkt,self.pkt)
else
mput("Ps:%d:%d::%d",dev.idx,self.idx,self.pkt)
end
end
function Tank:shot(targ)
local tx,ty=targ.x-self.x,targ.y-self.y
if targ.deleted or sqrt(tx*tx+ty*ty)>SHOTR then
return
end
self.pkt=self.pkt-3
targ.health=targ.health-10
if targ.isdev then
targ.pt=1.0
if targ.health<1 then
targ:delete()
cput("SD:%d:%d:%d",self.idx,targ.idx,self.pkt)
devices:del(targ)
else
mput("SH:%d:%d:%d:%d",self.idx,targ.idx,self.pkt,targ.health)
end
return
end
if targ.health<1 then
targ:delete()
cput("Sd:%d:%d:%d",self.idx,targ.idx,self.pkt)
units:del(targ)
else
mput("Sh:%d:%d:%d:%d",self.idx,targ.idx,self.pkt,targ.health)
end
end
function Tank:logic()
if self.pkt<3 then
return
end
local t=uhash:get(self.x-SHOTR,self.y-SHOTR,self.x+SHOTR,self.y+SHOTR)
local a=ally[self.pl]
local targ=nil
local tlen=SHOTR
local tx,ty,len
for _,u in pairs(t) do
if u.pl~=self.pl and not a[u.pl] then
tx,ty=u.x-self.x,u.y-self.y
len=sqrt(tx*tx+ty*ty)
if len<tlen then
targ=u
tlen=len
end
end
end
if targ then
self:shot(targ)
return
end
t=dhash:get(self.x-SHOTR,self.y-SHOTR,self.x+SHOTR,self.y+SHOTR)
targ=nil
tlen=SHOTR
for _,o in pairs(t) do
if o.pl~=self.pl and o.initok and o.cl~="G" and not a[o.pl] then
tx,ty=o.x-self.x,o.y-self.y
len=sqrt(tx*tx+ty*ty)
if len<tlen then
targ=o
tlen=len
end
end
end
if targ then
self:shot(targ)
end
end