Revision 450

View differences:

tags/org.gvsig.dwg-2.0.101/org.gvsig.dwg.app/org.gvsig.dwg.app.mainplugin/buildNumber.properties
1
#Sat Oct 05 18:25:49 CEST 2019
2
buildNumber=2169
tags/org.gvsig.dwg-2.0.101/org.gvsig.dwg.app/org.gvsig.dwg.app.mainplugin/src/main/resources-plugin/config.xml
1
<?xml version="1.0" encoding="ISO-8859-1"?>
2
<plugin-config>
3
	<libraries library-dir="lib">
4
	</libraries>
5
	<depends plugin-name="org.gvsig.app.mainplugin"/>
6
		<resourceBundle name="text"/>
7
	<extensions>
8
		<extension class-name="org.gvsig.dwg.DWGRegisterExtension"
9
			description="DWG Driver"
10
			active="true">
11
		</extension>
12

  
13
	</extensions>
14
</plugin-config>
tags/org.gvsig.dwg-2.0.101/org.gvsig.dwg.app/org.gvsig.dwg.app.mainplugin/src/main/assembly/gvsig-plugin-package.xml
1
<assembly>
2
  <id>gvsig-plugin-package</id>
3
  <formats>
4
    <format>zip</format>
5
  </formats>
6
  <baseDirectory>${project.artifactId}</baseDirectory>
7
  <includeBaseDirectory>true</includeBaseDirectory>
8
  <files>
9
    <file>
10
      <source>target/${project.artifactId}-${project.version}.jar</source>
11
      <outputDirectory>lib</outputDirectory>
12
    </file>
13
    <file>
14
      <source>target/package.info</source>
15
    </file>
16
  </files>
17

  
18
  <fileSets>
19
    <fileSet>
20
      <directory>src/main/resources-plugin</directory>
21
      <outputDirectory>.</outputDirectory>
22
    </fileSet>
23
  </fileSets>
24

  
25
  <dependencySets>
26
    <dependencySet>
27
      <useProjectArtifact>false</useProjectArtifact>
28
      <useTransitiveDependencies>false</useTransitiveDependencies>
29
      <outputDirectory>lib</outputDirectory>
30
      <includes>
31
        <include>org.gvsig:org.gvsig.dwg.provider.legend</include>
32
        <include>org.gvsig:org.gvsig.dwg.provider</include>
33
        <include>org.gvsig:org.gvsig.dwg.lib</include>
34
      </includes>
35
    </dependencySet>
36
  </dependencySets>
37

  
38
</assembly>
tags/org.gvsig.dwg-2.0.101/org.gvsig.dwg.app/org.gvsig.dwg.app.mainplugin/src/main/java/org/gvsig/dwg/DWGRegisterExtension.java
1
/* gvSIG. Geographic Information System of the Valencian Government
2
 *
3
 * Copyright (C) 2007-2008 Infrastructures and Transports Department
4
 * of the Valencian Government (CIT)
5
 *
6
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8
 * as published by the Free Software Foundation; either version 2
9
 * of the License, or (at your option) any later version.
10
 *
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
 * MA  02110-1301, USA.
20
 *
21
 */
22
package org.gvsig.dwg;
23

  
24
import org.gvsig.andami.IconThemeHelper;
25
import org.gvsig.andami.plugins.Extension;
26
import org.gvsig.dwg.fmap.dal.store.dwg.DWGStoreProvider;
27
import org.gvsig.fmap.mapcontext.MapContextLocator;
28

  
29
/**
30
 * Dummy DWG extension, as all the registration happens in the
31
 * {@link DWGLibrary}.
32
 *
33
 * @author gvSIG Team
34
 */
35
public class DWGRegisterExtension extends Extension {
36

  
37
	public void execute(String actionCommand) {
38
		// Nothing to do
39
	}
40

  
41
	public void initialize() {
42
		IconThemeHelper.registerIcon("layer", "layer-icon-dwg", this);
43
	}
44

  
45
	public void postInitialize() {
46
		MapContextLocator.getMapContextManager().registerIconLayer(DWGStoreProvider.NAME, "layer-icon-dwg");
47
	}
48

  
49
	public boolean isEnabled() {
50
		// Nothing to do
51
		return false;
52
	}
53

  
54
	public boolean isVisible() {
55
		// Nothing to do
56
		return false;
57
	}
58

  
59
}
tags/org.gvsig.dwg-2.0.101/org.gvsig.dwg.app/org.gvsig.dwg.app.mainplugin/src/test/java/org/gvsig/dwg/fmap/dal/store/dwg/TestDWG2004.java
1
/* gvSIG. Geographic Information System of the Valencian Government
2
*
3
* Copyright (C) 2007-2008 Infrastructures and Transports Department
4
* of the Valencian Government (CIT)
5
*
6
* This program is free software; you can redistribute it and/or
7
* modify it under the terms of the GNU General Public License
8
* as published by the Free Software Foundation; either version 2
9
* of the License, or (at your option) any later version.
10
*
11
* This program is distributed in the hope that it will be useful,
12
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
* GNU General Public License for more details.
15
*
16
* You should have received a copy of the GNU General Public License
17
* along with this program; if not, write to the Free Software
18
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
* MA  02110-1301, USA.
20
*
21
*/
22

  
23
/*
24
* AUTHORS (In addition to CIT):
25
* 2009 IVER T.I   {{Task}}
26
*/
27

  
28
package org.gvsig.dwg.fmap.dal.store.dwg;
29

  
30
import java.io.File;
31

  
32
public class TestDWG2004 extends TestDWG {
33
	public static File file_prueba = new File(TestDWG.class.getResource(
34
			"data/V2004.dwg").getFile());
35
}
tags/org.gvsig.dwg-2.0.101/org.gvsig.dwg.app/org.gvsig.dwg.app.mainplugin/src/test/java/org/gvsig/dwg/fmap/dal/store/dwg/TestDWG.java
1
/* gvSIG. Geographic Information System of the Valencian Government
2
 *
3
 * Copyright (C) 2007-2008 Infrastructures and Transports Department
4
 * of the Valencian Government (CIT)
5
 *
6
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8
 * as published by the Free Software Foundation; either version 2
9
 * of the License, or (at your option) any later version.
10
 *
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
 * MA  02110-1301, USA.
20
 *
21
 */
