summaryrefslogtreecommitdiff
path: root/src/modlist.cpp
blob: 4ef3afbc94b4fa27004f2950f08e6a8157f9b449 (plain)
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
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
/*
Copyright (C) 2012 Sebastian Herbord. All rights reserved.

This file is part of Mod Organizer.

Mod Organizer is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

Mod Organizer is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with Mod Organizer.  If not, see <http://www.gnu.org/licenses/>.
*/

#include "modlist.h"

#include "messagedialog.h"
#include "modinforegular.h"
#include "modlistdropinfo.h"
#include "modlistsortproxy.h"
#include "organizercore.h"
#include "pluginlist.h"
#include "qtgroupingproxy.h"
#include "settings.h"
#include "shared/directoryentry.h"
#include "shared/fileentry.h"
#include "shared/filesorigin.h"
#include "viewmarkingscrollbar.h"
#include "widgetutility.h"

#include "filesystemutilities.h"
#include "shared/appconfig.h"
#include <report.h>

#include <QAbstractItemView>
#include <QApplication>
#include <QCheckBox>
#include <QContextMenuEvent>
#include <QDir>
#include <QDirIterator>
#include <QEvent>
#include <QFileInfo>
#include <QFontDatabase>
#include <QMenu>
#include <QMessageBox>
#include <QMimeData>
#include <QSortFilterProxyModel>
#include <QStandardItemModel>
#include <QStringList>
#include <QWidgetAction>

#include <algorithm>
#include <sstream>
#include <stdexcept>

using namespace MOBase;

ModList::ModList(PluginContainer* pluginContainer, OrganizerCore* organizer)
    : QAbstractItemModel(organizer), m_Organizer(organizer), m_Profile(nullptr),
      m_NexusInterface(nullptr), m_Modified(false), m_InNotifyChange(false),
      m_FontMetrics(QFont()), m_PluginContainer(pluginContainer)
{
  m_LastCheck.start();
}

ModList::~ModList()
{
  m_ModInstalled.disconnect_all_slots();
  m_ModRemoved.disconnect_all_slots();
  m_ModStateChanged.disconnect_all_slots();
  m_ModMoved.disconnect_all_slots();
}

void ModList::setProfile(Profile* profile)
{
  m_Profile = profile;
}

int ModList::rowCount(const QModelIndex& parent) const
{
  if (!parent.isValid()) {
    return ModInfo::getNumMods();
  } else {
    return 0;
  }
}

bool ModList::hasChildren(const QModelIndex& parent) const
{
  if (!parent.isValid()) {
    return ModInfo::getNumMods() > 0;
  } else {
    return false;
  }
}

int ModList::columnCount(const QModelIndex&) const
{
  return COL_LASTCOLUMN + 1;
}

QString ModList::getDisplayName(ModInfo::Ptr info) const
{
  QString name = info->name();
  if (info->isSeparator()) {
    name = name.replace("_separator", "");
  }
  return name;
}

QString ModList::makeInternalName(ModInfo::Ptr info, QString name) const
{
  if (info->isSeparator()) {
    name += "_separator";
  }
  return name;
}

QString ModList::getFlagText(ModInfo::EFlag flag, ModInfo::Ptr modInfo) const
{
  switch (flag) {
  case ModInfo::FLAG_BACKUP:
    return tr("Backup");
  case ModInfo::FLAG_SEPARATOR:
    return tr("Separator");
  case ModInfo::FLAG_INVALID:
    return tr("No valid game data");
  case ModInfo::FLAG_NOTENDORSED:
    return tr("Not endorsed yet");
  case ModInfo::FLAG_NOTES: {
    QStringList output;
    if (!modInfo->comments().isEmpty())
      output << QString("<i>%1</i>").arg(modInfo->comments());
    if (!modInfo->notes().isEmpty())
      output << QString("<i>%1</i>").arg(modInfo->notes());
    return output.join("");
  }
  case ModInfo::FLAG_ALTERNATE_GAME:
    return tr("This mod is for a different<br> game, "
              "make sure it's compatible or it could cause crashes.");
  case ModInfo::FLAG_TRACKED:
    return tr("Mod is being tracked on the website");
  case ModInfo::FLAG_HIDDEN_FILES:
    return tr("Contains hidden files");
  default:
    return "";
  }
}

QString ModList::getConflictFlagText(ModInfo::EConflictFlag flag,
                                     ModInfo::Ptr modInfo) const
{
  switch (flag) {
  case ModInfo::FLAG_CONFLICT_OVERWRITE:
    return tr("Overwrites loose files");
  case ModInfo::FLAG_CONFLICT_OVERWRITTEN:
    return tr("Overwritten loose files");
  case ModInfo::FLAG_CONFLICT_MIXED:
    return tr("Loose files Overwrites & Overwritten");
  case ModInfo::FLAG_CONFLICT_REDUNDANT:
    return tr("Redundant");
  case ModInfo::FLAG_ARCHIVE_LOOSE_CONFLICT_OVERWRITE:
    return tr("Overwrites an archive with loose files");
  case ModInfo::FLAG_ARCHIVE_LOOSE_CONFLICT_OVERWRITTEN:
    return tr("Archive is overwritten by loose files");
  case ModInfo::FLAG_ARCHIVE_CONFLICT_OVERWRITE:
    return tr("Overwrites another archive file");
  case ModInfo::FLAG_ARCHIVE_CONFLICT_OVERWRITTEN:
    return tr("Overwritten by another archive file");
  case ModInfo::FLAG_ARCHIVE_CONFLICT_MIXED:
    return tr("Archive files overwrites & overwritten");
  default:
    return "";
  }
}

