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
|
// This file is part of Golly.
// See docs/License.html for the copyright notice.
#include "bigint.h"
#include "lifealgo.h"
#include "qlifealgo.h"
#include "hlifealgo.h"
#include "viewport.h"
#include "utils.h" // for Warning, Fatal, YesNo, Beep, etc
#include "prefs.h" // for showgridlines, etc
#include "status.h" // for DisplayMessage, etc
#include "render.h" // for InitPaste
#include "undo.h" // for currlayer->undoredo->...
#include "select.h" // for Selection
#include "algos.h" // for algo_type, *_ALGO, CreateNewUniverse, etc
#include "layer.h" // for currlayer, ResizeLayers, etc
#include "control.h" // for generating, ChangeRule
#include "file.h" // for GetTextFromClipboard
#include "view.h"
#include <cstdlib> // for abs
#ifdef ANDROID_GUI
#include "jnicalls.h" // for UpdatePattern, BeginProgress, etc
#endif
#ifdef WEB_GUI
#include "webcalls.h" // for UpdatePattern, BeginProgress, etc
#endif
#ifdef IOS_GUI
#import "PatternViewController.h" // for UpdatePattern, BeginProgress, etc
#endif
// -----------------------------------------------------------------------------
// exported data:
const char* empty_selection = "There are no live cells in the selection.";
const char* empty_outside = "There are no live cells outside the selection.";
const char* no_selection = "There is no selection.";
const char* selection_too_big = "Selection is outside +/- 10^9 boundary.";
const char* pattern_too_big = "Pattern is outside +/- 10^9 boundary.";
const char* origin_restored = "Origin restored.";
bool widescreen = true; // is screen wide enough to show all info? (assume a tablet device; eg. iPad)
bool fullscreen = false; // in full screen mode?
bool nopattupdate = false; // disable pattern updates?
bool waitingforpaste = false; // waiting for user to decide what to do with paste image?
gRect pasterect; // bounding box of paste image
int pastex, pastey; // where user wants to paste clipboard pattern
bool drawingcells = false; // currently drawing cells?
bool draw_pending = false; // delay drawing?
int pendingx, pendingy; // start of delayed drawing
// -----------------------------------------------------------------------------
// local data:
static int cellx, celly; // current cell's 32-bit position
static bigint bigcellx, bigcelly; // current cell's position
static int initselx, initsely; // location of initial selection click
static bool forceh; // resize selection horizontally?
static bool forcev; // resize selection vertically?
static bigint anchorx, anchory; // anchor cell of current selection
static Selection prevsel; // previous selection
static int drawstate; // new cell state (0..255)
static Layer* pastelayer = NULL; // temporary layer with pattern to be pasted
static gRect pastebox; // bounding box (in cells) for paste pattern
static std::string oldrule; // rule before readclipboard is called
static std::string newrule; // rule after readclipboard is called
static bool pickingcells = false; // picking cell states by dragging finger?
static bool selectingcells = false; // selecting cells by dragging finger?
static bool movingview = false; // moving view by dragging finger?
static bool movingpaste = false; // moving paste image by dragging finger?
// -----------------------------------------------------------------------------
void UpdatePatternAndStatus()
{
if (inscript || currlayer->undoredo->doingscriptchanges) return;
UpdatePattern();
UpdateStatus();
}
// -----------------------------------------------------------------------------
void UpdateEverything()
{
UpdatePattern();
UpdateStatus();
UpdateEditBar();
}
// -----------------------------------------------------------------------------
bool OutsideLimits(bigint& t, bigint& l, bigint& b, bigint& r)
{
return ( t < bigint::min_coord || l < bigint::min_coord ||
b > bigint::max_coord || r > bigint::max_coord );
}
// -----------------------------------------------------------------------------
void TestAutoFit()
{
if (currlayer->autofit && generating) {
// assume user no longer wants us to do autofitting
currlayer->autofit = false;
}
}
// -----------------------------------------------------------------------------
void FitInView(int force)
{
if (waitingforpaste && currlayer->algo->isEmpty()) {
// fit paste image in viewport if there is no pattern
// (note that pastelayer->algo->fit() won't work because paste image
// might be bigger than paste pattern)
int vwd = currlayer->view->getxmax();
int vht = currlayer->view->getymax();
int pwd, pht;
int mag = MAX_MAG;
while (true) {
pwd = mag >= 0 ? (pastebox.width << mag) - 1 : (pastebox.width >> -mag);
pht = mag >= 0 ? (pastebox.height << mag) - 1 : (pastebox.height >> -mag);
if (vwd >= pwd && vht >= pht) {
// all of paste image can fit within viewport at this mag
break;
}
mag--;
}
// set mag and move viewport to origin
currlayer->view->setpositionmag(bigint::zero, bigint::zero, mag);
// move paste image to middle of viewport
pastex = (vwd - pwd) / 2;
pastey = (vht - pht) / 2;
} else {
// fit current pattern in viewport
// (if no pattern this will set mag to MAX_MAG and move to origin)
currlayer->algo->fit(*currlayer->view, force);
}
}
// -----------------------------------------------------------------------------
bool PointInView(int x, int y)
{
return ( x >= 0 && x <= currlayer->view->getxmax() &&
y >= 0 && y <= currlayer->view->getymax() );
}
// -----------------------------------------------------------------------------
bool PointInPasteImage(int x, int y)
{
return (x >= pasterect.x && x <= pasterect.x + pasterect.width-1 &&
y >= pasterect.y && y <= pasterect.y + pasterect.height-1);
}
// -----------------------------------------------------------------------------
bool PointInSelection(int x, int y)
{
pair<bigint, bigint> cellpos = currlayer->view->at(x, y);
int cx = cellpos.first.toint();
int cy = cellpos.second.toint();
return currlayer->currsel.ContainsCell(cx, cy);
}
// -----------------------------------------------------------------------------
bool CellInGrid(const bigint& x, const bigint& y)
{
// return true if cell at x,y is within bounded grid
if (currlayer->algo->gridwd > 0 &&
(x < currlayer->algo->gridleft ||
x > currlayer->algo->gridright)) return false;
if (currlayer->algo->gridht > 0 &&
(y < currlayer->algo->gridtop ||
y > currlayer->algo->gridbottom)) return false;
return true;
}
// -----------------------------------------------------------------------------
bool PointInGrid(int x, int y)
{
// is given viewport location also in grid?
if (currlayer->algo->gridwd == 0 && currlayer->algo->gridht == 0) {
// unbounded grid
return true;
}
pair<bigint, bigint> cellpos = currlayer->view->at(x, y);
return CellInGrid(cellpos.first, cellpos.second);
}
// -----------------------------------------------------------------------------
void RememberOneCellChange(int cx, int cy, int oldstate, int newstate)
{
if (allowundo) {
// remember this cell change for later undo/redo
currlayer->undoredo->SaveCellChange(cx, cy, oldstate, newstate);
}
}
// -----------------------------------------------------------------------------
void DrawCells(int x, int y)
{
// make sure x,y is within viewport
if (x < 0) x = 0;
if (y < 0) y = 0;
if (x > currlayer->view->getxmax()) x = currlayer->view->getxmax();
if (y > currlayer->view->getymax()) y = currlayer->view->getymax();
// make sure x,y is within bounded grid
pair<bigint, bigint> cellpos = currlayer->view->at(x, y);
if (currlayer->algo->gridwd > 0) {
if (cellpos.first < currlayer->algo->gridleft) cellpos.first = currlayer->algo->gridleft;
if (cellpos.first > currlayer->algo->gridright) cellpos.first = currlayer->algo->gridright;
}
if (currlayer->algo->gridht > 0) {
if (cellpos.second < currlayer->algo->gridtop) cellpos.second = currlayer->algo->gridtop;
if (cellpos.second > currlayer->algo->gridbottom) cellpos.second = currlayer->algo->gridbottom;
}
if ( currlayer->view->getmag() < 0 ||
OutsideLimits(cellpos.second, cellpos.first, cellpos.second, cellpos.first) ) {
return;
}
int currstate;
int numchanged = 0;
int newx = cellpos.first.toint();
int newy = cellpos.second.toint();
if ( newx != cellx || newy != celly ) {
// draw a line of cells using Bresenham's algorithm
int d, ii, jj, di, ai, si, dj, aj, sj;
di = newx - cellx;
ai = abs(di) << 1;
si = (di < 0)? -1 : 1;
dj = newy - celly;
aj = abs(dj) << 1;
sj = (dj < 0)? -1 : 1;
ii = cellx;
jj = celly;
lifealgo* curralgo = currlayer->algo;
if (ai > aj) {
d = aj - (ai >> 1);
while (ii != newx) {
currstate = curralgo->getcell(ii, jj);
if (currstate != drawstate) {
curralgo->setcell(ii, jj, drawstate);
RememberOneCellChange(ii, jj, currstate, drawstate);
numchanged++;
}
if (d >= 0) {
jj += sj;
d -= ai;
}
ii += si;
d += aj;
}
} else {
d = ai - (aj >> 1);
while (jj != newy) {
currstate = curralgo->getcell(ii, jj);
if (currstate != drawstate) {
curralgo->setcell(ii, jj, drawstate);
RememberOneCellChange(ii, jj, currstate, drawstate);
numchanged++;
}
if (d >= 0) {
ii += si;
d -= aj;
}
jj += sj;
d += ai;
}
}
cellx = newx;
celly = newy;
currstate = curralgo->getcell(cellx, celly);
if (currstate != drawstate) {
curralgo->setcell(cellx, celly, drawstate);
RememberOneCellChange(cellx, celly, currstate, drawstate);
numchanged++;
}
}
if (numchanged > 0) {
currlayer->algo->endofpattern();
MarkLayerDirty();
UpdatePattern();
UpdateStatus();
}
}
// -----------------------------------------------------------------------------
void StartDrawingCells(int x, int y)
{
if (generating) {
// temporarily stop generating when drawing cells (necessary for undo/redo)
PauseGenerating();
if (event_checker > 0) {
// delay drawing until after step() finishes in NextGeneration()
draw_pending = true;
pendingx = x;
pendingy = y;
return;
}
// NOTE: ResumeGenerating() is called in TouchEnded()
}
if (!PointInGrid(x, y)) {
ErrorMessage("Drawing is not allowed outside grid.");
return;
}
if (currlayer->view->getmag() < 0) {
ErrorMessage("Drawing is not allowed at scales greater than 1 cell per pixel.");
return;
}
// check that x,y is within getcell/setcell limits
pair<bigint, bigint> cellpos = currlayer->view->at(x, y);
if ( OutsideLimits(cellpos.second, cellpos.first, cellpos.second, cellpos.first) ) {
ErrorMessage("Drawing is not allowed outside +/- 10^9 boundary.");
return;
}
drawingcells = true;
// save dirty state now for later use by RememberCellChanges
if (allowundo) currlayer->savedirty = currlayer->dirty;
cellx = cellpos.first.toint();
celly = cellpos.second.toint();
int currstate = currlayer->algo->getcell(cellx, celly);
// reset drawing state in case it's no longer valid (due to algo/rule change)
if (currlayer->drawingstate >= currlayer->algo->NumCellStates()) {
currlayer->drawingstate = 1;
}
if (currstate == currlayer->drawingstate) {
drawstate = 0;
} else {
drawstate = currlayer->drawingstate;
}
if (currstate != drawstate) {
currlayer->algo->setcell(cellx, celly, drawstate);
currlayer->algo->endofpattern();
// remember this cell change for later undo/redo
RememberOneCellChange(cellx, celly, currstate, drawstate);
MarkLayerDirty();
UpdatePattern();
UpdateStatus(); // update population count
}
}
// -----------------------------------------------------------------------------
void PickCell(int x, int y)
{
if (!PointInGrid(x, y)) return;
pair<bigint, bigint> cellpos = currlayer->view->at(x, y);
if ( currlayer->view->getmag() < 0 ||
OutsideLimits(cellpos.second, cellpos.first, cellpos.second, cellpos.first) ) {
return;
}
int newx = cellpos.first.toint();
int newy = cellpos.second.toint();
if ( newx != cellx || newy != celly ) {
cellx = newx;
celly = newy;
currlayer->drawingstate = currlayer->algo->getcell(cellx, celly);
UpdateEditBar();
}
}
// -----------------------------------------------------------------------------
void StartPickingCells(int x, int y)
{
if (!PointInGrid(x, y)) {
ErrorMessage("Picking is not allowed outside grid.");
return;
}
if (currlayer->view->getmag() < 0) {
ErrorMessage("Picking is not allowed at scales greater than 1 cell per pixel.");
return;
}
cellx = INT_MAX;
celly = INT_MAX;
PickCell(x, y);
pickingcells = true;
}
// -----------------------------------------------------------------------------
void SelectCells(int x, int y)
{
// only select cells within view
if (x < 0) x = 0;
if (y < 0) y = 0;
if (x > currlayer->view->getxmax()) x = currlayer->view->getxmax();
if (y > currlayer->view->getymax()) y = currlayer->view->getymax();
if ( abs(initselx - x) < 2 && abs(initsely - y) < 2 && !SelectionExists() ) {
// avoid 1x1 selection if finger hasn't moved much
return;
}
// make sure x,y is within bounded grid
pair<bigint, bigint> cellpos = currlayer->view->at(x, y);
if (currlayer->algo->gridwd > 0) {
if (cellpos.first < currlayer->algo->gridleft) cellpos.first = currlayer->algo->gridleft;
if (cellpos.first > currlayer->algo->gridright) cellpos.first = currlayer->algo->gridright;
}
if (currlayer->algo->gridht > 0) {
if (cellpos.second < currlayer->algo->gridtop) cellpos.second = currlayer->algo->gridtop;
if (cellpos.second > currlayer->algo->gridbottom) cellpos.second = currlayer->algo->gridbottom;
}
if (forceh && forcev) {
// move selection
bigint xdelta = cellpos.first;
bigint ydelta = cellpos.second;
xdelta -= bigcellx;
ydelta -= bigcelly;
if ( xdelta != bigint::zero || ydelta != bigint::zero ) {
currlayer->currsel.Move(xdelta, ydelta);
bigcellx = cellpos.first;
bigcelly = cellpos.second;
}
} else {
// change selection size
if (!forcev) currlayer->currsel.SetLeftRight(cellpos.first, anchorx);
if (!forceh) currlayer->currsel.SetTopBottom(cellpos.second, anchory);
}
if (currlayer->currsel != prevsel) {
// selection has changed
DisplaySelectionSize();
prevsel = currlayer->currsel;
UpdatePatternAndStatus();
}
}
// -----------------------------------------------------------------------------
void StartSelectingCells(int x, int y)
{
TestAutoFit();
// make sure anchor cell is within bounded grid (x,y can be outside grid)
pair<bigint, bigint> cellpos = currlayer->view->at(x, y);
if (currlayer->algo->gridwd > 0) {
if (cellpos.first < currlayer->algo->gridleft) cellpos.first = currlayer->algo->gridleft;
if (cellpos.first > currlayer->algo->gridright) cellpos.first = currlayer->algo->gridright;
}
if (currlayer->algo->gridht > 0) {
if (cellpos.second < currlayer->algo->gridtop) cellpos.second = currlayer->algo->gridtop;
if (cellpos.second > currlayer->algo->gridbottom) cellpos.second = currlayer->algo->gridbottom;
}
anchorx = cellpos.first;
anchory = cellpos.second;
bigcellx = anchorx;
bigcelly = anchory;
// save original selection for RememberNewSelection
currlayer->savesel = currlayer->currsel;
// reset previous selection
prevsel.Deselect();
// for avoiding 1x1 selection if finger doesn't move much
initselx = x;
initsely = y;
// allow changing size in any direction
forceh = false;
forcev = false;
if (SelectionExists()) {
if (PointInSelection(x, y)) {
// modify current selection
currlayer->currsel.Modify(x, y, anchorx, anchory, &forceh, &forcev);
DisplaySelectionSize();
} else {
// remove current selection
currlayer->currsel.Deselect();
}
UpdatePatternAndStatus();
}
selectingcells = true;
}
// -----------------------------------------------------------------------------
void MoveView(int x, int y)
{
pair<bigint, bigint> cellpos = currlayer->view->at(x, y);
bigint xdelta = bigcellx;
bigint ydelta = bigcelly;
xdelta -= cellpos.first;
ydelta -= cellpos.second;
int xamount, yamount;
int mag = currlayer->view->getmag();
if (mag >= 0) {
// move an integral number of cells
xamount = xdelta.toint() << mag;
yamount = ydelta.toint() << mag;
} else {
// convert cell deltas to screen pixels
xdelta >>= -mag;
ydelta >>= -mag;
xamount = xdelta.toint();
yamount = ydelta.toint();
}
if ( xamount != 0 || yamount != 0 ) {
currlayer->view->move(xamount, yamount);
cellpos = currlayer->view->at(x, y);
bigcellx = cellpos.first;
bigcelly = cellpos.second;
UpdatePattern();
UpdateStatus();
}
}
// -----------------------------------------------------------------------------
void StartMovingView(int x, int y)
{
TestAutoFit();
pair<bigint, bigint> cellpos = currlayer->view->at(x, y);
bigcellx = cellpos.first;
bigcelly = cellpos.second;
movingview = true;
}
// -----------------------------------------------------------------------------
void MovePaste(int x, int y)
{
pair<bigint, bigint> cellpos = currlayer->view->at(x, y);
bigint xdelta = bigcellx;
bigint ydelta = bigcelly;
xdelta -= cellpos.first;
ydelta -= cellpos.second;
int xamount, yamount;
int mag = currlayer->view->getmag();
if (mag >= 0) {
// move an integral number of cells
xamount = xdelta.toint() << mag;
yamount = ydelta.toint() << mag;
} else {
// convert cell deltas to screen pixels
xdelta >>= -mag;
ydelta >>= -mag;
xamount = xdelta.toint();
yamount = ydelta.toint();
}
if ( xamount != 0 || yamount != 0 ) {
// shift location of pasterect
pastex -= xamount;
pastey -= yamount;
cellpos = currlayer->view->at(x, y);
bigcellx = cellpos.first;
bigcelly = cellpos.second;
UpdatePattern();
}
}
// -----------------------------------------------------------------------------
void StartMovingPaste(int x, int y)
{
pair<bigint, bigint> cellpos = currlayer->view->at(x, y);
bigcellx = cellpos.first;
bigcelly = cellpos.second;
movingpaste = true;
}
// -----------------------------------------------------------------------------
void TouchBegan(int x, int y)
{
if (waitingforpaste && PointInPasteImage(x, y)) {
StartMovingPaste(x, y);
} else if (currlayer->touchmode == drawmode) {
StartDrawingCells(x, y);
} else if (currlayer->touchmode == pickmode) {
StartPickingCells(x, y);
} else if (currlayer->touchmode == selectmode) {
StartSelectingCells(x, y);
} else if (currlayer->touchmode == movemode) {
StartMovingView(x, y);
} else if (currlayer->touchmode == zoominmode) {
ZoomInPos(x, y);
} else if (currlayer->touchmode == zoomoutmode) {
ZoomOutPos(x, y);
}
}
// -----------------------------------------------------------------------------
void TouchMoved(int x, int y)
{
// make sure x,y is within viewport
if (x < 0) x = 0;
if (y < 0) y = 0;
if (x > currlayer->view->getxmax()) x = currlayer->view->getxmax();
if (y > currlayer->view->getymax()) y = currlayer->view->getymax();
if ( drawingcells ) {
DrawCells(x, y);
} else if ( pickingcells ) {
PickCell(x, y);
} else if ( selectingcells ) {
SelectCells(x, y);
} else if ( movingview ) {
MoveView(x, y);
} else if ( movingpaste ) {
MovePaste(x, y);
}
}
// -----------------------------------------------------------------------------
void TouchEnded()
{
if (drawingcells && allowundo) {
// MarkLayerDirty has set dirty flag, so we need to
// pass in the flag state saved before drawing started
currlayer->undoredo->RememberCellChanges("Drawing", currlayer->savedirty);
UpdateEditBar(); // update various buttons
}
if (selectingcells) {
if (allowundo) RememberNewSelection("Selection");
UpdateEditBar(); // update various buttons
}
drawingcells = false;
pickingcells = false;
selectingcells = false;
movingview = false;
movingpaste = false;
ResumeGenerating();
}
// -----------------------------------------------------------------------------
bool CopyRect(int itop, int ileft, int ibottom, int iright,
lifealgo* srcalgo, lifealgo* destalgo,
bool erasesrc, const char* progmsg)
{
int wd = iright - ileft + 1;
int ht = ibottom - itop + 1;
int cx, cy;
double maxcount = (double)wd * (double)ht;
int cntr = 0;
int v = 0;
bool abort = false;
// copy (and erase if requested) live cells from given rect
// in source universe to same rect in destination universe
BeginProgress(progmsg);
for ( cy=itop; cy<=ibottom; cy++ ) {
for ( cx=ileft; cx<=iright; cx++ ) {
int skip = srcalgo->nextcell(cx, cy, v);
if (skip + cx > iright)
skip = -1; // pretend we found no more live cells
if (skip >= 0) {
// found next live cell
cx += skip;
destalgo->setcell(cx, cy, v);
if (erasesrc) srcalgo->setcell(cx, cy, 0);
} else {
cx = iright + 1; // done this row
}
cntr++;
if ((cntr % 4096) == 0) {
double prog = ((cy - itop) * (double)(iright - ileft + 1) +
(cx - ileft)) / maxcount;
abort = AbortProgress(prog, "");
if (abort) break;
}
}
if (abort) break;
}
if (erasesrc) srcalgo->endofpattern();
destalgo->endofpattern();
EndProgress();
return !abort;
}
// -----------------------------------------------------------------------------
void CopyAllRect(int itop, int ileft, int ibottom, int iright,
lifealgo* srcalgo, lifealgo* destalgo,
const char* progmsg)
{
int wd = iright - ileft + 1;
int ht = ibottom - itop + 1;
int cx, cy;
double maxcount = (double)wd * (double)ht;
int cntr = 0;
bool abort = false;
// copy all cells from given rect in srcalgo to same rect in destalgo
BeginProgress(progmsg);
for ( cy=itop; cy<=ibottom; cy++ ) {
for ( cx=ileft; cx<=iright; cx++ ) {
destalgo->setcell(cx, cy, srcalgo->getcell(cx, cy));
cntr++;
if ((cntr % 4096) == 0) {
abort = AbortProgress((double)cntr / maxcount, "");
if (abort) break;
}
}
if (abort) break;
}
destalgo->endofpattern();
EndProgress();
}
// -----------------------------------------------------------------------------
bool SelectionExists()
{
return currlayer->currsel.Exists();
}
// -----------------------------------------------------------------------------
void SelectAll()
{
SaveCurrentSelection();
if (SelectionExists()) {
currlayer->currsel.Deselect();
UpdatePatternAndStatus();
}
if (currlayer->algo->isEmpty()) {
ErrorMessage("All cells are dead.");
RememberNewSelection("Deselection");
return;
}
bigint top, left, bottom, right;
currlayer->algo->findedges(&top, &left, &bottom, &right);
currlayer->currsel.SetEdges(top, left, bottom, right);
RememberNewSelection("Select All");
DisplaySelectionSize();
UpdateEverything();
}
// -----------------------------------------------------------------------------
void RemoveSelection()
{
if (SelectionExists()) {
SaveCurrentSelection();
currlayer->currsel.Deselect();
RememberNewSelection("Deselection");
UpdateEverything();
}
}
// -----------------------------------------------------------------------------
void FitSelection()
{
if (!SelectionExists()) return;
currlayer->currsel.Fit();
TestAutoFit();
UpdateEverything();
}
// -----------------------------------------------------------------------------
void DisplaySelectionSize()
{
currlayer->currsel.DisplaySize();
}
// -----------------------------------------------------------------------------
void SaveCurrentSelection()
{
if (allowundo && !currlayer->stayclean) {
currlayer->savesel = currlayer->currsel;
}
}
// -----------------------------------------------------------------------------
void RememberNewSelection(const char* action)
{
if (allowundo && !currlayer->stayclean) {
currlayer->undoredo->RememberSelection(action);
}
}
// -----------------------------------------------------------------------------
void ClearSelection()
{
currlayer->currsel.Clear();
}
// -----------------------------------------------------------------------------
void ClearOutsideSelection()
{
currlayer->currsel.ClearOutside();
}
// -----------------------------------------------------------------------------
void CutSelection()
{
currlayer->currsel.CopyToClipboard(true);
}
// -----------------------------------------------------------------------------
void CopySelection()
{
currlayer->currsel.CopyToClipboard(false);
}
// -----------------------------------------------------------------------------
void ShrinkSelection(bool fit)
{
currlayer->currsel.Shrink(fit);
}
// -----------------------------------------------------------------------------
void RandomFill()
{
currlayer->currsel.RandomFill();
}
// -----------------------------------------------------------------------------
bool FlipSelection(bool topbottom, bool inundoredo)
{
return currlayer->currsel.Flip(topbottom, inundoredo);
}
// -----------------------------------------------------------------------------
bool RotateSelection(bool clockwise, bool inundoredo)
{
return currlayer->currsel.Rotate(clockwise, inundoredo);
}
// -----------------------------------------------------------------------------
bool GetClipboardPattern(Layer* templayer, bigint* t, bigint* l, bigint* b, bigint* r)
{
std::string data;
if ( !GetTextFromClipboard(data) ) return false;
// copy clipboard data to temporary file so we can handle all formats supported by readclipboard
FILE* tmpfile = fopen(clipfile.c_str(), "w");
if (tmpfile) {
if (fputs(data.c_str(), tmpfile) == EOF) {
fclose(tmpfile);
Warning("Could not write clipboard text to temporary file!");
return false;
}
} else {
Warning("Could not create temporary file for clipboard data!");
return false;
}
fclose(tmpfile);
// remember current rule
oldrule = currlayer->algo->getrule();
const char* err = readclipboard(clipfile.c_str(), *templayer->algo, t, l, b, r);
if (err) {
// cycle thru all other algos until readclipboard succeeds
for (int i = 0; i < NumAlgos(); i++) {
if (i != currlayer->algtype) {
delete templayer->algo;
templayer->algo = CreateNewUniverse(i);
err = readclipboard(clipfile.c_str(), *templayer->algo, t, l, b, r);
if (!err) {
templayer->algtype = i;
break;
}
}
}
}
RemoveFile(clipfile);
if (err) {
// error probably due to bad rule string in clipboard data
Warning("Could not load clipboard pattern\n(probably due to unknown rule).");
return false;
} else {
// set newrule for later use in PasteTemporaryToCurrent
newrule = templayer->algo->getrule();
return true;
}
}
// -----------------------------------------------------------------------------
bool ClipboardContainsRule()
{
std::string data;
if (!GetTextFromClipboard(data)) return false;
if (strncmp(data.c_str(), "@RULE ", 6) != 0) return false;
// extract rule name
std::string rulename;
int i = 6;
while (data[i] > ' ') {
rulename += data[i];
i++;
}
// check if rulename.rule already exists in userrules
std::string rulepath = userrules + rulename;
rulepath += ".rule";
if (FileExists(rulepath)) {
std::string question = "Do you want to replace the existing " + rulename;
question += ".rule with the version in the clipboard?";
if (!YesNo(question.c_str())) {
// don't overwrite existing .rule file
return true;
}
}
// create rulename.rule in userrules
FILE* rulefile = fopen(rulepath.c_str(), "w");
if (rulefile) {
if (fputs(data.c_str(), rulefile) == EOF) {
fclose(rulefile);
Warning("Could not write clipboard text to .rule file!");
return true;
}
} else {
Warning("Could not open .rule file for writing!");
return true;
}
fclose(rulefile);
#ifdef WEB_GUI
// ensure the .rule file persists beyond the current session
CopyRuleToLocalStorage(rulepath.c_str());
#endif
// now switch to the newly created rule
ChangeRule(rulename);
std::string msg = "Created " + rulename + ".rule";
DisplayMessage(msg.c_str());
return true;
}
// -----------------------------------------------------------------------------
void PasteClipboard()
{
// if clipboard text starts with "@RULE rulename" then install rulename.rule
// and switch to that rule
if (ClipboardContainsRule()) return;
// create a temporary layer for storing the clipboard pattern
if (pastelayer) {
Warning("Bug detected in PasteClipboard!");
delete pastelayer;
// might as well continue
}
pastelayer = CreateTemporaryLayer();
if (!pastelayer) return;
// read clipboard pattern into pastelayer
bigint top, left, bottom, right;
if ( GetClipboardPattern(pastelayer, &top, &left, &bottom, &right) ) {
// make sure given edges are within getcell/setcell limits
if ( OutsideLimits(top, left, bottom, right) ) {
ErrorMessage("Clipboard pattern is too big.");
} else {
// temporarily set currlayer to pastelayer so we can update the
// paste pattern's colors and icons
Layer* savelayer = currlayer;
currlayer = pastelayer;
UpdateLayerColors();
currlayer = savelayer;
#ifdef WEB_GUI
DisplayMessage("Drag paste image to desired location then right-click on it.");
#else
// Android and iOS devices use a touch screen
DisplayMessage("Drag paste image to desired location then tap Paste button.");
#endif
waitingforpaste = true;
// set initial position of pasterect's top left corner to near top left corner
// of viewport so all of paste image is likely to be visble and it isn't far
// to move finger from Paste button
pastex = 128;
pastey = 64;
// create image for drawing the pattern to be pasted; note that pastebox
// is not necessarily the minimal bounding box because clipboard pattern
// might have blank borders (in fact it could be empty)
int itop = top.toint();
int ileft = left.toint();
int ibottom = bottom.toint();
int iright = right.toint();
int wd = iright - ileft + 1;
int ht = ibottom - itop + 1;
SetRect(pastebox, ileft, itop, wd, ht);
InitPaste(pastelayer, pastebox);
}
}
// waitingforpaste will only be false if an error occurred
if (!waitingforpaste) {
delete pastelayer;
pastelayer = NULL;
}
}
// -----------------------------------------------------------------------------
void PasteTemporaryToCurrent(bigint top, bigint left, bigint wd, bigint ht)
{
// reset waitingforpaste now to avoid paste image being displayed prematurely
waitingforpaste = false;
bigint bottom = top; bottom += ht; bottom -= 1;
bigint right = left; right += wd; right -= 1;
// check that paste rectangle is within edit limits
if ( OutsideLimits(top, left, bottom, right) ) {
ErrorMessage("Pasting is not allowed outside +/- 10^9 boundary.");
return;
}
// set edges of pattern in pastelayer
int itop = pastebox.y;
int ileft = pastebox.x;
int ibottom = pastebox.y + pastebox.height - 1;
int iright = pastebox.x + pastebox.width - 1;
// set pastex,pastey to top left cell of paste rectangle
pastex = left.toint();
pastey = top.toint();
// selection might change if grid becomes smaller,
// so save current selection for RememberRuleChange/RememberAlgoChange
SaveCurrentSelection();
// pasting clipboard pattern can cause a rule change
int oldmaxstate = currlayer->algo->NumCellStates() - 1;
if (canchangerule > 0 && currlayer->algo->isEmpty() && oldrule != newrule) {
const char* err = currlayer->algo->setrule( newrule.c_str() );
// setrule can fail if readclipboard loaded clipboard pattern into
// a different type of algo
if (err) {
// allow rule change to cause algo change
ChangeAlgorithm(pastelayer->algtype, newrule.c_str());
} else {
// if pattern exists and is at starting gen then ensure savestart is true
// so that SaveStartingPattern will save pattern to suitable file
// (and thus undo/reset will work correctly)
if (currlayer->algo->getGeneration() == currlayer->startgen && !currlayer->algo->isEmpty()) {
currlayer->savestart = true;
}
// if grid is bounded then remove any live cells outside grid edges
if (currlayer->algo->gridwd > 0 || currlayer->algo->gridht > 0) {
ClearOutsideGrid();
}
// rule change might have changed the number of cell states;
// if there are fewer states then pattern might change
int newmaxstate = currlayer->algo->NumCellStates() - 1;
if (newmaxstate < oldmaxstate && !currlayer->algo->isEmpty()) {
ReduceCellStates(newmaxstate);
}
// use colors for new rule
UpdateLayerColors();
if (allowundo && !currlayer->stayclean) {
currlayer->undoredo->RememberRuleChange(oldrule.c_str());
}
}
}
// save cell changes if undo/redo is enabled and script isn't constructing a pattern
bool savecells = allowundo && !currlayer->stayclean;
//!!! if (savecells && inscript) SavePendingChanges();
// don't paste cells outside bounded grid
int gtop = currlayer->algo->gridtop.toint();
int gleft = currlayer->algo->gridleft.toint();
int gbottom = currlayer->algo->gridbottom.toint();
int gright = currlayer->algo->gridright.toint();
if (currlayer->algo->gridwd == 0) {
// grid has infinite width
gleft = INT_MIN;
gright = INT_MAX;
}
if (currlayer->algo->gridht == 0) {
// grid has infinite height
gtop = INT_MIN;
gbottom = INT_MAX;
}
// copy pattern from temporary universe to current universe
int tx, ty, cx, cy;
double maxcount = wd.todouble() * ht.todouble();
int cntr = 0;
bool abort = false;
bool pattchanged = false;
bool reduced = false;
lifealgo* pastealgo = pastelayer->algo;
lifealgo* curralgo = currlayer->algo;
int maxstate = curralgo->NumCellStates() - 1;
BeginProgress("Pasting pattern");
// we can speed up pasting sparse patterns by using nextcell in these cases:
// - if using Or mode
// - if current universe is empty
// - if paste rect is outside current pattern edges
bool usenextcell;
if ( pmode == Or || curralgo->isEmpty() ) {
usenextcell = true;
} else {
bigint ctop, cleft, cbottom, cright;
curralgo->findedges(&ctop, &cleft, &cbottom, &cright);
usenextcell = top > cbottom || bottom < ctop || left > cright || right < cleft;
}
if ( usenextcell && pmode == And ) {
// current universe is empty or paste rect is outside current pattern edges
// so don't change any cells
} else if ( usenextcell ) {
int newstate = 0;
cy = pastey;
for ( ty=itop; ty<=ibottom; ty++ ) {
cx = pastex;
for ( tx=ileft; tx<=iright; tx++ ) {
int skip = pastealgo->nextcell(tx, ty, newstate);
if (skip + tx > iright)
skip = -1; // pretend we found no more live cells
if (skip >= 0) {
// found next live cell so paste it into current universe
tx += skip;
cx += skip;
if (cx >= gleft && cx <= gright && cy >= gtop && cy <= gbottom) {
int currstate = curralgo->getcell(cx, cy);
if (currstate != newstate) {
if (newstate > maxstate) {
newstate = maxstate;
reduced = true;
}
curralgo->setcell(cx, cy, newstate);
pattchanged = true;
if (savecells) currlayer->undoredo->SaveCellChange(cx, cy, currstate, newstate);
}
}
cx++;
} else {
tx = iright + 1; // done this row
}
cntr++;
if ((cntr % 4096) == 0) {
double prog = ((ty - itop) * (double)(iright - ileft + 1) +
(tx - ileft)) / maxcount;
abort = AbortProgress(prog, "");
if (abort) break;
}
}
if (abort) break;
cy++;
}
} else {
// have to use slower getcell/setcell calls
int tempstate, currstate;
int numstates = curralgo->NumCellStates();
cy = pastey;
for ( ty=itop; ty<=ibottom; ty++ ) {
cx = pastex;
for ( tx=ileft; tx<=iright; tx++ ) {
tempstate = pastealgo->getcell(tx, ty);
currstate = curralgo->getcell(cx, cy);
if (cx >= gleft && cx <= gright && cy >= gtop && cy <= gbottom) {
switch (pmode) {
case And:
if (tempstate != currstate && currstate > 0) {
curralgo->setcell(cx, cy, 0);
pattchanged = true;
if (savecells) currlayer->undoredo->SaveCellChange(cx, cy, currstate, 0);
}
break;
case Copy:
if (tempstate != currstate) {
if (tempstate > maxstate) {
tempstate = maxstate;
reduced = true;
}
curralgo->setcell(cx, cy, tempstate);
pattchanged = true;
if (savecells) currlayer->undoredo->SaveCellChange(cx, cy, currstate, tempstate);
}
break;
case Or:
// Or mode is done using above nextcell loop;
// we only include this case to avoid compiler warning
break;
case Xor:
if (tempstate == currstate) {
if (currstate != 0) {
curralgo->setcell(cx, cy, 0);
pattchanged = true;
if (savecells) currlayer->undoredo->SaveCellChange(cx, cy, currstate, 0);
}
} else {
// tempstate != currstate
int newstate = tempstate ^ currstate;
// if xor overflows then don't change current state
if (newstate >= numstates) newstate = currstate;
if (currstate != newstate) {
curralgo->setcell(cx, cy, newstate);
pattchanged = true;
if (savecells) currlayer->undoredo->SaveCellChange(cx, cy, currstate, newstate);
}
}
break;
}
}
cx++;
cntr++;
if ( (cntr % 4096) == 0 ) {
abort = AbortProgress((double)cntr / maxcount, "");
if (abort) break;
}
}
if (abort) break;
cy++;
}
}
if (pattchanged) curralgo->endofpattern();
EndProgress();
// tidy up and display result
ClearMessage();
if (pattchanged) {
if (savecells) currlayer->undoredo->RememberCellChanges("Paste", currlayer->dirty);
MarkLayerDirty();
UpdatePatternAndStatus();
}
if (reduced) ErrorMessage("Some cell states were reduced.");
}
// -----------------------------------------------------------------------------
void DoPaste(bool toselection)
{
bigint top, left;
bigint wd = pastebox.width;
bigint ht = pastebox.height;
if (toselection) {
// paste pattern into selection rectangle, if possible
if (!SelectionExists()) {
ErrorMessage("There is no selection.");
return;
}
if (!currlayer->currsel.CanPaste(wd, ht, top, left)) {
ErrorMessage("Clipboard pattern is bigger than selection.");
return;
}
// top and left have been set to the selection's top left corner
PasteTemporaryToCurrent(top, left, wd, ht);
} else {
// paste pattern into pasterect, if possible
if ( // allow paste if any corner of pasterect is within grid
!( PointInGrid(pastex, pastey) ||
PointInGrid(pastex+pasterect.width-1, pastey) ||
PointInGrid(pastex, pastey+pasterect.height-1) ||
PointInGrid(pastex+pasterect.width-1, pastey+pasterect.height-1) ) ) {
ErrorMessage("Paste must be at least partially within grid.");
return;
}
// get paste rectangle's top left cell coord
pair<bigint, bigint> cellpos = currlayer->view->at(pastex, pastey);
top = cellpos.second;
left = cellpos.first;
PasteTemporaryToCurrent(top, left, wd, ht);
}
AbortPaste();
}
// -----------------------------------------------------------------------------
void AbortPaste()
{
waitingforpaste = false;
pastex = -1;
pastey = -1;
if (pastelayer) {
delete pastelayer;
pastelayer = NULL;
}
}
// -----------------------------------------------------------------------------
bool FlipPastePattern(bool topbottom)
{
bool result;
Selection pastesel(pastebox.y, pastebox.x, pastebox.y + pastebox.height - 1, pastebox.x + pastebox.width - 1);
// flip the pattern in pastelayer
lifealgo* savealgo = currlayer->algo;
int savetype = currlayer->algtype;
currlayer->algo = pastelayer->algo;
currlayer->algtype = pastelayer->algtype;
// pass in true for inundoredo parameter so flip won't be remembered
// and layer won't be marked as dirty; also set inscript temporarily
// so that viewport won't be updated
inscript = true;
result = pastesel.Flip(topbottom, true);
// currlayer->algo might point to a *different* universe
pastelayer->algo = currlayer->algo;
currlayer->algo = savealgo;
currlayer->algtype = savetype;
inscript = false;
if (result) {
InitPaste(pastelayer, pastebox);
}
return result;
}
// -----------------------------------------------------------------------------
bool RotatePastePattern(bool clockwise)
{
Selection pastesel(pastebox.y, pastebox.x,
pastebox.y + pastebox.height - 1,
pastebox.x + pastebox.width - 1);
// check if pastelayer->algo uses a finite grid
if (!pastelayer->algo->unbounded) {
// readclipboard has loaded the pattern into top left corner of grid,
// so if pastebox isn't square we need to expand the grid to avoid the
// rotated pattern being clipped (WARNING: this assumes the algo won't
// change the pattern's cell coordinates when setrule expands the grid)
int x, y, wd, ht;
pastesel.GetRect(&x, &y, &wd, &ht);
if (wd != ht) {
// better solution would be to check if pastebox is small enough for
// pattern to be safely rotated after shifting to center of grid and only
// expand grid if it can't!!!??? (must also update pastesel edges)
int newwd, newht;
if (wd > ht) {
// expand grid vertically
newht = pastelayer->algo->gridht + wd;
newwd = pastelayer->algo->gridwd;
} else {
// wd < ht so expand grid horizontally
newwd = pastelayer->algo->gridwd + ht;
newht = pastelayer->algo->gridht;
}
char rule[MAXRULESIZE];
sprintf(rule, "%s", pastelayer->algo->getrule());
char topology = 'T';
char *suffix = strchr(rule, ':');
if (suffix) {
topology = suffix[1];
suffix[0] = 0;
}
sprintf(rule, "%s:%c%d,%d", rule, topology, newwd, newht);
if (pastelayer->algo->setrule(rule)) {
// unlikely, but could happen if the new grid size is too big
Warning("Sorry, but the clipboard pattern could not be rotated.");
return false;
}
}
}
// rotate the pattern in pastelayer
lifealgo* savealgo = currlayer->algo;
int savetype = currlayer->algtype;
currlayer->algo = pastelayer->algo;
currlayer->algtype = pastelayer->algtype;
// pass in true for inundoredo parameter so rotate won't be remembered
// and layer won't be marked as dirty; also set inscript temporarily
// so that viewport won't be updated and selection size won't be displayed
inscript = true;
bool result = pastesel.Rotate(clockwise, true);
// currlayer->algo might point to a *different* universe
pastelayer->algo = currlayer->algo;
currlayer->algo = savealgo;
currlayer->algtype = savetype;
inscript = false;
if (result) {
// get rotated selection and update pastebox
int x, y, wd, ht;
pastesel.GetRect(&x, &y, &wd, &ht);
SetRect(pastebox, x, y, wd, ht);
InitPaste(pastelayer, pastebox);
}
return result;
}
// -----------------------------------------------------------------------------
void ToggleCellColors()
{
InvertCellColors();
if (pastelayer) {
// invert colors used to draw paste pattern
for (int n = 0; n <= pastelayer->numicons; n++) {
pastelayer->cellr[n] = 255 - pastelayer->cellr[n];
pastelayer->cellg[n] = 255 - pastelayer->cellg[n];
pastelayer->cellb[n] = 255 - pastelayer->cellb[n];
}
InvertIconColors(pastelayer->atlas7x7, 8, pastelayer->numicons);
InvertIconColors(pastelayer->atlas15x15, 16, pastelayer->numicons);
InvertIconColors(pastelayer->atlas31x31, 32, pastelayer->numicons);
}
}
// -----------------------------------------------------------------------------
void ZoomInPos(int x, int y)
{
// zoom in to given point
if (currlayer->view->getmag() < MAX_MAG) {
TestAutoFit();
currlayer->view->zoom(x, y);
UpdateEverything();
} else {
Beep(); // can't zoom in any further
}
}
// -----------------------------------------------------------------------------
void ZoomOutPos(int x, int y)
{
// zoom out from given point
TestAutoFit();
currlayer->view->unzoom(x, y);
UpdateEverything();
}
// -----------------------------------------------------------------------------
void PanUp(int amount)
{
TestAutoFit();
currlayer->view->move(0, -amount);
UpdateEverything();
}
// -----------------------------------------------------------------------------
void PanDown(int amount)
{
TestAutoFit();
currlayer->view->move(0, amount);
UpdateEverything();
}
// -----------------------------------------------------------------------------
void PanLeft(int amount)
{
TestAutoFit();
currlayer->view->move(-amount, 0);
UpdateEverything();
}
// -----------------------------------------------------------------------------
void PanRight(int amount)
{
TestAutoFit();
currlayer->view->move(amount, 0);
UpdateEverything();
}
// -----------------------------------------------------------------------------
void PanNE()
{
TestAutoFit();
int xamount = SmallScroll(currlayer->view->getwidth());
int yamount = SmallScroll(currlayer->view->getheight());
int amount = (xamount < yamount) ? xamount : yamount;
currlayer->view->move(amount, -amount);
UpdateEverything();
}
// -----------------------------------------------------------------------------
void PanNW()
{
TestAutoFit();
int xamount = SmallScroll(currlayer->view->getwidth());
int yamount = SmallScroll(currlayer->view->getheight());
int amount = (xamount < yamount) ? xamount : yamount;
currlayer->view->move(-amount, -amount);
UpdateEverything();
}
// -----------------------------------------------------------------------------
void PanSE()
{
TestAutoFit();
int xamount = SmallScroll(currlayer->view->getwidth());
int yamount = SmallScroll(currlayer->view->getheight());
int amount = (xamount < yamount) ? xamount : yamount;
currlayer->view->move(amount, amount);
UpdateEverything();
}
// -----------------------------------------------------------------------------
void PanSW()
{
TestAutoFit();
int xamount = SmallScroll(currlayer->view->getwidth());
int yamount = SmallScroll(currlayer->view->getheight());
int amount = (xamount < yamount) ? xamount : yamount;
currlayer->view->move(-amount, amount);
UpdateEverything();
}
// -----------------------------------------------------------------------------
int SmallScroll(int xysize)
{
int amount;
int mag = currlayer->view->getmag();
if (mag > 0) {
// scroll an integral number of cells (1 cell = 2^mag pixels)
if (mag < 3) {
amount = ((xysize >> mag) / 20) << mag;
if (amount == 0) amount = 1 << mag;
return amount;
} else {
// grid lines are visible so scroll by only 1 cell
return 1 << mag;
}
} else {
// scroll by approx 5% of current wd/ht
amount = xysize / 20;
if (amount == 0) amount = 1;
return amount;
}
}
// -----------------------------------------------------------------------------
int BigScroll(int xysize)
{
int amount;
int mag = currlayer->view->getmag();
if (mag > 0) {
// scroll an integral number of cells (1 cell = 2^mag pixels)
amount = ((xysize >> mag) * 9 / 10) << mag;
if (amount == 0) amount = 1 << mag;
return amount;
} else {
// scroll by approx 90% of current wd/ht
amount = xysize * 9 / 10;
if (amount == 0) amount = 1;
return amount;
}
}
|