22

  
23
/*
24
* AUTHORS (In addition to CIT):
25
* 2008 IVER T.I. S.A.   {{Task}}
26
*/
27

  
28
package org.gvsig.dwg.fmap.dal.store.dwg;
29

  
30
import java.io.File;
31

  
32
import org.gvsig.fmap.dal.DataStoreParameters;
33
import org.gvsig.fmap.dal.exception.DataException;
34
import org.gvsig.fmap.dal.feature.BaseTestFeatureStore;
35
import org.gvsig.fmap.dal.feature.FeatureStore;
36

  
37
public class TestDWG extends BaseTestFeatureStore {
38

  
39

  
40
	protected boolean testDXFInitialized = false;
41

  
42
	public static File file_prueba = new File(TestDWG.class.getResource(
43
			"data/V2000.dwg").getFile());
44

  
45
	/*
46
	 * (non-Javadoc)
47
	 *
48
	 * @see
49
	 * org.gvsig.fmap.dal.feature.BaseTestFeatureStore#getDefaultDataStoreParameters
50
	 * ()
51
	 */
52
	public DataStoreParameters getDefaultDataStoreParameters()
53
			throws DataException {
54
		DWGStoreParameters dwgParameters = null;
55

  
56
		dwgParameters = (DWGStoreParameters) dataManager
57
				.createStoreParameters(DWGStoreProvider.NAME);
58

  
59
		dwgParameters.setFile(file_prueba);
60
		dwgParameters.setCRS("EPSG:23030");
61
		return dwgParameters;
62
	}
63

  
64
	/*
65
	 * (non-Javadoc)
66
	 *
67
	 * @see org.gvsig.fmap.dal.feature.BaseTestFeatureStore#hasExplorer()
68
	 */
69
	public boolean hasExplorer() {
70
		// TODO Auto-generated method stub
71
		return false;
72
	}
73

  
74
	public boolean usesResources() {
75
		return true;
76
	}
77

  
78

  
79
	public void testLegendAndLabeling() throws Exception {
80
		DataStoreParameters params = getDefaultDataStoreParameters();
81
		FeatureStore store = (FeatureStore) dataManager.openStore(params
82
				.getDataStoreName(), params);
83

  
84
		assertNotNull(store.invokeDynMethod("getLegend", null));
85
		assertNotNull(store.invokeDynMethod("getLabeling", null));
86
		store.dispose();
87
	}
88
}
tags/org.gvsig.dwg-2.0.101/org.gvsig.dwg.app/org.gvsig.dwg.app.mainplugin/pom.xml
1
<?xml version="1.0" encoding="UTF-8"?>
2

  
3
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4

  
5
  <modelVersion>4.0.0</modelVersion>
6
  <artifactId>org.gvsig.dwg.app.mainplugin</artifactId>
7
  <packaging>jar</packaging>
8
  <name>${project.artifactId}</name>
9
  <description>
10
DWG file format support (read-only)
11

  
12
Supported versions:
13
- v12
14
- v14
15
- v15
16
- v2004
17

  
18
  </description>
19
  <parent>
20
      <groupId>org.gvsig</groupId>
21
      <artifactId>org.gvsig.dwg.app</artifactId>
22
      <version>2.0.101</version>
23
  </parent>
24

  
25
  <dependencies>
26
    <dependency>
27
        <groupId>org.gvsig</groupId>
28
        <artifactId>org.gvsig.tools.lib</artifactId>
29
        <scope>compile</scope>
30
    </dependency>
31
    <dependency>
32
        <groupId>org.gvsig</groupId>
33
        <artifactId>org.gvsig.andami</artifactId>
34
        <scope>compile</scope>
35
    </dependency>
36
    <dependency>
37
        <groupId>org.gvsig</groupId>
38
        <artifactId>org.gvsig.dwg.provider</artifactId>
39
        <scope>compile</scope>
40
    </dependency>
41
    <dependency>
42
        <groupId>org.gvsig</groupId>
43
        <artifactId>org.gvsig.dwg.provider.legend</artifactId>
44
        <scope>compile</scope>
45
    </dependency>
46

  
47
    <dependency>
48
        <groupId>org.gvsig</groupId>
49
        <artifactId>org.gvsig.dwg.lib</artifactId>
50
        <scope>runtime</scope>
51
    </dependency>
52

  
53
    <!-- Tests -->
54

  
55
    <dependency>
56
      <groupId>org.gvsig</groupId>
57
      <artifactId>org.gvsig.fmap.dal.impl</artifactId>
58
      <type>test-jar</type>
59
      <scope>test</scope>
60
    </dependency>
61

  
62
    <dependency>
63
      <groupId>org.gvsig</groupId>
64
      <artifactId>org.gvsig.fmap.dal.impl</artifactId>
65
      <type>jar</type>
66
      <scope>test</scope>
67
    </dependency>
68

  
69
  </dependencies>
70

  
71
    <properties>
72
        <!-- Package info property values -->
73
        <!-- Default values in org.gvsig.desktop -->
74
        <gvsig.package.info.name>Formats: dwg file format support (read-only)</gvsig.package.info.name>
75
        <gvsig.package.info.state>testing</gvsig.package.info.state>
76
        <gvsig.package.info.official>true</gvsig.package.info.official>
77
        <gvsig.package.info.dependencies>required: org.gvsig.app.mainplugin -ge 2.1.0-A</gvsig.package.info.dependencies>
78
        <gvsig.package.info.categories>Formats,Vector</gvsig.package.info.categories>
79
        <gvsig.package.info.poolURL>https://devel.gvsig.org/download/projects/gvsig-dwg/pool</gvsig.package.info.poolURL>
80
    </properties>
81

  
82
  <build>
83
    <plugins>
84

  
85
      <plugin>
86
        <!-- Skip compilation tests -->
87
        <groupId>org.apache.maven.plugins</groupId>
88
        <artifactId>maven-compiler-plugin</artifactId>
89
        <executions>
90
          <execution>
91
            <id>default-testCompile</id>
92
            <phase>process-test-sources</phase>
93
            <goals>
94
              <goal>testCompile</goal>
95
            </goals>
96
            <configuration>
97
              <skip>true</skip>
98
            </configuration>
99
          </execution>
100
        </executions>
101
      </plugin>
102

  
103
      <plugin>
104
        <!-- Skip test execution -->
105
        <groupId>org.apache.maven.plugins</groupId>
106
        <artifactId>maven-surefire-plugin</artifactId>
107
        <configuration>
108
          <skipTests>true</skipTests>
109
        </configuration>
110
      </plugin>
111

  
112
    </plugins>
113
  </build>
114

  
115
</project>
116

  
0 117

  
tags/org.gvsig.dwg-2.0.101/org.gvsig.dwg.app/pom.xml
1
<?xml version="1.0" encoding="UTF-8"?>
2

  
3
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4

  
5
  <modelVersion>4.0.0</modelVersion>
6
  <artifactId>org.gvsig.dwg.app</artifactId>
7
  <packaging>pom</packaging>
8
  <name>${project.artifactId}</name>
9
  <parent>
10
      <groupId>org.gvsig</groupId>