QVariant ModList::data(const QModelIndex& modelIndex, int role) const
{
  if (m_Profile == nullptr)
    return QVariant();
  if (!modelIndex.isValid())
    return QVariant();
  unsigned int modIndex = modelIndex.row();
  int column            = modelIndex.column();

  ModInfo::Ptr modInfo = ModInfo::getByIndex(modIndex);
  if ((role == Qt::DisplayRole) || (role == Qt::EditRole)) {
    if ((column == COL_FLAGS) || (column == COL_CONTENT) ||
        (column == COL_CONFLICTFLAGS)) {
      return QVariant();
    } else if (column == COL_NAME) {
      return getDisplayName(modInfo);
    } else if (column == COL_VERSION) {
      VersionInfo verInfo = modInfo->version();
      QString version     = verInfo.displayString();
      if (role != Qt::EditRole) {
        if (version.isEmpty() && modInfo->canBeUpdated()) {
          version = "?";
        }
      }
      return version;
    } else if (column == COL_PRIORITY) {
      if (modInfo->hasAutomaticPriority()) {
        return QVariant();  // hide priority for mods where it's fixed
      } else {
        return QString::number(m_Profile->getModPriority(modIndex));
      }
    } else if (column == COL_MODID) {
      int modID = modInfo->nexusId();
      if (modID > 0) {
        return modID;
      } else {
        return QVariant();
      }
    } else if (column == COL_GAME) {
      if (m_PluginContainer != nullptr) {
        for (auto game : m_PluginContainer->plugins<IPluginGame>()) {
          if (game->gameShortName().compare(modInfo->gameName(), Qt::CaseInsensitive) ==
              0)
            return game->gameName();
        }
      }
      return modInfo->gameName();
    } else if (column == COL_CATEGORY) {
      if (modInfo->hasFlag(ModInfo::FLAG_FOREIGN)) {
        return tr("Non-MO");
      } else {
        int category = modInfo->primaryCategory();
        if (category != -1) {
          CategoryFactory& categoryFactory = CategoryFactory::instance();
          if (categoryFactory.categoryExists(category)) {
            try {
              int categoryIdx = categoryFactory.getCategoryIndex(category);
              return categoryFactory.getCategoryName(categoryIdx);
            } catch (const std::exception& e) {
              log::error("failed to retrieve category name: {}", e.what());
              return QString();
            }
          } else {
            log::warn("category {} doesn't exist (may have been removed)", category);
            modInfo->setCategory(category, false);
            return QString();
          }
        } else {
          return QVariant();
        }
      }
    } else if (column == COL_INSTALLTIME) {
      // display installation time for mods that can be updated
      if (modInfo->creationTime().isValid()) {
        return modInfo->creationTime();
      } else {
        return QVariant();
      }
    } else if (column == COL_NOTES) {
      return modInfo->comments();
    } else {
      return tr("invalid");
    }
  } else if ((role == Qt::CheckStateRole) && (column == 0)) {
    if (modInfo->canBeEnabled()) {
      return m_Profile->modEnabled(modIndex) ? Qt::Checked : Qt::Unchecked;
    } else {
      return QVariant();
    }
  } else if (role == Qt::TextAlignmentRole) {
    if (column == COL_NAME) {
      if (modInfo->getHighlight() & ModInfo::HIGHLIGHT_CENTER) {
        return QVariant(Qt::AlignCenter | Qt::AlignVCenter);
      } else {
        return QVariant(Qt::AlignLeft | Qt::AlignVCenter);
      }
    } else if (column == COL_VERSION) {
      return QVariant(Qt::AlignRight | Qt::AlignVCenter);
    } else if (column == COL_NOTES) {
      return QVariant(Qt::AlignLeft | Qt::AlignVCenter);
    } else {
      return QVariant(Qt::AlignCenter | Qt::AlignVCenter);
    }
  } else if (role == GroupingRole) {
    if (column == COL_CATEGORY) {
      QVariantList categoryNames;
      std::set<int> categories         = modInfo->getCategories();
      CategoryFactory& categoryFactory = CategoryFactory::instance();
      for (auto iter = categories.begin(); iter != categories.end(); ++iter) {
        categoryNames.append(
            categoryFactory.getCategoryName(categoryFactory.getCategoryIndex(*iter)));
      }
      if (categoryNames.count() != 0) {
        return categoryNames;
      } else {
        return QVariant();
      }
    } else {
      return modInfo->nexusId();
    }
  } else if (role == IndexRole) {
    return modIndex;
  } else if (role == AggrRole) {
    switch (column) {
    case COL_MODID:
      return QtGroupingProxy::AGGR_FIRST;
    case COL_VERSION:
      return QtGroupingProxy::AGGR_MAX;
    case COL_CATEGORY:
      return QtGroupingProxy::AGGR_FIRST;
    case COL_PRIORITY:
      return QtGroupingProxy::AGGR_MIN;
    default:
      return QtGroupingProxy::AGGR_NONE;
    }
  } else if (role == GameNameRole) {
    return modInfo->gameName();
  } else if (role == PriorityRole) {
    return m_Profile->getModPriority(modIndex);
  } else if (role == Qt::FontRole) {
    QFont result;
    if (column == COL_NAME) {
      if (modInfo->isSeparator()) {
        result.setItalic(true);
        result.setBold(true);
      } else if (modInfo->getHighlight() & ModInfo::HIGHLIGHT_INVALID) {
        result.setItalic(true);
      }
    } else if (column == COL_CATEGORY && modInfo->isForeign()) {
      result.setItalic(true);
    } else if (column == COL_VERSION) {
      if (modInfo->updateAvailable() || modInfo->downgradeAvailable()) {
        result.setWeight(QFont::Bold);
      }
      if (modInfo->canBeUpdated()) {
        result.setItalic(true);
      }
    }
    return result;
  } else if (role == Qt::DecorationRole) {
    if (column == COL_VERSION) {
      if (modInfo->updateAvailable()) {
        return QIcon(":/MO/gui/update_available");
      } else if (modInfo->downgradeAvailable()) {
        return QIcon(":/MO/gui/warning");
      } else if (modInfo->version().scheme() == VersionInfo::SCHEME_DATE) {
        return QIcon(":/MO/gui/version_date");
      }
    }
    return QVariant();
  } else if (role == Qt::ForegroundRole) {
    if (column == COL_NAME) {
      int highlight = modInfo->getHighlight();
      if (highlight & ModInfo::HIGHLIGHT_IMPORTANT) {
        return QBrush(Qt::darkRed);
      } else if (highlight & ModInfo::HIGHLIGHT_INVALID) {
        return QBrush(Qt::darkGray);
      }
    } else if (column == COL_VERSION) {
      if (!modInfo->newestVersion().isValid()) {
        return QVariant();
      } else if (modInfo->updateAvailable() || modInfo->downgradeAvailable()) {
        return QBrush(Qt::red);
      } else {
        return QBrush(Qt::darkGreen);
      }
    }
    return QVariant();
  } else if (role == Qt::BackgroundRole || role == ScrollMarkRole) {
    if (column == COL_NOTES && modInfo->color().isValid()) {
      return modInfo->color();
    } else if (modInfo->isSeparator() && modInfo->color().isValid() &&
               (role != ScrollMarkRole ||
                Settings::instance().colors().colorSeparatorScrollbar())) {
      return modInfo->color();
    } else {
      return QVariant();
    }
  } else if (role == Qt::ToolTipRole) {
    if (column == COL_FLAGS) {
      QString result;

      for (ModInfo::EFlag flag : modInfo->getFlags()) {
        if (result.length() != 0)
          result += "<br>";
        result += getFlagText(flag, modInfo);
      }

      return result;
    } else if (column == COL_CONFLICTFLAGS) {
      QString result;

      for (ModInfo::EConflictFlag flag : modInfo->getConflictFlags()) {
        if (result.length() != 0)
          result += "<br>";
        result += getConflictFlagText(flag, modInfo);
      }

      return result;
    } else if (column == COL_NAME) {
      try {
        return modInfo->getDescription();
      } catch (const std::exception& e) {
        log::error("invalid mod description: {}", e.what());
        return QString();
      }
    } else if (column == COL_VERSION) {
      QString text = tr("installed version: \"%1\", newest version: \"%2\"")
                         .arg(modInfo->version().displayString(3))
                         .arg(modInfo->newestVersion().displayString(3));
      if (modInfo->downgradeAvailable()) {
        text +=
            "<br>" + tr("The newest version on Nexus seems to be older than the one "
                        "you have installed. This could either mean the version you "
                        "have has been withdrawn "
                        "(i.e. due to a bug) or the author uses a non-standard "
                        "versioning scheme and that newest version is actually newer. "
                        "Either way you may want to \"upgrade\".");
      }
      if (modInfo->getNexusFileStatus() == NexusInterface::FileStatus::OLD_VERSION) {
        text += "<br>" + tr("This file has been marked as \"Old\". There is most "
                            "likely an updated version of this file available.");
      } else if (modInfo->getNexusFileStatus() == NexusInterface::FileStatus::REMOVED ||
                 modInfo->getNexusFileStatus() ==
                     NexusInterface::FileStatus::ARCHIVED ||
                 modInfo->getNexusFileStatus() ==
                     NexusInterface::FileStatus::ARCHIVED_HIDDEN) {
        text +=
            "<br>" + tr("This file has been marked as \"Deleted\"! You may want to "
                        "check for an update or remove the nexus ID from this mod!");
      }
      if (modInfo->nexusId() > 0) {
        if (!modInfo->canBeUpdated()) {
          qint64 remains =
              QDateTime::currentDateTimeUtc().secsTo(modInfo->getExpires());
          qint64 minutes = remains / 60;
          qint64 seconds = remains % 60;
          QString remainsStr(
              tr("%1 minute(s) and %2 second(s)").arg(minutes).arg(seconds));
          text +=
              "<br>" + tr("This mod will be available to check in %2.").arg(remainsStr);
        }
      }
      return text;
    } else if (column == COL_CATEGORY) {
      const std::set<int>& categories = modInfo->getCategories();
      std::wostringstream categoryString;
      categoryString << ToWString(tr("Categories: <br>"));
      CategoryFactory& categoryFactory = CategoryFactory::instance();
      for (std::set<int>::const_iterator catIter = categories.begin();
           catIter != categories.end(); ++catIter) {
        if (catIter != categories.begin()) {
          categoryString << " , ";
        }
        try {
          categoryString << "<span style=\"white-space: nowrap;\"><i>"
                         << ToWString(categoryFactory.getCategoryName(
                                categoryFactory.getCategoryIndex(*catIter)))
                         << "</font></span>";
        } catch (const std::exception& e) {
          log::error("failed to generate tooltip: {}", e.what());
          return QString();
        }
      }

      return ToQString(categoryString.str());
    } else if (column == COL_NOTES) {
      return getFlagText(ModInfo::FLAG_NOTES, modInfo);
    } else {
      return QVariant();
    }
  } else {
    return QVariant();
  }
}

