Dennis Kao
2013-06-05 fc9880cd77a09dcfdea2791dee418f54f5721cf3
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
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
package com.ximple.io.dgn7;
 
//~--- JDK imports ------------------------------------------------------------
 
import java.util.ArrayList;
import java.util.Collection;
import java.util.Iterator;
import java.util.List;
import java.util.ListIterator;
 
import org.apache.log4j.Logger;
 
import com.vividsolutions.jts.geom.Coordinate;
import com.vividsolutions.jts.geom.CoordinateList;
import com.vividsolutions.jts.geom.Geometry;
import com.vividsolutions.jts.geom.GeometryFactory;
 
import com.ximple.util.DgnUtility;
 
/**
 * TextNodeElement
 *
 * @author Ulysses
 * @version 0.1
 * @since 2006/5/18 �U�� 04:02:58
 */
public class TextNodeElement extends Element implements ComplexElement, GeometryConverter {
    private static final Logger logger = Logger.getLogger(TextElement.class);
 
    private ArrayList<Element> list = new ArrayList<Element>();
 
    TextNodeElement(byte[] raw) {
        super(raw);
    }
 
    public int size() {
        return list.size();
    }
 
    public boolean isEmpty() {
        return list.isEmpty();
    }
 
    public boolean contains(Object o) {
        return list.contains(o);
    }
 
    public Iterator<Element> iterator() {
        return list.iterator();
    }
 
    public Object[] toArray() {
        return list.toArray();
    }
 
    public <T> T[] toArray(T[] ts) {
        return list.toArray(ts);
    }
 
    public boolean add(Element element) {
        return list.add(element);
    }
 
    public boolean remove(Object o) {
        return list.remove(o);
    }
 
    public boolean containsAll(Collection<?> objects) {
        return list.containsAll(objects);
    }
 
    public boolean addAll(Collection<? extends Element> elements) {
        return list.addAll(elements);
    }
 
    public boolean addAll(int i, Collection<? extends Element> elements) {
        return list.addAll(i, elements);
    }
 
    public boolean removeAll(Collection<?> objects) {
        return list.removeAll(objects);
    }
 
    public boolean retainAll(Collection<?> objects) {
        return list.retainAll(objects);
    }
 
    public void clear() {
        list.clear();
    }
 
    public Element get(int index) {
        return list.get(index);
    }
 
    public Element set(int index, Element element) {
        return list.set(index, element);
    }
 
    public void add(int index, Element element) {
        list.add(index, element);
    }
 
    public Element remove(int index) {
        return list.remove(index);
    }
 
    public int indexOf(Object o) {
        return list.indexOf(o);
    }
 
    public int lastIndexOf(Object o) {
        return list.lastIndexOf(o);
    }
 
    public ListIterator<Element> listIterator() {
        return list.listIterator();
    }
 
    public ListIterator<Element> listIterator(int index) {
        return list.listIterator(index);
    }
 
    public List<Element> subList(int fromIndex, int toIndex) {
        return list.subList(fromIndex, toIndex);
    }
 
    public Element[] toArray(Element[] a) {
        return list.toArray(a);
    }
 
    public String[] getTextArray() {
        ArrayList<String> list = new ArrayList<String>();
 
        for (ListIterator it = listIterator(); it.hasNext();) {
            Element element = (Element) it.next();
 
            if (element instanceof TextElement) {
                list.add(((TextElement) element).getText());
            }
        }
 
        return list.toArray(new String[list.size()]);
    }
 
    public Geometry toGeometry(GeometryFactory factory) {
        /*
         * CoordinateList coords = new CoordinateList();
         * for (ListIterator it = listIterator(); it.hasNext(); )
         * {
         *   Element element = (Element) it.next();
         *   if (element instanceof TextElement)
         *   {
         *       coords.add(((TextElement) element).getUserOrigin());
         *   }
         * }
         */
        return factory.createPoint(getOrigin());
 
        // return factory.createMultiPoint(coords.toCoordinateArray());
    }
 
    public Geometry toAnchorGeometry(GeometryFactory factory) {
        CoordinateList coords = new CoordinateList();
        for (int i = 0; i < size(); i++) {
            TextElement txtElm = (TextElement) get(i);
            coords.add(txtElm.toAnchorCoordinates(), false);
        }
        return factory.createMultiPoint(coords.toCoordinateArray());
    }
 
    public int getTotalWords() {
        return (raw[18] & 0x0000ffff);
    }
 
    public void setTotalWords(int value) {
        raw[18] = (short) (value & 0x0000ffff);
    }
 
    public int getNumString() {
        return (raw[19] & 0x0000ffff);
    }
 
    public void setNumString(int value) {
        raw[19] = (short) (value & 0x0000ffff);
    }
 
    public int getNodeNumber() {
        return (raw[20] & 0x0000ffff);
    }
 
    public void setNodeNumber(int value) {
        raw[20] = (short) (value & 0x0000ffff);
    }
 
