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
|
#include "port.h"
#include "prototyp.h"
#include "fractype.h"
#include "helpdefs.h"
#define PARMBOX 128
U16 gene_handle = 0;
/* px and py are coordinates in the parameter grid (small images on screen) */
/* evolving = flag, gridsz = dimensions of image grid (gridsz x gridsz) */
int px,py,evolving,gridsz;
#define MAXGRIDSZ 51 /* This is arbitrary, = 1024/20 */
static int far ecountbox[MAXGRIDSZ][MAXGRIDSZ];
unsigned int this_gen_rseed;
/* used to replay random sequences to obtain correct values when selecting a
seed image for next generation */
double opx,opy,newopx,newopy,paramrangex,paramrangey,dpx,dpy,fiddlefactor;
double fiddle_reduction;
double parmzoom;
char odpx,odpy,newodpx,newodpy;
/* offset for discrete parameters x and y..*/
/* used for things like inside or outside types, bailout tests, trig fn etc */
/* variation factors, opx,opy, paramrangex/y dpx, dpy.. used in field mapping
for smooth variation across screen. opx =offset param x, dpx = delta param
per image, paramrangex = variation across grid of param ...likewise for py */
/* fiddlefactor is amount of random mutation used in random modes ,
fiddle_reduction is used to decrease fiddlefactor from one generation to the
next to eventually produce a stable population */
U16 prmboxhandle = 0;
U16 imgboxhandle = 0;
int prmboxcount,imgboxcount;
U16 oldhistory_handle = 0;
char s_random[] = "random";
char s_spread[] = "spread";
char s_xplusy[] = "x+y";
char s_xminusy[] = "x-y";
struct phistory_info /* for saving evolution data of center image */
{
double param0;
double param1;
double param2;
double param3;
double param4;
double param5;
double param6;
double param7;
double param8;
double param9;
int inside;
int outside;
int decomp0;
double invert0;
double invert1;
double invert2;
BYTE trigndx0;
BYTE trigndx1;
BYTE trigndx2;
BYTE trigndx3;
int bailoutest;
};
typedef struct phistory_info PARAMHIST;
void param_history(int mode);
void varydbl(GENEBASE gene[],int randval,int i);
int varyint( int randvalue, int limit, int mode);
int wrapped_positive_varyint( int randvalue, int limit, int mode );
void varyinside(GENEBASE gene[], int randval, int i);
void varyoutside(GENEBASE gene[], int randval, int i);
void varypwr2(GENEBASE gene[], int randval, int i);
void varytrig(GENEBASE gene[], int randval, int i);
void varybotest(GENEBASE gene[], int randval, int i);
void varyinv(GENEBASE gene[], int randval, int i);
int explore_check(void);
void spiralmap(int);
static void set_random(int);
void set_mutation_level(int);
void SetupParamBox(void);
void ReleaseParamBox(void);
void initgene(void) /* set up pointers and mutation params for all usable image
control variables in fractint... revise as necessary when
new vars come along... dont forget to increment NUMGENES
(in fractint.h ) as well */
{
int i = 0;
/* 0 = dont vary, 1= with x axis, 2 = with y */
/* 3 = with x+y, 4 = with x-y, 5 = random, 6 = weighted random */
/* Use only 15 letters below: 123456789012345 */
static FCODE s_Param0[] = {"Param 1 real"};
static FCODE s_Param1[] = {"Param 1 imag"};
static FCODE s_Param2[] = {"Param 2 real"};
static FCODE s_Param3[] = {"Param 2 imag"};
static FCODE s_Param4[] = {"Param 3 real"};
static FCODE s_Param5[] = {"Param 3 imag"};
static FCODE s_Param6[] = {"Param 4 real"};
static FCODE s_Param7[] = {"Param 4 imag"};
static FCODE s_Param8[] = {"Param 5 real"};
static FCODE s_Param9[] = {"Param 5 imag"};
static FCODE s_inside[] = {"inside colour"};
static FCODE s_outside[] = {"outside colour"};
static FCODE s_decomp[] = {"decomposition"};
static FCODE s_trigfn1[] = {"trig function 1"};
static FCODE s_trigfn2[] = {"trig fn 2"};
static FCODE s_trigfn3[] = {"trig fn 3"};
static FCODE s_trigfn4[] = {"trig fn 4"};
static FCODE s_botest[] = {"bailout test"};
static FCODE s_invertr[] = {"invert radius"};
static FCODE s_invertx[] = {"invert center x"};
static FCODE s_inverty[] = {"invert center y"};
GENEBASE gene[NUMGENES] = {
{ ¶m[0], varydbl, 5, "",1 },
{ ¶m[1], varydbl, 5, "",1 },
{ ¶m[2], varydbl, 0, "",1 },
{ ¶m[3], varydbl, 0, "",1 },
{ ¶m[4], varydbl, 0, "",1 },
{ ¶m[5], varydbl, 0, "",1 },
{ ¶m[6], varydbl, 0, "",1 },
{ ¶m[7], varydbl, 0, "",1 },
{ ¶m[8], varydbl, 0, "",1 },
{ ¶m[9], varydbl, 0, "",1 },
{ &inside, varyinside, 0, "",2 },
{ &outside, varyoutside, 0, "",3 },
{ &decomp[0], varypwr2, 0, "",4 },
{ &inversion[0],varyinv, 0, "",7 },
{ &inversion[1],varyinv, 0, "",7 },
{ &inversion[2],varyinv, 0, "",7 },
{ &trigndx[0], varytrig, 0, "",5 },
{ &trigndx[1], varytrig, 0, "",5 },
{ &trigndx[2], varytrig, 0, "",5 },
{ &trigndx[3], varytrig, 0, "",5 },
{ &bailoutest, varybotest, 0, "",6 }
};
i = -1;
far_strcpy(gene[++i].name, s_Param0); /* name of var for menus */
far_strcpy(gene[++i].name, s_Param1);
far_strcpy(gene[++i].name, s_Param2);
far_strcpy(gene[++i].name, s_Param3);
far_strcpy(gene[++i].name, s_Param4);
far_strcpy(gene[++i].name, s_Param5);
far_strcpy(gene[++i].name, s_Param6);
far_strcpy(gene[++i].name, s_Param7);
far_strcpy(gene[++i].name, s_Param8);
far_strcpy(gene[++i].name, s_Param9);
far_strcpy(gene[++i].name, s_inside);
far_strcpy(gene[++i].name, s_outside);
far_strcpy(gene[++i].name, s_decomp);
far_strcpy(gene[++i].name, s_invertr);
far_strcpy(gene[++i].name, s_invertx);
far_strcpy(gene[++i].name, s_inverty);
far_strcpy(gene[++i].name, s_trigfn1);
far_strcpy(gene[++i].name, s_trigfn2);
far_strcpy(gene[++i].name, s_trigfn3);
far_strcpy(gene[++i].name, s_trigfn4);
far_strcpy(gene[++i].name, s_botest);
if (gene_handle == 0)
gene_handle = MemoryAlloc((U16)sizeof(gene),1L,FARMEM);
MoveToMemory((BYTE *)&gene, (U16)sizeof(gene), 1L, 0L, gene_handle);
}
void param_history(int mode)
{ /* mode = 0 for save old history,
mode = 1 for restore old history */
PARAMHIST oldhistory;
if (oldhistory_handle == 0)
oldhistory_handle = MemoryAlloc((U16)sizeof(oldhistory),1L,FARMEM);
if (mode == 0) { /* save the old parameter history */
oldhistory.param0 = param[0];
oldhistory.param1 = param[1];
oldhistory.param2 = param[2];
oldhistory.param3 = param[3];
oldhistory.param4 = param[4];
oldhistory.param5 = param[5];
oldhistory.param6 = param[6];
oldhistory.param7 = param[7];
oldhistory.param8 = param[8];
oldhistory.param9 = param[9];
oldhistory.inside = inside;
oldhistory.outside = outside;
oldhistory.decomp0 = decomp[0];
oldhistory.invert0 = inversion[0];
oldhistory.invert1 = inversion[1];
oldhistory.invert2 = inversion[2];
oldhistory.trigndx0 = trigndx[0];
oldhistory.trigndx1 = trigndx[1];
oldhistory.trigndx2 = trigndx[2];
oldhistory.trigndx3 = trigndx[3];
oldhistory.bailoutest = bailoutest;
MoveToMemory((BYTE *)&oldhistory, (U16)sizeof(oldhistory), 1L, 0L, oldhistory_handle);
}
if (mode == 1) { /* restore the old parameter history */
MoveFromMemory((BYTE *)&oldhistory, (U16)sizeof(oldhistory), 1L, 0L, oldhistory_handle);
param[0] = oldhistory.param0;
param[1] = oldhistory.param1;
param[2] = oldhistory.param2;
param[3] = oldhistory.param3;
param[4] = oldhistory.param4;
param[5] = oldhistory.param5;
param[6] = oldhistory.param6;
param[7] = oldhistory.param7;
param[8] = oldhistory.param8;
param[9] = oldhistory.param9;
inside = oldhistory.inside;
outside = oldhistory.outside;
decomp[0] = oldhistory.decomp0;
inversion[0] = oldhistory.invert0;
inversion[1] = oldhistory.invert1;
inversion[2] = oldhistory.invert2;
invert = (inversion[0] == 0.0) ? 0 : 3 ;
trigndx[0] = oldhistory.trigndx0;
trigndx[1] = oldhistory.trigndx1;
trigndx[2] = oldhistory.trigndx2;
trigndx[3] = oldhistory.trigndx3;
bailoutest = oldhistory.bailoutest;
}
}
void varydbl(GENEBASE gene[],int randval,int i) /* routine to vary doubles */
{
int lclpy = gridsz - py - 1;
switch(gene[i].mutate) {
default:
case 0:
break;
case 1:
*(double *)gene[i].addr = px * dpx + opx; /*paramspace x coord * per view delta px + offset */
break;
case 2:
*(double *)gene[i].addr = lclpy * dpy + opy; /*same for y */
break;
case 3:
*(double *)gene[i].addr = px*dpx+opx +(lclpy*dpy)+opy; /*and x+y */
break;
case 4:
*(double *)gene[i].addr = (px*dpx+opx)-(lclpy*dpy+opy); /*and x-y*/
break;
case 5:
*(double *)gene[i].addr += (((double)randval / RAND_MAX) * 2 * fiddlefactor) - fiddlefactor;
break;
case 6: /* weighted random mutation, further out = further change */
{
int mid = gridsz /2;
double radius = sqrt( sqr(px - mid) + sqr(lclpy - mid) );
*(double *)gene[i].addr += ((((double)randval / RAND_MAX) * 2 * fiddlefactor) - fiddlefactor) * radius;
}
break;
}
return;
}
int varyint( int randvalue, int limit, int mode)
{
int ret = 0;
int lclpy = gridsz - py - 1;
switch(mode) {
default:
case 0:
break;
case 1: /* vary with x */
ret = (odpx+px)%limit;
break;
case 2: /* vary with y */
ret = (odpy+lclpy)%limit;
break;
case 3: /* vary with x+y */
ret = (odpx+px+odpy+lclpy)%limit;
break;
case 4: /* vary with x-y */
ret = (odpx+px)-(odpy+lclpy)%limit;
break;
case 5: /* random mutation */
ret = randvalue % limit;
break;
case 6: /* weighted random mutation, further out = further change */
{
int mid = gridsz /2;
double radius = sqrt( sqr(px - mid) + sqr(lclpy - mid) );
ret = (int)((((randvalue / RAND_MAX) * 2 * fiddlefactor) - fiddlefactor) * radius);
ret %= limit;
}
break;
}
return(ret);
}
int wrapped_positive_varyint( int randvalue, int limit, int mode )
{
int i;
i = varyint(randvalue,limit,mode);
if (i < 0)
return(limit + i);
else
return(i);
}
void varyinside(GENEBASE gene[], int randval, int i)
{
int choices[9]={-59,-60,-61,-100,-101,-102,-103,-104,-1};
if (gene[i].mutate)
*(int*)gene[i].addr=choices[wrapped_positive_varyint(randval,9,gene[i].mutate)];
return;
}
void varyoutside(GENEBASE gene[], int randval, int i)
{
int choices[8]={-1,-2,-3,-4,-5,-6,-7,-8};
if (gene[i].mutate)
*(int*)gene[i].addr=choices[wrapped_positive_varyint(randval,8,gene[i].mutate)];
return;
}
void varybotest(GENEBASE gene[], int randval, int i)
{
int choices[7]={Mod, Real, Imag, Or, And, Manh, Manr};
if (gene[i].mutate) {
*(int*)gene[i].addr=choices[wrapped_positive_varyint(randval,7,gene[i].mutate)];
/* move this next bit to varybot where it belongs */
setbailoutformula(bailoutest);
}
return;
}
void varypwr2(GENEBASE gene[], int randval, int i)
{
int choices[9]={0,2,4,8,16,32,64,128,256};
if (gene[i].mutate)
*(int*)gene[i].addr=choices[wrapped_positive_varyint(randval,9,gene[i].mutate)];
return;
}
void varytrig(GENEBASE gene[], int randval, int i)
{
if (gene[i].mutate)
/* Changed following to BYTE since trigfn is an array of BYTEs and if one */
/* of the functions isn't varied, it's value was being zeroed by the high */
/* BYTE of the preceeding function. JCO 2 MAY 2001 */
*(BYTE*)gene[i].addr=(BYTE)wrapped_positive_varyint(randval,numtrigfn,gene[i].mutate);
/* replaced '30' with numtrigfn, set in prompts1.c */
set_trig_pointers(5); /*set all trig ptrs up*/
return;
}
void varyinv(GENEBASE gene[], int randval, int i)
{
if (gene[i].mutate)
varydbl(gene,randval,i);
invert = (inversion[0] == 0.0) ? 0 : 3 ;
}
#define LOADCHOICES(X) {\
static FCODE tmp[] = { X };\
far_strcpy(ptr,(char far *)tmp);\
choices[++k]= ptr;\
ptr += sizeof(tmp);\
}
/* --------------------------------------------------------------------- */
/*
get_evolve_params() is called from FRACTINT.C whenever the 'ctrl_e' key
is pressed. Return codes are:
-1 routine was ESCAPEd - no need to re-generate the images
0 minor variable changed. No need to re-generate the image.
1 major parms changed. Re-generate the images.
*/
int get_the_rest(void)
{
char *evolvmodes[]={s_no,s_x,s_y,s_xplusy,s_xminusy,s_random,s_spread};
static FCODE o_hdg[]={"Variable tweak central 2 of 2"};
int i,k,num, numtrig;
char hdg[sizeof(o_hdg)];
char far *choices[20];
char far *ptr;
struct fullscreenvalues uvalues[20];
GENEBASE gene[NUMGENES];
far_strcpy(hdg,o_hdg);
ptr = (char far *)MK_FP(extraseg,0);
MoveFromMemory((BYTE *)&gene, (U16)sizeof(gene), 1L, 0L, gene_handle);
numtrig = (curfractalspecific->flags >> 6) & 7;
if(fractype==FORMULA || fractype==FFORMULA ) {
numtrig = maxfn;
}
choose_vars_restart:
k = -1;
for (num = MAXPARAMS; num < (NUMGENES - 5); num++) {
choices[++k]=gene[num].name;
uvalues[k].type = 'l';
uvalues[k].uval.ch.vlen = 7;
uvalues[k].uval.ch.llen = 7;
uvalues[k].uval.ch.list = evolvmodes;
uvalues[k].uval.ch.val = gene[num].mutate;
}
for (num = (NUMGENES - 5); num < (NUMGENES - 5 + numtrig); num++) {
choices[++k]=gene[num].name;
uvalues[k].type = 'l';
uvalues[k].uval.ch.vlen = 7;
uvalues[k].uval.ch.llen = 7;
uvalues[k].uval.ch.list = evolvmodes;
uvalues[k].uval.ch.val = gene[num].mutate;
}
if (curfractalspecific->calctype == StandardFractal &&
(curfractalspecific->flags & BAILTEST) ) {
choices[++k]=gene[NUMGENES - 1].name;
uvalues[k].type = 'l';
uvalues[k].uval.ch.vlen = 7;
uvalues[k].uval.ch.llen = 7;
uvalues[k].uval.ch.list = evolvmodes;
uvalues[k].uval.ch.val = gene[NUMGENES - 1].mutate;
}
LOADCHOICES("");
uvalues[k].type = '*';
LOADCHOICES("Press F2 to set all to off");
uvalues[k].type ='*';
LOADCHOICES("Press F3 to set all on");
uvalues[k].type = '*';
LOADCHOICES("Press F4 to randomize all");
uvalues[k].type = '*';
i = fullscreen_prompt(hdg,k+1,choices,uvalues,28,NULL);
switch(i) {
case F2: /* set all off */
for (num = MAXPARAMS; num < NUMGENES; num++)
gene[num].mutate = 0;
goto choose_vars_restart;
case F3: /* set all on..alternate x and y for field map */
for (num = MAXPARAMS; num < NUMGENES; num ++ )
gene[num].mutate = (char)((num % 2) + 1);
goto choose_vars_restart;
case F4: /* Randomize all */
for (num =MAXPARAMS; num < NUMGENES; num ++ )
gene[num].mutate = (char)(rand() % 6);
goto choose_vars_restart;
case -1:
return(-1);
default:
break;
}
/* read out values */
k = -1;
for ( num = MAXPARAMS; num < (NUMGENES - 5); num++)
gene[num].mutate = (char)(uvalues[++k].uval.ch.val);
for (num = (NUMGENES - 5); num < (NUMGENES - 5 + numtrig); num++)
gene[num].mutate = (char)(uvalues[++k].uval.ch.val);
if (curfractalspecific->calctype == StandardFractal &&
(curfractalspecific->flags & BAILTEST) )
gene[NUMGENES - 1].mutate = (char)(uvalues[++k].uval.ch.val);
MoveToMemory((BYTE *)&gene, (U16)sizeof(gene), 1L, 0L, gene_handle);
return(1); /* if you were here, you want to regenerate */
}
int get_variations(void)
{
char *evolvmodes[]={s_no,s_x,s_y,s_xplusy,s_xminusy,s_random,s_spread};
static FCODE o_hdg[]={"Variable tweak central 1 of 2"};
int i,k,num, numparams;
char hdg[sizeof(o_hdg)];
char far *choices[20];
char far *ptr;
struct fullscreenvalues uvalues[20];
GENEBASE gene[NUMGENES];
int firstparm = 0;
int lastparm = MAXPARAMS;
int chngd = -1;
far_strcpy(hdg,o_hdg);
ptr = (char far *)MK_FP(extraseg,0);
MoveFromMemory((BYTE *)&gene, (U16)sizeof(gene), 1L, 0L, gene_handle);
if(fractype == FORMULA || fractype == FFORMULA) {
if(uses_p1) /* set first parameter */
firstparm = 0;
else if(uses_p2)
firstparm = 2;
else if(uses_p3)
firstparm = 4;
else if(uses_p4)
firstparm = 6;
else
firstparm = 8; /* uses_p5 or no parameter */
if(uses_p5) /* set last parameter */
lastparm = 10;
else if(uses_p4)
lastparm = 8;
else if(uses_p3)
lastparm = 6;
else if(uses_p2)
lastparm = 4;
else
lastparm = 2; /* uses_p1 or no parameter */
}
numparams = 0;
for (i = firstparm; i < lastparm; i++)
{
if (typehasparm(julibrot?neworbittype:fractype,i,NULL)==0) {
if(fractype == FORMULA || fractype == FFORMULA)
if(paramnotused(i))
continue;
break;
}
numparams++;
}
if (fractype != FORMULA && fractype != FFORMULA)
lastparm = numparams;
choose_vars_restart:
k = -1;
for (num = firstparm; num < lastparm; num++) {
if(fractype == FORMULA || fractype == FFORMULA)
if(paramnotused(num))
continue;
choices[++k]=gene[num].name;
uvalues[k].type = 'l';
uvalues[k].uval.ch.vlen = 7;
uvalues[k].uval.ch.llen = 7;
uvalues[k].uval.ch.list = evolvmodes;
uvalues[k].uval.ch.val = gene[num].mutate;
}
LOADCHOICES("");
uvalues[k].type = '*';
LOADCHOICES("Press F2 to set all to off");
uvalues[k].type ='*';
LOADCHOICES("Press F3 to set all on");
uvalues[k].type = '*';
LOADCHOICES("Press F4 to randomize all");
uvalues[k].type = '*';
LOADCHOICES("Press F6 for second page"); /* F5 gets eaten */
uvalues[k].type = '*';
i = fullscreen_prompt(hdg,k+1,choices,uvalues,92,NULL);
switch(i) {
case F2: /* set all off */
for (num = 0; num < MAXPARAMS; num++)
gene[num].mutate = 0;
goto choose_vars_restart;
case F3: /* set all on..alternate x and y for field map */
for (num = 0; num < MAXPARAMS; num ++ )
gene[num].mutate = (char)((num % 2) + 1);
goto choose_vars_restart;
case F4: /* Randomize all */
for (num =0; num < MAXPARAMS; num ++ )
gene[num].mutate = (char)(rand() % 6);
goto choose_vars_restart;
case F6: /* go to second screen, put array away first */
MoveToMemory((BYTE *)&gene, (U16)sizeof(gene), 1L, 0L, gene_handle);
chngd = get_the_rest();
MoveFromMemory((BYTE *)&gene, (U16)sizeof(gene), 1L, 0L, gene_handle);
goto choose_vars_restart;
case -1:
return(chngd);
default:
break;
}
/* read out values */
k = -1;
for (num = firstparm; num < lastparm; num++) {
if(fractype == FORMULA || fractype == FFORMULA)
if(paramnotused(num))
continue;
gene[num].mutate = (char)(uvalues[++k].uval.ch.val);
}
MoveToMemory((BYTE *)&gene, (U16)sizeof(gene), 1L, 0L, gene_handle);
return(1); /* if you were here, you want to regenerate */
}
void set_mutation_level(int strength)
{
/* scan through the gene array turning on random variation for all parms that */
/* are suitable for this level of mutation */
int i;
GENEBASE gene[NUMGENES];
/* get the gene array from far memory */
MoveFromMemory((BYTE *)&gene, (U16)sizeof(gene), 1L, 0L, gene_handle);
for (i=0;i<NUMGENES;i++) {
if(gene[i].level <= strength)
gene[i].mutate = 5; /* 5 = random mutation mode */
else
gene[i].mutate = 0;
}
/* now put the gene array back in far memory */
MoveToMemory((BYTE *)&gene, (U16)sizeof(gene), 1L, 0L, gene_handle);
return;
}
int get_evolve_Parms(void)
{
static FCODE o_hdg[]={"Evolution Mode Options"};
char hdg[sizeof(o_hdg)];
char far *choices[20];
char far *ptr;
int oldhelpmode;
struct fullscreenvalues uvalues[20];
int i,j, k, tmp;
int old_evolving,old_gridsz;
int old_variations = 0;
double old_paramrangex,old_paramrangey,old_opx,old_opy,old_fiddlefactor;
/* fill up the previous values arrays */
old_evolving = evolving;
old_gridsz = gridsz;
old_paramrangex = paramrangex;
old_paramrangey = paramrangey;
old_opx = opx;
old_opy = opy;
old_fiddlefactor = fiddlefactor;
get_evol_restart:
far_strcpy(hdg,o_hdg);
ptr = (char far *)MK_FP(extraseg,0);
if ((evolving & RANDWALK)||(evolving & RANDPARAM)) {
/* adjust field param to make some sense when changing from random modes*/
/* maybe should adjust for aspect ratio here? */
paramrangex = paramrangey = fiddlefactor * 2;
opx = param[0] - fiddlefactor;
opy = param[1] - fiddlefactor;
/* set middle image to last selected and edges to +- fiddlefactor */
}
k = -1;
LOADCHOICES("Evolution mode? (no for full screen)");
uvalues[k].type = 'y';
uvalues[k].uval.ch.val = evolving&1;
LOADCHOICES("Image grid size (odd numbers only)");
uvalues[k].type = 'i';
uvalues[k].uval.ival = gridsz;
if (explore_check()) { /* test to see if any parms are set to linear */
/* variation 'explore mode' */
LOADCHOICES("Show parameter zoom box?")
uvalues[k].type = 'y';
uvalues[k].uval.ch.val = ((evolving & PARMBOX) / PARMBOX);
LOADCHOICES("x parameter range (across screen)");
uvalues[k].type = 'f';
uvalues[k].uval.dval = paramrangex;
LOADCHOICES("x parameter offset (left hand edge)");
uvalues[k].type = 'f';
uvalues[k].uval.dval = opx;
LOADCHOICES("y parameter range (up screen)");
uvalues[k].type = 'f';
uvalues[k].uval.dval = paramrangey;
LOADCHOICES("y parameter offset (lower edge)");
uvalues[k].type = 'f';
uvalues[k].uval.dval= opy;
}
LOADCHOICES("Max random mutation");
uvalues[k].type = 'f';
uvalues[k].uval.dval = fiddlefactor;
LOADCHOICES("Mutation reduction factor (between generations)");
uvalues[k].type = 'f';
uvalues[k].uval.dval = fiddle_reduction;
LOADCHOICES("Grouting? ");
uvalues[k].type = 'y';
uvalues[k].uval.ch.val = !((evolving & NOGROUT) / NOGROUT);
LOADCHOICES("");
uvalues[k].type = '*';
LOADCHOICES("Press F4 to reset view parameters to defaults.");
uvalues[k].type = '*';
LOADCHOICES("Press F2 to halve mutation levels");
uvalues[k].type = '*';
LOADCHOICES("Press F3 to double mutation levels" );
uvalues[k].type ='*';
LOADCHOICES("Press F6 to control which parameters are varied");
uvalues[k].type = '*';
oldhelpmode = helpmode; /* this prevents HELP from activating */
helpmode = HELPEVOL;
i = fullscreen_prompt(hdg,k+1,choices,uvalues,255,NULL);
helpmode = oldhelpmode; /* re-enable HELP */
if (i < 0) {
/* in case this point has been reached after calling sub menu with F6 */
evolving = old_evolving;
gridsz = old_gridsz;
paramrangex = old_paramrangex;
paramrangey = old_paramrangey;
opx = old_opx;
opy = old_opy;
fiddlefactor = old_fiddlefactor;
return(-1);
}
if (i == F4) {
set_current_params();
fiddlefactor = 1;
fiddle_reduction = 1.0;
goto get_evol_restart;
}
if (i==F2 ) {
paramrangex = paramrangex / 2;
opx = newopx = opx + paramrangex / 2;
paramrangey = paramrangey / 2;
opy = newopy = opy + paramrangey / 2;
fiddlefactor = fiddlefactor / 2;
goto get_evol_restart;
}
if (i==F3 ) {
double centerx, centery;
centerx = opx + paramrangex / 2;
paramrangex = paramrangex * 2;
opx = newopx = centerx - paramrangex / 2;
centery = opy + paramrangey / 2;
paramrangey = paramrangey * 2;
opy = newopy = centery - paramrangey / 2;
fiddlefactor = fiddlefactor * 2;
goto get_evol_restart;
}
j = i;
/* now check out the results (*hopefully* in the same order <grin>) */
k = -1;
viewwindow = evolving = uvalues[++k].uval.ch.val;
if (!evolving && i != F6) /* don't need any of the other parameters JCO 12JUL2002 */
return(1); /* the following code can set evolving even if it's off */
gridsz = uvalues[++k].uval.ival;
tmp = sxdots / (MINPIXELS<<1);
/* (sxdots / 20), max # of subimages @ 20 pixels per subimage */
/* MAXGRIDSZ == 1024 / 20 == 51 */
if (gridsz > MAXGRIDSZ)
gridsz = MAXGRIDSZ;
if (gridsz > tmp)
gridsz = tmp;
if (gridsz < 3)
gridsz = 3;
gridsz |= 1; /* make sure gridsz is odd */
if (explore_check()) {
tmp = (PARMBOX * uvalues[++k].uval.ch.val);
if (evolving)
evolving += tmp;
paramrangex = uvalues[++k].uval.dval;
newopx = opx = uvalues[++k].uval.dval;
paramrangey = uvalues[++k].uval.dval;
newopy = opy = uvalues[++k].uval.dval;
}
fiddlefactor = uvalues[++k].uval.dval;
fiddle_reduction = uvalues[++k].uval.dval;
if (!(uvalues[++k].uval.ch.val)) evolving = evolving + NOGROUT;
viewxdots = (sxdots / gridsz)-2;
viewydots = (sydots / gridsz)-2;
if (!viewwindow) viewxdots=viewydots=0;
i = 0;
if ( evolving != old_evolving
|| (gridsz != old_gridsz) ||(paramrangex!= old_paramrangex)
|| (opx != old_opx ) || (paramrangey != old_paramrangey)
|| (opy != old_opy) || (fiddlefactor != old_fiddlefactor)
|| (old_variations > 0) )
i = 1;
if (evolving && !old_evolving)
param_history(0); /* save old history */
if (!evolving && (evolving == old_evolving)) i = 0;
if (j==F6) {
old_variations = get_variations();
set_current_params();
if (old_variations > 0)
{
viewwindow = 1;
evolving |= 1; /* leave other settings alone */
}
fiddlefactor = 1;
fiddle_reduction = 1.0;
goto get_evol_restart;
}
return(i);
}
void SetupParamBox(void)
{
int vidsize;
prmboxcount = 0;
parmzoom=((double)gridsz-1.0)/2.0;
/* need to allocate 2 int arrays for boxx and boxy plus 1 byte array for values */
vidsize = (xdots+ydots) * 4 * sizeof(int) ;
vidsize = vidsize + xdots + ydots + 2 ;
if (prmboxhandle == 0)
prmboxhandle = MemoryAlloc((U16)(vidsize),1L,FARMEM);
if (prmboxhandle == 0 ) {
static FCODE msg[] = {"Sorry...can't allocate mem for parmbox"};
texttempmsg(msg);
evolving=0;
}
prmboxcount=0;
/* vidsize = (vidsize / gridsz)+3 ; */ /* allocate less mem for smaller box */
/* taken out above as *all* pixels get plotted in small boxes */
if (imgboxhandle == 0)
imgboxhandle = MemoryAlloc((U16)(vidsize),1L,FARMEM);
if (!imgboxhandle) {
static FCODE msg[] = {"Sorry...can't allocate mem for imagebox"};
texttempmsg(msg);
}
}
void ReleaseParamBox(void)
{
MemoryRelease(prmboxhandle);
MemoryRelease(imgboxhandle);
prmboxhandle = 0;
imgboxhandle = 0;
}
void set_current_params(void)
{
paramrangex = curfractalspecific->xmax - curfractalspecific->xmin;
opx = newopx = - (paramrangex / 2);
paramrangey = curfractalspecific->ymax - curfractalspecific->ymin;
opy = newopy = - (paramrangey / 2);
return;
}
void fiddleparms(GENEBASE gene[], int ecount)
{
/* call with px,py ... parameter set co-ords*/
/* set random seed then call rnd enough times to get to px,py */
/* 5/2/96 adding in indirection */
/* 26/2/96 adding in multiple methods and field map */
/* 29/4/96 going for proper handling of the whole gene array */
/* bung in a pile of switches to allow for expansion to any
future variable types */
/* 11/6/96 scrapped most of switches above and used function pointers
instead */
/* 4/1/97 picking it up again after the last step broke it all horribly! */
int i;
/* when writing routines to vary param types make sure that rand() gets called
the same number of times whether gene[].mutate is set or not to allow
user to change it between generations without screwing up the duplicability
of the sequence and starting from the wrong point */
/* this function has got simpler and simpler throughout the construction of the
evolver feature and now consists of just these few lines to loop through all
the variables referenced in the gene array and call the functions required
to vary them, aren't pointers marvellous! */
if ((px == gridsz / 2) && (py == gridsz / 2)) /* return if middle image */
return;
set_random(ecount); /* generate the right number of pseudo randoms */
for (i=0;i<NUMGENES;i++)
(*(gene[i].varyfunc))(gene,rand(),i);
}
static void set_random(int ecount)
{ /* This must be called with ecount set correctly for the spiral map. */
/* Call this routine to set the random # to the proper value */
/* if it may have changed, before fiddleparms() is called. */
/* Now called by fiddleparms(). */
int index,i;
srand(this_gen_rseed);
for (index=0;index < ecount;index++)
for (i=0;i<NUMGENES;i++)
rand();
}
int explore_check(void)
{
/* checks through gene array to see if any of the parameters are set to */
/* one of the non random variation modes. Used to see if parmzoom box is */
/* needed */
int nonrandom = FALSE;
int i;
GENEBASE gene[NUMGENES];
MoveFromMemory((BYTE *)&gene, (U16)sizeof(gene), 1L, 0L, gene_handle);
for (i=0;i<NUMGENES && !(nonrandom);i++)
if ((gene[i].mutate > 0) && (gene[i].mutate < 5)) nonrandom = TRUE;
return(nonrandom);
}
void drawparmbox(int mode)
{
/* draws parameter zoom box in evolver mode */
/* clears boxes off screen if mode=1, otherwise, redraws boxes */
struct coords tl,tr,bl,br;
int grout;
if (!(evolving & PARMBOX)) return; /* don't draw if not asked to! */
grout = !((evolving & NOGROUT)/NOGROUT) ;
imgboxcount = boxcount;
if (boxcount) {
/* stash normal zoombox pixels */
MoveToMemory((BYTE *)boxx,(U16)(boxcount*2),1L,0L,imgboxhandle);
MoveToMemory((BYTE *)boxy,(U16)(boxcount*2),1L,1L,imgboxhandle);
MoveToMemory((BYTE *)boxvalues,(U16)boxcount,1L,4L,imgboxhandle);
clearbox(); /* to avoid probs when one box overlaps the other */
}
if (prmboxcount!=0) { /* clear last parmbox */
boxcount=prmboxcount;
MoveFromMemory((BYTE *)boxx,(U16)(boxcount*2),1L,0L,prmboxhandle);
MoveFromMemory((BYTE *)boxy,(U16)(boxcount*2),1L,1L,prmboxhandle);
MoveFromMemory((BYTE *)boxvalues,(U16)boxcount,1L,4L,prmboxhandle);
clearbox();
}
if (mode == 1) {
boxcount = imgboxcount;
prmboxcount = 0;
return;
}
boxcount =0;
/*draw larger box to show parm zooming range */
tl.x = bl.x = ((px -(int)parmzoom) * (int)(dxsize+1+grout))-sxoffs-1;
tl.y = tr.y = ((py -(int)parmzoom) * (int)(dysize+1+grout))-syoffs-1;
br.x = tr.x = ((px +1+(int)parmzoom) * (int)(dxsize+1+grout))-sxoffs;
br.y = bl.y = ((py +1+(int)parmzoom) * (int)(dysize+1+grout))-syoffs;
#ifndef XFRACT
addbox(br);addbox(tr);addbox(bl);addbox(tl);
drawlines(tl,tr,bl.x-tl.x,bl.y-tl.y);
drawlines(tl,bl,tr.x-tl.x,tr.y-tl.y);
#else
boxx[0] = tl.x + sxoffs;
boxy[0] = tl.y + syoffs;
boxx[1] = tr.x + sxoffs;
boxy[1] = tr.y + syoffs;
boxx[2] = br.x + sxoffs;
boxy[2] = br.y + syoffs;
boxx[3] = bl.x + sxoffs;
boxy[3] = bl.y + syoffs;
boxcount = 8;
#endif
if(boxcount) {
dispbox();
/* stash pixel values for later */
MoveToMemory((BYTE *)boxx,(U16)(boxcount*2),1L,0L,prmboxhandle);
MoveToMemory((BYTE *)boxy,(U16)(boxcount*2),1L,1L,prmboxhandle);
MoveToMemory((BYTE *)boxvalues,(U16)boxcount,1L,4L,prmboxhandle);
}
prmboxcount = boxcount;
boxcount = imgboxcount;
if(imgboxcount) {
/* and move back old values so that everything can proceed as normal */
MoveFromMemory((BYTE *)boxx,(U16)(boxcount*2),1L,0L,imgboxhandle);
MoveFromMemory((BYTE *)boxy,(U16)(boxcount*2),1L,1L,imgboxhandle);
MoveFromMemory((BYTE *)boxvalues,(U16)boxcount,1L,4L,imgboxhandle);
dispbox();
}
return;
}
void set_evolve_ranges(void)
{
int lclpy = gridsz - py - 1;
/* set up ranges and offsets for parameter explorer/evolver */
paramrangex=dpx*(parmzoom*2.0);
paramrangey=dpy*(parmzoom*2.0);
newopx=opx+(((double)px-parmzoom)*dpx);
newopy=opy+(((double)lclpy-parmzoom)*dpy);
newodpx=(char)(odpx+(px-gridsz/2));
newodpy=(char)(odpy+(lclpy-gridsz/2));
return;
}
void spiralmap(int count)
{
/* maps out a clockwise spiral for a prettier and possibly */
/* more intuitively useful order of drawing the sub images. */
/* All the malarky with count is to allow resuming */
int i,mid,offset;
i = 0;
mid = gridsz / 2;
if (count == 0) { /* start in the middle */
px = py = mid;
return;
}
for(offset = 1; offset <= mid; offset ++) {
/* first do the top row */
py = (mid - offset);
for(px = (mid - offset)+1; px <mid+offset; px++) {
i++;
if (i==count) return;
}
/* then do the right hand column */
for (; py < mid + offset; py++) {
i++;
if (i == count ) return;
}
/* then reverse along the bottom row */
for (;px > mid - offset;px--) {
i++;
if (i == count) return;
}
/* then up the left to finish */
for (; py >= mid - offset; py-- ) {
i++;
if (i== count ) return;
}
}
}
int unspiralmap(void)
{
/* unmaps the clockwise spiral */
/* All this malarky is to allow selecting different subimages */
/* Returns the count from the center subimage to the current px & py */
int mid;
static int oldgridsz = 0;
mid = gridsz / 2;
if ((px == mid && py == mid) || (oldgridsz != gridsz)) {
int i, gridsqr;
/* set up array and return */
gridsqr = gridsz * gridsz;
ecountbox[px][py] = 0; /* we know the first one, do the rest */
for (i = 1; i < gridsqr; i++) {
spiralmap(i);
ecountbox[px][py] = i;
}
oldgridsz = gridsz;
px = py = mid;
return(0);
}
return(ecountbox[px][py]);
}
/* points to ponder.....
watch out for near mem..... (TW) It's better now.
try and keep gene array in overlay? (TW) No, but try dynamic alloc.
how to preserve 'what to mutate ' choices through overlay swaps in
prompts... (TW) Needs checking, seems OK. LOADCHOICES copies, so is
safe.
*/
|