bool ModList::renameMod(int index, const QString& newName)
{
  QString nameFixed = newName;
  if (!fixDirectoryName(nameFixed) || nameFixed.isEmpty()) {
    MessageDialog::showMessage(tr("Invalid name"), nullptr);
    return false;
  }

  if (ModList::allMods().contains(nameFixed, Qt::CaseInsensitive) &&
      nameFixed.toLower() != ModInfo::getByIndex(index)->name().toLower()) {
    MessageDialog::showMessage(tr("Name is already in use by another mod"), nullptr);
    return false;
  }

  ModInfo::Ptr modInfo = ModInfo::getByIndex(index);
  QString oldName      = modInfo->name();
  if (nameFixed != oldName) {
    // before we rename, ensure there is no scheduled asynchronous to rewrite
    m_Profile->cancelModlistWrite();

    if (modInfo->setName(nameFixed)) {
      // Notice there is a good chance that setName() updated the modinfo indexes
      // the modRenamed() call will refresh the indexes in the current profile
      // and update the modlists in all profiles
      emit modRenamed(oldName, nameFixed);
    }

    // invalidate the currently displayed state of this list
    notifyChange(-1);
  }
  return true;
}

bool ModList::setData(const QModelIndex& index, const QVariant& value, int role)
{
  if (m_Profile == nullptr)
    return false;

  if (static_cast<unsigned int>(index.row()) >= ModInfo::getNumMods()) {
    return false;
  }

  int modID = index.row();

  ModInfo::Ptr info            = ModInfo::getByIndex(modID);
  IModList::ModStates oldState = state(modID);

  bool result = false;

  emit aboutToChangeData();

  if (role == Qt::CheckStateRole) {
    bool enabled = value.toInt() == Qt::Checked;
    if (m_Profile->modEnabled(modID) != enabled) {
      m_Profile->setModEnabled(modID, enabled);
      m_Modified = true;
      m_LastCheck.restart();
      emit tutorialModlistUpdate();
    }
    result = true;
    emit dataChanged(index, index);
  } else if (role == Qt::EditRole) {
    switch (index.column()) {
    case COL_NAME: {
      result = renameMod(modID, makeInternalName(info, value.toString()));
    } break;
    case COL_PRIORITY: {
      bool ok         = false;
      int newPriority = value.toInt(&ok);
      if (ok) {
        changeModPriority(modID, newPriority);
        result = true;
      } else {
        result = false;
      }
    } break;
    case COL_MODID: {
      bool ok   = false;
      int newID = value.toInt(&ok);
      if (ok) {
        info->setNexusID(newID);
        emit tutorialModlistUpdate();
        result = true;
      } else {
        result = false;
      }
    } break;
    case COL_VERSION: {
      VersionInfo::VersionScheme scheme = info->version().scheme();
      VersionInfo version(value.toString(), scheme, true);
      if (version.isValid()) {
        info->setVersion(version);
        result = true;
      } else {
        result = false;
      }
    } break;
    case COL_NOTES: {
      info->setComments(value.toString());
      result = true;
    } break;
    default: {
      log::warn("edit on column \"{}\" not supported",
                getColumnName(index.column()).toUtf8().constData());
      result = false;
    } break;
    }
    if (result) {
      emit dataChanged(index, index);
    }
  }

  emit postDataChanged();
  return result;
}

