mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-05 22:04:27 +08:00
* Changed SVG output so all coordinates are to 1 decimal place. Adjusted tests accordingly. * Checking test1 SVGs via hashcode. * Added testing of all generated test files by comparing hash-codes. The few cases where this doesn't work are mentioned in the code. * close streams * Close files after writing - Windows won't delete them otherwise. * Changes post-review. * Proposed change post-review for further discussion. * Use MolDraw2D_details::doubleFormat. * Copied improved check_file_hash() from catch_tests.cpp. Updated a few hash codes. * Copied improved check_file_hash() from catch_tests.cpp. Updated a few hash codes. Added hash codes for no-Freetype version. Co-authored-by: David Cosgrove <david@cozchemix.co.uk> Co-authored-by: Greg Landrum <greg.landrum@gmail.com>
105 lines
3.5 KiB
C++
105 lines
3.5 KiB
C++
//
|
|
// @@ All Rights Reserved @@
|
|
// This file is part of the RDKit.
|
|
// The contents are covered by the terms of the BSD license
|
|
// which is included in the file license.txt, found at the root
|
|
// of the RDKit source tree.
|
|
//
|
|
// Original author: David Cosgrove (CozChemIx) on 08/05/2020.
|
|
//
|
|
|
|
#include <GraphMol/MolDraw2D/MolDraw2DDetails.h>
|
|
#include <GraphMol/MolDraw2D/DrawTextFTSVG.h>
|
|
|
|
namespace RDKit {
|
|
|
|
std::string DrawColourToSVG(const RDKit::DrawColour &col);
|
|
|
|
// ****************************************************************************
|
|
DrawTextFTSVG::DrawTextFTSVG(double max_fnt_sz, double min_fnt_sz,
|
|
const std::string &font_file, std::ostream &oss,
|
|
std::string &d_act_class)
|
|
: DrawTextFT(max_fnt_sz, min_fnt_sz, font_file),
|
|
oss_(oss),
|
|
d_active_class_(d_act_class) {}
|
|
|
|
// ****************************************************************************
|
|
double DrawTextFTSVG::extractOutline() {
|
|
std::string col = DrawColourToSVG(colour());
|
|
|
|
oss_ << "<path ";
|
|
if (!d_active_class_.empty()) {
|
|
oss_ << " class='" << d_active_class_ << "'"
|
|
<< " d='";
|
|
} else {
|
|
oss_ << " d='";
|
|
}
|
|
|
|
double adv = DrawTextFT::extractOutline();
|
|
oss_ << "' fill='" << col << "'/>" << std::endl;
|
|
|
|
return adv;
|
|
}
|
|
|
|
// ****************************************************************************
|
|
int DrawTextFTSVG::MoveToFunctionImpl(const FT_Vector *to) {
|
|
double dx, dy;
|
|
fontPosToDrawPos(to->x, to->y, dx, dy);
|
|
oss_ << "M " << MolDraw2D_detail::formatDouble(dx)
|
|
<< ' ' << MolDraw2D_detail::formatDouble(dy) << std::endl;
|
|
|
|
return 0;
|
|
}
|
|
|
|
// ****************************************************************************
|
|
int DrawTextFTSVG::LineToFunctionImpl(const FT_Vector *to) {
|
|
double dx, dy;
|
|
fontPosToDrawPos(to->x, to->y, dx, dy);
|
|
oss_ << "L " << MolDraw2D_detail::formatDouble(dx)
|
|
<< ' ' << MolDraw2D_detail::formatDouble(dy) << std::endl;
|
|
|
|
return 0;
|
|
}
|
|
|
|
// ****************************************************************************
|
|
int DrawTextFTSVG::ConicToFunctionImpl(const FT_Vector *control,
|
|
const FT_Vector *to) {
|
|
double controlX, controlY;
|
|
fontPosToDrawPos(control->x, control->y, controlX, controlY);
|
|
|
|
double dx, dy;
|
|
fontPosToDrawPos(to->x, to->y, dx, dy);
|
|
|
|
oss_ << "Q " << MolDraw2D_detail::formatDouble(controlX)
|
|
<< ' ' << MolDraw2D_detail::formatDouble(controlY)
|
|
<< ", " << MolDraw2D_detail::formatDouble(dx)
|
|
<< ' ' << MolDraw2D_detail::formatDouble(dy)
|
|
<< std::endl;
|
|
|
|
return 0;
|
|
}
|
|
|
|
// ****************************************************************************
|
|
int DrawTextFTSVG::CubicToFunctionImpl(const FT_Vector *controlOne,
|
|
const FT_Vector *controlTwo,
|
|
const FT_Vector *to) {
|
|
double controlOneX, controlOneY;
|
|
fontPosToDrawPos(controlOne->x, controlOne->y, controlOneX, controlOneY);
|
|
double controlTwoX, controlTwoY;
|
|
fontPosToDrawPos(controlTwo->x, controlTwo->y, controlTwoX, controlTwoY);
|
|
|
|
double dx, dy;
|
|
fontPosToDrawPos(to->x, to->y, dx, dy);
|
|
|
|
oss_ << "C " << MolDraw2D_detail::formatDouble(controlOneX) << ' '
|
|
<< MolDraw2D_detail::formatDouble(controlOneY)
|
|
<< ", " << MolDraw2D_detail::formatDouble(controlTwoX)
|
|
<< ' ' << MolDraw2D_detail::formatDouble(controlTwoY)
|
|
<< ", " << MolDraw2D_detail::formatDouble(dx)
|
|
<< ' ' << MolDraw2D_detail::formatDouble(dy) << std::endl;
|
|
|
|
return 0;
|
|
}
|
|
|
|
} // namespace RDKit
|