Welcome to mirror list, hosted at ThFree Co, Russian Federation.

__init__.py « materials_utils - git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8e6bf0d236f99e20aaaa529ecf2670a7918a9673 (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
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
# ##### BEGIN GPL LICENSE BLOCK #####
#
#  This program 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 2
#  of the License, or (at your option) any later version.
#
#  This program 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 this program; if not, write to the Free Software Foundation,
#  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
# ##### END GPL LICENSE BLOCK #####

#  (c) 2016 meta-androcto, parts based on work by Saidenka, lijenstina
#  Materials Utils: by MichaleW, lijenstina,
#       (some code thanks to: CoDEmanX, SynaGl0w, ideasman42)
#  Materials Conversion: Silvio Falcinelli, johnzero7#,
#        fixes by angavrilov and others
#  Link to base names: Sybren, Texture renamer: Yadoob

bl_info = {
    "name": "Materials Utils Specials",
    "author": "Community",
    "version": (1, 0, 5),
    "blender": (2, 77, 0),
    "location": "Materials Properties Specials > Shift Q",
    "description": "Materials Utils and Convertors",
    "warning": "",
    "wiki_url": "https://wiki.blender.org/index.php/Extensions:2.6/Py/"
                "Scripts/3D_interaction/Materials_Utils",
    "category": "Material"
}

if "bpy" in locals():
    import importlib
    importlib.reload(material_converter)
    importlib.reload(materials_cycles_converter)
    importlib.reload(texture_rename)
    importlib.reload(warning_messages_utils)
else:
    from . import material_converter
    from . import materials_cycles_converter
    from . import texture_rename
    from . import warning_messages_utils

import bpy
import os
from os import (
    path as os_path,
    access as os_access,
    remove as os_remove,
)
from bpy.props import (
    BoolProperty,
    CollectionProperty,
    EnumProperty,
    IntProperty,
    StringProperty,
    PointerProperty,
)
from bpy.types import (
    AddonPreferences,
    Menu,
    Operator,
    Panel,
    PropertyGroup,
    UIList,
)
from .warning_messages_utils import (
    warning_messages,
    c_data_has_materials,
    c_obj_data_has_materials,
)

# Globals
UNDO_MESSAGE = "*Only Undo is available*"
COLUMN_SPLIT = 20


# Functions

def fake_user_set(fake_user='ON', materials='UNUSED', operator=None):
    warn_mesg, w_mesg = '', ""
    if materials == 'ALL':
        mats = (mat for mat in bpy.data.materials if mat.library is None)
        w_mesg = "(All Materials in this .blend file)"
    elif materials == 'UNUSED':
        mats = (mat for mat in bpy.data.materials if mat.library is None and mat.users == 0)
        w_mesg = "(Unused Materials - Active/Selected Objects)"
    else:
        mats = []
        if materials == 'ACTIVE':
            objs = [bpy.context.active_object]
            w_mesg = "(All Materials on Active Object)"
        elif materials == 'SELECTED':
            objs = bpy.context.selected_objects
            w_mesg = "(All Materials on Selected Objects)"
        elif materials == 'SCENE':
            objs = bpy.context.scene.objects
            w_mesg = "(All Scene Objects)"
        else:
            # used materials
            objs = bpy.data.objects
            w_mesg = "(All Used Materials)"

        mats = (mat for ob in objs if hasattr(ob.data, "materials") for
                mat in ob.data.materials if mat.library is None)

    # collect mat names for warning_messages
    matnames = []

    warn_mesg = ('FAKE_SET_ON' if fake_user == 'ON' else 'FAKE_SET_OFF')

    for mat in mats:
        mat.use_fake_user = (fake_user == 'ON')
        matnames.append(getattr(mat, "name", "NO NAME"))

    if operator:
        if matnames:
            warning_messages(operator, warn_mesg, matnames, 'MAT', w_mesg)
        else:
            warning_messages(operator, 'FAKE_NO_MAT')

    for area in bpy.context.screen.areas:
        if area.type in ('PROPERTIES', 'NODE_EDITOR', 'OUTLINER'):
            area.tag_redraw()


def replace_material(m1, m2, all_objects=False, update_selection=False, operator=None):
    # replace material named m1 with material named m2
    # m1 is the name of original material
    # m2 is the name of the material to replace it with
    # 'all' will replace throughout the blend file

    matorg = bpy.data.materials.get(m1)
    matrep = bpy.data.materials.get(m2)

    if matorg != matrep and None not in (matorg, matrep):
        # store active object
        if all_objects:
            objs = bpy.data.objects
        else:
            objs = bpy.context.selected_editable_objects

        for ob in objs:
            if ob.type == 'MESH':
                match = False
                for m in ob.material_slots:
                    if m.material == matorg:
                        m.material = matrep
                        # don't break the loop as the material can be
                        # referenced more than once

                        # Indicate which objects were affected
                        if update_selection:
                            ob.select_set(True)
                            match = True

                if update_selection and not match:
                    ob.select_set(False)
    else:
        if operator:
            warning_messages(operator, "REP_MAT_NONE")


def select_material_by_name(find_mat_name):
    # in object mode selects all objects with material find_mat_name
    # in edit mode selects all polygons with material find_mat_name

    find_mat = bpy.data.materials.get(find_mat_name)

    if find_mat is None:
        return

    # check for edit mode
    editmode = False

    scn = bpy.context.scene

    # set selection mode to polygons
    scn.tool_settings.mesh_select_mode = False, False, True

    actob = bpy.context.active_object
    if actob.mode == 'EDIT':
        editmode = True
        bpy.ops.object.mode_set()

    if not editmode:
        objs = bpy.data.objects
        for ob in objs:
            if included_object_types(ob.type):
                ms = ob.material_slots
                for m in ms:
                    if m.material == find_mat:
                        ob.select_set(True)
                        # the active object may not have the mat!
                        # set it to one that does!
                        scn.objects.active = ob
                        break
                    else:
                        ob.select_set(False)
            # deselect non-meshes
            else:
                ob.select_set(False)
    else:
        # it's edit mode, so select the polygons
        ob = actob
        ms = ob.material_slots

        # same material can be on multiple slots
        slot_indeces = []
        i = 0

        for m in ms:
            if m.material == find_mat:
                slot_indeces.append(i)
            i += 1
        me = ob.data

        for f in me.polygons:
            if f.material_index in slot_indeces:
                f.select = True
            else:
                f.select = False
        me.update()

    if editmode:
        bpy.ops.object.mode_set(mode='EDIT')


def mat_to_texface(operator=None):
    # assigns the first image in each material to the polygons in the active
    # uv layer for all selected objects

    # check for editmode
    editmode = False

    actob = bpy.context.active_object
    if actob.mode == 'EDIT':
        editmode = True
        bpy.ops.object.mode_set()

    # collect object names for warning messages
    message_a = []
    # Flag if there are non MESH objects selected
    mixed_obj = False

    for ob in bpy.context.selected_editable_objects:
        if ob.type == 'MESH':
            # get the materials from slots
            ms = ob.material_slots

            # build a list of images, one per material
            images = []
            # get the textures from the mats
            for m in ms:
                if m.material is None:
                    continue
                gotimage = False
                textures = zip(m.material.texture_slots, m.material.use_textures)
                for t, enabled in textures:
                    if enabled and t is not None:
                        tex = t.texture
                        if tex.type == 'IMAGE':
                            img = tex.image
                            images.append(img)
                            gotimage = True
                            break

                if not gotimage:
                    images.append(None)

            # check materials for warning messages
            mats = ob.material_slots.keys()
            if operator and not mats and mixed_obj is False:
                message_a.append(ob.name)

            # now we have the images, apply them to the uvlayer
            me = ob.data

            # got uvs?
            if not me.uv_textures:
                scn = bpy.context.scene
                scn.objects.active = ob
                bpy.ops.mesh.uv_texture_add()
                scn.objects.active = actob

            # get active uv layer
            for t in me.uv_textures:
                if t.active:
                    uvtex = t.data
                    for f in me.polygons:
                        # check that material had an image!
                        if images and images[f.material_index] is not None:
                            uvtex[f.index].image = images[f.material_index]
                        else:
                            uvtex[f.index].image = None
            me.update()
        else:
            message_a.append(ob.name)
            mixed_obj = True

    if editmode:
        bpy.ops.object.mode_set(mode='EDIT')

    if operator and message_a:
        warn_mess = ('MAT_TEX_NO_MESH' if mixed_obj is True else 'MAT_TEX_NO_MAT')
        warning_messages(operator, warn_mess, message_a)


def assignmatslots(ob, matlist):
    # given an object and a list of material names
    # removes all material slots from the object
    # adds new ones for each material in matlist
    # adds the materials to the slots as well.

    scn = bpy.context.scene
    ob_active = bpy.context.active_object
    scn.objects.active = ob

    for s in ob.material_slots:
        remove_material_slot()

    # re-add them and assign material
    if matlist:
        for m in matlist:
            try:
                mat = bpy.data.materials[m]
                ob.data.materials.append(mat)
            except:
                # there is no material with that name in data
                # or an empty mat is for some reason assigned
                # to face indices, mat tries to get an '' as mat index
                pass

    # restore active object
    scn.objects.active = ob_active


def cleanmatslots(operator=None):
    # check for edit mode
    editmode = False
    actob = bpy.context.active_object

    # active object?
    if actob:
        if actob.mode == 'EDIT':
            editmode = True
            bpy.ops.object.mode_set()

        # is active object selected ?
        selected = bool(actob.select)
        actob.select_set(True)

    objs = bpy.context.selected_editable_objects
    # collect all object names for warning_messages
    message_a = []
    # Flags if there are non MESH objects selected
    mixed_obj, mixed_obj_slot = False, False

    for ob in objs:
        if ob.type != 'MESH':
            mat_empty = []
            message_a.append(getattr(ob, "name", "NO NAME"))
            if mixed_obj is False:
                mixed_obj = True

            # at least try to remove empty material slots
            if ob.type in {'CURVE', 'SURFACE', 'FONT', 'META'}:
                mats = ob.material_slots
                mat_empty = [i for i, slot in enumerate(mats) if not slot.material]

                if not mat_empty:
                    continue

                if mixed_obj_slot is False:
                    mixed_obj_slot = True

                # Ctx - copy the context for operator override
                Ctx = bpy.context.copy()
                # for this operator it needs only the active object replaced
                Ctx['object'] = ob

                for index in mat_empty:
                    try:
                        ob.active_material_index = index
                        bpy.ops.object.material_slot_remove(Ctx)
                    except:
                        continue
            continue

        mats = ob.material_slots.keys()
        maxindex = len(mats) - 1  # indices start from zero

        # if mats is empty then mats[faceindex] will be out of range
        if not mats:
            message_a.append(getattr(ob, "name", "NO NAME"))
            continue

        # check the polygons on the mesh to build a list of used materials
        usedMatIndex = []   # we'll store used materials indices here
        faceMats = []
        badIndices = set()  # collect face indices that are out material slot's range
        me = ob.data
        for f in me.polygons:
            # get the material index for this face...
            faceindex = f.material_index
            # check if the mats[faceindex] is not out of range
            if faceindex > maxindex:
                badIndices.add(faceindex)
                continue

            # indices will be lost: Store face mat use by name
            currentfacemat = mats[faceindex]
            faceMats.append(currentfacemat)

            # check if index is already listed as used or not
            found = False
            for m in usedMatIndex:
                if m == faceindex:
                    found = True

            if found is False:
                # add this index to the list
                usedMatIndex.append(faceindex)

        # re-assign the used mats to the mesh and leave out the unused
        ml = []
        mnames = []
        for u in usedMatIndex:
            if u not in badIndices:
                ml.append(mats[u])
                # we'll need a list of names to get the face indices...
                mnames.append(mats[u])

        assignmatslots(ob, ml)

        # restore face indices:
        i = 0
        for f in me.polygons:
            if i not in badIndices:
                matindex = mnames.index(faceMats[i])
                f.material_index = matindex
                i += 1

    if message_a and operator:
        warn_s = 'C_OB_MIX_NO_MAT' if mixed_obj is True else 'C_OB_NO_MAT'
        warn_mess = 'C_OB_MIX_SLOT_MAT' if mixed_obj_slot else warn_s
        warning_messages(operator, warn_mess, message_a)

    if actob:
        # restore selection state
        actob.select = selected

        if editmode:
            bpy.ops.object.mode_set(mode='EDIT')


# separate edit mode mesh function (faster than iterating through all faces)

def assign_mat_mesh_edit(matname="Default", operator=None):
    actob = bpy.context.active_object
    found = False

    # check if material exists, if it doesn't then create it
    target = bpy.data.materials.get(matname)

    if not target:
        target = bpy.data.materials.new(matname)

    if (actob.type in {'MESH'} and actob.mode in {'EDIT'}):
        # check material slots for matname material
        found = False
        i = 0
        mats = actob.material_slots
        for m in mats:
            if m.name == matname:
                found = True
                # make slot active
                actob.active_material_index = i
                break
            i += 1

        # the material is not attached to the object
        if not found:
            actob.data.materials.append(target)

        # is selected ?
        selected = bool(actob.select)
        # select active object
        actob.select_set(True)

        # activate the chosen material
        actob.active_material_index = i

        # assign the material to the object
        bpy.ops.object.material_slot_assign()
        actob.data.update()

        # restore selection state
        actob.select = selected

        if operator:
            mat_names = ("A New Untitled" if matname in ("", None) else matname)
            warning_messages(operator, 'A_MAT_NAME_EDIT', mat_names, 'MAT')


def assign_mat(matname="Default", operator=None):
    # get the active object so we can restore it later
    actob = bpy.context.active_object

    # is active object selected ?
    selected = bool(actob.select)
    actob.select_set(True)

    # check if material exists, if it doesn't then create it
    target = bpy.data.materials.get(matname)

    if not target:
        target = bpy.data.materials.new(matname)

    # if object mode then set all polygons
    editmode = False
    allpolygons = True

    if actob.mode == 'EDIT':
        editmode = True
        allpolygons = False
        bpy.ops.object.mode_set()

    objs = bpy.context.selected_editable_objects

    # collect non mesh object names
    message_a = []

    for ob in objs:
        # skip the objects that can't have mats
        if not included_object_types(ob.type):
            message_a.append(ob.name)
            continue
        else:
            # set the active object to our object
            scn = bpy.context.scene
            scn.objects.active = ob

            if ob.type in {'CURVE', 'SURFACE', 'FONT', 'META'}:
                found = False
                i = 0
                for m in bpy.data.materials:
                    if m.name == matname:
                        found = True
                        index = i
                        break
                    i += 1
                    if not found:
                        index = i - 1
                targetlist = [index]
                assignmatslots(ob, targetlist)
            elif ob.type == 'MESH':
                # check material slots for matname material
                found = False
                i = 0
                mats = ob.material_slots
                for m in mats:
                    if m.name == matname:
                        found = True
                        index = i
                        # make slot active
                        ob.active_material_index = i
                        break
                    i += 1

                if not found:
                    index = i
                    # the material is not attached to the object
                    ob.data.materials.append(target)

                # now assign the material:
                me = ob.data
                if allpolygons:
                    for f in me.polygons:
                        f.material_index = index
                elif allpolygons is False:
                    for f in me.polygons:
                        if f.select:
                            f.material_index = index
                me.update()

    # restore the active object
    bpy.context.scene.objects.active = actob

    # restore selection state
    actob.select = selected

    if editmode:
        bpy.ops.object.mode_set(mode='EDIT')

    if operator and message_a:
        warning_messages(operator, 'A_OB_MIX_NO_MAT', message_a)


def check_texture(img, mat):
    # finds a texture from an image
    # makes a texture if needed
    # adds it to the material if it isn't there already

    tex = bpy.data.textures.get(img.name)

    if tex is None:
        tex = bpy.data.textures.new(name=img.name, type='IMAGE')

    tex.image = img

    # see if the material already uses this tex
    # add it if needed
    found = False
    for m in mat.texture_slots:
        if m and m.texture == tex:
            found = True
            break
    if not found and mat:
        mtex = mat.texture_slots.add()
        mtex.texture = tex
        mtex.texture_coords = 'UV'
        mtex.use_map_color_diffuse = True


def texface_to_mat(operator=None):
    # edit mode check here!
    editmode = False
    ob = bpy.context.object
    if ob.mode == 'EDIT':
        editmode = True
        bpy.ops.object.mode_set()

    for ob in bpy.context.selected_editable_objects:
        faceindex = []
        unique_images = []
        # collect object names for warning messages
        message_a = []

        # check if object has UV and texture data and active image in Editor
        if check_texface_to_mat(ob):
            # get the texface images and store indices
            for f in ob.data.uv_textures.active.data:
                if f.image:
                    img = f.image
                    # build list of unique images
                    if img not in unique_images:
                        unique_images.append(img)
                    faceindex.append(unique_images.index(img))
                else:
                    img = None
                    faceindex.append(None)
        else:
            message_a.append(ob.name)
            continue

        # check materials for images exist; create if needed
        matlist = []

        for i in unique_images:
            if i:
                try:
                    m = bpy.data.materials[i.name]
                except:
                    m = bpy.data.materials.new(name=i.name)
                    continue

                finally:
                    matlist.append(m.name)
                    # add textures if needed
                    check_texture(i, m)

        # set up the object material slots
        assignmatslots(ob, matlist)

        # set texface indices to material slot indices..
        me = ob.data

        i = 0
        for f in faceindex:
            if f is not None:
                me.polygons[i].material_index = f
            i += 1
    if editmode:
        bpy.ops.object.mode_set(mode='EDIT')

    if operator and message_a:
        warning_messages(operator, "TEX_MAT_NO_CRT", message_a)


def remove_materials(operator=None, setting="SLOT"):
    # Remove material slots from active object
    # SLOT - removes the object's active material
    # ALL - removes the all the object's materials
    actob = bpy.context.active_object
    actob_name = getattr(actob, "name", "NO NAME")

    if not actob:
        return

    if not included_object_types(actob.type):
        if operator:
            warning_messages(operator, 'OB_CANT_MAT', actob_name)
        return

    if (hasattr(actob.data, "materials") and len(actob.data.materials) > 0):
        if setting == "SLOT":
            remove_material_slot()
        elif setting == "ALL":
            for mat in actob.data.materials:
                try:
                    remove_material_slot()
                except:
                    pass

        if operator:
            warn_mess = 'R_ACT_MAT_ALL' if setting == "ALL" else 'R_ACT_MAT'
            warning_messages(operator, warn_mess, actob_name)

    elif operator:
        warning_messages(operator, 'R_OB_NO_MAT', actob_name)


def remove_materials_all(operator=None):
    # Remove material slots from all selected objects
    # counter for material slots warning messages, collect errors
    mat_count, collect_mess = False, []

    for ob in bpy.context.selected_editable_objects:
        if not included_object_types(ob.type):
            continue
        else:
            # code from blender stack exchange (by CoDEmanX)
            ob.active_material_index = 0

            if (hasattr(ob.data, "materials") and len(ob.material_slots) >= 1):
                mat_count = True

            # Ctx - copy the context for operator override
            Ctx = bpy.context.copy()
            # for this operator it needs only the active object replaced
            Ctx['object'] = ob

            for i in range(len(ob.material_slots)):
                try:
                    bpy.ops.object.material_slot_remove(Ctx)
                except:
                    ob_name = getattr(ob, "name", "NO NAME")
                    collect_mess.append(ob_name)
                    pass

    if operator:
        warn_msg = ('R_ALL_NO_MAT' if mat_count is False else 'R_ALL_SL_MAT')
        if not collect_mess:
            warning_messages(operator, warn_msg)
        else:
            warning_messages(operator, 'R_OB_FAIL_MAT', collect_mess)


# Operator Classes #

class VIEW3D_OT_show_mat_preview(Operator):
    bl_label = "Preview Active Material"
    bl_idname = "view3d.show_mat_preview"
    bl_description = "Show the preview of Active Material and context related settings"
    bl_options = {'REGISTER', 'UNDO'}

    is_not_undo = False     # prevent drawing props on undo

    @classmethod
    def poll(cls, context):
        obj = context.active_object
        return (obj is not None and
                obj.active_material is not None and
                included_object_types(obj.type))

    def invoke(self, context, event):
        self.is_not_undo = True
        return context.window_manager.invoke_props_dialog(self, width=200)

    def draw(self, context):
        layout = self.layout
        ob = context.active_object
        prw_size = size_preview()

        if self.is_not_undo is False:
            layout.label(text=UNDO_MESSAGE, icon="INFO")
            return

        if not (ob and hasattr(ob, "active_material")):
            layout.label(text="No Active Object or Active Material", icon="INFO")
            return

        mat = ob.active_material
        is_opaque = (
            True if (ob and hasattr(ob, "show_transparent") and
            ob.show_transparent is True) else False
        )
        is_opaque_bi = (
            True if (mat and hasattr(mat, "use_transparency") and
            mat.use_transparency is True) else False
        )
        is_mesh = True if ob.type == 'MESH' else False

        if size_type_is_preview():
            layout.template_ID_preview(ob, "active_material", new="material.new",
                                       rows=prw_size['Width'], cols=prw_size['Height'])
        else:
            layout.template_ID(ob, "active_material", new="material.new")
        layout.separator()

        if c_render_engine("Both"):
            layout.prop(mat, "use_nodes", icon='NODETREE')

        if not c_need_of_viewport_colors():
            other_render = (
                "*Unavailable with this Renderer*" if not c_render_engine("Both") else
                "*Unavailable in this Context*"
            )
            no_col_label = (
                "*Only available in Solid Shading*" if c_render_engine("Cycles") else
                other_render
            )
            layout.label(text=no_col_label, icon="INFO")
            return

        color_txt = "Viewport Color:" if c_render_engine("Cycles") else "Diffuse"
        spec_txt = "Viewport Specular:" if c_render_engine("Cycles") else "Specular"
        col = layout.column(align=True)
        col.label(color_txt)
        col.prop(mat, "diffuse_color", text="")

        if c_render_engine("BI"):
            # Blender Render
            col.prop(mat, "diffuse_intensity", text="Intensity")
        col.separator()

        col.label(spec_txt)
        col.prop(mat, "specular_color", text="")
        col.prop(mat, "specular_hardness")

        if (c_render_engine("BI") and not c_context_use_nodes()):
            # Blender Render
            col.separator()
            col.prop(mat, "use_transparency")
            col.separator()
            if is_opaque_bi:
                col.prop(mat, "transparency_method", text="")
                col.separator()
                col.prop(mat, "alpha")
        elif (c_render_engine("Cycles") and is_mesh):
            # Cycles
            col.separator()
            col.prop(ob, "show_transparent", text="Transparency")
            if is_opaque:
                col.separator()
                col.prop(mat, "alpha")
                col.separator()
                col.label(text="Viewport Alpha:")
                col.prop(mat.game_settings, "alpha_blend", text="")
        layout.separator()

    def check(self, context):
        return self.is_not_undo

    def execute(self, context):
        self.is_not_undo = False

        return {'FINISHED'}


class VIEW3D_OT_copy_material_to_selected(Operator):
    bl_idname = "view3d.copy_material_to_selected"
    bl_label = "Copy Materials to others"
    bl_description = ("Copy Material From Active to Selected objects\n"
                      "In case of multiple materials, only the first slot is assigned\n"
                      "Works on Object's Data linked Materials")
    bl_options = {'REGISTER', 'UNDO'}

    @classmethod
    def poll(cls, context):
        obj = context.active_object
        return (c_data_has_materials() and
                obj is not None and
                included_object_types(obj.type) and
                obj.active_material is not None and
                context.selected_editable_objects)

    def execute(self, context):
        warn_mess = "DEFAULT"
        if (len(context.selected_editable_objects) < 2):
            warn_mess = 'CPY_MAT_ONE_OB'
        else:
            if check_is_excluded_obj_types(context):
                warn_mess = 'CPY_MAT_MIX_OB'
            try:
                bpy.ops.object.material_slot_copy()
                warn_mess = 'CPY_MAT_DONE'
            except:
                warning_messages(self, 'CPY_MAT_FAIL')
                return {'CANCELLED'}

        warning_messages(self, warn_mess)

        return {'FINISHED'}


class VIEW3D_OT_texface_to_material(Operator):
    bl_idname = "view3d.texface_to_material"
    bl_label = "Texface Images to Material/Texture"
    bl_description = ("Create texture materials for images assigned in UV editor \n"
                      "Needs an UV Unwrapped Mesh and an image active in the  \n"
                      "UV/Image Editor for each Selected Object")
    bl_options = {'REGISTER', 'UNDO'}

    @classmethod
    def poll(cls, context):
        return context.active_object is not None

    def invoke(self, context, event):
        return context.window_manager.invoke_confirm(self, event)

    def execute(self, context):
        if not context.selected_editable_objects:
            warning_messages(self, 'TEX_MAT_NO_SL')
            return {'CANCELLED'}

        texface_to_mat(self)

        return {'FINISHED'}


class VIEW3D_OT_set_new_material_name(Operator):
    bl_idname = "view3d.set_new_material_name"
    bl_label = "New Material Settings"
    bl_description = ("Set the Base name of the new Material\n"
                      "and tweaking after the new Material creation")
    bl_options = {'REGISTER'}

    def invoke(self, context, event):
        return context.window_manager.invoke_props_dialog(self)

    def draw(self, context):
        layout = self.layout
        scene = context.scene.mat_specials

        box = layout.box()
        box.label(text="Base name:")
        box.prop(scene, "set_material_name", text="", icon="SYNTAX_ON")
        layout.separator()
        layout.prop(scene, "use_tweak")

    def execute(self, context):

        return {'FINISHED'}


class VIEW3D_OT_assign_material(Operator):
    bl_idname = "view3d.assign_material"
    bl_label = "Assign Material"
    bl_description = "Assign a material to the selection"
    bl_property = "matname"
    bl_options = {'REGISTER', 'UNDO'}

    is_existing: BoolProperty(
        name="Is it a new Material",
        options={'HIDDEN'},
        default=True,
    )
    matname: StringProperty(
        name="Material Name",
        description="Name of the Material to Assign",
        options={'HIDDEN'},
        default="Material_New",
        maxlen=128,
    )
    is_not_undo = False     # prevent drawing props on undo

    @classmethod
    def poll(cls, context):
        return context.active_object is not None

    def invoke(self, context, event):
        self.is_not_undo = True

        if not self.is_existing or use_mat_menu_type() not in {'POPUP'}:
            return self.execute(context)

        materials_lists_fill_names(context, refresh=True, is_object=False)
        return context.window_manager.invoke_props_dialog(self, width=400, height=200)

    def check(self, context):
        return self.is_not_undo

    def draw(self, context):
        draw_ui_list_popups(self, context, obj_data=False)

    def execute(self, context):
        actob = context.active_object
        scene = context.scene.mat_specials
        mn = self.matname
        tweak = scene.use_tweak

        if use_mat_menu_type() == 'POPUP' and self.is_existing:
            mats_col = context.scene.mat_specials_mats
            len_mats = len(mats_col)
            mat_index = scene.index_mat

            if not (len_mats > 0 and mat_index is not None and mat_index <= len_mats):
                self.report({'WARNING'},
                            "No Materials in the Scene. Please use the Add New option")
                return {"CANCELLED"}

            mats_up = mats_col[mat_index].name
            mn = mats_up

        if not self.is_existing:
            new_name = check_mat_name_unique(scene.set_material_name)
            mn = new_name

        if (actob.type in {'MESH'} and actob.mode in {'EDIT'}):
            assign_mat_mesh_edit(mn, self)
        else:
            assign_mat(mn, self)

        if use_cleanmat_slots():
            cleanmatslots()

        mat_to_texface()
        self.is_not_undo = False

        activate_mat_slot(actob, mn)

        if tweak and not self.is_existing:
            try:
                bpy.ops.view3d.show_mat_preview('INVOKE_DEFAULT')
            except:
                self.report({'INFO'}, "Preview Active Material could not be opened")

        return {'FINISHED'}


class VIEW3D_OT_clean_material_slots(Operator):
    bl_idname = "view3d.clean_material_slots"
    bl_label = "Clean Material Slots"
    bl_description = ("Removes any unused material slots \n"
                      "from selected objects in Object mode")
    bl_options = {'REGISTER', 'UNDO'}

    @classmethod
    # materials can't be removed in Edit mode
    def poll(cls, context):
        return (c_data_has_materials() and
                context.active_object is not None and
                not context.object.mode == 'EDIT')

    def execute(self, context):
        cleanmatslots(self)

        return {'FINISHED'}


class VIEW3D_OT_material_to_texface(Operator):
    bl_idname = "view3d.material_to_texface"
    bl_label = "Material Images to Texface"
    bl_description = ("Transfer material assignments to UV editor \n"
                      "Works on a Mesh Object with a Material and Texture\n"
                      "assigned. Used primarily with MultiTexture Shading")
    bl_options = {'REGISTER', 'UNDO'}

    @classmethod
    def poll(cls, context):
        return (c_data_has_materials() and
                context.active_object is not None)

    def execute(self, context):
        if not context.selected_editable_objects:
            warning_messages(self, "MAT_TEX_NO_SL")
            return {'CANCELLED'}

        mat_to_texface(self)

        return {'FINISHED'}


class VIEW3D_OT_material_remove_slot(Operator):
    bl_idname = "view3d.material_remove_slot"
    bl_label = "Remove Active Slot (Active Object)"
    bl_description = ("Remove active material slot from active object \n"
                      "Can't be used in Edit Mode")
    bl_options = {'REGISTER', 'UNDO'}

    @classmethod
    def poll(cls, context):
        # materials can't be removed in Edit mode
        return (c_data_has_materials() and
                context.active_object is not None and
                not context.active_object.mode == 'EDIT')

    def execute(self, context):
        if not context.selected_editable_objects:
            warning_messages(self, 'R_NO_SL_MAT')
            return {'CANCELLED'}

        remove_materials(self, "SLOT")

        return {'FINISHED'}


class VIEW3D_OT_material_remove_object(Operator):
    bl_idname = "view3d.material_remove_object"
    bl_label = "Remove all Slots (Active Object)"
    bl_description = ("Remove all material slots from active object \n"
                      "Can't be used in Edit Mode")
    bl_options = {'REGISTER', 'UNDO'}

    @classmethod
    def poll(cls, context):
        # materials can't be removed in Edit mode
        return (c_data_has_materials() and
                context.active_object is not None and
                not context.active_object.mode == 'EDIT')

    def execute(self, context):
        if not context.selected_editable_objects:
            warning_messages(self, 'R_NO_SL_MAT')
            return {'CANCELLED'}

        remove_materials(self, "ALL")

        return {'FINISHED'}


class VIEW3D_OT_material_remove_all(Operator):
    bl_idname = "view3d.material_remove_all"
    bl_label = "Remove All Material Slots"
    bl_description = ("Remove all material slots from all selected objects \n"
                      "Can't be used in Edit Mode")
    bl_options = {'REGISTER', 'UNDO'}

    @classmethod
    def poll(cls, context):
        # materials can't be removed in Edit mode
        return (c_data_has_materials() and
                context.active_object is not None and
                not context.active_object.mode == 'EDIT')

    def invoke(self, context, event):
        return context.window_manager.invoke_confirm(self, event)

    def execute(self, context):
        if not context.selected_editable_objects:
            warning_messages(self, 'R_NO_SL_MAT')
            return {'CANCELLED'}

        remove_materials_all(self)

        return {'FINISHED'}


class VIEW3D_OT_select_material_by_name(Operator):
    bl_idname = "view3d.select_material_by_name"
    bl_label = "Select Material By Name"
    bl_description = "Select geometry with this material assigned to it"
    bl_options = {'REGISTER', 'UNDO'}

    matname: StringProperty(
        name="Material Name",
        description="Name of Material to Select",
        maxlen=63,
    )
    is_not_undo = False
    is_edit = False

    @classmethod
    def poll(cls, context):
        obj = context.active_object
        return (c_data_has_materials() and
                obj is not None and obj.mode in {"OBJECT", "EDIT"})

    def invoke(self, context, event):
        self.is_not_undo = True

        if use_mat_menu_type() not in {'POPUP'}:
            return self.execute(context)

        obj = context.active_object
        self.is_edit = bool(obj.mode == 'EDIT')
        materials_lists_fill_names(context, refresh=True, is_object=self.is_edit)

        return context.window_manager.invoke_props_dialog(self, width=400, height=200)

    def check(self, context):
        return self.is_not_undo

    def draw(self, context):
        draw_ui_list_popups(self, context, obj_data=self.is_edit)

    def execute(self, context):
        if use_mat_menu_type() == 'POPUP':
            mats_col = context.scene.mat_specials_mats
            scene = context.scene.mat_specials
            len_mats = len(mats_col)
            mat_index = scene.index_mat

            if not (len_mats > 0 and mat_index is not None and mat_index <= len_mats):
                self.report({'WARNING'},
                            "No materials found. Operation Cancelled")
                return {"CANCELLED"}

            mats_up = mats_col[mat_index].name
            mn = mats_up
        else:
            mn = self.matname

        select_material_by_name(mn)
        message = 'SL_MAT_EDIT_BY_NAME' if self.is_edit else 'SL_MAT_BY_NAME'
        warning_messages(self, message, mn)
        self.is_not_undo = False

        return {'FINISHED'}


class VIEW3D_OT_replace_material(Operator):
    bl_idname = "view3d.replace_material"
    bl_label = "Replace Material"
    bl_description = "Replace a material by name"
    bl_options = {'REGISTER', 'UNDO'}

    matorg: StringProperty(
        name="Original",
        description="Material to replace",
        maxlen=63,
    )
    matrep: StringProperty(
        name="Replacement",
        description="Replacement material",
        maxlen=63,
    )
    all_objects: BoolProperty(
        name="All objects",
        description="If enabled, replace for all objects in this blend file\n"
                    "If disabled, only selected objects will be affected",
        default=False,
    )
    update_selection: BoolProperty(
        name="Update Selection",
        description="Select affected objects and deselect unaffected",
        default=True,
    )

    @classmethod
    def poll(cls, context):
        return c_data_has_materials()

    def draw(self, context):
        layout = self.layout
        layout.prop_search(self, "matorg", bpy.data, "materials")
        layout.prop_search(self, "matrep", bpy.data, "materials")
        layout.prop(self, "all_objects")
        layout.prop(self, "update_selection")

    def invoke(self, context, event):
        return context.window_manager.invoke_props_dialog(self)

    def execute(self, context):
        replace_material(
            self.matorg, self.matrep, self.all_objects,
            self.update_selection, self
        )
        self.matorg, self.matrep = "", ""

        return {'FINISHED'}


class VIEW3D_OT_fake_user_set(Operator):
    bl_idname = "view3d.fake_user_set"
    bl_label = "Set Fake User"
    bl_description = "Enable/disable fake user for materials"
    bl_options = {'REGISTER', 'UNDO'}

    fake_user: EnumProperty(
        name="Fake User",
        description="Turn fake user on or off",
        items=(('ON', "On", "Enable fake user"), ('OFF', "Off", "Disable fake user")),
        default='ON',
    )
    materials: EnumProperty(
        name="Materials",
        description="Chose what objects and materials to affect",
        items=(('ACTIVE', "Active object", "Materials of active object only"),
               ('SELECTED', "Selected objects", "Materials of selected objects"),
               ('SCENE', "Scene objects", "Materials of objects in current scene"),
               ('USED', "Used", "All materials used by objects"),
               ('UNUSED', "Unused", "Currently unused materials"),
               ('ALL', "All", "All materials in this blend file")),
        default='UNUSED',
    )

    @classmethod
    def poll(cls, context):
        return c_data_has_materials()

    def draw(self, context):
        layout = self.layout
        layout.prop(self, "fake_user", expand=True)
        layout.prop(self, "materials")

    def invoke(self, context, event):
        return context.window_manager.invoke_props_dialog(self)

    def execute(self, context):
        fake_user_set(self.fake_user, self.materials, self)

        return {'FINISHED'}


class MATERIAL_OT_set_transparent_back_side(Operator):
    bl_idname = "material.set_transparent_back_side"
    bl_label = "Transparent back (BI)"
    bl_description = ("Creates BI nodes with Alpha output connected to Front/Back\n"
                      "Geometry node on Object's Active Material Slot")
    bl_options = {'REGISTER', 'UNDO'}

    @classmethod
    def poll(cls, context):
        obj = context.active_object
        if not obj:
            return False
        mat = obj.active_material
        if not mat:
            return False
        if mat.node_tree:
            if (len(mat.node_tree.nodes) == 0):
                return True
        if not mat.use_nodes:
            return True
        return False

    def execute(self, context):
        obj = context.active_object
        mat = obj.active_material
        try:
            mat.use_nodes = True
            if (mat.node_tree):
                for node in mat.node_tree.nodes:
                    if (node):
                        mat.node_tree.nodes.remove(node)

            mat.use_transparency = True
            node_mat = mat.node_tree.nodes.new('ShaderNodeMaterial')
            node_out = mat.node_tree.nodes.new('ShaderNodeOutput')
            node_geo = mat.node_tree.nodes.new('ShaderNodeGeometry')
            node_mat.material = mat
            node_out.location = [node_out.location[0] + 500, node_out.location[1]]
            node_geo.location = [node_geo.location[0] + 150, node_geo.location[1] - 150]
            mat.node_tree.links.new(node_mat.outputs[0], node_out.inputs[0])
            mat.node_tree.links.new(node_geo.outputs[8], node_out.inputs[1])
        except:
            warning_messages(self, 'E_MAT_TRNSP_BACK')
            return {'CANCELLED'}

        if hasattr(mat, "name"):
            warning_messages(self, 'MAT_TRNSP_BACK', mat.name, 'MAT')

        return {'FINISHED'}


class MATERIAL_OT_move_slot_top(Operator):
    bl_idname = "material.move_material_slot_top"
    bl_label = "Slot to the top"
    bl_description = "Move the active material slot on top"
    bl_options = {'REGISTER', 'UNDO'}

    @classmethod
    def poll(cls, context):
        obj = context.active_object
        if not obj:
            return False
        if (len(obj.material_slots) <= 2):
            return False
        if (obj.active_material_index <= 0):
            return False
        return True

    def execute(self, context):
        activeObj = context.active_object

        for i in range(activeObj.active_material_index):
            bpy.ops.object.material_slot_move(direction='UP')

        active_mat = context.object.active_material
        if active_mat and hasattr(active_mat, "name"):
            warning_messages(self, 'MOVE_SLOT_UP', active_mat.name, 'MAT')

        return {'FINISHED'}


class MATERIAL_OT_move_slot_bottom(Operator):
    bl_idname = "material.move_material_slot_bottom"
    bl_label = "Slots to the bottom"
    bl_description = "Move the active material slot to the bottom"
    bl_options = {'REGISTER', 'UNDO'}

    @classmethod
    def poll(cls, context):
        obj = context.active_object
        if not obj:
            return False
        if (len(obj.material_slots) <= 2):
            return False
        if (len(obj.material_slots) - 1 <= obj.active_material_index):
            return False
        return True

    def execute(self, context):
        activeObj = context.active_object
        lastSlotIndex = len(activeObj.material_slots) - 1

        for i in range(lastSlotIndex - activeObj.active_material_index):
            bpy.ops.object.material_slot_move(direction='DOWN')

        active_mat = context.object.active_material
        if active_mat and hasattr(active_mat, "name"):
            warning_messages(self, 'MOVE_SLOT_DOWN', active_mat.name, 'MAT')

        return {'FINISHED'}


class MATERIAL_OT_link_to_base_names(Operator):
    bl_idname = "material.link_to_base_names"
    bl_label = "Merge Base Names"
    bl_description = ("Replace .001, .002 slots with Original \n"
                      "Material/Name on All Materials/Objects")
    bl_options = {'REGISTER', 'UNDO'}

    mat_keep: StringProperty(
        name="Material to keep",
        default="",
    )
    is_auto: BoolProperty(
        name="Auto Rename/Replace",
        description="Automatically Replace names by stripping numerical suffix",
        default=False,
    )
    mat_error = []          # collect mat for warning messages
    is_not_undo = False     # prevent drawing props on undo
    check_no_name = True    # check if no name is passed

    @classmethod
    def poll(cls, context):
        return (c_data_has_materials() and context.active_object is not None)

    def draw(self, context):
        layout = self.layout

        if self.is_not_undo is False:
            layout.label(text=UNDO_MESSAGE, icon="INFO")
            return

        boxee = layout.box()
        boxee.prop_search(self, "mat_keep", bpy.data, "materials")
        boxee.enabled = not self.is_auto
        layout.separator()

        boxs = layout.box()
        boxs.prop(self, "is_auto", text="Auto Rename/Replace", icon="SYNTAX_ON")

    def invoke(self, context, event):
        self.is_not_undo = True
        return context.window_manager.invoke_props_dialog(self)

    def replace_name(self):
        # use the chosen material as a base one, check if there is a name
        self.check_no_name = (False if self.mat_keep in {""} else True)

        if self.check_no_name is True:
            for mat in bpy.data.materials:
                name = mat.name
                if name == self.mat_keep:
                    try:
                        base, suffix = name.rsplit('.', 1)
                        # trigger the exception
                        num = int(suffix, 10)
                        self.mat_keep = base
                        mat.name = self.mat_keep
                        return
                    except ValueError:
                        if name not in self.mat_error:
                            self.mat_error.append(name)
                        return
        return

    def split_name(self, material):
        name = material.name

        if '.' not in name:
            return name, None

        base, suffix = name.rsplit('.', 1)

        try:
            # trigger the exception
            num = int(suffix, 10)
        except ValueError:
            # Not a numeric suffix
            if name not in self.mat_error:
                self.mat_error.append(name)
            return name, None

        if self.is_auto is False:
            if base == self.mat_keep:
                return base, suffix
            else:
                return name, None

        return base, suffix

    def fixup_slot(self, slot):
        if not slot.material:
            return

        base, suffix = self.split_name(slot.material)
        if suffix is None:
            return

        try:
            base_mat = bpy.data.materials[base]
        except KeyError:
            print("\n[Materials Utils Specials]\nLink to base names\nError:"
                  "Base material %r not found\n" % base)
            return

        slot.material = base_mat

    def check(self, context):
        return self.is_not_undo

    def main_loop(self, context):
        for ob in context.scene.objects:
            for slot in ob.material_slots:
                self.fixup_slot(slot)

    def execute(self, context):
        if self.is_auto is False:
            self.replace_name()
            if self.check_no_name is True:
                self.main_loop(context)
            else:
                warning_messages(self, 'MAT_LINK_NO_NAME')
                self.is_not_undo = False
                return {'CANCELLED'}

        self.main_loop(context)

        if use_cleanmat_slots():
            cleanmatslots()

        if self.mat_error:
            warning_messages(self, 'MAT_LINK_ERROR', self.mat_error, 'MAT')

        self.is_not_undo = False

        return {'FINISHED'}


class MATERIAL_OT_check_converter_path(Operator):
    bl_idname = "material.check_converter_path"
    bl_label = "Check Converters images/data save path"
    bl_description = "Check if the given path is writable (has OS writing privileges)"
    bl_options = {'REGISTER', 'INTERNAL'}

    def check_valid_path(self, context):
        sc = context.scene
        paths = bpy.path.abspath(sc.mat_specials.conv_path)

        if bpy.data.filepath == "":
            warning_messages(self, "DIR_PATH_EMPTY", override=True)
            return False

        if not os_path.exists(paths):
            warning_messages(self, 'DIR_PATH_N_ERROR', override=True)
            return False

        if not os_access(paths, os.W_OK | os.X_OK):
            warning_messages(self, 'DIR_PATH_A_ERROR', override=True)
            return False

        try:
            path_test = os_path.join(paths, "XYfoobartestXY.txt")
            with open(path_test, 'w') as f:
                f.closed
            os_remove(path_test)
            return True
        except (OSError, IOError):
            warning_messages(self, 'DIR_PATH_W_ERROR', override=True)
            return False

        return True

    def execute(self, context):
        if not self.check_valid_path(context):
            return {'CANCELLED'}

        warning_messages(self, 'DIR_PATH_W_OK', override=True)

        return {'FINISHED'}


# Material selections pop-up

class VIEW3D_UL_assign_material_popup_ui(UIList):

    def draw_item(self, context, layout, data, item, icon, active_data, active_propname):
        self.use_filter_show = True

        col = layout.column(align=True)
        col.alignment = "LEFT"
        mat = bpy.data.materials.get(item.name, None)
        if not mat:
            col.label(text="{} - is not available".format(item.name), icon="ERROR")
        else:
            split = col.split(percentage=0.75, align=True)
            row = split.row(align=True)
            row.label(text=item.name, translate=False, icon="MATERIAL_DATA")
            subrow = split.row(align=True)
            subrow.alignment = "RIGHT"
            subrow.label(text="", icon="PINNED" if item.mat_fake_user else "BLANK1")
            subrow = split.row(align=True)
            subrow.alignment = "RIGHT"
            subrow.label(text="", icon="LINK_BLEND" if item.mat_lib else "BLANK1")


def draw_ui_list_popups(self, context, obj_data=False):
    layout = self.layout

    if not self.is_not_undo:
        layout.label(text=UNDO_MESSAGE, icon="INFO")
        return

    matlen = len(context.scene.mat_specials_mats)
    matdata = "in Object's Data" if obj_data else "in Data"
    matgramma = "Material" if matlen == 1 else "Materials"
    matcount = "No" if matlen < 1 else matlen

    box = layout.box()
    col = box.column(align=True)
    col.label(text="{} {} {}".format(matcount, matgramma, matdata),
              icon="INFO")
    sub_split = col.split(percentage=0.7, align=True)
    sub_box_1 = sub_split.box()
    sub_box_1.label(text="Name")
    sub_split_2 = sub_split.split(percentage=0.5, align=True)
    sub_box_2 = sub_split_2.box()
    sub_box_2.label(text="Fake")
    sub_box_3 = sub_split_2.box()
    sub_box_3.label(text="Lib")

    col.template_list(
        "VIEW3D_UL_assign_material_popup_ui",
        'mat_specials',
        context.scene,
        'mat_specials_mats',
        context.scene.mat_specials,
        'index_mat',
        rows=10
    )
    return


# Menu classes

class VIEW3D_MT_assign_material(Menu):
    bl_label = "Assign Material"

    def draw(self, context):
        layout = self.layout
        layout.operator_context = 'INVOKE_REGION_WIN'

        if (not context.active_object):
            # info why the add material is innactive
            layout.label(text="*No active Object in the Scene*", icon="INFO")
            use_separator(self, context)

        mat_prop_name = context.scene.mat_specials.set_material_name
        add_new = layout.operator(
                        "view3d.assign_material",
                        text="Add New", icon='ZOOMIN'
                        )
        add_new.matname = mat_prop_name
        add_new.is_existing = False

        if use_mat_menu_type() != 'POPUP':
            use_separator(self, context)

        if c_data_has_materials():
            mat_entry = layout.column()

            if use_mat_menu_type() == 'POPUP':
                matp = mat_entry.operator(
                            "view3d.assign_material",
                            icon='MATERIAL_DATA'
                            )
                matp.is_existing = True
            elif use_mat_menu_type() == 'COLUMNS':
                get_col_size = switch_to_column()
                mat_entry = layout.column_flow(columns=get_col_size)

            if use_mat_menu_type() in {'COLUMNS', 'STANDARD'}:
                for material_name in bpy.data.materials.keys():
                    mats = mat_entry.operator(
                                "view3d.assign_material",
                                text=material_name,
                                icon='MATERIAL_DATA'
                                )
                    mats.matname = material_name
                    mats.is_existing = True


class VIEW3D_MT_select_material(Menu):
    bl_label = "Select by Material"

    def draw(self, context):
        layout = self.layout
        layout.operator_context = 'INVOKE_REGION_WIN'
        obj = context.active_object
        has_users = False
        col = layout.column()

        if not c_data_has_materials():
            layout.label(text="*No Materials in the Data*", icon="INFO")
            return
        elif not obj:
            layout.label(text="*No Active Object*", icon="INFO")
            return
        elif obj.mode == "EDIT" and not c_obj_data_has_materials(obj):
            layout.label(text="*No Materials in the Object's Data*", icon="INFO")
            return
        elif use_mat_menu_type() == 'POPUP':
            col.operator(
                "view3d.select_material_by_name",
                text="Select by Material",
                icon='HAND',
            )
            return

        if obj.mode == 'OBJECT':
            if use_mat_menu_type() == 'COLUMNS':
                get_col_size = switch_to_column(is_edit=False)
                col = layout.column_flow(columns=get_col_size)
            # show all used materials in entire blend file
            for material_name, material in bpy.data.materials.items():
                if material.users > 0:
                    has_users = True
                    col.operator(
                        "view3d.select_material_by_name",
                        text=material_name,
                        icon='MATERIAL_DATA',
                    ).matname = material_name
            if not has_users:
                layout.label(text="*No users for Materials in the data*", icon="INFO")
                return
        elif obj.mode == 'EDIT':
            if use_mat_menu_type() == 'COLUMNS':
                get_col_size = switch_to_column(is_edit=True)
                col = layout.column_flow(columns=get_col_size)
            # show only the materials on this object
            mats = obj.material_slots.keys()
            for m in mats:
                if m not in "":  # skip empty slots
                    col.operator(
                        "view3d.select_material_by_name",
                        text=m,
                        icon='MATERIAL_DATA'
                    ).matname = m
        else:
            layout.label(text="*Works only in Object and Edit mode*", icon="INFO")


class VIEW3D_MT_remove_material(Menu):
    bl_label = "Clean Slots"

    def draw(self, context):
        layout = self.layout
        layout.operator_context = 'INVOKE_REGION_WIN'

        if context.mode in {'PAINT_TEXTURE'}:
            layout.label(
                text="Removing materials can lead to loss of painting data",
                icon="INFO"
            )
            use_separator(self, context)

        layout.operator(
            "view3d.clean_material_slots",
            text="Clean Material Slots",
            icon='COLOR_BLUE'
        )
        use_separator(self, context)

        if c_render_engine("Lux"):
            layout.label(text="Sorry, other Menu functions are", icon="INFO")
            layout.label(text="unavailable with Lux Renderer")
            return

        layout.operator("view3d.material_remove_slot", icon='COLOR_GREEN')
        layout.operator("view3d.material_remove_object", icon='COLOR_RED')

        if use_remove_mat_all():
            use_separator(self, context)
            layout.operator(
                "view3d.material_remove_all",
                text="Remove Material Slots (All Selected Objects)",
                icon='CANCEL'
            )


class VIEW3D_MT_master_material(Menu):
    bl_label = "Material Specials Menu"

    def draw(self, context):
        layout = self.layout
        layout.operator_context = 'INVOKE_REGION_WIN'

        if use_mat_preview() is True:
            layout.operator("view3d.show_mat_preview", icon="VISIBLE_IPO_ON")
            use_separator(self, context)

        if use_mat_menu_type() == 'POPUP':
            VIEW3D_MT_assign_material.draw(self, context)
            use_separator(self, context)
            VIEW3D_MT_select_material.draw(self, context)
        else:
            layout.menu("VIEW3D_MT_assign_material", icon='ZOOMIN')
            layout.menu("VIEW3D_MT_select_material", icon='HAND')
        use_separator(self, context)

        layout.operator("view3d.copy_material_to_selected", icon="COPY_ID")
        use_separator(self, context)

        layout.menu("VIEW3D_MT_remove_material", icon="COLORSET_10_VEC")
        use_separator(self, context)

        layout.operator("view3d.replace_material",
                        text='Replace Material',
                        icon='ARROW_LEFTRIGHT')
        layout.operator("view3d.fake_user_set",
                        text='Set Fake User',
                        icon='UNPINNED')
        use_separator(self, context)

        layout.menu("VIEW3D_MT_mat_special", icon="SOLO_ON")


class VIEW3D_MT_mat_special(Menu):
    bl_label = "Specials"

    def draw(self, context):
        layout = self.layout

        layout.operator("view3d.set_new_material_name", icon="SETTINGS")

        if c_render_engine("Cycles"):
            if (enable_converters() is True and converter_type('BI_CONV')):
                ml_restore_1 = layout.operator("ml.restore",
                                               text='To BI Nodes Off',
                                               icon="BLENDER")
                ml_restore_1.switcher = False
                ml_restore_1.renderer = "BI"

                ml_restore_2 = layout.operator("ml.restore",
                                               text='To BI Nodes On',
                                               icon="APPEND_BLEND")
                ml_restore_2.switcher = True
                ml_restore_2.renderer = "BI"
                use_separator(self, context)

        elif c_render_engine("BI"):
            if (enable_converters() is True and converter_type('CYC_CONV')):
                layout.operator("ml.refresh_active",
                                text='Convert Active to Cycles',
                                icon='NODE_INSERT_OFF')
                layout.operator("ml.refresh",
                                text='Convert All to Cycles',
                                icon='NODE_INSERT_ON')
                use_separator(self, context)
                ml_restore_1 = layout.operator("ml.restore",
                                               text='To Cycles Nodes Off',
                                               icon="SOLID")
                ml_restore_1.switcher = False
                ml_restore_1.renderer = "CYCLES"

                ml_restore_2 = layout.operator("ml.restore",
                                               text='To Cycles Nodes On',
                                               icon="IMGDISPLAY")
                ml_restore_2.switcher = True
                ml_restore_2.renderer = "CYCLES"
                use_separator(self, context)

            layout.operator("material.set_transparent_back_side",
                            icon='IMAGE_RGB_ALPHA',
                            text="Transparent back (BI)")
            layout.operator("view3d.material_to_texface",
                            text="Material to Texface",
                            icon='MATERIAL_DATA')
            layout.operator("view3d.texface_to_material",
                            text="Texface to Material",
                            icon='TEXTURE_SHADED')
            use_separator(self, context)

        layout.operator("material.link_to_base_names", icon="KEYTYPE_BREAKDOWN_VEC")
        use_separator(self, context)
        layout.operator("texture.patern_rename",
                        text='Rename Image As Texture',
                        icon='TEXTURE')


# Specials Menu's #

def menu_func(self, context):
    layout = self.layout
    layout.operator_context = 'INVOKE_REGION_WIN'

    use_separator(self, context)
    if use_mat_menu_type() == 'POPUP':
        VIEW3D_MT_assign_material.draw(self, context)
        use_separator(self, context)
        VIEW3D_MT_select_material.draw(self, context)
    else:
        layout.menu("VIEW3D_MT_assign_material", icon='ZOOMIN')
        layout.menu("VIEW3D_MT_select_material", icon='HAND')
    use_separator(self, context)

    layout.operator("view3d.replace_material",
                    text='Replace Material',
                    icon='ARROW_LEFTRIGHT')
    use_separator(self, context)

    layout.menu("VIEW3D_MT_remove_material", icon="COLORSET_10_VEC")
    use_separator(self, context)

    layout.operator("view3d.fake_user_set",
                    text='Set Fake User',
                    icon='UNPINNED')
    use_separator(self, context)

    layout.menu("VIEW3D_MT_mat_special", icon="SOLO_ON")


def menu_move(self, context):
    layout = self.layout
    layout.operator_context = 'INVOKE_REGION_WIN'

    layout.operator("material.move_material_slot_top",
                    icon='TRIA_UP', text="Slot to top")
    layout.operator("material.move_material_slot_bottom",
                    icon='TRIA_DOWN', text="Slot to bottom")
    use_separator(self, context)


# Converters Menu's #

class MATERIAL_MT_scenemassive_opt(Menu):
    bl_idname = "scenemassive.opt"
    bl_description = "Additional Options for Convert BI to Cycles"
    bl_label = "Options"
    bl_options = {'REGISTER'}

    def draw(self, context):
        layout = self.layout
        scene = context.scene.mat_specials

        layout.prop(scene, "EXTRACT_ALPHA",
                    text="Extract Alpha Textures (slow)")
        use_separator(self, context)
        layout.prop(scene, "EXTRACT_PTEX",
                    text="Extract Procedural Textures (slow)")
        use_separator(self, context)
        layout.prop(scene, "EXTRACT_OW", text="Re-extract Textures")
        use_separator(self, context)
        layout.prop(scene, "SET_FAKE_USER", text="Set Fake User on unused images")
        use_separator(self, context)
        layout.prop(scene, "SCULPT_PAINT", text="Sculpt/Texture paint mode")
        use_separator(self, context)
        layout.prop(scene, "UV_UNWRAP", text="Set Auto UV Unwrap (Active Object)")
        use_separator(self, context)
        layout.prop(scene, "enable_report", text="Enable Report in the UI")
        use_separator(self, context)

        layout.label(text="Set the Bake Resolution")
        res = str(scene.img_bake_size)
        layout.label(text="Current Setting is : %s" % (res + "x" + res), icon='INFO')
        use_separator(self, context)
        layout.prop(scene, "img_bake_size", icon='NODE_SEL', expand=True)


class MATERIAL_PT_scenemassive(Panel):
    bl_label = "Convert BI Materials to Cycles"
    bl_space_type = "PROPERTIES"
    bl_region_type = "WINDOW"
    bl_context = "material"
    bl_options = {'DEFAULT_CLOSED'}

    @classmethod
    def poll(cls, context):
        return (enable_converters() is True and converter_type('BI_CONV'))

    def draw_header(self, context):
        layout = self.layout
        help_panel_header(layout, menu_type="HELP_MT_biconvert")

    def draw(self, context):
        layout = self.layout
        sc = context.scene
        col = layout.column(align=True)
        box = col.box()

        split = box.box().split(0.5)
        split.operator("ml.refresh",
                       text="Convert All to Cycles", icon='MATERIAL')
        split.operator("ml.refresh_active",
                       text="Convert Active to Cycles", icon='MATERIAL')
        row = box.row()
        ml_restore = row.operator("ml.restore", text="To BI Nodes Off",
                                  icon='MATERIAL')
        ml_restore.switcher = False
        ml_restore.renderer = "BI"
        row.menu("scenemassive.opt", text="Advanced Options", icon='SCRIPTWIN')

        box = col.box()
        box.label(text="Save Directory")
        split = box.split(0.85)
        split.prop(sc.mat_specials, "conv_path", text="", icon="RENDER_RESULT")
        split.operator("material.check_converter_path",
                       text="", icon="EXTERNAL_DATA")


class MATERIAL_PT_xps_convert(Panel):
    bl_label = "Convert to BI and Cycles Nodes"
    bl_space_type = "PROPERTIES"
    bl_region_type = "WINDOW"
    bl_context = "material"
    bl_options = {'DEFAULT_CLOSED'}

    @classmethod
    def poll(cls, context):
        return (enable_converters() is True and converter_type('CYC_CONV'))

    def draw_header(self, context):
        layout = self.layout
        help_panel_header(layout, menu_type="help.nodeconvert")

    def draw(self, context):
        layout = self.layout
        col = layout.column(align=True)
        box = col.box()

        box.label(text="Multi Image Support (Imports)", icon="INFO")
        split = box.box().split(0.5)
        split.operator(
            "xps_tools.convert_to_cycles_all",
            text="Convert All to Nodes", icon="TEXTURE"
        )
        split.operator(
            "xps_tools.convert_to_cycles_selected",
            text="Convert Selected to Nodes", icon="TEXTURE"
        )

        box = col.box()
        ml_restore = box.operator("ml.restore", text="To BI Nodes ON",
                                  icon='MATERIAL')
        ml_restore.switcher = True
        ml_restore.renderer = "BI"


# Converters Help #

class MATERIAL_MT_biconv_help(Menu):
    bl_idname = "HELP_MT_biconvert"
    bl_description = "Read Instructions & Current Limitations"
    bl_label = "Usage Information Guide"
    bl_options = {'REGISTER'}

    def draw(self, context):
        layout = self.layout
        layout.label(text="If possible, avoid multiple conversions in a row")
        layout.label(text="Save Your Work Often", icon="ERROR")
        use_separator(self, context)
        layout.label(text="Try to link them manually using Mix Color nodes")
        layout.label(text="Only the last Image in the stack gets linked to Shader")
        layout.label(text="Current limitation:", icon="MOD_EXPLODE")
        use_separator(self, context)
        layout.label(text="Select the texture loaded in the image node")
        layout.label(text="Press Ctrl/T to create the image nodes")
        layout.label(text="In the Node Editor, Select the Diffuse Node")
        layout.label(text="Enable Node Wrangler add-on", icon="NODETREE")
        layout.label(text="If Unconnected or No Image Node Error:", icon="MOD_EXPLODE")
        use_separator(self, context)
        layout.label(text="Extract Alpha: the images have to have alpha channel")
        layout.label(text="The default path is the folder where the current .blend is")
        layout.label(text="During Baking, the script will check writing privileges")
        layout.label(text="Set the save path for extracting images with full access")
        layout.label(text="May Require Run As Administrator on Windows OS", icon="ERROR")
        layout.label(text="Converts Bi Textures to Image Files:", icon="MOD_EXPLODE")
        use_separator(self, context)
        layout.label(text="The Converter report can point out to some failures")
        layout.label(text="Some material combinations are unsupported")
        layout.label(text="Single BI Texture/Image per convert is only supported")
        layout.label(text="Converts Basic BI non node materials to Cycles")
        use_separator(self, context)
        layout.label(text="Convert Bi Materials to Cycles Nodes:", icon="INFO")


class MATERIAL_MT_nodeconv_help(Menu):
    bl_idname = "help.nodeconvert"
    bl_description = "Read Instructions & Current Limitations"
    bl_label = "Usage Information Guide"
    bl_options = {'REGISTER'}

    def draw(self, context):
        layout = self.layout
        layout.label(text="If possible, avoid multiple conversions in a row")
        layout.label(text="Save Your Work Often", icon="ERROR")
        use_separator(self, context)
        layout.label(text="Relinking and removing some not needed nodes")
        layout.label(text="The result Node tree will need some cleaning up")
        use_separator(self, context)
        layout.label(text="Select the texture loaded in the image node")
        layout.label(text="Press Ctrl/T to create the image nodes")
        layout.label(text="In the Node Editor, Select the Diffuse Node")
        layout.label(text="Enable Node Wrangler add-on", icon="NODETREE")
        layout.label(text="If Unconnected or No Image Node Error:", icon="MOD_EXPLODE")
        use_separator(self, context)
        layout.label(text="For Specular Nodes, Image color influence has to be enabled")
        layout.label(text="Generated images (i.e. Noise and others) are not converted")
        layout.label(text="The Converter report can point out to some failures")
        layout.label(text="Not all Files will produce good results", icon="ERROR")
        layout.label(text="fbx, .dae, .obj, .3ds, .xna and more")
        layout.label(text="*Supports Imported Files*:", icon="IMPORT")
        use_separator(self, context)
        layout.label(text="For some file types")
        layout.label(text="Supports Alpha, Normals, Specular and Diffuse")
        layout.label(text="Then Converts BI Nodes to Cycles Nodes")
        layout.label(text="Converts BI non node materials to BI Nodes")
        use_separator(self, context)
        layout.label(text="Convert Materials/Image Textures from Imports:", icon="INFO")


# Make Report
class MATERIAL_OT_converter_report(Operator):
    bl_idname = "mat_converter.reports"
    bl_label = "Material Converter Report"
    bl_description = "Report about done Material Conversions"
    bl_options = {'REGISTER', 'INTERNAL'}

    message: StringProperty(maxlen=8192)

    def draw(self, context):
        layout = self.layout
        layout.label(text="Information:", icon='INFO')

        if self.message and type(self.message) is str:
            list_string = self.message.split("*")
            for line in range(len(list_string)):
                layout.label(text=str(list_string[line]))

    def invoke(self, context, event):
        return context.window_manager.invoke_props_dialog(self, width=500)

    def execute(self, context):

        return {'FINISHED'}


# Scene Properties
class material_specials_scene_mats(PropertyGroup):
    name: StringProperty()
    mat_lib: BoolProperty(
        default=False
    )
    mat_fake_user: BoolProperty(
        default=False
    )


class material_specials_scene_props(PropertyGroup):
    conv_path: StringProperty(
        name="Save Directory",
        description="Path to save images during conversion\n"
                    "Default is the location of the blend file",
        default="//",
        subtype='DIR_PATH'
    )
    EXTRACT_ALPHA: BoolProperty(
        attr="EXTRACT_ALPHA",
        default=False,
        description="Extract Alpha channel from non-procedural images\n"
                    "Don't use this option if the image doesn't have Alpha"
    )
    SET_FAKE_USER: BoolProperty(
        attr="SET_FAKE_USER",
        default=False,
        description="Set fake user on unused images, so they can be kept in the .blend"
    )
    EXTRACT_PTEX: BoolProperty(
        attr="EXTRACT_PTEX",
        default=False,
        description="Extract procedural images and bake them to jpeg"
    )
    EXTRACT_OW: BoolProperty(
        attr="Overwrite",
        default=False,
        description="Extract textures again instead of re-using previously extracted textures"
    )
    SCULPT_PAINT: BoolProperty(
        attr="SCULPT_PAINT",
        default=False,
        description="Conversion geared towards sculpting and painting.\n"
                    "Creates a diffuse, glossy mixed with layer weight.\n"
                    "Image nodes are not connected"
    )
    UV_UNWRAP: BoolProperty(
        attr="UV_UNWRAP",
        default=False,
        description="Use automatic Angle based UV Unwrap for the Active Object"
    )
    enable_report: BoolProperty(
        attr="enable_report",
        default=False,
        description="Enable Converter Report in the UI"
    )
    img_bake_size: EnumProperty(
        name="Bake Image Size",
        description="Set the resolution size of baked images \n",
        items=(
            ('512', "Set : 512 x 512", "Bake Resolution 512 x 512"),
            ('1024', "Set : 1024 x 1024", "Bake Resolution 1024 x 1024"),
            ('2048', "Set : 2048 x 2048", "Bake Resolution 2048 x 2048")
        ),
        default='1024'
    )
    set_material_name: StringProperty(
        name="New Material name",
        description="What Base name pattern to use for a new created Material\n"
                    "It is appended by an automatic numeric pattern depending\n"
                    "on the number of Scene's materials containing the Base",
        default="Material_New",
        maxlen=128
    )
    use_tweak: BoolProperty(
        name="Tweak Settings",
        description="Open Preview Active Material after new Material creation",
        default=False
    )
    index_mat: IntProperty(
        name="index",
        options={"HIDDEN"}
    )


# Add-on Preferences
class VIEW3D_MT_material_utils_pref(AddonPreferences):
    bl_idname = __name__

    show_warnings: BoolProperty(
        name="Enable Warning messages",
        default=False,
        description="Show warning messages when an action is executed or failed"
    )
    show_remove_mat: BoolProperty(
        name="Enable Remove all Materials",
        default=False,
        description="Enable Remove all Materials for all Selected Objects\n\n"
                    "Use with care - if you want to keep materials after\n"
                    "closing or reloading Blender, Set Fake User for them"
    )
    show_mat_preview: BoolProperty(
        name="Enable Material Preview",
        default=True,
        description="Material Preview of the Active Object\n"
                    "Contains the preview of the active Material,\n"
                    "Use nodes, Color, Specular and Transparency\n"
                    "settings depending on the Context and Preferences"
    )
    set_cleanmatslots: BoolProperty(
        name="Enable Auto Clean",
        default=True,
        description="Enable Automatic Removal of unused Material Slots\n"
                    "called together with the Assign Material menu option.\n"
                    "Apart from preference and the cases when it affects\n"
                    "adding materials, enabling it can have some\n"
                    "performance impact on very dense meshes"
    )
    show_separators: BoolProperty(
        name="Use Separators in the menus",
        default=True,
        description="Use separators in the menus, a trade-off between\n"
                    "readability vs. using more space for displaying items"
    )
    show_converters: BoolProperty(
        name="Enable Converters",
        default=False,
        description="Enable Material Converters"
    )
    set_preview_size: EnumProperty(
        name="Preview Menu Size",
        description="Set the preview menu size\n"
                    "depending on the number of materials\n"
                    "in the scene (width and height)",
        items=(
            ('2x2', "Size 2x2", "Width 2 Height 2"),
            ('2x3', "Size 2x3", "Width 3 Height 2"),
            ('3x3', "Size 3x3", "Width 3 Height 3"),
            ('3x4', "Size 3x4", "Width 4 Height 3"),
            ('4x4', "Size 4x4", "Width 4 Height 4"),
            ('5x5', "Size 5x5", "Width 5 Height 5"),
            ('6x6', "Size 6x6", "Width 6 Height 6"),
            ('0x0', "List", "Display as a List")
        ),
        default='3x3'
    )
    set_preview_type: EnumProperty(
        name="Preview Menu Type",
        description="Set the the Preview menu type",
        items=(
            ('LIST', "Classic",
            "Display as a Classic List like in Blender Properties.\n"
            "Preview of Active Material is not available\n\n"
            "Note: Choosing a different material from the list will replace the active one"),
            ('PREVIEW', "Preview Display",
            "Display as a preview of Thumbnails\n"
            "It can have some performance issues with scenes containing a lot of materials\n"
            "Preview of Active Material is available\n\n"
            "Note: Choosing a different material from the list will replace the active one")
        ),
        default='PREVIEW'
    )
    set_experimental_type: EnumProperty(
        name="Experimental Features",
        description="Set the type of converters enabled",
        items=(
            ('ALL', "All Converters",
            "Enable all Converters"),
            ('CYC_CONV', "BI and Cycles Nodes",
            "Enable Cycles related Convert"),
            ('BI_CONV', "BI To Cycles",
            "Enable Blender Internal related Converters")
        ),
        default='ALL',
    )
    set_add_material_menu: EnumProperty(
        name="Add Material Menu",
        description="Set the type of Add Material menu",
        items=(
            ('STANDARD', "Standard Menu",
            "Material entries in the menu are below each other"),
            ('COLUMNS', "Column Menu",
            "Material entries are placed in column blocks"),
            ('POPUP', "Pop up Menu",
            "Material entries are placed in a scrollable list inside a pop-up menu")
        ),
        default='POPUP'
    )

    def draw(self, context):
        layout = self.layout
        sc = context.scene

        col_m = layout.column(align=True)

        box = col_m.box()
        box.label(text="Save Directory")
        split = box.split(0.85)
        split.prop(sc.mat_specials, "conv_path", text="", icon="RENDER_RESULT")
        split.operator(
            "material.check_converter_path",
            text="", icon="EXTERNAL_DATA"
        )
        box = col_m.box()
        split = box.split(align=True)

        col = split.column(align=True)
        col.prop(self, "show_warnings")
        col.prop(self, "show_remove_mat")
        col.prop(self, "set_cleanmatslots")
        col.prop(self, "show_separators")

        col = split.column(align=True)
        col.label(text="Apply / Select Material mode:")
        col.prop(self, "set_add_material_menu", expand=True)

        box = col_m.box()
        size_split = 0.3 if self.show_mat_preview else 1.0
        split = box.split(percentage=size_split, align=True)
        split.prop(self, "show_mat_preview")

        if self.show_mat_preview:
            subsplit = split.split(percentage=0.7, align=True)
            row = subsplit.row(align=True)
            row.prop(self, "set_preview_type", expand=True)

            subrow = subsplit.row(align=True)
            subrow.enabled = True if self.set_preview_type in {'PREVIEW'} else False
            subrow.prop(self, "set_preview_size", text="")

        box = col_m.box()
        size_split = 0.3 if self.show_converters else 1.0
        split = box.split(percentage=size_split, align=True)
        split.prop(self, "show_converters")

        if self.show_converters:
            row = split.row(align=True)
            row.prop(self, "set_experimental_type", expand=True)


# utility functions:

def help_panel_header(layout, menu_type="VIEW3D_MT_master_material"):
    layout.separator()
    box = layout.box()
    box.scale_y = 0.5
    box.menu(menu_type, text="", icon="INFO")
    layout.separator()


def activate_mat_slot(actob, matname):
    mats = actob.material_slots
    for i, m in enumerate(mats):
        if m.name == matname:
            # make slot active
            actob.active_material_index = i
            break


def materials_lists_fill_names(context, refresh=False, is_object=False):
    mats_list = context.scene.mat_specials_mats
    if refresh:
        for key in mats_list.keys():
            index = mats_list.find(key)
            if index != -1:
                mats_list.remove(index)

    obj = context.active_object
    mat_collection = []
    if (is_object and obj):
        mat_collection = [
                slot.material for slot in obj.material_slots if
                slot.material
                ]
    else:
        mat_collection = bpy.data.materials

    for mat in mat_collection:
        if mat.name not in mats_list.keys() or refresh:
            prop = mats_list.add()
            prop.name = mat.name
            prop.mat_lib = bool(mat.library)
            prop.mat_fake_user = mat.use_fake_user


def switch_to_column(is_edit=False):
    obj = bpy.context.active_object
    collect = obj.material_slots if is_edit else bpy.data.materials
    col_size = int(round(len(collect) / COLUMN_SPLIT))

    return col_size if col_size > 0 else 1


def remove_material_slot():
    if bpy.ops.object.material_slot_remove.poll():
        bpy.ops.object.material_slot_remove()


def check_mat_name_unique(name_id="Material_new"):
    # check if the new name pattern is in materials' data
    name_list = []
    suffix = 1
    try:
        if c_data_has_materials():
            name_list = [mat.name for mat in bpy.data.materials if name_id in mat.name]
            new_name = "{}_{}".format(name_id, len(name_list) + suffix)
            if new_name in name_list:
                # KISS failed - numbering is not sequential
                # try harvesting numbers in material names, find the rightmost ones
                test_num = []
                from re import findall
                for words in name_list:
                    test_num.append(findall("\d+", words))

                suffix += max([int(l[-1]) for l in test_num])
                new_name = "{}_{}".format(name_id, suffix)
            return new_name
    except Exception as e:
        print("\n[Materials Utils Specials]\nfunction: check_mat_name_unique\nError: %s \n" % e)
        pass
    return name_id


def included_object_types(objects):
    # Pass the bpy.data.objects.type to avoid needless assigning/removing
    # included - type that can have materials
    included = ['MESH', 'CURVE', 'SURFACE', 'FONT', 'META', 'GPENCIL']
    obj = objects
    return bool(obj and obj in included)


def check_is_excluded_obj_types(contxt):
    # pass the context to check if selected objects have excluded types
    if contxt and contxt.selected_editable_objects:
        for obj in contxt.selected_editable_objects:
            if not included_object_types(obj.type):
                return True
    return False


def check_texface_to_mat(obj):
    # check for UV data presence
    if obj:
        if hasattr(obj.data, "uv_textures"):
            if hasattr(obj.data.uv_textures, "active"):
                if hasattr(obj.data.uv_textures.active, "data"):
                    return True
    return False


def c_context_mat_preview():
    # returns the type of viewport shading
    # needed for using the optional UI elements (the context gets lost)

    # code from BA user SynaGl0w
    # if there are multiple 3d views return the biggest screen area one
    views_3d = [area for area in bpy.context.screen.areas if
                area.type == 'VIEW_3D' and area.spaces.active]

    if views_3d:
        main_view_3d = max(views_3d, key=lambda area: area.width * area.height)
        return main_view_3d.spaces.active.viewport_shade
    return "NONE"


def c_context_use_nodes():
    # checks if Use Nodes is ticked on
    actob = bpy.context.active_object
    u_node = (actob.active_material.use_nodes if
              hasattr(actob, "active_material") else False)

    return bool(u_node)


def c_render_engine(cyc=None):
    # valid cyc inputs "Cycles", "BI", "Both", "Lux"
    scene = bpy.context.scene
    render_engine = scene.render.engine

    r_engines = {"Cycles": 'CYCLES',
                 "BI": 'BLENDER_RENDER',
                 "Both": ('CYCLES', 'BLENDER_RENDER'),
                 "Lux": 'LUXRENDER_RENDER'}
    if cyc:
        return (True if cyc in r_engines and render_engine in r_engines[cyc] else False)
    return render_engine


def c_need_of_viewport_colors():
    # check the context where using Viewport color and friends are needed
    # Cycles and BI are supported
    if c_render_engine("Cycles"):
        if c_context_use_nodes() and c_context_mat_preview() == 'SOLID':
            return True
        elif c_context_mat_preview() in ('SOLID', 'TEXTURED', 'MATERIAL'):
            return True
    elif (c_render_engine("BI") and not c_context_use_nodes()):
        return True

    return False


# Draw Separator
def use_separator(operator, context):
    # pass the preferences show_separators bool to enable/disable them
    pref = return_preferences()
    useSep = pref.show_separators
    if useSep:
        operator.layout.separator()


# preferences utilities

def return_preferences():
    return bpy.context.preferences.addons[__name__].preferences


def use_remove_mat_all():
    pref = return_preferences()
    show_rmv_mat = pref.show_remove_mat

    return bool(show_rmv_mat)


def use_mat_menu_type():
    pref = return_preferences()
    use_menu_mat = pref.set_add_material_menu

    return use_menu_mat


def use_mat_preview():
    pref = return_preferences()
    show_mat_prw = pref.show_mat_preview

    return bool(show_mat_prw)


def use_cleanmat_slots():
    pref = return_preferences()
    use_mat_clean = pref.set_cleanmatslots

    return bool(use_mat_clean)


def size_preview():
    pref = return_preferences()
    set_size_prw = pref.set_preview_size

    cell_w = int(set_size_prw[0])
    cell_h = int(set_size_prw[-1])
    cell_tbl = {'Width': cell_w, 'Height': cell_h}

    return cell_tbl


def size_type_is_preview():
    pref = return_preferences()
    set_prw_type = pref.set_preview_type

    return bool(set_prw_type in {'PREVIEW'})


def enable_converters():
    pref = return_preferences()
    shw_conv = pref.show_converters

    return shw_conv


def converter_type(types='ALL'):
    # checks the type of the preferences 'ALL', 'CYC_CONV', 'BI_CONV'
    pref = return_preferences()
    set_exp_type = pref.set_experimental_type

    return bool(set_exp_type in {'ALL'} or types == set_exp_type)


def register():
    bpy.utils.register_module(__name__)

    warning_messages_utils.MAT_SPEC_NAME = __name__

    # Register Scene Properties
    bpy.types.Scene.mat_specials = PointerProperty(
        type=material_specials_scene_props
    )
    bpy.types.Scene.mat_specials_mats = CollectionProperty(
        name="Material name",
        type=material_specials_scene_mats
    )

    kc = bpy.context.window_manager.keyconfigs.addon
    if kc:
        km = kc.keymaps.new(name="3D View", space_type="VIEW_3D")
        kmi = km.keymap_items.new('wm.call_menu', 'Q', 'PRESS', shift=True)
        kmi.properties.name = "VIEW3D_MT_master_material"

    bpy.types.MATERIAL_MT_specials.prepend(menu_move)
    bpy.types.MATERIAL_MT_specials.append(menu_func)


def unregister():
    kc = bpy.context.window_manager.keyconfigs.addon
    if kc:
        km = kc.keymaps["3D View"]
        for kmi in km.keymap_items:
            if kmi.idname == 'wm.call_menu':
                if kmi.properties.name == "VIEW3D_MT_master_material":
                    km.keymap_items.remove(kmi)
                    break

    bpy.types.MATERIAL_MT_specials.remove(menu_move)
    bpy.types.MATERIAL_MT_specials.remove(menu_func)

    del bpy.types.Scene.mat_specials
    del bpy.types.Scene.mat_specials_mats

    bpy.utils.unregister_module(__name__)


if __name__ == "__main__":
    register()