QVariant ModList::headerData(int section, Qt::Orientation orientation, int role) const
{
  if (orientation == Qt::Horizontal) {
    if (role == Qt::DisplayRole) {
      return getColumnName(section);
    } else if (role == Qt::ToolTipRole) {
      return getColumnToolTip(section);
    } else if (role == Qt::TextAlignmentRole) {
      return QVariant(Qt::AlignCenter);
    } else if (role == MOBase::EnabledColumnRole) {
      if (section == COL_CONTENT) {
        return !m_Organizer->modDataContents().empty();
      } else {
        return true;
      }
    }
  }
  return QAbstractItemModel::headerData(section, orientation, role);
}

Qt::ItemFlags ModList::flags(const QModelIndex& modelIndex) const
{
  Qt::ItemFlags result = QAbstractItemModel::flags(modelIndex);
  if (modelIndex.internalId() < 0) {
    return Qt::ItemIsEnabled;
  }
  if (modelIndex.isValid()) {
    ModInfo::Ptr modInfo = ModInfo::getByIndex(modelIndex.row());
    if (!modInfo->hasAutomaticPriority()) {
      result |= Qt::ItemIsDragEnabled;
      result |= Qt::ItemIsUserCheckable;
      if ((modelIndex.column() == COL_PRIORITY) ||
          (modelIndex.column() == COL_VERSION) || (modelIndex.column() == COL_MODID)) {
        result |= Qt::ItemIsEditable;
      }
      if ((modelIndex.column() == COL_NAME || modelIndex.column() == COL_NOTES) &&
          !modInfo->isForeign()) {
        result |= Qt::ItemIsEditable;
      }
    }
    if (modInfo->isSeparator() || m_DropOnMod) {
      result |= Qt::ItemIsDropEnabled;
    }
  } else if (!m_DropOnMod) {
    result |= Qt::ItemIsDropEnabled;
  }

  return result;
}

QStringList ModList::mimeTypes() const
{
  QStringList result = QAbstractItemModel::mimeTypes();
  result.append("text/uri-list");
  return result;
}

QMimeData* ModList::mimeData(const QModelIndexList& indexes) const
{
  QMimeData* result = QAbstractItemModel::mimeData(indexes);
  result->setData("text/plain", ModListDropInfo::ModText);
  return result;
}

void ModList::changeModPriority(std::vector<int> sourceIndices, int newPriority)
{
  if (m_Profile == nullptr)
    return;

  emit layoutAboutToBeChanged();

  // sort the moving mods by ascending priorities
  std::sort(sourceIndices.begin(), sourceIndices.end(),
            [=](const int& LHS, const int& RHS) {
              return m_Profile->getModPriority(LHS) > m_Profile->getModPriority(RHS);
            });

  // move mods that are decreasing in priority
  for (const auto& index : sourceIndices) {
    int oldPriority = m_Profile->getModPriority(index);
    if (oldPriority > newPriority) {
      if (m_Profile->setModPriority(index, newPriority)) {
        m_ModMoved(ModInfo::getByIndex(index)->name(), oldPriority, newPriority);
      }
    }
  }

  // sort the moving mods by descending priorities
  std::sort(sourceIndices.begin(), sourceIndices.end(),
            [=](const int& LHS, const int& RHS) {
              return m_Profile->getModPriority(LHS) < m_Profile->getModPriority(RHS);
            });

  // if at least one mod is increasing in priority, the target index is
  // that of the row BELOW the dropped location, otherwise it's the one above
  for (const auto& index : sourceIndices) {
    int oldPriority = m_Profile->getModPriority(index);
    if (oldPriority < newPriority) {
      --newPriority;
      break;
    }
  }

  // move mods that are increasing in priority
  for (const auto& index : sourceIndices) {
    int oldPriority = m_Profile->getModPriority(index);
    if (oldPriority < newPriority) {
      if (m_Profile->setModPriority(index, newPriority)) {
        m_ModMoved(ModInfo::getByIndex(index)->name(), oldPriority, newPriority);
      }
    }
  }

  emit layoutChanged();

  QModelIndexList indices;
  for (auto& idx : sourceIndices) {
    indices.append(index(idx, 0, QModelIndex()));
  }

  emit modPrioritiesChanged(indices);
}

