File size: 5,857 Bytes
a5ffdcd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
/****************************************************************************
**
** This file is part of the LibreCAD project, a 2D CAD program
**
** Copyright (C) 2024 LibreCAD.org
** Copyright (C) 2010 R. van Twisk (librecad@rvt.dds.nl)
** Copyright (C) 2001-2003 RibbonSoft. All rights reserved.
**
**
** This file may be distributed and/or modified under the terms of the
** GNU General Public License version 2 as published by the Free Software
** Foundation and appearing in the file gpl-2.0.txt included in the
** packaging of this file.
**
** 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 Street, Fifth Floor, Boston, MA  02110-1301  USA
**
** This copyright notice MUST APPEAR in all copies of the script!
**
**********************************************************************/

#include<limits>
#include<map>

#include "rs.h"

namespace {

std::map<int, RS2::LineWidth> constructInt2LineWidth() {
    using namespace RS2;
    return  {
        {-4, WidthUnchanged},
        {-3, WidthDefault}, //for w = -3
        {-2, WidthByBlock}, //for w = -2
        {-1, WidthByLayer}, //for w = -1
        // for w < 3, return Width00
        {3, Width00},
        {8, Width01},
        {12, Width02},
        {14, Width03},
        {17, Width04},
        {19, Width05},
        {23, Width06},
        {28, Width07},
        {33, Width08},
        {38, Width09},
        {46, Width10},
        {52, Width11},
        {57, Width12},
        {66, Width13},
        {76, Width14},
        {86, Width15},
        {96, Width16},
        {104, Width17},
        {114, Width18},
        {131, Width19},
        {150, Width20},
        {180, Width21},
        {206, Width22},
        {std::numeric_limits<int>::max(), Width23}
    };
}

std::map<RS2::LineWidth, int> constructReversedMap(const std::map<int, RS2::LineWidth>& originalMap) {
    std::map<RS2::LineWidth, int> reverseMap;

    for(const auto [key, lineWidth]: originalMap)
        reverseMap[lineWidth] = key;

    return reverseMap;
}

const std::map<int, RS2::LineWidth>& getInt2LineWidthMap() {
    static std::map<int, RS2::LineWidth> g_int2LineWidth = constructInt2LineWidth();
    return g_int2LineWidth;
}
}

RS2::LineWidth RS2::intToLineWidth(int w) {
    // for w < 3, return Width00
    // if (w <= 2) return Width00;
    const std::map<int, RS2::LineWidth>& int2LineWidthMap = getInt2LineWidthMap();
    auto it = int2LineWidthMap.find(w);
    return (it != int2LineWidthMap.cend()) ? it->second : Width00;
}

int RS2::lineWidthToInt(LineWidth lw){
    static const std::map<RS2::LineWidth, int> g_lineWidth2int = constructReversedMap(getInt2LineWidthMap());
    auto it = g_lineWidth2int.find(lw);
    return (it != g_lineWidth2int.cend()) ? it->second : -2;
}

RS2::LineWidth RS2::dxfInt2lineWidth(int i){
    if (i<0) {
        if (i==-1)
            return WidthByLayer;
        else if (i==-2)
            return WidthByBlock;
        else if (i==-3)
            return WidthDefault;
    } else if (i<3) {
        return Width00;
    } else if (i<7) {
        return Width01;
    } else if (i<11) {
        return Width02;
    } else if (i<14) {
        return Width03;
    } else if (i<16) {
        return Width04;
    } else if (i<19) {
        return Width05;
    } else if (i<22) {
        return Width06;
    } else if (i<27) {
        return Width07;
    } else if (i<32) {
        return Width08;
    } else if (i<37) {
        return Width09;
    } else if (i<45) {
        return Width10;
    } else if (i<52) {
        return Width11;
    } else if (i<57) {
        return Width12;
    } else if (i<65) {
        return Width13;
    } else if (i<75) {
        return Width14;
    } else if (i<85) {
        return Width15;
    } else if (i<95) {
        return Width16;
    } else if (i<103) {
        return Width17;
    } else if (i<112) {
        return Width18;
    } else if (i<130) {
        return Width19;
    } else if (i<149) {
        return Width20;
    } else if (i<180) {
        return Width21;
    } else if (i<205) {
        return Width22;
    } else {
        return Width23;
    }
    //default by default
    return WidthDefault;
}

int RS2::lineWidth2dxfInt(LineWidth lw){
    switch (lw){
        case WidthByLayer:
            return -1;
        case WidthByBlock:
            return -2;
        case WidthDefault:
            return -3;
        case Width00:
            return 0;
        case Width01:
            return 5;
        case Width02:
            return 9;
        case Width03:
            return 13;
        case Width04:
            return 15;
        case Width05:
            return 18;
        case Width06:
            return 20;
        case Width07:
            return 25;
        case Width08:
            return 30;
        case Width09:
            return 35;
        case Width10:
            return 40;
        case Width11:
            return 50;
        case Width12:
            return 53;
        case Width13:
            return 60;
        case Width14:
            return 70;
        case Width15:
            return 80;
        case Width16:
            return 90;
        case Width17:
            return 100;
        case Width18:
            return 106;
        case Width19:
            return 120;
        case Width20:
            return 140;
        case Width21:
            return 158;
        case Width22:
            return 200;
        case Width23:
            return 211;
        default:
            break;
    }
    return -3;
}