Files
@ 2c3944282ed8
Branch filter:
Location: ATITD-Tools/Desert-Paint-Lab/MainWindow.cs - annotation
2c3944282ed8
27.6 KiB
text/x-csharp
Fixes for starting with a min reagent count > 1
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 | adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 4ef58379d19a adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 0f6c1ddd4b2a dabc07eb39e6 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 f28757bb21cb f28757bb21cb adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 f28757bb21cb adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 0f6c1ddd4b2a adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 4ef58379d19a f28757bb21cb f28757bb21cb f28757bb21cb f28757bb21cb f28757bb21cb dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 f28757bb21cb 2040107278aa 2040107278aa dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 2040107278aa adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 0f6c1ddd4b2a 0f6c1ddd4b2a adaf02e991b4 0f6c1ddd4b2a adaf02e991b4 0f6c1ddd4b2a 4ef58379d19a 0f6c1ddd4b2a 0f6c1ddd4b2a 0f6c1ddd4b2a 4ef58379d19a 4ef58379d19a 0f6c1ddd4b2a 0f6c1ddd4b2a 4ef58379d19a 4ef58379d19a adaf02e991b4 adaf02e991b4 adaf02e991b4 0f6c1ddd4b2a adaf02e991b4 0f6c1ddd4b2a 0f6c1ddd4b2a 0f6c1ddd4b2a adaf02e991b4 adaf02e991b4 0f6c1ddd4b2a 0f6c1ddd4b2a 0f6c1ddd4b2a 0f6c1ddd4b2a 4ef58379d19a adaf02e991b4 adaf02e991b4 2040107278aa adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 0f6c1ddd4b2a adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 64ee51b8084a adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 f28757bb21cb f28757bb21cb f28757bb21cb adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 f28757bb21cb f28757bb21cb adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 f28757bb21cb adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 f28757bb21cb f28757bb21cb adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 f28757bb21cb f28757bb21cb adaf02e991b4 adaf02e991b4 adaf02e991b4 f28757bb21cb adaf02e991b4 f28757bb21cb adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 f28757bb21cb f28757bb21cb adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 f28757bb21cb f28757bb21cb adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 f28757bb21cb adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 f28757bb21cb adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 2040107278aa f28757bb21cb f28757bb21cb adaf02e991b4 adaf02e991b4 adaf02e991b4 2040107278aa adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 0f6c1ddd4b2a 0f6c1ddd4b2a 0f6c1ddd4b2a 0f6c1ddd4b2a 0f6c1ddd4b2a 0f6c1ddd4b2a 0f6c1ddd4b2a 0f6c1ddd4b2a adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 2040107278aa adaf02e991b4 2040107278aa 0f6c1ddd4b2a f28757bb21cb f28757bb21cb f28757bb21cb f28757bb21cb f28757bb21cb f28757bb21cb f28757bb21cb f28757bb21cb f28757bb21cb f28757bb21cb f28757bb21cb f28757bb21cb 2040107278aa 2040107278aa 2040107278aa 2040107278aa 2040107278aa 2040107278aa 2040107278aa 2040107278aa 2040107278aa 2040107278aa 2040107278aa 2040107278aa 2040107278aa 2040107278aa 2040107278aa 0f6c1ddd4b2a 2040107278aa 2040107278aa 2040107278aa 2040107278aa adaf02e991b4 adaf02e991b4 2040107278aa adaf02e991b4 f28757bb21cb 4ef58379d19a 4ef58379d19a 0f6c1ddd4b2a 0f6c1ddd4b2a 0f6c1ddd4b2a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a 4ef58379d19a adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 2040107278aa adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 f28757bb21cb f28757bb21cb f28757bb21cb f28757bb21cb adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 f28757bb21cb f28757bb21cb dabc07eb39e6 f28757bb21cb f28757bb21cb f28757bb21cb adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 64ee51b8084a adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 adaf02e991b4 f28757bb21cb f28757bb21cb 2040107278aa 2040107278aa 2040107278aa 2040107278aa 2040107278aa 2040107278aa 2040107278aa 2040107278aa 2040107278aa 2040107278aa f28757bb21cb f28757bb21cb f28757bb21cb f28757bb21cb f28757bb21cb f28757bb21cb f28757bb21cb 2040107278aa 2040107278aa 2040107278aa 2040107278aa 2040107278aa 2040107278aa 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 38bffbeef7d8 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a 64ee51b8084a dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 dabc07eb39e6 64ee51b8084a 64ee51b8084a 64ee51b8084a adaf02e991b4 adaf02e991b4 | /*
* Copyright (c) 2010, Tess Snider
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
using System;
using System.IO;
using System.Collections.Generic;
using System.Text.RegularExpressions;
using Gtk;
using DesertPaintLab;
public partial class MainWindow : Gtk.Window
{
const string APP_VERSION = "1.7.11";
bool unsavedData = false;
bool shouldShutDown = false;
List<string> profileList = new List<string>();
PlayerProfile profile = null;
PaintColor expectedColor = new PaintColor();
PaintColor reactedColor = new PaintColor();
Gdk.Window rootWindow = null;
Gdk.Pixbuf screenBuffer = null;
Reagent[] reagents = new Reagent[3];
PaintRecipe recipe = new PaintRecipe();
public bool ShouldShutDown
{
get
{
return shouldShutDown;
}
}
public MainWindow () : base(Gtk.WindowType.Toplevel)
{
string appDataPath = FileUtils.AppDataPath;
if (!System.IO.Directory.Exists(appDataPath))
{
System.IO.Directory.CreateDirectory(appDataPath);
}
DirectoryInfo di = new DirectoryInfo(appDataPath);
DirectoryInfo[] dirs = di.GetDirectories();
foreach (DirectoryInfo dir in dirs)
{
if (dir.Name != "template")
{
profileList.Add(dir.Name);
}
}
reagents[0] = null;
reagents[1] = null;
reagents[2] = null;
string colorsPath = FileUtils.FindApplicationResourceFile("colors.txt");
if (colorsPath == null)
{
// failed to find colors.txt file
MessageDialog md = new MessageDialog(this,
DialogFlags.DestroyWithParent,
MessageType.Error, ButtonsType.Close,
"Failed to find colors.txt file. Please check your installation.");
md.Run();
md.Destroy();
Application.Quit();
}
Palette.Load(colorsPath);
string ingredientsPath = FileUtils.FindApplicationResourceFile("ingredients.txt");
if (ingredientsPath == null)
{
// failed to find ingredients.txt file
MessageDialog md = new MessageDialog(this,
DialogFlags.DestroyWithParent,
MessageType.Error, ButtonsType.Close,
"Failed to find ingredients.txt file. Please check your installation.");
md.Run();
md.Destroy();
Application.Quit();
}
ReagentManager.Load(ingredientsPath);
Build();
if (unmodifiedSwatch != null)
{
unmodifiedSwatch.Clear();
}
if (reactionSwatch != null)
{
reactionSwatch.Clear();
}
// get the root window
rootWindow = Gdk.Global.DefaultRootWindow;
// get its width and height
int screenWidth;
int screenHeight;
rootWindow.GetSize(out screenWidth, out screenHeight);
int pixelMultiplier = 1;
if ( DesertPaintLab.Settings.Load() == true )
{
DesertPaintLab.Settings.Get("ScreenWidth", out screenWidth);
DesertPaintLab.Settings.Get("ScreenHeight", out screenHeight);
DesertPaintLab.Settings.Get("PixelMultiplier", out pixelMultiplier);
}
bool enableDebugMenu;
DesertPaintLab.Settings.Get("EnableDebugMenu", out enableDebugMenu);
this.DebugAction.Visible = enableDebugMenu;
ScreenCheckDialog screenCheckDialog = new ScreenCheckDialog();
screenCheckDialog.ScreenWidth = screenWidth;
screenCheckDialog.ScreenHeight = screenHeight;
screenCheckDialog.GamePixelWidth = pixelMultiplier;
ResponseType resp = (ResponseType)screenCheckDialog.Run();
screenWidth = screenCheckDialog.ScreenWidth;
screenHeight = screenCheckDialog.ScreenHeight;
pixelMultiplier = screenCheckDialog.GamePixelWidth;
screenCheckDialog.Destroy();
DesertPaintLab.Settings.Set("ScreenWidth", screenWidth);
DesertPaintLab.Settings.Set("ScreenHeight", screenHeight);
DesertPaintLab.Settings.Set("PixelMultiplier", pixelMultiplier);
DesertPaintLab.Settings.Save();
screenBuffer = new Gdk.Pixbuf(Gdk.Colorspace.Rgb, false, 8, screenWidth, screenHeight);
ReactionRecorder.SetPixelMultiplier(pixelMultiplier);
if (!OpenProfile())
{
shouldShutDown = true;
}
}
bool ConfirmedExit()
{
if (unsavedData)
{
MessageDialog md = new MessageDialog(this,
DialogFlags.DestroyWithParent,
MessageType.Warning, ButtonsType.OkCancel,
"Your last reaction was unsaved." +
"Are you sure you want to quit?");
ResponseType resp = (ResponseType)md.Run();
md.Destroy();
return (resp == ResponseType.Ok);
}
return true;
}
void SetProfileName(string name)
{
profile = new PlayerProfile(name,
System.IO.Path.Combine(FileUtils.AppDataPath, name));
statusBar.Push(0, name);
}
bool NewProfile()
{
bool newProfileCreated = false;
bool duplicateName = false;
NewProfileDialog newProfileDialog = new NewProfileDialog();
ResponseType resp = (ResponseType)newProfileDialog.Run();
if (resp == ResponseType.Ok)
{
// Make sure profile doesn't already exist.
foreach (string profileName in profileList)
{
if (profileName == newProfileDialog.ProfileName)
{
MessageDialog md = new MessageDialog(this,
DialogFlags.DestroyWithParent,
MessageType.Error, ButtonsType.Ok,
"That profile name already exists.");
resp = (ResponseType)md.Run();
md.Destroy();
duplicateName = true;
break;
}
}
if (!duplicateName)
{
// Set profile name.
SetProfileName(newProfileDialog.ProfileName);
newProfileCreated = profile.Initialize();
if (!newProfileCreated)
{
MessageDialog md = new MessageDialog(this,
DialogFlags.DestroyWithParent,
MessageType.Error, ButtonsType.Ok,
"Failed to initialize profile: " + profile.LastError);
resp = (ResponseType)md.Run();
md.Destroy();
duplicateName = false;
}
}
}
newProfileDialog.Destroy();
return newProfileCreated;
}
bool OpenProfile()
{
bool profileSelected = false;
if (profileList.Count > 0)
{
SelectProfileDialog selectProfileDialog = new SelectProfileDialog();
selectProfileDialog.ProfileList = profileList;
ResponseType resp = (ResponseType)selectProfileDialog.Run();
selectProfileDialog.Destroy();
string selectedProfile = selectProfileDialog.SelectedProfile;
if ((resp == ResponseType.Ok) && (selectedProfile.Length > 0))
// Selected a profile.
{
SetProfileName(selectedProfile);
profileSelected = true;
}
else if (resp == ResponseType.Accept) // New profile.
{
profileSelected = NewProfile();
}
}
else
{
FirstRunDialog firstRunDialog = new FirstRunDialog();
ResponseType resp = (ResponseType)firstRunDialog.Run();
firstRunDialog.Destroy();
if (resp == ResponseType.Ok) // New profile
{
profileSelected = NewProfile();
}
else if (resp == ResponseType.Accept) // Import
{
FileChooserDialog fileDialog =
new FileChooserDialog("Select reactions.txt file.",
this, FileChooserAction.Open,
Gtk.Stock.Cancel, ResponseType.Cancel,
Gtk.Stock.Open, ResponseType.Accept);
resp = (ResponseType)fileDialog.Run();
if (resp == ResponseType.Accept)
{
string fileName = fileDialog.Filename;
string directory = fileDialog.CurrentFolder;
if (fileName == "reactions.txt")
{
profileSelected = NewProfile();
if (profileSelected)
{
profile.ImportFromPP(directory);
}
}
}
}
}
if (profileSelected)
{
bool ok = profile.Load();
if (ok)
{
PopulateDropDowns();
recipe.Reactions = profile.Reactions;
}
else
{
MessageDialog md = new MessageDialog(this,
DialogFlags.DestroyWithParent,
MessageType.Error, ButtonsType.Ok,
"Error loading profile: " + profile.LastError);
md.Run();
md.Destroy();
profileSelected = false;
}
}
return profileSelected;
}
void PopulateDropDowns()
{
ReagentManager.PopulateReagents(ref ingredient1ComboBox);
ReagentManager.PopulateReagents(ref ingredient2ComboBox);
ReagentManager.PopulateReagents(ref ingredient3ComboBox);
ingredient2ComboBox.Sensitive = false;
ingredient3ComboBox.Sensitive = false;
Gtk.TreeIter iter;
ingredient1ComboBox.Model.IterNthChild(out iter, 0);
ingredient1ComboBox.SetActiveIter(iter);
ingredient2ComboBox.Model.IterNthChild(out iter, 0);
ingredient2ComboBox.SetActiveIter(iter);
ingredient3ComboBox.Model.IterNthChild(out iter, 0);
ingredient3ComboBox.SetActiveIter(iter);
}
protected void SetExpectedColor(byte red, byte green, byte blue)
{
expectedColor.Red = red;
expectedColor.Green = green;
expectedColor.Blue = blue;
unmodifiedSwatch.Color = expectedColor;
}
protected void SetExpectedColor(PaintColor color)
{
SetExpectedColor(color.Red, color.Green, color.Blue);
}
protected void UpdateIngredients()
{
Reaction reaction1, reaction2;
TreeIter selectIter;
string reagentName;
reagents[0] = null;
reagents[1] = null;
reagents[2] = null;
bool reactionKnown = true;
saveButton.Sensitive = false;
recipe.Clear();
if (ingredient1ComboBox.GetActiveIter(out selectIter))
{
reagentName = (string)ingredient1ComboBox.Model.GetValue(selectIter, 0);
if ((reagentName == null) || (reagentName.Length == 0))
{
// Nothing selected as reagent 1
ingredient2ComboBox.Sensitive = false;
ingredient3ComboBox.Sensitive = false;
unmodifiedSwatch.Clear();
captureButton.Sensitive = false;
}
else
{
recipe.AddReagent(reagentName);
reagents[0] = ReagentManager.GetReagent(reagentName);
ingredient2ComboBox.Sensitive = true;
if (ingredient2ComboBox.GetActiveIter(out selectIter))
{
reagentName = (string)ingredient2ComboBox.Model.GetValue(selectIter, 0);
if ((reagentName == null) || (reagentName.Length == 0))
{
ingredient3ComboBox.Sensitive = false;
saveButton.Sensitive = false;
reactionKnown = false;
}
else
{
recipe.AddReagent(reagentName);
reagents[1] = ReagentManager.GetReagent(reagentName);
ingredient3ComboBox.Sensitive = true;
captureButton.Sensitive = true;
reaction1 = profile.FindReaction(reagents[0], reagents[1]);
if ((reaction1 != null) || (reagents[0] == reagents[1]))
{
ingredient3ComboBox.Sensitive = true;
}
else
{
reactionKnown = false;
ingredient3ComboBox.Sensitive = false;
}
if (ingredient3ComboBox.GetActiveIter(out selectIter))
{
reagentName = (string)ingredient3ComboBox.Model.GetValue(selectIter, 0);
if ((reagentName != null) && (reagentName.Length != 0))
{
recipe.AddReagent(reagentName);
reagents[2] = ReagentManager.GetReagent(reagentName);
if (!reactionKnown)
{
MessageDialog md = new MessageDialog(this,
DialogFlags.DestroyWithParent,
MessageType.Error, ButtonsType.Ok,
"To do a three-ingredient reaction test, " +
"you must first recored the reaction of " +
"the first two ingredients.");
md.Run();
md.Destroy();
captureButton.Sensitive = false;
}
reaction1 = profile.FindReaction(reagents[0], reagents[2]);
reaction2 = profile.FindReaction(reagents[1], reagents[2]);
if (reactionKnown && (reaction1 == null) && (reaction2 == null))
{
MessageDialog md = new MessageDialog(this,
DialogFlags.DestroyWithParent,
MessageType.Error, ButtonsType.Ok,
"To do a three-ingredient reaction test, " +
"you must first record the reaction of " +
"either the first or second ingredient " +
"with the third ingredient.");
md.Run();
md.Destroy();
captureButton.Sensitive = false;
}
if ((reaction1 == null) && (reagents[0] != reagents[2]))
{
reactionKnown = false;
}
if ((reaction2 == null) && (reagents[1] != reagents[2]))
{
reactionKnown = false;
}
}
}
}
}
expectedColor.Set(recipe.BaseColor);
unmodifiedSwatch.Color = expectedColor;
//SetExpectedColor(recipeColor.Red, recipeColor.Green, recipeColor.Blue);
if (reactionKnown)
{
reactedColor.Set(recipe.ReactedColor);
reactionSwatch.Color = reactedColor;
}
else
{
reactionSwatch.Clear();
}
}
}
}
protected void OnDeleteEvent(object sender, DeleteEventArgs a)
{
if (ConfirmedExit())
{
a.RetVal = true;
Application.Quit();
}
else
{
a.RetVal = false;
}
}
bool IsPapyTexture(byte r, byte g, byte b)
{
return ((r > 0xD0) && (g > 0xC8) && (b > 0xA0)) &&
((r < 0xF4) && (g < 0xE0) && (b < 0xC4));
}
unsafe bool CaptureReactionColor()
{
// Take a screenshot.
int screenWidth, screenHeight;
bool debugScreenshot = false;
bool enableDebugMenu = false;
DesertPaintLab.Settings.Get("ScreenWidth", out screenWidth);
DesertPaintLab.Settings.Get("ScreenHeight", out screenHeight);
DesertPaintLab.Settings.Get("EnableDebugMenu", out enableDebugMenu);
DesertPaintLab.Settings.Get("DebugScreenshot", out debugScreenshot);
Gdk.Image rootImage = rootWindow.GetImage(0, 0, screenWidth, screenHeight);
screenBuffer.GetFromImage(rootImage, rootImage.Colormap, 0, 0, 0, 0, screenWidth, screenHeight);
//screenBuffer.GetFromDrawable(rootWindow,
// rootWindow.Colormap, 0, 0, 0, 0, screenWidth, screenHeight);
int stride = screenBuffer.Rowstride;
byte* pixBytes = (byte*)screenBuffer.Pixels;
int redPixelStart = -1;
bool wasCaptured = ReactionRecorder.CaptureReaction(pixBytes, screenWidth, screenHeight, stride, ref reactedColor, ref redPixelStart);
if (!wasCaptured && enableDebugMenu && debugScreenshot)
{
// write out the screenshot
string screenshotDir = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments);
string filename;
int i = 0;
do
{
++i;
filename = System.IO.Path.Combine(screenshotDir, String.Format("DesertPaintLab_Colormatch{0}.png", i));
} while (System.IO.File.Exists(filename));
screenBuffer.Save(filename, "png");
}
else
{
// convert to pixel offset instead of byte
int redPixelStartX = (redPixelStart % stride) / 3;
int redPixelStartY = (redPixelStart / stride);
// write out the screenshot
string screenshotDir = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments);
string filename;
int i = 0;
do
{
++i;
filename = System.IO.Path.Combine(screenshotDir, String.Format("DesertPaintLab_Colormatch{0}.png", i));
} while (System.IO.File.Exists(filename));
int captureAreaWidth = Math.Min(64, screenWidth - redPixelStartX + 64);
int captureAreaHeight = Math.Min(64, screenHeight - redPixelStartY + 64);
Gdk.Pixbuf outPixBuf = new Gdk.Pixbuf(screenBuffer, Math.Max(0, redPixelStartX - 16), Math.Max(0, redPixelStartY - 16), captureAreaWidth, captureAreaHeight);
//screenBuffer.Save(filename, "png");
outPixBuf.Save(filename, "png");
}
//screenBuffer.Save("screenshot.png", "png");
return wasCaptured;
}
protected virtual void OnDebugScreenshot(object sender, System.EventArgs e)
{
int screenWidth, screenHeight;
DesertPaintLab.Settings.Get("ScreenWidth", out screenWidth);
DesertPaintLab.Settings.Get("ScreenHeight", out screenHeight);
Gdk.Image rootImage = rootWindow.GetImage(0, 0, screenWidth, screenHeight);
screenBuffer.GetFromImage(rootImage, rootImage.Colormap, 0, 0, 0, 0, screenWidth, screenHeight);
string screenshotDir = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments);
string filename;
int i = 0;
do
{
++i;
filename = System.IO.Path.Combine(screenshotDir, String.Format("DesertPaintLab_{0}.png", i));
} while (System.IO.File.Exists(filename));
screenBuffer.Save(filename, "png");
}
protected virtual void OnCaptureButton(object sender, System.EventArgs e)
{
if (CaptureReactionColor())
{
string warning = "";
if (reactedColor.Red == 0)
{
warning = warning + "\nRed is too low.";
}
if (reactedColor.Green == 0)
{
warning = warning + "\nGreen is too low.";
}
if (reactedColor.Blue == 0)
{
warning = warning + "\nBlue is too low.";
}
if (reactedColor.Red == 255)
{
warning = warning + "\nRed is too high.";
}
if (reactedColor.Green == 255)
{
warning = warning + "\nGreen is too high.";
}
if (reactedColor.Blue == 255)
{
warning = warning + "\nBlue is too high.";
}
if (warning.Length != 0)
{
MessageDialog md = new MessageDialog(this,
DialogFlags.DestroyWithParent,
MessageType.Error, ButtonsType.Ok,
"Reaction clipped. You will need to do a " +
"3-way reaction to test this pair. Details: " +
warning);
md.Run();
md.Destroy();
}
else
{
this.reactionSwatch.Color = reactedColor;
saveButton.Sensitive = true;
}
}
else
{
MessageDialog md = new MessageDialog(this,
DialogFlags.DestroyWithParent,
MessageType.Error, ButtonsType.Ok,
"Pigment Lab dialog box NOT FOUND. Please ensure " +
"that there is an unobstructed view of the dialog " +
"and that your interface size is set to 'small' " +
"when you press the Capture button.");
md.Run();
md.Destroy();
}
}
protected virtual void OnSaveButton(object sender, System.EventArgs e)
{
if (ReactionRecorder.RecordReaction(profile, expectedColor, reactedColor, reagents))
{
saveButton.Sensitive = false;
}
}
protected virtual void OnChangedIngredient1(object sender, System.EventArgs e)
{
UpdateIngredients();
}
protected virtual void OnChangedIngredient2(object sender, System.EventArgs e)
{
UpdateIngredients();
}
protected virtual void OnChangedIngredient3(object sender, System.EventArgs e)
{
UpdateIngredients();
}
protected virtual void OnNewProfile(object sender, System.EventArgs e)
{
if (unsavedData)
{
MessageDialog md = new MessageDialog(this,
DialogFlags.DestroyWithParent,
MessageType.Warning, ButtonsType.OkCancel,
"Your last reaction was unsaved." +
"Are you sure you want to lose your changes?");
ResponseType resp = (ResponseType)md.Run();
md.Destroy();
if (resp != ResponseType.Ok)
{
return;
}
}
if (NewProfile())
{
bool ok = profile.Load();
if (ok)
{
PopulateDropDowns();
recipe.Reactions = profile.Reactions;
}
else
{
MessageDialog md = new MessageDialog(this,
DialogFlags.DestroyWithParent,
MessageType.Warning, ButtonsType.OkCancel,
"Failed to load profile: " + profile.LastError);
md.Run();
md.Destroy();
}
}
}
protected virtual void OnOpenProfile(object sender, System.EventArgs e)
{
bool profileSelected = false;
SelectProfileDialog selectProfileDialog = new SelectProfileDialog();
selectProfileDialog.ProfileList = profileList;
ResponseType resp = (ResponseType)selectProfileDialog.Run();
selectProfileDialog.Destroy();
if (resp == ResponseType.Ok) // Selected a profile.
{
SetProfileName(selectProfileDialog.SelectedProfile);
profileSelected = true;
}
else if (resp == ResponseType.Accept) // New profile.
{
profileSelected = NewProfile();
}
if (profileSelected)
{
bool ok = profile.Load();
if (ok)
{
PopulateDropDowns();
}
else
{
MessageDialog md = new MessageDialog(this,
DialogFlags.DestroyWithParent,
MessageType.Warning, ButtonsType.OkCancel,
"Failed to load profile: " + profile.LastError);
md.Run();
md.Destroy();
}
}
}
protected virtual void OnAbout(object sender, System.EventArgs e)
{
AboutDialog aboutDialog = new AboutDialog();
aboutDialog.ProgramName = "Desert Paint Lab";
aboutDialog.Version = APP_VERSION ;
aboutDialog.Comments = "Desert Paint Lab paint reaction recorder for A Tale in the Desert";
aboutDialog.Authors = new string [] {"Tess Snider", "Jason Maltzen"};
//aboutDialog.Website = "http://www.google.com/";
aboutDialog.Run();
aboutDialog.Destroy();
}
protected virtual void OnMenuExit (object sender, System.EventArgs e)
{
if (ConfirmedExit())
{
Application.Quit();
}
}
protected virtual void OnExport(object sender, System.EventArgs e)
{
FileChooserDialog fileDialog =
new FileChooserDialog("Select destination file.",
this, FileChooserAction.Save,
Gtk.Stock.Cancel, ResponseType.Cancel,
Gtk.Stock.Save, ResponseType.Accept);
ResponseType resp = (ResponseType)fileDialog.Run();
if (resp == ResponseType.Accept)
{
string fileName = fileDialog.Filename;
string directory = fileDialog.CurrentFolder;
profile.SaveToPP(System.IO.Path.Combine(directory, fileName));
}
fileDialog.Destroy();
}
protected virtual void RunSimulator(object sender, System.EventArgs e)
{
SimulatorWindow win = new SimulatorWindow(profile);
win.Show();
}
protected void OnOpenRecipeGenerator(object sender, EventArgs e)
{
RecipeGeneratorWindow win = new RecipeGeneratorWindow(profile);
win.Show();
//RecipeGenerator gen = new RecipeGenerator();
//gen.BeginRecipeGeneration(profile.Reactions, 15, 7);
//MessageDialog md = new MessageDialog(this,
// DialogFlags.DestroyWithParent,
// MessageType.Info, ButtonsType.Close,
// "Coming Soon!");
//md.Run();
//md.Destroy();
}
protected void OnShowReactionStatus(object sender, EventArgs e)
{
ReactionStatusWindow win = new ReactionStatusWindow(profile);
win.Show();
}
protected void OnShowIngredients(object sender, EventArgs e)
{
ReagentWindow win = new ReagentWindow(profile);
win.Show();
}
protected void OnExportProfile(object sender, EventArgs e)
{
FileChooserDialog fileDialog =
new FileChooserDialog("Select destination file.",
this, FileChooserAction.Save,
Gtk.Stock.Cancel, ResponseType.Cancel,
Gtk.Stock.Save, ResponseType.Accept);
ResponseType resp = (ResponseType)fileDialog.Run();
if (resp == ResponseType.Accept)
{
string fileName = fileDialog.Filename;
string directory = fileDialog.CurrentFolder;
string targetFile = System.IO.Path.Combine(directory, fileName);
if (File.Exists(targetFile))
{
// prompt to overwrite
MessageDialog md = new MessageDialog(this,
DialogFlags.DestroyWithParent,
MessageType.Warning, ButtonsType.OkCancel,
"Overwrite profile at" +
targetFile + "?");
resp = (ResponseType)md.Run();
md.Destroy();
if (resp == ResponseType.Ok)
{
File.Delete(targetFile);
profile.Export(targetFile);
}
}
else
{
profile.Export(targetFile);
}
}
fileDialog.Destroy();
}
protected void OnImportProfile(object sender, EventArgs e)
{
FileChooserDialog fileDialog =
new FileChooserDialog("Select file to import.",
this, FileChooserAction.Open,
Gtk.Stock.Cancel, ResponseType.Cancel,
Gtk.Stock.Open, ResponseType.Accept);
ResponseType resp = (ResponseType)fileDialog.Run();
if (resp == ResponseType.Accept)
{
string fileName = fileDialog.Filename;
string directory = fileDialog.CurrentFolder;
string targetFile = fileName;
if (directory != null)
{
targetFile = System.IO.Path.Combine(directory, fileName);
}
if (Directory.Exists(profile.Directory))
{
// prompt to overwrite
MessageDialog md = new MessageDialog(this,
DialogFlags.DestroyWithParent,
MessageType.Warning, ButtonsType.OkCancel,
"Overwrite profile at" +
directory + "?");
resp = (ResponseType)md.Run();
md.Destroy();
if (resp == ResponseType.Ok)
{
Directory.Delete(profile.Directory, true);
profile.Import(targetFile);
}
}
else
{
profile.Import(targetFile);
}
bool ok = profile.Load();
if (ok)
{
PopulateDropDowns();
recipe.Reactions = profile.Reactions;
}
else
{
MessageDialog md = new MessageDialog(this,
DialogFlags.DestroyWithParent,
MessageType.Warning, ButtonsType.OkCancel,
"Failed to load imported profile: " + profile.LastError);
md.Run();
md.Destroy();
}
}
fileDialog.Destroy();
}
}
|