void ModList::changeModPriority(int sourceIndex, int newPriority)
{
  if (m_Profile == nullptr)
    return;
  emit layoutAboutToBeChanged();

  m_Profile->setModPriority(sourceIndex, newPriority);

  emit layoutChanged();
  emit modPrioritiesChanged({index(sourceIndex, 0)});
}

void ModList::setPluginContainer(PluginContainer* pluginContianer)
{
  m_PluginContainer = pluginContianer;
}

bool ModList::modInfoAboutToChange(ModInfo::Ptr info)
{
  if (m_ChangeInfo.name.isEmpty()) {
    m_ChangeInfo.name  = info->name();
    m_ChangeInfo.state = state(info->name());
    return true;
  } else {
    return false;
  }
}

void ModList::modInfoChanged(ModInfo::Ptr info)
{
  if (info->name() == m_ChangeInfo.name) {
    IModList::ModStates newState = state(info->name());
    if (m_ChangeInfo.state != newState) {
      m_ModStateChanged({{info->name(), newState}});
    }

    int row = ModInfo::getIndex(info->name());
    info->diskContentModified();
    emit aboutToChangeData();
    emit dataChanged(index(row, 0), index(row, columnCount()));
    emit postDataChanged();
  } else {
    log::error("modInfoChanged not called after modInfoAboutToChange");
  }
  m_ChangeInfo.name = QString();
}

void ModList::disconnectSlots()
{
  m_ModMoved.disconnect_all_slots();
  m_ModStateChanged.disconnect_all_slots();
}

int ModList::timeElapsedSinceLastChecked() const
{
  return m_LastCheck.elapsed();
}

IModList::ModStates ModList::state(unsigned int modIndex) const
{
  IModList::ModStates result;
  if (modIndex != UINT_MAX) {
    result |= IModList::STATE_EXISTS;
    ModInfo::Ptr modInfo = ModInfo::getByIndex(modIndex);
    if (modInfo->isEmpty()) {
      result |= IModList::STATE_EMPTY;
    }
    if (modInfo->endorsedState() == EndorsedState::ENDORSED_TRUE) {
      result |= IModList::STATE_ENDORSED;
    }
    if (modInfo->isValid()) {
      result |= IModList::STATE_VALID;
    }
    if (modInfo->isRegular()) {
      QSharedPointer<ModInfoRegular> modInfoRegular =
          modInfo.staticCast<ModInfoRegular>();
      if (modInfoRegular->isAlternate() && !modInfoRegular->isConverted())
        result |= IModList::STATE_ALTERNATE;
      if (!modInfo->isValid() && modInfoRegular->isValidated())
        result |= IModList::STATE_VALID;
    }
    if (modInfo->canBeEnabled()) {
      if (m_Profile->modEnabled(modIndex)) {
        result |= IModList::STATE_ACTIVE;
      }
    } else {
      result |= IModList::STATE_ESSENTIAL;
    }
  }
  return result;
}

QString ModList::displayName(const QString& internalName) const
{
  unsigned int modIndex = ModInfo::getIndex(internalName);
  if (modIndex == UINT_MAX) {
    // might be better to throw an exception?
    return internalName;
  } else {
    return ModInfo::getByIndex(modIndex)->name();
  }
}

QStringList ModList::allMods() const
{
  QStringList result;
  for (unsigned int i = 0; i < ModInfo::getNumMods(); ++i) {
    result.append(ModInfo::getByIndex(i)->internalName());
  }
  return result;
}

QStringList ModList::allModsByProfilePriority(MOBase::IProfile* profile) const
{
  Profile* mo2Profile = profile == nullptr ? m_Organizer->currentProfile()
                                           : static_cast<Profile*>(profile);

  QStringList res;
  for (auto& [priority, index] : mo2Profile->getAllIndexesByPriority()) {
    auto modInfo = ModInfo::getByIndex(index);
    if (!modInfo->isBackup() && !modInfo->isOverwrite()) {
      res.push_back(modInfo->internalName());
    }
  }
  return res;
}

MOBase::IModInterface* ModList::getMod(const QString& name) const
{
  unsigned int index = ModInfo::getIndex(name);
  return index == UINT_MAX ? nullptr : ModInfo::getByIndex(index).data();
}

bool ModList::removeMod(MOBase::IModInterface* mod)
{
  bool result = ModInfo::removeMod(ModInfo::getIndex(mod->name()));
  if (result) {
    notifyModRemoved(mod->name());
  }
  return result;
}

MOBase::IModInterface* ModList::renameMod(MOBase::IModInterface* mod,
                                          const QString& name)
{
  unsigned int index = ModInfo::getIndex(mod->name());
  if (index == UINT_MAX) {
    if (auto* p = dynamic_cast<ModInfo*>(mod)) {
      p->setName(name);
      return p;
    } else {
      return nullptr;
    }
  } else {
    if (renameMod(index, name)) {
      return ModInfo::getByName(name).get();
    } else {
      return nullptr;
    }
  }
}

