-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclass.lua
599 lines (586 loc) · 10.6 KB
/
class.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
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
-- vim:et
abs=math.abs
min=math.min
max=math.max
random=math.random
floor=math.floor
ceil=math.ceil
sqrt=math.sqrt
sin=math.sin
cos=math.cos
tan=math.tan
function count(t)
local c=0
for _ in pairs(t) do
c=c+1
end
return c
end
function icopy(t)
local tmp={}
for i,v in ipairs(t) do
tmp[i]=v
end
return tmp
end
local reserved={
class=true;
define=true;
extends=true;
new=true;
super=true;
__class=true;
__super=true;
__suptab=true;
}
local classes={}
function class(name)
local newclass={}
_G[name]=newclass
classes[newclass]=true
newclass.class=name
function newclass.define(class,members)
for k,v in pairs(members) do
class[k]=v
end
end
function newclass.extends(class,base)
class.__super=base
for k,v in pairs(base) do
if not reserved[k] and not class[k] and type(v)~="function" then
class[k]=v
end
end
return class
end
local function init_class(class)
local cl=class
while cl do
if classes[cl] then
local ftab={}
for k,v in pairs(cl) do
if type(v)=="function" then
ftab[k]=true
end
end
local suptab={}
local supcl=cl.__super
while supcl do
for k,v in pairs(supcl) do
if type(v)=="function" and not reserved[k] and not suptab[k] then
if ftab[k] then
suptab[k]={func=v,super=supcl.__super}
else
ftab[k]=true
end
end
end
supcl=supcl.__super
end
cl.__suptab=suptab
classes[cl]=false
end
cl=cl.__super
end
end
function newclass.new(class,...)
if class.__class then
return class.__class:new(...)
end
if classes[class] then
init_class(class)
end
local object={}
object.__class=class
object.class=class.class
object.super=class.super
object.__super=class
for k,v in pairs(class) do
if not reserved[k] then
object[k]=v
end
end
local supcl=class.__super
while supcl do
for k,v in pairs(supcl) do
if not object[k] and not reserved[k] and type(v)=="function" then
object[k]=v
end
end
supcl=supcl.__super
end
if object.initialize then
object:initialize(...)
end
return object
end
function newclass.super(class,func,...)
local super=class.__super or class.__class
local suptab=super.__suptab
local chunk=suptab[func].func
class.__super=suptab[func].super
local ret=chunk(class,...)
class.__super=super
return ret
end
return setmetatable(newclass,{__call=newclass.define})
end
local mt_storage={}
function mt_storage:add(o)
rawset(self,o,o)
end
function mt_storage:del(o)
rawset(self,o,nil)
end
function mt_storage:find(o)
return rawget(self,o)
end
function storage()
local t={}
setmetatable(t,{__index=mt_storage})
return t
end
local mt_ctable={}
function mt_ctable:add(o)
local idx=#self+1
o.__idx=idx
self[idx]=o
return idx
end
function mt_ctable:del(o)
local idx=o.__idx
o.__idx=nil
self[idx]=nil
return idx
end
function mt_ctable:find(o)
local idx=o.__idx
if self[idx]==o then
return idx
end
return nil
end
function ctable()
local t={}
setmetatable(t,{__index=mt_ctable})
return t
end
function str_split(str,sep)
local a={}
local l=str:len()
local p=1
local q=str:find(sep,1,true)
while q do
a[#a+1]=str:sub(p,q-1)
p=q+1
if str:sub(p,p)=="~" then
p=p+1
break
end
q=str:find(sep,p,true)
end
a[#a+1]=str:sub(p,l)
a.n=#a
return a
end
function queue(sz)
local object={}
object.size=sz or 100
object.len=0
function object:put(str)
if self.len>=self.size then
return nil
end
local t={}
t.val=str
self.len=self.len+1
if not self.tail then
self.head=t
self.tail=t
return false
end
self.tail.link=t
self.tail=t
return true
end
function object:push(str)
if self.len>=self.size then
self:del()
end
self:put(str)
end
function object:get()
if self.head then
local t=self.head
self.len=self.len-1
if t.link then
self.head=t.link
else
self.head=nil
self.tail=nil
self.len=0
end
return t.val
end
return nil
end
function object:del()
if self.head then
local t=self.head
self.len=self.len-1
if t.link then
self.head=t.link
else
self.head=nil
self.tail=nil
self.len=0
end
end
end
function object:iter()
local i=self.head
return function()
if i then
local v=i.val
i=i.link
return v
end
return nil
end
end
function object:ited()
local q=self
local i=self.head
return function()
if i then
local v=i.val
i=i.link
q.head=i
q.len=q.len-1
return v
end
q.head=nil
q.tail=nil
q.len=0
return nil
end
end
function object:itfx()
if not self.head then
self.tail=nil
self.tail=nil
self.len=0
end
end
function object:clear()
self.head=nil
self.tail=nil
self.len=0
end
return object
end
function squeue(sz)
local object={}
object.size=sz or 100
object.len=0
object.seq=0
function object:put(str)
if self.len>=self.size then
return nil
end
local t={}
self.len=self.len+1
self.seq=self.seq+1
t.val=self.seq.."!"..str
t.seq=self.seq
if not self.tail then
self.head=t
self.tail=t
return false
end
self.tail.link=t
self.tail=t
return true
end
function object:get(ts,dt)
local i=self.head
while i do
if not i.ts or ts>=i.ts then
i.ts=ts+dt
return i.val
end
i=i.link
end
return nil
end
function object:del(seq)
local l=self.head
local p=nil
while l and l.seq<seq do
p=l
l=l.link
end
if not l then
return
end
if l.seq>seq then
return
end
self.len=self.len-1
if not p then
self.head=l.link
if not l.link then
self.tail=nil
end
return
end
if not l.link then
p.link=nil
self.tail=p
else
p.link=l.link
end
end
function object:iter(_ts,_dt)
local i=self.head
local ts=_ts
local dt=_dt
return function()
while i do
if not i.ts or ts>=i.ts then
local v=i.val
i.ts=ts+dt
i=i.link
return v
end
i=i.link
end
return nil
end
end
function object:clear()
self.head=nil
self.tail=nil
self.len=0
end
return object
end
function rqueue(sz)
local object={}
object.size=sz or 100
object.len=0
object.seq=0
function object:put(str)
if self.len>=self.size then
return nil
end
local p=str:find("!",1,true)
if not p then
return nil
end
local seq=tonumber(str:sub(1,p-1))
if not seq then
return nil
end
if seq<=self.seq then
return seq
end
local msg=str:sub(p+1,str:len())
if not self.head then
local t={seq=seq,val=msg}
self.head=t
self.tail=t
self.len=self.len+1
return seq
end
local l=self.head
local p=nil
while l and l.seq<seq do
p=l
l=l.link
end
if not l then
local t={seq=seq,val=msg}
self.tail.link=t
self.tail=t
self.len=self.len+1
return seq
end
if seq==l.seq then
return seq
end
if not p then
local t={seq=seq,val=msg}
t.link=self.head
self.head=t
self.len=self.len+1
return seq
end
local t={seq=seq,val=msg}
p.link=t
t.link=l
self.len=self.len+1
return seq
end
function object:get(seq)
if self.head then
local t=self.head
if t.seq~=seq then
return nil
end
self.len=self.len-1
self.seq=t.seq
if t.link then
self.head=t.link
else
self.head=nil
self.tail=nil
self.len=0
end
return t.val
end
return nil
end
function object:del(seq)
if self.head then
local t=self.head
if t.seq~=seq then
return nil
end
self.len=self.len-1
self.seq=t.seq
if t.link then
self.head=t.link
else
self.head=nil
self.tail=nil
self.len=0
end
end
end
function object:clear()
local i=self.head
local s=self.seq
while i do
s=i.seq
i=i.link
end
self.seq=s
self.head=nil
self.tail=nil
self.len=0
end
return object
end
function runqueue()
local object={}
object.len=0
object.hash={}
function object:put(o,ts,dt)
if self.hash[o] then
return
end
local t={}
t.val=o
t.tm=ts
t.ts=ts+dt
self.len=self.len+1
self.hash[o]=true
if not self.tail then
self.head=t
self.tail=t
return
end
local p=self.head
local l=nil
while p and p.ts<t.ts do
l=p
p=p.link
end
if not p then
self.tail.link=t
self.tail=t
return
end
if not l then
t.link=p
self.head=t
return
end
l.link=t
t.link=p
end
function object:add(o,ts,dt)
if self.hash[o] then
return
end
local t={}
t.val=o
t.tm=ts
t.ts=ts+dt
self.len=self.len+1
self.hash[o]=true
if not self.tail then
self.head=t
self.tail=t
else
self.tail.link=t
self.tail=t
end
end
function object:del()
if not self.last then
return
end
local o=self.tail.val
if self.last==self.tail then
self.head=nil
self.tail=nil
else
self.last.link=nil
self.tail=self.last
end
self.len=self.len-1
self.hash[o]=nil
self.last=nil
end
function object:clear()
self.len=0
self.hash={}
self.last=nil
self.head=nil
self.tail=nil
end
function object:iter(_ts,_dt)
local p=self.head
local c=1
local ts=_ts
local dt=_dt
return function()
self.last=nil
if not p or c>self.len or ts<p.ts then
return nil
end
local v=p.val
local d=ts-p.tm
p.tm=ts
p.ts=ts+dt-(ts-p.ts)
self.last=self.tail
c=c+1
if p==self.tail then
p=nil
return v,d
end
self.tail.link=p
self.tail=p
p=p.link
self.tail.link=nil
self.head=p
if not self.head then
self.head=self.tail
end
return v,d
end
end
return object
end