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
|
// 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 "writepattern.h"
#include "util.h" // for linereader
#include "utils.h" // for Warning, TimeInSeconds, Poller, event_checker, etc
#include "prefs.h" // for allowundo, etc
#include "status.h" // for ErrorMessage, etc
#include "file.h" // for WritePattern, LoadPattern, etc
#include "algos.h" // for *_ALGO, algo_type, CreateNewUniverse, etc
#include "layer.h" // for currlayer, RestoreRule, etc
#include "view.h" // for UpdatePatternAndStatus, draw_pending, etc
#include "undo.h" // for UndoRedo
#include "control.h"
#include <stdexcept> // for std::runtime_error and std::exception
#include <sstream> // for std::ostringstream
#include <algorithm> // for std::find
#ifdef ANDROID_GUI
#include "jnicalls.h" // for UpdateStatus, BeginProgress, etc
#endif
#ifdef IOS_GUI
#import "PatternViewController.h" // for UpdateStatus, BeginProgress, etc
#endif
#ifdef WEB_GUI
#include "webcalls.h" // for UpdateStatus, BeginProgress, etc
#endif
// -----------------------------------------------------------------------------
bool generating = false; // currently generating pattern?
int minexpo = 0; // step exponent at maximum delay (must be <= 0)
double begintime, endtime; // for timing info
double begingen, endgen; // ditto
const char* empty_pattern = "All cells are dead.";
// -----------------------------------------------------------------------------
// macros for checking if a certain string exists in a list of strings
#define FOUND(l,s) (std::find(l.begin(),l.end(),s) != l.end())
#define NOT_FOUND(l,s) (std::find(l.begin(),l.end(),s) == l.end())
// -----------------------------------------------------------------------------
bool SaveStartingPattern()
{
if ( currlayer->algo->getGeneration() > currlayer->startgen ) {
// don't do anything if current gen count > starting gen
return true;
}
// save current rule, dirty flag, scale, location, etc
currlayer->startname = currlayer->currname;
currlayer->startrule = currlayer->algo->getrule();
currlayer->startdirty = currlayer->dirty;
currlayer->startmag = currlayer->view->getmag();
currlayer->startx = currlayer->view->x;
currlayer->starty = currlayer->view->y;
currlayer->startbase = currlayer->currbase;
currlayer->startexpo = currlayer->currexpo;
currlayer->startalgo = currlayer->algtype;
// if this layer is a clone then save some settings in other clones
if (currlayer->cloneid > 0) {
for ( int i = 0; i < numlayers; i++ ) {
Layer* cloneptr = GetLayer(i);
if (cloneptr != currlayer && cloneptr->cloneid == currlayer->cloneid) {
cloneptr->startname = cloneptr->currname;
cloneptr->startx = cloneptr->view->x;
cloneptr->starty = cloneptr->view->y;
cloneptr->startmag = cloneptr->view->getmag();
cloneptr->startbase = cloneptr->currbase;
cloneptr->startexpo = cloneptr->currexpo;
}
}
}
// save current selection
currlayer->startsel = currlayer->currsel;
if ( !currlayer->savestart ) {
// no need to save pattern (use currlayer->currfile as the starting pattern)
if (currlayer->currfile.empty())
Warning("Bug in SaveStartingPattern: currfile is empty!");
return true;
}
currlayer->currfile = currlayer->tempstart; // ResetPattern will load tempstart
// save starting pattern in tempstart file
if ( currlayer->algo->hyperCapable() ) {
// much faster to save pattern in a macrocell file
const char* err = WritePattern(currlayer->tempstart.c_str(), MC_format,
no_compression, 0, 0, 0, 0);
if (err) {
ErrorMessage(err);
// don't allow user to continue generating
return false;
}
} else {
// can only save as RLE if edges are within getcell/setcell limits
bigint top, left, bottom, right;
currlayer->algo->findedges(&top, &left, &bottom, &right);
if ( OutsideLimits(top, left, bottom, right) ) {
ErrorMessage("Starting pattern is outside +/- 10^9 boundary.");
// don't allow user to continue generating
return false;
}
int itop = top.toint();
int ileft = left.toint();
int ibottom = bottom.toint();
int iright = right.toint();
// use XRLE format so the pattern's top left location and the current
// generation count are stored in the file
const char* err = WritePattern(currlayer->tempstart.c_str(), XRLE_format, no_compression,
itop, ileft, ibottom, iright);
if (err) {
ErrorMessage(err);
// don't allow user to continue generating
return false;
}
}
return true;
}
// -----------------------------------------------------------------------------
void SetGenIncrement()
{
if (currlayer->currexpo > 0) {
bigint inc = 1;
int maxexpo = 1 ;
if (currlayer->currbase <= 10000) {
int mantissa = currlayer->currbase ;
int himantissa = 0x7fffffff ;
while (mantissa > 1 && 0 == (mantissa & 1))
mantissa >>= 1 ;
if (mantissa == 1) {
maxexpo = 0x7fffffff ;
} else {
int p = mantissa ;
while (p <= himantissa / mantissa) {
p *= mantissa ;
maxexpo++ ;
}
}
}
if (currlayer->currexpo > maxexpo)
currlayer->currexpo = maxexpo ;
// set increment to currbase^currexpo
int i = currlayer->currexpo;
while (i > 0) {
if (currlayer->currbase > 10000) {
inc = currlayer->currbase ;
} else {
inc.mul_smallint(currlayer->currbase);
}
i--;
}
currlayer->algo->setIncrement(inc);
} else {
currlayer->algo->setIncrement(1);
}
}
// -----------------------------------------------------------------------------
void SetStepExponent(int newexpo)
{
currlayer->currexpo = newexpo;
if (currlayer->currexpo < minexpo) currlayer->currexpo = minexpo;
SetGenIncrement();
}
// -----------------------------------------------------------------------------
void SetMinimumStepExponent()
{
// set minexpo depending on mindelay and maxdelay
minexpo = 0;
if (mindelay > 0) {
int d = mindelay;
minexpo--;
while (d < maxdelay) {
d *= 2;
minexpo--;
}
}
}
// -----------------------------------------------------------------------------
void ResetPattern(bool resetundo)
{
if (currlayer->algo->getGeneration() == currlayer->startgen) return;
if (currlayer->algo->getGeneration() < currlayer->startgen) {
// if this happens then startgen logic is wrong
Warning("Current gen < starting gen!");
return;
}
if (currlayer->currfile.empty()) {
// if this happens then savestart logic is wrong
Warning("Starting pattern cannot be restored!");
return;
}
// save current algo and rule
algo_type oldalgo = currlayer->algtype;
std::string oldrule = currlayer->algo->getrule();
// restore pattern and settings saved by SaveStartingPattern;
// first restore algorithm
currlayer->algtype = currlayer->startalgo;
// restore starting pattern
LoadPattern(currlayer->currfile.c_str(), "");
if (currlayer->algo->getGeneration() != currlayer->startgen) {
// LoadPattern failed to reset the gen count to startgen
// (probably because the user deleted the starting pattern)
// so best to clear the pattern and reset the gen count
CreateUniverse();
currlayer->algo->setGeneration(currlayer->startgen);
std::string msg = "Failed to reset pattern from this file:\n";
msg += currlayer->currfile;
Warning(msg.c_str());
}
// restore settings saved by SaveStartingPattern
RestoreRule(currlayer->startrule.c_str());
currlayer->currname = currlayer->startname;
currlayer->dirty = currlayer->startdirty;
if (restoreview) {
currlayer->view->setpositionmag(currlayer->startx, currlayer->starty, currlayer->startmag);
}
// restore step size and set increment
currlayer->currbase = currlayer->startbase;
currlayer->currexpo = currlayer->startexpo;
SetGenIncrement();
// if this layer is a clone then restore some settings in other clones
if (currlayer->cloneid > 0) {
for ( int i = 0; i < numlayers; i++ ) {
Layer* cloneptr = GetLayer(i);
if (cloneptr != currlayer && cloneptr->cloneid == currlayer->cloneid) {
cloneptr->currname = cloneptr->startname;
if (restoreview) {
cloneptr->view->setpositionmag(cloneptr->startx, cloneptr->starty,
cloneptr->startmag);
}
cloneptr->currbase = cloneptr->startbase;
cloneptr->currexpo = cloneptr->startexpo;
// also synchronize dirty flags and update items in Layer menu
cloneptr->dirty = currlayer->dirty;
//!!! UpdateLayerItem(i);
}
}
}
// restore selection
currlayer->currsel = currlayer->startsel;
// switch to default colors if algo/rule changed
std::string newrule = currlayer->algo->getrule();
if (oldalgo != currlayer->algtype || oldrule != newrule) {
UpdateLayerColors();
}
// update window title in case currname, rule or dirty flag changed
//!!! SetWindowTitle(currlayer->currname);
if (allowundo) {
if (resetundo) {
// wind back the undo history to the starting pattern
currlayer->undoredo->SyncUndoHistory();
}
}
}
// -----------------------------------------------------------------------------
void RestorePattern(bigint& gen, const char* filename,
bigint& x, bigint& y, int mag, int base, int expo)
{
// called to undo/redo a generating change
if (gen == currlayer->startgen) {
// restore starting pattern (false means don't call SyncUndoHistory)
ResetPattern(false);
} else {
// restore pattern in given filename
LoadPattern(filename, "");
if (currlayer->algo->getGeneration() != gen) {
// best to clear the pattern and set the expected gen count
CreateUniverse();
currlayer->algo->setGeneration(gen);
std::string msg = "Could not restore pattern from this file:\n";
msg += filename;
Warning(msg.c_str());
}
// restore step size and set increment
currlayer->currbase = base;
currlayer->currexpo = expo;
SetGenIncrement();
// restore position and scale, if allowed
if (restoreview) currlayer->view->setpositionmag(x, y, mag);
UpdatePatternAndStatus();
}
}
// -----------------------------------------------------------------------------
const char* ChangeGenCount(const char* genstring, bool inundoredo)
{
// disallow alphabetic chars in genstring
for (unsigned int i = 0; i < strlen(genstring); i++)
if ( (genstring[i] >= 'a' && genstring[i] <= 'z') ||
(genstring[i] >= 'A' && genstring[i] <= 'Z') )
return "Alphabetic character is not allowed in generation string.";
bigint oldgen = currlayer->algo->getGeneration();
bigint newgen(genstring);
if (genstring[0] == '+' || genstring[0] == '-') {
// leading +/- sign so make newgen relative to oldgen
bigint relgen = newgen;
newgen = oldgen;
newgen += relgen;
if (newgen < bigint::zero) newgen = bigint::zero;
}
// set stop_after_script BEFORE testing newgen == oldgen so scripts
// can call setgen("+0") to prevent further generating
//!!! if (inscript) stop_after_script = true;
if (newgen == oldgen) return NULL;
if (!inundoredo && allowundo && !currlayer->stayclean && inscript) {
// script called setgen()
//!!! SavePendingChanges();
}
// need IsParityShifted() method???
if (currlayer->algtype == QLIFE_ALGO && newgen.odd() != oldgen.odd()) {
// qlife stores pattern in different bits depending on gen parity,
// so we need to create a new qlife universe, set its gen, copy the
// current pattern to the new universe, then switch to that universe
bigint top, left, bottom, right;
currlayer->algo->findedges(&top, &left, &bottom, &right);
if ( OutsideLimits(top, left, bottom, right) ) {
return "Pattern is too big to copy.";
}
// create a new universe of same type and same rule
lifealgo* newalgo = CreateNewUniverse(currlayer->algtype);
const char* err = newalgo->setrule(currlayer->algo->getrule());
if (err) {
delete newalgo;
return "Current rule is no longer valid!";
}
newalgo->setGeneration(newgen);
// copy pattern
if ( !CopyRect(top.toint(), left.toint(), bottom.toint(), right.toint(),
currlayer->algo, newalgo, false, "Copying pattern") ) {
delete newalgo;
return "Failed to copy pattern.";
}
// switch to new universe
delete currlayer->algo;
currlayer->algo = newalgo;
SetGenIncrement();
} else {
currlayer->algo->setGeneration(newgen);
}
if (!inundoredo) {
// save some settings for RememberSetGen below
bigint oldstartgen = currlayer->startgen;
bool oldsave = currlayer->savestart;
// may need to change startgen and savestart
if (oldgen == currlayer->startgen || newgen <= currlayer->startgen) {
currlayer->startgen = newgen;
currlayer->savestart = true;
}
if (allowundo && !currlayer->stayclean) {
currlayer->undoredo->RememberSetGen(oldgen, newgen, oldstartgen, oldsave);
}
}
UpdateStatus();
return NULL;
}
// -----------------------------------------------------------------------------
void DisplayTimingInfo()
{
endtime = TimeInSeconds();
if (endtime <= begintime) endtime = begintime + 0.000001;
endgen = currlayer->algo->getGeneration().todouble();
double secs = endtime - begintime;
double gens = endgen - begingen;
char s[128];
sprintf(s, "%g gens in %g secs (%g gens/sec).", gens, secs, gens/secs);
DisplayMessage(s);
}
// -----------------------------------------------------------------------------
bool StartGenerating()
{
if (generating) Warning("Bug detected in StartGenerating!");
lifealgo* curralgo = currlayer->algo;
if (curralgo->isEmpty()) {
ErrorMessage(empty_pattern);
return false;
}
if (!SaveStartingPattern()) {
return false;
}
if (allowundo) currlayer->undoredo->RememberGenStart();
// only show hashing info while generating
lifealgo::setVerbose(currlayer->showhashinfo);
// for DisplayTimingInfo
begintime = TimeInSeconds();
begingen = curralgo->getGeneration().todouble();
generating = true;
PollerReset();
// caller will start a repeating timer
return true;
}
// -----------------------------------------------------------------------------
void StopGenerating()
{
if (!generating) Warning("Bug detected in StopGenerating!");
generating = false;
PollerInterrupt();
if (showtiming) DisplayTimingInfo();
lifealgo::setVerbose(0);
if (event_checker > 0) {
// we're currently in the event poller somewhere inside step(), so we must let
// step() complete and only call RememberGenFinish at the end of NextGeneration
} else {
if (allowundo) currlayer->undoredo->RememberGenFinish();
}
// caller will stop the timer
}
// -----------------------------------------------------------------------------
void NextGeneration(bool useinc)
{
lifealgo* curralgo = currlayer->algo;
bool boundedgrid = curralgo->unbounded && (curralgo->gridwd > 0 || curralgo->gridht > 0);
if (generating) {
// we were called via timer so StartGenerating has already checked
// if the pattern is empty, etc (note that useinc is also true)
} else {
// we were called via Next/Step button
if (curralgo->isEmpty()) {
ErrorMessage(empty_pattern);
return;
}
if (!SaveStartingPattern()) {
return;
}
if (allowundo) currlayer->undoredo->RememberGenStart();
// only show hashing info while generating
lifealgo::setVerbose(currlayer->showhashinfo);
if (useinc && curralgo->getIncrement() > bigint::one) {
// for DisplayTimingInfo
begintime = TimeInSeconds();
begingen = curralgo->getGeneration().todouble();
}
PollerReset();
}
if (useinc) {
// step by current increment
if (boundedgrid) {
// temporarily set the increment to 1 so we can call CreateBorderCells()
// and DeleteBorderCells() around each step()
int savebase = currlayer->currbase;
int saveexpo = currlayer->currexpo;
bigint inc = curralgo->getIncrement();
curralgo->setIncrement(1);
while (inc > 0) {
if (Poller()->checkevents()) break;
if (savebase != currlayer->currbase || saveexpo != currlayer->currexpo) {
// user changed step base/exponent, so reset increment to 1
inc = curralgo->getIncrement();
curralgo->setIncrement(1);
}
if (!curralgo->CreateBorderCells()) break;
curralgo->step();
if (!curralgo->DeleteBorderCells()) break;
inc -= 1;
}
// safe way to restore correct increment in case user altered base/expo in above loop
SetGenIncrement();
} else {
curralgo->step();
}
} else {
// step by 1 gen
bigint saveinc = curralgo->getIncrement();
curralgo->setIncrement(1);
if (boundedgrid) curralgo->CreateBorderCells();
curralgo->step();
if (boundedgrid) curralgo->DeleteBorderCells();
curralgo->setIncrement(saveinc);
}
if (!generating) {
if (showtiming && useinc && curralgo->getIncrement() > bigint::one) DisplayTimingInfo();
lifealgo::setVerbose(0);
if (allowundo) currlayer->undoredo->RememberGenFinish();
}
// autofit is only used when doing many gens
if (currlayer->autofit && (generating || useinc)) {
FitInView(0);
}
if (draw_pending) {
draw_pending = false;
TouchBegan(pendingx, pendingy);
}
}
// -----------------------------------------------------------------------------
void ClearOutsideGrid()
{
// check current pattern and clear any live cells outside bounded grid
bool patternchanged = false;
bool savechanges = allowundo && !currlayer->stayclean;
// might also need to truncate selection
currlayer->currsel.CheckGridEdges();
if (!currlayer->algo->unbounded) {
if (currlayer->algo->clipped_cells.size() > 0) {
// cells outside the grid were clipped
if (savechanges) {
for (size_t i = 0; i < currlayer->algo->clipped_cells.size(); i += 3) {
int x = currlayer->algo->clipped_cells[i];
int y = currlayer->algo->clipped_cells[i+1];
int s = currlayer->algo->clipped_cells[i+2];
currlayer->undoredo->SaveCellChange(x, y, s, 0);
}
}
currlayer->algo->clipped_cells.clear();
patternchanged = true;
}
} else {
// algo uses an unbounded grid
if (currlayer->algo->isEmpty()) return;
// check if current pattern is too big to use nextcell/setcell
bigint top, left, bottom, right;
currlayer->algo->findedges(&top, &left, &bottom, &right);
if ( OutsideLimits(top, left, bottom, right) ) {
ErrorMessage("Pattern too big to check (outside +/- 10^9 boundary).");
return;
}
int itop = top.toint();
int ileft = left.toint();
int ibottom = bottom.toint();
int iright = right.toint();
// no need to do anything if pattern is entirely within 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;
}
if (itop >= gtop && ileft >= gleft && ibottom <= gbottom && iright <= gright) {
return;
}
int ht = ibottom - itop + 1;
int cx, cy;
// for showing accurate progress we need to add pattern height to pop count
// in case this is a huge pattern with many blank rows
double maxcount = currlayer->algo->getPopulation().todouble() + ht;
double accumcount = 0;
int currcount = 0;
bool abort = false;
int v = 0;
BeginProgress("Checking cells outside grid");
lifealgo* curralgo = currlayer->algo;
for ( cy=itop; cy<=ibottom; cy++ ) {
currcount++;
for ( cx=ileft; cx<=iright; cx++ ) {
int skip = curralgo->nextcell(cx, cy, v);
if (skip >= 0) {
// found next live cell in this row
cx += skip;
if (cx < gleft || cx > gright || cy < gtop || cy > gbottom) {
// clear cell outside grid
if (savechanges) currlayer->undoredo->SaveCellChange(cx, cy, v, 0);
curralgo->setcell(cx, cy, 0);
patternchanged = true;
}
currcount++;
} else {
cx = iright; // done this row
}
if (currcount > 1024) {
accumcount += currcount;
currcount = 0;
abort = AbortProgress(accumcount / maxcount, "");
if (abort) break;
}
}
if (abort) break;
}
curralgo->endofpattern();
EndProgress();
}
if (patternchanged) {
ErrorMessage("Pattern was truncated (live cells were outside grid).");
}
}
// -----------------------------------------------------------------------------
void ReduceCellStates(int newmaxstate)
{
// check current pattern and reduce any cell states > newmaxstate
bool patternchanged = false;
bool savechanges = allowundo && !currlayer->stayclean;
// check if current pattern is too big to use nextcell/setcell
bigint top, left, bottom, right;
currlayer->algo->findedges(&top, &left, &bottom, &right);
if ( OutsideLimits(top, left, bottom, right) ) {
ErrorMessage("Pattern too big to check (outside +/- 10^9 boundary).");
return;
}
int itop = top.toint();
int ileft = left.toint();
int ibottom = bottom.toint();
int iright = right.toint();
int ht = ibottom - itop + 1;
int cx, cy;
// for showing accurate progress we need to add pattern height to pop count
// in case this is a huge pattern with many blank rows
double maxcount = currlayer->algo->getPopulation().todouble() + ht;
double accumcount = 0;
int currcount = 0;
bool abort = false;
int v = 0;
BeginProgress("Checking cell states");
lifealgo* curralgo = currlayer->algo;
for ( cy=itop; cy<=ibottom; cy++ ) {
currcount++;
for ( cx=ileft; cx<=iright; cx++ ) {
int skip = curralgo->nextcell(cx, cy, v);
if (skip >= 0) {
// found next live cell in this row
cx += skip;
if (v > newmaxstate) {
// reduce cell's current state to largest state
if (savechanges) currlayer->undoredo->SaveCellChange(cx, cy, v, newmaxstate);
curralgo->setcell(cx, cy, newmaxstate);
patternchanged = true;
}
currcount++;
} else {
cx = iright; // done this row
}
if (currcount > 1024) {
accumcount += currcount;
currcount = 0;
abort = AbortProgress(accumcount / maxcount, "");
if (abort) break;
}
}
if (abort) break;
}
curralgo->endofpattern();
EndProgress();
if (patternchanged) {
ErrorMessage("Pattern has changed (new rule has fewer states).");
}
}
// -----------------------------------------------------------------------------
void ChangeRule(const std::string& rulestring)
{
std::string oldrule = currlayer->algo->getrule();
int oldmaxstate = currlayer->algo->NumCellStates() - 1;
// selection might change if grid becomes smaller,
// so save current selection for RememberRuleChange/RememberAlgoChange
SaveCurrentSelection();
const char* err = currlayer->algo->setrule( rulestring.c_str() );
if (err) {
// try to find another algorithm that supports the given rule
for (int i = 0; i < NumAlgos(); i++) {
if (i != currlayer->algtype) {
lifealgo* tempalgo = CreateNewUniverse(i);
err = tempalgo->setrule( rulestring.c_str() );
delete tempalgo;
if (!err) {
// change the current algorithm and switch to the new rule
ChangeAlgorithm(i, rulestring.c_str());
if (i != currlayer->algtype) {
RestoreRule(oldrule.c_str());
Warning("Algorithm could not be changed (pattern is too big to convert).");
} else {
UpdateEverything();
}
return;
}
}
}
// should only get here if .rule file contains some sort of error
RestoreRule(oldrule.c_str());
Warning("New rule is not valid in any algorithm!");
return;
}
std::string newrule = currlayer->algo->getrule();
int newmaxstate = currlayer->algo->NumCellStates() - 1;
if (oldrule != newrule || oldmaxstate != newmaxstate) {
UpdateStatus();
// 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();
}
// new rule might have changed the number of cell states;
// if there are fewer states then pattern might change
if (newmaxstate < oldmaxstate && !currlayer->algo->isEmpty()) {
ReduceCellStates(newmaxstate);
}
if (allowundo && !currlayer->stayclean) {
currlayer->undoredo->RememberRuleChange(oldrule.c_str());
}
}
// set colors and icons for new rule
UpdateLayerColors();
// pattern or colors or icons might have changed
UpdateEverything();
}
// -----------------------------------------------------------------------------
void ChangeAlgorithm(algo_type newalgotype, const char* newrule, bool inundoredo)
{
if (newalgotype == currlayer->algtype) return;
// check if current pattern is too big to use nextcell/setcell
bigint top, left, bottom, right;
if ( !currlayer->algo->isEmpty() ) {
currlayer->algo->findedges(&top, &left, &bottom, &right);
if ( OutsideLimits(top, left, bottom, right) ) {
ErrorMessage("Pattern cannot be converted (outside +/- 10^9 boundary).");
return;
}
}
// save changes if undo/redo is enabled and script isn't constructing a pattern
// and we're not undoing/redoing an earlier algo change
bool savechanges = allowundo && !currlayer->stayclean && !inundoredo;
if (savechanges && inscript) {
// note that we must save pending gen changes BEFORE changing algo type
// otherwise temporary files won't be the correct type (mc or rle)
//!!! SavePendingChanges();
}
// selection might change if grid becomes smaller,
// so save current selection for RememberAlgoChange
if (savechanges) SaveCurrentSelection();
bool rulechanged = false;
std::string oldrule = currlayer->algo->getrule();
// change algorithm type, reset step size, and update status bar
algo_type oldalgo = currlayer->algtype;
currlayer->algtype = newalgotype;
currlayer->currbase = algoinfo[newalgotype]->defbase;
currlayer->currexpo = 0;
UpdateStatus();
// create a new universe of the requested flavor
lifealgo* newalgo = CreateNewUniverse(newalgotype);
if (inundoredo) {
// switch to given newrule
const char* err = newalgo->setrule(newrule);
if (err) newalgo->setrule(newalgo->DefaultRule());
} else {
const char* err;
if (newrule[0] == 0) {
// try to use same rule
err = newalgo->setrule(currlayer->algo->getrule());
} else {
// switch to newrule
err = newalgo->setrule(newrule);
rulechanged = true;
}
if (err) {
std::string defrule = newalgo->DefaultRule();
size_t oldpos = oldrule.find(':');
if (newrule[0] == 0 && oldpos != std::string::npos) {
// switch to new algo's default rule, but preserve the topology in oldrule
// so we can do things like switch from "LifeHistory:T30,20" in RuleLoader
// to "B3/S23:T30,20" in QuickLife
size_t defpos = defrule.find(':');
if (defpos != std::string::npos) {
// default rule shouldn't have a suffix but play safe and remove it
defrule = defrule.substr(0, defpos);
}
defrule += ":";
defrule += oldrule.substr(oldpos+1);
}
err = newalgo->setrule(defrule.c_str());
// shouldn't ever fail but play safe
if (err) newalgo->setrule( newalgo->DefaultRule() );
rulechanged = true;
}
}
// set same gen count
newalgo->setGeneration( currlayer->algo->getGeneration() );
bool patternchanged = false;
if ( !currlayer->algo->isEmpty() ) {
// copy pattern in current universe to new universe
int itop = top.toint();
int ileft = left.toint();
int ibottom = bottom.toint();
int iright = right.toint();
int ht = ibottom - itop + 1;
int cx, cy;
// for showing accurate progress we need to add pattern height to pop count
// in case this is a huge pattern with many blank rows
double maxcount = currlayer->algo->getPopulation().todouble() + ht;
double accumcount = 0;
int currcount = 0;
bool abort = false;
int v = 0;
BeginProgress("Converting pattern");
// set newalgo's grid edges so we can save cells that are outside grid
int gtop = newalgo->gridtop.toint();
int gleft = newalgo->gridleft.toint();
int gbottom = newalgo->gridbottom.toint();
int gright = newalgo->gridright.toint();
if (newalgo->gridwd == 0) {
// grid has infinite width
gleft = INT_MIN;
gright = INT_MAX;
}
if (newalgo->gridht == 0) {
// grid has infinite height
gtop = INT_MIN;
gbottom = INT_MAX;
}
// need to check for state change if new algo has fewer states than old algo
int newmaxstate = newalgo->NumCellStates() - 1;
lifealgo* curralgo = currlayer->algo;
for ( cy=itop; cy<=ibottom; cy++ ) {
currcount++;
for ( cx=ileft; cx<=iright; cx++ ) {
int skip = curralgo->nextcell(cx, cy, v);
if (skip >= 0) {
// found next live cell in this row
cx += skip;
if (cx < gleft || cx > gright || cy < gtop || cy > gbottom) {
// cx,cy is outside grid
if (savechanges) currlayer->undoredo->SaveCellChange(cx, cy, v, 0);
// no need to clear cell from curralgo (that universe will soon be deleted)
patternchanged = true;
} else {
if (v > newmaxstate) {
// reduce v to largest state in new algo
if (savechanges) currlayer->undoredo->SaveCellChange(cx, cy, v, newmaxstate);
v = newmaxstate;
patternchanged = true;
}
newalgo->setcell(cx, cy, v);
}
currcount++;
} else {
cx = iright; // done this row
}
if (currcount > 1024) {
accumcount += currcount;
currcount = 0;
abort = AbortProgress(accumcount / maxcount, "");
if (abort) break;
}
}
if (abort) break;
}
newalgo->endofpattern();
EndProgress();
}
// delete old universe and point current universe to new universe
delete currlayer->algo;
currlayer->algo = newalgo;
SetGenIncrement();
// if new grid is bounded then we might need to truncate the selection
if (currlayer->algo->gridwd > 0 || currlayer->algo->gridht > 0) {
currlayer->currsel.CheckGridEdges();
}
// switch to default colors for new algo+rule
UpdateLayerColors();
if (!inundoredo) {
// if pattern exists and is at starting gen then set savestart true
// so that SaveStartingPattern will save pattern to suitable file
// (and thus ResetPattern will work correctly)
if (currlayer->algo->getGeneration() == currlayer->startgen && !currlayer->algo->isEmpty()) {
currlayer->savestart = true;
}
if (rulechanged) {
if (newrule[0] == 0) {
if (patternchanged) {
ErrorMessage("Rule has changed and pattern has changed.");
} else {
// don't beep
DisplayMessage("Rule has changed.");
}
} else {
if (patternchanged) {
ErrorMessage("Algorithm has changed and pattern has changed.");
} else {
// don't beep
DisplayMessage("Algorithm has changed.");
}
}
} else if (patternchanged) {
ErrorMessage("Pattern has changed.");
}
}
if (savechanges) {
currlayer->undoredo->RememberAlgoChange(oldalgo, oldrule.c_str());
}
if (!inundoredo && !inscript) {
// do this AFTER RememberAlgoChange so Undo button becomes enabled
UpdateEverything();
}
}
// -----------------------------------------------------------------------------
static std::string CreateTABLE(const std::string& tablepath)
{
std::string contents = "\n@TABLE\n\n";
// append contents of .table file
FILE* f = fopen(tablepath.c_str(), "r");
if (f) {
const int MAXLINELEN = 4095;
char linebuf[MAXLINELEN + 1];
linereader reader(f);
while (true) {
if (reader.fgets(linebuf, MAXLINELEN) == 0) break;
contents += linebuf;
contents += "\n";
}
reader.close();
} else {
std::ostringstream oss;
oss << "Could not read .table file:\n" << tablepath.c_str();
throw std::runtime_error(oss.str().c_str());
}
return contents;
}
// -----------------------------------------------------------------------------
static std::string CreateTREE(const std::string& treepath)
{
std::string contents = "\n@TREE\n\n";
// append contents of .tree file
FILE* f = fopen(treepath.c_str(), "r");
if (f) {
const int MAXLINELEN = 4095;
char linebuf[MAXLINELEN + 1];
linereader reader(f);
while (true) {
if (reader.fgets(linebuf, MAXLINELEN) == 0) break;
contents += linebuf;
contents += "\n";
}
reader.close();
} else {
std::ostringstream oss;
oss << "Could not read .tree file:\n" << treepath.c_str();
throw std::runtime_error(oss.str().c_str());
}
return contents;
}
// -----------------------------------------------------------------------------
static void CreateOneRule(const std::string& rulefile, const std::string& folder,
std::list<std::string>& allfiles, std::string& htmlinfo)
{
std::string rulename = rulefile.substr(0,rulefile.rfind('.'));
std::string tablefile = rulename + ".table";
std::string treefile = rulename + ".tree";
std::string tabledata, treedata;
if (FOUND(allfiles,tablefile))
tabledata = CreateTABLE(folder + tablefile);
if (FOUND(allfiles,treefile))
treedata = CreateTREE(folder + treefile);
std::string contents = "@RULE " + rulename + "\n";
contents += tabledata;
contents += treedata;
// write contents to .rule file
std::string rulepath = folder + rulefile;
FILE* outfile = fopen(rulepath.c_str(), "w");
if (outfile) {
if (fputs(contents.c_str(), outfile) == EOF) {
fclose(outfile);
std::ostringstream oss;
oss << "Could not write data to rule file:\n" << rulepath.c_str();
throw std::runtime_error(oss.str().c_str());
}
fclose(outfile);
} else {
std::ostringstream oss;
oss << "Could not create rule file:\n" << rulepath.c_str();
throw std::runtime_error(oss.str().c_str());
}
#ifdef WEB_GUI
// ensure the .rule file persists beyond the current session
CopyRuleToLocalStorage(rulepath.c_str());
#endif
// append created file to htmlinfo
htmlinfo += "<a href=\"open:";
htmlinfo += folder;
htmlinfo += rulefile;
htmlinfo += "\">";
htmlinfo += rulefile;
htmlinfo += "</a><br>\n";
}
// -----------------------------------------------------------------------------
std::string CreateRuleFiles(std::list<std::string>& deprecated,
std::list<std::string>& keeprules)
{
// use the given list of deprecated .table/tree files to create new .rule files,
// except for those .rule files in keeprules
std::string htmlinfo;
bool aborted = false;
try {
// create a list of candidate .rule files to be created
std::string rulefile, filename, rulename;
std::list<std::string> candidates;
std::list<std::string>::iterator it;
for (it=deprecated.begin(); it!=deprecated.end(); ++it) {
filename = *it;
rulename = filename.substr(0,filename.rfind('.'));
if (EndsWith(filename,".table") || EndsWith(filename,".tree")) {
// .table/tree file
rulefile = rulename + ".rule";
// add .rule file to candidates if it hasn't been added yet
// and if it isn't in the keeprules list
if (NOT_FOUND(candidates,rulefile) &&
NOT_FOUND(keeprules,rulefile)) {
candidates.push_back(rulefile);
}
}
}
// create the new .rule files (we overwrite any existing .rule files
// that aren't in keeprules)
for (it=candidates.begin(); it!=candidates.end(); ++it) {
CreateOneRule(*it, userrules, deprecated, htmlinfo);
}
}
catch(const std::exception& e) {
// display message set by throw std::runtime_error(...)
Warning(e.what());
aborted = true;
// nice to also show error message in help window
htmlinfo += "\n<p>*** CONVERSION ABORTED DUE TO ERROR ***\n<p>";
htmlinfo += std::string(e.what());
}
if (!aborted) {
// delete all the deprecated files
std::list<std::string>::iterator it;
for (it=deprecated.begin(); it!=deprecated.end(); ++it) {
RemoveFile(userrules + *it);
}
}
return htmlinfo;
}
|