IModList::ModStates ModList::state(const QString& name) const
{
  unsigned int modIndex = ModInfo::getIndex(name);

  return state(modIndex);
}

bool ModList::setActive(const QString& name, bool active)
{
  unsigned int modIndex = ModInfo::getIndex(name);
  if (modIndex == UINT_MAX) {
    log::debug("Trying to {} mod {} which does not exist.",
               active ? "enable" : "disable", name);
    return false;
  } else {
    m_Profile->setModEnabled(modIndex, active);
    return true;
  }
}

int ModList::setActive(const QStringList& names, bool active)
{

  // We only add indices for mods that exist (modIndex != UINT_MAX)
  // and that can be enabled / disabled.
  QList<unsigned int> indices;
  for (const auto& name : names) {
    auto modIndex = ModInfo::getIndex(name);
    if (modIndex != UINT_MAX) {
      indices.append(modIndex);
    } else {
      log::debug("Trying to {} mod {} which does not exist.",
                 active ? "enable" : "disable", name);
    }
  }

  if (active) {
    m_Profile->setModsEnabled(indices, {});
  } else {
    m_Profile->setModsEnabled({}, indices);
  }

  return indices.size();
}

int ModList::priority(const QString& name) const
{
  unsigned int modIndex = ModInfo::getIndex(name);
  if (modIndex == UINT_MAX) {
    return -1;
  } else {
    return m_Profile->getModPriority(modIndex);
  }
}

bool ModList::setPriority(const QString& name, int newPriority)
{
  unsigned int index = ModInfo::getIndex(name);
  if (index == UINT_MAX) {
    return false;
  } else {
    if (m_Profile->setModPriority(index, newPriority)) {
      notifyChange(index);
    }
    return true;
  }
}

boost::signals2::connection
ModList::onModInstalled(const std::function<void(MOBase::IModInterface*)>& func)
{
  return m_ModInstalled.connect(func);
}

boost::signals2::connection
ModList::onModRemoved(const std::function<void(QString const&)>& func)
{
  return m_ModRemoved.connect(func);
}

boost::signals2::connection ModList::onModStateChanged(
    const std::function<void(const std::map<QString, IModList::ModStates>&)>& func)
{
  return m_ModStateChanged.connect(func);
}

void ModList::notifyModInstalled(MOBase::IModInterface* mod) const
{
  m_ModInstalled(mod);
}

void ModList::notifyModRemoved(QString const& modName) const
{
  m_ModRemoved(modName);
}

void ModList::notifyModStateChanged(QList<unsigned int> modIndices) const
{
  QModelIndexList indices;
  std::map<QString, IModList::ModStates> mods;
  for (auto modIndex : modIndices) {
    indices.append(index(modIndex, 0));
    ModInfo::Ptr modInfo = ModInfo::getByIndex(modIndex);
    mods.emplace(modInfo->name(), state(modIndex));
  }

  emit modStatesChanged(indices);
  m_ModStateChanged(mods);
}

boost::signals2::connection
ModList::onModMoved(const std::function<void(const QString&, int, int)>& func)
{
  return m_ModMoved.connect(func);
}

int ModList::dropPriority(int row, const QModelIndex& parent) const
{
  if (row == -1) {
    row = parent.row();
  }

  if ((row < 0) || (static_cast<unsigned int>(row) >= ModInfo::getNumMods())) {
    return -1;
  }

  int newPriority = 0;
  {
    if (row < 0 || row >= rowCount()) {
      newPriority = Profile::MaximumPriority;
    } else {
      newPriority = m_Profile->getModPriority(row);
    }
  }

  return newPriority;
}

bool ModList::dropLocalFiles(const ModListDropInfo& dropInfo, int row,
                             const QModelIndex& parent)
{
  if (row == -1) {
    row = parent.row();
  }
  ModInfo::Ptr modInfo = ModInfo::getByIndex(row);
  QDir modDir          = QDir(modInfo->absolutePath());

  QStringList sourceList;
  QStringList targetList;
  QList<QPair<QString, QString>> relativePathList;

  for (auto localUrl : dropInfo.localUrls()) {
    QFileInfo sourceInfo(localUrl.url.toLocalFile());
    if (localUrl.originName.compare("overwrite", Qt::CaseInsensitive) == 0) {
      bool needsMove = true;
      if (sourceInfo.isDir()) {
        for (auto dir : m_Organizer->managedGame()->getModMappings().keys()) {
          QDir overDir(m_Organizer->overwritePath());
          if (sourceInfo.canonicalFilePath().compare(overDir.absoluteFilePath(dir),
                                                     Qt::CaseInsensitive) == 0) {
            needsMove = false;

            QDirIterator dirIter(overDir.absoluteFilePath(dir),
                                 QDir::AllDirs | QDir::Files | QDir::NoDotAndDotDot);
            while (dirIter.hasNext()) {
              auto entry         = dirIter.nextFileInfo();
              QString sourceFile = entry.canonicalFilePath();

              QFileInfo targetInfo(modDir.absoluteFilePath(
                  overDir.relativeFilePath(entry.absoluteFilePath())));
              sourceList << sourceFile;
              targetList << targetInfo.absoluteFilePath();
              relativePathList << QPair<QString, QString>(localUrl.relativePath,
                                                          localUrl.originName);
            }
          }
        }
      }
      if (needsMove) {
        QString sourceFile = sourceInfo.canonicalFilePath();

        QFileInfo targetInfo(modDir.absoluteFilePath(localUrl.relativePath));
        sourceList << sourceFile;
        targetList << targetInfo.absoluteFilePath();
        relativePathList << QPair<QString, QString>(localUrl.relativePath,
                                                    localUrl.originName);
      }
    } else {
      QString sourceFile = sourceInfo.canonicalFilePath();

      QFileInfo targetInfo(modDir.absoluteFilePath(localUrl.relativePath));
      sourceList << sourceFile;
      targetList << targetInfo.absoluteFilePath();
      relativePathList << QPair<QString, QString>(localUrl.relativePath,
                                                  localUrl.originName);
    }
  }

  if (sourceList.count()) {
    if (!shellMove(sourceList, targetList)) {
      log::debug("Failed to move file (error {})", ::GetLastError());
      return false;
    }
  }

  for (auto iter : relativePathList) {
    emit fileMoved(iter.first, iter.second, modInfo->name());
  }

  if (!modInfo->isValid()) {
    modInfo->diskContentModified();
  }

  return true;
}

