dgnlib.h

来自「支持各种栅格图像和矢量图像读取的库」· C头文件 代码 · 共 885 行 · 第 1/3 页

H
885
字号
/****************************************************************************** * $Id: dgnlib.h 10646 2007-01-18 02:38:10Z warmerdam $ * * Project:  Microstation DGN Access Library * Purpose:  Definitions of public structures and API of DGN Library. * Author:   Frank Warmerdam, warmerdam@pobox.com * ****************************************************************************** * Copyright (c) 2000, Avenza Systems Inc, http://www.avenza.com/ * * 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. ****************************************************************************/#ifndef _DGNLIB_H_INCLUDED#define _DGNLIB_H_INCLUDED#include "cpl_conv.h"CPL_C_START#define CPLE_DGN_ERROR_BASE#define CPLE_ElementTooBig              CPLE_DGN_ERROR_BASE+1/** * \file dgnlib.h * * Definitions of public structures and API of DGN Library. *//** * DGN Point structure. * * Note that the DGNReadElement() function transforms points into "master" * coordinate system space when they are in the file in UOR (units of * resolution) coordinates.  */typedef struct {    double x;   /*!< x (normally eastwards) coordinate. */    double y;   /*!< y (normally northwards) coordinate. */    double z;   /*!< z, up coordinate.  Zero for 2D objects. */} DGNPoint;/** * Element summary information. * * Minimal information kept about each element if an element summary * index is built for a file by DGNGetElementIndex(). */typedef struct {    unsigned char       level;   /*!< Element Level: 0-63 */    unsigned char       type;    /*!< Element type (DGNT_*) */    unsigned char       stype;   /*!< Structure type (DGNST_*) */    unsigned char       flags;   /*!< Other flags */    long                offset;  /*!< Offset within file (private) */} DGNElementInfo;  /** * Core element structure.  * * Core information kept about each element that can be read from a DGN * file.  This structure is the first component of each specific element  * structure (like DGNElemMultiPoint).  Normally the DGNElemCore.stype * field would be used to decide what specific structure type to case the * DGNElemCore pointer to.  * */typedef struct {    int         offset;    int         size;    int         element_id;     /*!< Element number (zero based) */    int         stype;          /*!< Structure type: (DGNST_*) */    int         level;          /*!< Element Level: 0-63 */    int         type;           /*!< Element type (DGNT_) */    int         complex;        /*!< Is element complex? */    int         deleted;        /*!< Is element deleted? */    int         graphic_group;  /*!< Graphic group number */    int         properties;     /*!< Properties: ORing of DGNPF_ flags */    int         color;          /*!< Color index (0-255) */    int         weight;         /*!< Line Weight (0-31) */    int         style;          /*!< Line Style: One of DGNS_* values */    int         attr_bytes;     /*!< Bytes of attribute data, usually zero. */    unsigned char *attr_data;   /*!< Raw attribute data */    int         raw_bytes;      /*!< Bytes of raw data, usually zero. */    unsigned char *raw_data;    /*!< All raw element data including header. */} DGNElemCore;/**  * Multipoint element  * * The core.stype code is DGNST_MULTIPOINT. * * Used for: DGNT_LINE(3), DGNT_LINE_STRING(4), DGNT_SHAPE(6), DGNT_CURVE(11), * DGNT_BSPLINE_POLE(21) */typedef struct {  DGNElemCore   core;  int           num_vertices;  /*!< Number of vertices in "vertices" */  DGNPoint      vertices[2];   /*!< Array of two or more vertices */} DGNElemMultiPoint;    /**  * Ellipse element  * * The core.stype code is DGNST_ARC. * * Used for: DGNT_ELLIPSE(15), DGNT_ARC(16) */typedef struct {  DGNElemCore   core;  DGNPoint      origin;         /*!< Origin of ellipse */  double        primary_axis;   /*!< Primary axis length */  double        secondary_axis; /*!< Secondary axis length */  double        rotation;       /*!< Counterclockwise rotation in degrees */  int           quat[4];  double        startang;       /*!< Start angle (degrees counterclockwise of primary axis) */  double        sweepang;       /*!< Sweep angle (degrees) */} DGNElemArc;/**  * Text element  * * The core.stype code is DGNST_TEXT. * * NOTE: Currently we are not capturing the "editable fields" information. * * Used for: DGNT_TEXT(17). */typedef struct {    DGNElemCore core;        int         font_id;       /*!< Microstation font id, no list available*/    int         justification; /*!< Justification, see DGNJ_* */    double      length_mult;   /*!< Char width in master (if square) */    double      height_mult;   /*!< Char height in master units */    double      rotation;      /*!< Counterclockwise rotation in degrees */    DGNPoint    origin;        /*!< Bottom left corner of text. */    char        string[1];     /*!< Actual text (length varies, \0 terminated*/} DGNElemText;/**  * Complex header element  * * The core.stype code is DGNST_COMPLEX_HEADER. * * Used for: DGNT_COMPLEX_CHAIN_HEADER(12), DGNT_COMPLEX_SHAPE_HEADER(14), *   DGNT_3DSURFACE_HEADER(18) and DGNT_3DSOLID_HEADER(19). * * Compatible with DGNT_TEXT_NODE (7), see DGNAddRawAttrLink() */typedef struct {    DGNElemCore core;        int         totlength;     /*!< Total length of surface in words,                                    excluding the first 19 words                                    (header + totlength field) */    int         numelems;      /*!< # of elements in surface */    int         surftype;      /*!< surface/solid type                                     (only used for 3D surface/solid).                                     One of  DGNSUT_* or DGNSOT_*. */    int         boundelms;     /*!< # of elements in each boundary                                    (only used for 3D surface/solid). */ } DGNElemComplexHeader;/**  * Color table. * * The core.stype code is DGNST_COLORTABLE. * * Returned for DGNT_GROUP_DATA(5) elements, with a level number of  * DGN_GDL_COLOR_TABLE(1). */typedef struct {  DGNElemCore   core;  int           screen_flag;  GByte         color_info[256][3]; /*!< Color table, 256 colors by red (0), green(1) and blue(2) component. */} DGNElemColorTable;typedef struct {    int           flags;    unsigned char levels[8];    DGNPoint      origin;    DGNPoint      delta;    double        transmatrx[9];    double        conversion;    unsigned long activez;} DGNViewInfo;/**  * Terminal Control Block (header). * * The core.stype code is DGNST_TCB. * * Returned for DGNT_TCB(9). * * The first TCB in the file is used to determine the dimension (2D vs. 3D), * and transformation from UOR (units of resolution) to subunits, and subunits * to master units.  This is handled transparently within DGNReadElement(), so * it is not normally necessary to handle this element type at the application * level, though it can be useful to get the sub_units, and master_units names. */typedef struct {    DGNElemCore core;    int         dimension;         /*!< Dimension (2 or 3) */    double      origin_x;       /*!< X origin of UOR space in master units(?)*/    double      origin_y;       /*!< Y origin of UOR space in master units(?)*/    double      origin_z;       /*!< Z origin of UOR space in master units(?)*/        long        uor_per_subunit;   /*!< UOR per subunit. */    char        sub_units[3];      /*!< User name for subunits (2 chars)*/    long        subunits_per_master; /*!< Subunits per master unit. */    char        master_units[3];   /*!< User name for master units (2 chars)*/    DGNViewInfo views[8];} DGNElemTCB;/**  * Cell Header. * * The core.stype code is DGNST_CELL_HEADER. * * Returned for DGNT_CELL_HEADER(2). */typedef struct {    DGNElemCore core;    int         totlength;         /*!< Total length of cell in words,                                        excluding the first 19 words                                        (header + totlength field) */    char        name[7];           /*!< Cell name */ unsigned short cclass;            /*!< Class bitmap */ unsigned short levels[4];         /*!< Levels used in cell */        DGNPoint    rnglow;            /*!< X/Y/Z minimums for cell */    DGNPoint    rnghigh;           /*!< X/Y/Z maximums for cell */        double      trans[9];          /*!< 2D/3D Transformation Matrix */    DGNPoint    origin;            /*!< Cell Origin */    double      xscale;    double      yscale;    double      rotation;} DGNElemCellHeader;/**  * Cell Library. * * The core.stype code is DGNST_CELL_LIBRARY. * * Returned for DGNT_CELL_LIBRARY(1). */typedef struct {    DGNElemCore core;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?