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
|
/* gap_main.c
* 1997.11.05 hof (Wolfgang Hofer)
*
* GAP ... Gimp Animation Package
*
* This Module contains:
* - MAIN of the most GAP_Plugins
* - query registration of GAP Procedures (Video Menu) in the PDB
* - run invoke the selected GAP procedure by its PDB name
*
*
* GAP provides Animation Functions for the gimp,
* working on a series of Images stored on disk in gimps .xcf Format.
*
* Frames are Images with naming convention like this:
* Imagename_<number>.<ext>
* Example: snoopy_000001.xcf, snoopy_000002.xcf, snoopy_000003.xcf
*
* if gzip is installed on your system you may optional
* use gziped xcf frames with extensions ".xcfgz"
*
*/
/* The GIMP -- an image manipulation program
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
*
* 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
/* revision history:
* gimp 2.1.0a; 2004/04/05 hof: - Move Path added option to keep the original paintmode of the src_layer
* gimp 1.3.24a; 2004/01/17 hof: - get main version from config.h, fixed PDB docs for plug_in_gap_modify
* gimp 1.3.23b; 2003/12/06 hof: - updated main version
* gimp 1.3.22a; 2003/10/09 hof: - updated main version
* gimp 1.3.21a; 2003/10/09 hof: - updated main version
* gimp 1.3.20d; 2003/10/09 hof: - bluebox filter for movepath
* gimp 1.3.20d; 2003/10/09 hof: - sourcecode cleanup
* gimp 1.3.20d; 2003/10/06 hof: - updates for move path extended non-interactive PDB API
* gimp 1.3.20c; 2003/09/28 hof: - updates for move path
* gimp 1.3.20b; 2003/09/20 hof: - updated main version
* gimp 1.3.17b; 2003/07/31 hof: - updated main version, message text fixes for translators (# 118392)
* gimp 1.3.17a; 2003/07/29 hof: - updated main version,
* - param types GimpPlugInInfo.run procedure
* gimp 1.3.16c; 2003/07/09 hof: - updated main version,
* gimp 1.3.16b; 2003/07/04 hof: - added frame_density plugin, updated main version,
* gimp 1.3.15a; 2003/06/21 hof: - updated main version,
* gimp 1.3.14a; 2003/05/27 hof: include gap_base_ops.h
* Split Image To frame: added parameter "digits" and "only_visible"
* gimp 1.3.12a; 2003/05/03 hof: merge into CVS-gimp-gap project, updated main version, added gap_renumber
* gimp 1.3.11a; 2003/01/19 hof: - updated main version,
* gimp 1.3.5a; 2002/04/21 hof: - updated main version,
* according to the internal use of gimp_reconnect_displays
* most gap procedures do return the new image_id on frame changes.
* (with the old layer_stealing strategy the image_id did not change)
* gimp 1.3.4a; 2002/02/24 hof: - updated main version
* gimp 1.1.29b; 2000/11/30 hof: - GAP locks do check (only on UNIX) if locking Process is still alive
* - NONINTERACTIVE PDB Interface(s) for MovePath
* plug_in_gap_get_animinfo, plug_in_gap_set_framerate
* - updated main version, e-mail adress
* gimp 1.1.20a; 2000/04/25 hof: NON_INTERACTIVE PDB-Interfaces video_edit_copy/paste/clear
* gimp 1.1.14a; 2000/01/01 hof: bugfix params for gap_dup in noninteractive mode
* gimp 1.1.13a; 1999/11/26 hof: splitted frontends for external programs (mpeg encoders)
* to gap_frontends_main.c
* gimp 1.1.11a; 1999/11/15 hof: changed Menunames (AnimFrames to Video, Submenu Encode)
* gimp 1.1.10a; 1999/10/22 hof: extended dither options for gap_range_convert
* gimp 1.1.8a; 1999/08/31 hof: updated main version
* version 0.99.00; 1999/03/17 hof: updated main version
* version 0.98.02; 1999/01/27 hof: updated main version
* version 0.98.01; 1998/12/21 hof: updated main version, e-mail adress
* version 0.98.00; 1998/11/27 hof: updated main version, started port to GIMP 1.1 interfaces
* Use no '_' (underscore) in menunames. (has special function in 1.1)
* version 0.96.03; 1998/08/31 hof: updated main version,
* gap_range_to_multilayer now returns image_id
* gap_split_image now returns image_id
* version 0.96.02; 1998/08/05 hof: updated main version,
* added gap_shift
* version 0.96.00; 1998/06/27 hof: added gap animation sizechange plugins
* gap_split_image
* gap_mpeg_encode
* version 0.94.01; 1998/04/28 hof: updated main version,
* added flatten_mode to plugin: gap_range_to_multilayer
* version 0.94.00; 1998/04/25 hof: updated main version
* version 0.93.01; 1998/02/03 hof:
* version 0.92.00; hof: set gap_debug from environment
* version 0.91.00; 1997/12/22 hof:
* version 0.90.00; hof: 1.st (pre) release
*/
#include "config.h"
/* SYTEM (UNIX) includes */
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
/* GIMP includes */
#include "gtk/gtk.h"
#include "libgimp/gimp.h"
#include "libgimp/gimpui.h"
/* GAP includes */
#include "gap_lib.h"
#include "gap_base_ops.h"
#include "gap_lock.h"
#include "gap_match.h"
#include "gap_range_ops.h"
#include "gap_split.h"
#include "gap_mov_exec.h"
#include "gap_mod_layer.h"
#include "gap_arr_dialog.h"
#include "gap_pdb_calls.h"
#include "gap_vin.h"
#include "gap_image.h"
#include "gap-intl.h"
/* ------------------------
* global gap DEBUG switch
* ------------------------
*/
/* int gap_debug = 1; */ /* print debug infos */
/* int gap_debug = 0; */ /* 0: dont print debug infos */
int gap_debug = 0;
#define PLUGIN_NAME_GAP_NEXT "plug_in_gap_next"
#define PLUGIN_NAME_GAP_PREV "plug_in_gap_prev"
#define PLUGIN_NAME_GAP_FIRST "plug_in_gap_first"
#define PLUGIN_NAME_GAP_LAST "plug_in_gap_last"
#define PLUGIN_NAME_GAP_GOTO "plug_in_gap_goto"
#define PLUGIN_NAME_GAP_DEL "plug_in_gap_del"
#define PLUGIN_NAME_GAP_DUP "plug_in_gap_dup"
#define PLUGIN_NAME_GAP_DENSITY "plug_in_gap_density"
#define PLUGIN_NAME_GAP_EXCHG "plug_in_gap_exchg"
#define PLUGIN_NAME_GAP_MOVE "plug_in_gap_move"
#define PLUGIN_NAME_GAP_MOVE_PATH_EXT "plug_in_gap_move_path_ext"
#define PLUGIN_NAME_GAP_MOVE_PATH_EXT2 "plug_in_gap_move_path_ext2"
#define PLUGIN_NAME_GAP_RANGE_TO_MULTILAYER "plug_in_gap_range_to_multilayer"
#define PLUGIN_NAME_GAP_RANGE_FLATTEN "plug_in_gap_range_flatten"
#define PLUGIN_NAME_GAP_RANGE_LAYER_DEL "plug_in_gap_range_layer_del"
#define PLUGIN_NAME_GAP_RANGE_CONVERT "plug_in_gap_range_convert"
#define PLUGIN_NAME_GAP_RANGE_CONVERT2 "plug_in_gap_range_convert2"
#define PLUGIN_NAME_GAP_ANIM_RESIZE "plug_in_gap_anim_resize"
#define PLUGIN_NAME_GAP_ANIM_CROP "plug_in_gap_anim_crop"
#define PLUGIN_NAME_GAP_ANIM_SCALE "plug_in_gap_anim_scale"
#define PLUGIN_NAME_GAP_SPLIT "plug_in_gap_split"
#define PLUGIN_NAME_GAP_SHIFT "plug_in_gap_shift"
#define PLUGIN_NAME_GAP_REVERSE "plug_in_gap_reverse"
#define PLUGIN_NAME_GAP_RENUMBER "plug_in_gap_renumber"
#define PLUGIN_NAME_GAP_MODIFY "plug_in_gap_modify"
#define PLUGIN_NAME_GAP_VIDEO_EDIT_COPY "plug_in_gap_video_edit_copy"
#define PLUGIN_NAME_GAP_VIDEO_EDIT_PASTE "plug_in_gap_video_edit_paste"
#define PLUGIN_NAME_GAP_VIDEO_EDIT_CLEAR "plug_in_gap_video_edit_clear"
#define PLUGIN_NAME_GAP_GET_ANIMINFO "plug_in_gap_get_animinfo"
#define PLUGIN_NAME_GAP_SET_FRAMERATE "plug_in_gap_set_framerate"
static void query(void);
static void run(const gchar *name
, gint n_params
, const GimpParam *param
, gint *nreturn_vals
, GimpParam **return_vals);
GimpPlugInInfo PLUG_IN_INFO =
{
NULL, /* init_proc */
NULL, /* quit_proc */
query, /* query_proc */
run, /* run_proc */
};
static GimpParamDef args_std[] =
{
{GIMP_PDB_INT32, "run_mode", "Interactive, non-interactive"},
{GIMP_PDB_IMAGE, "image", "Input image (current one of the video frames)"},
{GIMP_PDB_DRAWABLE, "drawable", "Input drawable (unused)"},
};
static int nargs_std = G_N_ELEMENTS (args_std);
static GimpParamDef return_std[] =
{
{ GIMP_PDB_IMAGE, "curr_frame_image", "the resulting current frame image id" }
};
static int nreturn_std = G_N_ELEMENTS(return_std) ;
static GimpParamDef *return_nothing = NULL;
static int nreturn_nothing = 0;
static GimpParamDef args_goto[] =
{
{GIMP_PDB_INT32, "run_mode", "Interactive, non-interactive"},
{GIMP_PDB_IMAGE, "image", "Input image (current one of the video frames)"},
{GIMP_PDB_DRAWABLE, "drawable", "Input drawable (unused)"},
{GIMP_PDB_INT32, "nr", "frame nr where to go"},
};
static int nargs_goto = G_N_ELEMENTS (args_goto);
static GimpParamDef args_del[] =
{
{GIMP_PDB_INT32, "run_mode", "Interactive, non-interactive"},
{GIMP_PDB_IMAGE, "image", "Input image (current one of the video frames)"},
{GIMP_PDB_DRAWABLE, "drawable", "Input drawable (unused)"},
{GIMP_PDB_INT32, "nr", "number of frames to delete (delete starts at current frame)"},
};
static int nargs_del = G_N_ELEMENTS (args_del);
static GimpParamDef args_dup[] =
{
{GIMP_PDB_INT32, "run_mode", "Interactive, non-interactive"},
{GIMP_PDB_IMAGE, "image", "Input image (current one of the video frames)"},
{GIMP_PDB_DRAWABLE, "drawable", "Input drawable (unused)"},
{GIMP_PDB_INT32, "nr", "how often to copy current frame"},
{GIMP_PDB_INT32, "range_from", "frame nr to start"},
{GIMP_PDB_INT32, "range_to", "frame nr to stop (can be lower than range_from)"},
};
static int nargs_dup = G_N_ELEMENTS (args_dup);
static GimpParamDef args_density[] =
{
{GIMP_PDB_INT32, "run_mode", "Interactive, non-interactive"},
{GIMP_PDB_IMAGE, "image", "Input image (current one of the video frames)"},
{GIMP_PDB_DRAWABLE, "drawable", "Input drawable (unused)"},
{GIMP_PDB_INT32, "range_from", "frame nr to start"},
{GIMP_PDB_INT32, "range_to", "frame nr to stop"},
{GIMP_PDB_FLOAT, "density_factor", "valid value is 1 upto 100 (where 1.0 has no effect)"},
{GIMP_PDB_INT32, "density_grow", "TRUE: number of frames in the sel. range is multiplied by density factor (does duplicate frames), FALSE: nuber is divided by density factor (this does delete frames)"},
};
static int nargs_density = G_N_ELEMENTS (args_density);
static GimpParamDef args_exchg[] =
{
{GIMP_PDB_INT32, "run_mode", "non-interactive"},
{GIMP_PDB_IMAGE, "image", "Input image (current one of the video frames)"},
{GIMP_PDB_DRAWABLE, "drawable", "Input drawable (unused)"},
{GIMP_PDB_INT32, "nr", "nr of frame to exchange with current frame"},
};
static int nargs_exchg = G_N_ELEMENTS (args_exchg);
static GimpParamDef args_mov[] =
{
{GIMP_PDB_INT32, "run_mode", "Interactive"},
{GIMP_PDB_IMAGE, "image", "Input image (one of the video frames)"},
{GIMP_PDB_DRAWABLE, "drawable", "Input drawable (unused)"},
};
static GimpParamDef args_mov_path_ext[] =
{
{GIMP_PDB_INT32, "run_mode", "non-interactive"},
{GIMP_PDB_IMAGE, "dst_image", "Destination image (one of the video frames), where to insert the animated source layers"},
{GIMP_PDB_DRAWABLE, "drawable", "drawable (unused)"},
{GIMP_PDB_INT32, "range_from", "destination frame nr to start"},
{GIMP_PDB_INT32, "range_to", "destination frame nr to stop (can be lower than range_from)"},
{GIMP_PDB_INT32, "nr", "layerstack position where to insert source layer (0 == on top)"},
/* source specs */
{ GIMP_PDB_LAYER, "src_layer_id", "starting LayerID of SourceObject. (use any Multilayeranimated Image, or a video frame of anoter Animation)"},
{ GIMP_PDB_INT32, "src_stepmode", "0-5 derive inserted object as copy of one layer from a multilayer src_image \n"
"100-105 derive inserted object as copy of merged visible layers of a source video frame \n"
"0: Layer Loop 1: Layer Loop reverse 2: Layer Once 3: Layer Once reverse 4: Layer PingPong \n"
"5: None (use onle the selected src_layer)\n"
"100: Frame Loop 101: Frame Loop reverse 102: Frame Once 103: Frame Once reverse 104: Frame PingPong \n"
"105: Frame None (use onle the flat copy of the selected frame)\n"
},
{ GIMP_PDB_INT32, "src_handle", "0: handle left top 1: handle left bottom \n"
"2: handle right top 3: handle right bottom \n"
"4: handle center"},
{ GIMP_PDB_INT32, "src_paintmode", "4444: keep original paintmode of src_layer 0: GIMP_NORMAL_MODE (see GimpLayerModeEffects -- libgimp/gimpenums.h -- for more information)"},
{ GIMP_PDB_INT32, "src_force_visible", "1: Set inserted layres visible, 0: insert layers as is"},
{ GIMP_PDB_INT32, "clip_to_img", "1: Clip inserted layers to Image size of the destination video frame, 0: dont clip"},
/* extras */
{ GIMP_PDB_INT32, "rotation_follow", "0: NO automatic calculation (use the rotation array parameters as it is) \n"
"1: Automatic calculation of rotation, following the path vectors, (Ignore rotation array parameters)\n"},
{ GIMP_PDB_FLOAT, "startangle", "start angle for the first contolpoint (only used if rotation-follow is on)"},
/* new features of the _ext[ended] API */
{GIMP_PDB_FLOAT, "step_speed_factor", "Allows stepping Source and Destination at different speed. (0.1 upto 50 where 1.0 does step snychron, 2.0 Src makes 2 Steps while Destination makes 1 step) "},
{GIMP_PDB_INT32, "tween_steps", "0 upto 50, Number of virtual Frames to calculate between 2 destination Frames. (use value 0 if no tween processing should be done)"},
{GIMP_PDB_FLOAT, "tween_opacity_initial", "opacity 0.0 upto 100.0 for the tween step that is nearest to the (next) real frame"},
{GIMP_PDB_FLOAT, "tween_opacity_desc", "descending opacity 0.0 upto 100.0 for the othertween steps"},
{GIMP_PDB_INT32, "tracelayer_enable", "TRUE: calculate a tracelayer (with all steps of the moving objects since first step)"},
{GIMP_PDB_FLOAT, "trace_opacity_initial", "opacity 0.0 upto 100.0 for the nearest tracestep to the actual destination frame"},
{GIMP_PDB_FLOAT, "trace_opacity_desc", "descending opacity 0.0 upto 100.0 for fading out older positions (that are done before the actual step)"},
{GIMP_PDB_INT32, "apply_bluebox", "TRUE: apply blubox filter (using bluebox param VALUES of last successful bluebox run)"},
{GIMP_PDB_INT32, "src_selmode", "0: ignore selections in all source images\n"
"1: use one selection (from the inital source image) for all handled src layers \n"
"2: use selections in all source images (for stepmodes 0-5 there is only one source image)"},
/* CONTROLPOINT Arrays (the _ext API uses FLOAT arrays for more precision) */
{ GIMP_PDB_INT32, "argc_p_x", "number of controlpoints"},
{ GIMP_PDB_INT32ARRAY, "p_x", "Controlpoint x-koordinate"},
{ GIMP_PDB_INT32, "argc_p_y", "number of controlpoints"},
{ GIMP_PDB_INT32ARRAY, "p_y", "Controlpoint y-koordinate"},
{ GIMP_PDB_INT32, "argc_opacity", "number of controlpoints"},
{ GIMP_PDB_FLOATARRAY, "opacity", "Controlpoint opacity value 0 <= value <= 100"},
{ GIMP_PDB_INT32, "argc_w_resize", "number of controlpoints"},
{ GIMP_PDB_FLOATARRAY, "w_resize", "width scaling in percent"},
{ GIMP_PDB_INT32, "argc_h_resize", "number of controlpoints"},
{ GIMP_PDB_FLOATARRAY, "h_resize", "height scaling in percent"},
{ GIMP_PDB_INT32, "argc_rotation", "number of controlpoints"},
{ GIMP_PDB_FLOATARRAY, "rotation", "rotation in degrees"},
{ GIMP_PDB_INT32, "argc_keyframe_abs", "number of controlpoints"},
{ GIMP_PDB_INT32ARRAY, "keyframe_abs", "n: fix controlpoint to this frame number, 0: for controlpoints that are not fixed to a frame."},
/* new CONTROLPOINT ARRAY items of the _ext[ended] API */
{ GIMP_PDB_INT32, "argc_ttlx", "number of controlpoints"},
{ GIMP_PDB_FLOATARRAY, "ttlx", "perspective transformfactor for top left X Coordinate (0.0 upto 5.0, value 1.0 does no trasformation)"},
{ GIMP_PDB_INT32, "argc_ttly", "number of controlpoints"},
{ GIMP_PDB_FLOATARRAY, "ttly", "perspective transformfactor for top left Y Coordinate (0.0 upto 5.0, value 1.0 does no trasformation)"},
{ GIMP_PDB_INT32, "argc_ttrx", "number of controlpoints"},
{ GIMP_PDB_FLOATARRAY, "ttrx", "perspective transformfactor for top right X Coordinate (0.0 upto 5.0, value 1.0 does no trasformation)"},
{ GIMP_PDB_INT32, "argc_ttry", "number of controlpoints"},
{ GIMP_PDB_FLOATARRAY, "ttry", "perspective transformfactor for top right Y Coordinate (0.0 upto 5.0, value 1.0 does no trasformation)"},
{ GIMP_PDB_INT32, "argc_tblx", "number of controlpoints"},
{ GIMP_PDB_FLOATARRAY, "tblx", "perspective transformfactor for bottom left X Coordinate (0.0 upto 5.0, value 1.0 does no trasformation)"},
{ GIMP_PDB_INT32, "argc_tbly", "number of controlpoints"},
{ GIMP_PDB_FLOATARRAY, "tbly", "perspective transformfactor for bottom left Y Coordinate (0.0 upto 5.0, value 1.0 does no trasformation)"},
{ GIMP_PDB_INT32, "argc_tbrx", "number of controlpoints"},
{ GIMP_PDB_FLOATARRAY, "tbrx", "perspective transformfactor for bottom right X Coordinate (0.0 upto 5.0, value 1.0 does no trasformation)"},
{ GIMP_PDB_INT32, "argc_tbry", "number of controlpoints"},
{ GIMP_PDB_FLOATARRAY, "tbry", "perspective transformfactor for bottom right Y Coordinate (0.0 upto 5.0, value 1.0 does no trasformation)"},
{ GIMP_PDB_INT32, "argc_sel", "number of controlpoints"},
{ GIMP_PDB_FLOATARRAY, "sel_feather_radius", "feather radius for selections"},
};
static int nargs_mov_path_ext = G_N_ELEMENTS (args_mov_path_ext);
static GimpParamDef args_mov_path_ext2[] =
{
{GIMP_PDB_INT32, "run_mode", "non-interactive"},
{GIMP_PDB_IMAGE, "dst_image", "Destination image (one of the video frames), where to insert the animated source layers"},
{GIMP_PDB_DRAWABLE, "drawable", "drawable (unused)"},
{GIMP_PDB_INT32, "range_from", "destination frame nr to start"},
{GIMP_PDB_INT32, "range_to", "destination frame nr to stop (can be lower than range_from)"},
{GIMP_PDB_INT32, "nr", "layerstack position where to insert source layer (0 == on top)"},
/* source specs */
{ GIMP_PDB_LAYER, "src_layer_id", "starting LayerID of SourceObject. (use any Multilayeranimated Image, or an video frame of anoter Animation)"},
{ GIMP_PDB_INT32, "src_stepmode", "0-5 derive inserted object as copy of one layer from a multilayer src_image \n"
"100-105 derive inserted object as copy of merged visible layers of a source video frame \n"
"0: Layer Loop 1: Layer Loop reverse 2: Layer Once 3: Layer Once reverse 4: Layer PingPong \n"
"5: None (use onle the selected src_layer)\n"
"100: Frame Loop 101: Frame Loop reverse 102: Frame Once 103: Frame Once reverse 104: Frame PingPong \n"
"105: Frame None (use onle the flat copy of the selected frame)\n"
},
{ GIMP_PDB_INT32, "src_handle", "0: handle left top 1: handle left bottom \n"
"2: handle right top 3: handle right bottom \n"
"4: handle center"},
{ GIMP_PDB_INT32, "src_paintmode", "4444: keep original paintmode of src_layer 0: GIMP_NORMAL_MODE (see GimpLayerModeEffects -- libgimp/gimpenums.h -- for more information)"},
{ GIMP_PDB_INT32, "src_force_visible", "1: Set inserted layres visible, 0: insert layers as is"},
{ GIMP_PDB_INT32, "clip_to_img", "1: Clip inserted layers to Image size of the destination video frame, 0: dont clip"},
/* extras */
{ GIMP_PDB_INT32, "rotation_follow", "0: NO automatic calculation (use the rotation array parameters as it is) \n"
"1: Automatic calculation of rotation, following the path vectors, (Ignore rotation array parameters)\n"},
{ GIMP_PDB_FLOAT, "startangle", "start angle for the first contolpoint (only used if rotation-follow is on)"},
/* new features of the _ext[ended] API */
{GIMP_PDB_FLOAT, "step_speed_factor", "Allows stepping Source and Destination at different speed. (0.1 upto 50 where 1.0 does step snychron, 2.0 Src makes 2 Steps while Destination makes 1 step) "},
{GIMP_PDB_INT32, "tween_steps", "0 upto 50, Number of virtual Frames to calculate between 2 destination Frames. (use value 0 if no tween processing should be done)"},
{GIMP_PDB_FLOAT, "tween_opacity_initial", "opacity 0.0 upto 100.0 for the tween step that is nearest to the (next) real frame"},
{GIMP_PDB_FLOAT, "tween_opacity_desc", "descending opacity 0.0 upto 100.0 for the othertween steps"},
{GIMP_PDB_INT32, "tracelayer_enable", "TRUE: calculate a tracelayer (with all steps of the moving objects since first step)"},
{GIMP_PDB_FLOAT, "trace_opacity_initial", "opacity 0.0 upto 100.0 for the nearest tracestep to the actual destination frame"},
{GIMP_PDB_FLOAT, "trace_opacity_desc", "descending opacity 0.0 upto 100.0 for fading out older positions (that are done before the actual step)"},
{GIMP_PDB_INT32, "apply_bluebox", "TRUE: apply blubox filter (using bluebox param VALUES of last successful bluebox run)"},
/* CONTROLPOINTs from file */
{ GIMP_PDB_STRING, "pointfile", "a file with contolpoints (readable text file with one line per controlpoint)"},
};
static int nargs_mov_path_ext2 = G_N_ELEMENTS (args_mov_path_ext2);
static GimpParamDef args_f2multi[] =
{
{GIMP_PDB_INT32, "run_mode", "Interactive, non-interactive"},
{GIMP_PDB_IMAGE, "image", "Input image (one of the video frames)"},
{GIMP_PDB_DRAWABLE, "drawable", "Input drawable (unused)"},
{GIMP_PDB_INT32, "range_from", "frame nr to start"},
{GIMP_PDB_INT32, "range_to", "frame nr to stop (can be lower than range_from)"},
{GIMP_PDB_INT32, "flatten_mode", "{ expand-as-necessary(0), CLIP-TO_IMG(1), CLIP-TO-BG-LAYER(2), FLATTEN(3) }"},
{GIMP_PDB_INT32, "bg_visible", "{ BG_NOT_VISIBLE (0), BG_VISIBLE(1) }"},
{GIMP_PDB_INT32, "framerate", "frame delaytime in ms"},
{GIMP_PDB_STRING, "frame_basename", "basename for all generated layers"},
{GIMP_PDB_INT32, "select_mode", "Mode how to identify a layer: 0-3 by layername 0=equal, 1=prefix, 2=suffix, 3=contains, 4=layerstack_numberslist, 5=inv_layerstack, 6=all_visible"},
{GIMP_PDB_INT32, "select_case", "0: ignore case 1: select_string is case sensitive"},
{GIMP_PDB_INT32, "select_invert", "0: select normal 1: invert (select all unselected layers)"},
{GIMP_PDB_STRING, "select_string", "string to match with layername (how to match is defined by select_mode)"},
{GIMP_PDB_INT32, "regionselect_mode", "How to picup layers: 0: use full layersize, ignore selection,\n"
" 1=pick only selected regions (use a fix selection of the invoking frame in all handled frames)\n"
" 2=pick only selected regions (use individual selction as it is in each handled frame)"},
};
static int nargs_f2multi = G_N_ELEMENTS (args_f2multi);
static GimpParamDef return_f2multi[] =
{
{ GIMP_PDB_IMAGE, "new_image", "Output image" }
};
static int nreturn_f2multi = G_N_ELEMENTS (return_f2multi);
static GimpParamDef args_rflatt[] =
{
{GIMP_PDB_INT32, "run_mode", "Interactive, non-interactive"},
{GIMP_PDB_IMAGE, "image", "Input image (one of the video frames)"},
{GIMP_PDB_DRAWABLE, "drawable", "Input drawable (unused)"},
{GIMP_PDB_INT32, "range_from", "frame nr to start"},
{GIMP_PDB_INT32, "range_to", "frame nr to stop (can be lower than range_from)"},
};
static int nargs_rflatt = G_N_ELEMENTS (args_rflatt);
static GimpParamDef args_rlayerdel[] =
{
{GIMP_PDB_INT32, "run_mode", "Interactive, non-interactive"},
{GIMP_PDB_IMAGE, "image", "Input image (one of the video frames)"},
{GIMP_PDB_DRAWABLE, "drawable", "Input drawable (unused)"},
{GIMP_PDB_INT32, "range_from", "frame nr to start"},
{GIMP_PDB_INT32, "range_to", "frame nr to stop (can be lower than range_from)"},
{GIMP_PDB_INT32, "nr", "layerstack position (0 == on top)"},
};
static int nargs_rlayerdel = G_N_ELEMENTS (args_rlayerdel);
static GimpParamDef args_rconv[] =
{
{GIMP_PDB_INT32, "run_mode", "Interactive, non-interactive"},
{GIMP_PDB_IMAGE, "image", "Input image (one of the video frames)"},
{GIMP_PDB_DRAWABLE, "drawable", "Input drawable (unused)"},
{GIMP_PDB_INT32, "range_from", "frame nr to start"},
{GIMP_PDB_INT32, "range_to", "frame nr to stop (can be lower than range_from)"},
{GIMP_PDB_INT32, "flatten", "0 .. dont flatten image before save"},
{GIMP_PDB_INT32, "dest_type", "0=RGB, 1=GRAY, 2=INDEXED"},
{GIMP_PDB_INT32, "dest_colors", "1 upto 256 (used only for dest_type INDEXED)"},
{GIMP_PDB_INT32, "dest_dither", "0=no, 1=floyd-steinberg 2=fs/low-bleed, 3=fixed (used only for dest_type INDEXED)"},
{GIMP_PDB_STRING, "extension", "extension for the destination filetype (jpg, tif ...or any other gimp supported type)"},
{GIMP_PDB_STRING, "basename", "(optional parameter) here you may specify the basename of the destination frames \"/my_dir/myframe\" _0001.ext is added)"},
};
static int nargs_rconv = G_N_ELEMENTS (args_rconv);
static GimpParamDef args_rconv2[] =
{
{GIMP_PDB_INT32, "run_mode", "Interactive, non-interactive"},
{GIMP_PDB_IMAGE, "image", "Input image (one of the video frames)"},
{GIMP_PDB_DRAWABLE, "drawable", "Input drawable (unused)"},
{GIMP_PDB_INT32, "range_from", "frame nr to start"},
{GIMP_PDB_INT32, "range_to", "frame nr to stop (can be lower than range_from)"},
{GIMP_PDB_INT32, "flatten", "0 .. dont flatten image before save"},
{GIMP_PDB_INT32, "dest_type", "0=RGB, 1=GRAY, 2=INDEXED"},
{GIMP_PDB_INT32, "dest_colors", "1 upto 256 (used only for dest_type INDEXED)"},
{GIMP_PDB_INT32, "dest_dither", "0=no, 1=floyd-steinberg 2=fs/low-bleed, 3=fixed(used only for dest_type INDEXED)"},
{GIMP_PDB_STRING, "extension", "extension for the destination filetype (jpg, tif ...or any other gimp supported type)"},
{GIMP_PDB_STRING, "basename", "(optional parameter) here you may specify the basename of the destination frames \"/my_dir/myframe\" _0001.ext is added)"},
{GIMP_PDB_INT32, "palette_type", "0 == MAKE_PALETTE, 2 == WEB_PALETTE, 3 == MONO_PALETTE (bw) 4 == CUSTOM_PALETTE (used only for dest_type INDEXED)"},
{GIMP_PDB_INT32, "alpha_dither", "dither transparency to fake partial opacity (used only for dest_type INDEXED)"},
{GIMP_PDB_INT32, "remove_unused", "remove unused or double colors from final palette (used only for dest_type INDEXED)"},
{GIMP_PDB_STRING, "palette", "name of the custom palette to use (used only for dest_type INDEXED and palette_type == CUSTOM_PALETTE) "},
};
static int nargs_rconv2 = G_N_ELEMENTS (args_rconv2);
static GimpParamDef return_rconv[] =
{
{ GIMP_PDB_IMAGE, "frame_image", "the image_id of the converted frame with lowest frame numer (of the converted range)" }
};
static int nreturn_rconv = G_N_ELEMENTS(return_rconv) ;
/* resize and crop share the same parameters */
static GimpParamDef args_resize[] =
{
{GIMP_PDB_INT32, "run_mode", "Interactive, non-interactive"},
{GIMP_PDB_IMAGE, "image", "Input image (one of the video frames)"},
{GIMP_PDB_DRAWABLE, "drawable", "Input drawable (unused)"},
{GIMP_PDB_INT32, "new_width", "width of the resulting video frame images in pixels"},
{GIMP_PDB_INT32, "new_height", "height of the resulting video frame images in pixels"},
{GIMP_PDB_INT32, "offset_x", "X offset in pixels"},
{GIMP_PDB_INT32, "offset_y", "Y offset in pixels"},
};
static int nargs_resize = G_N_ELEMENTS (args_resize);
static GimpParamDef args_scale[] =
{
{GIMP_PDB_INT32, "run_mode", "Interactive, non-interactive"},
{GIMP_PDB_IMAGE, "image", "Input image (one of the video frames)"},
{GIMP_PDB_DRAWABLE, "drawable", "Input drawable (unused)"},
{GIMP_PDB_INT32, "new_width", "width of the resulting video frame images in pixels"},
{GIMP_PDB_INT32, "new_height", "height of the resulting video frame images in pixels"},
};
static int nargs_scale = G_N_ELEMENTS (args_scale);
static GimpParamDef args_split[] =
{
{GIMP_PDB_INT32, "run_mode", "Interactive, non-interactive"},
{GIMP_PDB_IMAGE, "image", "Input image (NO video frame allowed)"},
{GIMP_PDB_DRAWABLE, "drawable", "Input drawable (unused)"},
{GIMP_PDB_INT32, "inverse_order", "True/False"},
{GIMP_PDB_INT32, "no_alpha", "True: remove alpha channel(s) in the destination frames"},
{GIMP_PDB_STRING, "extension", "extension for the destination filetype (jpg, tif ...or any other gimp supported type)"},
{GIMP_PDB_INT32, "only visible", "TRUE: Handle only visible layers, FALSE: Handle all layers and force visibility"},
{GIMP_PDB_INT32, "digits", "Number of digits for the number part in the frames filenames"},
{GIMP_PDB_INT32, "copy_properties", "True: copy image properties (channels, paths, guides ...)"
" to all created frame images (algorithm based on gimp_image_duplicate)"
"False: copy only layers (faster)"},
};
static int nargs_split = G_N_ELEMENTS (args_split);
static GimpParamDef return_split[] =
{
{ GIMP_PDB_IMAGE, "new_image", "Output image (first or last resulting frame)" }
};
static int nreturn_split = G_N_ELEMENTS (return_split);
static GimpParamDef args_shift[] =
{
{GIMP_PDB_INT32, "run_mode", "Interactive, non-interactive"},
{GIMP_PDB_IMAGE, "image", "Input image (current one of the video frames)"},
{GIMP_PDB_DRAWABLE, "drawable", "Input drawable (unused)"},
{GIMP_PDB_INT32, "nr", "how many framenumbers to shift the Frame Sequence"},
{GIMP_PDB_INT32, "range_from", "frame nr to start"},
{GIMP_PDB_INT32, "range_to", "frame nr to stop"},
};
static int nargs_shift = G_N_ELEMENTS (args_shift);
static GimpParamDef args_reverse[] =
{
{GIMP_PDB_INT32, "run_mode", "Interactive, non-interactive"},
{GIMP_PDB_IMAGE, "image", "Input image (current one of the video frames)"},
{GIMP_PDB_DRAWABLE, "drawable", "Input drawable (unused)"},
{GIMP_PDB_INT32, "range_from", "frame nr to start"},
{GIMP_PDB_INT32, "range_to", "frame nr to stop"},
};
static int nargs_reverse = G_N_ELEMENTS (args_reverse);
static GimpParamDef args_renumber[] =
{
{GIMP_PDB_INT32, "run_mode", "Interactive, non-interactive"},
{GIMP_PDB_IMAGE, "image", "Input image (current one of the video frames)"},
{GIMP_PDB_DRAWABLE, "drawable", "Input drawable (unused)"},
{GIMP_PDB_INT32, "nr", "start frame number for the first frame (usual value is 1)"},
{GIMP_PDB_INT32, "digits", "how many digits to use for the framenumber part (1 upto 8)"},
};
static int nargs_renumber = G_N_ELEMENTS (args_renumber);
static GimpParamDef args_modify[] =
{
{GIMP_PDB_INT32, "run_mode", "Interactive, non-interactive"},
{GIMP_PDB_IMAGE, "image", "Input image (current one of the video frames)"},
{GIMP_PDB_DRAWABLE, "drawable", "Input drawable (unused)"},
{GIMP_PDB_INT32, "range_from", "frame nr to start"},
{GIMP_PDB_INT32, "range_to", "frame nr to stop"},
{GIMP_PDB_INT32, "action_mode", "0:set_visible"
", 1:set_invisible"
", 2:set_linked"
", 3:set_unlinked"
", 4:raise"
", 5:lower"
", 6:merge_expand"
", 7:merge_img"
", 8:merge_bg"
", 9:apply_filter"
", 10:duplicate"
", 11:delete"
", 12:rename"
", 13:replace selection"
", 14:add selection"
", 15:sbtract selection"
", 16:intersect selection"
", 17:selection none"
", 18:selection all"
", 19:selection invert"
", 20:save selection to channel"
", 21:load selection from channel"
", 22:delete channel (by name)"
", 23:add alpha channel"
", 24:add white layermask (opaque)"
", 25:add black layermask (transparent)"
", 26:add alpha layermask"
", 27:add alpha transfer layermask"
", 28:add selection as layermask"
", 29:add bw copy as layermask"
", 30:delete layermask"
", 31:apply layermask"
", 32:copy layermask from layer above"
", 33:copy layermask from layer below"
", 34:invert layermask"
", 35:set layer mode to normal"
", 36:set layer mode to dissolve"
", 37:set layer mode to multiply"
", 38:set layer mode to divide"
", 39:set layer mode to screen"
", 40:set layer mode to overlay"
", 41:set layer mode to difference"
", 42:set layer mode to addition"
", 43:set layer mode to subtract"
", 44:set layer mode to darken_only"
", 45:set layer mode to lighten_only"
", 46:set layer mode to dodge"
", 47:set layer mode to burn"
", 48:set layer mode to hardlight"
", 49:set layer mode to softlight"
", 50:set layer mode to color_erase"
", 51:set layer mode to grain_extract_mode"
", 52:set layer mode to grain_merge_mode"
", 53:set layer mode to hue_mode"
", 54:set layer mode to saturation_mode"
", 55:set layer mode to color_mode"
", 56:set layer mode to value_mode"
", 57:apply filter on layermask"
", 58:set selection from alphachannel"
},
{GIMP_PDB_INT32, "select_mode", "Mode how to identify a layer: 0-3 by layername 0=equal, 1=prefix, 2=suffix, 3=contains, 4=layerstack_numberslist, 5=inv_layerstack, 6=all_visible"},
{GIMP_PDB_INT32, "select_case", "0: ignore case 1: select_string is case sensitive"},
{GIMP_PDB_INT32, "select_invert", "0: select normal 1: invert (select all unselected layers)"},
{GIMP_PDB_STRING, "select_string", "string to match with layername (how to match is defined by select_mode)"},
{GIMP_PDB_STRING, "new_layername", "is only used at action rename. [####] is replaced by the framnumber"},
};
static int nargs_modify = G_N_ELEMENTS (args_modify);
static GimpParamDef args_video_copy[] =
{
{GIMP_PDB_INT32, "run_mode", "always non-interactive"},
{GIMP_PDB_IMAGE, "image", "Input image (current one of the video frames)"},
{GIMP_PDB_DRAWABLE, "drawable", "Input drawable (unused)"},
{GIMP_PDB_INT32, "range_from", "frame nr to start"},
{GIMP_PDB_INT32, "range_to", "frame nr to stop"},
};
static int nargs_video_copy = G_N_ELEMENTS (args_video_copy);
static GimpParamDef args_video_paste[] =
{
{GIMP_PDB_INT32, "run_mode", "always non-interactive"},
{GIMP_PDB_IMAGE, "image", "Input image (current one of the video frames)"},
{GIMP_PDB_DRAWABLE, "drawable", "Input drawable (unused)"},
{GIMP_PDB_INT32, "paste_mode", "0 .. paste at current frame (replacing current and following frames)"
"1 .. paste insert before current frame "
"2 .. paste insert after current frame"},
};
static int nargs_video_paste = G_N_ELEMENTS (args_video_paste);
static GimpParamDef args_video_clear[] =
{
{GIMP_PDB_INT32, "run_mode", "always non-interactive"},
{GIMP_PDB_IMAGE, "image", "Input image (is ignored)"},
{GIMP_PDB_DRAWABLE, "drawable", "Input drawable (unused)"},
};
static GimpParamDef return_ainfo[] =
{
{ GIMP_PDB_INT32, "first_frame_nr", "lowest frame number of all video frame discfiles" },
{ GIMP_PDB_INT32, "last_frame_nr", "highest frame number of all video frame discfiles" },
{ GIMP_PDB_INT32, "curr_frame_nr", "current frame number (extracted from the imagename)" },
{ GIMP_PDB_INT32, "frame_cnt", "total number of all video frame discfiles that belong to the passed image" },
{ GIMP_PDB_STRING, "basename", "basename of the video frame (without frame number and extension)\n"
" may also include path (depending how the current frame image was opened)" },
{ GIMP_PDB_STRING, "extension", "extension of the video frames (.xcf)" },
{ GIMP_PDB_FLOAT, "framerate", "framerate in frames per second" }
};
static int nreturn_ainfo = G_N_ELEMENTS (return_ainfo);
static GimpParamDef args_setrate[] =
{
{GIMP_PDB_INT32, "run_mode", "non-interactive"},
{GIMP_PDB_IMAGE, "image", "Input image (current one of the video frames)"},
{GIMP_PDB_DRAWABLE, "drawable", "Input drawable (unused)"},
{GIMP_PDB_FLOAT, "framerate", "framerate in frames per second" }
};
static int nargs_setrate = G_N_ELEMENTS (args_setrate);
MAIN ()
static void
query ()
{
gchar *l_help_str;
gimp_plugin_domain_register (GETTEXT_PACKAGE, LOCALEDIR);
gimp_install_procedure(PLUGIN_NAME_GAP_NEXT,
"This plugin exchanges current image with (next numbered) image from disk.",
"",
"Wolfgang Hofer (hof@gimp.org)",
"Wolfgang Hofer",
GAP_VERSION_WITH_DATE,
N_("Next Frame"),
"RGB*, INDEXED*, GRAY*",
GIMP_PLUGIN,
nargs_std, nreturn_std,
args_std, return_std);
gimp_install_procedure(PLUGIN_NAME_GAP_PREV,
"This plugin exchanges current image with (previous numbered) image from disk.",
"",
"Wolfgang Hofer (hof@gimp.org)",
"Wolfgang Hofer",
GAP_VERSION_WITH_DATE,
N_("Previous Frame"),
"RGB*, INDEXED*, GRAY*",
GIMP_PLUGIN,
nargs_std, nreturn_std,
args_std, return_std);
gimp_install_procedure(PLUGIN_NAME_GAP_FIRST,
"This plugin exchanges current image with (lowest numbered) image from disk.",
"",
"Wolfgang Hofer (hof@gimp.org)",
"Wolfgang Hofer",
GAP_VERSION_WITH_DATE,
N_("First Frame"),
"RGB*, INDEXED*, GRAY*",
GIMP_PLUGIN,
nargs_std, nreturn_std,
args_std, return_std);
gimp_install_procedure(PLUGIN_NAME_GAP_LAST,
"This plugin exchanges current image with (highest numbered) image from disk.",
"",
"Wolfgang Hofer (hof@gimp.org)",
"Wolfgang Hofer",
GAP_VERSION_WITH_DATE,
N_("Last Frame"),
"RGB*, INDEXED*, GRAY*",
GIMP_PLUGIN,
nargs_std, nreturn_std,
args_std, return_std);
gimp_install_procedure(PLUGIN_NAME_GAP_GOTO,
"This plugin exchanges current image with requested image (nr) from disk.",
"",
"Wolfgang Hofer (hof@gimp.org)",
"Wolfgang Hofer",
GAP_VERSION_WITH_DATE,
N_("Any Frame..."),
"RGB*, INDEXED*, GRAY*",
GIMP_PLUGIN,
nargs_goto, nreturn_std,
args_goto, return_std);
gimp_install_procedure(PLUGIN_NAME_GAP_DEL,
"This plugin deletes the given number of frames from disk including the current frame.",
"",
"Wolfgang Hofer (hof@gimp.org)",
"Wolfgang Hofer",
GAP_VERSION_WITH_DATE,
N_("Delete Frames..."),
"RGB*, INDEXED*, GRAY*",
GIMP_PLUGIN,
nargs_del, nreturn_std,
args_del, return_std);
gimp_install_procedure(PLUGIN_NAME_GAP_DUP,
"This plugin duplicates the current frames on disk n-times.",
"",
"Wolfgang Hofer (hof@gimp.org)",
"Wolfgang Hofer",
GAP_VERSION_WITH_DATE,
N_("Duplicate Frames..."),
"RGB*, INDEXED*, GRAY*",
GIMP_PLUGIN,
nargs_dup, nreturn_std,
args_dup, return_std);
gimp_install_procedure(PLUGIN_NAME_GAP_DENSITY,
"This plugin changes the number of frames (density) on disk to match a"
" new target framerate that is densty_factor times higher"
" than the origianl framerate."
" (or 1/density_factor lower if density_grow is FALSE)"
" changing of density results in duplicating (or deleting)"
" of frames on disk",
"",
"Wolfgang Hofer (hof@gimp.org)",
"Wolfgang Hofer",
GAP_VERSION_WITH_DATE,
N_("Frames Density..."),
"RGB*, INDEXED*, GRAY*",
GIMP_PLUGIN,
nargs_dup, nreturn_std,
args_dup, return_std);
gimp_install_procedure(PLUGIN_NAME_GAP_EXCHG,
"This plugin exchanges content of the current with destination frame.",
"",
"Wolfgang Hofer (hof@gimp.org)",
"Wolfgang Hofer",
GAP_VERSION_WITH_DATE,
N_("Exchange Frame..."),
"RGB*, INDEXED*, GRAY*",
GIMP_PLUGIN,
nargs_exchg, nreturn_std,
args_exchg, return_std);
gimp_install_procedure(PLUGIN_NAME_GAP_MOVE,
"This plugin copies layer(s) from one sourceimage to multiple frames on disk, varying position, size and opacity.",
"For NONINTERACTIVE PDB interfaces see also (plug_in_gap_move_path_ext, plug_in_gap_move_path_ext2)",
"Wolfgang Hofer (hof@gimp.org)",
"Wolfgang Hofer",
GAP_VERSION_WITH_DATE,
N_("Move Path..."),
"RGB*, INDEXED*, GRAY*",
GIMP_PLUGIN,
G_N_ELEMENTS (args_mov), nreturn_std,
args_mov, return_std);
l_help_str = g_strdup_printf(
"This plugin inserts one layer in each frame of the selected frame range of an Animation\n"
" (specified by the dst_image parameter).\n"
" An Animation is a series of numbered video frame images on disk where only the current\n"
" Frame is opened in the gimp\n"
" The inserted layer is derived from another (multilayer)image\n"
" or from another Animation (as merged copy of the visible layers in a source frame)\n"
" the affected destination frame range is selected by the range_from and range_to parameters\n"
" the src_stepmode parameter controls how to derive the layer that is to be inserted.\n"
" With the Controlpoint Parameters you can control position (coordinates),\n"
" size, rotation, perspective and opacity values of the inserted layer\n"
" If you want to move an Object from position AX/AY to BX/BY in a straight line within the range of 24 frames\n"
" you need 2 Contolpoints, if you want the object to move folowing a path\n"
" you need some more Controlpoints to do that.\n"
" With the rotation_follow Parameter you can force automatic calculation of the rotation for the inserted\n"
" layer according to the path vectors it is moving along.\n"
" A controlpoint can be fixed to a special framenumber using the keyframe_abs controlpoint-parameter.\n"
" Restictions:\n"
" - keyframe_abs numbers must be 0 (== not fixed) or a frame_number within the affected frame range\n"
" - keyframes_abs must be in sequence (ascending or descending)\n"
" - the first and last controlpoint are always implicite keyframes, and should be passed with keyframe_abs = 0\n"
" - the number of controlpoints is limitied to a maximum of %d.\n"
" the number of controlpoints must be passed in all argc_* parameters\n"
"If the TraceLayer feature is turned on, an additional layer\n"
" is inserted below the moving object. This Tracelayer shows all steps\n"
" of the moving object since the 1st Frame.\n"
"With TweenSteps you can calculate virtual Frames between 2 destination frames\n"
" all these Steps are collected in another additional Layer.\n"
" this Tweenlayer is added below the moving Obect in all handled destination Frames\n"
"See also (plug_in_gap_move_path, plug_in_gap_move)",
(int)GAP_MOV_MAX_POINT);
gimp_install_procedure(PLUGIN_NAME_GAP_MOVE_PATH_EXT,
"This plugin copies layer(s) from one sourceimage or source animation to multiple frames on disk,\n"
"with varying position, size, perspective and opacity.\n"
,
l_help_str,
"Wolfgang Hofer (hof@gimp.org)",
"Wolfgang Hofer",
GAP_VERSION_WITH_DATE,
NULL, /* do not appear in menus */
"RGB*, INDEXED*, GRAY*",
GIMP_PLUGIN,
nargs_mov_path_ext, nreturn_std,
args_mov_path_ext, return_std);
g_free(l_help_str);
gimp_install_procedure(PLUGIN_NAME_GAP_MOVE_PATH_EXT2,
"This plugin copies layer(s) from one sourceimage or source animation to multiple frames on disk,\n"
"with varying position, size, perspective and opacity.\n"
,
"This plugin is just another Interface for the MovePath (plug_in_gap_move_path_ext)\n"
" using a File to specify Controlpoints (rather than Array parameters).\n"
" Notes:\n"
" - you can create a controlpoint file with in the MovePath Dialog (interactive call of plug_in_gap_move)\n"
" - for more infos about controlpoints see help of (plug_in_gap_move_path)\n"
,
"Wolfgang Hofer (hof@gimp.org)",
"Wolfgang Hofer",
GAP_VERSION_WITH_DATE,
NULL, /* do not appear in menus */
"RGB*, INDEXED*, GRAY*",
GIMP_PLUGIN,
nargs_mov_path_ext2, nreturn_std,
args_mov_path_ext2, return_std);
gimp_install_procedure(PLUGIN_NAME_GAP_RANGE_TO_MULTILAYER,
"This plugin creates a new image from the given range of frame-images. Each frame is converted to one layer in the new image, according to flatten_mode. (the frames on disk are not changed).",
"",
"Wolfgang Hofer (hof@gimp.org)",
"Wolfgang Hofer",
GAP_VERSION_WITH_DATE,
N_("Frames to Image..."),
"RGB*, INDEXED*, GRAY*",
GIMP_PLUGIN,
nargs_f2multi, nreturn_f2multi,
args_f2multi, return_f2multi);
gimp_install_procedure(PLUGIN_NAME_GAP_RANGE_FLATTEN,
"This plugin flattens the given range of frame-images (on disk)",
"",
"Wolfgang Hofer (hof@gimp.org)",
"Wolfgang Hofer",
GAP_VERSION_WITH_DATE,
N_("Frames Flatten..."),
"RGB*, INDEXED*, GRAY*",
GIMP_PLUGIN,
nargs_rflatt, nreturn_std,
args_rflatt, return_std);
gimp_install_procedure(PLUGIN_NAME_GAP_RANGE_LAYER_DEL,
"This plugin deletes one layer in the given range of frame-images (on disk). exception: the last remaining layer of a frame is not deleted",
"",
"Wolfgang Hofer (hof@gimp.org)",
"Wolfgang Hofer",
GAP_VERSION_WITH_DATE,
N_("Frames Layer Delete..."),
"RGB*, INDEXED*, GRAY*",
GIMP_PLUGIN,
nargs_rlayerdel, nreturn_std,
args_rlayerdel, return_std);
gimp_install_procedure(PLUGIN_NAME_GAP_RANGE_CONVERT,
"This plugin converts the given range of frame-images to other fileformats (on disk) depending on extension",
"WARNING this procedure is obsolete, please use plug_in_gap_range_convert2",
"Wolfgang Hofer (hof@gimp.org)",
"Wolfgang Hofer",
GAP_VERSION_WITH_DATE,
NULL, /* do not appear in menus */
"RGB*, INDEXED*, GRAY*",
GIMP_PLUGIN,
nargs_rconv, nreturn_rconv,
args_rconv, return_rconv);
gimp_install_procedure(PLUGIN_NAME_GAP_RANGE_CONVERT2,
"This plugin converts the given range of frame-images to other fileformats (on disk) depending on extension",
"only one of the converted frames is returned (the one with lowest handled frame number)",
"Wolfgang Hofer (hof@gimp.org)",
"Wolfgang Hofer",
GAP_VERSION_WITH_DATE,
N_("Frames Convert..."),
"RGB*, INDEXED*, GRAY*",
GIMP_PLUGIN,
nargs_rconv2, nreturn_rconv,
args_rconv2, return_rconv);
gimp_install_procedure(PLUGIN_NAME_GAP_ANIM_RESIZE,
"This plugin resizes all video frames (images on disk) to the given new_width/new_height",
"",
"Wolfgang Hofer (hof@gimp.org)",
"Wolfgang Hofer",
GAP_VERSION_WITH_DATE,
N_("Frames Resize..."),
"RGB*, INDEXED*, GRAY*",
GIMP_PLUGIN,
nargs_resize, nreturn_std,
args_resize, return_std);
gimp_install_procedure(PLUGIN_NAME_GAP_ANIM_CROP,
"This plugin crops all video frames (images on disk) to the given new_width/new_height",
"",
"Wolfgang Hofer (hof@gimp.org)",
"Wolfgang Hofer",
GAP_VERSION_WITH_DATE,
N_("Frames Crop..."),
"RGB*, INDEXED*, GRAY*",
GIMP_PLUGIN,
nargs_resize, nreturn_std,
args_resize, return_std);
gimp_install_procedure(PLUGIN_NAME_GAP_ANIM_SCALE,
"This plugin scales all video frames (images on disk) to the given new_width/new_height",
"",
"Wolfgang Hofer (hof@gimp.org)",
"Wolfgang Hofer",
GAP_VERSION_WITH_DATE,
N_("Frames Scale..."),
"RGB*, INDEXED*, GRAY*",
GIMP_PLUGIN,
nargs_scale, nreturn_std,
args_scale, return_std);
gimp_install_procedure(PLUGIN_NAME_GAP_SPLIT,
"This plugin splits the current image to video frames (images on disk). Each layer is saved as one frame",
"",
"Wolfgang Hofer (hof@gimp.org)",
"Wolfgang Hofer",
GAP_VERSION_WITH_DATE,
N_("Split Image to Frames..."),
"RGB*, INDEXED*, GRAY*",
GIMP_PLUGIN,
nargs_split, nreturn_split,
args_split, return_split);
gimp_install_procedure(PLUGIN_NAME_GAP_SHIFT,
"This plugin exchanges frame numbers in the given range. (discfile frame_0001.xcf is renamed to frame_0002.xcf, 2->3, 3->4 ... n->1)",
"",
"Wolfgang Hofer (hof@gimp.org)",
"Wolfgang Hofer",
GAP_VERSION_WITH_DATE,
N_("Frame Sequence Shift..."),
"RGB*, INDEXED*, GRAY*",
GIMP_PLUGIN,
nargs_shift, nreturn_std,
args_shift, return_std);
gimp_install_procedure(PLUGIN_NAME_GAP_REVERSE,
"This plugin reverse the order of frame numbers in the given range. ( 3-4-5-6-7 ==> 7-6-5-4-3)",
"",
"Saul Goode (saulgoode@brickfilms.com)",
"Saul Goode",
GAP_VERSION_WITH_DATE,
N_("Frame Sequence Reverse..."),
"RGB*, INDEXED*, GRAY*",
GIMP_PLUGIN,
nargs_reverse, nreturn_std,
args_reverse, return_std);
gimp_install_procedure(PLUGIN_NAME_GAP_RENUMBER,
"This plugin renumbers all frames (discfiles) starting at start_frame_nr using n digits for the framenumber part)",
"",
"Wolfgang Hofer (hof@gimp.org)",
"Wolfgang Hofer",
GAP_VERSION_WITH_DATE,
N_("Frames Renumber..."),
"RGB*, INDEXED*, GRAY*",
GIMP_PLUGIN,
nargs_renumber, nreturn_std,
args_renumber, return_std);
gimp_install_procedure(PLUGIN_NAME_GAP_MODIFY,
"This plugin performs a modifying action on each selected layer in each selected framerange",
"",
"Wolfgang Hofer (hof@gimp.org)",
"Wolfgang Hofer",
GAP_VERSION_WITH_DATE,
N_("Frames Modify..."),
"RGB*, INDEXED*, GRAY*",
GIMP_PLUGIN,
nargs_modify, nreturn_std,
args_modify, return_std);
gimp_install_procedure(PLUGIN_NAME_GAP_VIDEO_EDIT_COPY,
"This plugin appends the selected framerange to the video paste buffer"
"the video paste buffer is a directory configured by gimprc (video-paste-dir )"
"and a framefile basename configured by gimprc (video-paste-basename)",
"",
"Wolfgang Hofer (hof@gimp.org)",
"Wolfgang Hofer",
GAP_VERSION_WITH_DATE,
NULL, /* do not appear in menus */
"RGB*, INDEXED*, GRAY*",
GIMP_PLUGIN,
nargs_video_copy, nreturn_nothing,
args_video_copy, return_nothing);
gimp_install_procedure(PLUGIN_NAME_GAP_VIDEO_EDIT_PASTE,
"This plugin copies all frames from the video paste buffer"
"to the current video. Depending on the paste_mode parameter"
"the copied frames are replacing frames beginning at current frame"
"or are inserted before or after the current frame"
"the pasted frames are scaled to fit the current video size"
"and converted in Imagetype (RGB,GRAY,INDEXED) if necessary"
"the video paste buffer is a directory configured by gimprc (video-paste-dir )"
"and a framefile basename configured by gimprc (video-paste-basename)",
"",
"Wolfgang Hofer (hof@gimp.org)",
"Wolfgang Hofer",
GAP_VERSION_WITH_DATE,
NULL, /* do not appear in menus */
"RGB*, INDEXED*, GRAY*",
GIMP_PLUGIN,
nargs_video_paste, nreturn_std,
args_video_paste, return_std);
gimp_install_procedure(PLUGIN_NAME_GAP_VIDEO_EDIT_CLEAR,
"clear the video paste buffer by deleting all framefiles"
"the video paste buffer is a directory configured by gimprc (video-paste-dir )"
"and a framefile basename configured by gimprc (video-paste-basename)",
"",
"Wolfgang Hofer (hof@gimp.org)",
"Wolfgang Hofer",
GAP_VERSION_WITH_DATE,
NULL, /* do not appear in menus */
"RGB*, INDEXED*, GRAY*",
GIMP_PLUGIN,
G_N_ELEMENTS (args_video_clear),
nreturn_nothing,
args_video_clear, return_nothing);
gimp_install_procedure(PLUGIN_NAME_GAP_GET_ANIMINFO,
"This plugin gets animation infos about video frames."
,
"Informations about the video frames belonging to the\n"
" passed image_id are returned. (therefore the directory\n"
" is scanned and checked for video frame discfiles.\n"
" If you call this plugin on images without a Name\n"
" You will get just default values."
,
"Wolfgang Hofer (hof@gimp.org)",
"Wolfgang Hofer",
GAP_VERSION_WITH_DATE,
NULL, /* no menu */
"RGB*, INDEXED*, GRAY*",
GIMP_PLUGIN,
nargs_std, nreturn_ainfo,
args_std, return_ainfo);
gimp_install_procedure(PLUGIN_NAME_GAP_SET_FRAMERATE,
"This plugin sets the framerate for video frames",
"The framerate is stored in a video info file"
" named like the basename of the video frames"
" without a framenumber. The extension"
" of this video info file is .vin",
"Wolfgang Hofer (hof@gimp.org)",
"Wolfgang Hofer",
GAP_VERSION_WITH_DATE,
NULL, /* no menu */
"RGB*, INDEXED*, GRAY*",
GIMP_PLUGIN,
nargs_setrate, nreturn_nothing,
args_setrate, return_nothing);
{
/* Menu names */
const char *menupath_image_video = N_("<Image>/Video/");
const char *menupath_image_video_goto = N_("<Image>/Video/Go To/");
//gimp_plugin_menu_branch_register("<Image>", "Video");
//gimp_plugin_menu_branch_register("<Image>/Video", "Go To");
gimp_plugin_menu_register (PLUGIN_NAME_GAP_NEXT, menupath_image_video_goto);
gimp_plugin_menu_register (PLUGIN_NAME_GAP_PREV, menupath_image_video_goto);
gimp_plugin_menu_register (PLUGIN_NAME_GAP_FIRST, menupath_image_video_goto);
gimp_plugin_menu_register (PLUGIN_NAME_GAP_LAST, menupath_image_video_goto);
gimp_plugin_menu_register (PLUGIN_NAME_GAP_GOTO, menupath_image_video_goto);
gimp_plugin_menu_register (PLUGIN_NAME_GAP_DEL, menupath_image_video);
gimp_plugin_menu_register (PLUGIN_NAME_GAP_DUP, menupath_image_video);
gimp_plugin_menu_register (PLUGIN_NAME_GAP_DENSITY, menupath_image_video);
gimp_plugin_menu_register (PLUGIN_NAME_GAP_EXCHG, menupath_image_video);
gimp_plugin_menu_register (PLUGIN_NAME_GAP_MOVE, menupath_image_video);
gimp_plugin_menu_register (PLUGIN_NAME_GAP_RANGE_TO_MULTILAYER, menupath_image_video);
gimp_plugin_menu_register (PLUGIN_NAME_GAP_RANGE_FLATTEN, menupath_image_video);
gimp_plugin_menu_register (PLUGIN_NAME_GAP_RANGE_LAYER_DEL, menupath_image_video);
gimp_plugin_menu_register (PLUGIN_NAME_GAP_RANGE_CONVERT2, menupath_image_video);
gimp_plugin_menu_register (PLUGIN_NAME_GAP_ANIM_RESIZE, menupath_image_video);
gimp_plugin_menu_register (PLUGIN_NAME_GAP_ANIM_CROP, menupath_image_video);
gimp_plugin_menu_register (PLUGIN_NAME_GAP_ANIM_SCALE, menupath_image_video);
gimp_plugin_menu_register (PLUGIN_NAME_GAP_SPLIT, menupath_image_video);
gimp_plugin_menu_register (PLUGIN_NAME_GAP_SHIFT, menupath_image_video);
gimp_plugin_menu_register (PLUGIN_NAME_GAP_REVERSE, menupath_image_video);
gimp_plugin_menu_register (PLUGIN_NAME_GAP_RENUMBER, menupath_image_video);
gimp_plugin_menu_register (PLUGIN_NAME_GAP_MODIFY, menupath_image_video);
}
} /* end query */
static void
run (const gchar *name
, gint n_params
, const GimpParam *param
, gint *nreturn_vals
, GimpParam **return_vals)
{
const char *l_env;
char l_extension[32];
char l_sel_str[MAX_LAYERNAME];
char l_layername[MAX_LAYERNAME];
char *l_basename_ptr;
char *l_palette_ptr;
static GimpParam values[20];
GimpRunMode run_mode;
GimpRunMode lock_run_mode;
GimpPDBStatusType status;
gint32 image_id;
gint32 lock_image_id;
gint32 nr;
long range_from, range_to;
GimpImageBaseType dest_type;
gint32 dest_colors;
gint32 dest_dither;
gint32 palette_type;
gint32 alpha_dither;
gint32 remove_unused;
gint32 mode;
long new_width;
long new_height;
long offs_x;
long offs_y;
gint32 inverse_order;
gint32 no_alpha;
long framerate;
#define FRAME_BASENAME_LEN 256
char frame_basename[FRAME_BASENAME_LEN];
gint32 sel_mode, sel_case, sel_invert;
gint32 selection_mode;
gint32 l_rc_image;
/* init std return values status and image (as used in most of the gap plug-ins) */
*nreturn_vals = 2;
*return_vals = values;
status = GIMP_PDB_SUCCESS;
values[0].type = GIMP_PDB_STATUS;
values[0].data.d_status = GIMP_PDB_EXECUTION_ERROR;
values[1].type = GIMP_PDB_IMAGE;
values[1].data.d_int32 = -1;
nr = 0;
l_rc_image = -1;
l_env = g_getenv("GAP_DEBUG");
if(l_env != NULL)
{
if((*l_env != 'n') && (*l_env != 'N')) gap_debug = 1;
}
run_mode = param[0].data.d_int32;
lock_run_mode = run_mode;
if((strcmp (name, PLUGIN_NAME_GAP_PREV) == 0)
|| (strcmp (name, PLUGIN_NAME_GAP_NEXT) == 0))
{
/* stepping from frame to frame is often done
* in quick sequence via Shortcut Key, and should
* not open dialog windows if the previous GAP lock is still active.
* therefore i set NONINTERACTIVE run_mode to prevent
* gap_lock_check_for_lock from open a gimp_message window.
*/
lock_run_mode = GIMP_RUN_NONINTERACTIVE;
}
if(gap_debug) fprintf(stderr, "\n\ngap_main: debug name = %s\n", name);
/* gimp_ui_init is sometimes needed even in NON-Interactive
* runmodes.
* because thumbnail handling uses the procedure gdk_pixbuf_new_from_file
* that will crash if not initialized
* so better init always, just to be on the save side.
* (most diaolgs do init a 2.nd time but this worked well)
*/
gimp_ui_init ("gap_main", FALSE);
image_id = param[1].data.d_image;
if(!gap_image_is_alive(image_id))
{
printf("GAP plug-in was called on INVALID IMAGE_ID:%d (terminating)\n",
(int)image_id);
status = GIMP_PDB_EXECUTION_ERROR;
values[0].data.d_status = status;
return ;
}
lock_image_id = image_id;
/* ---------------------------
* NON-LOCKING gap_plugins
* ---------------------------
*/
if (strcmp (name, PLUGIN_NAME_GAP_GET_ANIMINFO) == 0)
{
GapAnimInfo *ainfo_ptr;
GapVinVideoInfo *vin_ptr;
ainfo_ptr = gap_lib_alloc_ainfo(image_id, GIMP_RUN_NONINTERACTIVE);
if(ainfo_ptr == NULL)
{
status = GIMP_PDB_EXECUTION_ERROR;
}
else if (0 != gap_lib_dir_ainfo(ainfo_ptr))
{
status = GIMP_PDB_EXECUTION_ERROR;
}
/* return the new generated image_id */
*nreturn_vals = nreturn_ainfo +1;
values[0].data.d_status = status;
values[1].type = GIMP_PDB_INT32;
values[2].type = GIMP_PDB_INT32;
values[3].type = GIMP_PDB_INT32;
values[4].type = GIMP_PDB_INT32;
values[5].type = GIMP_PDB_STRING;
values[6].type = GIMP_PDB_STRING;
values[7].type = GIMP_PDB_FLOAT;
if(ainfo_ptr != NULL)
{
values[1].data.d_int32 = ainfo_ptr->first_frame_nr;
values[2].data.d_int32 = ainfo_ptr->last_frame_nr;
values[3].data.d_int32 = ainfo_ptr->curr_frame_nr;
values[4].data.d_int32 = ainfo_ptr->frame_cnt;
values[5].data.d_string = g_strdup(ainfo_ptr->basename);
values[6].data.d_string = g_strdup(ainfo_ptr->extension);
values[7].data.d_float = -1.0;
vin_ptr = gap_vin_get_all(ainfo_ptr->basename);
if(vin_ptr != NULL)
{
values[7].data.d_float = vin_ptr->framerate;
}
}
return;
}
else if (strcmp (name, PLUGIN_NAME_GAP_SET_FRAMERATE) == 0)
{
GapAnimInfo *ainfo_ptr;
GapVinVideoInfo *vin_ptr;
*nreturn_vals = nreturn_nothing +1;
if (n_params != nargs_setrate)
{
status = GIMP_PDB_CALLING_ERROR;
}
else
{
ainfo_ptr = gap_lib_alloc_ainfo(image_id, GIMP_RUN_NONINTERACTIVE);
if(ainfo_ptr == NULL)
{
status = GIMP_PDB_EXECUTION_ERROR;
}
else if (0 != gap_lib_dir_ainfo(ainfo_ptr))
{
status = GIMP_PDB_EXECUTION_ERROR;;
}
else
{
vin_ptr = gap_vin_get_all(ainfo_ptr->basename);
if(vin_ptr == NULL)
{
status = GIMP_PDB_EXECUTION_ERROR;;
}
else
{
vin_ptr->framerate = param[3].data.d_float;
gap_vin_set_common(vin_ptr, ainfo_ptr->basename);
}
}
}
values[0].data.d_status = status;
return;
}
/* ---------------------------
* check for LOCKS
* ---------------------------
*/
if(gap_lock_check_for_lock(lock_image_id, lock_run_mode))
{
status = GIMP_PDB_EXECUTION_ERROR;
values[0].data.d_status = status;
return ;
}
/* set LOCK on current image (for all gap_plugins) */
gap_lock_set_lock(lock_image_id);
INIT_I18N();
/* ---------------------------
* LOCKING gap_plugins
* ---------------------------
*/
if (strcmp (name, PLUGIN_NAME_GAP_NEXT) == 0)
{
if (run_mode == GIMP_RUN_NONINTERACTIVE)
{
if (n_params != nargs_std)
{
status = GIMP_PDB_CALLING_ERROR;
}
}
if (status == GIMP_PDB_SUCCESS)
{
l_rc_image = gap_base_next(run_mode, image_id);
}
}
else if (strcmp (name, PLUGIN_NAME_GAP_PREV) == 0)
{
if (run_mode == GIMP_RUN_NONINTERACTIVE)
{
if (n_params != nargs_std)
{
status = GIMP_PDB_CALLING_ERROR;
}
}
if (status == GIMP_PDB_SUCCESS)
{
l_rc_image = gap_base_prev(run_mode, image_id);
}
}
else if (strcmp (name, PLUGIN_NAME_GAP_FIRST) == 0)
{
if (run_mode == GIMP_RUN_NONINTERACTIVE)
{
if (n_params != nargs_std)
{
status = GIMP_PDB_CALLING_ERROR;
}
}
if (status == GIMP_PDB_SUCCESS)
{
l_rc_image = gap_base_first(run_mode, image_id);
}
}
else if (strcmp (name, PLUGIN_NAME_GAP_LAST) == 0)
{
if (run_mode == GIMP_RUN_NONINTERACTIVE)
{
if (n_params != nargs_std)
{
status = GIMP_PDB_CALLING_ERROR;
}
}
if (status == GIMP_PDB_SUCCESS)
{
l_rc_image = gap_base_last(run_mode, image_id);
}
}
else if (strcmp (name, PLUGIN_NAME_GAP_GOTO) == 0)
{
if (run_mode == GIMP_RUN_NONINTERACTIVE)
{
if (n_params != nargs_goto)
{
status = GIMP_PDB_CALLING_ERROR;
}
}
if (status == GIMP_PDB_SUCCESS)
{
nr = param[3].data.d_int32; /* destination frame nr */
l_rc_image = gap_base_goto(run_mode, image_id, nr);
}
}
else if (strcmp (name, PLUGIN_NAME_GAP_DEL) == 0)
{
if (run_mode == GIMP_RUN_NONINTERACTIVE)
{
if (n_params != nargs_del)
{
status = GIMP_PDB_CALLING_ERROR;
}
}
if (status == GIMP_PDB_SUCCESS)
{
nr = param[3].data.d_int32; /* number of frames to delete */
l_rc_image = gap_base_del(run_mode, image_id, nr);
}
}
else if (strcmp (name, PLUGIN_NAME_GAP_DUP) == 0)
{
if (run_mode == GIMP_RUN_NONINTERACTIVE)
{
/* accept the old interface with 4 parameters */
if ((n_params != 4) && (n_params != nargs_dup))
{
status = GIMP_PDB_CALLING_ERROR;
}
}
if (status == GIMP_PDB_SUCCESS)
{
nr = param[3].data.d_int32; /* how often to copy current frame */
if (n_params > 5)
{
range_from = param[4].data.d_int32; /* frame nr to start */
range_to = param[5].data.d_int32; /* frame nr to stop */
}
else
{
range_from = -1;
range_to = -1;
}
l_rc_image = gap_base_dup(run_mode, image_id, nr, range_from, range_to );
}
}
else if (strcmp (name, PLUGIN_NAME_GAP_DENSITY) == 0)
{
gdouble density_factor;
gboolean density_grow;
if (run_mode == GIMP_RUN_NONINTERACTIVE)
{
if (n_params != nargs_density)
{
status = GIMP_PDB_CALLING_ERROR;
}
}
if (status == GIMP_PDB_SUCCESS)
{
range_from = param[3].data.d_int32; /* frame nr to start */
range_to = param[4].data.d_int32; /* frame nr to stop */
density_factor = param[5].data.d_float;
density_grow = param[6].data.d_int32;
l_rc_image = gap_base_density(run_mode, image_id, range_from, range_to, density_factor, density_grow);
}
}
else if (strcmp (name, PLUGIN_NAME_GAP_EXCHG) == 0)
{
if (run_mode == GIMP_RUN_NONINTERACTIVE)
{
if (n_params != nargs_exchg)
{
status = GIMP_PDB_CALLING_ERROR;
}
}
if (status == GIMP_PDB_SUCCESS)
{
nr = param[3].data.d_int32; /* nr of frame to exchange with current frame */
l_rc_image = gap_base_exchg(run_mode, image_id, nr);
}
}
else if (strcmp (name, PLUGIN_NAME_GAP_MOVE) == 0)
{
GapMovValues *pvals;
pvals = g_new (GapMovValues, 1);
if (run_mode == GIMP_RUN_NONINTERACTIVE)
{
status = GIMP_PDB_CALLING_ERROR;
}
if (status == GIMP_PDB_SUCCESS)
{
l_rc_image = gap_mov_exec_move_path(run_mode, image_id, pvals, NULL, 0, 0);
}
g_free(pvals);
}
else if ((strcmp (name, PLUGIN_NAME_GAP_MOVE_PATH_EXT) == 0)
|| (strcmp (name, PLUGIN_NAME_GAP_MOVE_PATH_EXT2) == 0))
{
GapMovValues *pvals;
gchar *pointfile;
gint l_idx;
gint l_numpoints;
gint l_rotation_follow;
gint32 l_startangle;
pointfile = NULL;
pvals = g_new (GapMovValues, 1);
l_rotation_follow = 0;
l_startangle = 0;
pvals->dst_image_id = image_id;
pvals->tmp_image_id = -1;
pvals->tmpsel_image_id = -1;
pvals->tmpsel_channel_id = -1;
pvals->apv_mode = 0;
pvals->apv_src_frame = -1;
pvals->apv_mlayer_image = -1;
pvals->apv_gap_paste_buff = NULL;
pvals->apv_framerate = 24;
pvals->apv_scalex = 100.0;
pvals->apv_scaley = 100.0;
pvals->cache_src_image_id = -1;
pvals->cache_tmp_image_id = -1;
pvals->cache_tmp_layer_id = -1;
pvals->cache_frame_number = -1;
pvals->cache_ainfo_ptr = NULL;
pvals->point_idx = 0;
pvals->point_idx_max = 0;
pvals->src_apply_bluebox = 0;
pvals->bbp = NULL;
pvals->step_speed_factor = 1.0;
pvals->tracelayer_enable = FALSE;
pvals->trace_opacity_initial = 100.0;
pvals->trace_opacity_desc = 80.0;
pvals->tween_steps = 0;
pvals->tween_opacity_initial = 80.0;
pvals->tween_opacity_desc = 80.0;
if (run_mode == GIMP_RUN_NONINTERACTIVE)
{
if ( ((n_params != nargs_mov_path_ext) && (strcmp (name, PLUGIN_NAME_GAP_MOVE_PATH_EXT) == 0))
|| ((n_params != nargs_mov_path_ext2) && (strcmp (name, PLUGIN_NAME_GAP_MOVE_PATH_EXT2) == 0)))
{
status = GIMP_PDB_CALLING_ERROR;
}
else
{
pvals->dst_range_start = param[3].data.d_int32;
pvals->dst_range_end = param[4].data.d_int32;
pvals->dst_layerstack = param[5].data.d_int32;
pvals->src_layer_id = param[6].data.d_layer;
pvals->src_stepmode = param[7].data.d_int32;
pvals->src_handle = param[8].data.d_int32;
pvals->src_paintmode = param[9].data.d_int32;
pvals->src_force_visible = param[10].data.d_int32;
pvals->clip_to_img = param[11].data.d_int32;
l_rotation_follow = param[12].data.d_int32;
l_startangle = param[13].data.d_float;
pvals->step_speed_factor = param[14].data.d_float;
pvals->tween_steps = param[15].data.d_int32;
pvals->tween_opacity_initial = param[16].data.d_float;
pvals->tween_opacity_desc = param[17].data.d_float;
pvals->tracelayer_enable = param[18].data.d_int32;
pvals->trace_opacity_initial = param[19].data.d_float;
pvals->trace_opacity_desc = param[20].data.d_float;
pvals->src_apply_bluebox = param[21].data.d_int32;
pvals->src_selmode = param[22].data.d_int32;
if (strcmp (name, PLUGIN_NAME_GAP_MOVE_PATH_EXT) == 0)
{
/* PLUGIN_NAME_GAP_MOVE_PATH_EXT passes controlpoints as array parameters */
l_numpoints = param[23].data.d_int32;
if ((l_numpoints != param[25].data.d_int32)
|| (l_numpoints != param[27].data.d_int32)
|| (l_numpoints != param[29].data.d_int32)
|| (l_numpoints != param[31].data.d_int32)
|| (l_numpoints != param[33].data.d_int32)
|| (l_numpoints != param[35].data.d_int32)
|| (l_numpoints != param[37].data.d_int32)
|| (l_numpoints != param[39].data.d_int32)
|| (l_numpoints != param[41].data.d_int32)
|| (l_numpoints != param[43].data.d_int32)
|| (l_numpoints != param[45].data.d_int32)
|| (l_numpoints != param[47].data.d_int32)
|| (l_numpoints != param[49].data.d_int32)
|| (l_numpoints != param[51].data.d_int32)
|| (l_numpoints != param[53].data.d_int32))
{
printf("plug_in_gap_move_path_ext: CallingError: different numbers in the controlpoint array argc parameters\n");
status = GIMP_PDB_CALLING_ERROR;
}
else
{
pvals->point_idx_max = l_numpoints -1;
for(l_idx = 0; l_idx < l_numpoints; l_idx++)
{
pvals->point[l_idx].p_x = param[24].data.d_int32array[l_idx];
pvals->point[l_idx].p_y = param[26].data.d_int32array[l_idx];
pvals->point[l_idx].opacity = param[28].data.d_floatarray[l_idx];
pvals->point[l_idx].w_resize = param[30].data.d_floatarray[l_idx];
pvals->point[l_idx].h_resize = param[32].data.d_floatarray[l_idx];
pvals->point[l_idx].rotation = param[34].data.d_floatarray[l_idx];
pvals->point[l_idx].keyframe_abs = param[36].data.d_int32array[l_idx];
/* pvals->point[l_idx].keyframe = ; */ /* relative keyframes are calculated later */
pvals->point[l_idx].ttlx = param[38].data.d_floatarray[l_idx];
pvals->point[l_idx].ttly = param[40].data.d_floatarray[l_idx];
pvals->point[l_idx].ttrx = param[42].data.d_floatarray[l_idx];
pvals->point[l_idx].ttry = param[44].data.d_floatarray[l_idx];
pvals->point[l_idx].tblx = param[46].data.d_floatarray[l_idx];
pvals->point[l_idx].tbly = param[48].data.d_floatarray[l_idx];
pvals->point[l_idx].tbrx = param[50].data.d_floatarray[l_idx];
pvals->point[l_idx].tbry = param[52].data.d_floatarray[l_idx];
pvals->point[l_idx].sel_feather_radius = param[54].data.d_floatarray[l_idx];
}
}
}
else
{
/* PLUGIN_NAME_GAP_MOVE_PATH_EXT2 operates with controlpoint file */
if(param[23].data.d_string != NULL)
{
pointfile = g_strdup(param[23].data.d_string);
}
}
}
}
if (status == GIMP_PDB_SUCCESS)
{
l_rc_image = gap_mov_exec_move_path(run_mode, image_id, pvals, pointfile, l_rotation_follow, (gdouble)l_startangle);
}
g_free(pvals);
if(pointfile != NULL) g_free(pointfile);
}
else if (strcmp (name, PLUGIN_NAME_GAP_RANGE_TO_MULTILAYER) == 0)
{
*nreturn_vals = nreturn_f2multi + 1;
l_rc_image = -1;
selection_mode = GAP_RANGE_OPS_SEL_IGNORE;
if (run_mode == GIMP_RUN_NONINTERACTIVE)
{
if ((n_params != 7) && (n_params != 9) && (n_params != nargs_f2multi))
{
status = GIMP_PDB_CALLING_ERROR;
}
}
if (status == GIMP_PDB_SUCCESS)
{
range_from = param[3].data.d_int32; /* frame nr to start */
range_to = param[4].data.d_int32; /* frame nr to stop */
mode = param[5].data.d_int32; /* { expand-as-necessary(0), CLIP-TO_IMG(1), CLIP-TO-BG-LAYER(2), FLATTEN(3)} */
nr = param[6].data.d_int32; /* { BG_NOT_VISIBLE (0), BG_VISIBLE(1)} */
/* old interface: use default values for framerate and frame_basename */
framerate = 50;
strcpy(frame_basename, "frame");
sel_mode = GAP_MTCH_ALL_VISIBLE;
sel_invert = FALSE;
sel_case = TRUE;
if ( n_params >= 9 )
{
framerate = param[7].data.d_int32;
if(param[8].data.d_string != NULL)
{
strncpy(frame_basename, param[8].data.d_string, FRAME_BASENAME_LEN -1);
frame_basename[FRAME_BASENAME_LEN -1] = '\0';
}
}
if ( n_params >= 13 )
{
sel_mode = param[9].data.d_int32;
sel_case = param[10].data.d_int32;
sel_invert = param[11].data.d_int32;
if(param[12].data.d_string != NULL)
{
strncpy(l_sel_str, param[12].data.d_string, sizeof(l_sel_str) -1);
l_sel_str[sizeof(l_sel_str) -1] = '\0';
}
selection_mode = param[13].data.d_int32;
}
l_rc_image = gap_range_to_multilayer(run_mode, image_id, range_from, range_to, mode, nr,
framerate, frame_basename, FRAME_BASENAME_LEN,
sel_mode, sel_case, sel_invert, l_sel_str, selection_mode);
}
values[1].type = GIMP_PDB_IMAGE;
values[1].data.d_int32 = l_rc_image; /* return the new generated image_id */
}
else if (strcmp (name, PLUGIN_NAME_GAP_RANGE_FLATTEN) == 0)
{
if (run_mode == GIMP_RUN_NONINTERACTIVE)
{
if (n_params != nargs_rflatt)
{
status = GIMP_PDB_CALLING_ERROR;
}
}
if (status == GIMP_PDB_SUCCESS)
{
range_from = param[3].data.d_int32; /* frame nr to start */
range_to = param[4].data.d_int32; /* frame nr to stop */
l_rc_image = gap_range_flatten(run_mode, image_id, range_from, range_to);
}
}
else if (strcmp (name, PLUGIN_NAME_GAP_RANGE_LAYER_DEL) == 0)
{
if (run_mode == GIMP_RUN_NONINTERACTIVE)
{
if (n_params != nargs_rlayerdel)
{
status = GIMP_PDB_CALLING_ERROR;
}
}
if (status == GIMP_PDB_SUCCESS)
{
range_from = param[3].data.d_int32; /* frame nr to start */
range_to = param[4].data.d_int32; /* frame nr to stop */
nr = param[5].data.d_int32; /* layerstack position (0 == on top) */
l_rc_image = gap_range_layer_del(run_mode, image_id, range_from, range_to, nr);
}
}
else if ((strcmp (name, PLUGIN_NAME_GAP_RANGE_CONVERT) == 0)
|| (strcmp (name, PLUGIN_NAME_GAP_RANGE_CONVERT2) == 0))
{
*nreturn_vals = nreturn_rconv +1;
l_basename_ptr = NULL;
l_palette_ptr = NULL;
palette_type = GIMP_MAKE_PALETTE;
alpha_dither = 0;
remove_unused = 1;
if (run_mode == GIMP_RUN_NONINTERACTIVE)
{
if ((n_params != 10) && (n_params != nargs_rconv) && (n_params != nargs_rconv2))
{
status = GIMP_PDB_CALLING_ERROR;
}
else
{
strncpy(l_extension, param[9].data.d_string, sizeof(l_extension) -1);
l_extension[sizeof(l_extension) -1] = '\0';
if (n_params >= 11)
{
l_basename_ptr = param[10].data.d_string;
}
if (n_params >= 15)
{
l_palette_ptr = param[14].data.d_string;
palette_type = param[11].data.d_int32;
alpha_dither = param[12].data.d_int32;
remove_unused = param[13].data.d_int32;
}
}
}
if (status == GIMP_PDB_SUCCESS)
{
image_id = param[1].data.d_image;
range_from = param[3].data.d_int32; /* frame nr to start */
range_to = param[4].data.d_int32; /* frame nr to stop */
nr = param[5].data.d_int32; /* flatten (0 == no , 1 == flatten) */
dest_type = param[6].data.d_int32;
dest_colors = param[7].data.d_int32;
dest_dither = param[8].data.d_int32;
l_rc_image = gap_range_conv(run_mode, image_id, range_from, range_to, nr,
dest_type, dest_colors, dest_dither,
l_basename_ptr, l_extension,
palette_type,
alpha_dither,
remove_unused,
l_palette_ptr);
}
}
else if (strcmp (name, PLUGIN_NAME_GAP_ANIM_RESIZE) == 0)
{
if (run_mode == GIMP_RUN_NONINTERACTIVE)
{
if (n_params != nargs_resize)
{
status = GIMP_PDB_CALLING_ERROR;
}
}
if (status == GIMP_PDB_SUCCESS)
{
new_width = param[3].data.d_int32;
new_height = param[4].data.d_int32;
offs_x = param[5].data.d_int32;
offs_y = param[6].data.d_int32;
l_rc_image = gap_range_anim_sizechange(run_mode, GAP_ASIZ_RESIZE, image_id,
new_width, new_height, offs_x, offs_y);
}
}
else if (strcmp (name, PLUGIN_NAME_GAP_ANIM_CROP) == 0)
{
if (run_mode == GIMP_RUN_NONINTERACTIVE)
{
if (n_params != 7)
{
status = GIMP_PDB_CALLING_ERROR;
}
}
if (status == GIMP_PDB_SUCCESS)
{
new_width = param[3].data.d_int32;
new_height = param[4].data.d_int32;
offs_x = param[5].data.d_int32;
offs_y = param[6].data.d_int32;
l_rc_image = gap_range_anim_sizechange(run_mode, GAP_ASIZ_CROP, image_id,
new_width, new_height, offs_x, offs_y);
}
}
else if (strcmp (name, PLUGIN_NAME_GAP_ANIM_SCALE) == 0)
{
if (run_mode == GIMP_RUN_NONINTERACTIVE)
{
if (n_params != nargs_scale)
{
status = GIMP_PDB_CALLING_ERROR;
}
}
if (status == GIMP_PDB_SUCCESS)
{
new_width = param[3].data.d_int32;
new_height = param[4].data.d_int32;
l_rc_image = gap_range_anim_sizechange(run_mode, GAP_ASIZ_SCALE, image_id,
new_width, new_height, 0, 0);
}
}
else if (strcmp (name, PLUGIN_NAME_GAP_SPLIT) == 0)
{
gint32 l_digits;
gint32 l_only_visible;
gint32 l_copy_properties;
*nreturn_vals = nreturn_split +1;
l_rc_image = -1;
if (run_mode == GIMP_RUN_NONINTERACTIVE)
{
if (n_params != nargs_split)
{
status = GIMP_PDB_CALLING_ERROR;
}
else
{
strncpy(l_extension, param[5].data.d_string, sizeof(l_extension) -1);
l_extension[sizeof(l_extension) -1] = '\0';
}
}
if (status == GIMP_PDB_SUCCESS)
{
inverse_order = param[3].data.d_int32;
no_alpha = param[4].data.d_int32;
l_only_visible= param[6].data.d_int32;
l_digits = param[7].data.d_int32;
l_copy_properties = param[8].data.d_int32;
l_rc_image = gap_split_image(run_mode, image_id,
inverse_order, no_alpha, l_extension, l_only_visible, l_copy_properties, l_digits);
}
/* IMAGE ID is filled at end (same as in standard return handling) */
values[1].type = GIMP_PDB_IMAGE;
values[1].data.d_int32 = l_rc_image; /* return the new generated image_id */
}
else if (strcmp (name, PLUGIN_NAME_GAP_SHIFT) == 0)
{
if (run_mode == GIMP_RUN_NONINTERACTIVE)
{
if (n_params != nargs_shift)
{
status = GIMP_PDB_CALLING_ERROR;
}
}
if (status == GIMP_PDB_SUCCESS)
{
nr = param[3].data.d_int32; /* how many framenumbers to shift the framesequence */
range_from = param[4].data.d_int32; /* frame nr to start */
range_to = param[5].data.d_int32; /* frame nr to stop */
l_rc_image = gap_base_shift(run_mode, image_id, nr, range_from, range_to );
}
}
else if (strcmp (name, PLUGIN_NAME_GAP_REVERSE) == 0)
{
if (run_mode == GIMP_RUN_NONINTERACTIVE)
{
if (n_params != nargs_shift)
{
status = GIMP_PDB_CALLING_ERROR;
}
}
if (status == GIMP_PDB_SUCCESS)
{
range_from = param[3].data.d_int32; /* frame nr to start */
range_to = param[4].data.d_int32; /* frame nr to stop */
l_rc_image = gap_base_reverse(run_mode, image_id, range_from, range_to );
}
}
else if (strcmp (name, PLUGIN_NAME_GAP_RENUMBER) == 0)
{
gint32 digits;
digits = GAP_LIB_DEFAULT_DIGITS;
if (run_mode == GIMP_RUN_NONINTERACTIVE)
{
if (n_params != nargs_renumber)
{
status = GIMP_PDB_CALLING_ERROR;
}
}
if (status == GIMP_PDB_SUCCESS)
{
nr = param[3].data.d_int32; /* new start framenumber of the 1.st frame in the framesequence */
digits = param[4].data.d_int32; /* digits to use for framenumber part in the filename(s) */
l_rc_image = gap_base_renumber(run_mode, image_id, nr, digits);
}
}
else if (strcmp (name, PLUGIN_NAME_GAP_VIDEO_EDIT_COPY) == 0)
{
*nreturn_vals = nreturn_nothing +1;
if (n_params != nargs_video_copy)
{
status = GIMP_PDB_CALLING_ERROR;
}
if (status == GIMP_PDB_SUCCESS)
{
range_from = param[3].data.d_int32; /* frame nr to start */
range_to = param[4].data.d_int32; /* frame nr to stop */
l_rc_image = gap_vid_edit_copy(run_mode, image_id, range_from, range_to );
}
}
else if (strcmp (name, PLUGIN_NAME_GAP_VIDEO_EDIT_PASTE) == 0)
{
if (n_params != nargs_video_paste)
{
status = GIMP_PDB_CALLING_ERROR;
}
if (status == GIMP_PDB_SUCCESS)
{
nr = param[3].data.d_int32; /* paste_mode (0,1 or 2) */
l_rc_image = gap_vid_edit_paste(run_mode, image_id, nr );
}
}
else if (strcmp (name, PLUGIN_NAME_GAP_VIDEO_EDIT_CLEAR) == 0)
{
*nreturn_vals = nreturn_nothing +1;
if (status == GIMP_PDB_SUCCESS)
{
if(gap_vid_edit_clear() < 0)
{
l_rc_image = -1;
}
else
{
l_rc_image = 0;
}
}
}
else if (strcmp (name, PLUGIN_NAME_GAP_MODIFY) == 0)
{
if (run_mode == GIMP_RUN_NONINTERACTIVE)
{
if (n_params != nargs_modify)
{
status = GIMP_PDB_CALLING_ERROR;
}
else
{
if(param[9].data.d_string != NULL)
{
strncpy(l_sel_str, param[9].data.d_string, sizeof(l_sel_str) -1);
l_sel_str[sizeof(l_sel_str) -1] = '\0';
}
if(param[10].data.d_string != NULL)
{
strncpy(l_layername, param[10].data.d_string, sizeof(l_layername) -1);
l_layername[sizeof(l_layername) -1] = '\0';
}
}
}
if (status == GIMP_PDB_SUCCESS)
{
range_from = param[3].data.d_int32; /* frame nr to start */
range_to = param[4].data.d_int32; /* frame nr to stop */
nr = param[5].data.d_int32; /* action_nr */
sel_mode = param[6].data.d_int32;
sel_case = param[7].data.d_int32;
sel_invert = param[8].data.d_int32;
l_rc_image = gap_mod_layer(run_mode, image_id, range_from, range_to,
nr, sel_mode, sel_case, sel_invert,
l_sel_str, l_layername);
}
}
/* ---------- return handling --------- */
if(l_rc_image < 0)
{
if(gap_debug) printf("gap_main: return GIMP_PDB_EXECUTION_ERROR\n");
status = GIMP_PDB_EXECUTION_ERROR;
}
else
{
if(gap_debug) printf("gap_main: return OK\n");
/* most gap_plug-ins return an image_id in values[1] */
if (values[1].type == GIMP_PDB_IMAGE)
{
if(gap_debug) printf("gap_main: return image_id:%d\n", (int)l_rc_image);
values[1].data.d_int32 = l_rc_image; /* return image id of the resulting (current frame) image */
}
}
if (run_mode != GIMP_RUN_NONINTERACTIVE)
{
if(gap_debug) printf("gap_main BEFORE gimp_displays_flush\n");
gimp_displays_flush();
if(gap_debug) printf("gap_main AFTER gimp_displays_flush\n");
}
values[0].data.d_status = status;
/* remove LOCK on this image for all gap_plugins */
gap_lock_remove_lock(lock_image_id);
}
|