void ModList::onDragEnter(const QMimeData* mimeData)
{
  m_DropOnMod = ModListDropInfo(mimeData, *m_Organizer).isLocalFileDrop();
}

bool ModList::canDropMimeData(const QMimeData* mimeData, Qt::DropAction action, int row,
                              int column, const QModelIndex& parent) const
{
  if (action == Qt::IgnoreAction) {
    return false;
  }

  ModListDropInfo dropInfo(mimeData, *m_Organizer);

  if (dropInfo.isLocalFileDrop()) {
    if (row == -1 && parent.isValid()) {
      ModInfo::Ptr modInfo = ModInfo::getByIndex(parent.row());
      return modInfo->isRegular() && !modInfo->isSeparator();
    }
  } else if (dropInfo.isValid()) {
    // drop on item
    if (row == -1 && parent.isValid()) {
      return true;
    } else if (hasIndex(row, column, parent)) {
      ModInfo::Ptr modInfo = ModInfo::getByIndex(row);
      return !modInfo->isBackup() && (modInfo->isSeparator() || !parent.isValid());
    } else {
      return true;
    }
  }

  return false;
}

bool ModList::dropMimeData(const QMimeData* mimeData, Qt::DropAction action, int row,
                           int, const QModelIndex& parent)
{
  if (action == Qt::IgnoreAction) {
    return true;
  }

  ModListDropInfo dropInfo(mimeData, *m_Organizer);

  if (!m_Profile || !dropInfo.isValid()) {
    return false;
  }

  int dropPriority = this->dropPriority(row, parent);
  if (dropPriority == -1) {
    return false;
  }

  if (dropInfo.isLocalFileDrop()) {
    return dropLocalFiles(dropInfo, row, parent);
  } else {
    if (dropInfo.isModDrop()) {
      changeModPriority(dropInfo.rows(), dropPriority);
    } else if (dropInfo.isDownloadDrop()) {
      emit downloadArchiveDropped(dropInfo.download(), dropPriority);
    } else if (dropInfo.isExternalArchiveDrop()) {
      emit externalArchiveDropped(dropInfo.externalUrl(), dropPriority);
    } else if (dropInfo.isExternalFolderDrop()) {
      emit externalFolderDropped(dropInfo.externalUrl(), dropPriority);
    } else {
      return false;
    }
  }
  return false;
}

void ModList::removeRowForce(int row, const QModelIndex& parent)
{
  if (static_cast<unsigned int>(row) >= ModInfo::getNumMods()) {
    return;
  }
  if (m_Profile == nullptr)
    return;

  ModInfo::Ptr modInfo = ModInfo::getByIndex(row);

  bool wasEnabled = m_Profile->modEnabled(row);

  m_Profile->setModEnabled(row, false);

  m_Profile->cancelModlistWrite();
  beginRemoveRows(parent, row, row);
  ModInfo::removeMod(row);
  m_Profile->refreshModStatus();  // removes the mod from the status list
  endRemoveRows();
  m_Profile->writeModlist();  // this ensures the modified list gets written back before
                              // new mods can be installed

  notifyModRemoved(modInfo->name());

  if (wasEnabled) {
    emit removeOrigin(modInfo->name());
  }
  if (!modInfo->isBackup()) {
    emit modUninstalled(modInfo->installationFile());
  }
}

bool ModList::removeRows(int row, int count, const QModelIndex& parent)
{
  if (static_cast<unsigned int>(row) >= ModInfo::getNumMods()) {
    return false;
  }
  if (m_Profile == nullptr) {
    return false;
  }

  bool success = false;

  if (count == 1) {
    ModInfo::Ptr modInfo = ModInfo::getByIndex(row);
    if (modInfo->isOverwrite() && QDir(modInfo->absolutePath()).count() > 2) {
      emit clearOverwrite();
      success = true;
    }
  }

  for (int i = 0; i < count; ++i) {
    ModInfo::Ptr modInfo = ModInfo::getByIndex(row + i);
    if (!modInfo->isRegular()) {
      continue;
    }

    success = true;

    QMessageBox confirmBox(
        QMessageBox::Question, tr("Confirm"),
        tr("Are you sure you want to remove \"%1\"?").arg(getDisplayName(modInfo)),
        QMessageBox::Yes | QMessageBox::No);

    if (confirmBox.exec() == QMessageBox::Yes) {
      m_Profile->setModEnabled(row + i, false);
      removeRowForce(row + i, parent);
    }
  }

  return success;
}

void ModList::notifyChange(int rowStart, int rowEnd)
{
  // this function can emit dataChanged(), which can eventually recurse back
  // here; for example:
  //
  // - a filter is active in the mod list, such as "no categories"
  // - mods are selected and a category is set on them
  // - these mods get updated here and disappear from the list because they're
  //   not in "no categories" anymore
  // - dataChanged() is emitted
  // - it's picked up in MainWindow::modlistSelectionsChanged() because the
  //   selected mods are gone
  // - it calls setOverwriteMarkers(), which calls notifyChange() again and
  //   ends up here
  // - dataChanged() is emitted again
  //
  // at this point, MO crashes because dataChanged() is not reentrant: it's in
  // the middle of modifying internal data and crashes when trying to change an
  // internal vector
  //
  // long story short, this prevents reentrancy
  if (m_InNotifyChange) {
    return;
  }

  m_InNotifyChange = true;
  Guard g([&] {
    m_InNotifyChange = false;
  });

  if (rowStart < 0) {
    beginResetModel();
    endResetModel();
  } else {
    if (rowEnd == -1) {
      rowEnd = rowStart;
    }
    emit dataChanged(this->index(rowStart, 0),
                     this->index(rowEnd, this->columnCount() - 1));
  }
}

