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
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
|
#include "filetree.h"
#include "envshell.h"
#include "filetreeitem.h"
#include "filetreemodel.h"
#include "organizercore.h"
#include "shared/directoryentry.h"
#include "shared/fileentry.h"
#include "shared/filesorigin.h"
#include <log.h>
#include <widgetutility.h>
using namespace MOShared;
using namespace MOBase;
bool canPreviewFile(const PluginContainer& pc, const FileEntry& file)
{
return canPreviewFile(pc, file.isFromArchive(),
QString::fromStdWString(file.getName()));
}
bool canRunFile(const FileEntry& file)
{
return canRunFile(file.isFromArchive(), QString::fromStdWString(file.getName()));
}
bool canOpenFile(const FileEntry& file)
{
return canOpenFile(file.isFromArchive(), QString::fromStdWString(file.getName()));
}
bool isHidden(const FileEntry& file)
{
return (QString::fromStdWString(file.getName())
.endsWith(ModInfo::s_HiddenExt, Qt::CaseInsensitive));
}
bool canExploreFile(const FileEntry& file);
bool canHideFile(const FileEntry& file);
bool canUnhideFile(const FileEntry& file);
class MenuItem
{
public:
MenuItem(QString s = {}) : m_action(new QAction(std::move(s))) {}
MenuItem& caption(const QString& s)
{
m_action->setText(s);
return *this;
}
template <class F>
MenuItem& callback(F&& f)
{
QObject::connect(m_action, &QAction::triggered, std::forward<F>(f));
return *this;
}
MenuItem& hint(const QString& s)
{
m_tooltip = s;
return *this;
}
MenuItem& disabledHint(const QString& s)
{
m_disabledHint = s;
return *this;
}
MenuItem& enabled(bool b)
{
m_action->setEnabled(b);
return *this;
}
void addTo(QMenu& menu)
{
QString s;
setTips();
m_action->setParent(&menu);
menu.addAction(m_action);
}
private:
QAction* m_action;
QString m_tooltip;
QString m_disabledHint;
void setTips()
{
if (m_action->isEnabled() || m_disabledHint.isEmpty()) {
m_action->setStatusTip(m_tooltip);
return;
}
QString s = m_tooltip.trimmed();
if (!s.isEmpty()) {
if (!s.endsWith(".")) {
s += ".";
}
s += "\n";
}
s += QObject::tr("Disabled because") + ": " + m_disabledHint.trimmed();
if (!s.endsWith(".")) {
s += ".";
}
m_action->setStatusTip(s);
}
};
FileTree::FileTree(OrganizerCore& core, PluginContainer& pc, QTreeView* tree)
: m_core(core), m_plugins(pc), m_tree(tree), m_model(new FileTreeModel(core))
{
m_tree->sortByColumn(0, Qt::AscendingOrder);
m_tree->setModel(m_model);
m_tree->header()->resizeSection(0, 200);
MOBase::setCustomizableColumns(m_tree);
connect(m_tree, &QTreeView::customContextMenuRequested, [&](auto pos) {
onContextMenu(pos);
});
connect(m_tree, &QTreeView::expanded, [&](auto&& index) {
onExpandedChanged(index, true);
});
connect(m_tree, &QTreeView::collapsed, [&](auto&& index) {
onExpandedChanged(index, false);
});
connect(m_tree, &QTreeView::activated, [&](auto&& index) {
onItemActivated(index);
});
}
FileTreeModel* FileTree::model()
{
return m_model;
}
void FileTree::refresh()
{
m_model->refresh();
}
void FileTree::clear()
{
m_model->clear();
}
bool FileTree::fullyLoaded() const
{
return m_model->fullyLoaded();
}
void FileTree::ensureFullyLoaded()
{
m_model->ensureFullyLoaded();
}
FileTreeItem* FileTree::singleSelection()
{
const auto sel = m_tree->selectionModel()->selectedRows();
if (sel.size() == 1) {
return m_model->itemFromIndex(proxiedIndex(sel[0]));
}
return nullptr;
}
void FileTree::open(FileTreeItem* item)
{
if (!item) {
item = singleSelection();
if (!item) {
return;
}
}
if (item->isFromArchive() || item->isDirectory()) {
return;
}
const QString path = item->realPath();
const QFileInfo targetInfo(path);
m_core.processRunner()
.setFromFile(m_tree->window(), targetInfo)
.setHooked(false)
.setWaitForCompletion(ProcessRunner::TriggerRefresh)
.run();
}
void FileTree::openHooked(FileTreeItem* item)
{
if (!item) {
item = singleSelection();
if (!item) {
return;
}
}
if (item->isFromArchive() || item->isDirectory()) {
return;
}
const QString path = item->realPath();
const QFileInfo targetInfo(path);
m_core.processRunner()
.setFromFile(m_tree->window(), targetInfo)
.setHooked(true)
.setWaitForCompletion(ProcessRunner::TriggerRefresh)
.run();
}
void FileTree::preview(FileTreeItem* item)
{
if (!item) {
item = singleSelection();
if (!item) {
return;
}
}
const QString path = item->dataRelativeFilePath();
m_core.previewFileWithAlternatives(m_tree->window(), path);
}
void FileTree::activate(FileTreeItem* item)
{
if (item->isDirectory()) {
// activating a directory should just toggle expansion
return;
}
const auto tryPreview = m_core.settings().interface().doubleClicksOpenPreviews();
if (tryPreview) {
const QFileInfo fi(item->realPath());
if (m_plugins.previewGenerator().previewSupported(fi.suffix().toLower(),
item->isFromArchive())) {
preview(item);
return;
}
}
open(item);
}
void FileTree::addAsExecutable(FileTreeItem* item)
{
if (!item) {
item = singleSelection();
if (!item) {
return;
}
}
const QString path = item->realPath();
const QFileInfo target(path);
const auto fec = spawn::getFileExecutionContext(m_tree->window(), target);
switch (fec.type) {
case spawn::FileExecutionTypes::Executable: {
const QString name = QInputDialog::getText(
m_tree->window(), tr("Enter Name"), tr("Enter a name for the executable"),
QLineEdit::Normal, target.completeBaseName());
if (!name.isEmpty()) {
// Note: If this already exists, you'll lose custom settings
m_core.executablesList()->setExecutable(
Executable()
.title(name)
.binaryInfo(fec.binary)
.arguments(fec.arguments)
.workingDirectory(target.absolutePath()));
emit executablesChanged();
}
break;
}
case spawn::FileExecutionTypes::Other: // fall-through
default: {
QMessageBox::information(m_tree->window(), tr("Not an executable"),
tr("This is not a recognized executable."));
break;
}
}
}
void FileTree::exploreOrigin(FileTreeItem* item)
{
if (!item) {
item = singleSelection();
if (!item) {
return;
}
}
if (item->isFromArchive() || item->isDirectory()) {
return;
}
const auto path = item->realPath();
log::debug("opening in explorer: {}", path);
shell::Explore(path);
}
void FileTree::openModInfo(FileTreeItem* item)
{
if (!item) {
item = singleSelection();
if (!item) {
return;
}
}
const auto originID = item->originID();
if (originID == 0) {
// unmanaged
return;
}
const auto& origin = m_core.directoryStructure()->getOriginByID(originID);
const auto& name = QString::fromStdWString(origin.getName());
unsigned int index = ModInfo::getIndex(name);
if (index == UINT_MAX) {
log::error("can't open mod info, mod '{}' not found", name);
return;
}
ModInfo::Ptr modInfo = ModInfo::getByIndex(index);
if (modInfo) {
emit displayModInformation(modInfo, index, ModInfoTabIDs::None);
}
}
void FileTree::toggleVisibility(bool visible, FileTreeItem* item)
{
if (!item) {
item = singleSelection();
if (!item) {
return;
}
}
const QString currentName = item->realPath();
QString newName;
if (visible) {
if (!currentName.endsWith(ModInfo::s_HiddenExt)) {
log::error("cannot unhide '{}', doesn't end with '{}'", currentName,
ModInfo::s_HiddenExt);
return;
}
newName = currentName.left(currentName.size() - ModInfo::s_HiddenExt.size());
} else {
if (currentName.endsWith(ModInfo::s_HiddenExt)) {
log::error("cannot hide '{}', already ends with '{}'", currentName,
ModInfo::s_HiddenExt);
return;
}
newName = currentName + ModInfo::s_HiddenExt;
}
log::debug("attempting to rename '{}' to '{}'", currentName, newName);
FileRenamer renamer(m_tree->window(),
(visible ? FileRenamer::UNHIDE : FileRenamer::HIDE));
if (renamer.rename(currentName, newName) == FileRenamer::RESULT_OK) {
emit originModified(item->originID());
refresh();
}
}
void FileTree::hide(FileTreeItem* item)
{
toggleVisibility(false, item);
}
void FileTree::unhide(FileTreeItem* item)
{
toggleVisibility(true, item);
}
class DumpFailed
{};
void FileTree::dumpToFile() const
{
log::debug("dumping filetree to file");
QString file = QFileDialog::getSaveFileName(m_tree->window());
if (file.isEmpty()) {
log::debug("user canceled");
return;
}
m_core.directoryStructure()->dump(file.toStdWString());
}
void FileTree::onExpandedChanged(const QModelIndex& index, bool expanded)
{
if (auto* item = m_model->itemFromIndex(proxiedIndex(index))) {
item->setExpanded(expanded);
}
}
void FileTree::onItemActivated(const QModelIndex& index)
{
auto* item = m_model->itemFromIndex(proxiedIndex(index));
if (!item) {
return;
}
activate(item);
}
void FileTree::onContextMenu(const QPoint& pos)
{
const auto m = QApplication::keyboardModifiers();
if (m & Qt::ShiftModifier) {
// shift+right-click won't select individual items because it interferes
// with regular shift selection; this makes it behave like explorer:
// - if the right-clicked item is currently part of the selection, show
// the menu for the selection
// - if not, select this item only and show the menu for it
const auto index = m_tree->indexAt(pos);
if (!m_tree->selectionModel()->isSelected(index)) {
m_tree->selectionModel()->select(index, QItemSelectionModel::ClearAndSelect |
QItemSelectionModel::Rows |
QItemSelectionModel::Current);
}
// if no shell menu was available, continue on and show the regular
// context menu
if (showShellMenu(pos)) {
return;
}
}
QMenu menu;
if (auto* item = singleSelection()) {
if (item->isDirectory()) {
addDirectoryMenus(menu, *item);
} else {
const auto file = m_core.directoryStructure()->searchFile(
item->dataRelativeFilePath().toStdWString(), nullptr);
if (file) {
addFileMenus(menu, *file, item->originID());
}
}
}
addCommonMenus(menu);
menu.exec(m_tree->viewport()->mapToGlobal(pos));
}
QMainWindow* getMainWindow(QWidget* w)
{
QWidget* p = w;
while (p) {
if (auto* mw = dynamic_cast<QMainWindow*>(p)) {
return mw;
}
p = p->parentWidget();
}
return nullptr;
}
bool FileTree::showShellMenu(QPoint pos)
{
auto* mw = getMainWindow(m_tree);
// menus by origin
std::map<int, env::ShellMenu> menus;
int totalFiles = 0;
bool warnOnEmpty = true;
for (auto&& index : m_tree->selectionModel()->selectedRows()) {
auto* item = m_model->itemFromIndex(proxiedIndex(index));
if (!item) {
continue;
}
if (item->isDirectory()) {
warnOnEmpty = false;
log::warn("directories do not have shell menus; '{}' selected", item->filename());
continue;
}
if (item->isFromArchive()) {
warnOnEmpty = false;
log::warn("files from archives do not have shell menus; '{}' selected",
item->filename());
continue;
}
auto itor = menus.find(item->originID());
if (itor == menus.end()) {
itor = menus.emplace(item->originID(), mw).first;
}
if (!QFile::exists(item->realPath())) {
log::error("{}", tr("File '%1' does not exist, you may need to refresh.")
.arg(item->realPath()));
}
itor->second.addFile(QFileInfo(item->realPath()));
++totalFiles;
if (item->isConflicted()) {
const auto file = m_core.directoryStructure()->searchFile(
item->dataRelativeFilePath().toStdWString(), nullptr);
if (!file) {
log::error("file '{}' not found, data path={}, real path={}", item->filename(),
item->dataRelativeFilePath(), item->realPath());
continue;
}
const auto alts = file->getAlternatives();
if (alts.empty()) {
log::warn("file '{}' has no alternative origins but is marked as conflicted",
item->dataRelativeFilePath());
}
for (auto&& alt : alts) {
auto itor = menus.find(alt.originID());
if (itor == menus.end()) {
itor = menus.emplace(alt.originID(), mw).first;
}
const auto fullPath = file->getFullPath(alt.originID());
if (fullPath.empty()) {
log::error("file {} not found in origin {}", item->dataRelativeFilePath(),
alt.originID());
continue;
}
if (!QFile::exists(QString::fromStdWString(fullPath))) {
log::error("{}", tr("File '%1' does not exist, you may need to refresh.")
.arg(QString::fromStdWString(fullPath)));
}
itor->second.addFile(QFileInfo(QString::fromStdWString(fullPath)));
}
}
}
if (menus.empty()) {
// don't warn if something that doesn't have a shell menu was selected, a
// warning has already been logged above
if (warnOnEmpty) {
log::warn("no menus to show");
}
return false;
} else if (menus.size() == 1) {
auto& menu = menus.begin()->second;
menu.exec(m_tree->viewport()->mapToGlobal(pos));
} else {
env::ShellMenuCollection mc(mw);
bool hasDiscrepancies = false;
for (auto&& m : menus) {
const auto* origin = m_core.directoryStructure()->findOriginByID(m.first);
if (!origin) {
log::error("origin {} not found for merged menus", m.first);
continue;
}
QString caption = QString::fromStdWString(origin->getName());
if (m.second.fileCount() < totalFiles) {
const auto d = m.second.fileCount();
caption += " " + tr("(only has %1 file(s))").arg(d);
hasDiscrepancies = true;
}
mc.add(caption, std::move(m.second));
}
if (hasDiscrepancies) {
mc.addDetails(tr("%1 file(s) selected").arg(totalFiles));
}
mc.exec(m_tree->viewport()->mapToGlobal(pos));
}
return true;
}
void FileTree::addDirectoryMenus(QMenu&, FileTreeItem&)
{
// noop
}
void FileTree::addFileMenus(QMenu& menu, const FileEntry& file, int originID)
{
using namespace spawn;
addOpenMenus(menu, file);
menu.addSeparator();
menu.setToolTipsVisible(true);
const QFileInfo target(QString::fromStdWString(file.getFullPath()));
MenuItem(tr("&Add as Executable"))
.callback([&] {
addAsExecutable();
})
.hint(tr("Add this file to the executables list"))
.disabledHint(tr("This file is not executable"))
.enabled(getFileExecutionType(target) == FileExecutionTypes::Executable)
.addTo(menu);
MenuItem(tr("Reveal in E&xplorer"))
.callback([&] {
exploreOrigin();
})
.hint(tr("Opens the file in Explorer"))
.disabledHint(tr("This file is in an archive"))
.enabled(!file.isFromArchive())
.addTo(menu);
MenuItem(tr("Open &Mod Info"))
.callback([&] {
openModInfo();
})
.hint(tr("Opens the Mod Info Window"))
.disabledHint(tr("This file is not in a managed mod"))
.enabled(originID != 0)
.addTo(menu);
if (isHidden(file)) {
MenuItem(tr("&Un-Hide"))
.callback([&] {
unhide();
})
.hint(tr("Un-hides the file"))
.disabledHint(tr("This file is in an archive"))
.enabled(!file.isFromArchive())
.addTo(menu);
} else {
MenuItem(tr("&Hide"))
.callback([&] {
hide();
})
.hint(tr("Hides the file"))
.disabledHint(tr("This file is in an archive"))
.enabled(!file.isFromArchive())
.addTo(menu);
}
}
void FileTree::addOpenMenus(QMenu& menu, const MOShared::FileEntry& file)
{
using namespace spawn;
MenuItem openMenu, openHookedMenu;
const QFileInfo target(QString::fromStdWString(file.getFullPath()));
if (getFileExecutionType(target) == FileExecutionTypes::Executable) {
openMenu.caption(tr("&Execute"))
.callback([&] {
open();
})
.hint(tr("Launches this program"))
.disabledHint(tr("This file is in an archive"))
.enabled(!file.isFromArchive());
openHookedMenu.caption(tr("Execute with &VFS"))
.callback([&] {
openHooked();
})
.hint(tr("Launches this program hooked to the VFS"))
.disabledHint(tr("This file is in an archive"))
.enabled(!file.isFromArchive());
} else {
openMenu.caption(tr("&Open"))
.callback([&] {
open();
})
.hint(tr("Opens this file with its default handler"))
.disabledHint(tr("This file is in an archive"))
.enabled(!file.isFromArchive());
openHookedMenu.caption(tr("Open with &VFS"))
.callback([&] {
openHooked();
})
.hint(tr("Opens this file with its default handler hooked to the VFS"))
.disabledHint(tr("This file is in an archive"))
.enabled(!file.isFromArchive());
}
MenuItem previewMenu(tr("&Preview"));
previewMenu
.callback([&] {
preview();
})
.hint(tr("Previews this file within Mod Organizer"))
.disabledHint(tr("This file is in an archive or has no preview handler "
"associated with it"))
.enabled(canPreviewFile(m_plugins, file));
if (m_core.settings().interface().doubleClicksOpenPreviews()) {
previewMenu.addTo(menu);
openMenu.addTo(menu);
openHookedMenu.addTo(menu);
} else {
openMenu.addTo(menu);
previewMenu.addTo(menu);
openHookedMenu.addTo(menu);
}
// bold the first enabled option, only first three are considered
for (int i = 0; i < 3; ++i) {
if (i >= menu.actions().size()) {
break;
}
auto* a = menu.actions()[i];
if (menu.actions()[i]->isEnabled()) {
auto f = a->font();
f.setBold(true);
a->setFont(f);
break;
}
}
}
void FileTree::addCommonMenus(QMenu& menu)
{
menu.addSeparator();
MenuItem(tr("&Save Tree to Text File..."))
.callback([&] {
dumpToFile();
})
.hint(tr("Writes the list of files to a text file"))
.addTo(menu);
MenuItem(tr("&Refresh"))
.callback([&] {
refresh();
})
.hint(tr("Refreshes the list"))
.addTo(menu);
MenuItem(tr("Ex&pand All"))
.callback([&] {
expandAll();
})
.addTo(menu);
MenuItem(tr("&Collapse All"))
.callback([&] {
collapseAll();
})
.addTo(menu);
}
QModelIndex FileTree::proxiedIndex(const QModelIndex& index)
{
auto* model = m_tree->model();
if (auto* proxy = dynamic_cast<QSortFilterProxyModel*>(model)) {
return proxy->mapToSource(index);
} else {
return index;
}
}
void FileTree::collapseAll()
{
m_tree->collapseAll();
}
void FileTree::expandAll()
{
m_model->aboutToExpandAll();
m_tree->expandAll();
m_model->expandedAll();
}
|