    public int getMaxLength() {
        return (raw[21] & 0x00ff);
    }
 
    public void setMaxLength(int value) {
        raw[21] = (short) ((value & 0x00ff) | (raw[21] & 0xff00));
    }
 
    public int getMaxUsed() {
        return ((raw[21] >> 8) & 0x00ff);
    }
 
    public void setMaxUsed(int value) {
        raw[21] = (short) (((value << 8) & 0xff00) | (raw[21] & 0x00ff));
    }
 
    public int getJustification() {
        return ((raw[22] >> 8) & 0x00ff);
    }
 
    public void setJustification(int value) {
        raw[22] = (short) (((value << 8) & 0xff00) | (raw[22] & 0x00ff));
    }
 
    public int getFontIndex() {
        return (raw[22] & 0x00ff);
    }
 
    public void setFontIndex(int value) {
        raw[22] = (short) ((value & 0x00ff) | (raw[22] & 0xff00));
    }
 
    public double getLineSpacing() {
        int lineSpace;
        lineSpace = ((raw[23] & 0x0000ffff) << 16) | (raw[24] & 0x0000ffff);
 
        return lineSpace;
    }
 
    public void setLineSpacing(double value) {
        int temp = (int) (value * 1000.0);
        raw[23] = (short) ((temp >> 16) & 0x0000ffff);
        raw[24] = (short) (temp & 0x0000ffff);
    }
 
    public double getTextNodeLength() {
        int lengthMult;
 
        lengthMult = ((raw[25] << 16) & 0xffff0000);
        lengthMult += (raw[26] & 0x0000ffff);
 
        return DgnUtility.converIntToDouble(lengthMult);
    }
 
    public void setTextNodeLength(double value) {
        int temp = DgnUtility.converDoubleToInt(value);
        raw[25] = (short) ((temp >> 16) & 0x0000ffff);
        raw[26] = (short) (temp & 0x0000ffff);
    }
 
    public double getTextNodeHeight() {
        int heightMult;
 
        heightMult = ((raw[27] << 16) & 0xffff0000);
        heightMult += (raw[28] & 0x0000ffff);
 
        return DgnUtility.converIntToDouble(heightMult);
    }
 
    public void setTextNodeHeight(double value) {
        int temp = DgnUtility.converDoubleToInt(value);
        raw[27] = (short) ((temp >> 16) & 0x0000ffff);
        raw[28] = (short) (temp & 0x0000ffff);
    }
 
    public double getRotationAngle() {
        int rotation = (raw[29] << 16 & 0xffff0000);
        rotation += raw[30];
 
        return DgnUtility.converIntToRotation(rotation);
    }
 
    public void setRotationAngle(double value) {
        int temp = DgnUtility.converRotatioToInt(value);
        raw[29] = (short) (temp >> 16 & 0x0000ffff);
        raw[30] = (short) (temp & 0x0000ffff);
    }
 
    public Coordinate getOrigin() {
        int x = ((raw[31] << 16) & 0xffff0000) | (raw[32] & 0x0000ffff);
        double dx = DgnUtility.converUnitToCoord(x);
        // return DgnUtility.convertFromDGN(x);
 
        int y = ((raw[33] << 16) & 0xffff0000) | (raw[34] & 0x0000ffff);
        double dy = DgnUtility.converUnitToCoord(y);
 
        return new Coordinate(dx, dy);
    }
 
    public void setOrigin(Coordinate value) {
        int x = DgnUtility.converCoordToUnit(value.x);
        raw[31] = (short) (x >> 16 & 0x0000ffff);
        raw[32] = (short) (x & 0x0000ffff);
 
        int y = DgnUtility.converCoordToUnit(value.y);
        raw[33] = (short) (y >> 16 & 0x0000ffff);
        raw[34] = (short) (y & 0x0000ffff);
    }
 
    public Object clone() throws CloneNotSupportedException {
        int pos = this.rawBuffer.position();
        this.rawBuffer.position(0);
        byte[] rawBytes = this.rawBuffer.array();
        byte[] otherRaw = new byte[rawBytes.length];
        System.arraycopy(rawBytes, 0, otherRaw, 0, rawBytes.length);
        this.rawBuffer.position(pos);
 
        TextNodeElement other = new TextNodeElement(otherRaw);
        for (Object o : this) {
            TextElement textElm = (TextElement) o;
            other.add((Element) textElm.clone());
        }
 
        return other;
    }
 
    public static class ElementHandler extends Element.ElementHandler {
        private static ElementHandler instance = null;
 
        public ElementHandler() {
            super(ElementType.TEXTNODE);
        }
 
        public static IElementHandler getInstance() {
            if (instance == null) {
                instance = new ElementHandler();
            }
 
            return instance;
        }
 
        protected Element createElement(byte[] raw) {
            return new TextNodeElement(raw);
        }
    }
}