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
|
/* Side color support for the Mac interface to Xconq.
Copyright (C) 1997, 1998 Hans Ronne.
Xconq is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version. See the file COPYING. */
#include "conq.h"
#include "kpublic.h"
#include "macconq.h"
#ifdef NEW_HEADERS
#include <ColorPicker.h>
#else
#include <Picker.h>
#endif
// --- EXTERN DEFINED IN MACDRAW.C ---------------------------------------------
extern Image **best_terrain_images;
// --- FUNCTIONS PROTOTYPES ---------------------------------------------------
static RGBColor get_color(char *name); /* Get new color by name */
static RGBColor pick_new_color(RGBColor inColor, char *name); /* Use color picker to get a new color */
static void create_ppat_color(Str255 pname, RGBColor pColor); /* Create a new color ppat */
static void fill_in_empty_name(Side *side); /* Fill in empty side name using nouns etc. */
// --- DEFAULTS FOR NEW MAP PREFERENCES -----------------------------------------
int default_sidecolors = TRUE; /* Use side colors in maps & lists */
int default_iconmasks = TRUE; /* Use masks for icons */
int default_boxmasks = TRUE; /* Use masks for grouping boxes */
int default_textmasks = FALSE; /* Use masks for text */
int default_featureborders = TRUE; /* Draw feature (province) borders */
int default_featurenames = TRUE; /* Draw feature (province) names */
int default_simple_borders = TRUE; /* Do not draw borders to water or to empty lands */
int default_shorelines = TRUE; /* Draw shorelines in 3D relief */
int default_draw_topline = TRUE; /* Draw top line boxes in maps */
int default_draw_topunit = TRUE; /* Draw unit info boxes in maps */
int default_drawothermaps = TRUE; /* Draw other maps as boxes */
int default_erase_names = FALSE; /* Draw extra rows to erase name of moving unit */
int default_max_bufx = 600; /* Horizontal scrolling buffers in offscreen graphics */
int default_max_bufy = 400; /* Vertical scrolling buffers in offscreen graphics */
int default_optimize_fonts = TRUE; /* Use optimized font sizes in map content */
int default_power = 5; /* Default power of new map */
// --- VARIOUS PREFERENCES -------------------------------------------------------
int use_colornames = TRUE; /* Save and read side colors as colorschemes */
int use_RGB_values = FALSE; /* Save and read RGB colors in XCol resource */
int show_instructions = TRUE; /* Show instructions window at start */
int fullsize_map = TRUE; /* Show full size map window at start */
int unified_cicns = TRUE; /* Use BitMap as mask for the PixMap */
// --- COLOR SCHEME DEFAULTS -----------------------------------------------------
int default_main_icon_color = 1; /* Default number (1-3) of sideColor used for icons */
int default_half_icon_color = 2; /* Default number (1-3) of sideColor used for right half of icons */
int default_icon_mask_color = 3; /* Default number (1-3) of sideColor used for icon masks */
int default_split_icon = TRUE; /* Default use different colors for right and left halves of icons */
// --- COLORS, COLOR SCHEMES AND COLOR NAMES ----------------------------------------
RGBColor *featColor; /* Feature colors by RGB value */
RGBColor *sideColor; /* sideColor[0-15][1-3] are defined by default color schemes */
/* sideColor[][0] is not defined, and available for future use */
// --- 68K COLORSCHEME BUG FIX -----------------------------------------------------
extern char **current_colorscheme = 0; /* Current color schemes by names (red,pink,blue) */
/* Unlike side->colorscheme defined also for null sides */
/* Declared extern for use in macwins.c */
// char **colorscheme; /* Color schemes by name (red,pink,brown) etc */
// ----------------------------------------------------------------------------
char **default_featColorName; /* Default feature colors by name (black etc) */
char **default_colorscheme; /* Default color schemes (red,pink,brown) etc */
char **featColorItemName; /* Name of item for which featColor is set (Shorelines etc) */
char **featColorName; /* Name of feature color values (red, green etc) */
char **sideColorName; /* Name of side color values (red, green etc) */
int *main_icon_color; /* Number (1-3) of sideColor used for icons */
int *half_icon_color; /* Number (1-3) of sideColor used for right half of icons */
int *icon_mask_color; /* Number (1-3) of sideColor used for icon masks */
int *split_icon; /* Use two colors for left and right halves of icons if TRUE */
// --- FUNCTIONS FOR BUILDING AND HANDLING COLORS AND COLOR SCHEMES -----------------------
void
set_default_colors(void) /* Default colors used in absence of saved preferences */
{
int i;
featColor = (RGBColor *) xmalloc((FEATURES+1) * sizeof(RGBColor));
featColorItemName = (char **) xmalloc((FEATURES+1) * sizeof(char *));
featColorName = (char **) xmalloc((FEATURES+1) * sizeof(char *));
default_featColorName = (char **) xmalloc((FEATURES+1) * sizeof(char *));
sideColor = (RGBColor *) xmalloc((MAXSIDES+1) * 4 * sizeof(RGBColor));
sideColorName = (char **) xmalloc((MAXSIDES+1) * 4 * sizeof(char *));
// --- 68K COLORSCHEME BUG FIX ----------------------------------------------------
current_colorscheme = (char **) xmalloc((MAXSIDES+1) * sizeof(char *));
// colorscheme = (char **) xmalloc((MAXSIDES+1) * sizeof(char *));
default_colorscheme = (char **) xmalloc((MAXSIDES+1) * sizeof(char *));
// for (i = 0; i <= MAXSIDES; i++) {
// side_n(i)->colorscheme = (char *) xmalloc(96);
// strcpy(side_n(i)->colorscheme, "");
// }
// ----------------------------------------------------------------------------
main_icon_color = (int *) xmalloc((MAXSIDES+1) * sizeof(int));
half_icon_color = (int *) xmalloc((MAXSIDES+1) * sizeof(int));
icon_mask_color = (int *) xmalloc((MAXSIDES+1) * sizeof(int));
split_icon = (int *) xmalloc((MAXSIDES+1) * sizeof(int));
default_colorscheme[0] = "black,black,white";
default_colorscheme[1] = "blue,blue,pale-turquoise";
default_colorscheme[2] = "red,red,yellow";
default_colorscheme[3] = "deep-pink,deep-pink,spring-green";
default_colorscheme[4] = "straw,straw,saddle-brown";
default_colorscheme[5] = "red,blue,cyan";
default_colorscheme[6] = "white,violet,black";
default_colorscheme[7] = "cyan,cyan,blue";
default_colorscheme[8] = "yellow,yellow,red";
default_colorscheme[9] = "green,magenta,medium-blue";
default_colorscheme[10] = "purple,purple,cyan";
default_colorscheme[11] = "navy-blue,deep-pink,spring-green";
default_colorscheme[12] = "lawn-green,lawn-green,deep-pink";
default_colorscheme[13] = "light-pink,spring-green,midnight-blue";
default_colorscheme[14] = "dark-green,purple,aquamarine";
default_colorscheme[15] = "cyan,green-yellow,navy-blue";
default_featColorName[0] = "black"; /* Unused */
default_featColorName[1] = "black"; /* Fore color */
default_featColorName[2] = "pale-turquoise"; /* Mask color */
default_featColorName[3] = "midnight-blue"; /* Text color */
default_featColorName[4] = "dark-gray"; /* Grid color */
default_featColorName[5] = "black"; /* Unseen color */
// --- DONT USE SAME DEFAULT COLORS FOR SHORELINES AND GRID ------------------------
default_featColorName[6] = "blue"; /* Shorelines */ // "mountains-3" also looks OK!
// default_featColorName[6] = "dark-gray"; /* Shorelines */
// ---------------------------------------------------------------------
default_featColorName[7] = "deep-pink"; /* Feature text and borders */
default_featColorName[8] = "red"; /* Frontlines */
default_featColorName[9] = "midnight-blue"; /* Meridians */
default_featColorName[10] = "saddle-brown"; /* Contour lines */
featColorItemName[1] = "Fore color"; /* These names are used in the Colors menu */
featColorItemName[2] = "Mask color";
featColorItemName[3] = "Text color";
featColorItemName[4] = "Grid color";
featColorItemName[5] = "Unseen color";
featColorItemName[6] = "Shorelines";
featColorItemName[7] = "Features";
featColorItemName[8] = "Frontlines";
featColorItemName[9] = "Meridians";
featColorItemName[10] = "Contours";
}
void
set_default_side_colors(int e)
{
/* First reset current colors to default colors */
// --- 68K COLORSCHEME BUG FIX ----------------------------------------------------
side_n(e)->colorscheme = default_colorscheme[e];
// strcpy( side_n(e)->colorscheme, default_colorscheme[e]);
// ----------------------------------------------------------------------------
/* Change the current colors */
set_side_colors(e);
/* Copy the result back to default colors */
// --- 68K COLORSCHEME BUG FIX ----------------------------------------------------
default_colorscheme[e] = side_n(e)->colorscheme;
// strcpy(default_colorscheme[e], side_n(e)->colorscheme);
// ---------------------------------------------------------------------------
force_overall_update();
save_preferences();
}
void
set_default_feature_color(int e)
{
/* First reset current colors to default colors */
featColorName[e] = default_featColorName[e];
/* Change the current colors */
set_feature_color(e);
/* Copy the result back to default colors */
default_featColorName[e] = featColorName[e];
force_overall_update();
save_preferences();
}
/* Load side colors and feature colors from defaults */
void
init_side_colors(void)
{
int i;
char cstring[96];
for (i = 0; i <= MAXSIDES; i++) {
/* Use of XCol colors overrides any colorschemes */
if (!use_RGB_values) {
/* Set side color names initially to "undefined" */
set_sideColorName(i, 1, "undefined");
set_sideColorName(i, 2, "undefined");
set_sideColorName(i, 3, "undefined");
// --- 68K COLORSCHEME BUG FIX ----------------------------------------------------
/* Use schemes defined in game file if present or else default schemes */
if (side_n(i) && side_n(i)->colorscheme)
current_colorscheme[i] = copy_string(side_n(i)->colorscheme);
else current_colorscheme[i] = copy_string(default_colorscheme[i]);
dissect_colorscheme(i);
// /* First load the default colorschemes */
// colorscheme[i] = default_colorscheme[i];
// /* Then overwrite them with schemes from game file */
// if (strcmp(side_n(i)->colorscheme, "") != 0) {
// colorscheme[i] = side_n(i)->colorscheme;
// }
// /* Dissect scheme into colors and color names */
// dissect_colorscheme(i, colorscheme[i]);
// ----------------------------------------------------------------------------
}
/* Load color use parameters from their defaults values */
main_icon_color[i] = default_main_icon_color;
half_icon_color[i] = default_half_icon_color;
icon_mask_color[i] = default_icon_mask_color;
split_icon[i] = default_split_icon;
/* Then zero color use parameters if the corresponding color is undefined */
if (strcmp(get_sideColorName(i, main_icon_color[i]), "undefined") == 0) {
main_icon_color[i] = 0;
}
if (strcmp(get_sideColorName(i, half_icon_color[i]), "undefined") == 0) {
half_icon_color[i] = 0;
split_icon[i] = 0;
}
if (strcmp(get_sideColorName(i, icon_mask_color[i]), "undefined") == 0) {
icon_mask_color[i] = 0;
}
}
for (i = 0; i <= FEATURES; i++) {
/* Load feature colors from their defaults */
featColorName[i] = default_featColorName[i];
featColor[i] = get_color(featColorName[i]);
}
// --- MOVED HERE FROM INIT_TERRAIN_IMAGES -----------------------------------------
if (strcmp(gridcolor_name, unseencolor_name) == 0
&& empty_string(g_unseen_image_name()))
grid_matches_unseen = TRUE;
blackcolor.red = blackcolor.green = blackcolor.blue = 0;
// ---------------------------------------------------------------------------
}
/* This function is based on init_emblem from the X11 interface. */
/* It also tests each name for validity and stores it in an array. */
// --- 68K COLORSCHEME BUG FIX ----------------------------------------------------
void
dissect_colorscheme(int sidenum)
// dissect_colorscheme(int sidenum, char* colorscheme)
{
char *colorscheme = current_colorscheme[sidenum];
// ----------------------------------------------------------------------------
char *s, *c;
char cbuf[BUFSIZE];
int i, button;
Str255 pname;
if (!empty_string(colorscheme)) {
/* Take spec apart and iterate for multiple colors */
for (s = colorscheme, c = cbuf, i = 1; i <= 3; ++s) {
/* Test for end of name or end of scheme */
if (*s == ',' || *s == '\0') {
/* Terminate the name string */
*c = '\0';
c = cbuf;
/* First check that the color name is valid. If not, substitute "undefined" */
if (!valid_imf_name(cbuf)) {
c2p(cbuf, pname);
ParamText("\pSorry, ", pname,
"\p is not a valid color name. Substituting undefined.", "\p");
button = Alert(aOneButtonAlert, NULL);
strcpy(cbuf, "undefined");
}
/* Also replace empty strings with "undefined" but do it silently */
if (strcmp(cbuf, "") == 0)
strcpy(cbuf, "undefined");
/* Get the color and store the color name in the name array */
set_sideColorName(sidenum, i, copy_string(cbuf));
set_sideColor(sidenum, i++, get_color(cbuf));
/* Add one more character */
} else *c++ = *s;
/* Test for end of colorscheme */
if (*s == '\0')
break;
}
}
}
/* Get a ppat color by its name. Function that call get_color should first check that the name is valid */
RGBColor
get_color(char* name)
{
ImageFamily *imf;
Image *img;
MacImage *macimg;
short button;
Str255 pname, filename;
RGBColor newColor;
/* Return without color if name is "undefined" */
if (strcmp(name, "undefined") == 0) return;
/* Find (or create) the image family */
imf = get_imf(name);
mac_load_imf(imf);
img = get_img(imf, 1, 1);
/* Choose the wanted color if it already exists */
if (img->hook) {
macimg = (MacImage *) img->hook;
newColor = macimg->color;
return newColor;
} else {
c2p(name, pname);
ParamText("\pColor ", pname, "\p does not exist. ",
"\pDo you want to create a new color with that name?");
button = Alert(aTwoButtonAlert, NULL);
if (button == 1) {
/* Pick the new color */
newColor = pick_new_color(newColor, name);
ParamText("\pDo you wish to store color ", pname,
"\p in your Images file?", "\p");
button = Alert(aTwoButtonAlert, NULL);
if (button == 1) {
/* Create and store a new ppat color in the Images file */
create_ppat_color(pname, newColor);
/* Load the new ppat color into the image family */
mac_load_imf(imf);
}
return newColor;
/* Set name to "undefined" if no color was picked */
} else strcpy(name, "undefined");
}
}
/*
This function creates a new ppat of the desired color, using the black ppat as a template. It might
seem logical to just create a PixPat and save it as a ppat. However, this does not work since there
is no easy way to make a ppat from a PixPat. GetPixPat converts ppats to PixPats, but there is no
toolbox trap for the other direction!
*/
void
create_ppat_color(Str255 pname, RGBColor pColor)
{
short ppatID, button;
Handle blackHandle, colorHandle;
CTabHandle ctabHandle;
Str255 filename;
/* Get a handle to the black ppat in the Images file */
UseResFile(images_refnum);
if (ResError()) {
ParamText("\pCannot find your Images file! ",
"\pThe new color was not stored.", "\p", "\p");
button = Alert(aOneButtonAlert, NULL);
return;
}
blackHandle = GetNamedResource('ppat', "\pblack");
/* Get a new handle and copy the black ppat into it */
colorHandle = NewHandle(102);
HLock(colorHandle);
HLock(blackHandle);
memcpy(*colorHandle, *blackHandle, 102);
/* Disposing of blackHandle will cause a crash! */
HUnlock(blackHandle);
/* Create a single color ctab and store the new color inside */
ctabHandle = (CTabHandle) NewHandle(16);
HLock((Handle) ctabHandle);
(*ctabHandle)->ctFlags = 0;
(*ctabHandle)->ctSeed = GetCTSeed();
(*ctabHandle)->ctSize = 0;
(*ctabHandle)->ctTable->value = 0;
(*ctabHandle)->ctTable->rgb = pColor;
/* Copy the new ctab into the new handle */
memcpy(*colorHandle + 86, *ctabHandle, 16);
HUnlock((Handle) ctabHandle);
DisposHandle((Handle) ctabHandle);
/* Add a new ppat resource using the new handle */
UseResFile(images_refnum);
ppatID = UniqueID('ppat');
AddResource(colorHandle, 'ppat', ppatID, pname);
UpdateResFile(images_refnum);
/* Disposing of colorHandle will cause a crash! */
HUnlock(colorHandle);
/* Run get_files to open all resource files, or we will get the "cannot find sound */
/* crunch" whine. Editing one file makes Xconq lose track of all other open files. */
get_files();
}
/* Given an initial color and a name, allow the user to pick a color
for that name. */
RGBColor
pick_new_color(RGBColor inColor, char* name)
{
RGBColor outColor = inColor;
Point where = {0};
char prompt[64];
Str255 pprompt;
short button;
/* Return if the color name is "undefined". */
if (strcmp(name, "undefined") == 0)
return;
/* Build the prompt. */
strcpy(prompt, "Define ");
strcat(prompt, name);
strcat(prompt, ":");
c2p(prompt, pprompt);
/* Open the color picker. */
button = GetColor(where, pprompt, &inColor, &outColor);
if (button == 1)
return outColor;
else
return inColor;
}
// --- FUNCTIONS FOR READING AND WRITING XCOL RGB DATA --------------------------------
/* (should generify all this) */
void
read_xcol(void)
{
Handle XCol; /* Special resource used to save RGB colors in prefs file */
int i, j; /* Index for loading colors from XCol resource */
int n = 0; /* XCol resource counter */
/* First load the side colors */
for (i = 0; i <= MAXSIDES; i++) {
for (j = 1; j <= 3; j++) {
/* Convert XCol resource data into RGB colors */
XCol = GetResource('XCol', 128 + n);
if (XCol != nil) {
sideColor[4 * i + j].red = *(*XCol + 1);
sideColor[4 * i + j].green = *(*XCol + 3);
sideColor[4 * i + j].blue = *(*XCol + 5) ;
sideColor[4 * i + j].red &= 0x00FF; /* Necessary to avoid color drift */
sideColor[4 * i + j].green &= 0x00FF; /* Dont ask me why */
sideColor[4 * i + j].blue &= 0x00FF;
sideColor[4 * i + j].red += (*(*XCol + 0) << 8);
sideColor[4 * i + j].green += (*(*XCol + 2) << 8);
sideColor[4 * i + j].blue += (*(*XCol + 4) << 8);
n += 1;
}
}
}
/* Then load the feature colors */
for (i = 1; i <= FEATURES; i++) {
/* Convert XCol resource data into RGB colors */
XCol = GetResource('XCol', 128 + n);
if (XCol != nil) {
featColor[i].red = *(*XCol + 1);
featColor[i].green = *(*XCol + 3);
featColor[i].blue = *(*XCol + 5) ;
featColor[i].red &= 0x00FF; /* Necessary to avoid color drift */
featColor[i].green &= 0x00FF; /* Dont ask me why */
featColor[i].blue &= 0x00FF;
featColor[i].red += (*(*XCol + 0) << 8);
featColor[i].green += (*(*XCol + 2) << 8);
featColor[i].blue += (*(*XCol + 4) << 8);
n += 1;
}
}
}
void
write_xcol(void)
{
char cnumber[2], cstring[36];
Str255 pnumber, pstring; /* Used to write XCol names in pref file */
Handle XCol, oldXCol; /* Special resource used to store RGB colors */
int i, j; /* Index for loading XCols into sideColor[] */
int n = 0; /* Resource counter */
/* First write the side colors */
for (i = 0; i <= MAXSIDES; i++) {
for (j = 1; j <= 3; j++) {
/* Convert RGB colors into XCol resource data */
oldXCol = GetResource('XCol', 128 + n);
if (oldXCol != nil) RmveResource(oldXCol);
XCol = NewHandle(6);
*(*XCol + 1) = sideColor[4 * i + j].red;
*(*XCol + 3) = sideColor[4 * i + j].green;
*(*XCol + 5) = sideColor[4 * i + j].blue;
*(*XCol + 0) = sideColor[4 * i + j].red >> 8;
*(*XCol + 2) = sideColor[4 * i + j].green >> 8;
*(*XCol + 4) = sideColor[4 * i + j].blue >> 8;
strcpy(cstring, "Side ");
NumToString(i, pnumber);
p2c(pnumber, cnumber);
strcat(cstring, cnumber);
strcat(cstring, " color ");
NumToString(j, pnumber);
p2c(pnumber, cnumber);
strcat(cstring, cnumber);
c2p(cstring, pstring);
AddResource(XCol, 'XCol', 128 + n, pstring);
n += 1;
}
}
/* Then write the feature colors */
for (i = 1; i <= FEATURES; i++) {
/* Convert RGB colors into XCol resource data */
oldXCol = GetResource('XCol', 128 + n);
if (oldXCol != nil) RmveResource(oldXCol);
XCol = NewHandle(6);
*(*XCol + 1) = featColor[i].red;
*(*XCol + 3) = featColor[i].green;
*(*XCol + 5) = featColor[i].blue;
*(*XCol + 0) = featColor[i].red >> 8;
*(*XCol + 2) = featColor[i].green >> 8;
*(*XCol + 4) = featColor[i].blue >> 8;
c2p(featColorItemName[i], pstring);
AddResource(XCol, 'XCol', 128 + n, pstring);
n += 1;
}
}
// --- COLOR MANAGING DIALOGS ----------------------------------------------------
/* The following three dialogs are used by the Colors menu and also by Preferences : Colorschemes */
/* This monster dialog does just about anything that has to do with side colors. A checkbox at the top enables or
disables the use of split icons (two different colors for the left and right half). Three popup menus makes it
possible to chose three different colors from the available ppat colors in the Images file. The name of the new
color can also be entered in a text field, followed by a Return. The editflag parameter is used to ensure that
such a Return is not interpreted as a hit of the OK button. The actual RGB values associated with a given color
name can be changed by clicking the color field, where the color itself is displayed. A second row of popup
menus makes it possible to chose how each color should be used. The half icon color alternative is disabled if
the split icon checkbox is unchecked, and the whole menu is disabled if the color is undefined. If a color use is
picked which already was assigned to another color, that color is switched to "Not in use". At the bottom of the
dialog box, five sample icons are plotted in real time to illustrate the given choice of colors. */
void
set_side_colors(int e)
{
char cname[32], tmpName1[32], tmpName2[32], tmpName3[32], tmpScheme[96];
short tmpUse[4], tmpSplit, editflag, ditem, mitem, button, found, done, i, n;
RGBColor tmpColor[4], tmpMain, tmpHalf, tmpMask, tmpBack;
Handle itemhandle, ppathandle;
MenuHandle popMenu, useMenu;
Rect srcrect, itemrect;
CIconHandle cicnhandle;
MacImage *macuimg;
BitMap bm, mm;
GrafPtr oldport;
Image *uimg;
Str255 pname;
DialogPtr win;
/* First check for the Images file */
n = GetResFileAttrs(images_refnum);
if (ResError()) {
ParamText("\pCannot find your lib-mac : Images file!", "\p", "\p", "\p");
button = Alert(aOneButtonAlert, NULL);
return;
}
/* Then check for color support */
if (!hasColorQD) {
ParamText("\pSorry, your mac does not support colors.", "\p", "\p", "\p");
button = Alert(aOneButtonAlert, NULL);
return;
}
/* Get dialog window and popup menus */
win = GetNewDialog(dSideColor, NULL, (DialogPtr) -1);
popMenu = GetMenu(mSideColorPopup);
useMenu = GetMenu(mSideColorUse);
/* Save the Dialog background color if not white */
tmpBack = ((CGrafPtr) win)->rgbBkColor;
/* Load current side color names into temp names */
strcpy(tmpName1, get_sideColorName(e, 1));
strcpy(tmpName2, get_sideColorName(e, 2));
strcpy(tmpName3, get_sideColorName(e, 3));
/* Load current side colors into temp colors */
tmpColor[1] = get_sideColor(e, 1);
tmpColor[2] = get_sideColor(e, 2);
tmpColor[3] = get_sideColor(e, 3);
/* Also load side colors into tmpMain, tmpHalf & tmpMask */
tmpMain = get_sideColor(e, main_icon_color[e]);
tmpHalf = get_sideColor(e, half_icon_color[e]);
tmpMask = get_sideColor(e, icon_mask_color[e]);
/* Load color use info into tmpUse[i] */
for (i = 1; i <= 3; i++) {
if (main_icon_color[e] == i)
tmpUse[i] = miMainIconColor;
else if (half_icon_color[e] == i)
tmpUse[i] = miHalfIconColor;
else if (icon_mask_color[e] == i)
tmpUse[i] = miIconMaskColor;
else
tmpUse[i] = miNotInUse;
}
/* Load use of split icons */
tmpSplit = split_icon[e];
/* Load temp names into the text fields */
GetDItem(win, diSideColorName1, NULL, &itemhandle, NULL);
c2p(tmpName1, pname);
SetIText(itemhandle, pname);
GetDItem(win, diSideColorName2, NULL, &itemhandle, NULL);
c2p(tmpName2, pname);
SetIText(itemhandle, pname);
GetDItem(win, diSideColorName3, NULL, &itemhandle, NULL);
c2p(tmpName3, pname);
SetIText(itemhandle, pname);
/* Load all available ppat colors into the popup menu */
AppendMenu(popMenu, "\pundefined");
AppendMenu(popMenu, "\p(-"); /* Item separator */
n = CountResources('ppat');
for (i = 1; i <= n; ++i ) {
ppathandle = GetIndResource('ppat', i);
GetResInfo(ppathandle, NULL, NULL, pname);
/* Only use ppats that live in the Images file */
if (HomeResFile(ppathandle) != images_refnum)
continue;
p2c(pname, cname);
/* Skip invalid names */
if (!valid_imf_name(cname))
continue;
AppendMenu(popMenu, pname);
}
/* Change port and start the main loop */
GetPort(&oldport);
SetPort(win);
done = FALSE;
editflag = FALSE;
while (!done) {
/* Check length of popMenu */
n = CountMItems(popMenu);
/* Set popup1 to tmpName1 if found in menu */
GetDItem(win, diSideColorPopup1, NULL, &itemhandle, NULL);
SetCtlMax((ControlHandle) itemhandle, n); /* Important! */
found = FALSE;
for (i = 1; i <= n; i++) {
GetItem(popMenu, i, pname);
p2c(pname, cname);
if (strcmp(tmpName1, cname) != 0)
continue;
SetCtlValue((ControlHandle) itemhandle, i);
found = TRUE;
break;
}
if (!found) { /* Add tmpName1 to menu if necessary */
n += 1;
c2p(tmpName1, pname);
AppendMenu(popMenu, pname);
SetCtlMax((ControlHandle) itemhandle, n); /* Important! */
SetCtlValue((ControlHandle) itemhandle, n);
}
/* Set popup2 to tmpName2 if found in menu */
GetDItem(win, diSideColorPopup2, NULL, &itemhandle, NULL);
SetCtlMax((ControlHandle) itemhandle, n); /* Important! */
found = FALSE;
for (i = 1; i <= n; i++) {
GetItem(popMenu, i, pname);
p2c(pname, cname);
if (strcmp(tmpName2, cname) != 0)
continue;
SetCtlValue((ControlHandle) itemhandle, i);
found = TRUE;
break;
}
if (!found) { /* Add tmpName2 to menu if necessary */
n += 1;
c2p(tmpName2, pname);
AppendMenu(popMenu, pname);
SetCtlMax((ControlHandle) itemhandle, n); /* Important! */
SetCtlValue((ControlHandle) itemhandle, n);
}
/* Set popup3 to tmpName3 if found in menu */
GetDItem(win, diSideColorPopup3, NULL, &itemhandle, NULL);
SetCtlMax((ControlHandle) itemhandle, n); /* Important! */
found = FALSE;
for (i = 1; i <= n; i++) {
GetItem(popMenu, i, pname);
p2c(pname, cname);
if (strcmp(tmpName3, cname) != 0)
continue;
SetCtlValue((ControlHandle) itemhandle, i);
found = TRUE;
break;
}
if (!found) { /* Add tmpName3 to menu if necessary */
n += 1;
c2p(tmpName3, pname);
AppendMenu(popMenu, pname);
SetCtlMax((ControlHandle) itemhandle, n); /* Important! */
SetCtlValue((ControlHandle) itemhandle, n);
}
/* Set undefined colors to default forecolor & maskcolor */
if (!strcmp(tmpName1, "undefined"))
tmpColor[1] = forecolor;
if (!strcmp(tmpName2, "undefined"))
tmpColor[2] = forecolor;
if (!strcmp(tmpName3, "undefined"))
tmpColor[3] = maskcolor;
/* Set split icons checkbox to correct value */
GetDItem(win, diSideColorSplit, NULL, &itemhandle, NULL);
SetCtlValue((ControlHandle) itemhandle, tmpSplit);
/* Enable or disable the half icon color item in the popup menu */
if (tmpSplit)
EnableItem(useMenu, miHalfIconColor);
else
DisableItem(useMenu, miHalfIconColor);
/* Set color use popup menus to correct initial values */
GetDItem(win, diSideColorUse1, NULL, &itemhandle, NULL);
/* Disable the whole menu if the color is undefined */
if (!strcmp(tmpName1, "undefined")) {
tmpUse[1] = miNotInUse;
HiliteControl((ControlHandle) itemhandle, 255);
} else
HiliteControl((ControlHandle) itemhandle, 0);
/* Dont permit half icon color if split icons is unchecked */
if (!tmpSplit && (tmpUse[1] == miHalfIconColor))
tmpUse[1] = miNotInUse;
SetCtlValue((ControlHandle) itemhandle, tmpUse[1]);
GetDItem(win, diSideColorUse2, NULL, &itemhandle, NULL);
/* Disable the whole menu if the color is undefined */
if (!strcmp(tmpName2, "undefined")) {
tmpUse[2] = miNotInUse;
HiliteControl((ControlHandle) itemhandle, 255);
} else
HiliteControl((ControlHandle) itemhandle, 0);
/* Dont permit half icon color if split icons is unchecked */
if (!tmpSplit && (tmpUse[2] == miHalfIconColor))
tmpUse[2] = miNotInUse;
SetCtlValue((ControlHandle) itemhandle, tmpUse[2]);
GetDItem(win, diSideColorUse3, NULL, &itemhandle, NULL);
/* Disable the whole menu if the color is undefined */
if (!strcmp(tmpName3, "undefined")) {
tmpUse[3] = miNotInUse;
HiliteControl((ControlHandle) itemhandle, 255);
} else
HiliteControl((ControlHandle) itemhandle, 0);
/* Dont permit half icon color if split icons is unchecked */
if (!tmpSplit && (tmpUse[3] == miHalfIconColor))
tmpUse[3] = miNotInUse;
SetCtlValue((ControlHandle) itemhandle, tmpUse[3]);
/* Set icon plotting colors */
tmpMain = forecolor;
tmpHalf = forecolor;
tmpMask = maskcolor;
for (i = 1; i <= 3; i++) {
if (tmpUse[i] == miMainIconColor)
tmpMain = tmpColor[i];
if (tmpUse[i] == miHalfIconColor)
tmpHalf = tmpColor[i];
if (tmpUse[i] == miIconMaskColor)
tmpMask = tmpColor[i];
}
/* Open the window now (as late as possible) */
ShowWindow(win);
SetCursor(&QD(arrow));
draw_default_button(win, diSideColorOkButton);
/* Draw background for sample icons */
GetDItem(win, diSideColorCyan, NULL, NULL, &itemrect);
ForeColor(cyanColor);
FillRect(&itemrect, QDPat(black));
GetDItem(win, diSideColorGreen, NULL, NULL, &itemrect);
ForeColor(greenColor);
FillRect(&itemrect, QDPat(black));
ForeColor(blackColor);
GetDItem(win, diSideColorFrame, NULL, NULL, &itemrect);
FrameRect(&itemrect);
/* Plot 5 sample icons (if available) */
for (i = 0; i <= 4; i++) {
/* Skip now if we ran out of unit types */
if (i > numutypes - 1) continue;
/* Get the best unit image from family */
uimg = best_image(uimages[i], 32, 32);
macuimg = (MacImage *) uimg->hook;
/* Get the cicn if it exists */
if (!macuimg->colricon) continue;
cicnhandle = (CIconHandle) macuimg->colricon;
/* Get pixmap, bitmap & maskmap from cicn and set srcrect */
bm = (*(cicnhandle))->iconBMap;
mm = (*(cicnhandle))->iconMask;
SetRect(&srcrect, 0, 0, bm.rowBytes * 8, bm.rowBytes * 8);
/* Set destination and colors */
GetDItem(win, diSideColorIcon1 + i, NULL, NULL, &itemrect);
RGBForeColor(&tmpMain);
RGBBackColor(&tmpMask);
/* First plot the MaskMap srcBic using the icon mask color */
CopyBits(&mm, &win->portBits, &srcrect, &itemrect, srcBic, NULL);
/* Then plot the BitMap using the main icon color */
CopyBits(&bm, &win->portBits, &srcrect, &itemrect, srcOr, NULL);
/* Plot right half in half icon color, but only if the latter is defined */
if (tmpUse[1] == 3 || tmpUse[2] == 3 || tmpUse[3] == 3) {
RGBForeColor(&tmpHalf);
srcrect.left = srcrect.right / 2;
itemrect.left += (itemrect.right - itemrect.left) / 2;
CopyBits(&bm, &win->portBits, &srcrect, &itemrect, srcOr, NULL);
}
/* Restore colors */
ForeColor(blackColor);
RGBBackColor(&tmpBack);
}
/* Paint temp colors into the color panes */
PenSize(2, 2);
GetDItem(win, diSideColorPane1, NULL, NULL, &itemrect);
if (strcmp(tmpName1, "undefined") == 0) {
FillRect(&itemrect, QDPat(ltGray));
} else {
RGBForeColor(&tmpColor[1]);
FillRect(&itemrect, QDPat(black));
ForeColor(blackColor);
}
FrameRect(&itemrect);
GetDItem(win, diSideColorPane2, NULL, NULL, &itemrect);
if (strcmp(tmpName2, "undefined") == 0) {
FillRect(&itemrect, QDPat(ltGray));
} else {
RGBForeColor(&tmpColor[2]);
FillRect(&itemrect, QDPat(black));
ForeColor(blackColor);
}
FrameRect(&itemrect);
GetDItem(win, diSideColorPane3, NULL, NULL, &itemrect);
if (strcmp(tmpName3, "undefined") == 0) {
FillRect(&itemrect, QDPat(ltGray));
} else {
RGBForeColor(&tmpColor[3]);
FillRect(&itemrect, QDPat(black));
ForeColor(blackColor);
}
FrameRect(&itemrect);
PenNormal();
/* Handle clicks on buttons, popup menus, color panes, check boxes & edit fields */
ModalDialog(NULL, &ditem);
switch (ditem) {
/* Get name from popup menu, load the color and copy name into text field */
case diSideColorPopup1:
GetDItem(win, ditem, NULL, &itemhandle, NULL);
mitem = GetCtlValue((ControlHandle) itemhandle);
GetItem(popMenu, mitem, pname);
p2c(pname, tmpName1);
tmpColor[1] = get_color(tmpName1); /* May change tmpName1 to undefined! */
c2p(tmpName1, pname);
GetDItem(win, diSideColorName1, NULL, &itemhandle, NULL);
SetIText(itemhandle, pname);
break;
case diSideColorPopup2:
GetDItem(win, ditem, NULL, &itemhandle, NULL);
mitem = GetCtlValue((ControlHandle) itemhandle);
GetItem(popMenu, mitem, pname);
p2c(pname, tmpName2);
tmpColor[2] = get_color(tmpName2); /* May change tmpName2 to undefined! */
c2p(tmpName2, pname);
GetDItem(win, diSideColorName2, NULL, &itemhandle, NULL);
SetIText(itemhandle, pname);
break;
case diSideColorPopup3:
GetDItem(win, ditem, NULL, &itemhandle, NULL);
mitem = GetCtlValue((ControlHandle) itemhandle);
GetItem(popMenu, mitem, pname);
p2c(pname, tmpName3);
tmpColor[3] = get_color(tmpName3); /* May change tmpName3 to undefined! */
c2p(tmpName3, pname);
GetDItem(win, diSideColorName3, NULL, &itemhandle, NULL);
SetIText(itemhandle, pname);
break;
/* Get color use from popup menus and copy into tmpUse[i] */
case diSideColorUse1:
GetDItem(win, ditem, NULL, &itemhandle, NULL);
tmpUse[1] = GetCtlValue((ControlHandle) itemhandle);
if (strcmp(tmpName1, "") == 0) tmpUse[1] = miNotInUse;
if (tmpUse[2] == tmpUse[1]) tmpUse[2] = miNotInUse;
if (tmpUse[3] == tmpUse[1]) tmpUse[3] = miNotInUse;
break;
case diSideColorUse2:
GetDItem(win, ditem, NULL, &itemhandle, NULL);
tmpUse[2] = GetCtlValue((ControlHandle) itemhandle);
if (strcmp(tmpName2, "") == 0) tmpUse[2] = miNotInUse;
if (tmpUse[1] == tmpUse[2]) tmpUse[1] = miNotInUse;
if (tmpUse[3] == tmpUse[2]) tmpUse[3] = miNotInUse;
break;
case diSideColorUse3:
GetDItem(win, ditem, NULL, &itemhandle, NULL);
tmpUse[3] = GetCtlValue((ControlHandle) itemhandle);
if (strcmp(tmpName3, "") == 0) tmpUse[3] = miNotInUse;
if (tmpUse[1] == tmpUse[3]) tmpUse[1] = miNotInUse;
if (tmpUse[2] == tmpUse[3]) tmpUse[2] = miNotInUse;
break;
/* Pick new color by clicking in a color pane */
case diSideColorPane1:
tmpColor[1] = pick_new_color(tmpColor[1], tmpName1);
break;
case diSideColorPane2:
tmpColor[2] = pick_new_color(tmpColor[2], tmpName2);
break;
case diSideColorPane3:
tmpColor[3] = pick_new_color(tmpColor[3], tmpName3);
break;
/* Toggle split icons checkbox */
case diSideColorSplit:
GetDItem(win, diSideColorSplit, NULL, &itemhandle, NULL);
tmpSplit = !GetCtlValue((ControlHandle) itemhandle);
SetCtlValue((ControlHandle) itemhandle, tmpSplit);
break;
/* Edit the text fields */
case diSideColorName1:
case diSideColorName2:
case diSideColorName3:
editflag = TRUE; /* Set flag to save text instead of exit next time Return is hit */
continue; /* Do NOT break if text is being edited! Continue instead */
case diSideColorOkButton:
if (editflag) { /* Save text fields instead of exit when flag is set */
editflag = FALSE; /* Clear flag to permit exit next time Return is hit */
/* Check text fields for validity and then update temp colors */
GetDItem(win, diSideColorName1, NULL, &itemhandle, NULL);
GetIText(itemhandle, pname);
p2c(pname, cname);
if (valid_imf_name(cname)) {
tmpColor[1] = get_color(cname); /* May change cname to undefined! */
strcpy(tmpName1, cname);
} else {
ParamText("\pSorry, ", pname, "\p is not a valid color name. ",
"\pUse hyphens: dark-red is OK but dark red is not.");
button = Alert(aOneButtonAlert, NULL);
}
c2p(tmpName1, pname);
SetIText(itemhandle, pname); /* Update or restore the text field */
GetDItem(win, diSideColorName2, NULL, &itemhandle, NULL);
GetIText(itemhandle, pname);
p2c(pname, cname);
if (valid_imf_name(cname)) {
tmpColor[2] = get_color(cname); /* May change cname to undefined! */
strcpy(tmpName2, cname);
} else {
ParamText("\pSorry, ", pname, "\p is not a valid color name. ",
"\pUse hyphens: dark-red is OK but dark red is not.");
button = Alert(aOneButtonAlert, NULL);
}
c2p(tmpName2, pname);
SetIText(itemhandle, pname); /* Update or restore the text field */
GetDItem(win, diSideColorName3, NULL, &itemhandle, NULL);
GetIText(itemhandle, pname);
p2c(pname, cname);
if (valid_imf_name(cname)) {
tmpColor[3] = get_color(cname); /* May change cname to undefined! */
strcpy(tmpName3, cname);
} else {
ParamText("\pSorry, ", pname, "\p is not a valid color name. ",
"\pUse hyphens: dark-red is OK but dark red is not.");
button = Alert(aOneButtonAlert, NULL);
}
c2p(tmpName3, pname);
SetIText(itemhandle, pname); /* Update or restore the text field */
break;
} else { /* Update everything and exit the dialog */
/* Update side colors */
set_sideColor(e, 1, tmpColor[1]);
set_sideColor(e, 2, tmpColor[2]);
set_sideColor(e, 3, tmpColor[3]);
/* Update side color names */
set_sideColorName(e, 1, copy_string(tmpName1));
set_sideColorName(e, 2, copy_string(tmpName2));
set_sideColorName(e, 3, copy_string(tmpName3));
/* Change "undefined" to empty string before proceeding */
/* This is done to conform with the color scheme format */
if (strcmp(tmpName1, "undefined") == 0)
strcpy(tmpName1, "");
if (strcmp(tmpName2, "undefined") == 0)
strcpy(tmpName2, "");
if (strcmp(tmpName3, "undefined") == 0)
strcpy(tmpName3, "");
/* Build a new colorscheme */
strcpy(tmpScheme,tmpName1);
strcat(tmpScheme, ",");
strcat(tmpScheme, tmpName2);
strcat(tmpScheme, ",");
strcat(tmpScheme, tmpName3);
side_n(e)->colorscheme = copy_string(tmpScheme);
/* Update color use parameters */
main_icon_color[e] = 0;
half_icon_color[e] = 0;
icon_mask_color[e] = 0;
for (i = 1; i <=3; i++) {
if (tmpUse[i] == miMainIconColor)
main_icon_color[e] = i;
if (tmpUse[i] == miHalfIconColor)
half_icon_color[e] = i;
if (tmpUse[i] == miIconMaskColor)
icon_mask_color[e] = i;
}
/* Set use of split icons */
split_icon[e] = tmpSplit;
done = TRUE;
break;
}
case diSideColorCancelButton:
done = TRUE;
break;
default: /* Important to break here in order to reenter the while loop! */
break;
}
}
SetPort(oldport);
DisposeDialog(win);
update_all_map_windows();
}
/* Set the colors of special features */
void
set_feature_color(int e)
{
short editflag, ditem, mitem, button, found, done, i, n;
char cname[32], tmpName[32];
Handle itemhandle, ppathandle;
RGBColor tmpColor;
MenuHandle popMenu;
Rect itemrect;
GrafPtr oldport;
Str255 pname;
DialogPtr win;
/* First check for the Images file */
n = GetResFileAttrs(images_refnum);
if (ResError()) {
ParamText("\pCannot find your lib-mac : Images file!", "\p", "\p", "\p");
button = Alert(aOneButtonAlert, NULL);
return;
}
/* Then check for color support */
if (!hasColorQD) {
ParamText("\pSorry, your mac does not support colors.", "\p", "\p", "\p");
button = Alert(aOneButtonAlert, NULL);
return;
}
/* Get dialog window and popup menu */
win = GetNewDialog(dFeatureColor, NULL, (DialogPtr) -1);
popMenu = GetMenu(mSideColorPopup);
/* Load current color & name into temps */
strcpy(tmpName, featColorName[e]);
tmpColor = featColor[e];
/* Load temp name into the text field */
GetDItem(win, diFeatureColorName, NULL, &itemhandle, NULL);
c2p(tmpName, pname);
SetIText(itemhandle, pname);
/* Load all available ppat colors into the popup menu */
n = CountResources('ppat');
for (i = 1; i <= n; ++i ) {
ppathandle = GetIndResource('ppat', i);
GetResInfo(ppathandle, NULL, NULL, pname);
/* Only use ppats that live in the Images file */
if (HomeResFile(ppathandle) != images_refnum)
continue;
p2c(pname, cname);
/* Skip invalid names */
if (!valid_imf_name(cname))
continue;
AppendMenu(popMenu, pname);
}
/* Change port and start the main loop */
GetPort(&oldport);
SetPort(win);
done = FALSE;
editflag = FALSE;
while (!done) {
/* Check length of popMenu */
n = CountMItems(popMenu);
/* Set popup to tmpName if found in menu */
GetDItem(win, diFeatureColorPopup, NULL, &itemhandle, NULL);
SetCtlMax((ControlHandle) itemhandle, n); /* Important! */
found = FALSE;
for (i = 1; i <= n; i++) {
GetItem(popMenu, i, pname);
p2c(pname, cname);
if (strcmp(tmpName, cname) != 0)
continue;
SetCtlValue((ControlHandle) itemhandle, i);
found = TRUE;
break;
}
if (!found) { /* Add tmpName to menu if necessary */
c2p(tmpName, pname);
AppendMenu(popMenu, pname);
SetCtlMax((ControlHandle) itemhandle, n + 1); /* Important! */
SetCtlValue((ControlHandle) itemhandle, n + 1);
}
/* Open the window now (as late as possible) */
ShowWindow(win);
SetCursor(&QD(arrow));
draw_default_button(win, diFeatureColorOkButton);
/* Paint temp color into the color pane */
PenSize(2, 2);
GetDItem(win, diFeatureColorPane, NULL, NULL, &itemrect);
RGBForeColor(&tmpColor);
FillRect(&itemrect, QDPat(black));
ForeColor(blackColor);
FrameRect(&itemrect);
PenNormal();
/* Handle clicks on buttons, popup menus, and color panes */
ModalDialog(NULL, &ditem);
switch (ditem) {
/* Get name from popup menu, copy into text field, and load the color */
case diFeatureColorPopup:
GetDItem(win, ditem, NULL, &itemhandle, NULL);
mitem = GetCtlValue((ControlHandle) itemhandle);
GetItem(popMenu, mitem, pname);
GetDItem(win, diFeatureColorName, NULL, &itemhandle, NULL);
SetIText(itemhandle, pname);
p2c(pname, tmpName);
tmpColor = get_color(tmpName);
break;
/* Pick new color by clicking in a color pane */
case diFeatureColorPane:
tmpColor = pick_new_color(tmpColor, tmpName);
break;
/* The text field is being edited */
case diFeatureColorName:
editflag = TRUE; /* Set flag to save text instead of exit next time OK is hit */
continue; /* Do NOT break if text is being edited! Continue instead */
case diFeatureColorOkButton:
if (editflag) { /* Save text fields instead of exit when flag is set */
editflag = FALSE; /* Clear flag to permit exit next time OK is hit */
/* Check text field for validity and then update temp color */
GetDItem(win, diFeatureColorName, NULL, &itemhandle, NULL);
GetIText(itemhandle, pname);
p2c(pname, cname);
if (valid_imf_name(cname)) {
strcpy(tmpName, cname);
tmpColor = get_color(tmpName);
} else {
ParamText("\pSorry, ", pname, "\p is not a valid color name. ",
"\pUse hyphens: dark-red is OK, dark red is not.");
button = Alert(aOneButtonAlert, NULL);
c2p(tmpName, pname);
SetIText(itemhandle, pname); /* Restore old text */
}
break;
} else { /* Update everything and exit the dialog */
featColor[e] = tmpColor;
featColorName[e] = copy_string(tmpName);
/* Set grid_matches_unseen */
if (strcmp(gridcolor_name, unseencolor_name) == 0
&& empty_string(g_unseen_image_name())) {
grid_matches_unseen = TRUE;
} else grid_matches_unseen = FALSE;
ui_update_state();
done = TRUE;
break;
}
case diFeatureColorCancelButton:
done = TRUE;
break;
default: /* Important to break here in order to reenter the while loop! */
break;
}
}
SetPort(oldport);
DisposeDialog(win);
update_all_map_windows();
}
/* Set color (or pattern) used to display the terrain */
void
set_terrain_color( Str255 tname)
{
short editflag, ditem, mitem, button, found, done, i, n, e = -1;
char cname[32], tmpName[32];
Handle itemhandle, ppathandle;
RGBColor tmpColor;
MenuHandle popMenu;
MacImage *macimg;
Rect itemrect;
GrafPtr oldport;
Str255 pname;
ImageFamily *imf;
Image *img;
DialogPtr win;
/* First check for the Images file */
n = GetResFileAttrs(images_refnum);
if (ResError()) {
ParamText("\pCannot find your lib-mac : Images file!", "\p", "\p", "\p");
button = Alert(aOneButtonAlert, NULL);
return;
}
/* Then check for color support */
if (!hasColorQD) {
ParamText("\pSorry, your mac does not support colors.", "\p", "\p", "\p");
button = Alert(aOneButtonAlert, NULL);
return;
}
/* Get dialog window and popup menu */
win = GetNewDialog(dFeatureColor, NULL, (DialogPtr) -1);
popMenu = GetMenu(mSideColorPopup);
/* Load tname into the text field and get the corresponding color */
GetDItem(win, diFeatureColorName, NULL, &itemhandle, NULL);
SetIText(itemhandle, tname);
p2c(tname, tmpName);
tmpColor = get_color(tmpName);
/* Get the current terrain number from tmpName */
for_all_terrain_types(i) {
/* Use image names if they exist */
if (!empty_string(t_image_name(i))) {
sanitize_for_menu(t_image_name(i), pname);
/* Else use terrain names (may differ from image names) */
} else
sanitize_for_menu(t_type_name(i), pname);
p2c(pname, cname);
if (strcmp(cname, tmpName) != 0)
continue;
e = i;
break;
}
/* Load all available ppat colors into the popup menu */
n = CountResources('ppat');
for (i = 1; i <= n; ++i ) {
ppathandle = GetIndResource('ppat', i);
GetResInfo(ppathandle, NULL, NULL, pname);
/* Only use ppats that live in the Images file */
if (HomeResFile(ppathandle) != images_refnum)
continue;
p2c(pname, cname);
/* Skip invalid names */
if (!valid_imf_name(cname))
continue;
AppendMenu(popMenu, pname);
}
/* Change port and start the main loop */
GetPort(&oldport);
SetPort(win);
done = FALSE;
editflag = FALSE;
while (!done) {
/* Check length of popMenu and load the image family */
n = CountMItems(popMenu);
imf = get_imf(tmpName);
mac_load_imf(imf);
/* Set popup to tmpName if found in menu */
GetDItem(win, diFeatureColorPopup, NULL, &itemhandle, NULL);
SetCtlMax((ControlHandle) itemhandle, n); /* Important! */
found = FALSE;
for (i = 1; i <= n; i++) {
GetItem(popMenu, i, pname);
p2c(pname, cname);
if (strcmp(tmpName, cname) != 0)
continue;
SetCtlValue((ControlHandle) itemhandle, i);
found = TRUE; break;
}
if (!found) { /* Add tmpName to menu if necessary */
c2p(tmpName, pname);
AppendMenu(popMenu, pname);
SetCtlMax((ControlHandle) itemhandle, n + 1); /* Important! */
SetCtlValue((ControlHandle) itemhandle, n + 1);
}
/* Open the window now (as late as possible) */
ShowWindow(win);
SetCursor(&QD(arrow));
draw_default_button(win, diFeatureColorOkButton);
/* Paint terrain pattern into the color pane */
GetDItem(win, diFeatureColorPane, NULL, NULL, &itemrect);
img = best_image(imf, hws[5], hcs[5]);
macimg = (MacImage *) img->hook;
if (macimg->colrpat != NULL) {
FillCRect(&itemrect, macimg->colrpat);
} else if (macimg->colordefined) {
RGBForeColor(&macimg->color);
PaintRect(&itemrect);
ForeColor(blackColor);
}
/* Draw the frame */
PenSize(2, 2);
FrameRect(&itemrect);
PenNormal();
/* Handle clicks on buttons, popup menus, and color panes */
ModalDialog(NULL, &ditem);
switch (ditem) {
/* Get name from popup menu, copy into text field, and load the color */
case diFeatureColorPopup:
GetDItem(win, ditem, NULL, &itemhandle, NULL);
mitem = GetCtlValue((ControlHandle) itemhandle);
GetItem(popMenu, mitem, pname);
GetDItem(win, diFeatureColorName, NULL, &itemhandle, NULL);
SetIText(itemhandle, pname);
p2c(pname, tmpName);
tmpColor = get_color(tmpName);
break;
/* The text field is being edited */
case diFeatureColorName:
editflag = TRUE; /* Set flag to save text instead of exit next time OK is hit */
continue; /* Do NOT break if text is being edited! Continue instead */
case diFeatureColorOkButton:
if (editflag) { /* Save text fields instead of exit when flag is set */
editflag = FALSE; /* Clear flag to permit exit next time OK is hit */
/* Check text field for validity and then update temp color */
GetDItem(win, diFeatureColorName, NULL, &itemhandle, NULL);
GetIText(itemhandle, pname);
p2c(pname, cname);
if (valid_imf_name(cname)) {
strcpy(tmpName, cname);
tmpColor = get_color(tmpName);
} else { /* Restore previous text */
ParamText("\pSorry, ", pname, "\p is not a valid color name. ",
"\pUse hyphens: dark-red is OK but dark red is not.");
button = Alert(aOneButtonAlert, NULL);
c2p(tmpName, pname);
SetIText(itemhandle, pname);
}
break;
} else { /* Update everything and exit the dialog */
/* Replace terrain images used for drawing */
for (i = 0; i < NUMPOWERS; ++i) {
img = best_image(imf, hws[i], hcs[i]);
if (img && e != -1) {
best_terrain_images[i * numttypes + e] = img;
}
}
/* Replace terrain colors used for solid color drawing */
img = get_img(imf, 1, 1);
if (img->hook && e != -1) {
macimg = (MacImage *) img->hook;
tcolors[e] = macimg;
}
done = TRUE;
break;
}
case diFeatureColorCancelButton:
done = TRUE;
break;
default: /* Important to break here in order to reenter the while loop! */
break;
}
}
SetPort(oldport);
DisposeDialog(win);
update_all_map_windows();
}
// --- FUNCTIONS USED TO BUILD AND MAINTAIN MENUS -------------------------------------
/* Insert side and feature names into the colors menu */
void
build_colors_menu(void)
{
MenuHandle menu;
Str255 pname;
int i, t;
menu = GetMenu(mColors);
/* First load side names at the top of the menu */
/* Side 0 (Independents) is already in the menu */
for (i = 1; i <= numsides; i++) {
if (!side_n(i)->name) {
fill_in_empty_name(side_n(i));
}
c2p(side_n(i)->name, pname);
InsMenuItem(menu, pname, i);
}
/* Then load feature names below first separator */
for (i = 1; i <= FEATURES; i++) {
c2p(featColorItemName[i], pname);
InsMenuItem(menu, pname, numsides + 1 + i);
}
/* Then load terrain types below second separator */
for_all_terrain_types(t) {
/* Use image names if they exist */
if (!empty_string(t_image_name(t))) {
sanitize_for_menu(t_image_name(t), pname);
/* Else use terrain names (may differ from image names */
} else
sanitize_for_menu(t_type_name(t), pname);
InsMenuItem(menu, pname, numsides + FEATURES + 3 + t);
}
}
/* Use pluralnoun, noun, adjective, or as last resort side number to fill in an empty name */
/* Some game modules come with nouns etc but not with side names! */
void
fill_in_empty_name(Side *side)
{
Str255 pnumber;
char cnumber[32];
/* (should use copy_string?) */
if (!side->name) {
side->name = (char *) xmalloc(32);
}
if (!empty_string(side->name)) {
return;
} else if (!empty_string(side->pluralnoun)) {
strcpy(side->name, side->pluralnoun);
} else if (!empty_string(side->noun)) {
strcpy(side->name, side->noun);
} else if (!empty_string(side->adjective)) {
strcpy(side->name, side->adjective);
} else {
NumToString(side_number(side), pnumber);
p2c(pnumber, cnumber);
strcpy(side->name, "Side ");
strcat(side->name, cnumber);
}
}
void
build_sides_menu(void)
{
MenuHandle menu;
Str255 pname, pnumber;
char cname[8], cnumber[4];
int i;
menu = GetMenu(mSidesPopup);
/* First load real side names for sides in play */
/* Side 0 (Independents) is already in the menu */
for (i = 1; i <= numsides; i++) {
if (!side_n(i)->name) {
fill_in_empty_name(side_n(i));
}
c2p(side_n(i)->name, pname);
InsMenuItem(menu, pname, i);
}
/* Then load side numbers for remaining sides */
for (i = numsides + 1; i <= MAXSIDES; i++) {
NumToString(i, pnumber);
p2c(pnumber, cnumber);
strcpy(cname, "Side ");
strcat(cname, cnumber);
c2p(cname, pname);
InsMenuItem(menu, pname, i);
}
}
void
build_features_menu(void)
{
MenuHandle menu;
Str255 pname;
int i;
menu = GetMenu(mFeatPopup);
/* Load available feature names */
for (i = 1; i <= FEATURES; i++) {
c2p(featColorItemName[i], pname);
/* (i - 1) since this menu is empty */
InsMenuItem(menu, pname, i -1);
}
}
|