-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtoggle_layers.cpp
More file actions
812 lines (695 loc) · 25.9 KB
/
Copy pathtoggle_layers.cpp
File metadata and controls
812 lines (695 loc) · 25.9 KB
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
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
/*
The MIT License (MIT)
Copyright (c) 2024 sigma-axis
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#include <cstdint>
#include <algorithm>
#include <vector>
#include <set>
#include <ranges>
#define NOMINMAX
#define WIN32_LEAN_AND_MEAN
#include <Windows.h>
using byte = uint8_t;
#include <exedit.hpp>
using namespace ExEdit;
////////////////////////////////
// 主要情報源の変数アドレス.
////////////////////////////////
inline constinit struct ExEdit092 {
AviUtl::FilterPlugin* fp;
decltype(fp->func_WndProc) func_wndproc;
constexpr static const char* info_exedit092 = "拡張編集(exedit) version 0.92 by KENくん";
bool init(AviUtl::FilterPlugin* this_fp)
{
if (fp != nullptr) return true;
AviUtl::SysInfo si; this_fp->exfunc->get_sys_info(nullptr, &si);
for (int i = 0; i < si.filter_n; i++) {
auto that_fp = this_fp->exfunc->get_filterp(i);
if (that_fp->information != nullptr &&
0 == std::strcmp(that_fp->information, info_exedit092)) {
fp = that_fp;
func_wndproc = fp->func_WndProc;
init_pointers();
return true;
}
}
return false;
}
LayerSetting* LayerSettings; // 0x188498
int32_t* current_scene; // 0x1a5310
int32_t* curr_timeline_layer_height; // 0x0a3e20
HWND* timeline_v_scroll_bar; // 0x158d34
int32_t* timeline_v_scroll_pos; // 0x1a5308
int32_t* timeline_height_in_layers; // 0x0a3fbc
int32_t* SortedObjectLayerBeginIndex; // 0x149670
int32_t* SortedObjectLayerEndIndex; // 0x135ac8
Object** SortedObject; // 0x168fa8
Object** ObjectArray_ptr; // 0x1e0fa4
int32_t* SelectingObjectNum_ptr; // 0x167d88
int32_t* SelectingObjectIndex; // 0x179230
//int32_t* last_clicked_x; // 0x1460b4
int32_t* last_clicked_y; // 0x196744
uint32_t* undo_id_ptr; // 0x244e08 + 12
void(*nextundo)(); // 0x08d150
void(*setundo)(uint32_t, uint32_t); // 0x08d290
int32_t(*update_ObjectTables)(); // 0x02b0f0
private:
void init_pointers()
{
auto pick_addr = [this, exedit_base = reinterpret_cast<uintptr_t>(fp->dll_hinst)]
<class T>(T & target, ptrdiff_t offset) { target = reinterpret_cast<T>(exedit_base + offset); };
pick_addr(LayerSettings, 0x188498);
pick_addr(current_scene, 0x1a5310);
pick_addr(curr_timeline_layer_height, 0x0a3e20);
pick_addr(timeline_v_scroll_bar, 0x158d34);
pick_addr(timeline_v_scroll_pos, 0x1a5308);
pick_addr(timeline_height_in_layers, 0x0a3fbc);
pick_addr(SortedObjectLayerBeginIndex, 0x149670);
pick_addr(SortedObjectLayerEndIndex, 0x135ac8);
pick_addr(SortedObject, 0x168fa8);
pick_addr(ObjectArray_ptr, 0x1e0fa4);
pick_addr(SelectingObjectNum_ptr, 0x167d88);
pick_addr(SelectingObjectIndex, 0x179230);
//pick_addr(last_clicked_x 0x1460b4);
pick_addr(last_clicked_y, 0x196744);
pick_addr(undo_id_ptr, 0x244e08 + 12);
pick_addr(nextundo, 0x08d150);
pick_addr(setundo, 0x08d290);
pick_addr(update_ObjectTables, 0x02b0f0);
}
} exedit;
////////////////////////////////
// 縦スクロールバー操作.
////////////////////////////////
constexpr struct LayerScrollBar {
void set_pos(int pos, AviUtl::EditHandle* editp) const
{
auto hwnd = *exedit.timeline_v_scroll_bar;
if (hwnd == nullptr) return;
const SCROLLINFO si{ .cbSize = sizeof(si), .fMask = SIF_POS, .nPos = pos };
::SetScrollInfo(hwnd, SB_CTL, &si, true);
exedit.fp->func_WndProc(exedit.fp->hwnd, WM_VSCROLL,
(pos << 16) | SB_THUMBTRACK, reinterpret_cast<LPARAM>(hwnd),
editp, exedit.fp);
}
int get_pos() const { return *exedit.timeline_v_scroll_pos; }
int get_page_size() const { return *exedit.timeline_height_in_layers; }
} tl_scroll_v;
////////////////////////////////
// 各レイヤーに対する操作.
////////////////////////////////
struct layer_operation {
constexpr static size_t num_layers = 100;
constexpr static int x_leftmost_timeline = 64, y_topmost_timeline = 42;
static bool point_in_header(int x, int y) {
return x < x_leftmost_timeline && y >= y_topmost_timeline;
}
// シーンによらず最上段レイヤーは 0 扱い.
static int point_to_layer(int y) {
y -= y_topmost_timeline;
y = floor_div(y, *exedit.curr_timeline_layer_height);
y += *exedit.timeline_v_scroll_pos;
return std::clamp<int>(y, 0, num_layers - 1);
}
// division that rounds toward negative infinity.
// `divisor` is assumed to be positive.
static constexpr auto floor_div(auto dividend, auto const divisor) {
if (dividend < 0) dividend -= divisor - 1;
return dividend / divisor;
}
// returns y-coordinate of the top side of the layer.
static int layer_to_point(int layer) {
layer -= *exedit.timeline_v_scroll_pos;
layer *= *exedit.curr_timeline_layer_height;
layer += y_topmost_timeline;
return layer;
}
static auto& layer_settings(int layer) {
return exedit.LayerSettings[layer + num_layers * (*exedit.current_scene)];
}
static auto& layer_flags(int layer) {
return layer_settings(layer).flag;
}
virtual bool initialize(int layer, AviUtl::EditHandle* editp) const = 0;
virtual bool notify() const { return false; }
static bool should_abort() { return curr_undo_id != *exedit.undo_id_ptr; }
protected:
static inline uint32_t curr_undo_id{};
static void update_undo_id() { curr_undo_id = *exedit.undo_id_ptr; }
static void next_undo(){
exedit.nextundo();
update_undo_id();
}
static void set_layer_undo(int layer) { exedit.setundo(layer, 0x10); }
static std::pair<int, int> prev_curr_to_from_until(int prev, int curr) {
// find the range to check.
if (curr < prev) return { curr, prev };
else return { prev + 1, curr + 1 };
}
static int sorted_to_idx(int j) { return exedit.SortedObject[j] - *exedit.ObjectArray_ptr; }
};
struct layer_drag_operation : layer_operation {
static inline constinit bool flagging = false;
virtual bool move(int layer_prev, int layer_curr, WPARAM wparam) const = 0;
virtual bool finish() const { return false; }
};
// 各種フラグ操作.
template<LayerSetting::Flag flag, bool redraw_screen, bool redraw_entire_tl>
struct layer_op_flags : layer_drag_operation {
bool initialize(int layer, AviUtl::EditHandle* editp) const override
{
auto& clicked_flag = layer_flags(layer);
// prepare and push to the undo buffer.
next_undo();
set_layer_undo(layer);
// update the clicked layer.
flagging = !has_flag_or(clicked_flag, flag);
clicked_flag ^= flag;
// always results in updates.
return true;
}
bool move(int layer_prev, int layer_curr, WPARAM) const override
{
auto [from, until] = prev_curr_to_from_until(layer_prev, layer_curr);
bool updated = false;
for (int l = from; l < until; l++) updated |= set(l);
return updated;
}
bool notify() const override
{
if constexpr (redraw_entire_tl) {
// redraw the entire timeline.
::InvalidateRect(exedit.fp->hwnd, nullptr, FALSE);
}
else {
// redraw the header part of the timeline.
RECT rc{
.left = 0, .top = y_topmost_timeline, .right = x_leftmost_timeline,
.bottom = y_topmost_timeline + tl_scroll_v.get_page_size() * (*exedit.curr_timeline_layer_height),
};
::InvalidateRect(exedit.fp->hwnd, &rc, FALSE);
}
// returns true if the image should be updated.
return redraw_screen;
}
private:
static bool set(int layer)
{
auto& flags = layer_flags(layer);
if (has_flag_or(flags, flag) == flagging)
return false; // flag didn't change.
// push undo buffer.
set_layer_undo(layer);
// modify the flag.
flags ^= flag;
// flag did change.
return true;
}
};
constexpr layer_op_flags<LayerSetting::Flag::UnDisp, true, true> op_undisp;
constexpr layer_op_flags<LayerSetting::Flag::Locked, false, false> op_locked;
constexpr layer_op_flags<LayerSetting::Flag::CoordLink, false, false> op_coord_link;
constexpr layer_op_flags<LayerSetting::Flag::Clip, true, false> op_clip;
// オブジェクト選択.
constexpr struct : layer_drag_operation {
private:
static std::set<int> get_selected() {
// store the selected index to std::set<int>.
return { exedit.SelectingObjectIndex, exedit.SelectingObjectIndex + *exedit.SelectingObjectNum_ptr };
}
static void set_selected(std::set<int>& sel) {
// copy back the selected index to exedit.
std::copy(sel.begin(), sel.end(), exedit.SelectingObjectIndex);
*exedit.SelectingObjectNum_ptr = sel.size();
}
public:
bool initialize(int layer, AviUtl::EditHandle* editp) const override
{
auto sel = get_selected();
// see whether all objects in the layer is selected.
flagging = true; // empty layer should turn to "flagging" mode.
for (int j = exedit.SortedObjectLayerBeginIndex[layer], r = exedit.SortedObjectLayerEndIndex[layer];
j <= r; j++) {
if (sel.contains(sorted_to_idx(j))) flagging = false;
else {
flagging = true;
break;
}
}
// then apply the operation to the layer.
(flagging ? add : remove)(layer, sel);
// if any additions/removals took place, set them back to exedit.
if (sel.size() == *exedit.SelectingObjectNum_ptr) return false;
set_selected(sel);
update_undo_id();
return true;
}
bool move(int layer_prev, int layer_curr, WPARAM wparam) const override
{
// nothing to do when ctrl isn't pressed.
if ((wparam & MK_CONTROL) == 0) return false;
auto [from, until] = prev_curr_to_from_until(layer_prev, layer_curr);
// update each layer.
auto sel = get_selected();
auto& op = flagging ? add : remove;
for (int l = from; l < until; l++) op(l, sel);
// if any additions/removals took place, set them back to exedit.
if (sel.size() == *exedit.SelectingObjectNum_ptr) return false;
set_selected(sel);
return true;
}
private:
static void add(int layer, std::set<int>& sel)
{
// avoid selecting objects in locked layers.
if (has_flag_or(layer_flags(layer), LayerSetting::Flag::Locked)) return;
for (int j = exedit.SortedObjectLayerBeginIndex[layer], r = exedit.SortedObjectLayerEndIndex[layer];
j <= r; j++) sel.insert(sorted_to_idx(j));
}
static void remove(int layer, std::set<int>& sel)
{
for (int j = exedit.SortedObjectLayerBeginIndex[layer], r = exedit.SortedObjectLayerEndIndex[layer];
j <= r; j++) sel.erase(sorted_to_idx(j));
}
public:
bool notify() const override
{
// redraw the entire timeline.
::InvalidateRect(exedit.fp->hwnd, nullptr, FALSE);
// the image remains unchanged.
return false;
}
} op_select;
// レイヤードラッグ.
constexpr struct : layer_drag_operation {
private:
static inline constinit struct {
int from, until;
bool is_marked(int i) const {
return from <= i && i < until;
}
bool is_empty() const { return from >= until; }
void mark_range(int l1, int l2) {
if (l1 > l2) std::swap(l1, l2);
if (l1 < from) from = l1;
if (l2 >= until) until = l2 + 1;
}
void start(int layer) { from = until = layer; }
} range_undo_set{ 0, 0 };
static void set_object_undo(int idx_obj) { exedit.setundo(idx_obj, 0x08); }
public:
bool initialize(int layer, AviUtl::EditHandle* editp) const override
{
// reset the "setundo() was called" flags.
range_undo_set.start(layer);
update_undo_id();
::SetCursor(::LoadCursorW(nullptr, reinterpret_cast<const wchar_t*>(IDC_SIZENS)));
return false;
}
bool move(int layer_prev, int layer_curr, WPARAM wparam) const override
{
int dir = layer_prev < layer_curr ? +1 : -1;
// call setundo() for each layer if not yet.
if (range_undo_set.is_empty()) next_undo();
for (int layer = layer_prev; layer != layer_curr + dir; layer += dir) {
if (range_undo_set.is_marked(layer)) continue;
for (int j = exedit.SortedObjectLayerBeginIndex[layer], R = exedit.SortedObjectLayerEndIndex[layer];
j <= R; j++)
set_object_undo(sorted_to_idx(j));
set_layer_undo(layer);
}
range_undo_set.mark_range(layer_prev, layer_curr);
bool modified = false;
// modify the objects on the dragged layer.
for (int j = exedit.SortedObjectLayerBeginIndex[layer_prev], R = exedit.SortedObjectLayerEndIndex[layer_prev];
j <= R; j++) {
auto* obj = exedit.SortedObject[j];
obj->layer_disp = obj->layer_set = layer_curr;
modified = true;
}
ExEdit::LayerSetting dragged_layer_settings = layer_settings(layer_prev);
// modify objects and the settings of passing-through layers.
for (int layer = layer_prev; layer != layer_curr; layer += dir) {
for (int j = exedit.SortedObjectLayerBeginIndex[layer + dir], R = exedit.SortedObjectLayerEndIndex[layer + dir];
j <= R; j++) {
auto* obj = exedit.SortedObject[j];
obj->layer_disp = obj->layer_set = layer;
modified = true;
}
layer_settings(layer) = layer_settings(layer + dir);
}
layer_settings(layer_curr) = dragged_layer_settings;
if (modified)
// update the sorted table if any of the objects moved.
exedit.update_ObjectTables();
return true;
}
bool notify() const override
{
// redraw the entire timeline.
::InvalidateRect(exedit.fp->hwnd, nullptr, FALSE);
// the image will be updated when the drag will finish.
return false;
}
bool finish() const override
{
// the image needs to be updated.
return true;
}
} op_move;
// 右クリックコマンドの発動.
template<uint32_t id, bool redraw>
struct layer_command_operation : layer_operation {
constexpr static uint32_t command_id = id;
bool initialize(int layer, AviUtl::EditHandle* editp) const override {
*exedit.last_clicked_y = layer_to_point(layer);
return exedit.func_wndproc(exedit.fp->hwnd, WM_COMMAND, command_id, 0, editp, exedit.fp) != FALSE;
}
bool notify() const override { return redraw; }
};
constexpr static uint32_t
layer_command_id_rename = 1056,
layer_command_id_toggle_others = 1075;
constexpr layer_command_operation<layer_command_id_rename, false> op_rename;
constexpr layer_command_operation<layer_command_id_toggle_others, true> op_toggle_others;
// 何もしないダミー.
constexpr struct : layer_operation {
bool initialize(int layer, AviUtl::EditHandle* editp) const override { return false; }
} op_does_nothing;
////////////////////////////////
// 設定項目.
////////////////////////////////
enum class mod_key : uint8_t {
no_keys = 0,
ctrl = 1 << 0,
shift = 1 << 1,
alt = 1 << 2,
};
template<> struct AviUtl::detail::flag::ops_def<mod_key> :std::true_type {};
enum class layer_op_kind : uint8_t {
none = 0,
undisp = 1,
locked = 2,
coord_link = 3,
clip = 4,
select = 5,
rename = 6,
toggle_others = 7,
move = 8,
ignore = 255,
};
inline constinit struct Settings {
void load(const char* inifile)
{
auto filter = [](mod_key key, layer_op_kind val) {
// select operation requires ctrl key pressed.
return val != layer_op_kind::select || has_flag_or(key, mod_key::ctrl);
};
load_map(inifile, "drag", drag_mapping, filter);
load_map(inifile, "double_click", double_click_mapping, filter);
// timer delay.
auto_scroll_delay_ms = static_cast<size_t>(std::clamp<int32_t>(
::GetPrivateProfileIntA(
"scroll", "auto_scroll_delay_ms", static_cast<int>(auto_scroll_delay_ms), inifile),
auto_scroll_delay_ms_min, auto_scroll_delay_ms_max));
if (0 < auto_scroll_delay_ms && auto_scroll_delay_ms < USER_TIMER_MINIMUM)
auto_scroll_delay_ms = USER_TIMER_MINIMUM;
}
layer_operation const* map_drag(mod_key keys) const { return map(keys, drag_mapping); }
layer_operation const* map_double_click(mod_key keys) const { return map(keys, double_click_mapping); }
size_t auto_scroll_delay_ms = 100;
constexpr static size_t auto_scroll_delay_ms_min = 0, auto_scroll_delay_ms_max = 10'000;
private:
static layer_operation const* map(mod_key keys, const layer_op_kind(&map)[1 << 3])
{
auto i = static_cast<size_t>(keys);
if (i >= std::size(map)) return nullptr;
auto j = static_cast<size_t>(map[i]);
if (j >= std::size(kind_to_ptr)) {
if (j == static_cast<size_t>(layer_op_kind::ignore)) return &op_does_nothing;
return nullptr;
}
return kind_to_ptr[j];
}
static constexpr layer_operation const* kind_to_ptr[]{
nullptr,
&op_undisp,
&op_locked,
&op_coord_link,
&op_clip,
&op_select,
&op_rename,
&op_toggle_others,
&op_move,
};
layer_op_kind drag_mapping[1 << 3]{
layer_op_kind::undisp, // no mod key.
layer_op_kind::select, // ctrl.
layer_op_kind::locked, // shift.
layer_op_kind::none, // ctrl+shift.
layer_op_kind::rename, // alt.
layer_op_kind::none, // ctrl+alt.
layer_op_kind::none, // shift+alt.
layer_op_kind::none, // ctrl+shift+alt.
};
layer_op_kind double_click_mapping[1 << 3]{
layer_op_kind::toggle_others, // no mod key.
layer_op_kind::none, // ctrl.
layer_op_kind::none, // shift.
layer_op_kind::none, // ctrl+shift.
layer_op_kind::none, // alt.
layer_op_kind::none, // ctrl+alt.
layer_op_kind::none, // shift+alt.
layer_op_kind::none, // ctrl+shift+alt.
};
void load_map(const char* inifile, const char* section, layer_op_kind(&map)[1 << 3], auto filter)
{
for (auto [k, v] : map | std::views::enumerate) {
auto key = static_cast<mod_key>(k);
auto val = static_cast<layer_op_kind>(::GetPrivateProfileIntA(
section, mod_key_name(key), static_cast<int>(v), inifile));
v = filter(key, val) ? val : layer_op_kind::none;
}
}
static constexpr const char* mod_key_name(mod_key keys) {
switch (keys) {
using enum mod_key;
case no_keys: return "no_keys";
case ctrl: return "ctrl";
case shift: return "shift";
case ctrl | shift: return "ctrl_shift";
case alt: return "alt";
case ctrl | alt: return "ctrl_alt";
case shift | alt: return "shift_alt";
case ctrl | shift | alt: return "ctrl_shift_alt";
}
std::unreachable();
}
} settings;
////////////////////////////////
// ExEdit のコールバック乗っ取り.
////////////////////////////////
class Detour {
static inline constinit layer_drag_operation const* curr_operation = nullptr;
static inline constinit int layer_prev = 0;
static bool on_drag(int layer_mouse, WPARAM wparam, AviUtl::EditHandle* editp)
{
// scroll vertically if the mouse is outside the window.
int dir = scroll_vertically_on_drag(layer_mouse, editp);
// limit the target layers to the visible ones.
auto top_layer = tl_scroll_v.get_pos();
layer_mouse = std::clamp(layer_mouse, top_layer, top_layer + tl_scroll_v.get_page_size() - 1);
// set timer for automatic overflow scrolling.
switch (dir) {
case 0: timer_data.kill_timer(false); break;
case +1: case -1: timer_data.set_timer(layer_mouse + dir); break;
}
// return if the position didn't change.
if (layer_mouse == layer_prev) return false;
// then pass to the drag handler.
return curr_operation->move(std::exchange(layer_prev, layer_mouse), layer_mouse, wparam);
}
static bool exit_drag(HWND hwnd) {
bool redraw = false;
if (curr_operation != nullptr)
redraw = std::exchange(curr_operation, nullptr)->finish();
if (::GetCapture() == hwnd)
::ReleaseCapture();
return redraw;
}
// scrolls the timeline vertically when dragging over the visible area.
// there are at least certain time of intervals between scrolls.
// returns the direction (+1/-1), 0 (not overflowing), or -2 (too early from the last scroll).
static int scroll_vertically_on_drag(int layer_mouse, AviUtl::EditHandle* editp) {
constexpr auto check_tick = [] {
#pragma warning(suppress : 28159) // 32 bit is enough.
auto curr = ::GetTickCount();
static constinit decltype(curr) prev = 0;
if (curr - prev < settings.auto_scroll_delay_ms) return false;
prev = curr;
return true;
};
int dir;
if (settings.auto_scroll_delay_ms <= 0) return 0;
else if (auto rel_pos = layer_mouse - tl_scroll_v.get_pos();
rel_pos < 0) dir = -1;
else if (rel_pos >= tl_scroll_v.get_page_size()) dir = +1;
else return 0;
if (!check_tick()) return -2;
// then scroll.
tl_scroll_v.set_pos(tl_scroll_v.get_pos() + dir, editp);
return dir;
}
static inline constinit struct {
int layer_next;
bool is_valid() const { return is_valid(layer_next); }
auto invalidate() { return std::exchange(layer_next, -1); }
void set_timer(int layer) {
if (!is_valid(layer)) return;
layer_next = layer;
::SetTimer(exedit.fp->hwnd, timer_id(), settings.auto_scroll_delay_ms, nullptr);
}
int kill_timer(bool force) {
if (!force && !is_valid()) return -1;
::KillTimer(exedit.fp->hwnd, timer_id());
return invalidate();
}
static bool is_valid(int layer) {
return 0 <= layer && layer < layer_operation::num_layers;
}
uintptr_t timer_id() const { return reinterpret_cast<uintptr_t>(this); }
} timer_data{ -1 };
static bool on_timer(AviUtl::EditHandle* editp)
{
int layer = timer_data.kill_timer(true);
if (!timer_data.is_valid(layer)) return false;
// construct WPARAM.
WPARAM wparam = MK_LBUTTON;
if (::GetKeyState(VK_CONTROL) < 0) wparam |= MK_CONTROL;
if (::GetKeyState(VK_SHIFT) < 0) wparam |= MK_SHIFT;
return on_drag(layer, wparam, editp);
}
static layer_operation const* choose_operation(bool is_drag, WPARAM wparam) {
if (wparam & ~(MK_LBUTTON | MK_CONTROL | MK_SHIFT)) return nullptr;
using enum mod_key;
mod_key keys = no_keys;
if ((wparam & MK_CONTROL) != 0) keys |= ctrl;
if ((wparam & MK_SHIFT) != 0) keys |= shift;
if (::GetKeyState(VK_MENU) < 0) keys |= alt;
return is_drag ? settings.map_drag(keys) : settings.map_double_click(keys);
}
public:
static BOOL func_wndproc_detour(HWND hwnd, UINT message, WPARAM wparam, LPARAM lparam, AviUtl::EditHandle* editp, AviUtl::FilterPlugin* fp)
{
if (curr_operation != nullptr) {
if (curr_operation->should_abort() ||
!fp->exfunc->is_editing(editp) || fp->exfunc->is_saving(editp)) {
// either there was another edit while dragging, or
// AviUtl isn't in a suitable state. abort dragging.
exit_drag(hwnd);
goto default_handler;
}
switch (message) {
case WM_MOUSEMOVE:
return on_drag(layer_operation::point_to_layer(static_cast<int16_t>(lparam >> 16)), wparam, editp)
&& curr_operation->notify() ? TRUE : FALSE;
case WM_TIMER:
if (timer_data.timer_id() != wparam) goto default_handler;
return on_timer(editp)
&& curr_operation->notify() ? TRUE : FALSE;
case WM_LBUTTONDOWN:
case WM_RBUTTONDOWN:
case WM_MBUTTONDOWN:
case WM_XBUTTONDOWN:
case WM_LBUTTONUP:
case WM_RBUTTONUP:
case WM_MBUTTONUP:
case WM_XBUTTONUP:
// any mouse button would stop this drag.
case WM_CAPTURECHANGED: // drag aborted.
return exit_drag(hwnd) ? TRUE : FALSE;
default:
// otherwise let it be handled normally.
goto default_handler;
}
}
else if (message == WM_LBUTTONDOWN || message == WM_LBUTTONDBLCLK) {
// the mouse should be on a layer header.
int mouse_x = static_cast<int16_t>(lparam), mouse_y = static_cast<int16_t>(lparam >> 16);
if (!layer_operation::point_in_header(mouse_x, mouse_y)) goto default_handler;
// AviUtl must be in a suitable state.
if (!fp->exfunc->is_editing(editp) || fp->exfunc->is_saving(editp)) goto default_handler;
// choose the operation according to the modifier keys.
layer_operation const* cand_operation = choose_operation(message == WM_LBUTTONDOWN, wparam);
if (cand_operation == nullptr) goto default_handler;
// initialize related variables.
layer_prev = layer_operation::point_to_layer(mouse_y);
if (curr_operation = dynamic_cast<layer_drag_operation const*>(cand_operation))
// assigned operation is a drag. capture the mouse.
::SetCapture(hwnd);
// perform the operation.
return cand_operation->initialize(layer_prev, editp)
&& cand_operation->notify() ? TRUE : FALSE;
}
default_handler:
return exedit.func_wndproc(hwnd, message, wparam, lparam, editp, fp);
}
};
////////////////////////////////
// AviUtlに渡す関数の定義.
////////////////////////////////
static BOOL func_init(AviUtl::FilterPlugin* fp)
{
// 情報源確保.
if (!exedit.init(fp)) {
::MessageBoxA(nullptr, "拡張編集0.92が見つかりませんでした.",
fp->name, MB_OK | MB_ICONEXCLAMATION);
return FALSE;
}
// 設定ロード.
char path[MAX_PATH];
auto len = ::GetModuleFileNameA(fp->dll_hinst, path, std::size(path));
if (3 <= len && len < std::size(path)) {
::strcpy_s(&path[len - 3], 3 + 1, "ini");
settings.load(path);
}
// コールバック関数差し替え.
exedit.fp->func_WndProc = &Detour::func_wndproc_detour;
return TRUE;
}
////////////////////////////////
// Entry point.
////////////////////////////////
BOOL WINAPI DllMain(HINSTANCE hinst, DWORD fdwReason, LPVOID lpvReserved)
{
switch (fdwReason) {
case DLL_PROCESS_ATTACH:
::DisableThreadLibraryCalls(hinst);
break;
}
return TRUE;
}
////////////////////////////////
// 看板.
////////////////////////////////
#define PLUGIN_NAME "レイヤー一括切り替え"
#define PLUGIN_VERSION "v1.61"
#define PLUGIN_AUTHOR "sigma-axis"
#define PLUGIN_INFO_FMT(name, ver, author) (name##" "##ver##" by "##author)
#define PLUGIN_INFO PLUGIN_INFO_FMT(PLUGIN_NAME, PLUGIN_VERSION, PLUGIN_AUTHOR)
extern "C" __declspec(dllexport) AviUtl::FilterPluginDLL* __stdcall GetFilterTable(void)
{
// (フィルタとは名ばかりの)看板.
using Flag = AviUtl::FilterPlugin::Flag;
static constinit AviUtl::FilterPluginDLL filter{
.flag = Flag::NoConfig | Flag::AlwaysActive | Flag::ExInformation,
.name = PLUGIN_NAME,
.func_init = func_init,
.information = PLUGIN_INFO,
};
return &filter;
}