11
      <artifactId>org.gvsig.dwg</artifactId>
12
      <version>2.0.101</version>
13
  </parent>
14

  
15
  <modules>
16
    <module>org.gvsig.dwg.app.mainplugin</module>
17
  </modules>
18

  
19

  
20
</project>
tags/org.gvsig.dwg-2.0.101/org.gvsig.dwg.lib/pom.xml
1
<?xml version="1.0" encoding="UTF-8"?>
2

  
3
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4

  
5
  <modelVersion>4.0.0</modelVersion>
6
  <artifactId>org.gvsig.dwg.lib</artifactId>
7
  <packaging>jar</packaging>
8
  <name>${project.artifactId}</name>
9
  <description>
10
Library for read-only access DWG files
11

  
12
Supported versions:
13
- v12
14
- v14
15
- v15
16
- v2004
17

  
18
  </description>
19
  <parent>
20
      <groupId>org.gvsig</groupId>
21
      <artifactId>org.gvsig.dwg</artifactId>
22
      <version>2.0.101</version>
23
  </parent>
24

  
25
  <dependencies>
26
    <dependency>
27
      <groupId>org.gvsig</groupId>
28
      <artifactId>org.gvsig.tools.lib</artifactId>
29
      <scope>compile</scope>
30
    </dependency>
31
    <dependency>
32
      <groupId>org.gvsig</groupId>
33
      <artifactId>org.gvsig.projection.api</artifactId>
34
      <scope>compile</scope>
35
    </dependency>
36
    
37
    <dependency>
38
        <groupId>org.gvsig</groupId>
39
        <artifactId>org.gvsig.fmap.geometry.api</artifactId>
40
        <scope>compile</scope>
41
    </dependency>
42
    
43
  </dependencies>
44

  
45
</project>
tags/org.gvsig.dwg-2.0.101/org.gvsig.dwg.lib/src/test/java/org/gvsig/dwg/lib/DwgTestSuite.java
1
/*
2
 * Created on 08-feb-2007
3
 *
4
 * gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
5
 *
6
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
7
 *
8
 * This program is free software; you can redistribute it and/or
9
 * modify it under the terms of the GNU General Public License
10
 * as published by the Free Software Foundation; either version 2
11
 * of the License, or (at your option) any later version.
12
 *
13
 * This program is distributed in the hope that it will be useful,
14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
 * GNU General Public License for more details.
17
 *
18
 * You should have received a copy of the GNU General Public License
19
 * along with this program; if not, write to the Free Software
20
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
21
 *
22
 * For more information, contact:
23
 *
24
 *  Generalitat Valenciana
25
 *   Conselleria d'Infraestructures i Transport
26
 *   Av. Blasco Ib??ez, 50
27
 *   46010 VALENCIA
28
 *   SPAIN
29
 *
30
 *      +34 963862235
31
 *   gvsig@gva.es
32
 *      www.gvsig.gva.es
33
 *
34
 *    or
35
 *
36
 *   IVER T.I. S.A
37
 *   Salamanca 50
38
 *   46005 Valencia
39
 *   Spain
40
 *
41
 *   +34 963163400
42
 *   dac@iver.es
43
 */
