forked from unanimated/luaegisub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ua.Recalculator.lua
648 lines (593 loc) · 25.6 KB
/
ua.Recalculator.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
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
-- Example: Set to 120%, check fscx and fscy, and all values for fscx/y will be increased by 20% for selected lines.
-- With "multiply/add more with each line" and fscx100 you'll get 120, 140, 160, 180 for consecutive lines.
-- Alternative 2nd value allows for a different value for all Y things (fscY, Ybord, Yshad, frY, faY, all Y coordinates) + fad2, t2.
-- It will be used as Multiply or Add depending on the button you press.
-- Mirror: intended for mirroring mocha data. Applied to fbf lines with pos going from 200 to 260, it will go from 200 to 140.
-- Works with position, origin, rotations, and rectangular clip. If clip changes size/shape, results will be weird.
-- Also works with move (though that makes pretty much no sense to use) and fax/fay.
-- Regradient: if you check a tag that appears at least 3 times in the line, the middle values are calculated as gradient from the first and last.
-- That means that if you have an existing gradient and change the values on either end, the gradient is recalculated from those.
-- Works for the first 3 rows of tags except kara and for alpha/colours.
-- Manual: http://unanimated.hostfree.pw/ts/scripts-manuals.htm#recalculator
script_name="Recalculator"
script_description="Incremental Reconstruction of Disassembled Elements"
script_author="unanimated"
script_version="4.0"
script_namespace="ua.Recalculator"
local haveDepCtrl,DependencyControl,depRec=pcall(require,"l0.DependencyControl")
if haveDepCtrl then
script_version="4.0.0"
depRec=DependencyControl{feed="https://raw.githubusercontent.com/unanimated/luaegisub/master/DependencyControl.json"}
end
re=require'aegisub.re'
function recalculator(subs,sel)
ADD=aegisub.dialog.display
ADP=aegisub.decode_path
ak=aegisub.cancel
ATAG="{[*>]?\\[^}]-}"
STAG="^{>?\\[^}]-}"
GUI={
{x=2,y=0,width=2,class="floatedit",name="pc",value=100,min=0,hint="Multiply"},
{x=2,y=1,width=2,class="floatedit",name="add",value=0,hint="Add (use negative to subtract)"},
{x=2,y=2,width=2,class="floatedit",name="altval",value=0,hint="Multiply/Add based on button pressed"},
{x=2,y=3,width=3,class="intedit",name="rnd",value=2,min=0,max=4,hint="How many decimal places should be allowed"},
{x=0,y=0,width=2,class="label",label="Change values to:"},
{x=0,y=1,width=2,class="label",label="Increase values by:"},
{x=0,y=2,width=2,class="checkbox",name="alt",label="Alternative 2nd value",value=false,hint="Affects fscy, ybord, yshad, fry, fay, all Y coordinates, fad2, t2"},
{x=1,y=3,width=1,class="label",label="Rounding:"},
{x=4,y=0,width=2,class="label",label="% of original ones"},
{x=6,y=0,width=2,class="label",label="Recalculator v"..script_version},
{x=4,y=1,width=2,class="checkbox",name="retxt",label="numbers in text",hint="numbers found in text (skips tags/comments)"},
{x=4,y=2,class="checkbox",name="react",label="actor",hint="numbers found in actor field"},
{x=5,y=2,class="checkbox",name="reef",label="effect",hint="numbers found in effect field"},
{x=0,y=3,class="checkbox",name="fsc",label="fsc",hint="both x and y"},
{x=0,y=4,class="checkbox",name="fscx",label="fscx"},
{x=1,y=4,class="checkbox",name="fscy",label="fscy"},
{x=2,y=4,class="checkbox",name="fs",label="fs"},
{x=3,y=4,class="checkbox",name="fsp",label="fsp"},
{x=4,y=4,class="checkbox",name="blur",label="blur"},
{x=5,y=4,class="checkbox",name="be",label="be"},
{x=0,y=5,class="checkbox",name="bord",label="bord"},
{x=1,y=5,class="checkbox",name="shad",label="shad"},
{x=2,y=5,class="checkbox",name="xbord",label="xbord"},
{x=3,y=5,class="checkbox",name="ybord",label="ybord"},
{x=4,y=5,class="checkbox",name="xshad",label="xshad "},
{x=5,y=5,class="checkbox",name="yshad",label="yshad"},
{x=0,y=6,class="checkbox",name="frz",label="frz"},
{x=1,y=6,class="checkbox",name="frx",label="frx"},
{x=2,y=6,class="checkbox",name="fry",label="fry"},
{x=3,y=6,class="checkbox",name="fax",label="fax"},
{x=4,y=6,class="checkbox",name="fay",label="fay"},
{x=5,y=6,class="checkbox",name="kara",label="kara",hint="k/kf/ko. only the first one in the line."},
{x=0,y=7,class="checkbox",name="posx",label="pos x"},
{x=1,y=7,class="checkbox",name="posy",label="pos y"},
{x=2,y=7,class="checkbox",name="orgx",label="org x"},
{x=3,y=7,class="checkbox",name="orgy",label="org y"},
{x=4,y=7,class="checkbox",name="fad1",label="fad 1"},
{x=5,y=7,class="checkbox",name="fad2",label="fad 2"},
{x=4,y=8,width=2,class="checkbox",name="allpos",label="all pos/move/org ",
hint="same as all 8 checkboxes. \naffects only existing tags."},
{x=6,y=8,width=2,class="label",label="_____________"},
{x=0,y=9,class="checkbox",name="clipx",label="clip x"},
{x=1,y=9,class="checkbox",name="clipy",label="clip y"},
{x=2,y=9,class="checkbox",name="drawx",label="draw x"},
{x=3,y=9,class="checkbox",name="drawy",label="draw y"},
{x=4,y=9,class="checkbox",name="ttim1",label="\\t 1",hint="\\t timecode 1"},
{x=5,y=9,class="checkbox",name="ttim2",label="\\t 2",hint="\\t timecode 2"},
{x=6,y=9,width=2,class="checkbox",name="anchor",label="anchor clip",hint="anchor clip with Multiply"},
{x=6,y=2,width=2,class="label",label="-v- Regradient -v-"},
{x=6,y=3,class="checkbox",name="alpha",label="alpha"},
{x=7,y=3,class="checkbox",name="space",label="[ ]",value=true,hint="workaround for spaces with full-line GBC"},
{x=0,y=10,width=3,class="checkbox",name="byline",label="multiply/add more with each line"},
{x=3,y=10,width=2,class="checkbox",name="regtag",label="regular tags",value=true},
{x=5,y=10,width=2,class="checkbox",name="tftag",label="tags in transforms",value=true},
{x=6,y=1,width=2,class="checkbox",name="rpt",label="repeat last"},
{x=0,y=11,class="checkbox",name="ly",label="layer"},
{x=1,y=11,class="checkbox",name="ml",label="m. left"},
{x=2,y=11,class="checkbox",name="mr",label="m. right"},
{x=3,y=11,class="checkbox",name="mv",label="m. vert"},
{x=4,y=11,class="checkbox",name="st",label="start",hint="start time (milliseconds for Add)"},
{x=5,y=11,class="checkbox",name="et",label="end",hint="end time (milliseconds for Add)"},
{x=6,y=11,width=2,class="checkbox",name="save",label="save conf.",hint="use with anything except clear/cancel"},
}
for z=1,4 do
table.insert(GUI,{x=z-1,y=8,class="checkbox",name="mov"..z,label="move"..z.." "})
table.insert(GUI,{x=6,y=z+3,class="checkbox",name=z.."a",label=z.."a"})
table.insert(GUI,{x=7,y=z+3,class="checkbox",name=z.."c",label=z.."c"})
end
loadconfig()
repeat
if P=="Clear" then
for key,val in ipairs(GUI) do
if val.class=="checkbox" and val.name~="anchor" then val.value=false end
if val.name=="anchor" then val.value=res.anchor end
if val.name=="alt" then val.value=res.alt end
if val.name=="regtag" then val.value=res.regtag end
if val.name=="tftag" then val.value=res.tftag end
if val.name=="space" then val.value=res.space end
if val.class:match("edit") then val.value=res[val.name] end
end
end
P,res=ADD(GUI,{"Multiply","Add","Mirror","Regradient","Clear","∞²"},{ok='Multiply',cancel='∞²'})
until P~="Clear"
if P=="∞²" then ak() end
if res.fsc then res.fscx=true res.fscy=true end
if res.save then saveconfig() P='' end
if res.rpt and lastres then res=lastres end
if res.allpos then
res.posx=true res.posy=true res.orgx=true res.orgy=true
res.mov1=true res.mov2=true res.mov3=true res.mov4=true
end
if P=="Multiply" or P=="Add" then styleget(subs) multiply(subs,sel) end
if P=="Regradient" then regrad(subs,sel) end
if P=="Mirror" then mirror(subs,sel) end
lastres=res
return sel
end
function calc(num)
if P=="Multiply" then num=round(num+num*count,rnd) end
if P=="Add" then num=round(num+(res.add*linec),rnd)end
if neg==0 and num<0 then num=0 end
return num
end
function calc2(num)
if P=="Multiply" then num=round(num+num*altcount,rnd) end
if P=="Add" then num=round(num+(alt*linec),rnd)end
if neg==0 and num<0 then num=0 end
return num
end
function recalc(text,tg,c)
if not res.regtag and not res.tftag then
t_error("For "..tg..", you must select 'regular tags' or 'tags in transforms' or both.",1) end
if c==1 then kalk=calc else kalk=calc2 end
if neg==1 then val="([%d%.%-]+)" else val="([%d%.]+)" end
-- split into non-tf/tf segments if there are transforms
seg={}
if text:match("\\t%b()") then
for seg1,seg2 in text:gmatch("(.-)(\\t%b())") do table.insert(seg,seg1) table.insert(seg,seg2) end
table.insert(seg,text:match("^.*\\t%b()(.-)$"))
else table.insert(seg,text)
end
-- change non-tf/tf/all segments
for q=1,#seg do
if res.regtag and not seg[q]:match("\\t%b()") then
seg[q]=seg[q]:gsub(tg.."("..val..")",function(a) return tg..kalk(tonumber(a)) end)
end
if res.tftag and seg[q]:match("\\t%b()") then
seg[q]=seg[q]:gsub(tg.."("..val..")",function(a) return tg..kalk(tonumber(a)) end)
end
end
nt=""
for q=1,#seg do nt=nt..seg[q] end
return nt
end
function recalc2(text,tg,c)
if neg==1 then val="([%d%.%-]+)" else val="([%d%.]+)" end
if c==1 then
text=text:gsub(tg.."%(([%d%.%-]+),([%d%.%-]+)%)",function(a,b) return tg.."("..calc(tonumber(a))..","..b..")" end)
else
text=text:gsub(tg.."%(([%d%.%-]+),([%d%.%-]+)%)",function(a,b) return tg.."("..a..","..calc2(tonumber(b))..")" end)
end
return text
end
function multiply(subs,sel)
c=(res.pc-100)/100
oc=res.pc/100
rnd=res.rnd
if res.alt then ac=res.altval/100 else ac=oc end
if P=="Multiply" then alt=(res.altval-100)/100 else alt=res.altval end
if res.mov1 or res.mov2 or res.mov3 or res.mov4 then move=1 else move=0 end
if res.clipx or res.clipy then clip=1 else clip=0 end
for z,i in ipairs(sel) do
progress("Processing line: "..z.."/"..#sel)
if res.byline then count=z*c linec=z altcount=z*alt else count=c linec=1 altcount=alt end
if not res.alt then altcount=count alt=res.add end
line=subs[i]
text=line.text
sr=stylechk(line.style)
if not text:match("^{\\") then text="{\\rec}"..text end
notf=text:gsub("\\t%b()","")
spac=sr.spacing if res.fsp and not notf:match("\\fsp") and spac~=0 then text=addtag3("\\fsp"..spac,text) end
fsize=sr.fontsize if res.fs and not notf:match("\\fs%d") then text=addtag3("\\fs"..fsize,text) end
scx=sr.scale_x if res.fscx and not notf:match("\\fscx") then text=addtag3("\\fscx"..scx,text) end
scy=sr.scale_y if res.fscy and not notf:match("\\fscy") then text=addtag3("\\fscy"..scy,text) end
shdw=sr.shadow if res.shad and not notf:match("\\shad") and shdw~=0 then text=addtag3("\\shad"..shdw,text) end
brdr=sr.outline if res.bord and not notf:match("\\bord") and brdr~=0 then text=addtag3("\\bord"..brdr,text) end
if res.fscx then neg=0 text=recalc(text,"\\fscx",1) end
if res.fscy then neg=0 text=recalc(text,"\\fscy",2) end
if res.fs then neg=0 text=recalc(text,"\\fs",1) end
if res.fsp then neg=1 text=recalc(text,"\\fsp",1) end
if res.bord then neg=0 text=recalc(text,"\\bord",1) end
if res.shad then neg=0 text=recalc(text,"\\shad",1) end
if res.blur then neg=0 text=recalc(text,"\\blur",1) end
if res.be then neg=0 text=recalc(text,"\\be",1) end
if res.xbord then neg=0 text=recalc(text,"\\xbord",1) end
if res.ybord then neg=0 text=recalc(text,"\\ybord",2) end
if res.xshad then neg=1 text=recalc(text,"\\xshad",1) end
if res.yshad then neg=1 text=recalc(text,"\\yshad",2) end
if res.frx then neg=1 text=recalc(text,"\\frx",1) end
if res.fry then neg=1 text=recalc(text,"\\fry",2) end
if res.frz then neg=1 text=recalc(text,"\\frz",1) end
if res.fax then neg=1 text=recalc(text,"\\fax",1) end
if res.fay then neg=1 text=recalc(text,"\\fay",2) end
if res.kara then neg=0 text=text:gsub("{(\\[^}]-)}{(\\[^}]-)}","{%1%2}")
:gsub("^({[^}]-\\[Kk][fo]?)([%d%.]+)",function(a,b) return a..calc(tonumber(b)) end) end
if res.posx then neg=1 text=recalc2(text,"\\pos",1) end
if res.posy then neg=1 text=recalc2(text,"\\pos",2) end
if res.orgx then neg=1 text=recalc2(text,"\\org",1) end
if res.orgy then neg=1 text=recalc2(text,"\\org",2) end
if res.fad1 then neg=0 text=recalc2(text,"\\fad",1) end
if res.fad2 then neg=0 text=recalc2(text,"\\fad",2) end
if move==1 then neg=1 text=text:gsub("\\move%(([%d%.%-]+),([%d%.%-]+),([%d%.%-]+),([%d%.%-]+)",function(a,b,c,d)
if res.mov1 then a=calc(tonumber(a)) end
if res.mov2 then b=calc2(tonumber(b)) end
if res.mov3 then c=calc(tonumber(c)) end
if res.mov4 then d=calc2(tonumber(d)) end
return "\\move("..a..","..b..","..c..","..d end) end
if clip==1 then neg=1
if not res.regtag and not res.tftag then t_error("You must select 'regular tags' or 'tags in transforms' or both.",1) end
orig=text
if res.anchor and P=="Multiply" then m=1/oc m2=1/ac
text=text:gsub("clip%(([%d%.%-]+),([%d%.%-]+),([%d%.%-]+),([%d%.%-]+)",
function(a,b,c,d) x=0 y=0
if res.clipx then x=(a+c)/2-((a+c)/2)*m end
if res.clipy then y=(b+d)/2-((b+d)/2)*m2 end
return "clip("..a-x..","..b-y..","..c-x..","..d-y end)
if text:match("clip%(m [%d%a%s%-%.]+%)") then
ctext=text:match("clip%(m ([%d%a%s%-%.]+)%)")
c1,c2=ctext:match("([%d%-%.]+)%s([%d%-%.]+)")
x=0 y=0
if res.clipx then x=c1-c1*m end
if res.clipy then y=c2-c2*m2 end
ctext2=ctext:gsub("([%d%-%.]+)%s([%d%-%.]+)",function(a,b) return a-x.." "..b-y end)
ctext=ctext:gsub("%-","%%-")
text=text:gsub("clip%(m "..ctext,"clip(m "..ctext2)
end
end
text=text:gsub("clip%(([%d%.%-]+),([%d%.%-]+),([%d%.%-]+),([%d%.%-]+)%)",function(a,b,c,d)
if res.clipx then a=calc(tonumber(a)) c=calc(tonumber(c)) end
if res.clipy then b=calc2(tonumber(b)) d=calc2(tonumber(d)) end
return "clip("..a..","..b..","..c..","..d..")" end)
if text:match("clip%(m [%d%a%s%-%.]+%)") then
ctext=text:match("clip%(m ([%d%a%s%-%.]+)%)")
ctext2=ctext:gsub("([%d%-%.]+)%s([%d%-%.]+)",function(a,b)
if res.clipx then a=calc(tonumber(a)) end
if res.clipy then b=calc2(tonumber(b)) end
return a.." "..b end)
ctext=ctext:gsub("%-","%%-")
text=text:gsub(ctext,ctext2)
end
-- regular vs transforms: shitty, slow workaround because fuck if i'm gonna figure out what's going on above
origami={}
hybrid={}
textn=""
if text:match("\\t%b()") then
-- transforms present
if not res.regtag or not res.tftag then
for seg1,seg2 in orig:gmatch("(.-)(\\t%b())") do table.insert(origami,seg1) table.insert(origami,seg2) end
table.insert(origami,orig:match("^.*\\t%b()(.-)$"))
for seg1,seg2 in text:gmatch("(.-)(\\t%b())") do table.insert(hybrid,seg1) table.insert(hybrid,seg2) end
table.insert(hybrid,text:match("^.*\\t%b()(.-)$"))
for q=1,#hybrid do
if hybrid[q]:match("\\t") then
if res.regtag then textn=textn..origami[q] else textn=textn..hybrid[q] end
else
if res.tftag then textn=textn..origami[q] else textn=textn..hybrid[q] end
end
end
text=textn
end
else
-- no transforms present - only regular clips recalculated
if not res.regtag then text=orig end -- yep, it was all for nothing
end
end
if res.drawx or res.drawy then neg=1
if text:match("\\p[1-9]") and text:match("}m [%d%a%s%-%.]+") then
dtext=text:match("}m ([%d%a%s%-%.]+)")
dtext2=dtext:gsub("([%d%-%.]+)%s([%d%-%.]+)",function(a,b)
if res.drawx then xx=math.floor(calc(tonumber(a))+0.5) else xx=a end
if res.drawy then yy=math.floor(calc2(tonumber(b))+0.5) else yy=b end
return xx.." "..yy end)
dtext=dtext:gsub("%-","%%-")
text=text:gsub(dtext,dtext2)
end
end
if res.ttim1 then neg=1 text=text:gsub("\\t%(([%d%.%-]+),([%d%.%-]+),",function(a,b)
return "\\t("..calc(tonumber(a))..","..b.."," end) end
if res.ttim2 then neg=1 text=text:gsub("\\t%(([%d%.%-]+),([%d%.%-]+),",function(a,b)
return "\\t("..a..","..calc2(tonumber(b)).."," end) end
if res.ly then line.layer=lmcalc(line.layer) end
if res.ml then line.margin_l=lmcalc(line.margin_l) end
if res.mr then line.margin_r=lmcalc(line.margin_r) end
if res.mv then line.margin_t=lmcalc(line.margin_t) end
if res.st then line.start_time=lmcalc(line.start_time) end
if res.et then line.end_time=lmcalc(line.end_time) end
if res.retxt then neg=1 text=retext(text) end
if res.react then neg=1 line.actor=retext(line.actor) end
if res.reef then neg=1 line.effect=retext(line.effect) end
text=text:gsub("\\rec",""):gsub("{}","")
line.text=text
subs[i]=line
end
end
function lmcalc(num)
if P=="Multiply" then num=round(num+num*count,0) end
if P=="Add" then num=round(num+(res.add*linec),0)end
if num<0 then num=0 end
return num
end
function retext(t)
nt=''
repeat
seg,t2=t:match("^(%b{})(.*)") --tags/comms
if not seg then seg,t2=t:match("^([^{]+)(.*)") --text
if not seg then break end
seg=seg:gsub("(%-?[%d.]+)",function(d)
d2=tostring(calc(d))
-- padding fix
if d:match("^0") and d2:len()<d:len() then
repeat d2='0'..d2 until d2:len()==d:len()
end
return d2
end)
end
nt=nt..seg
t=t2
until t==''
return nt
end
function regrad(subs,sel)
gradlist={"bord","shad","blur","be","fs","fscx","fscy","fsp","frx","fry","frz","fax","fay","xshad","xbord","yshad","ybord"}
acol={"alpha","1a","2a","3a","4a","1c","2c","3c","4c"}
rnd=res.rnd
for z=1,#sel do
i=sel[z]
progress("Processing line: "..z.."/"..#sel)
line=subs[i]
text=line.text
-- regular tags
for x=1,#gradlist do
tag=gradlist[x]
_,c=text:gsub("\\"..tag.."%-?%d","")
if res[tag] and c>2 then
text=text:gsub("\\t%b()",function(t) return t:gsub("\\","|") end)
tagtab={}
for tt in text:gmatch(".-\\"..tag.."[%d%.%-]+") do table.insert(tagtab,tt) end
count=#tagtab
if res.space then spaceworks("{\\"..tag.."0fake} ","[%d%.%-]+") end
END=text:match("^.*\\"..tag.."[%d%.%-]+(.-)$")
val1=tonumber(tagtab[1]:match("\\"..tag.."([%d%.%-]+)"))
val2=tonumber(tagtab[count]:match("\\"..tag.."([%d%.%-]+)"))
for t=2,count-1 do
valc=currentval(val1,val2,t)
valc=round(valc,rnd)
tagtab[t]=tagtab[t]:gsub("(\\"..tag..")([%d%.%-]+)","%1"..valc)
end
nt=END
for a=count,1,-1 do nt=tagtab[a]..nt end
nt=nt:gsub("{\\%a%a+[%d%.%-]+fake}","")
text=nt:gsub("|t%b()",function(t) return t:gsub("|","\\") end)
end
end
-- colours
text=text:gsub("\\c&","\\1c&")
for x=1,#acol do
tag=acol[x]
_,c=text:gsub("\\"..tag.."&","")
if res[tag] and c>2 then
text=text:gsub("\\t%b()",function(t) return t:gsub("\\","|") end)
tagtab={}
for tt in text:gmatch(".-\\"..tag.."&H%x+&") do table.insert(tagtab,tt) end
count=#tagtab
if res.space and tag:match("a") then spaceworks("{\\"..tag.."&H00&fake} ","&H%x+&") end
if res.space and tag:match("c") then spaceworks("{\\"..tag.."&H000000&fake} ","&H%x+&") end
END=text:match("^.*\\"..tag.."&H%x+&(.-)$")
val1=tagtab[1]:match("\\"..tag.."(&H%x+&)")
val2=tagtab[count]:match("\\"..tag.."(&H%x+&)")
B1,G1,R1=val1:match("(%x%x)(%x%x)(%x%x)")
B2,G2,R2=val2:match("(%x%x)(%x%x)(%x%x)")
A1=val1:match("&H(%x%x)&")
A2=val2:match("&H(%x%x)&")
for t=2,count-1 do
if A1 then
nA1=(tonumber(A1,16)) nA2=(tonumber(A2,16))
nAC=currentval(nA1,nA2,t)
valc=tohex(round(nAC))
else
nR1=(tonumber(R1,16)) nR2=(tonumber(R2,16))
nG1=(tonumber(G1,16)) nG2=(tonumber(G2,16))
nB1=(tonumber(B1,16)) nB2=(tonumber(B2,16))
nRC=currentval(nR1,nR2,t)
nGC=currentval(nG1,nG2,t)
nBC=currentval(nB1,nB2,t)
RC=tohex(round(nRC))
GC=tohex(round(nGC))
BC=tohex(round(nBC))
valc=BC..GC..RC
end
tagtab[t]=tagtab[t]:gsub("(\\"..tag..")(&H%x+&)","%1&H"..valc.."&")
end
nt=END
for a=count,1,-1 do nt=tagtab[a]..nt end
nt=nt:gsub("{\\%d?%a+&H%x+&fake}","")
text=nt:gsub("|t%b()",function(t) return t:gsub("|","\\") end)
end
end
text=text:gsub("\\1c&","\\c&") :gsub("_s_"," ")
line.text=text
subs[i]=line
end
end
function currentval(val1,val2,t) return (val2-val1)/(count-1)*(t-1)+val1 end
function spaceworks(faketag,value)
nocom=text:gsub("%b{}","")
letrz=nocom:gsub(" ","")
lcount=re.find(letrz,".")
if count==#lcount and nocom:match(" ") then
text=text:gsub("{[^\\}]-}",function(com) return com:gsub(" ","_s_") end)
:gsub(" ",faketag)
tagtab={}
for tt in text:gmatch(".-\\"..tag..value) do table.insert(tagtab,tt) end
count=#tagtab
end
end
function mirror(subs,sel)
taglist={"frz","frx","fry","fax","fay","posx","posy","orgx","orgy","mov1","mov2","mov3","mov4","clipx","clipy"}
tagval={}
line=subs[sel[1]]
text=line.text
tags=text:match(STAG)
if not tags then t_error("No tags on line 1.",1) end
tags=tags:gsub("\\t%b()","")
for x=1,#taglist do
tag=taglist[x]
val=getval(tags,val)
tagval[x]=val
end
for z=2,#sel do
i=sel[z]
progress("Processing line: "..z-1 .."/"..#sel-1)
line=subs[i]
text=line.text
tags=text:match(STAG) or ""
text=text:gsub(STAG,"")
for x=1,#taglist do
tag=taglist[x]
if res[tag] then
val1=tonumber(tagval[x])
val2=tonumber(getval(tags,val2))
if val1 and val2 then tags=replaceval(tags) end
end
end
line.text=tags..text
subs[i]=line
end
end
function getval(tags,val)
val=tags:match("\\"..tag.."([^\\}]+)")
if tag=="posx" then val=tags:match("\\pos%(([%d%.%-]+)") end
if tag=="posy" then val=tags:match("\\pos%([%d%.%-]+,([%d%.%-]+)") end
if tag=="orgx" then val=tags:match("\\org%(([%d%.%-]+)") end
if tag=="orgy" then val=tags:match("\\org%([%d%.%-]+,([%d%.%-]+)") end
if tag=="mov1" then val=tags:match("\\move%(([%d%.%-]+)") end
if tag=="mov2" then val=tags:match("\\move%([%d%.%-]+,([%d%.%-]+)") end
if tag=="mov3" then val=tags:match("\\move%([%d%.%-]+,[%d%.%-]+,([%d%.%-]+)") end
if tag=="mov4" then val=tags:match("\\move%([%d%.%-]+,[%d%.%-]+,[%d%.%-]+,([%d%.%-]+)") end
if tag=="clipx" then val=tags:match("\\clip%(([%d%.%-]+)") end
if tag=="clipy" then val=tags:match("\\clip%([%d%.%-]+,([%d%.%-]+)") end
return val
end
function replaceval(tags)
val3=val1+(val1-val2)
tags=tags:gsub("\\"..tag..val2,"\\"..tag..val3)
if tag=="posx" then tags=tags:gsub("(\\pos%()([%d%.%-]+)","%1"..val3) end
if tag=="posy" then tags=tags:gsub("(\\pos%([%d%.%-]+,)([%d%.%-]+)","%1"..val3) end
if tag=="orgx" then tags=tags:gsub("(\\org%()([%d%.%-]+)","%1"..val3) end
if tag=="orgy" then tags=tags:gsub("(\\org%([%d%.%-]+,)([%d%.%-]+)","%1"..val3) end
if tag=="mov1" then tags=tags:gsub("(\\move%()([%d%.%-]+)","%1"..val3) end
if tag=="mov2" then tags=tags:gsub("(\\move%([%d%.%-]+,)([%d%.%-]+)","%1"..val3) end
if tag=="mov3" then tags=tags:gsub("(\\move%([%d%.%-]+,[%d%.%-]+,)([%d%.%-]+)","%1"..val3) end
if tag=="mov4" then tags=tags:gsub("(\\move%([%d%.%-]+,[%d%.%-]+,[%d%.%-]+,)([%d%.%-]+)","%1"..val3) end
if tag=="clipx" then
tags=tags:gsub("(\\clip%()([%d%.%-]+)(,[%d%.%-]+,)([%d%.%-]+)",function(a,b,c,d) return a..val3..c..d-(b-val3) end)
end
if tag=="clipy" then
tags=tags:gsub("(\\clip%([%d%.%-]+,)([%d%.%-]+)(,[%d%.%-]+,)([%d%.%-]+)",function(a,b,c,d) return a..val3..c..d-(b-val3) end)
end
return tags
end
-- reanimatools ---------------------------------------------
function round(n,dec) dec=dec or 0 n=math.floor(n*10^dec+0.5)/10^dec return n end
function logg(m) m=m or "nil" aegisub.log("\n "..m) end
function progress(msg) if aegisub.progress.is_cancelled() then ak() end aegisub.progress.title(msg) end
function t_error(message,cancel) ADD({{class="label",label=message}},{"OK"},{close='OK'}) if cancel then ak() end end
function addtag3(tg,txt)
no_tf=txt:gsub("\\t%b()","")
tgt=tg:match("(\\%d?%a+)[%d%-&]") val="[%d%-&]"
if not tgt then tgt=tg:match("(\\%d?%a+)%b()") val="%b()" end
if not tgt then tgt=tg:match("\\fn") val="" end
if not tgt then t_error("adding tag '"..tg.."' failed.") end
if tgt:match("clip") then txt,r=txt:gsub("^({[^}]-)\\i?clip%b()","%1"..tg)
if r==0 then txt=txt:gsub("^({\\[^}]-)}","%1"..tg.."}") end
elseif no_tf:match("^({[^}]-)"..tgt..val) then txt=txt:gsub("^({[^}]-)"..tgt..val.."[^\\}]*","%1"..tg)
elseif not txt:match("^{\\") then txt="{"..tg.."}"..txt
elseif txt:match("^{[^}]-\\t") then txt=txt:gsub("^({[^}]-)\\t","%1"..tg.."\\t")
else txt=txt:gsub("^({\\[^}]-)}","%1"..tg.."}") end
return txt
end
function tohex(num)
n1=math.floor(num/16)
n2=math.floor(num%16)
num=tohex1(n1)..tohex1(n2)
return num
end
function tohex1(num)
HEX={"1","2","3","4","5","6","7","8","9","A","B","C","D","E"}
if num<1 then num="0" elseif num>14 then num="F" else num=HEX[num] end
return num
end
function styleget(subs)
styles={}
for i=1,#subs do
if subs[i].class=="style" then
table.insert(styles,subs[i])
end
if subs[i].class=="dialogue" then break end
end
end
function stylechk(sn)
for i=1,#styles do
if sn==styles[i].name then
sr=styles[i]
if styles[i].name=="Default" then defaref=styles[i] end
break
end
end
if sr==nil then t_error("Style '"..sn.."' doesn't exist.",1) end
return sr
end
-- Config Stuff --
function saveconfig()
reconf="Reconfigulator\n\n"
for key,val in ipairs(GUI) do
if val.class=="intedit" then
reconf=reconf..val.name..":"..res[val.name].."\n"
end
if val.class=="checkbox" and val.name~="save" then
reconf=reconf..val.name..":"..tf(res[val.name]).."\n"
end
end
rekonfig=ADP("?user").."\\recalculator.conf"
file=io.open(rekonfig,"w")
file:write(reconf)
file:close()
ADD({{class="label",label="Config saved to:\n"..rekonfig}},{"OK"},{close='OK'})
end
function loadconfig()
rconfig=ADP("?user").."\\recalculator.conf"
file=io.open(rconfig)
if file~=nil then
konf=file:read("*all")
konf=konf:gsub("%-frz%-","rotation")
io.close(file)
for key,val in ipairs(GUI) do
if val.class=="intedit" or val.class=="checkbox" then
if konf:match(val.name) then val.value=detf(konf:match(val.name..":(.-)\n")) end
end
end
end
end
function tf(val)
if val==true then ret="true"
elseif val==false then ret="false"
else ret=val end
return ret
end
function detf(txt)
if txt=="true" then ret=true
elseif txt=="false" then ret=false
else ret=txt end
return ret
end
if haveDepCtrl then depRec:registerMacro(recalculator) else aegisub.register_macro(script_name,script_description,recalculator) end