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
|
/* gap_base_ops.c
* 1997.11.18 hof (Wolfgang Hofer)
*
* GAP ... Gimp Animation Plugins
*
* basic Videomenu functions:
* Delete, Duplicate, Density, Exchange, Shift
* Next, Prev, First, Last, Goto
*
*
*/
/* 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:
* 1.3.17b; 2003/07/31 hof: message text fixes for translators (# 118392)
* 1.3.16b; 2003/07/04 hof: added gap_density, confirm dialog for frame deleting operations
* 1.3.15a 2003/06/21 hof: textspacing
* 1.3.14a 2003/05/27 hof: created (module was splitted off from gap_lib)
*/
#include "config.h"
/* SYSTEM (UNIX) includes */
#include <stdlib.h>
#include <glib/gstdio.h>
/* GIMP includes */
#include "gtk/gtk.h"
#include "gap-intl.h"
#include "libgimp/gimp.h"
/* GAP includes */
#include "gap_layer_copy.h"
#include "gap_lib.h"
#include "gap_base_ops.h"
#include "gap_pdb_calls.h"
#include "gap_arr_dialog.h"
#include "gap_lock.h"
#include "gap_thumbnail.h"
extern int gap_debug; /* ==0 ... dont print debug infos */
#define GAP_HELP_ID_DUPLICATE "plug-in-gap-dup"
#define GAP_HELP_ID_DELETE "plug-in-gap-del"
#define GAP_HELP_ID_DENSITY "plug-in-gap-density"
#define GAP_HELP_ID_EXCHANGE "plug-in-gap-exchg"
#define GAP_HELP_ID_RENUMBER "plug-in-gap-renumber"
#define GAP_HELP_ID_SHIFT "plug-in-gap-shift"
#define GAP_HELP_ID_REVERSE "plug-in-gap-reverse"
/* ------------------------
* p_density_shrink
* ------------------------
* shrink framedensity in the selected range (range_from - range_to)
* by density_factor (is used as divisor here).
* a value of 2.0 results in deleting half of the frames
* (by deleting every 2.nd frame in the affected range)
* the range will playback with double speed when using the original framerate.
*/
static gint32
p_density_shrink(GapAnimInfo *ainfo_ptr
, gdouble density_factor
, long range_from, long range_to)
{
gint32 l_lo, l_hi;
gint32 l_framenr;
gint32 l_last_kept_nr;
gdouble l_percentage, l_percentage_step;
if(ainfo_ptr->run_mode == GIMP_RUN_INTERACTIVE)
{
gimp_progress_init(_("Decreasing density by deleting frames..."));
}
l_percentage = 0.0;
l_percentage_step = 1.0 / (gdouble)(ainfo_ptr->last_frame_nr - range_from);
l_framenr = range_from;
l_last_kept_nr = -1;
/* rename and delete loop */
for(l_hi = range_from; l_hi <= range_to; l_hi++)
{
gdouble l_fnr;
/* l_lo is the source framenumber in the (time) shrinked variant */
l_fnr = ((gdouble)(l_hi - range_from) / density_factor);
l_lo = range_from + (gint32)l_fnr;
if(gap_debug) printf("p_density_shrink: (ren/dup loop) l_lo: %d l_hi:%d last_kept:%d framenr:%d\n"
, (int)l_lo
, (int)l_hi
, (int)l_last_kept_nr
, (int)l_framenr
);
if(l_lo == l_last_kept_nr)
{
/* 2 or more frames would result in the the same framenr
* (in the shrinked range)
* in this case we must delete this frame(s)
*/
gap_lib_delete_frame(ainfo_ptr, l_hi);
}
else
{
if(l_hi != l_framenr)
{
if(0 != gap_lib_rename_frame(ainfo_ptr, l_hi, l_framenr))
{
gchar *tmp_errtxt;
tmp_errtxt = g_strdup_printf(_("Error: could not rename frame %d to %d"), (int)l_hi, (int)l_framenr);
gap_arr_msg_win(ainfo_ptr->run_mode, tmp_errtxt);
g_free(tmp_errtxt);
return -1;
}
}
l_last_kept_nr = l_framenr;
l_framenr++;
}
/* update progress for INTERACTIVE processing */
if(ainfo_ptr->run_mode == GIMP_RUN_INTERACTIVE)
{
l_percentage += l_percentage_step;
gimp_progress_update (l_percentage);
}
}
/* down_shift rename loop
* (framenumber higher than range_to are renamed with lower numbers
* to close up the leak in the numberspace that was
* left in the 1.loop when frames were deleted.)
*/
l_lo = l_framenr;
l_hi = range_to +1;
while(l_hi <= ainfo_ptr->last_frame_nr )
{
if(0 != gap_lib_rename_frame(ainfo_ptr, l_hi, l_lo))
{
gchar *tmp_errtxt;
tmp_errtxt = g_strdup_printf(_("Error: could not rename frame %d to %d"), (int)l_hi, (int)l_lo);
gap_arr_msg_win(ainfo_ptr->run_mode, tmp_errtxt);
g_free(tmp_errtxt);
return -1;
}
if(ainfo_ptr->run_mode == GIMP_RUN_INTERACTIVE)
{
l_percentage += l_percentage_step;
gimp_progress_update (l_percentage);
}
l_hi++;
l_lo++;
}
l_lo--; /* this is the new last framenumber */
/* recalculate last and total frames */
ainfo_ptr->frame_cnt -= (ainfo_ptr->last_frame_nr - l_lo);
ainfo_ptr->last_frame_nr = l_lo;
return 0; /* OK */
} /* end p_density_shrink */
/* ------------------------
* p_density_grow
* ------------------------
* grow framedensity in the selected range (range_from - range_to)
* by density_factor.
* a value of 2.0 results in duplicating
* all frames within the range.
* the range will playback with half speed when using the original framerate.
*/
static gint32
p_density_grow(GapAnimInfo *ainfo_ptr
, gdouble density_factor
, long range_from, long range_to)
{
gint32 l_lo, l_hi;
gint32 l_alias_lo;
gint32 l_alias_nr;
gint32 src_range_size;
gint32 copied_frames;
gdouble target_range_fsize;
gdouble l_percentage, l_percentage_step;
if(ainfo_ptr->run_mode == GIMP_RUN_INTERACTIVE)
{
gimp_progress_init(_("Density duplicating frames..."));
}
src_range_size = 1 + (range_to - range_from);
target_range_fsize = (gdouble)(src_range_size) * density_factor;
copied_frames = (gint)(target_range_fsize) - src_range_size;
l_percentage = 0.0;
l_percentage_step = 1.0 / (gdouble)((gint32)target_range_fsize
+ (ainfo_ptr->last_frame_nr - range_to));
/* up_shift rename loop
* (framenumber higher than range_to are renamed with higher numbers
* to get free numberspace for the duplicates that will be created
* in the 2.nd loop)
*/
l_lo = ainfo_ptr->last_frame_nr;
while(l_lo > range_to )
{
l_hi = l_lo + copied_frames;
if(0 != gap_lib_rename_frame(ainfo_ptr, l_lo, l_hi))
{
gchar *tmp_errtxt;
tmp_errtxt = g_strdup_printf(_("Error: could not rename frame %d to %d"), (int)l_lo, (int)l_hi);
gap_arr_msg_win(ainfo_ptr->run_mode, tmp_errtxt);
g_free(tmp_errtxt);
return -1;
}
if(ainfo_ptr->run_mode == GIMP_RUN_INTERACTIVE)
{
l_percentage += l_percentage_step;
gimp_progress_update (l_percentage);
}
l_lo--;
}
l_alias_lo = -1;
l_alias_nr = -1;
/* rename and duplicate loop */
for(l_hi = range_to + copied_frames; l_hi >= range_from; l_hi--)
{
gdouble l_flo;
/* pick the source framenumber (l_lo) */
l_flo = ((gdouble)(l_hi - range_from) / density_factor);
l_lo = range_from + (gint32)l_flo;
if(gap_debug) printf("p_density_grow: (ren/dup loop) l_lo: %d l_hi:%d\n", (int)l_lo, (int)l_hi);
if(l_lo == l_alias_lo)
{
gchar *l_alias_name;
gchar *l_dup_name;
/* the source framenumber (l_lo) was already renamed
* to l_alias_nr. we must create a copy in that case
* where the new framenumber (l_alias_nr) is the source framenumber
*/
l_alias_name = gap_lib_alloc_fname(ainfo_ptr->basename, l_alias_nr, ainfo_ptr->extension);
l_dup_name = gap_lib_alloc_fname(ainfo_ptr->basename, l_hi, ainfo_ptr->extension);
if((l_dup_name != NULL) && (l_alias_name != NULL))
{
gap_lib_image_file_copy(l_alias_name, l_dup_name);
g_free(l_dup_name);
g_free(l_alias_name);
}
}
else
{
if(l_lo != l_hi)
{
if(0 != gap_lib_rename_frame(ainfo_ptr, l_lo, l_hi))
{
gchar *tmp_errtxt;
tmp_errtxt = g_strdup_printf(_("Error: could not rename frame %d to %d"), (int)l_lo, (int)l_hi);
gap_arr_msg_win(ainfo_ptr->run_mode, tmp_errtxt);
g_free(tmp_errtxt);
return -1;
}
}
l_alias_lo = l_lo;
l_alias_nr = l_hi;
}
/* update progress for INTERACTIVE processing */
if(ainfo_ptr->run_mode == GIMP_RUN_INTERACTIVE)
{
l_percentage += l_percentage_step;
gimp_progress_update (l_percentage);
}
}
/* recalculate last and total frames */
ainfo_ptr->frame_cnt += copied_frames;
ainfo_ptr->last_frame_nr += copied_frames;
return 0; /* OK */
} /* end p_density_grow */
/* ------------------------
* p_density
* ------------------------
* change the frame density by duplicating all frames within
* the selected range (density_factor times)
* or by deleting 100/density_factor Percent of the frames.
* Depending on the density_grow flag.
*
* all following frames are renamed (renumbered up by cnt)
* current frame is duplicated (cnt) times
*
* return image_id (of the new loaded frame) on success
* or -1 on errors
*/
static gint32
p_density(GapAnimInfo *ainfo_ptr
, long range_from
, long range_to
, gdouble density_factor
, gboolean density_grow
)
{
gint32 l_rc;
char *l_curr_name;
l_rc = -1;
if(gap_debug) printf("p_density from:%d to:%d density: %.4f grow:%d extension:%s: basename:%s frame_cnt:%d\n"
, (int)range_from
, (int)range_to
, (float)density_factor
, (int)density_grow
, ainfo_ptr->extension
, ainfo_ptr->basename
, (int)ainfo_ptr->frame_cnt);
if(density_factor <= 1.0) return -1;
l_curr_name = gap_lib_alloc_fname(ainfo_ptr->basename, ainfo_ptr->curr_frame_nr, ainfo_ptr->extension);
if(l_curr_name == NULL)
{
return -1;
}
if(gap_lib_gap_check_save_needed(ainfo_ptr->image_id))
{
/* save current frame */
if(gap_lib_save_named_frame(ainfo_ptr->image_id, l_curr_name) < 0)
{
gchar *tmp_errtxt;
tmp_errtxt = g_strdup_printf(_("Error: could not save frame %s"), l_curr_name);
gap_arr_msg_win(ainfo_ptr->run_mode, tmp_errtxt);
g_free(tmp_errtxt);
g_free(l_curr_name);
return -1;
}
}
/* use a new name (000001.xcf Konvention) */
gimp_image_set_filename (ainfo_ptr->image_id, l_curr_name);
g_free(l_curr_name);
/* clip range */
if(range_from > ainfo_ptr->last_frame_nr) range_from = ainfo_ptr->last_frame_nr;
if(range_to > ainfo_ptr->last_frame_nr) range_to = ainfo_ptr->last_frame_nr;
if(range_from < ainfo_ptr->first_frame_nr) range_from = ainfo_ptr->first_frame_nr;
if(range_to < ainfo_ptr->first_frame_nr) range_to = ainfo_ptr->first_frame_nr;
if(density_grow)
{
l_rc = p_density_grow(ainfo_ptr
, density_factor
, range_from
, range_to
);
}
else
{
l_rc = p_density_shrink(ainfo_ptr
, density_factor
, range_from
, range_to
);
}
if(l_rc < 0)
{
return(-1);
}
/* load from the "new" current frame */
ainfo_ptr->curr_frame_nr = range_from;
if(ainfo_ptr->new_filename != NULL) g_free(ainfo_ptr->new_filename);
ainfo_ptr->new_filename = gap_lib_alloc_fname(ainfo_ptr->basename,
ainfo_ptr->curr_frame_nr,
ainfo_ptr->extension);
return (gap_lib_load_named_frame(ainfo_ptr->image_id, ainfo_ptr->new_filename));
} /* end p_density */
/* ============================================================================
* p_del
*
* delete cnt frames starting at current
* all following frames are renamed (renumbered down by cnt)
*
* return image_id (of the new loaded frame) on success
* or -1 on errors
* ============================================================================
*/
static gint32
p_del(GapAnimInfo *ainfo_ptr, long cnt)
{
long l_lo, l_hi, l_curr, l_idx;
if(gap_debug) fprintf(stderr, "DEBUG p_del\n");
if(cnt < 1) return -1;
l_curr = ainfo_ptr->curr_frame_nr;
if((1 + ainfo_ptr->last_frame_nr - l_curr) < cnt)
{
/* limt cnt to last existing frame */
cnt = 1 + ainfo_ptr->frame_cnt - l_curr;
}
if(cnt >= ainfo_ptr->frame_cnt)
{
/* dont want to delete all frames
* so we have to leave a rest of one frame
*/
cnt--;
}
l_idx = l_curr;
while(l_idx < (l_curr + cnt))
{
gap_lib_delete_frame(ainfo_ptr, l_idx);
l_idx++;
}
/* rename (renumber) all frames with number greater than current
*/
l_lo = l_curr;
l_hi = l_curr + cnt;
while(l_hi <= ainfo_ptr->last_frame_nr)
{
if(0 != gap_lib_rename_frame(ainfo_ptr, l_hi, l_lo))
{
gchar *tmp_errtxt;
tmp_errtxt = g_strdup_printf(_("Error: could not rename frame %ld to %ld") ,l_hi, l_lo);
gap_arr_msg_win(ainfo_ptr->run_mode, tmp_errtxt);
g_free(tmp_errtxt);
return -1;
}
l_lo++;
l_hi++;
}
/* calculate how much frames are left */
ainfo_ptr->frame_cnt -= cnt;
ainfo_ptr->last_frame_nr = ainfo_ptr->first_frame_nr + ainfo_ptr->frame_cnt -1;
/* set current position to previous frame (if there is one) */
if(l_curr > ainfo_ptr->first_frame_nr)
{
ainfo_ptr->frame_nr = l_curr -1;
}
else
{
ainfo_ptr->frame_nr = ainfo_ptr->first_frame_nr;
}
/* make filename, then load the new current frame */
if(ainfo_ptr->new_filename != NULL) g_free(ainfo_ptr->new_filename);
ainfo_ptr->new_filename = gap_lib_alloc_fname(ainfo_ptr->basename,
ainfo_ptr->frame_nr,
ainfo_ptr->extension);
if(ainfo_ptr->new_filename == NULL)
return -1;
return (gap_lib_load_named_frame(ainfo_ptr->image_id, ainfo_ptr->new_filename));
} /* end p_del */
/* ============================================================================
* p_dup
*
* all following frames are renamed (renumbered up by cnt)
* current frame is duplicated (cnt) times
*
* return image_id (of the new loaded frame) on success
* or -1 on errors
* ============================================================================
*/
gint32
p_dup(GapAnimInfo *ainfo_ptr, long cnt, long range_from, long range_to)
{
long l_lo, l_hi;
long l_cnt2;
long l_step;
long l_src_nr, l_src_nr_min, l_src_nr_max;
char *l_dup_name;
char *l_curr_name;
gdouble l_percentage, l_percentage_step;
if(gap_debug) fprintf(stderr, "DEBUG p_dup fr:%d to:%d cnt:%d extension:%s: basename:%s frame_cnt:%d\n",
(int)range_from, (int)range_to, (int)cnt, ainfo_ptr->extension, ainfo_ptr->basename, (int)ainfo_ptr->frame_cnt);
if(cnt < 1) return -1;
l_curr_name = gap_lib_alloc_fname(ainfo_ptr->basename, ainfo_ptr->curr_frame_nr, ainfo_ptr->extension);
if(gap_lib_gap_check_save_needed(ainfo_ptr->image_id))
{
/* save current frame */
if(gap_lib_save_named_frame(ainfo_ptr->image_id, l_curr_name) < 0)
{
gchar *tmp_errtxt;
tmp_errtxt = g_strdup_printf(_("Error: could not save frame %s"), l_curr_name);
gap_arr_msg_win(ainfo_ptr->run_mode, tmp_errtxt);
g_free(tmp_errtxt);
return -1;
}
}
/* use a new name (000001.xcf Konvention) */
gimp_image_set_filename (ainfo_ptr->image_id, l_curr_name);
g_free(l_curr_name);
if((range_from <0 ) && (range_to < 0 ))
{
/* set range to one single current frame
* (used for the old non_interactive PDB-interface without range params)
*/
range_from = ainfo_ptr->curr_frame_nr;
range_to = ainfo_ptr->curr_frame_nr;
}
/* clip range */
if(range_from > ainfo_ptr->last_frame_nr) range_from = ainfo_ptr->last_frame_nr;
if(range_to > ainfo_ptr->last_frame_nr) range_to = ainfo_ptr->last_frame_nr;
if(range_from < ainfo_ptr->first_frame_nr) range_from = ainfo_ptr->first_frame_nr;
if(range_to < ainfo_ptr->first_frame_nr) range_to = ainfo_ptr->first_frame_nr;
if(range_to < range_from)
{
/* invers range */
l_cnt2 = ((range_from - range_to ) + 1) * cnt;
l_step = -1;
l_src_nr_max = range_from;
l_src_nr_min = range_to;
}
else
{
l_cnt2 = ((range_to - range_from ) + 1) * cnt;
l_step = 1;
l_src_nr_max = range_to;
l_src_nr_min = range_from;
}
if(gap_debug) fprintf(stderr, "DEBUG p_dup fr:%d to:%d cnt2:%d l_src_nr_max:%d\n",
(int)range_from, (int)range_to, (int)l_cnt2, (int)l_src_nr_max);
l_percentage = 0.0;
if(ainfo_ptr->run_mode == GIMP_RUN_INTERACTIVE)
{
gimp_progress_init( _("Duplicating frames..."));
}
/* rename (renumber) all frames with number greater than current
*/
l_lo = ainfo_ptr->last_frame_nr;
l_hi = l_lo + l_cnt2;
while(l_lo > l_src_nr_max)
{
if(0 != gap_lib_rename_frame(ainfo_ptr, l_lo, l_hi))
{
gchar *tmp_errtxt;
tmp_errtxt = g_strdup_printf(_("Error: could not rename frame %ld to %ld"), l_lo, l_hi);
gap_arr_msg_win(ainfo_ptr->run_mode, tmp_errtxt);
g_free(tmp_errtxt);
return -1;
}
l_lo--;
l_hi--;
}
l_percentage_step = 1.0 / ((1.0 + l_hi) - l_src_nr_max);
if(ainfo_ptr->run_mode == GIMP_RUN_INTERACTIVE)
{
l_percentage += l_percentage_step;
gimp_progress_update (l_percentage);
}
/* copy cnt duplicates */
l_src_nr = range_to;
while(l_hi > l_src_nr_max)
{
l_curr_name = gap_lib_alloc_fname(ainfo_ptr->basename, l_src_nr, ainfo_ptr->extension);
l_dup_name = gap_lib_alloc_fname(ainfo_ptr->basename, l_hi, ainfo_ptr->extension);
if((l_dup_name != NULL) && (l_curr_name != NULL))
{
gap_lib_image_file_copy(l_curr_name, l_dup_name);
g_free(l_dup_name);
g_free(l_curr_name);
}
if(ainfo_ptr->run_mode == GIMP_RUN_INTERACTIVE)
{
l_percentage += l_percentage_step;
gimp_progress_update (l_percentage);
}
l_src_nr -= l_step;
if(l_src_nr < l_src_nr_min) l_src_nr = l_src_nr_max;
if(l_src_nr > l_src_nr_max) l_src_nr = l_src_nr_min;
l_hi--;
}
/* restore current position */
ainfo_ptr->frame_cnt += l_cnt2;
ainfo_ptr->last_frame_nr = ainfo_ptr->first_frame_nr + ainfo_ptr->frame_cnt -1;
/* load from the "new" current frame */
/* hof: the current frame stays the same after duplicating frames.
* therefore we can skip the reload here.
* (reload failed at the gimp_displays_reconnect call, when invoked from script-fu
* in NONINTERACTIVE mode, dont know why ?)
*/
/* if(ainfo_ptr->new_filename != NULL) g_free(ainfo_ptr->new_filename);
*ainfo_ptr->new_filename = gap_lib_alloc_fname(ainfo_ptr->basename,
* ainfo_ptr->curr_frame_nr,
* ainfo_ptr->extension);
* return (gap_lib_load_named_frame(ainfo_ptr->image_id, ainfo_ptr->new_filename));
*/
return (ainfo_ptr->image_id);
} /* end p_dup */
/* ============================================================================
* p_exchg
*
* save current frame, exchange its name with destination frame on disk
* and reload current frame (now has contents of dest. and vice versa)
*
* return image_id (of the new loaded frame) on success
* or -1 on errors
* ============================================================================
*/
gint32
p_exchg(GapAnimInfo *ainfo_ptr, long dest)
{
long l_tmp_nr;
gchar *tmp_errtxt;
l_tmp_nr = ainfo_ptr->last_frame_nr + 4; /* use a free frame_nr for temp name */
if((dest < 1) || (dest == ainfo_ptr->curr_frame_nr))
return -1;
if(gap_lib_gap_check_save_needed(ainfo_ptr->image_id))
{
if(gap_lib_save_named_frame(ainfo_ptr->image_id, ainfo_ptr->old_filename) < 0)
return -1;
}
/* rename (renumber) frames */
if(0 != gap_lib_rename_frame(ainfo_ptr, dest, l_tmp_nr))
{
tmp_errtxt = g_strdup_printf(_("Error: could not rename frame %ld to %ld"), dest, l_tmp_nr);
gap_arr_msg_win(ainfo_ptr->run_mode, tmp_errtxt);
g_free(tmp_errtxt);
return -1;
}
if(0 != gap_lib_rename_frame(ainfo_ptr, ainfo_ptr->curr_frame_nr, dest))
{
tmp_errtxt = g_strdup_printf(_("Error: could not rename frame %ld to %ld"), ainfo_ptr->curr_frame_nr, dest);
gap_arr_msg_win(ainfo_ptr->run_mode, tmp_errtxt);
g_free(tmp_errtxt);
return -1;
}
if(0 != gap_lib_rename_frame(ainfo_ptr, l_tmp_nr, ainfo_ptr->curr_frame_nr))
{
tmp_errtxt = g_strdup_printf(_("Error: could not rename frame %ld to %ld"), l_tmp_nr, ainfo_ptr->curr_frame_nr);
gap_arr_msg_win(ainfo_ptr->run_mode, tmp_errtxt);
g_free(tmp_errtxt);
return -1;
}
/* load from the "new" current frame */
if(ainfo_ptr->new_filename != NULL) g_free(ainfo_ptr->new_filename);
ainfo_ptr->new_filename = gap_lib_alloc_fname(ainfo_ptr->basename,
ainfo_ptr->curr_frame_nr,
ainfo_ptr->extension);
return(gap_lib_load_named_frame(ainfo_ptr->image_id, ainfo_ptr->new_filename));
} /* end p_exchg */
/* ============================================================================
* p_shift
*
* all frmaes in the given range are renumbered (shifted)
* according to cnt:
* example: cnt == 1 : range before 3, 4, 5, 6, 7
* range after 4, 5, 6, 7, 3
*
* return image_id (of the new loaded frame) on success
* or -1 on errors
* ============================================================================
*/
static gint32
p_shift(GapAnimInfo *ainfo_ptr, long cnt, long range_from, long range_to)
{
long l_lo, l_hi, l_curr, l_dst;
long l_upper;
long l_shift;
gchar *l_curr_name;
gchar *tmp_errtxt;
gdouble l_percentage, l_percentage_step;
if(gap_debug) fprintf(stderr, "DEBUG p_shift fr:%d to:%d cnt:%d\n",
(int)range_from, (int)range_to, (int)cnt);
if(range_from == range_to) return -1;
/* clip range */
if(range_from > ainfo_ptr->last_frame_nr) range_from = ainfo_ptr->last_frame_nr;
if(range_to > ainfo_ptr->last_frame_nr) range_to = ainfo_ptr->last_frame_nr;
if(range_from < ainfo_ptr->first_frame_nr) range_from = ainfo_ptr->first_frame_nr;
if(range_to < ainfo_ptr->first_frame_nr) range_to = ainfo_ptr->first_frame_nr;
if(range_to < range_from)
{
l_lo = range_to;
l_hi = range_from;
}
else
{
l_lo = range_from;
l_hi = range_to;
}
/* limit shift amount to number of frames in range */
l_shift = cnt % (l_hi - l_lo);
if(gap_debug) fprintf(stderr, "DEBUG p_shift shift:%d\n",
(int)l_shift);
if(l_shift == 0) return -1;
l_curr_name = gap_lib_alloc_fname(ainfo_ptr->basename, ainfo_ptr->curr_frame_nr, ainfo_ptr->extension);
if(gap_lib_gap_check_save_needed(ainfo_ptr->image_id))
{
/* save current frame */
gap_lib_save_named_frame(ainfo_ptr->image_id, l_curr_name);
}
g_free(l_curr_name);
l_percentage = 0.0;
if(ainfo_ptr->run_mode == GIMP_RUN_INTERACTIVE)
{
gimp_progress_init( _("Renumber frame sequence..."));
}
/* rename (renumber) all frames (using high numbers)
*/
l_upper = ainfo_ptr->last_frame_nr +100;
l_percentage_step = 0.5 / ((1.0 + l_lo) - l_hi);
for(l_curr = l_lo; l_curr <= l_hi; l_curr++)
{
if(0 != gap_lib_rename_frame(ainfo_ptr, l_curr, l_curr + l_upper))
{
tmp_errtxt = g_strdup_printf(_("Error: could not rename frame %ld to %ld"), l_lo, l_hi);
gap_arr_msg_win(ainfo_ptr->run_mode, tmp_errtxt);
g_free(tmp_errtxt);
return -1;
}
if(ainfo_ptr->run_mode == GIMP_RUN_INTERACTIVE)
{
l_percentage += l_percentage_step;
gimp_progress_update (l_percentage);
}
}
/* rename (renumber) all frames (using desied destination numbers)
*/
l_dst = l_lo + l_shift;
if (l_dst > l_hi) { l_dst -= (l_lo -1); }
if (l_dst < l_lo) { l_dst += ((l_hi - l_lo) +1); }
for(l_curr = l_upper + l_lo; l_curr <= l_upper + l_hi; l_curr++)
{
if (l_dst > l_hi) { l_dst = l_lo; }
if(0 != gap_lib_rename_frame(ainfo_ptr, l_curr, l_dst))
{
tmp_errtxt = g_strdup_printf(_("Error: could not rename frame %ld to %ld"), l_lo, l_hi);
gap_arr_msg_win(ainfo_ptr->run_mode, tmp_errtxt);
g_free(tmp_errtxt);
return -1;
}
if(ainfo_ptr->run_mode == GIMP_RUN_INTERACTIVE)
{
l_percentage += l_percentage_step;
gimp_progress_update (l_percentage);
}
l_dst ++;
}
/* load from the "new" current frame */
if(ainfo_ptr->new_filename != NULL) g_free(ainfo_ptr->new_filename);
ainfo_ptr->new_filename = gap_lib_alloc_fname(ainfo_ptr->basename,
ainfo_ptr->curr_frame_nr,
ainfo_ptr->extension);
return(gap_lib_load_named_frame(ainfo_ptr->image_id, ainfo_ptr->new_filename));
} /* end p_shift */
/* ============================================================================
* p_reverse
*
* all frames in the given range are renumbered in reverse order
*
* example: range before 3, 4, 5, 6, 7
* range after 7, 6, 5, 4, 3
*
* return image_id (of the new loaded frame) on success
* or -1 on errors
* ============================================================================
*/
static gint32
p_reverse(GapAnimInfo *ainfo_ptr, long range_from, long range_to)
{
long l_tmp_nr;
long l_lo, l_hi, l_curr;
long l_swap;
gchar *tmp_errtxt;
gdouble l_percentage;
l_tmp_nr = ainfo_ptr->last_frame_nr + 4; /* use a free frame_nr for temp name */
if(gap_debug) fprintf(stderr, "DEBUG p_reverse fr:%d to:%d\n",
(int)range_from, (int)range_to);
if(range_from == range_to) return -1;
/* clip range */
if(range_from > ainfo_ptr->last_frame_nr) range_from = ainfo_ptr->last_frame_nr;
if(range_to > ainfo_ptr->last_frame_nr) range_to = ainfo_ptr->last_frame_nr;
if(range_from < ainfo_ptr->first_frame_nr) range_from = ainfo_ptr->first_frame_nr;
if(range_to < ainfo_ptr->first_frame_nr) range_to = ainfo_ptr->first_frame_nr;
if(range_to < range_from)
{
l_lo = range_to;
l_hi = range_from;
}
else
{
l_lo = range_from;
l_hi = range_to;
}
if(l_hi <= l_lo) return -1;
if(gap_lib_gap_check_save_needed(ainfo_ptr->image_id))
{
if(gap_lib_save_named_frame(ainfo_ptr->image_id, ainfo_ptr->old_filename) < 0)
return -1;
}
l_percentage = 0.0;
if(ainfo_ptr->run_mode == GIMP_RUN_INTERACTIVE)
{
gimp_progress_init( _("Renumber frame sequence..."));
}
/* swap lo with high for each of the (first half of the) frames */
for(l_curr = l_lo; l_curr < l_lo + ((l_hi - l_lo + 1) / 2); l_curr++)
{
l_swap = l_hi - (l_curr - l_lo);
/* rename hi to temp */
if(0 != gap_lib_rename_frame(ainfo_ptr, l_swap, l_tmp_nr))
{
tmp_errtxt = g_strdup_printf(_("Error: could not rename frame %ld to %ld"), l_swap, l_tmp_nr);
gap_arr_msg_win(ainfo_ptr->run_mode, tmp_errtxt);
g_free(tmp_errtxt);
return -1;
}
/* rename lo to hi */
if(0 != gap_lib_rename_frame(ainfo_ptr, l_curr, l_swap))
{
tmp_errtxt = g_strdup_printf(_("Error: could not rename frame %ld to %ld"), ainfo_ptr->curr_frame_nr, l_swap);
gap_arr_msg_win(ainfo_ptr->run_mode, tmp_errtxt);
g_free(tmp_errtxt);
return -1;
}
/* rename temp to lo */
if(0 != gap_lib_rename_frame(ainfo_ptr, l_tmp_nr, l_curr))
{
tmp_errtxt = g_strdup_printf(_("Error: could not rename frame %ld to %ld"), l_tmp_nr, ainfo_ptr->curr_frame_nr);
gap_arr_msg_win(ainfo_ptr->run_mode, tmp_errtxt);
g_free(tmp_errtxt);
return -1;
}
if (ainfo_ptr->run_mode == GIMP_RUN_INTERACTIVE)
{
l_percentage = (double)((l_curr - l_lo + 1) / ((l_hi - l_lo + 1) / 2.0 ));
if (l_percentage > 1.0) l_percentage = 1.0;
gimp_progress_update (l_percentage);
}
}
/* load from the "new" current frame */
if(ainfo_ptr->new_filename != NULL) g_free(ainfo_ptr->new_filename);
ainfo_ptr->new_filename = gap_lib_alloc_fname(ainfo_ptr->basename,
ainfo_ptr->curr_frame_nr,
ainfo_ptr->extension);
return(gap_lib_load_named_frame(ainfo_ptr->image_id, ainfo_ptr->new_filename));
} /* end p_reverse */
/* ============================================================================
* gap_base_next gap_base_prev
*
* store the current Gimp Image to the current video frame
* and load it from the next/prev video frame on disk.
*
* return image_id (of the new loaded frame) on success
* or -1 on errors
* ============================================================================
*/
gint32
gap_base_next(GimpRunMode run_mode, gint32 image_id)
{
int rc;
GapAnimInfo *ainfo_ptr;
rc = -1;
ainfo_ptr = gap_lib_alloc_ainfo(image_id, run_mode);
if(ainfo_ptr != NULL)
{
ainfo_ptr->frame_nr = ainfo_ptr->curr_frame_nr + 1;
rc = gap_lib_replace_image(ainfo_ptr);
gap_lib_free_ainfo(&ainfo_ptr);
}
return(rc);
} /* end gap_base_next */
gint32
gap_base_prev(GimpRunMode run_mode, gint32 image_id)
{
int rc;
GapAnimInfo *ainfo_ptr;
rc = -1;
ainfo_ptr = gap_lib_alloc_ainfo(image_id, run_mode);
if(ainfo_ptr != NULL)
{
ainfo_ptr->frame_nr = ainfo_ptr->curr_frame_nr - 1;
rc = gap_lib_replace_image(ainfo_ptr);
gap_lib_free_ainfo(&ainfo_ptr);
}
return(rc);
} /* end gap_base_prev */
/* ============================================================================
* gap_base_first gap_base_last
*
* store the current Gimp Image to the current video frame
* and load it from the first/last video frame on disk.
* ============================================================================
*/
gint32
gap_base_first(GimpRunMode run_mode, gint32 image_id)
{
int rc;
GapAnimInfo *ainfo_ptr;
rc = -1;
ainfo_ptr = gap_lib_alloc_ainfo(image_id, run_mode);
if(ainfo_ptr != NULL)
{
if (0 == gap_lib_dir_ainfo(ainfo_ptr))
{
ainfo_ptr->frame_nr = ainfo_ptr->first_frame_nr;
rc = gap_lib_replace_image(ainfo_ptr);
}
gap_lib_free_ainfo(&ainfo_ptr);
}
return(rc);
} /* end gap_base_first */
gint32
gap_base_last(GimpRunMode run_mode, gint32 image_id)
{
int rc;
GapAnimInfo *ainfo_ptr;
rc = -1;
ainfo_ptr = gap_lib_alloc_ainfo(image_id, run_mode);
if(ainfo_ptr != NULL)
{
if (0 == gap_lib_dir_ainfo(ainfo_ptr))
{
ainfo_ptr->frame_nr = ainfo_ptr->last_frame_nr;
rc = gap_lib_replace_image(ainfo_ptr);
}
gap_lib_free_ainfo(&ainfo_ptr);
}
return(rc);
} /* end gap_base_last */
/* ============================================================================
* gap_base_goto
*
* store the current Gimp Image to disk
* and load it from the video frame on disk that has the specified frame Nr.
* GIMP_RUN_INTERACTIVE:
* show dialogwindow where user can enter the destination frame Nr.
* ============================================================================
*/
gint32
gap_base_goto(GimpRunMode run_mode, gint32 image_id, int nr)
{
int rc;
GapAnimInfo *ainfo_ptr;
long l_dest;
gchar *l_hline;
gchar *l_title;
rc = -1;
ainfo_ptr = gap_lib_alloc_ainfo(image_id, run_mode);
if(ainfo_ptr != NULL)
{
if (0 == gap_lib_dir_ainfo(ainfo_ptr))
{
if(0 != gap_lib_chk_framerange(ainfo_ptr)) return -1;
if(run_mode == GIMP_RUN_INTERACTIVE)
{
l_title = g_strdup_printf (_("Go To Frame (%ld/%ld)")
, ainfo_ptr->curr_frame_nr
, ainfo_ptr->frame_cnt);
l_hline = g_strdup_printf (_("Destination Frame Number (%ld - %ld)")
, ainfo_ptr->first_frame_nr
, ainfo_ptr->last_frame_nr);
l_dest = gap_arr_slider_dialog(l_title, l_hline,
_("Number:")
,_("Go to this frame number") /* tooltip */
, ainfo_ptr->first_frame_nr
, ainfo_ptr->last_frame_nr
, ainfo_ptr->curr_frame_nr
, TRUE
, NULL /* help_id NULL: has no help button */
);
g_free (l_title);
g_free (l_hline);
if(l_dest < 0)
{
/* Cancel button: go back to current frame */
l_dest = ainfo_ptr->curr_frame_nr;
}
if(0 != gap_lib_chk_framechange(ainfo_ptr))
{
l_dest = -1;
}
}
else
{
l_dest = nr;
}
if(l_dest >= 0)
{
ainfo_ptr->frame_nr = l_dest;
rc = gap_lib_replace_image(ainfo_ptr);
}
}
gap_lib_free_ainfo(&ainfo_ptr);
}
return(rc);
} /* end gap_base_goto */
/* ------------------------
* p_delete_confirm_dialog
* ------------------------
*/
static gboolean
p_delete_confirm_dialog(GapAnimInfo *ainfo_ptr, long range_from, long range_to)
{
gchar *msg_txt;
gboolean l_rc;
msg_txt = g_strdup_printf(_("Frames %d - %d will be deleted. "
"There will be no undo for this operation.")
, (int)range_from
, (int)range_to
);
l_rc = gap_arr_confirm_dialog(msg_txt
, _("Confirm Frame Delete") /* title_txt */
, _("Confirm Frame Delete") /* frame_txt */
);
g_free(msg_txt);
return (l_rc);
} /* end p_delete_confirm_dialog */
/* ============================================================================
* gap_base_del
* ============================================================================
*/
gint32
gap_base_del(GimpRunMode run_mode, gint32 image_id, int nr)
{
int rc;
GapAnimInfo *ainfo_ptr;
long l_cnt;
long l_max;
gchar *l_hline;
gchar *l_title;
gchar *l_tooltip;
rc = -1;
ainfo_ptr = gap_lib_alloc_ainfo(image_id, run_mode);
if(ainfo_ptr != NULL)
{
if (0 == gap_lib_dir_ainfo(ainfo_ptr))
{
if(0 != gap_lib_chk_framerange(ainfo_ptr)) return -1;
if(run_mode == GIMP_RUN_INTERACTIVE)
{
l_title = g_strdup_printf (_("Delete Frames (%ld/%ld)")
, ainfo_ptr->curr_frame_nr
, ainfo_ptr->frame_cnt);
l_hline = g_strdup_printf (_("Delete frames from %ld to (number)")
, ainfo_ptr->curr_frame_nr);
l_max = ainfo_ptr->last_frame_nr;
if(l_max == ainfo_ptr->curr_frame_nr)
{
/* bugfix: the slider needs a maximum > minimum
* (if not an error is printed, and
* a default range 0 to 100 is displayed)
*/
l_max++;
}
l_tooltip = g_strdup_printf(_("Delete frames starting at current number %d "
"up to this number (inclusive)")
, (int)ainfo_ptr->curr_frame_nr );
l_cnt = gap_arr_slider_dialog(l_title, l_hline
, _("Number:")
, l_tooltip
, ainfo_ptr->curr_frame_nr
, l_max
, ainfo_ptr->curr_frame_nr
, TRUE
, GAP_HELP_ID_DELETE);
g_free (l_tooltip);
g_free (l_title);
g_free (l_hline);
if(l_cnt >= 0)
{
l_cnt = 1 + l_cnt - ainfo_ptr->curr_frame_nr;
/* ask the user to confirm delete (there is no undo) */
if(!p_delete_confirm_dialog(ainfo_ptr
,ainfo_ptr->curr_frame_nr
,ainfo_ptr->curr_frame_nr + (l_cnt -1)))
{
l_cnt = -1; /* Canceled by confirm dialog */
}
}
if(0 != gap_lib_chk_framechange(ainfo_ptr))
{
l_cnt = -1;
}
}
else
{
l_cnt = nr;
}
if(l_cnt >= 0)
{
/* delete l_cnt number of frames (-1 CANCEL button) */
rc = p_del(ainfo_ptr, l_cnt);
}
}
gap_lib_free_ainfo(&ainfo_ptr);
}
return(rc);
} /* end gap_base_del */
/* ------------------------
* p_density_confirm_dialog
* ------------------------
*/
static gboolean
p_density_confirm_dialog(GapAnimInfo *ainfo_ptr, long range_from, long range_to
, gdouble density_factor, gboolean density_grow)
{
gchar *msg_txt;
gdouble new_total_frames;
gdouble l_src_range_size;
gdouble l_target_range_size;
gboolean l_rc;
msg_txt = NULL;
l_src_range_size = 1+ range_to - range_from;
if(density_grow)
{
l_target_range_size = l_src_range_size * density_factor;
new_total_frames = (gdouble)ainfo_ptr->frame_cnt
- l_src_range_size
+ l_target_range_size
;
msg_txt =
g_strdup_printf(_("Frames in the range: %d - %d will be duplicated %.4f times.\n"
"This will increase the total number of frames from %d up to %d.\n"
"There will be no undo for this operation\n")
, (int)range_from
, (int)range_to
, (float)density_factor
, (int)ainfo_ptr->frame_cnt
, (int)new_total_frames
);
}
else
{
l_target_range_size = l_src_range_size / density_factor;
new_total_frames = (gdouble)ainfo_ptr->frame_cnt
- l_src_range_size
+ l_target_range_size
;
msg_txt =
g_strdup_printf(_("%.04f percent of the frames in the range: %d - %d\n"
"will be deleted.\n"
"This will decrease the total number of frames from %d down to %d\n"
"There will be no undo for this operation\n")
, (float)100.0 - (100.0 / l_src_range_size * l_target_range_size)
, (int)range_from
, (int)range_to
, (int)ainfo_ptr->frame_cnt
, (int)new_total_frames
);
}
l_rc = gap_arr_confirm_dialog(msg_txt
, _("Confirm Frame Density Change") /* title_txt */
, _("Confirm Frame Density Change") /* frame_txt */
);
g_free(msg_txt);
return (l_rc);
} /* end p_density_confirm_dialog */
/* -----------------
* p_density_dialog
* -----------------
*/
static gboolean
p_density_dialog(GapAnimInfo *ainfo_ptr, long *range_from, long *range_to
, gdouble *density_factor, gboolean *density_grow)
{
static GapArrArg argv[5];
gchar *l_title;
gint l_rci;
gboolean l_rc;
l_title = g_strdup_printf (_("Change Frame Density"));
gap_arr_arg_init(&argv[0], GAP_ARR_WGT_INT_PAIR);
argv[0].label_txt = _("From Frame:");
argv[0].constraint = TRUE;
argv[0].int_min = (gint)ainfo_ptr->first_frame_nr;
argv[0].int_max = (gint)ainfo_ptr->last_frame_nr;
argv[0].int_ret = (gint)ainfo_ptr->curr_frame_nr;
argv[0].help_txt = _("Affected range starts at this framenumber");
gap_arr_arg_init(&argv[1], GAP_ARR_WGT_INT_PAIR);
argv[1].label_txt = _("To Frame:");
argv[1].constraint = TRUE;
argv[1].int_min = (gint)ainfo_ptr->first_frame_nr;
argv[1].int_max = (gint)ainfo_ptr->last_frame_nr;
argv[1].int_ret = (gint)ainfo_ptr->last_frame_nr;
argv[1].help_txt = _("Affected range ends at this framenumber");
gap_arr_arg_init(&argv[2], GAP_ARR_WGT_FLT_PAIR);
argv[2].label_txt = _("Density:");
argv[2].constraint = FALSE;
argv[2].flt_min = 1.0;
argv[2].flt_max = 10.0;
argv[2].flt_step = 0.1;
argv[2].pagestep = 1.0;
argv[2].flt_ret = 2;
argv[2].flt_digits = 4;
argv[2].umin = 1.0;
argv[2].umax = 100.0;
argv[2].help_txt = _("Factor to increase the frame density (acts as divisor if checkbutton increase density is off)");
gap_arr_arg_init(&argv[3], GAP_ARR_WGT_TOGGLE);
argv[3].label_txt = _("Increase Density");
argv[3].help_txt = _("ON: Duplicate frames to get a target rate that is density * original_rate..\n"
"OFF: Delete frames to get a target rate that is original_rate/density.");
argv[3].int_ret = 1;
gap_arr_arg_init(&argv[4], GAP_ARR_WGT_HELP_BUTTON);
argv[4].help_id = GAP_HELP_ID_DENSITY;
l_rci = gap_arr_ok_cancel_dialog(l_title, _("Change Frames Density"), 5, argv);
g_free (l_title);
if(l_rci)
{
*range_from = (long)MIN(argv[0].int_ret, argv[1].int_ret);
*range_to = (long)MAX(argv[1].int_ret, argv[0].int_ret);
*density_factor = (gdouble)(argv[2].flt_ret);
*density_grow = (gboolean)(argv[3].int_ret);
if ((*density_factor > 1.0) && (ainfo_ptr->run_mode != GIMP_RUN_NONINTERACTIVE))
{
l_rc = p_density_confirm_dialog(ainfo_ptr
, *range_from
, *range_to
, *density_factor
, *density_grow
);
return l_rc;
}
return TRUE;
}
return FALSE;
} /* end p_density_dialog */
/* ============================================================================
* gap_base_density
* ============================================================================
*/
gint32
gap_base_density(GimpRunMode run_mode, gint32 image_id
, long range_from, long range_to
, gdouble density_factor, gboolean density_grow)
{
int l_rci;
GapAnimInfo *ainfo_ptr;
long l_from, l_to;
gdouble l_density_factor;
gboolean l_density_grow;
gboolean l_rc;
l_rci = -1;
l_rc = FALSE;
ainfo_ptr = gap_lib_alloc_ainfo(image_id, run_mode);
if(ainfo_ptr != NULL)
{
if (0 == gap_lib_dir_ainfo(ainfo_ptr))
{
if(run_mode == GIMP_RUN_INTERACTIVE)
{
if(0 != gap_lib_chk_framechange(ainfo_ptr)) { l_density_factor = -1.0; }
else
{
if(*ainfo_ptr->extension == '\0' && ainfo_ptr->frame_cnt == 0)
{
/* density was called on a frame without extension and without framenumer in its name
* (typical for new created images named like 'Untitled' (or 'Unbenannt' for german GUI or .. in other languages)
*/
gap_arr_msg_win(ainfo_ptr->run_mode,
_("Operation cancelled.\n"
"GAP video plug-ins only work with filenames\n"
"that end in numbers like _000001.xcf.\n"
"==> Rename your image, then try again."));
return -1;
}
l_rc = p_density_dialog(ainfo_ptr, &l_from, &l_to, &l_density_factor, &l_density_grow);
}
if((0 != gap_lib_chk_framechange(ainfo_ptr)) || (!l_rc))
{
l_density_factor = -1.0;
}
}
else
{
l_from = range_from;
l_to = range_to;
l_density_factor = density_factor;
l_density_grow = density_grow;
}
if(l_density_factor > 1.0)
{
/* change density by duplicating or deleting frames (on disk) */
l_rci = p_density(ainfo_ptr, l_from, l_to, l_density_factor, l_density_grow);
}
}
gap_lib_free_ainfo(&ainfo_ptr);
}
return(l_rci);
} /* end gap_base_density */
/* ============================================================================
* p_dup_dialog
*
* ============================================================================
*/
gint32
p_dup_dialog(GapAnimInfo *ainfo_ptr, long *range_from, long *range_to)
{
static GapArrArg argv[4];
gchar *l_title;
l_title = g_strdup_printf (_("Duplicate Frames (%ld/%ld)")
, ainfo_ptr->curr_frame_nr
, ainfo_ptr->frame_cnt);
gap_arr_arg_init(&argv[0], GAP_ARR_WGT_INT_PAIR);
argv[0].label_txt = _("From Frame:");
argv[0].constraint = TRUE;
argv[0].int_min = (gint)ainfo_ptr->first_frame_nr;
argv[0].int_max = (gint)ainfo_ptr->last_frame_nr;
argv[0].int_ret = (gint)ainfo_ptr->curr_frame_nr;
argv[0].help_txt = _("Source range starts at this framenumber");
gap_arr_arg_init(&argv[1], GAP_ARR_WGT_INT_PAIR);
argv[1].label_txt = _("To Frame:");
argv[1].constraint = TRUE;
argv[1].int_min = (gint)ainfo_ptr->first_frame_nr;
argv[1].int_max = (gint)ainfo_ptr->last_frame_nr;
argv[1].int_ret = (gint)ainfo_ptr->curr_frame_nr;
argv[1].help_txt = _("Source range ends at this framenumber");
gap_arr_arg_init(&argv[2], GAP_ARR_WGT_INT_PAIR);
argv[2].label_txt = _("N times:");
argv[2].constraint = FALSE;
argv[2].int_min = 1;
argv[2].int_max = 99;
argv[2].int_ret = 1;
argv[2].umin = 1;
argv[2].umax = 9999;
argv[2].help_txt = _("Copy selected range n-times (you may type in values > 99)");
gap_arr_arg_init(&argv[3], GAP_ARR_WGT_HELP_BUTTON);
argv[3].help_id = GAP_HELP_ID_DUPLICATE;
if(TRUE == gap_arr_ok_cancel_dialog(l_title, _("Make Duplicates of Frame Range"), 4, argv))
{
g_free (l_title);
*range_from = (long)(argv[0].int_ret);
*range_to = (long)(argv[1].int_ret);
return (int)(argv[2].int_ret);
}
else
{
g_free (l_title);
return -1;
}
} /* end p_dup_dialog */
/* ============================================================================
* gap_base_dup
* ============================================================================
*/
gint32
gap_base_dup(GimpRunMode run_mode, gint32 image_id, int nr,
long range_from, long range_to)
{
int rc;
GapAnimInfo *ainfo_ptr;
long l_cnt, l_from, l_to;
rc = -1;
ainfo_ptr = gap_lib_alloc_ainfo(image_id, run_mode);
if(ainfo_ptr != NULL)
{
if (0 == gap_lib_dir_ainfo(ainfo_ptr))
{
if(run_mode == GIMP_RUN_INTERACTIVE)
{
if(0 != gap_lib_chk_framechange(ainfo_ptr)) { l_cnt = -1; }
else
{
if(*ainfo_ptr->extension == '\0' && ainfo_ptr->frame_cnt == 0)
{
/* duplicate was called on a frame without extension and without framenumer in its name
* (typical for new created images named like 'Untitled' (or 'Unbenannt' for german GUI or .. in other languages)
*/
gap_arr_msg_win(ainfo_ptr->run_mode,
_("Operation cancelled.\n"
"GAP video plug-ins only work with filenames\n"
"that end in numbers like _000001.xcf.\n"
"==> Rename your image, then try again."));
return -1;
}
l_cnt = p_dup_dialog(ainfo_ptr, &l_from, &l_to);
}
if((0 != gap_lib_chk_framechange(ainfo_ptr)) || (l_cnt < 1))
{
l_cnt = -1;
}
}
else
{
l_cnt = nr;
l_from = range_from;
l_to = range_to;
}
if(l_cnt > 0)
{
/* make l_cnt duplicate frames (on disk) */
rc = p_dup(ainfo_ptr, l_cnt, l_from, l_to);
}
}
gap_lib_free_ainfo(&ainfo_ptr);
}
return(rc);
} /* end gap_base_dup */
/* ============================================================================
* gap_base_exchg
* ============================================================================
*/
gint32
gap_base_exchg(GimpRunMode run_mode, gint32 image_id, int nr)
{
int rc;
GapAnimInfo *ainfo_ptr;
long l_dest;
long l_initial;
gchar *l_title;
gchar *l_tooltip;
rc = -1;
l_initial = 1;
ainfo_ptr = gap_lib_alloc_ainfo(image_id, run_mode);
if(ainfo_ptr != NULL)
{
if (0 == gap_lib_dir_ainfo(ainfo_ptr))
{
if(0 != gap_lib_chk_framerange(ainfo_ptr)) return -1;
if(run_mode == GIMP_RUN_INTERACTIVE)
{
if(ainfo_ptr->curr_frame_nr < ainfo_ptr->last_frame_nr)
{
l_initial = ainfo_ptr->curr_frame_nr + 1;
}
else
{
l_initial = ainfo_ptr->last_frame_nr;
}
l_title = g_strdup_printf (_("Exchange Current Frame (%ld)")
, ainfo_ptr->curr_frame_nr);
l_tooltip = g_strdup_printf(_("Exchange the current frame %d "
"with the frame that has the number entered here")
, (int)ainfo_ptr->curr_frame_nr );
l_dest = gap_arr_slider_dialog(l_title,
_("Exchange with Frame"),
_("Number:")
, l_tooltip
, ainfo_ptr->first_frame_nr
, ainfo_ptr->last_frame_nr
, l_initial
, TRUE
, GAP_HELP_ID_EXCHANGE);
g_free (l_tooltip);
g_free (l_title);
if(0 != gap_lib_chk_framechange(ainfo_ptr))
{
l_dest = -1;
}
}
else
{
l_dest = nr;
}
if((l_dest >= ainfo_ptr->first_frame_nr ) && (l_dest <= ainfo_ptr->last_frame_nr ))
{
/* excange current frames with destination frame (on disk) */
rc = p_exchg(ainfo_ptr, l_dest);
}
}
gap_lib_free_ainfo(&ainfo_ptr);
}
return(rc);
} /* end gap_base_exchg */
/* ============================================================================
* p_shift_dialog
*
* ============================================================================
*/
gint32
p_shift_dialog(GapAnimInfo *ainfo_ptr, long *range_from, long *range_to)
{
static GapArrArg argv[4];
gchar *l_title;
l_title = g_strdup_printf (_("Frame Sequence Shift (%ld/%ld)")
, ainfo_ptr->curr_frame_nr
, ainfo_ptr->frame_cnt);
gap_arr_arg_init(&argv[0], GAP_ARR_WGT_INT_PAIR);
argv[0].label_txt = _("From Frame:");
argv[0].constraint = TRUE;
argv[0].int_min = (gint)ainfo_ptr->first_frame_nr;
argv[0].int_max = (gint)ainfo_ptr->last_frame_nr;
argv[0].int_ret = (gint)ainfo_ptr->curr_frame_nr;
argv[0].help_txt = _("Affected range starts at this framenumber");
gap_arr_arg_init(&argv[1], GAP_ARR_WGT_INT_PAIR);
argv[1].label_txt = _("To Frame:");
argv[1].constraint = TRUE;
argv[1].int_min = (gint)ainfo_ptr->first_frame_nr;
argv[1].int_max = (gint)ainfo_ptr->last_frame_nr;
argv[1].int_ret = (gint)ainfo_ptr->last_frame_nr;
argv[1].help_txt = _("Affected range ends at this framenumber");
gap_arr_arg_init(&argv[2], GAP_ARR_WGT_INT_PAIR);
argv[2].label_txt = _("N-Shift:");
argv[2].constraint = TRUE;
argv[2].int_min = -1 * (gint)ainfo_ptr->last_frame_nr;
argv[2].int_max = (gint)ainfo_ptr->last_frame_nr;
argv[2].int_ret = 1;
argv[2].help_txt = _("Renumber the affected frame sequence (numbers are shifted in circle by N steps)");
gap_arr_arg_init(&argv[3], GAP_ARR_WGT_HELP_BUTTON);
argv[3].help_id = GAP_HELP_ID_SHIFT;
if(TRUE == gap_arr_ok_cancel_dialog(l_title, _("Frame Sequence Shift"), 4, argv))
{
g_free (l_title);
*range_from = (long)(argv[0].int_ret);
*range_to = (long)(argv[1].int_ret);
return (int)(argv[2].int_ret);
}
else
{
g_free (l_title);
return 0;
}
} /* end p_shift_dialog */
/* ============================================================================
* p_reverse_dialog
* returns range_to - range_from
* ============================================================================
*/
gint32
p_reverse_dialog(GapAnimInfo *ainfo_ptr, long *range_from, long *range_to)
{
static GapArrArg argv[3];
gchar *l_title;
l_title = g_strdup_printf (_("Frame Sequence reverse (%ld/%ld)")
, ainfo_ptr->curr_frame_nr
, ainfo_ptr->frame_cnt);
gap_arr_arg_init(&argv[0], GAP_ARR_WGT_INT_PAIR);
argv[0].label_txt = _("From Frame:");
argv[0].constraint = TRUE;
argv[0].int_min = (gint)ainfo_ptr->first_frame_nr;
argv[0].int_max = (gint)ainfo_ptr->last_frame_nr;
argv[0].int_ret = (gint)ainfo_ptr->curr_frame_nr;
argv[0].help_txt = _("Affected range starts at this framenumber");
gap_arr_arg_init(&argv[1], GAP_ARR_WGT_INT_PAIR);
argv[1].label_txt = _("To Frame:");
argv[1].constraint = TRUE;
argv[1].int_min = (gint)ainfo_ptr->first_frame_nr;
argv[1].int_max = (gint)ainfo_ptr->last_frame_nr;
argv[1].int_ret = (gint)ainfo_ptr->last_frame_nr;
argv[1].help_txt = _("Affected range ends at this framenumber");
gap_arr_arg_init(&argv[2], GAP_ARR_WGT_HELP_BUTTON);
argv[2].help_id = GAP_HELP_ID_REVERSE;
if(TRUE == gap_arr_ok_cancel_dialog(l_title, _("Frame Sequence Reverse"), 3, argv))
{
g_free (l_title);
*range_from = (long)(argv[0].int_ret);
*range_to = (long)(argv[1].int_ret);
return (int)((long)(argv[1].int_ret) - (long)(argv[0].int_ret));
}
else
{
g_free (l_title);
return 0;
}
} /* end p_reverse_dialog */
/* ============================================================================
* gap_base_shift
* ============================================================================
*/
gint32
gap_base_shift(GimpRunMode run_mode, gint32 image_id, int nr,
long range_from, long range_to)
{
int rc;
GapAnimInfo *ainfo_ptr;
long l_cnt, l_from, l_to;
rc = -1;
ainfo_ptr = gap_lib_alloc_ainfo(image_id, run_mode);
if(ainfo_ptr != NULL)
{
if (0 == gap_lib_dir_ainfo(ainfo_ptr))
{
if(run_mode == GIMP_RUN_INTERACTIVE)
{
l_cnt = 1;
if(0 != gap_lib_chk_framechange(ainfo_ptr)) { l_cnt = 0; }
else { l_cnt = p_shift_dialog(ainfo_ptr, &l_from, &l_to); }
if((0 != gap_lib_chk_framechange(ainfo_ptr)) || (l_cnt == 0))
{
l_cnt = 0;
}
}
else
{
l_cnt = nr;
l_from = range_from;
l_to = range_to;
}
if(l_cnt != 0)
{
/* shift framesquence by l_cnt frames
* (rename all frames in the given range on disk)
*/
rc = p_shift(ainfo_ptr, l_cnt, l_from, l_to);
}
}
gap_lib_free_ainfo(&ainfo_ptr);
}
return(rc);
} /* end gap_base_shift */
/* ============================================================================
* gap_base_reverse
* ============================================================================
*/
gint32
gap_base_reverse(GimpRunMode run_mode, gint32 image_id,
long range_from, long range_to)
{
int rc;
GapAnimInfo *ainfo_ptr;
long l_cnt, l_from, l_to;
rc = -1;
ainfo_ptr = gap_lib_alloc_ainfo(image_id, run_mode);
if(ainfo_ptr != NULL)
{
if (0 == gap_lib_dir_ainfo(ainfo_ptr))
{
if(run_mode == GIMP_RUN_INTERACTIVE)
{
l_cnt = 1;
if(0 != gap_lib_chk_framechange(ainfo_ptr)) { l_cnt = 0; }
else { l_cnt = p_reverse_dialog(ainfo_ptr, &l_from, &l_to); }
/* note: 'p_reverse_dialog' returns 'to' minus 'from' */
if((0 != gap_lib_chk_framechange(ainfo_ptr)) || (l_cnt == 0))
{
l_cnt = 0;
}
}
else
{
l_from = range_from;
l_to = range_to;
l_cnt = l_to - l_from;
}
if(l_cnt != 0)
{
/* reverse framesquence
* (renames all frames in the given range on disk)
*/
rc = p_reverse(ainfo_ptr, l_from, l_to);
}
}
gap_lib_free_ainfo(&ainfo_ptr);
}
return(rc);
} /* end gap_base_reverse */
/* --------------------------------
* p_renumber_dialog
* --------------------------------
*/
static int
p_renumber_dialog(GapAnimInfo *ainfo_ptr, long *start_frame_nr, long *digits)
{
static GapArrArg argv[3];
gchar *l_title;
l_title = g_strdup_printf (_("Renumber Frames (%ld)")
, ainfo_ptr->frame_cnt);
gap_arr_arg_init(&argv[0], GAP_ARR_WGT_INT_PAIR);
argv[0].label_txt = _("First Frame Number:");
argv[0].constraint = TRUE;
argv[0].int_min = (gint)0;
argv[0].int_max = (gint)99999999;
argv[0].int_ret = (gint)1;
argv[0].help_txt = _("New framenumber for the first frame");
gap_arr_arg_init(&argv[1], GAP_ARR_WGT_INT_PAIR);
argv[1].label_txt = _("Digits:");
argv[1].constraint = TRUE;
argv[1].int_min = 1;
argv[1].int_max = GAP_LIB_MAX_DIGITS;
argv[1].int_ret = GAP_LIB_DEFAULT_DIGITS;
argv[1].help_txt = _("How many digits to use for the framenumber in the filename");
gap_arr_arg_init(&argv[2], GAP_ARR_WGT_HELP_BUTTON);
argv[2].help_id = GAP_HELP_ID_RENUMBER;
if(TRUE == gap_arr_ok_cancel_dialog(l_title, _("Renumber Frames"), 3, argv))
{
g_free (l_title);
*start_frame_nr = (long)(argv[0].int_ret);
*digits = (long)(argv[1].int_ret);
return (0);
}
else
{
g_free (l_title);
return -1;
}
} /* end p_renumber_dialog */
/* ------------------------
* gap_lib_rename_frame_digits
* ------------------------
* rename framename. the source framename number part must match with from_nr
* the resulting name has a number part with to_nr, filled up with leading zeroes
* to the specified number of digits.
* if the current frame is renumbered, we also set the image filename,
* and keep track of the new current number
*/
int
gap_lib_rename_frame_digits(GapAnimInfo *ainfo_ptr, long from_nr, long to_nr, long from_digits, long to_digits)
{
char *l_from_fname;
char *l_to_fname;
int l_rc;
l_from_fname = gap_lib_alloc_fname_fixed_digits(ainfo_ptr->basename, from_nr, ainfo_ptr->extension, from_digits);
if(l_from_fname == NULL) { return(1); }
l_to_fname = gap_lib_alloc_fname_fixed_digits(ainfo_ptr->basename, to_nr, ainfo_ptr->extension, to_digits);
if(l_to_fname == NULL) { g_free(l_from_fname); return(1); }
if(gap_debug) printf("DEBUG gap_lib_rename_frame_digits: %s ..to.. %s\n", l_from_fname, l_to_fname);
l_rc = g_rename(l_from_fname, l_to_fname);
gap_thumb_file_rename_thumbnail(l_from_fname, l_to_fname);
if (from_nr == ainfo_ptr->curr_frame_nr)
{
ainfo_ptr->curr_frame_nr = to_nr;
gimp_image_set_filename(ainfo_ptr->image_id, l_to_fname);
}
g_free(l_from_fname);
g_free(l_to_fname);
return(l_rc);
} /* end gap_lib_rename_frame_digits */
/* ----------------------------------
* p_renumber_frames
* ----------------------------------
* rename all frames with framenumbers starting at start_frame_nr
* using frame numbers with at least n digits (leading zeroes)
* and make sure that resulting framenumbers are continous
* example1: digits == 6, start_frame_nr == 2
*
* Old filenames New Filenames
* -----------------------------------------------
* frame_7.xcf frame_000002.xcf
* frame_8.xcf frame_000003.xcf
* frame_14.xcf frame_000004.xcf
* frame_16.xcf frame_000005.xcf
*
* example2: digits == 4, start_frame_nr == 8
*
* Old filenames New Filenames
* -----------------------------------------------
* frame_7.xcf frame_0008.xcf
* frame_8.xcf frame_0009.xcf
* frame_14.xcf frame_0010.xcf
* frame_16.xcf frame_0011.xcf
*
* the 2nd example is processed in 2 loops, where the 1.st loop
* steps down through all frames and makes continous numbers 0017, 0016, 0015, 0014.
* the 2nd (up stepping) pass makes the final numbers.
*
* example3: digits == 4, start_frame_nr == 8
*
* Old filenames New Filenames
* -----------------------------------------------
* frame_2.xcf frame_0008.xcf
* frame_3.xcf frame_0009.xcf
* frame_4.xcf frame_0010.xcf
* frame_5.xcf frame_0011.xcf
*
* the 3nd example does not need a 2nd pass, because the 1.st downstepping loop
* can make the requested numbers.
*/
static gint32
p_renumber_frames(GapAnimInfo *ainfo_ptr, long start_frame_nr, long digits)
{
long l_from;
long l_to;
long l_has_digits;
gboolean two_pass;
if(ainfo_ptr->run_mode == GIMP_RUN_INTERACTIVE)
{
gimp_progress_init(_("Renumber Frames"));
}
two_pass = FALSE;
if(start_frame_nr > ainfo_ptr->first_frame_nr)
{
long l_cnt;
l_from = ainfo_ptr->last_frame_nr;
l_to = ainfo_ptr->last_frame_nr + (start_frame_nr - ainfo_ptr->first_frame_nr);
l_cnt=0;
while (l_cnt < ainfo_ptr->frame_cnt)
{
if (gap_debug) printf("p_renumber_frames: DOWNSTEP l_cnt:%d l_from:%d l_to:%d\n", (int)l_cnt, (int)l_to, (int)l_from);
if( gap_lib_exists_frame_nr(ainfo_ptr, l_from, &l_has_digits) )
{
if((l_from != l_to)
|| (l_has_digits != digits))
{
if (0 != gap_lib_rename_frame_digits(ainfo_ptr, l_from, l_to, l_has_digits, digits))
{
return -1;
}
}
l_to--;
l_cnt++;
}
l_from--;
if(ainfo_ptr->run_mode == GIMP_RUN_INTERACTIVE)
{
gimp_progress_update( (gdouble)(l_cnt)
/ (gdouble)(ainfo_ptr->frame_cnt) );
}
}
if(start_frame_nr != (l_to +1))
{
two_pass = TRUE;
if(ainfo_ptr->run_mode == GIMP_RUN_INTERACTIVE)
{
gimp_progress_init(_("Renumber Frames 2nd Pass"));
}
}
}
if((start_frame_nr <= ainfo_ptr->first_frame_nr)
|| (two_pass))
{
l_from = ainfo_ptr->first_frame_nr;
l_to = start_frame_nr;
while (l_to < start_frame_nr + ainfo_ptr->frame_cnt)
{
if (gap_debug) printf("p_renumber_frames: UPSTEP l_from:%d l_to:%d\n", (int)l_to, (int)l_from);
if( gap_lib_exists_frame_nr(ainfo_ptr, l_from, &l_has_digits) )
{
if((l_from != l_to)
|| (l_has_digits != digits))
{
if(0 != gap_lib_rename_frame_digits(ainfo_ptr, l_from, l_to, l_has_digits, digits))
{
return -1;
}
}
l_to++;
}
l_from++;
if(ainfo_ptr->run_mode == GIMP_RUN_INTERACTIVE)
{
gimp_progress_update( (gdouble)(l_from - ainfo_ptr->first_frame_nr)
/ (gdouble)(1+ (ainfo_ptr->last_frame_nr - ainfo_ptr->first_frame_nr)) );
}
}
}
return 0; /* OK */
} /* end p_renumber_frames */
/* ============================================================================
* gap_base_renumber
* ============================================================================
*/
gint32
gap_base_renumber(GimpRunMode run_mode, gint32 image_id,
long start_frame_nr, long digits)
{
gint32 rc;
GapAnimInfo *ainfo_ptr;
long l_cnt, l_start_frame_nr, l_digits;
rc = -1;
l_cnt = 0;
ainfo_ptr = gap_lib_alloc_ainfo(image_id, run_mode);
if(ainfo_ptr != NULL)
{
if (0 == gap_lib_dir_ainfo(ainfo_ptr))
{
if(run_mode == GIMP_RUN_INTERACTIVE)
{
if(0 != gap_lib_chk_framechange(ainfo_ptr)) { l_cnt = -1; }
else
{
l_cnt = p_renumber_dialog(ainfo_ptr, &l_start_frame_nr, &l_digits);
}
if(0 != gap_lib_chk_framechange(ainfo_ptr))
{
l_cnt = -1;
}
}
else
{
l_start_frame_nr = start_frame_nr;
l_digits = digits;
}
if(gap_debug) printf("gap_base_renumber: l_cnt:%d l_start_frame_nr:%d l_digits:%d\n", (int)l_cnt, (int)l_start_frame_nr, (int)l_digits);
if(l_cnt >= 0)
{
/* rename all frames (on disk) */
rc = p_renumber_frames(ainfo_ptr, l_start_frame_nr, l_digits);
if(rc >= 0)
{
rc = image_id; /* if OK, return current image id */
}
}
}
gap_lib_free_ainfo(&ainfo_ptr);
}
return(rc);
} /* end gap_base_renumber */
|