44
/* CVS MESSAGES:
45
*
46
* $Id: DwgTestSuite.java 28970 2009-05-25 13:27:14Z jmvivo $
47
* $Log$
48
* Revision 1.1.2.1  2007-02-28 07:35:10  jmvivo
49
* Actualizado desde el HEAD.
50
*
51
* Revision 1.1  2007/02/08 20:27:57  azabala
52
* *** empty log message ***
53
*
54
*
55
*/
56
package org.gvsig.dwg.lib;
57

  
58
import junit.framework.Test;
59
import junit.framework.TestSuite;
60

  
61
public class DwgTestSuite {
62

  
63
	public static Test suite() {
64
		TestSuite suite = new TestSuite("Test for com.iver.cit.jdwglib.dwg");
65
		//$JUnit-BEGIN$
66
		suite.addTestSuite(DwgFileTest.class);
67
		//$JUnit-END$
68
		return suite;
69
	}
70

  
71
}
72

  
tags/org.gvsig.dwg-2.0.101/org.gvsig.dwg.lib/src/test/java/org/gvsig/dwg/lib/DwgFileTest.java
1
package org.gvsig.dwg.lib;
2

  
3
import java.io.File;
4
import java.io.IOException;
5
import java.net.URL;
6

  
7
import junit.framework.TestCase;
8

  
9
public class DwgFileTest extends TestCase {
10
	private File baseDataPath;
11

  
12
	protected void setUp() throws Exception {
13
		super.setUp();
14
		URL url = this.getClass().getResource("data");
15
		if (url == null) {
16
			throw new Exception("Can't find 'data' dir");
17
		}
18

  
19
		baseDataPath = new File(url.getFile());
20
		if (!baseDataPath.exists()) {
21
			throw new Exception("Can't find 'data' dir");
22
		}
23

  
24
	}
25

  
26
	protected void tearDown() throws Exception {
27
		super.tearDown();
28
	}
29
	public void test1() throws IOException, DwgVersionNotSupportedException {
30
//		String fileName = baseDataPath.getAbsolutePath()+"/Un punto.dwg";
31
//		DwgFile dwg = new DwgFile(fileName);
32
//
33
//		dwg.read();
34
//		dwg.calculateGisModelDwgPolylines();
35
//		dwg.blockManagement();
36
//		LinkedList dwgObjects = dwg.getDwgObjects();
37
	}
38

  
39
	public void test2() throws RuntimeException, CorruptedDwgEntityException{
40
        //Dwg Object that is supposed to be
41
        //an LWPOLYLINE in V14 version
42
		/*
43
        int[] data = new int[]{61,64,64,183,19,227,104,16
44
                            ,0,5,8,59,72,32,252,47,90,142,
45
                            234,145,50,10,71,11,213,36,229,
46
                            162,130,10,228,126,23,174,130,
47
                            145,50,15,98,141,196,244,229,
48
                            162,130,12,126,23,169,66,58,
49
                            145,50,12,47,90,138,68,229,
50
                            162,130,8,0,0,4,7,74,137,50,
51
                            15,177,66,231,252,221,162,130,
52
                            9,130,151,21,242,151,21,190,
53
                            8,21,8,56};
54
         */
55
//		int[] data = new int[]{62,128,64,71,99,
56
//							   40,48,0,5,8,27,72,
57
//							   100,126,23,169,68,
58
//							   178,105,50,13,114,
59
//							   63,11,82,165,162,130,
60
//							   13,114,63,11,210,138,
61
//							   105,50,8,173,114,59,
62
//							   138,205,162,130,15,98,
63
//							   141,192,241,58,105,50,
64
//							   11,51,51,52,178,229,162,
65
//							   130,14,110,102,98,97,234,
66
//							   105,50,11,51,51,52,179,21,
67
//							   162,130,10,149,192,240,42,
68
//							   162,105,50,14,189,27,131,
69
//							   107,69,162,130,14,31,169,
70
//							   66,227,74,105,50,9,240,86,
71
//							   185,27,117,162,130,11,59,
72
//							   51,51,52,234,105,50,13,114,
73
//							   63,11,83,85,162,130,9,74,228,
74
//							   126,22,186,105,50,11,51,51,50,
75
//							   51,53,162,130,11,137,232,82,190,
76
//							   58,105,50,9,74,228,122,147,13,162,
77
//							   130,11,137,232,82,189,106,105,50,9,
78
//							   74,228,122,146,213,162,130,9,74,228,122,20,202,105,50,12,126,23,171,194,173,162,130,12,126,23,169,68,178,105,50,13,114,63,11,82,165,162,130,9,130,151,22,10,136,182,8,21,8,120};
79
//        //1er intento: suponemos que la LWPOLYLINE cumple la especificaci?n
80
//        //a rajatabla
81
//        int bitPos = 0;
82
//        List val = DwgUtil.getBitShort(data, bitPos);
83
//        bitPos = ((Integer) val.get(0)).intValue();
84
//        int type = ((Integer) val.get(1)).intValue();
85
//        System.out.println("type = " + type);
86
//
87
//        DwgHandleReference hr = new DwgHandleReference();
88
//        bitPos = hr.read(data, bitPos);
89
//        System.out.println("handle, code="+
90
//                    hr.getCode()+
91
//                    " ,offset="+
92
//                    hr.getOffset());
93
//
94
//        //Ahora pasamos a la extended data
95
//        val = DwgUtil.getBitShort(data, bitPos);
96
//        bitPos = ((Integer) val.get(0)).intValue();
97
//        int extendedDataSize = ((Integer) val.get(1)).intValue();
98
//        System.out.println("EED size="+extendedDataSize);
99
//        //como el size es 0, me lo salto
100
//
101
//        //ver si tiene datos graficos
102
//        val = DwgUtil.testBit(data, bitPos);
103
//        bitPos = ((Integer) val.get(0)).intValue();
104
//        boolean hasGraphicsData = ((Boolean) val.get(1))
105
//                .booleanValue();
106
//        System.out.println("graphics = "+hasGraphicsData);
107
//
108
//        //como se que no hay graphics me lo salto
109
//        //tama?o en bits
110
//        val = DwgUtil.getRawLong(data, bitPos);
111
//        bitPos = ((Integer) val.get(0)).intValue();
112
//        int sizeInBits = ((Integer) val.get(1)).intValue();
113
//        System.out.println("sizeInBits = "+sizeInBits);
114
//
115
//        /*
116
//         * Ahora, lo que viene es lo que en la spec se dice
117
//         * "Common entity data". Revisar bien pues PythonCAD no lo lee
118
//         * como en la spec.
119
//         *
120
//         * pag 42.
121
//          R13-R14 Only:
122
//          	RL	:	Size of object data in bits
123
//          	6B	:	Flags (FEDCBA)
124
//          	6B	:	Common parameters (CCSSII)
125
//          	Segun esto, deberia leer 6 bits y 6 bits
126
//
127
//          	FLAGS
128
//	      	Mas adelante (pag 43), dice:
129
//	      	DC	:	This is the number of reactors attached to an
130
//	      	entity as a bitshort.
131
//	      	This feature may have been dormant in R13,
132
//	      	but it appears in R14, and in files saved as R13 by R14.
133
//
134
//	      	Ahora bien, pythoncad las est? leyendo como bitLong
135
//          	?En que quedamos, son 2 bits, 1 bitLong o 1 bitShort?
136
//          	TODO REVISAR
137
//
138
//          	COMMON PARAMETERS
139
//          	Al principio, dice que son 6 bits (CC, SS, II)
140
//          	pero luego dice (pag 43):
141
//          	CC	:	Color bitshort
142
//          	SS	:	Linetype scale bitdouble
143
//          	II	:	"Invisible" flag bitshort
144
//
145
//			Pythoncad, en vez de como 2 bits, los est? leyendo
146
//			como BitShort, BitDouble y BitShort
147
//
148
//         * */
149
//
150
//        Integer mode = (Integer) DwgUtil.getBits(data, 2, bitPos);
151
//		bitPos += 2;
152
//		System.out.println("mode = "+mode);
153
//
154
//	/*
155
//		val = DwgUtil.getBitLong(data, bitPos);
156
//		bitPos = ((Integer) val.get(0)).intValue();
157
//		int rnum = ((Integer) val.get(1)).intValue();
158
//		System.out.println("numReactors = "+rnum);
159
//*/
160
//		val = DwgUtil.getBitShort(data, bitPos);
161
//		bitPos = ((Integer) val.get(0)).intValue();
162
//		int rnum = ((Integer) val.get(1)).intValue();
163
//		System.out.println("numReactors = "+rnum);
164
//
165
//
166
//		val = DwgUtil.testBit(data, bitPos);
167
//		bitPos = ((Integer) val.get(0)).intValue();
168
//		boolean isLyrByLineType = ((Boolean) val.get(1)).booleanValue();
169
//		System.out.println("isLyrByLineType="+isLyrByLineType);
170
//
171
//		val = DwgUtil.testBit(data, bitPos);
172
//		bitPos = ((Integer) val.get(0)).intValue();
173
//		boolean noLinks = ((Boolean) val.get(1)).booleanValue();
174
//		System.out.println("noLinks="+noLinks);
175
//
176
//
177
//		val = DwgUtil.getBitShort(data, bitPos);
178
//		bitPos = ((Integer) val.get(0)).intValue();
179
//		int color = ((Integer) val.get(1)).intValue();
180
//		System.out.println("color="+color);
181
//
182
//
183
//		val = DwgUtil.getBitDouble(data, bitPos);
184
//		bitPos = ((Integer) val.get(0)).intValue();
185
//		float ltscale = ((Double) val.get(1)).floatValue();
186
//		System.out.println("ltscale="+ltscale);
187
//
188
//		val = DwgUtil.getBitShort(data, bitPos);
189
//		bitPos = ((Integer) val.get(0)).intValue();
190
//		int invis = ((Integer) val.get(1)).intValue();
191
//		System.out.println("invis="+invis);
192
//
193
//		val = DwgUtil.getBitShort(data, bitPos);
194
//		bitPos = ((Integer) val.get(0)).intValue();
195
//		int flag = ((Integer) val.get(1)).intValue();
196
//		System.out.println("flag="+flag);
197
//
198
//		double dVal = 0d;
199
//		if((flag & 0x4) > 0){
200
//			val = DwgUtil.getBitDouble(data, bitPos);
201
//			bitPos = ((Integer) val.get(0)).intValue();
202
//			dVal = ((Double) val.get(1)).doubleValue();
203
//		}
204
//		System.out.println("constWidth="+dVal);
205
//
206
//		dVal = 0d;
207
//		if((flag & 0x8) > 0){
208
//			val = DwgUtil.getBitDouble(data, bitPos);
209
//			bitPos = ((Integer) val.get(0)).intValue();
210
//			dVal = ((Double) val.get(1)).doubleValue();
211
//		}
212
//		System.out.println("elevation="+dVal);
213
//
214
//		dVal = 0d;
215
//		if ((flag & 0x2) > 0){
216
//			val = DwgUtil.getBitDouble(data, bitPos);
217
//			bitPos = ((Integer) val.get(0)).intValue();
218
//			dVal = ((Double) val.get(1)).doubleValue();
219
//		}
220
//		System.out.println("thickness="+dVal);
221
//
222
//		double x, y, z ;
223
//		x = 0d;
224
//		y = 0d;
225
//		z = 0d;
226
//
227
//		if ((flag & 0x1) > 0){
228
//			val = DwgUtil.getBitDouble(data, bitPos);
229
//			bitPos = ((Integer) val.get(0)).intValue();
230
//			x = ((Double) val.get(1)).doubleValue();
231
//
232
//			val = DwgUtil.getBitDouble(data, bitPos);
233
//			bitPos = ((Integer) val.get(0)).intValue();
234
//			y = ((Double) val.get(1)).doubleValue();
235
//
236
//			val = DwgUtil.getBitDouble(data, bitPos);
237
//			bitPos = ((Integer) val.get(0)).intValue();
238
//			z = ((Double) val.get(1)).doubleValue();
239
//		}
240
//		System.out.println("normal="+x+","+y+","+z);
241
//
242
//		val = DwgUtil.getBitLong(data, bitPos);
243
//		bitPos = ((Integer) val.get(0)).intValue();
244
//		int np = ((Integer) val.get(1)).intValue();
245
//		System.out.println("numPoints="+np);
246
//
247
//		int nb = 0;
248
//		if((flag & 0x10) > 0){
249
//			val = DwgUtil.getBitLong(data, bitPos);
250
//			bitPos = ((Integer) val.get(0)).intValue();
251
//			nb = ((Integer) val.get(1)).intValue();
252
//		}
253
//		System.out.println("numBulges="+nb);
254
//		int nw = 0;
255
//		if((flag & 0x20) > 0){
256
//			val = DwgUtil.getBitLong(data, bitPos);
257
//			bitPos = ((Integer) val.get(0)).intValue();
258
//			nw = ((Integer) val.get(1)).intValue();
259
//		}
260
//		System.out.println("numWidths="+nw);
261
//		if(np > 0){
262
//			Point2D[] points = new Point2D[np];
263
//			for(int i = 0; i < np; i++){
264
//				val = DwgUtil.getRawDouble(data, bitPos);
265
//				bitPos = ((Integer) val.get(0)).intValue();
266
//				x = ((Double) val.get(1)).doubleValue();
267
//
268
//				val = DwgUtil.getRawDouble(data, bitPos);
269
//				bitPos = ((Integer) val.get(0)).intValue();
270
//				y = ((Double) val.get(1)).doubleValue();
271
//
272
//				points[i] = new Point2D.Double(x, y);
273
//				System.out.println("Punto"+i+"="+x+","+y);
274
//			}//for
275
//		}//if np
276
//
277
//		if(nb > 0){
278
//			double[] bulges = new double[nb];
279
//			for(int i = 0; i < nb; i++){
280
//				val = DwgUtil.getRawDouble(data, bitPos);
281
//				bitPos = ((Integer) val.get(0)).intValue();
282
//				bulges[i] = ((Double) val.get(1)).doubleValue();
283
//				System.out.println("Bulge"+i+"="+bulges[i]);
284
//			}//for
285
//
286
//		}//if nb
287
//
288
//		if(nw > 0){
289
//			double[][] widths = new double[nw][2];
290
//			for(int i = 0; i < nw; i++){
291
//				val = DwgUtil.getBitDouble(data, bitPos);
292
//				bitPos = ((Integer) val.get(0)).intValue();
293
//				double sw = ((Double) val.get(1)).doubleValue();
294
//
295
//				val = DwgUtil.getBitDouble(data, bitPos);
296
//				bitPos = ((Integer) val.get(0)).intValue();
297
//				double ew = ((Double) val.get(1)).doubleValue();
298
//
299
//				widths[i][0] = sw;
300
//				widths[i][1] = ew;
301
//				System.out.println("Width"+i+"="+sw+","+ew);
302
//			}//for
303
//		}
304
     }
305

  
306
	public void test3(){
307
		//test of extrusion
308
		double[] coord = null;
309
		double[] extrusion = null;
310
		double[] extrusion2 = new double[]{0, 0, 1};
311

  
312
		coord = new double[]{790089.65, 4477974.75, 9.560000000114087};
313
		extrusion = new double[]{-0.5037965987025721, 0.07005064807841195, 0.8609772899673451};
314
		//1. algoritmo original, vector normal distinto
315
//		double[] newCoord = AcadExtrusionCalculator.extrude(coord, extrusion);
316
//		newCoord = AcadExtrusionCalculator.extrude3(coord, extrusion);
317
//
318
		//2? ahora con vector normal coincidente con eje Z
319
//		newCoord = AcadExtrusionCalculator.extrude(coord, extrusion2);
320
//		newCoord = AcadExtrusionCalculator.extrude3(coord, extrusion2);
321
	}
322
}
tags/org.gvsig.dwg-2.0.101/org.gvsig.dwg.lib/src/main/java/org/gvsig/dwg/lib/readers/DwgFileV12Reader.java
1
/*
2
 * Created on 09-ene-2007
3
 *
4
 * gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
5
 *
6
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
7
 *
8
 * This program is free software; you can redistribute it and/or
9
 * modify it under the terms of the GNU General Public License
10
 * as published by the Free Software Foundation; either version 2
11
 * of the License, or (at your option) any later version.
12
 *
13
 * This program is distributed in the hope that it will be useful,
14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
 * GNU General Public License for more details.
17
 *
18
 * You should have received a copy of the GNU General Public License
19
 * along with this program; if not, write to the Free Software
20
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
21
 *
22
 * For more information, contact:
23
 *
24
 *  Generalitat Valenciana
25
 *   Conselleria d'Infraestructures i Transport
26
 *   Av. Blasco Ib??ez, 50
27
 *   46010 VALENCIA
28
 *   SPAIN
29
 *
30
 *      +34 963862235
31
 *   gvsig@gva.es
32
 *      www.gvsig.gva.es
33
 *
34
 *    or
35
 *
36
 *   IVER T.I. S.A
37
 *   Salamanca 50
38
 *   46005 Valencia
39
 *   Spain
40
 *
41
 *   +34 963163400
42
 *   dac@iver.es
43
 */