QModelIndex ModList::index(int row, int column, const QModelIndex&) const
{
  if ((row < 0) || (row >= rowCount()) || (column < 0) || (column >= columnCount())) {
    return QModelIndex();
  }
  QModelIndex res = createIndex(row, column, row);
  return res;
}

QModelIndex ModList::parent(const QModelIndex&) const
{
  return QModelIndex();
}

QMap<int, QVariant> ModList::itemData(const QModelIndex& index) const
{
  QMap<int, QVariant> result = QAbstractItemModel::itemData(index);
  for (int role = Qt::UserRole; role < ModUserRole; ++role) {
    result[role] = data(index, role);
  }
  return result;
}

QString ModList::getColumnName(int column)
{
  switch (column) {
  case COL_CONFLICTFLAGS:
    return tr("Conflicts");
  case COL_FLAGS:
    return tr("Flags");
  case COL_CONTENT:
    return tr("Content");
  case COL_NAME:
    return tr("Mod Name");
  case COL_VERSION:
    return tr("Version");
  case COL_PRIORITY:
    return tr("Priority");
  case COL_CATEGORY:
    return tr("Category");
  case COL_GAME:
    return tr("Source Game");
  case COL_MODID:
    return tr("Nexus ID");
  case COL_INSTALLTIME:
    return tr("Installation");
  case COL_NOTES:
    return tr("Notes");
  default:
    return tr("unknown");
  }
}

QString ModList::getColumnToolTip(int column) const
{
  switch (column) {
  case COL_NAME:
    return tr("Name of your mods");
  case COL_VERSION:
    return tr("Version of the mod (if available)");
  case COL_PRIORITY:
    return tr("Installation priority of your mod. The higher, the more \"important\" "
              "it is and thus "
              "overwrites files from mods with lower priority.");
  case COL_CATEGORY:
    return tr("Primary category of the mod.");
  case COL_GAME:
    return tr("The source game which was the origin of this mod.");
  case COL_MODID:
    return tr("Id of the mod as used on Nexus.");
  case COL_CONFLICTFLAGS:
    return tr("Indicators of file conflicts between mods.");
  case COL_FLAGS:
    return tr("Emblems to highlight things that might require attention.");
  case COL_CONTENT: {
    auto& contents = m_Organizer->modDataContents();
    if (m_Organizer->modDataContents().empty()) {
      return QString();
    }
    QString result =
        tr("Depicts the content of the mod:") + "<br>" + "<table cellspacing=7>";
    m_Organizer->modDataContents().forEachContent([&result](auto const& content) {
      result += QString("<tr><td><img src=\"%1\" width=32/></td><td>%2</td></tr>")
                    .arg(content.icon())
                    .arg(content.name());
    });
    return result + "</table>";
  };
  case COL_INSTALLTIME:
    return tr("Time this mod was installed");
  case COL_NOTES:
    return tr("User notes about the mod");
  default:
    return tr("unknown");
  }
}

void ModList::shiftModsPriority(const QModelIndexList& indices, int offset)
{
  // retrieve the mod index and sort them by priority to avoid issue
  // when moving them
  std::vector<int> allIndex;
  for (auto& idx : indices) {
    auto index = idx.data(IndexRole).toInt();
    allIndex.push_back(index);
  }
  std::sort(allIndex.begin(), allIndex.end(), [=](int lhs, int rhs) {
    bool cmp = m_Profile->getModPriority(lhs) < m_Profile->getModPriority(rhs);
    return offset > 0 ? !cmp : cmp;
  });

  emit layoutAboutToBeChanged();

  std::vector<int> notify;
  for (auto index : allIndex) {
    int newPriority = m_Profile->getModPriority(index) + offset;
    if (m_Profile->setModPriority(index, newPriority)) {
      notify.push_back(index);
    }
  }

  emit layoutChanged();

  for (auto index : notify) {
    notifyChange(index);
  }

  emit modPrioritiesChanged(indices);
}

void ModList::changeModsPriority(const QModelIndexList& indices, int priority)
{
  if (indices.isEmpty()) {
    return;
  }

  std::vector<int> allIndex;
  for (auto& idx : indices) {
    auto index = idx.data(IndexRole).toInt();
    allIndex.push_back(index);
  }

  if (allIndex.size() == 1) {
    changeModPriority(allIndex[0], priority);
  } else {
    changeModPriority(allIndex, priority);
  }
}

bool ModList::toggleState(const QModelIndexList& indices)
{
  emit aboutToChangeData();

  QList<unsigned int> modsToEnable;
  QList<unsigned int> modsToDisable;
  for (auto index : indices) {
    auto idx = index.data(IndexRole).toInt();
    if (m_Profile->modEnabled(idx)) {
      modsToDisable.append(idx);
    } else {
      modsToEnable.append(idx);
    }
  }

  m_Profile->setModsEnabled(modsToEnable, modsToDisable);

  emit tutorialModlistUpdate();

  m_Modified = true;
  m_LastCheck.restart();

  emit dataChanged(index(0, 0), index(rowCount() - 1, columnCount() - 1));

  emit postDataChanged();

  return true;
}

void ModList::setActive(const QModelIndexList& indices, bool active)
{
  QList<unsigned int> mods;
  for (auto& index : indices) {
    mods.append(index.data(IndexRole).toInt());
  }

  if (active) {
    m_Profile->setModsEnabled(mods, {});
  } else {
    m_Profile->setModsEnabled({}, mods);
  }
}