forked from geodmms/xdgnjobs

?? ?
2008-05-12 61fb909ea59513fbe1cff038f2af467030b3ea14
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
package com.ximple.io.dgn7;
 
//~--- non-JDK imports --------------------------------------------------------
 
import com.vividsolutions.jts.geom.Coordinate;
import com.vividsolutions.jts.geom.Envelope;
import com.vividsolutions.jts.geom.Geometry;
import com.vividsolutions.jts.geom.GeometryFactory;
 
/**
 * TextElement
 *
 * @author Ulysses
 * @version 0.1
 * @since 2006/5/18 上午 11:45:29
 */
public class TextElement extends Element implements GeometryConverter
{
    public static final int ED_CENTERJUSTIFICATION = 0;
 
//  Enter data field center justification
    public static final int ED_LEFTJUSTIFICATION = 0;
 
//  Enter data field left justification
    public static final int ED_RIGHTJUSTIFICATION = 0;
 
//  Enter data field right justification
    public static final int TXTJUST_CB = 0;
 
//  Center/bottom text justification.
    public static final int TXTJUST_CC = 0;
 
//  Center/center text justification.
    public static final int TXTJUST_CT = 0;
 
//  Center/top text justification.
    public static final int TXTJUST_LB = 0;
 
//  Left/bottom text justification.
    public static final int TXTJUST_LC = 0;
 
//  Left/center text justification.
    public static final int TXTJUST_LT = 0;
 
//  Left/top text justification.
    public static final int TXTJUST_RB = 0;
 
//  Right/bottom text justification.
    public static final int TXTJUST_RC = 0;
 
//  Right/center text justification.
    public static final int TXTJUST_RT = 0;
 
    public TextElement(short[] raw)
    {
        super(raw);
    }
 
    public Coordinate getOrigin()
    {
        int x = (int) (raw[25] << 16 & 0xffff0000);
 
        x += raw[26] & 0x0000ffff;
 
        double dx = Utility.ConverUnitToCoord(x);
        int    y  = (int) (raw[27] << 16 & 0xffff0000);
 
        y += raw[28] & 0x0000ffff;
 
        double dy = Utility.ConverUnitToCoord(y);
 
        return new Coordinate(dx, dy);
    }
 
    public Coordinate getUserOrigin()
    {
        Coordinate origin = getOrigin();
        double     x      = origin.x;
        double     weight = getUserSetWeight();
        double     height = getUserSetHeight();
        double     angle  = Utility.ConverRotationToRadian(getRotationAngle());
 
        x += weight * Math.cos(angle) - height * Math.sin(angle);
 
        double y = origin.y;
 
        y += weight * Math.cos(angle) - height * Math.sin(angle);
 
        return new Coordinate(x, y);
    }
 
    private double getUserSetWeight()
    {
        int      just   = getJustification();
        Envelope range  = getRange();
        double   weight = (range.getWidth());
 
        switch (just)
        {
        case 0 :
        case 1 :
        case 2 :
            weight = 0;
 
            break;
 
        case 6 :
        case 7 :
        case 8 :
            weight = weight / 2;
 
            break;
 
        case 12 :
        case 13 :
        case 14 :
            break;
        }
 
        return weight;
    }
 
    private double getUserSetHeight()
    {
        int    just   = getJustification();
        double height = getTextHeight();
 
        switch (just)
        {
        case 2 :
        case 8 :
        case 14 :    // bottom
            height = 0;
 
            break;
 
        case 1 :
        case 7 :
        case 13 :    // center
            height = height / 2;
 
            break;
 
        case 0 :
        case 6 :
        case 12 :    // height
            break;
        }
 
        return height;
    }
 
    public int getFontIndex()
    {
        return (int) raw[18] & 0x00000000ff;
    }
 
    public boolean hasSlant()
    {
        return true;
    }
 
    public boolean hasUnderline()
    {
        return true;
    }
 
    public boolean isFixedWidthSpacing()
    {
        return true;
    }
 
    public boolean isPlanar()
    {
        return true;
    }
 
    public boolean isVertical()
    {
        return true;
    }
 
    public double getTextHeight()
    {
        int height = (int) ((raw[21] << 16) & 0xffff0000);
 
        height += raw[22] & 0x0000ffff;
 
        return Utility.ConverIntToDouble(height);
    }
 
    public double getTextWidth()
    {
        int length = (int) (raw[19] << 16 & 0xffff0000);
 
        length += raw[20] & 0x0000ffff;
 
        return Utility.ConverIntToDouble(length);
    }
 
    public int getJustification()
    {
        return (int) ((raw[18] >>> 8) & 0x00000000ff);
    }
 
    public double getRotationAngle()
    {
        int totation = (int) ((raw[23] << 16) & 0xffff0000);
 
        totation += raw[24] & 0x0000ffff;
 
        return Utility.ConverIntToRotation(totation);
    }
 
    public boolean isChinese()
    {
        int isChinese = raw[30] & 0x0000ffff;
 
        if (isChinese == 0xfdff)
        {
            return true;
        } else
        {
            return false;
        }
    }
 
    public int getTextLength()
    {
        int num = raw[29];
 
        if (isChinese())
        {
            num = (num / 2) - 1;
        }
 
        return num;
    }
 
    public String getText()
    {
        StringBuffer val = new StringBuffer();
        char[]       temp;
        int          num = getTextLength();
 
        if (!isChinese())
        {
            temp = new char[num];
 
            for (int i = 0; i < temp.length; i++)
            {
                if ((i % 2) == 0)
                {
                    temp[i] = (char) (raw[30 + (int) (i / 2)] & (short) 0x00ff);
                } else
                {
                    temp[i] = (char) ((raw[30 + (int) (i / 2)] >> 8) & (short) 0x00ff);
                }
 
                val.append(temp[i]);
            }
        }
 
        return val.toString();
    }
 
    public Geometry toGeometry(GeometryFactory factory)
    {
        return factory.createPoint(getUserOrigin());
    }
 
    public static class ElementHandler extends Element.ElementHandler
    {
        private static ElementHandler instance = null;
 
        public ElementHandler()
        {
            super(ElementType.TEXT);
        }
 
        public static IElementHandler getInstance()
        {
            if (instance == null)
            {
                instance = new ElementHandler();
            }
 
            return instance;
        }
 
        protected Element createElement(short[] raw)
        {
            return new TextElement(raw);
        }
    }
}