44
package org.gvsig.dwg.lib.readers;
45

  
46
import java.awt.geom.Point2D;
47
import java.io.IOException;
48
import java.nio.ByteBuffer;
49
import java.nio.ByteOrder;
50
import java.util.ArrayList;
51
import java.util.List;
52

  
53
import org.gvsig.dwg.lib.CorruptedDwgEntityException;
54
import org.gvsig.dwg.lib.DwgFile;
55
import org.gvsig.dwg.lib.DwgHandleReference;
56
import org.gvsig.dwg.lib.DwgObject;
57
import org.gvsig.dwg.lib.DwgObjectFactory;
58
import org.gvsig.dwg.lib.IDwgBlockMember;
59
import org.gvsig.dwg.lib.IDwgPolyline;
60
import org.gvsig.dwg.lib.IDwgVertex;
61
import org.gvsig.dwg.lib.objects.DwgArc;
62
import org.gvsig.dwg.lib.objects.DwgBlockHeader;
63
import org.gvsig.dwg.lib.objects.DwgCircle;
64
import org.gvsig.dwg.lib.objects.DwgEndblk;
65
import org.gvsig.dwg.lib.objects.DwgInsert;
66
import org.gvsig.dwg.lib.objects.DwgLayer;
67
import org.gvsig.dwg.lib.objects.DwgLine;
68
import org.gvsig.dwg.lib.objects.DwgMeshPolyline;
69
import org.gvsig.dwg.lib.objects.DwgPFacePolyline;
70
import org.gvsig.dwg.lib.objects.DwgPoint;
71
import org.gvsig.dwg.lib.objects.DwgPolyline2D;
72
import org.gvsig.dwg.lib.objects.DwgPolyline3D;
73
import org.gvsig.dwg.lib.objects.DwgSeqend;
74
import org.gvsig.dwg.lib.objects.DwgSolid;
75
import org.gvsig.dwg.lib.objects.DwgText;
76
import org.gvsig.dwg.lib.objects.DwgVertex2D;
77
import org.gvsig.dwg.lib.objects.DwgVertex3D;
78
import org.gvsig.dwg.lib.objects.DwgVertexPFace;
79
import org.gvsig.dwg.lib.objects.DwgVertexPFaceFace;
80

  
81

  
82
/**
83
 * Reads version 12 dwg files.
84
 * 
85
 * DWG 13 and DWG 12 are very different formats (nor do DWG 13-14 and 2000).
86
 * Thats the reason why this IDwgFileReader is very different from the rest. 
87
 * 
88
 * Documentation of reverse engineering of the format:
89
 * 	http://www.iwriteiam.nl/DWG12.html
90
 * 
91
 * @author azabala
92
 * 
93
 */
