Files
klayout/src/plugins/streamers/dxf/db_plugin/gsiDeclDbDXF.cc
T

388 lines
16 KiB
C++
Executable File

/*
KLayout Layout Viewer
Copyright (C) 2006-2024 Matthias Koefferlein
This program 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 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "dbDXF.h"
#include "dbDXFReader.h"
#include "dbDXFWriter.h"
#include "dbLoadLayoutOptions.h"
#include "dbSaveLayoutOptions.h"
#include "gsiDecl.h"
namespace gsi
{
// ---------------------------------------------------------------
// gsi Implementation of specific methods
static void set_dxf_dbu (db::LoadLayoutOptions *options, double dbu)
{
options->get_options<db::DXFReaderOptions> ().dbu = dbu;
}
static double get_dxf_dbu (const db::LoadLayoutOptions *options)
{
return options->get_options<db::DXFReaderOptions> ().dbu;
}
static void set_dxf_text_scaling (db::LoadLayoutOptions *options, double text_scaling)
{
options->get_options<db::DXFReaderOptions> ().text_scaling = text_scaling;
}
static double get_dxf_text_scaling (const db::LoadLayoutOptions *options)
{
return options->get_options<db::DXFReaderOptions> ().text_scaling;
}
static void set_dxf_unit (db::LoadLayoutOptions *options, double unit)
{
options->get_options<db::DXFReaderOptions> ().unit = unit;
}
static double get_dxf_unit (const db::LoadLayoutOptions *options)
{
return options->get_options<db::DXFReaderOptions> ().unit;
}
static void set_dxf_render_texts_as_polygons (db::LoadLayoutOptions *options, bool value)
{
options->get_options<db::DXFReaderOptions> ().render_texts_as_polygons = value;
}
static bool get_dxf_render_texts_as_polygons (const db::LoadLayoutOptions *options)
{
return options->get_options<db::DXFReaderOptions> ().render_texts_as_polygons;
}
static void set_dxf_keep_other_cells (db::LoadLayoutOptions *options, bool value)
{
options->get_options<db::DXFReaderOptions> ().keep_other_cells = value;
}
static bool get_dxf_keep_other_cells (const db::LoadLayoutOptions *options)
{
return options->get_options<db::DXFReaderOptions> ().keep_other_cells;
}
static void set_dxf_circle_points (db::LoadLayoutOptions *options, int circle_points)
{
options->get_options<db::DXFReaderOptions> ().circle_points = circle_points;
}
static int get_dxf_circle_points (const db::LoadLayoutOptions *options)
{
return options->get_options<db::DXFReaderOptions> ().circle_points;
}
static void set_dxf_circle_accuracy (db::LoadLayoutOptions *options, double circle_accuracy)
{
options->get_options<db::DXFReaderOptions> ().circle_accuracy = circle_accuracy;
}
static double get_dxf_circle_accuracy (const db::LoadLayoutOptions *options)
{
return options->get_options<db::DXFReaderOptions> ().circle_accuracy;
}
static void set_dxf_contour_accuracy (db::LoadLayoutOptions *options, double contour_accuracy)
{
options->get_options<db::DXFReaderOptions> ().contour_accuracy = contour_accuracy;
}
static double get_dxf_contour_accuracy (const db::LoadLayoutOptions *options)
{
return options->get_options<db::DXFReaderOptions> ().contour_accuracy;
}
static void set_dxf_polyline_mode (db::LoadLayoutOptions *options, int mode)
{
if (mode < 0 || mode > 4) {
throw tl::Exception (tl::to_string (tr ("Invalid polygon mode")));
}
options->get_options<db::DXFReaderOptions> ().polyline_mode = mode;
}
static int get_dxf_polyline_mode (const db::LoadLayoutOptions *options)
{
return options->get_options<db::DXFReaderOptions> ().polyline_mode;
}
static void set_layer_map (db::LoadLayoutOptions *options, const db::LayerMap &lm, bool f)
{
options->get_options<db::DXFReaderOptions> ().layer_map = lm;
options->get_options<db::DXFReaderOptions> ().create_other_layers = f;
}
static void set_layer_map1 (db::LoadLayoutOptions *options, const db::LayerMap &lm)
{
options->get_options<db::DXFReaderOptions> ().layer_map = lm;
}
static db::LayerMap &get_layer_map (db::LoadLayoutOptions *options)
{
return options->get_options<db::DXFReaderOptions> ().layer_map;
}
static void select_all_layers (db::LoadLayoutOptions *options)
{
options->get_options<db::DXFReaderOptions> ().layer_map = db::LayerMap ();
options->get_options<db::DXFReaderOptions> ().create_other_layers = true;
}
static bool create_other_layers (const db::LoadLayoutOptions *options)
{
return options->get_options<db::DXFReaderOptions> ().create_other_layers;
}
static void set_create_other_layers (db::LoadLayoutOptions *options, bool l)
{
options->get_options<db::DXFReaderOptions> ().create_other_layers = l;
}
static bool keep_layer_names (const db::LoadLayoutOptions *options)
{
return options->get_options<db::DXFReaderOptions> ().keep_layer_names;
}
static void set_keep_layer_names (db::LoadLayoutOptions *options, bool l)
{
options->get_options<db::DXFReaderOptions> ().keep_layer_names = l;
}
// extend lay::LoadLayoutOptions with the DXF options
static
gsi::ClassExt<db::LoadLayoutOptions> dxf_reader_options (
gsi::method_ext ("dxf_set_layer_map", &set_layer_map, gsi::arg ("map"), gsi::arg ("create_other_layers"),
"@brief Sets the layer map\n"
"This sets a layer mapping for the reader. The layer map allows selection and translation of the original layers, for example to assign layer/datatype numbers to the named layers.\n"
"@param map The layer map to set.\n"
"@param create_other_layers The flag indicating whether other layers will be created as well. Set to false to read only the layers in the layer map.\n"
"\n"
"This method has been added in version 0.25 and replaces the respective global option in \\LoadLayoutOptions "
"in a format-specific fashion."
) +
gsi::method_ext ("dxf_layer_map=", &set_layer_map1, gsi::arg ("map"),
"@brief Sets the layer map\n"
"This sets a layer mapping for the reader. Unlike \\dxf_set_layer_map, the 'create_other_layers' flag is not changed.\n"
"@param map The layer map to set.\n"
"\n"
"This convenience method has been added in version 0.26."
) +
gsi::method_ext ("dxf_select_all_layers", &select_all_layers,
"@brief Selects all layers and disables the layer map\n"
"\n"
"This disables any layer map and enables reading of all layers.\n"
"New layers will be created when required.\n"
"\n"
"This method has been added in version 0.25 and replaces the respective global option in \\LoadLayoutOptions "
"in a format-specific fashion."
) +
gsi::method_ext ("dxf_layer_map", &get_layer_map,
"@brief Gets the layer map\n"
"@return A reference to the layer map\n"
"\n"
"This method has been added in version 0.25 and replaces the respective global option in \\LoadLayoutOptions "
"in a format-specific fashion."
"\n"
"Python note: this method has been turned into a property in version 0.26."
) +
gsi::method_ext ("dxf_create_other_layers?", &create_other_layers,
"@brief Gets a value indicating whether other layers shall be created\n"
"@return True, if other layers will be created.\n"
"This attribute acts together with a layer map (see \\dxf_layer_map=). Layers not listed in this map are created as well when "
"\\dxf_create_other_layers? is true. Otherwise they are ignored.\n"
"\n"
"This method has been added in version 0.25 and replaces the respective global option in \\LoadLayoutOptions "
"in a format-specific fashion."
) +
gsi::method_ext ("dxf_create_other_layers=", &set_create_other_layers, gsi::arg ("create"),
"@brief Specifies whether other layers shall be created\n"
"@param create True, if other layers will be created.\n"
"See \\dxf_create_other_layers? for a description of this attribute.\n"
"\n"
"This method has been added in version 0.25 and replaces the respective global option in \\LoadLayoutOptions "
"in a format-specific fashion."
) +
gsi::method_ext ("dxf_dbu=", &set_dxf_dbu, gsi::arg ("dbu"),
"@brief Specifies the database unit which the reader uses and produces\n"
"\nThis property has been added in version 0.21.\n"
) +
gsi::method_ext ("dxf_dbu", &get_dxf_dbu,
"@brief Specifies the database unit which the reader uses and produces\n"
"\nThis property has been added in version 0.21.\n"
) +
gsi::method_ext ("dxf_text_scaling=", &set_dxf_text_scaling, gsi::arg ("unit"),
"@brief Specifies the text scaling in percent of the default scaling\n"
"\n"
"The default value 100, meaning that the letter pitch is roughly 92 percent of the specified text height. "
"Decrease this value to get smaller fonts and increase it to get larger fonts.\n"
"\nThis property has been added in version 0.21.20.\n"
) +
gsi::method_ext ("dxf_text_scaling", &get_dxf_text_scaling,
"@brief Gets the text scaling factor (see \\dxf_text_scaling=)\n"
"\nThis property has been added in version 0.21.20.\n"
) +
gsi::method_ext ("dxf_unit=", &set_dxf_unit, gsi::arg ("unit"),
"@brief Specifies the unit in which the DXF file is drawn.\n"
"\nThis property has been added in version 0.21.3.\n"
) +
gsi::method_ext ("dxf_unit", &get_dxf_unit,
"@brief Specifies the unit in which the DXF file is drawn\n"
"\nThis property has been added in version 0.21.3.\n"
) +
gsi::method_ext ("dxf_circle_points=", &set_dxf_circle_points, gsi::arg ("points"),
"@brief Specifies the number of points used per full circle for arc interpolation\n"
"See also \\dxf_circle_accuracy for how to specify the number of points based on "
"an approximation accuracy.\n"
"\n"
"\\dxf_circle_points and \\dxf_circle_accuracy also apply to other \"round\" structures "
"such as arcs, ellipses and splines in the same sense than for circles.\n"
"\n"
"\nThis property has been added in version 0.21.6.\n"
) +
gsi::method_ext ("dxf_circle_points", &get_dxf_circle_points,
"@brief Gets the number of points used per full circle for arc interpolation\n"
"\nThis property has been added in version 0.21.6.\n"
) +
gsi::method_ext ("dxf_circle_accuracy=", &set_dxf_circle_accuracy, gsi::arg ("accuracy"),
"@brief Specifies the accuracy of the circle approximation\n"
"\n"
"In addition to the number of points per circle, the circle accuracy can be specified. "
"If set to a value larger than the database unit, the number of points per circle will "
"be chosen such that the deviation from the ideal circle becomes less than this value.\n"
"\n"
"The actual number of points will not become bigger than the points specified through "
"\\dxf_circle_points=. The accuracy value is given in the DXF file units (see \\dxf_unit) which is usually micrometers.\n"
"\n"
"\\dxf_circle_points and \\dxf_circle_accuracy also apply to other \"round\" structures "
"such as arcs, ellipses and splines in the same sense than for circles.\n"
"\n"
"\nThis property has been added in version 0.24.9.\n"
) +
gsi::method_ext ("dxf_circle_accuracy", &get_dxf_circle_accuracy,
"@brief Gets the accuracy of the circle approximation\n"
"\nThis property has been added in version 0.24.9.\n"
) +
gsi::method_ext ("dxf_contour_accuracy=", &set_dxf_contour_accuracy, gsi::arg ("accuracy"),
"@brief Specifies the accuracy for contour closing\n"
"\n"
"When polylines need to be connected or closed, this\n"
"value is used to indicate the accuracy. This is the value (in DXF units)\n"
"by which points may be separated and still be considered\n"
"connected. The default is 0.0 which implies exact\n"
"(within one DBU) closing.\n"
"\n"
"This value is effective in polyline mode 3 and 4.\n"
"\n"
"\nThis property has been added in version 0.25.3.\n"
) +
gsi::method_ext ("dxf_contour_accuracy", &get_dxf_contour_accuracy,
"@brief Gets the accuracy for contour closing\n"
"\n"
"\nThis property has been added in version 0.25.3.\n"
) +
gsi::method_ext ("dxf_render_texts_as_polygons=", &set_dxf_render_texts_as_polygons, gsi::arg ("value"),
"@brief If this option is set to true, text objects are rendered as polygons\n"
"\nThis property has been added in version 0.21.15.\n"
) +
gsi::method_ext ("dxf_render_texts_as_polygons?|#dxf_render_texts_as_polygons", &get_dxf_render_texts_as_polygons,
"@brief If this option is true, text objects are rendered as polygons\n"
"\nThis property has been added in version 0.21.15.\n"
) +
gsi::method_ext ("dxf_keep_layer_names?", &keep_layer_names,
"@brief Gets a value indicating whether layer names are kept\n"
"@return True, if layer names are kept.\n"
"\n"
"When set to true, no attempt is made to translate "
"layer names to GDS layer/datatype numbers. If set to false (the default), a layer named \"L2D15\" will be translated "
"to GDS layer 2, datatype 15.\n"
"\n"
"This method has been added in version 0.25.3."
) +
gsi::method_ext ("dxf_keep_layer_names=", &set_keep_layer_names, gsi::arg ("keep"),
"@brief Gets a value indicating whether layer names are kept\n"
"@param keep True, if layer names are to be kept.\n"
"\n"
"See \\cif_keep_layer_names? for a description of this property.\n"
"\n"
"This method has been added in version 0.25.3."
) +
gsi::method_ext ("dxf_keep_other_cells=", &set_dxf_keep_other_cells, gsi::arg ("value"),
"@brief If this option is set to true, all cells are kept, not only the top cell and its children\n"
"\nThis property has been added in version 0.21.15.\n"
) +
gsi::method_ext ("dxf_keep_other_cells?|#dxf_keep_other_cells", &get_dxf_keep_other_cells,
"@brief If this option is true, all cells are kept, not only the top cell and its children\n"
"\nThis property has been added in version 0.21.15.\n"
) +
gsi::method_ext ("dxf_polyline_mode=", &set_dxf_polyline_mode, gsi::arg ("mode"),
"@brief Specifies how to treat POLYLINE/LWPOLYLINE entities.\n"
"The mode is 0 (automatic), 1 (keep lines), 2 (create polygons from closed polylines with width = 0), "
"3 (merge all lines with width = 0 into polygons), 4 (as 3 plus auto-close open contours).\n"
"\nThis property has been added in version 0.21.3.\n"
) +
gsi::method_ext ("dxf_polyline_mode", &get_dxf_polyline_mode,
"@brief Specifies whether closed POLYLINE and LWPOLYLINE entities with width 0 are converted to polygons.\n"
"See \\dxf_polyline_mode= for a description of this property.\n"
"\nThis property has been added in version 0.21.3.\n"
),
""
);
// ---------------------------------------------------------------
// gsi Implementation of specific methods
static void set_dxf_polygon_mode (db::SaveLayoutOptions *options, int mode)
{
if (mode < 0 || mode > 4) {
throw tl::Exception (tl::to_string (tr ("Invalid polygon mode")));
}
options->get_options<db::DXFWriterOptions> ().polygon_mode = mode;
}
static int get_dxf_polygon_mode (const db::SaveLayoutOptions *options)
{
return options->get_options<db::DXFWriterOptions> ().polygon_mode;
}
// extend lay::SaveLayoutOptions with the DXF options
static
gsi::ClassExt<db::SaveLayoutOptions> dxf_writer_options (
gsi::method_ext ("dxf_polygon_mode=", &set_dxf_polygon_mode, gsi::arg ("mode"),
"@brief Specifies how to write polygons.\n"
"The mode is 0 (write POLYLINE entities), 1 (write LWPOLYLINE entities), 2 (decompose into SOLID entities), "
"3 (write HATCH entities), or 4 (write LINE entities).\n"
"\nThis property has been added in version 0.21.3. '4', in version 0.25.6.\n"
) +
gsi::method_ext ("dxf_polygon_mode", &get_dxf_polygon_mode,
"@brief Specifies how to write polygons.\n"
"See \\dxf_polygon_mode= for a description of this property.\n"
"\nThis property has been added in version 0.21.3.\n"
),
""
);
}