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
|
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include "agg_rendering_buffer.h"
#include "agg_rasterizer_scanline_aa.h"
#include "agg_scanline_p.h"
#include "agg_renderer_scanline.h"
#include "agg_conv_transform.h"
#include "agg_conv_stroke.h"
#include "agg_bspline.h"
#include "agg_ellipse.h"
#include "agg_gsv_text.h"
#include "ctrl/agg_slider_ctrl.h"
#include "ctrl/agg_scale_ctrl.h"
#include "platform/agg_platform_support.h"
#define AGG_BGR24
//#define AGG_RGB24
//#define AGG_BGRA32
//#define AGG_RGBA32
//#define AGG_ARGB32
//#define AGG_ABGR32
//#define AGG_RGB565
//#define AGG_RGB555
#include "pixel_formats.h"
enum flip_y_e { flip_y = true };
enum default_num_points_e { default_num_points = 20000 };
enum start_size_e
{
start_width = 400,
start_height = 400
};
enum atom_color_e
{
atom_color_general = 0,
atom_color_N = 1,
atom_color_O = 2,
atom_color_S = 3,
atom_color_P = 4,
atom_color_halogen = 5,
end_of_atom_colors
};
struct atom_type
{
double x;
double y;
char label[4];
int charge;
unsigned color_idx;
};
struct bond_type
{
unsigned idx1;
unsigned idx2;
double x1;
double y1;
double x2;
double y2;
unsigned order;
int stereo;
int topology;
};
class molecule
{
public:
~molecule();
molecule();
bool read(FILE* fd);
unsigned num_atoms() const { return m_num_atoms; }
unsigned num_bonds() const { return m_num_bonds; }
const atom_type& atom(unsigned idx) const { return m_atoms[idx]; }
const bond_type& bond(unsigned idx) const { return m_bonds[idx]; }
double average_bond_len() const { return m_avr_len; }
const char* name() const { return m_name; }
static int get_int(const char* buf, int pos, int len);
static double get_dbl(const char* buf, int pos, int len);
static char* get_str(char* dst, const char* buf, int pos, int len);
private:
atom_type* m_atoms;
unsigned m_num_atoms;
bond_type* m_bonds;
unsigned m_num_bonds;
char m_name[128];
double m_avr_len;
};
molecule::~molecule()
{
delete [] m_bonds;
delete [] m_atoms;
}
molecule::molecule() :
m_atoms(0),
m_num_atoms(0),
m_bonds(0),
m_num_bonds(0),
m_avr_len(0)
{
m_name[0] = 0;
}
int molecule::get_int(const char* buf, int pos, int len)
{
char tmp[32];
return atoi(get_str(tmp, buf, pos, len));
}
double molecule::get_dbl(const char* buf, int pos, int len)
{
char tmp[32];
return atof(get_str(tmp, buf, pos, len));
}
char* molecule::get_str(char* dst, const char* buf, int pos, int len)
{
--pos;
int buf_len = strlen(buf);
buf += pos;
while(pos + len < buf_len && isspace(*buf))
{
++buf;
--len;
}
if(len >= 0)
{
if(len > 0) memcpy(dst, buf, len);
dst[len] = 0;
}
char* ts = dst;
while(*ts && !isspace(*ts)) ts++;
*ts = 0;
return dst;
}
unsigned trim_cr_lf(char* buf)
{
unsigned len = strlen(buf);
// Trim "\n\r" at the beginning
unsigned pos = 0;
while(len && (buf[0] == '\n' || buf[0] == '\r'))
{
--len;
++pos;
}
if(pos) strcpy(buf, buf + pos);
// Trim "\n\r" at the end
while(len && (buf[len-1] == '\n' || buf[len-1] == '\r')) --len;
buf[len] = 0;
return len;
}
/*
MFCD00191150
Mt7.00 09020210442D
23 23 0 0 1 0 0 0 0 0999 V2000
-2.6793 -0.2552 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
. . .
1 2 1 0 0 0 0
. . .
M END
> <MDLNUMBER>
MFCD00191150
$$$$
*/
bool molecule::read(FILE* fd)
{
char buf[512];
unsigned len;
if(!fgets(buf, 510, fd)) return false;
len = trim_cr_lf(buf);
if(len > 128) len = 128;
if(len) memcpy(m_name, buf, len);
m_name[len] = 0;
if(!fgets(buf, 510, fd)) return false;
if(!fgets(buf, 510, fd)) return false;
if(!fgets(buf, 510, fd)) return false;
trim_cr_lf(buf);
m_num_atoms = get_int(buf, 1, 3);
m_num_bonds = get_int(buf, 4, 3);
if(m_num_atoms == 0 || m_num_bonds == 0) return false;
m_atoms = new atom_type[m_num_atoms];
m_bonds = new bond_type[m_num_bonds];
memset(m_atoms, 0, sizeof(atom_type) * m_num_atoms);
memset(m_bonds, 0, sizeof(bond_type) * m_num_bonds);
unsigned i;
for(i = 0; i < m_num_atoms; i++)
{
if(!fgets(buf, 510, fd)) return false;
trim_cr_lf(buf);
/*
-2.6793 -0.2552 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
*/
m_atoms[i].x = get_dbl(buf, 1, 10);
m_atoms[i].y = get_dbl(buf, 11, 10);
get_str(m_atoms[i].label, buf, 32, 3);
m_atoms[i].charge = get_int(buf, 39, 1);
if(m_atoms[i].charge) m_atoms[i].charge = 4 - m_atoms[i].charge;
if(strcmp(m_atoms[i].label, "N") == 0) m_atoms[i].color_idx = atom_color_N;
if(strcmp(m_atoms[i].label, "O") == 0) m_atoms[i].color_idx = atom_color_O;
if(strcmp(m_atoms[i].label, "S") == 0) m_atoms[i].color_idx = atom_color_S;
if(strcmp(m_atoms[i].label, "P") == 0) m_atoms[i].color_idx = atom_color_P;
if(strcmp(m_atoms[i].label, "F") == 0 ||
strcmp(m_atoms[i].label, "Cl") == 0 ||
strcmp(m_atoms[i].label, "Br") == 0 ||
strcmp(m_atoms[i].label, "I") == 0) m_atoms[i].color_idx = atom_color_halogen;
}
m_avr_len = 0.0;
for(i = 0; i < m_num_bonds; i++)
{
if(!fgets(buf, 510, fd)) return false;
trim_cr_lf(buf);
/*
1 2 1 0 0 0 0
*/
m_bonds[i].idx1 = get_int(buf, 1, 3) - 1;
m_bonds[i].idx2 = get_int(buf, 4, 3) - 1;
if(m_bonds[i].idx1 >= m_num_atoms || m_bonds[i].idx2 >= m_num_atoms) return false;
m_bonds[i].x1 = m_atoms[m_bonds[i].idx1].x;
m_bonds[i].y1 = m_atoms[m_bonds[i].idx1].y;
m_bonds[i].x2 = m_atoms[m_bonds[i].idx2].x;
m_bonds[i].y2 = m_atoms[m_bonds[i].idx2].y;
m_bonds[i].order = get_int(buf, 7, 3);
m_bonds[i].stereo = get_int(buf, 10, 3);
m_bonds[i].topology = get_int(buf, 13, 3);
m_avr_len += sqrt((m_bonds[i].x1 - m_bonds[i].x2) * (m_bonds[i].x1 - m_bonds[i].x2) +
(m_bonds[i].y1 - m_bonds[i].y2) * (m_bonds[i].y1 - m_bonds[i].y2));
}
m_avr_len /= double(m_num_bonds);
while(fgets(buf, 510, fd))
{
trim_cr_lf(buf);
if(buf[0] == '$') return true;
}
return false;
}
namespace agg
{
class line
{
public:
line() :
m_x1(0.0), m_y1(0.0), m_x2(1.0), m_y2(0.0), m_thickness(0.1)
{
}
line(double x1, double y1, double x2, double y2, double thickness) :
m_x1(x1), m_y1(y1), m_x2(x2), m_y2(y2), m_thickness(thickness)
{
}
void init(double x1, double y1, double x2, double y2)
{
m_x1 = x1;
m_y1 = y1;
m_x2 = x2;
m_y2 = y2;
}
void thickness(double th)
{
m_thickness = th;
}
void rewind(unsigned start);
unsigned vertex(double* x, double* y);
private:
double m_x1;
double m_y1;
double m_x2;
double m_y2;
double m_dx;
double m_dy;
double m_thickness;
unsigned m_vertex;
};
inline void line::rewind(unsigned)
{
calc_orthogonal(m_thickness*0.5, m_x1, m_y1, m_x2, m_y2, &m_dx, &m_dy);
m_vertex = 0;
}
inline unsigned line::vertex(double* x, double* y)
{
switch(m_vertex)
{
case 0:
*x = m_x1 - m_dx;
*y = m_y1 - m_dy;
m_vertex++;
return path_cmd_move_to;
case 1:
*x = m_x2 - m_dx;
*y = m_y2 - m_dy;
m_vertex++;
return path_cmd_line_to;
case 2:
*x = m_x2 + m_dx;
*y = m_y2 + m_dy;
m_vertex++;
return path_cmd_line_to;
case 3:
*x = m_x1 + m_dx;
*y = m_y1 + m_dy;
m_vertex++;
return path_cmd_line_to;
}
return path_cmd_stop;
}
class solid_wedge
{
public:
solid_wedge() :
m_x1(0.0), m_y1(0.0), m_x2(1.0), m_y2(0.0), m_thickness(0.1)
{
}
solid_wedge(double x1, double y1, double x2, double y2, double thickness) :
m_x1(x1), m_y1(y1), m_x2(x2), m_y2(y2), m_thickness(thickness)
{
}
void init(double x1, double y1, double x2, double y2)
{
m_x1 = x1;
m_y1 = y1;
m_x2 = x2;
m_y2 = y2;
}
void thickness(double th)
{
m_thickness = th;
}
void rewind(unsigned start);
unsigned vertex(double* x, double* y);
private:
double m_x1;
double m_y1;
double m_x2;
double m_y2;
double m_dx;
double m_dy;
double m_thickness;
unsigned m_vertex;
};
inline void solid_wedge::rewind(unsigned)
{
calc_orthogonal(m_thickness*2.0, m_x1, m_y1, m_x2, m_y2, &m_dx, &m_dy);
m_vertex = 0;
}
inline unsigned solid_wedge::vertex(double* x, double* y)
{
switch(m_vertex)
{
case 0:
*x = m_x1;
*y = m_y1;
m_vertex++;
return path_cmd_move_to;
case 1:
*x = m_x2 - m_dx;
*y = m_y2 - m_dy;
m_vertex++;
return path_cmd_line_to;
case 2:
*x = m_x2 + m_dx;
*y = m_y2 + m_dy;
m_vertex++;
return path_cmd_line_to;
}
return path_cmd_stop;
}
class dashed_wedge
{
public:
dashed_wedge() :
m_x1(0.0), m_y1(0.0), m_x2(1.0), m_y2(0.0),
m_thickness(0.1),
m_num_dashes(8)
{
}
dashed_wedge(double x1, double y1, double x2, double y2,
double thickness, unsigned num_dashes=8) :
m_x1(x2), m_y1(y2), m_x2(x1), m_y2(y1),
m_thickness(thickness),
m_num_dashes(num_dashes)
{
}
void init(double x1, double y1, double x2, double y2)
{
m_x1 = x2;
m_y1 = y2;
m_x2 = x1;
m_y2 = y1;
}
void num_dashes(unsigned nd)
{
m_num_dashes = nd;
}
void thickness(double th)
{
m_thickness = th;
}
void rewind(unsigned start);
unsigned vertex(double* x, double* y);
private:
double m_x1;
double m_y1;
double m_x2;
double m_y2;
double m_xt2;
double m_yt2;
double m_xt3;
double m_yt3;
double m_xd[4];
double m_yd[4];
double m_thickness;
unsigned m_num_dashes;
unsigned m_vertex;
};
void dashed_wedge::rewind(unsigned)
{
double dx;
double dy;
calc_orthogonal(m_thickness*2.0, m_x1, m_y1, m_x2, m_y2, &dx, &dy);
m_xt2 = m_x2 - dx;
m_yt2 = m_y2 - dy;
m_xt3 = m_x2 + dx;
m_yt3 = m_y2 + dy;
m_vertex = 0;
}
unsigned dashed_wedge::vertex(double* x, double* y)
{
if(m_vertex < m_num_dashes * 4)
{
if((m_vertex % 4) == 0)
{
double k1 = double(m_vertex / 4) / double(m_num_dashes);
double k2 = k1 + 0.4 / double(m_num_dashes);
m_xd[0] = m_x1 + (m_xt2 - m_x1) * k1;
m_yd[0] = m_y1 + (m_yt2 - m_y1) * k1;
m_xd[1] = m_x1 + (m_xt2 - m_x1) * k2;
m_yd[1] = m_y1 + (m_yt2 - m_y1) * k2;
m_xd[2] = m_x1 + (m_xt3 - m_x1) * k2;
m_yd[2] = m_y1 + (m_yt3 - m_y1) * k2;
m_xd[3] = m_x1 + (m_xt3 - m_x1) * k1;
m_yd[3] = m_y1 + (m_yt3 - m_y1) * k1;
*x = m_xd[0];
*y = m_yd[0];
m_vertex++;
return path_cmd_move_to;
}
else
{
*x = m_xd[m_vertex % 4];
*y = m_yd[m_vertex % 4];
m_vertex++;
return path_cmd_line_to;
}
}
return path_cmd_stop;
}
}
class bond_vertex_generator
{
enum bond_style_e
{
bond_single,
bond_wedged_solid,
bond_wedged_dashed,
bond_double,
bond_double_left,
bond_double_right,
bond_triple
};
public:
bond_vertex_generator(const bond_type& bond, double thickness) :
m_bond(bond),
m_thickness(thickness),
m_style(bond_single)
{
if(bond.order == 1)
{
if(bond.stereo == 1) m_style = bond_wedged_solid;
if(bond.stereo == 6) m_style = bond_wedged_dashed;
}
if(bond.order == 2)
{
m_style = bond_double;
if(bond.topology == 1) m_style = bond_double_left;
if(bond.topology == 2) m_style = bond_double_right;
}
if(bond.order == 3) m_style = bond_triple;
m_line1.thickness(thickness);
m_line2.thickness(thickness);
m_line3.thickness(thickness);
m_solid_wedge.thickness(thickness);
m_dashed_wedge.thickness(thickness);
}
void rewind(unsigned)
{
double dx, dy, dx1, dy1, dx2, dy2;
switch(m_style)
{
case bond_wedged_solid:
m_solid_wedge.init(m_bond.x1, m_bond.y1, m_bond.x2, m_bond.y2);
m_solid_wedge.rewind(0);
break;
case bond_wedged_dashed:
m_dashed_wedge.init(m_bond.x1, m_bond.y1, m_bond.x2, m_bond.y2);
m_dashed_wedge.rewind(0);
break;
case bond_double:
case bond_double_left:
case bond_double_right:
agg::calc_orthogonal(m_thickness,
m_bond.x1, m_bond.y1,
m_bond.x2, m_bond.y2,
&dx, &dy);
dx1 = dy1 = 0;
// To Do: ring perception and the proper drawing
// of the double bonds in the aromatic rings.
//if(m_style == bond_double)
{
dx1 = dx2 = dx;
dy1 = dy2 = dy;
}
/*
else if(m_style == bond_double_left)
{
dx2 = dx * 2.0;
dy2 = dy * 2.0;
}
else
{
dx2 = -dx * 2.0;
dy2 = -dy * 2.0;
}
*/
m_line1.init(m_bond.x1 - dx1,
m_bond.y1 - dy1,
m_bond.x2 - dx1,
m_bond.y2 - dy1);
m_line1.rewind(0);
m_line2.init(m_bond.x1 + dx2,
m_bond.y1 + dy2,
m_bond.x2 + dx2,
m_bond.y2 + dy2);
m_line2.rewind(0);
m_status = 0;
break;
case bond_triple:
// To Do: triple bonds drawing.
default:
m_line1.init(m_bond.x1, m_bond.y1, m_bond.x2, m_bond.y2);
m_line1.rewind(0);
break;
}
}
unsigned vertex(double* x, double* y)
{
unsigned flag = agg::path_cmd_stop;
switch(m_style)
{
case bond_wedged_solid:
return m_solid_wedge.vertex(x, y);
case bond_wedged_dashed:
return m_dashed_wedge.vertex(x, y);
case bond_double_left:
case bond_double_right:
case bond_double:
if(m_status == 0)
{
flag = m_line1.vertex(x, y);
if(flag == agg::path_cmd_stop)
{
m_status = 1;
}
}
if(m_status == 1)
{
flag = m_line2.vertex(x, y);
}
return flag;
case bond_triple:
break;
}
return m_line1.vertex(x, y);
}
private:
bond_vertex_generator(const bond_vertex_generator&);
const bond_vertex_generator& operator = (const bond_vertex_generator&);
const bond_type& m_bond;
double m_thickness;
bond_style_e m_style;
agg::line m_line1;
agg::line m_line2;
agg::line m_line3;
agg::solid_wedge m_solid_wedge;
agg::dashed_wedge m_dashed_wedge;
unsigned m_status;
};
class the_application : public agg::platform_support
{
molecule* m_molecules;
unsigned m_num_molecules;
unsigned m_cur_molecule;
agg::slider_ctrl<agg::rgba8> m_thickness;
agg::slider_ctrl<agg::rgba8> m_text_size;
double m_pdx;
double m_pdy;
double m_center_x;
double m_center_y;
double m_scale;
double m_prev_scale;
double m_angle;
double m_prev_angle;
bool m_mouse_move;
agg::rgba8 m_atom_colors[end_of_atom_colors];
public:
virtual ~the_application()
{
delete [] m_molecules;
}
the_application(agg::pix_format_e format, bool flip_y, const char* fname) :
agg::platform_support(format, flip_y),
m_molecules(new molecule [100]),
m_num_molecules(0),
m_cur_molecule(0),
m_thickness(5, 5, start_width-5, 12),
m_text_size(5, 20, start_width-5, 27),
m_pdx(0.0),
m_pdy(0.0),
m_center_x(start_width / 2),
m_center_y(start_height / 2),
m_scale(1.0),
m_prev_scale(1.0),
m_angle(0.0),
m_prev_angle(0.0),
m_mouse_move(false)
{
m_thickness.label("Thickness=%3.2f");
m_text_size.label("Label Size=%3.2f");
add_ctrl(m_thickness);
add_ctrl(m_text_size);
FILE* fd = fopen(full_file_name(fname), "r");
if(fd)
{
unsigned i;
for(i = 0; i < 100; i++)
{
if(!m_molecules[m_num_molecules].read(fd)) break;
m_num_molecules++;
}
fclose(fd);
}
else
{
char buf[256];
sprintf(buf, "File not found: '%s'. Download http://www.antigrain.com/%s\n",
fname, fname);
message(buf);
}
memset(m_atom_colors, 0, sizeof(agg::rgba8) * end_of_atom_colors);
m_atom_colors[atom_color_general] = agg::rgba8(0,0,0);
m_atom_colors[atom_color_N] = agg::rgba8(0,0,120);
m_atom_colors[atom_color_O] = agg::rgba8(200,0,0);
m_atom_colors[atom_color_S] = agg::rgba8(120,120,0);
m_atom_colors[atom_color_P] = agg::rgba8(80,50,0);
m_atom_colors[atom_color_halogen] = agg::rgba8(0,200,0);
}
virtual void on_init()
{
}
virtual void on_draw()
{
double width = initial_width();
double height = initial_height();
agg::rasterizer_scanline_aa<> ras;
agg::scanline_p8 sl;
typedef agg::renderer_base<pixfmt> renderer_base;
typedef agg::renderer_scanline_aa_solid<renderer_base> renderer_solid;
pixfmt pixf(rbuf_window());
renderer_base rb(pixf);
renderer_solid rs(rb);
ras.clip_box(0, 0, rb.width(), rb.height());
rb.clear(agg::rgba(1,1,1));
const molecule& mol = m_molecules[m_cur_molecule];
unsigned i;
double min_x = 1e100;
double max_x = -1e100;
double min_y = 1e100;
double max_y = -1e100;
for(i = 0; i < mol.num_atoms(); i++)
{
if(mol.atom(i).x < min_x) min_x = mol.atom(i).x;
if(mol.atom(i).y < min_y) min_y = mol.atom(i).y;
if(mol.atom(i).x > max_x) max_x = mol.atom(i).x;
if(mol.atom(i).y > max_y) max_y = mol.atom(i).y;
}
agg::trans_affine mtx;
mtx *= agg::trans_affine_translation(-(max_x + min_x) * 0.5, -(max_y + min_y) * 0.5);
double scale = width / (max_x - min_x);
double t = height / (max_y - min_y);
if(scale > t) scale = t;
double text_size = mol.average_bond_len() * m_text_size.value() / 4.0;
double thickness = mol.average_bond_len() /
sqrt(m_scale < 0.0001 ? 0.0001 : m_scale) /
8.0;
mtx *= agg::trans_affine_scaling(scale*0.80, scale*0.80);
mtx *= agg::trans_affine_rotation(m_angle);
mtx *= agg::trans_affine_scaling(m_scale, m_scale);
mtx *= agg::trans_affine_translation(m_center_x, m_center_y);
mtx *= trans_affine_resizing();
rs.color(agg::rgba(0,0,0));
for(i = 0; i < mol.num_bonds(); i++)
{
bond_vertex_generator bond(mol.bond(i),
m_thickness.value() * thickness);
agg::conv_transform<bond_vertex_generator> tr(bond, mtx);
ras.add_path(tr);
agg::render_scanlines(ras, sl, rs);
}
agg::ellipse ell;
agg::conv_transform<agg::ellipse> tr(ell, mtx);
for(i = 0; i < mol.num_atoms(); i++)
{
if(strcmp(mol.atom(i).label, "C") != 0)
{
ell.init(mol.atom(i).x,
mol.atom(i).y,
text_size * 2.5,
text_size * 2.5,
20);
ras.add_path(tr);
rs.color(agg::rgba(1.0, 1.0, 1.0));
agg::render_scanlines(ras, sl, rs);
}
}
text_size *= 3.0;
agg::gsv_text label;
agg::conv_stroke<agg::gsv_text> ls(label);
agg::conv_transform<agg::conv_stroke<agg::gsv_text> > lo(ls, mtx);
ls.line_join(agg::round_join);
ls.line_cap(agg::round_cap);
ls.approximation_scale(mtx.scale());
for(i = 0; i < mol.num_atoms(); i++)
{
if(strcmp(mol.atom(i).label, "C") != 0)
{
ls.width(m_thickness.value() * thickness);
label.text(mol.atom(i).label);
label.start_point(mol.atom(i).x - text_size/2, mol.atom(i).y - text_size/2);
label.size(text_size);
ras.add_path(lo);
rs.color(m_atom_colors[mol.atom(i).color_idx]);
agg::render_scanlines(ras, sl, rs);
}
}
ls.approximation_scale(1.0);
agg::conv_transform<agg::conv_stroke<agg::gsv_text> > name(ls, trans_affine_resizing());
ls.width(1.5);
label.text(mol.name());
label.size(10.0);
label.start_point(10.0, start_height - 20.0);
ras.reset();
ras.add_path(name);
rs.color(agg::rgba(0,0,0));
agg::render_scanlines(ras, sl, rs);
agg::render_ctrl(ras, sl, rb, m_thickness);
agg::render_ctrl(ras, sl, rb, m_text_size);
}
virtual void on_idle()
{
m_angle += agg::deg2rad(0.1);
force_redraw();
}
virtual void on_mouse_button_down(int x, int y, unsigned flags)
{
m_mouse_move = true;
double x2 = x;
double y2 = y;
trans_affine_resizing().inverse_transform(&x2, &y2);
m_pdx = m_center_x - x2;
m_pdy = m_center_y - y2;
m_prev_scale = m_scale;
m_prev_angle = m_angle + agg::pi;
force_redraw();
}
virtual void on_mouse_button_up(int x, int y, unsigned flags)
{
m_mouse_move = false;
}
virtual void on_mouse_move(int x, int y, unsigned flags)
{
double x2 = x;
double y2 = y;
trans_affine_resizing().inverse_transform(&x2, &y2);
if(m_mouse_move && (flags & agg::mouse_left) != 0)
{
double dx = x2 - m_center_x;
double dy = y2 - m_center_y;
m_scale = m_prev_scale *
sqrt(dx * dx + dy * dy) /
sqrt(m_pdx * m_pdx + m_pdy * m_pdy);
m_angle = m_prev_angle + atan2(dy, dx) - atan2(m_pdy, m_pdx);
force_redraw();
}
if(m_mouse_move && (flags & agg::mouse_right) != 0)
{
m_center_x = x2 + m_pdx;
m_center_y = y2 + m_pdy;
force_redraw();
}
}
virtual void on_key(int, int, unsigned key, unsigned)
{
switch(key)
{
case agg::key_left:
case agg::key_up:
case agg::key_page_up:
if(m_cur_molecule) --m_cur_molecule;
force_redraw();
break;
case agg::key_right:
case agg::key_down:
case agg::key_page_down:
if(m_cur_molecule < m_num_molecules - 1) ++m_cur_molecule;
force_redraw();
break;
case ' ':
wait_mode(!wait_mode());
break;
}
}
};
int agg_main(int argc, char* argv[])
{
const char* fname = "1.sdf";
if(argc > 1)
{
fname = argv[1];
}
the_application app(pix_format, flip_y, fname);
app.caption("AGG - A Simple SDF Molecular Viewer");
if(app.init(start_width, start_height, agg::window_resize))
{
return app.run();
}
return 1;
}
|