94
public class DwgFileV12Reader implements IDwgFileReader{
95

  
96
	private DwgFile dwgFile;
97
	private ByteBuffer bb;
98
	ArrayList readers = new ArrayList();
99
	private boolean r13 = false;
100
	int index = 0;
101
	
102
	ArrayList blocks = new ArrayList();
103
	
104
	
105
	/**
106
	 * While DwgBlock is a DWG entity, readed from the DWG entities
107
	 * section, a Block is an entry in the BLOCK Section of DWG 12 format.
108
	 * 
109
	 * Block has block name attribute (like DwgBlock), but its most
110
	 * important attribute is its order in the Block section.
111
	 * 
112
	 * Inserts has a short number that we think is the order of its
113
	 * referred block in the block table (the only approach to fech
114
	 * the block of an insert)
115
	 * */
116
	class Block {
117
		/*
118
        |----------|--------------------------------------------|
119
        | 1        | This is an anonymous Block generated by    |
120
        |          | hatching, associative dimensioning, other  |
121
        |          | internal operations, or an application     |
122
        |----------|--------------------------------------------|
123
        | 2        | This Block has Attributes                  |
124
        |----------|--------------------------------------------|
125
        | 4        | This Block is an external reference (Xref) |
126
        |----------|--------------------------------------------|
127
        | 8        | not used                                   |
128
        |----------|--------------------------------------------|
129
        | 16       | This Block is externally dependent         |
130
        |----------|--------------------------------------------|
131
        | 32       | This is a resolved external reference, or  |
132
        |          | dependent of an external reference         |
133
        |----------|--------------------------------------------|
134
        | 64       | This definition is referenced              |
135
        +-------------------------------------------------------+
136
        */
137
		byte flag;
138
		String name;
139
		short used;
140
		
141
		byte b1;
142
		short w1;
143
		byte b2;
144
		short w3;
145
		short crc;
146
	}
147
	
148
	public DwgFileV12Reader(boolean isR13){
149
		r13 = isR13;
150
		readers.add(null);//0
151
		readers.add(new LineReader());//1
152
		readers.add(new PointReader());//2
153
		readers.add(new CircleReader());//3
154
		readers.add(new ShapeReader());//4
155
		readers.add(null);//5
156
		readers.add(null);//6
157
		readers.add(new TextReader());//7
158
		readers.add(new ArcReader());//8
159
		readers.add(new TraceReader());//9
160
		readers.add(null);//10
161
		readers.add(new SolidReader());//11
162
		readers.add(new BlkReader());//12
163
		readers.add(new EndBlkReader());//13
164
		readers.add(new InsertReader());//14
165
		readers.add(new AttDefReader());//15
166
		readers.add(new AttribReader());//16
167
		readers.add(new SbEndReader());//17
168
		readers.add(null);//18
169
		readers.add(new PlineReader());//19
170
		readers.add(new VertexReader());//20
171
		readers.add(null);//21
172
		readers.add(new Face3DReader());//22
173
		readers.add(new DimReader());//23
174
		readers.add(new VPortReader());//24
175
	}
176
	
177
	
178

  
179
	/* (non-Javadoc)
180
	 * @see com.iver.cit.jdwglib.dwg.readers.IDwgFileReader#read(com.iver.cit.jdwglib.dwg.DwgFile, java.nio.ByteBuffer)
181
	 */
182
	public void read(DwgFile dwgFile, ByteBuffer bb) throws IOException {
183
		this.dwgFile = dwgFile;
184
		this.bb = bb;
185
		try {
186
////			handle.seek(6, 1) # skip rest of version
187
//			bb.position(12);
188
//			bb.position(bb.position() + 6);
189
			bb.position(0);
190
			byte[] header = new byte[12];
191
			bb.get(header);
192
			String headerStr = new String(header);
193
			
194
//		    (_b1, _w1, _w2, _w3, _b2) = struct.unpack("<BhhhB", handle.read(8))
195
			bb.order(ByteOrder.LITTLE_ENDIAN);
196
			byte b1 = bb.get();
197
			short w1 = bb.getShort();
198
			short w2 = bb.getShort();
199
			short w3 = bb.getShort();
200
			byte b2 = bb.get();
201
			
202
			
203
			//To translate Python to Java, we must see the number
204
			//of bytes of the reading
205
			
206
//			 _estart, _eend = struct.unpack("<ll", handle.read(8))
207
			bb.order(ByteOrder.LITTLE_ENDIAN);
208
			int eStart = bb.getInt();
209
			int eEnd = bb.getInt();
210
			
211
//			_bsstart, _l1, _bsend, _l2 = struct.unpack("<llll", handle.read(16))
212
			int bsStart = bb.getInt();
213
			int l1 = bb.getInt();
214
			
215
			int bsEnd = bb.getInt();
216
			int l2 = bb.getInt();
217
			
218
			Dwg12Table blockTable = getTable();
219
			
220
			Dwg12Table layerTable = getTable();
221
			
222
			Dwg12Table styleTable = getTable();
223
			
224
			Dwg12Table lineTypeTable = getTable();
225
			
226
			Dwg12Table viewTable = getTable();
227
			
228
			readHeader();
229
			
230
			Dwg12Table ucsTable = getTable();
231
			
232
			bb.position(0x500);
233
			
234
			Dwg12Table vportTable = getTable();
235
			
236
			bb.position(bb.position() + 8);
237
			
238
			Dwg12Table appidTable = getTable();
239
			
240
			bb.position(bb.position() + 6);
241
			
242
			Dwg12Table dimStyleTable = getTable();
243
			bb.position(0x69f);
244
			
245
			Dwg12Table p13table = getTable();
246
			
247
			bb.position(bb.position() + 38);
248
			
249
			int currentPosition = bb.position();
250
			if(currentPosition != eStart){
251
				//Se supone que deber?amos estar en eStart
252
				throw new RuntimeException("Error: no se ha llegado al principio de las entidades de dibujo");
253
			}
254
			
255
			//lee primero entidades normales?
256
			readEntities(eStart, eEnd);
257
			
258
			bb.position(bb.position() + 19);
259
			
260
			readBlockTable(blockTable);
261
			readLayerTable(layerTable);
262
			
263
//de momento nos saltamos estas tablas
264
//			readStyleTable(styleTable);
265
//			readLTypeTable(lineTypeTable);
266
//			readViewTable(viewTable);
267
//			readUcsTable(ucsTable);
268
//			readVportTable(vportTable);
269
//			readAppidTable(appidTable);
270
//			readDimStyleTable(dimStyleTable);
271
//			readP13Table(p13table);
272
			
273
			//luego lee entidades de bloque
274
			readEntities(bsStart, bsEnd);
275
			
276
			bb.position(bb.position() + 36);
277
			
278
			bb.order(ByteOrder.LITTLE_ENDIAN);
279
			
280
			int peStart, peEnd, pbStart, pbEnd;
281
			
282
			peStart = bb.getInt();
283
			peEnd = bb.getInt();
284
			pbStart = bb.getInt();
285
			pbEnd = bb.getInt();
286
			
287
			if(peStart != eStart)
288
				System.out.println("peStart="+peStart+" eStart="+eStart);
289
			
290
			if(peEnd != eEnd)
291
				System.out.println("peStart="+peEnd+" eStart="+eEnd);
292
			
293
			if(pbStart != bsStart)
294
				System.out.println("peStart="+pbStart+" eStart="+bsStart);
295
			
296
			if(bsEnd != pbEnd)
297
				System.out.println("peStart="+pbStart+" eStart="+bsStart);
298
		   
299
			bb.position(bb.position() + 12);
300
			
301
			Dwg12TableTest bts = getTableTest();
302
			
303
			Dwg12TableTest lyrTs = getTableTest();
304
			
305
			Dwg12TableTest sts = getTableTest();
306
			
307
			Dwg12TableTest ltts = getTableTest();
308
			
309
			Dwg12TableTest vts = getTableTest();
310
			
311
			Dwg12TableTest uts = getTableTest();
312
			
313
			Dwg12TableTest vpts = getTableTest();
314
			
315
			Dwg12TableTest ats = getTableTest();
316
			
317
			Dwg12TableTest dts = getTableTest();
318
			
319
			Dwg12TableTest pts = getTableTest();
320
			
321
			
322
			
323
			
324
		} catch (Exception e) {
325
			e.printStackTrace();
326
//			logger.error(e);
327
		}
328
	}
329
	
330
	
331
	private void readP13Table(Dwg12Table p13table) {
332
		// TODO Auto-generated method stub
333
	}
334

  
335

  
336

  
337
	private void readDimStyleTable(Dwg12Table dimStyleTable) {
338
		short size = dimStyleTable.s1;
339
		int numRecs = dimStyleTable.i1;
340
		int start = dimStyleTable.i2;
341
		int end = -1;
342
		bb.position(start);
343
		for(int i = 0; i < numRecs; i++){
344
			end = bb.position() + size;
345
			
346
			byte flag = bb.get();
347
			byte[] nameBytes = new byte[32];
348
			bb.get(nameBytes);
349
			String name = new String(nameBytes);
350
			
351
			bb.order(ByteOrder.LITTLE_ENDIAN);
352
			short word = bb.getShort();
353
			
354
			double[] d4048 = new double[9];
355
			for(int j = 0; j < 9; j++){
356
				d4048[j] = bb.getDouble();
357
			}
358
			
359
			double[] d40145 = new double[6];
360
			for(int j = 0; j < 6; j++){
361
				d40145[j] = bb.getDouble();
362
			}
363
			
364
			byte[] b7078 = new byte[7];
365
			for(int j = 0; j < 7; j++){
366
				b7078[j] = bb.get();
367
			}
368
			
369
			byte[] b170175 = new byte[6];
370
			for(int j = 0; j < 6; j++){
371
				b170175[j] = bb.get();
372
			}
373
			
374
			bb.order(ByteOrder.nativeOrder());
375
			byte[] s3 = new byte[16];
376
			bb.get(s3);
377
			
378
			byte[] s4 = new byte[16];
379
			bb.get(s4);
380
			
381
			byte[] s5 = new byte[32];
382
			bb.get(s5);
383
			
384
			byte[] s6 = new byte[32];
385
			bb.get(s6);
386
			
387
			byte[] s7 = new byte[32];
388
			bb.get(s6);
389
			
390
			bb.position(bb.position() + 3);
391
			
392
			bb.order(ByteOrder.LITTLE_ENDIAN);
393
			short w176 = bb.getShort();
394
			short w177 = bb.getShort();
395
			short w178 = bb.getShort();
396
			
397
			double d146 = bb.getDouble();
398
			double d147 = bb.getDouble();
399
			
400
			
401
			int offset = end - bb.position();
402
			if(offset > 0)
403
				bb.position(bb.position() + offset);
404
			
405
			bb.order(ByteOrder.LITTLE_ENDIAN);
406
			short crc = bb.getShort();
407
		}
408
		byte[] crc32 = new byte[32];
409
		bb.get(crc32);
410
	}
411

  
412

  
413

  
414
	private void readAppidTable(Dwg12Table appidTable) {
415
		short size = appidTable.s1;
416
		int numRecs = appidTable.i1;
417
		int start = appidTable.i2;
418
		int end = -1;
419
		bb.position(start);
420
		for(int i = 0; i < numRecs; i++){
421
			end = bb.position() + size;
422
			
423
			byte flag = bb.get();
424
			byte[] nameBytes = new byte[32];
425
			bb.get(nameBytes);
426
			String name = new String(nameBytes);
427
			
428
			bb.order(ByteOrder.LITTLE_ENDIAN);
429
			short word = bb.getShort();
430
			
431
			int offset = end - bb.position();
432
			if(offset > 0)
433
				bb.position(bb.position() + offset);
434
			
435
			bb.order(ByteOrder.LITTLE_ENDIAN);
436
			short crc = bb.getShort();
437
		}
438
		byte[] crc32 = new byte[32];
439
		bb.get(crc32);
440
	}
441

  
442

  
443

  
444
	private void readVportTable(Dwg12Table vportTable) {
445
		short size = vportTable.s1;
446
		int numRecs = vportTable.i1;
447
		int start = vportTable.i2;
448
		int end = -1;
449
		bb.position(start);
450
		for(int i = 0; i < numRecs; i++){
451
			end = bb.position() + size;
452
			
453
			byte flag = bb.get();
454
			byte[] nameBytes = new byte[32];
455
			bb.get(nameBytes);
456
			String name = new String(nameBytes);
457
			
458
			bb.order(ByteOrder.LITTLE_ENDIAN);
459
			short used = bb.getShort();
460
			
461
			double[] pt10 = getPoint(false);
462
			double[] pt11 = getPoint(false);
463
			double[] pt17 = getPoint(false);
464
			double[] pt16 = getPoint(true);
465
			
466
			bb.order(ByteOrder.LITTLE_ENDIAN);
467
			
468
			double d50 = bb.getDouble();
469
			double d40 = bb.getDouble();
470
			
471
			double[] pt12 = getPoint(false);
472
			
473
			bb.order(ByteOrder.LITTLE_ENDIAN);
474
			double d41 = bb.getDouble();
475
			double d42 = bb.getDouble();
476
			double d43 = bb.getDouble();
477
			double d44 = bb.getDouble();
478
			
479
			short[] w7178 = new short[8];
480
			for(int j = 0; j < 8; j++){
481
				w7178[j] = bb.getShort();
482
			}
483
			bb.order(ByteOrder.LITTLE_ENDIAN);
484
			double d51 = bb.getDouble();
485
			
486
			double[] pt13 = getPoint(false);
487
			double[] pt14 = getPoint(false);
488
			double[] pt15 = getPoint(false);
489
			
490
			int offset = end - bb.position();
491
			if(offset > 0)
492
				bb.position(bb.position() + offset);
493
			
494
			bb.order(ByteOrder.LITTLE_ENDIAN);
495
			short crc = bb.getShort();
496
		}
497
		byte[] crc32 = new byte[32];
498
		bb.get(crc32);
499
	}
500

  
501

  
502

  
503
	private void readUcsTable(Dwg12Table ucsTable) {
504
		short size = ucsTable.s1;
505
		int numRecs = ucsTable.i1;
506
		int start = ucsTable.i2;
507
		int end = -1;
508
		bb.position(start);
509
		for(int i = 0; i < numRecs; i++){
510
			end = bb.position() + size;
511
			
512
			byte flag = bb.get();
513
			byte[] nameBytes = new byte[32];
514
			bb.get(nameBytes);
515
			String name = new String(nameBytes);
516
			
517
			bb.order(ByteOrder.LITTLE_ENDIAN);
518
			short used = bb.getShort();
519
			
520
			double[] pt10 = getPoint(true);
521
			double[] pt11 = getPoint(true);
522
			double[] pt12 = getPoint(true);
523
			
524
			
525
			
526
			int offset = end - bb.position();
527
			if(offset > 0)
528
				bb.position(bb.position() + offset);
529
			
530
			bb.order(ByteOrder.LITTLE_ENDIAN);
531
			short crc = bb.getShort();
532
		}
533
		byte[] crc32 = new byte[32];
534
		bb.get(crc32);
535
		
536
		
537
	}
538

  
539

  
540

  
541
	private void readViewTable(Dwg12Table viewTable) {
542
		short size = viewTable.s1;
543
		int numRecs = viewTable.i1;
544
		int start = viewTable.i2;
545
		int end = -1;
546
		bb.position(start);
547
		for(int i = 0; i < numRecs; i++){
548
			end = bb.position() + size;
549
			
550
			byte flag = bb.get();
551
			byte[] nameBytes = new byte[32];
552
			bb.get(nameBytes);
553
			String name = new String(nameBytes);
554
			
555
			bb.order(ByteOrder.LITTLE_ENDIAN);
556
			short used = bb.getShort();
557
			double db40 = bb.getDouble();
558
			
559
			double[] pt10 = getPoint(false);
560
			
561
			bb.order(ByteOrder.LITTLE_ENDIAN);
562
			double db41 = bb.getDouble();
563
			
564
			double[] pt11 = getPoint(true);
565
			
566
			double[] pt12 = getPoint(true);
567
			
568
			
569
			bb.order(ByteOrder.LITTLE_ENDIAN);
570
			short w71 = bb.getShort();
571
			double db42 = bb.getDouble();
572
			double db43 = bb.getDouble();
573
			double db44 = bb.getDouble();
574
			double db50 = bb.getDouble();
575
			
576
			int offset = end - bb.position();
577
			if(offset > 0)
578
				bb.position(bb.position() + offset);
579
			
580
			bb.order(ByteOrder.LITTLE_ENDIAN);
581
			short crc = bb.getShort();
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff