Revision 59

View differences:

1.10/tags/gvSIG_3D_Animation_1_10_build_15/extensions/ext3Dgui/maven-build.xml
1
<project name="copy-native" default="install-binaries" basedir=".">
2
	<description>
3
		Downloads and copy all native dependencies.
4
	</description>
5
	<property name="binaries" location="${basedir}/../binaries/" />
6
	<property name="buildman.executable" location="${basedir}/buildman/bin/bmn.py" />
7
	<property environment="env" />
8
	<condition property="depman" value="${env.HOMEPATH}/DepMan/">
9
		<or>
10
			<os family="windows" />
11
			<os family="win9x" />
12
			<os name="Windows Vista" />
13
		</or>
14
	</condition>
15
	<condition property="depman" value="${env.HOME}/.depman/">
16
		<and>
17
			<os family="unix" />
18
			<not>
19
				<os family="mac" />
20
			</not>
21
		</and>
22
	</condition>
23
	<condition property="depman" value="/Developer/DepMan/">
24
		<os family="mac" />
25
	</condition>
26

  
27
	<condition property="isLinux">
28
		<os family="unix" />
29
	</condition>
30
	<condition property="isWindows">
31
		<or>
32
			<os family="windows" />
33
			<os family="win9x" />
34
			<os name="Windows Vista" />
35
		</or>
36
	</condition>
37
	<condition property="isMac">
38
		<os family="mac" />
39
	</condition>
40
	
41
	<condition property="binaries-dir" value="${binaries}/w32/3D">
42
		<or>
43
			<os family="windows" />
44
			<os family="win9x" />
45
			<os name="Windows Vista" />
46
		</or>
47
	</condition>
48
	<condition property="binaries-dir" value="${binaries}/linux/3D">
49
		<os family="unix" />
50
	</condition>
51
	<condition property="binaries-dir" value="${binaries}/mac/3D">
52
		<os family="mac" />
53
	</condition>
54
	
55
	
56
	<target name="install-binaries" depends="copy-binaries">
57
		<copy todir="${install-binaries-dir}">
58
			<fileset dir="${binaries-dir}" includes="**/**"
59
				excludes="*.exe,*.head,links.properties" />
60
		</copy>
61
	</target>
62

  
63
	<target name="copy-binaries"
64
		depends="copy-linux-binaries,copy-win-binaries,copy-mac-binaries">
65
	</target>
66

  
67
	<target name="copy-win-binaries" if="isWindows"
68
		depends="update-binaries-remote">
69
		<mkdir dir="${binaries-dir}" />
70
		<copy todir="${binaries-dir}">
71
			<fileset dir="${depman}/bin/" includes="**/**"
72
				excludes="*.exe" />
73
		</copy>
74
	</target>
75

  
76
	<target name="copy-linux-binaries" if="isLinux"
77
		depends="update-binaries-remote">
78
		<mkdir dir="${binaries-dir}" />
79
		<copy todir="${binaries-dir}">
80
			<fileset dir="${depman}/lib/" includes="*.so*,**/*.so*"
81
				followsymlinks="false" />
82
		</copy>
83

  
84
		<exec executable="${basedir}/gen_simb_link.sh" />
85

  
86
		<exec executable="${binaries-dir}/install-3D.sh" dir="${install-binaries-dir}/../" />
87
		<!--
88
			<exec executable="bash">
89
			<arg value="-c"/>
90
			<arg value="find ${depman}/lib/ -type l -exec ls -l {} ';' | sed 's/.*[.][/]//g' | sed 's/\(.*\) -> \(.*\)$/ln -s \2 \1/g' > ${binaries-dir}/install.sh.tmp"/>
91
			</exec>
92
			<concat destfile="${binaries-dir}/install-3D.sh">#!bin/sh
93
			
94
			</concat>
95
			<concat destfile="${binaries-dir}/install-3D.sh" append="true">
96
			<filelist dir="${binaries-dir}" files="install.sh.tmp"/>
97
			</concat>
98
			<delete file="${binaries-dir}/install.sh.tmp"/>
99
			<exec executable="bash">
100
			<arg value="-c"/>
101
			<arg value="cd ${depman}/lib/ ; (find . -type l -exec ls -l {} ';' | sed 's/.*[.][/]//g' | sed 's/\(.*\) -> \(.*\)$/\1=\2/g' > ${binaries-dir}/links.properties)"/>
102
			</exec>
103
		-->
104
	</target>
105
	<target name="copy-mac-binaries" if="isMac"
106
		depends="update-binaries-remote">
107
		<mkdir dir="${binaries-dir}" />
108
		<copy todir="${binaries-dir}">
109
			<fileset dir="${depman}/lib/"
110
				includes="*.so*,**/*.so*,*.dylib*,**/*.dylib*,*.jnilib*,**/*.jnilib*" />
111
		</copy>
112

  
113
		<!--exec executable="${basedir}/gen_simb_link_mac.sh" / -->
114

  
115
		<!--
116
			<exec executable="bash">
117
			<arg value="-c"/>
118
			<arg value="find ${depman}/lib/ -type l -exec ls -l {} ';' | sed 's/.*[.][/]//g' | sed 's/\(.*\) -> \(.*\)$/ln -s \2 \1/g' > ${binaries-dir}/install.sh.tmp"/>
119
			</exec>
120
			<concat destfile="${binaries-dir}/install-3D.sh">#!bin/sh
121
			
122
			</concat>
123
			<concat destfile="${binaries-dir}/install-3D.sh" append="true">
124
			<filelist dir="${binaries-dir}" files="install.sh.tmp"/>
125
			</concat>
126
			<delete file="${binaries-dir}/install.sh.tmp"/>
127
			<exec executable="bash">
128
			<arg value="-c"/>
129
			<arg value="cd ${depman}/lib/ ; (find . -type l -exec ls -l {} ';' | sed 's/.*[.][/]//g' | sed 's/\(.*\) -> \(.*\)$/\1=\2/g' > ${binaries-dir}/links.properties)"/>
130
			</exec>
131
		-->
132
	</target>
133

  
134

  
135
	<target name="update-binaries-cache">
136
		<exec executable="python">
137
			<arg value="${buildman.executable}" />
138
			<arg value="update" />
139
			<arg value="--cache" />
140
		</exec>
141
	</target>
142

  
143
	<target name="update-binaries-remote">
144
		<exec executable="python">
145
			<arg value="${buildman.executable}" />
146
			<arg value="update" />
147
			<arg value="--remote" />
148
		</exec>
149
	</target>
150

  
151
	<target name="update-binaries-atifglrx-remote">
152
		<exec executable="python">
153
			<arg value="${buildman.executable}" />
154
			<arg value="update" />
155
			<arg value="--file" />
156
			<arg value="depman-atifglrx.xml" />
157
			<arg value="--remote" />
158
		</exec>
159
	</target>
160
</project>
1.10/tags/gvSIG_3D_Animation_1_10_build_15/extensions/ext3Dgui/depman.xml
1
<depman>
2
 <dependencies platform="win">
3
   <!-- override platform win with compiler vs7 -->
4
   <dependency>
5
     <group>org.openscenegraph</group>
6
     <artifact>openscenegraph</artifact>
7
     <version>2.2.0</version>
8
     <type>dynamic</type>
9
     <compiler>vs7</compiler>
10
   </dependency>
11
   <dependency>
12
     <group>es.upv.ai2</group>
13
     <artifact>osgvp</artifact>
14
     <version>2.1.6.5</version>
15
     <type>dynamic</type>
16
     <compiler>vs7</compiler>
17
   </dependency>
18
   <dependency>
19
     <group>org.gdal</group>
20
     <artifact>gdal</artifact>
21
     <version>1.2.6</version>
22
     <type>dynamic</type>
23
     <compiler>vs6</compiler>
24
   </dependency>
25
   <dependency>
26
     <group>jogl</group>
27
     <artifact>jogl</artifact>
28
     <version>1.1.0</version>
29
     <type>dynamic</type>
30
     <compiler>all</compiler>
31
   </dependency>
32

  
33
 </dependencies>
34
 <dependencies platform="linux">
35
   <!-- others platform same configuration -->
36
   <dependency>
37
     <group>org.openscenegraph</group>
38
     <artifact>openscenegraph</artifact>
39
     <version>2.2.0</version>
40
     <type>dynamic</type>
41
   </dependency>
42
   <dependency>
43
     <group>es.upv.ai2</group>
44
     <artifact>osgvp</artifact>
45
     <version>2.1.6.5</version>
46
     <type>dynamic</type>
47
   </dependency>
48
   <dependency>
49
     <group>jogl</group>
50
     <artifact>jogl</artifact>
51
     <version>1.1.0</version>
52
     <type>dynamic</type>
53
   </dependency>
54
   <!-- dependency>
55
     <group>org.gdal</group>
56
     <artifact>gdal</artifact>
57
     <version>1.4.0</version>
58
     <type>dynamic</type>
59
   </dependency-->
60
 </dependencies>
61
<dependencies platform="mac">
62
   <!-- others platform same configuration -->
63
   <dependency>
64
     <group>org.openscenegraph</group>
65
     <artifact>openscenegraph</artifact>
66
     <version>2.2.0</version>
67
     <type>dynamic</type>
68
     <architecture>universal</architecture>
69
   </dependency>
70
   <dependency>
71
     <group>es.upv.ai2</group>
72
     <artifact>osgvp</artifact>
73
     <version>2.1.6.5</version>
74
     <type>dynamic</type>
75
     <architecture>universal</architecture>
76
   </dependency>
77
   <dependency>
78
     <group>jogl</group>
79
     <artifact>jogl</artifact>
80
     <version>1.1.0</version>
81
     <type>dynamic</type>
82
     <compiler>all</compiler>
83
   </dependency>
84
 </dependencies>
85

  
86
</depman>
87

  
1.10/tags/gvSIG_3D_Animation_1_10_build_15/extensions/ext3Dgui/config/text_ca.properties
1
#text_ca.properties
2
0=0
3
1=1
4
2X=2X
5
4X=4X
6
Default_Select=Navegaci\u00F3n por defecto
7
Nivel_de_extrusi\u00F3n=Nivel de extrusi\u00F3n
8
Objeto_3D=Objeto 3D
9
Objeto_3D_GIS=Objeto 3D GIS
10
Pan_Select=Desplazamiento
11
Reset_View=Resetear Vista
12
show_3Dview=Vista 3D
13
Wire_Frame=Wire Frame
14
Zoom_Select=Zoom
1.10/tags/gvSIG_3D_Animation_1_10_build_15/extensions/ext3Dgui/config/config.xml
1
<?xml version="1.0" encoding="ISO-8859-1"?>
2
<plugin-config>
3
	<depends plugin-name="com.iver.cit.gvsig" />
4
	<depends plugin-name="com.iver.core" />
5
	<libraries library-dir="./lib" />
6
	<resourceBundle name="text" />
7
	<extensions>
8
		<extension class-name="org.gvsig.gvsig3dgui.Extension3D"
9
			description="Shows a 3D View" active="true" priority="50">
10
			<tool-bar name="Tools3D">
11
				<selectable-tool icon="images/ejemplo.png"
12
					action-command="SHOW3D" tooltip="show_3Dview" />
13
			</tool-bar>
14
		</extension>
15
		
16
		<extension class-name="org.gvsig.gvsig3dgui.InitialWarningExtension3D"
17
			description="Initial warning message"
18
			active="true"
19
			priority="1">
20
		</extension>
21
		
22
		<extension class-name="org.gvsig.gvsig3dgui.navigation.NavigationMenu3D"
23
			description="Extensi?n encargada de manejar los ditintos tipos de manipuladores de la vista."
24
			active="true"
25
			priority="31">
26
			<menu text="Vista/navegacion/Default_Navigation" action-command="DEFAULT_SELECT"
27
				icon="default-manipulator-icon" />
28
			<menu text="Vista/navegacion/Pan_Navigation" action-command="PAN_SELECT"
29
				icon="roll-manipulator-icon" />
30
			<menu text="Vista/navegacion/Zoom_Navigation" action-command="ZOOM_SELECT"
31
				icon="zoom-manipulator-icon" />
32
			<menu text="Vista/navegacion/Azimut_Navigation" action-command="AZIMUT_SELECT"
33
				icon="azimut-manipulator-icon" />
34
			<menu text="Vista/navegacion/Active_north" action-command="ACTIVE"
35
				icon="north-disable-icon" />
36
			<tool-bar name="NavigationMenu3D" position="5">
37
				<selectable-tool group="navigation" is-default="true"
38
					icon="default-manipulator-icon" action-command="DEFAULT_SELECT"
39
					tooltip="Default_Navigation" position="1" />
40
				<selectable-tool group="navigation" icon="roll-manipulator-icon"
41
					action-command="PAN_SELECT" tooltip="Pan_Navigation" position="2" />
42
				<selectable-tool group="navigation" icon="zoom-manipulator-icon"
43
					action-command="ZOOM_SELECT" tooltip="Zoom_Navigation" position="3" />
44
				<selectable-tool group="navigation" icon="azimut-manipulator-icon"
45
					action-command="AZIMUT_SELECT" tooltip="Azimut_Navigation"
46
					position="4" />
47
				<action-tool icon="north-disable-icon" name="NORTH"
48
					action-command="ACTIVE" tooltip="Active_north" position="5" />
49
				<action-tool icon="global-zoom-icon" action-command="RESET_VIEW"
50
					tooltip="Reset_View" position="6" />
51
			</tool-bar>
52
		</extension>
53
		
54
		<extension class-name="org.gvsig.gvsig3dgui.layer.MenuZoom3D"
55
			description="Extensi?n encargada de abrir el menu de opciones de zoom 3D."
56
			active="true"
57
			priority="31">
58
			<menu text="Vista/navegacion/Zoom_Select" action-command="ZOOM_SELECT"
59
				icon="zoom-selection-icon" />
60
			<menu text="Capa/Transparency" name="TRANSPARENCY"
61
				action-command="TRANSPARENCY" icon="transparency-icon" />
62
			<tool-bar name="MenuZoom3D" position="6">
63
				<action-tool icon="zoom-selection-icon" action-command="ZOOM_SELECT"
64
					tooltip="Zoom_Select" position="1" />
65
				<action-tool icon="transparency-icon" name="TRANSPARENCY"
66
					action-command="TRANSPARENCY" tooltip="Transparency" position="2" />
67
			</tool-bar>
68
		</extension>
69
		
70
		<extension class-name="org.gvsig.gvsig3dgui.camera.Menu3D"
71
			description="Extensi?n encargada de abrir el menu de opciones 3D."
72
			active="true"
73
			priority="31">
74
			<menu text="Vista/navegacion/Encuadre" action-command="ENCUADRE"
75
				icon="encuadrator-icon" />
76
			<tool-bar name="Menu3D" position="7">
77
				<action-tool icon="encuadrator-icon" action-command="ENCUADRE"
78
					tooltip="gestion_encuadre" position="1" />
79
			</tool-bar>
80
		</extension>
81
		
82
		<extension class-name="org.gvsig.gvsig3dgui.display.DisplayMenu"
83
			description="Extensi?n encargada de abrir el menu de opciones de visualizaci?n."
84
			active="true" 
85
			priority="31">
86
			<menu text="Vista/Visualizaci?n/Opciones de Visualizaci?n"
87
				action-command="DISPLAY" icon="display-icon" />
88
			<tool-bar name="MenuVisualizacion" position="8">
89
				<action-tool icon="display-icon" action-command="DISPLAY"
90
					tooltip="Visualizacion" position="1" />
91
			</tool-bar>
92
		</extension>
93
		
94
		<extension class-name="org.gvsig.gvsig3dgui.display.FullScreenMenu"
95
			description="Extensi?n encargada de activar el modo de pantalla completa"
96
			active="true" 
97
			priority="31">
98
			<menu text="Vista/Visualizaci?n/Pantalla Completa"
99
				action-command="FULLSCREEN" icon="fullscreen-icon" />
100
			<tool-bar name="MenuFullScreen" position="8">
101
				<action-tool icon="fullscreen-icon" action-command="FULLSCREEN"
102
					tooltip="FullScreen" position="2" />
103
			</tool-bar>
104
		</extension>
105
		
106
		<extension class-name="org.gvsig.gvsig3dgui.display.ProjectionMode"
107
			description="Extensi?n encargada de cambiar el tipo de proyeccion entre Perspectiva y Ortogr?fica"
108
			active="true" 
109
			priority="31">
110
			<menu text="Vista/Visualizaci?n/Tipo de Proyeccion"
111
				action-command="PROJECTION" icon="projection-icon" />
112
			<tool-bar name="MenuProjection" position="8">
113
				<action-tool icon="projection-icon" action-command="PROJECTION"
114
					tooltip="Modo_de_Proyeccion" position="3" />
115
			</tool-bar>
116
		</extension>
117

  
118
		<extension class-name="org.gvsig.gvsig3dgui.display.EnableCompass"
119
			description="Extensi?n encargada de mostrar/ocultar la brujula"
120
			active="false"
121
			priority="31">
122
			<menu text="Vista/Visualizaci?n/Brujula" action-command="COMPASS" icon="compass-icon"/>
123
			<tool-bar name="EnableCompass" position="9">
124
				<action-tool icon="compass-icon" action-command="COMPASS"  tooltip="Modo de Brujula" position="2"/>
125
			</tool-bar>
126
		</extension>		
127
			
128
		<extension class-name="org.gvsig.gvsig3dgui.view.ViewPropertiesExtension3D"
129
			description="Extensi?n encargada de manejar de activar siempre al norte."
130
			active="true"
131
			priority="31">
132
			<menu text="Vista/propiedades" action-command="PROPERTIES" />
133
		</extension>
134
		
135
		<extension class-name="org.gvsig.gvsig3dgui.view.Export"
136
			description="Extensi?n encargada de exportar una vista al formato de imagen que se seleccione."
137
			active="true"
138
			priority="31">
139
			<menu text="Vista/Exportar/Imagen" />
140
		</extension>
141
		
142
		<extension class-name="org.gvsig.gvsig3dgui.import3D.CreateNewLayerOSG"
143
			description="Crear una nueva capa."
144
			active="true" 
145
			priority="31">
146
			<menu text="Vista/new_layer/new_osg" action-command="CREARCAPA" />
147
			<tool-bar name="DriverOSG" position="10">
148
				<action-tool icon="create_new_layer_OSG" action-command="CREARCAPA"
149
					tooltip="Crear_capa_osg" position="1" />
150
			</tool-bar>
151
		</extension>
152
		
153
		<extension class-name="org.gvsig.gvsig3dgui.import3D.MenuImport3D"
154
			description="Extensi?n encargada de importar objetos 3D no GIS."
155
			active="true" 
156
			priority="31">
157
			<menu text="Vista/import/Objeto_3D" action-command="OBJECT" />			
158
			<tool-bar name="DriverOSG" position="10">
159
				<action-tool icon="insert_new_geometry_OSG"
160
					action-command="OBJECT" tooltip="Importar" position="2" />				
161
			</tool-bar>
162
		</extension>
163
		
164
		<extension class-name="org.gvsig.gvsig3dgui.import3D.SaveLayerOSG"
165
			description="Salvar una capa." 
166
			active="true" 
167
			priority="31">
168
			<menu text="Vista/save_layer_osg" action-command="SALVARCAPA" />
169
			<tool-bar name="DriverOSG" position="10">
170
				<action-tool icon="save_layer_OSG" action-command="SALVARCAPA"
171
					tooltip="save_layer_osg" position="3" />
172
			</tool-bar>
173
		</extension>
174
		
175
		<extension class-name="org.gvsig.gvsig3dgui.manipulator.EnableManipulation3DExtension"
176
			description="Extensi?n encargada de activar la manipulaci?n de geometrias 3D."
177
			active="true" 
178
			priority="31">
179
			<tool-bar name="Editing_tools" position="11">
180
				<action-tool icon="enable_manipulator" name="ENABLE_MANIP" 
181
					action-command="ENABLE_MANIPULATOR" tooltip="enable_manipulator"
182
					position="1" />				
183
			</tool-bar>
184
		</extension>
185
		
186
		<extension class-name="org.gvsig.gvsig3dgui.manipulator.Manipulator3DExtension"
187
			description="Extensi?n encargada de la manipulaci?n de geometrias 3D."
188
			active="true" 
189
			priority="31">
190
			<tool-bar name="Editing_tools" position="12">
191
				<selectable-tool icon="tabbox_manipulator" name="TAB_MANIP"
192
					action-command="TABBOX_MANIPULATOR" tooltip="tabbox_manipulator"
193
					position="2" />
194
				<selectable-tool icon="rotation_manipulator" name="ROT_MANIP"
195
					action-command="ROTATION_MANIPULATOR" tooltip="rotation_manipulator"
196
					position="3" />				
197
				<action-tool icon="group_manip" name="GROUP_MANIP" 
198
					action-command="GROUP_MANIPULATOR" tooltip="group_manipulator"
199
					position="4" />
200
				<action-tool icon="ungroup_manip" name="UNGROUP_MANIP" 
201
					action-command="UNGROUP_MANIPULATOR" tooltip="ungroup_manipulator"
202
					position="5" />		
203
				<action-tool icon="delete_manip" name="DELETE_MANIP" 
204
					action-command="DELETE_MANIPULATOR" tooltip="delete_manipulator"
205
					position="6" />			
206
			</tool-bar>
207
		</extension>
208
		
209
		<extension class-name="org.gvsig.gvsig3dgui.layer.ViewSelectionControls3D"
210
			description="Extensi?n encargada de gestionar la vista." 
211
			active="true"
212
			priority="31">
213
			<menu text="Vista/seleccion/seleccionar_por_punto"
214
				action-command="SELPOINT" icon="view-select-geometry" />
215
			<menu text="Vista/seleccion/seleccionar_por_rectangulo"
216
				action-command="SELRECT" icon="view-select-by-rectangle" />
217
			<menu text="Vista/seleccion/seleccionar_por_poligono"
218
				action-command="SELPOL" icon="view-select-by-polygon" />
219
			<menu text="Vista/seleccion/Seleccion_por_capa" action-command="SELECTIONBYSHAPE" />
220
			<menu text="Vista/seleccion/separator" action-command="separator"
221
				is_separator="true" />
222
			<menu text="Vista/seleccion/invert_selection" action-command="INVERT_SELECTION"
223
				icon="view-select-invert" />
224
			<tool-bar name="Tools_Select" position="18">
225
				<selectable-tool icon="view-select-geometry"
226
					action-command="SELPOINT" tooltip="seleccionar_por_punto" position="1" />
227
				<selectable-tool icon="view-select-by-rectangle"
228
					action-command="SELRECT" tooltip="seleccionar_por_rectangulo"
229
					position="2" />
230
				<selectable-tool icon="view-select-by-polygon"
231
					action-command="SELPOL" tooltip="seleccionar_por_poligono"
232
					position="3" />
233
				<action-tool icon="view-select-invert" action-command="INVERT_SELECTION"
234
					tooltip="invert_selection" position="4" />
235
			</tool-bar>
236
		</extension>
237
		
238
		<extension class-name="org.gvsig.gvsig3dgui.legend.Legend3DExtension"
239
			description="Extensi?n para nuevas leyendas 3D." 
240
			active="true"
241
			priority="31">
242
		</extension>
243
		
244
		<extension class-name="org.gvsig.gvsig3dgui.layout.layout3DExtension"
245
			description="Extensi?n encargada del layout para 3D." 
246
			active="true"
247
			priority="31">
248
			<menu text="Mapa/insert_3D_view" action-command="INSERT_3D_VIEW"
249
				icon="insert_3d_view_map" />
250
			<tool-bar name="Layout_Tools_Insert_Cartografy" position="9">
251
				<selectable-tool icon="insert_3d_view_map"
252
					action-command="INSERT_3D_VIEW" tooltip="insert_3d_view_map"
253
					position="1" />
254
			</tool-bar>
255
		</extension>
256
		
257
		<extension class-name="org.gvsig.gvsig3dgui.AboutExtension3D"
258
			description="Extension to add about panel." 
259
			active="true" 
260
			priority="1">
261
		</extension>
262
		
263
		<extension class-name="org.gvsig.gvsig3dgui.layer.properties.Module3D"
264
			description="M?dulo adaptador para la librer?a de raster." 
265
			active="true"
266
			priority="31">
267
		</extension>
268
		
269
		<skin-extension class-name="org.gvsig.gvsig3dgui.skin.JDialogSkin">
270
		</skin-extension>
271
		
272
	</extensions>
273
</plugin-config>
1.10/tags/gvSIG_3D_Animation_1_10_build_15/extensions/ext3Dgui/config/text.properties
1
#text.properties
2
0=0
3
1=1
4
2X=2X
5
4X=4X
6
Ac_north=Activar
7
Accept=Aceptar
8
Activar_intervalo=Activar intervalo
9
Activar_profundidad_maxima=Activar profundidad m\u00E1xima
10
Activar_WOW=Activar monitor Phillips WOW
11
Active_north=Siempre al norte
12
Altura_en_metros=Altura en metros
13
Altura_fija=Altura fija
14
Anaglyphic=Anaglifo
15
Antialiasing=Antialiasing
16
Apply=Aplicar
17
AWT=Si
18
Azimut_Navigation=Inclinaci\u00F3n
19
Background_Color=Color de fondo\:
20
Cancel=Cancelar
21
Capa_Raster=Capa Raster
22
Capa_Vectorial=Capa Vectorial
23
Check_Text=Visualizaci\u00F3n frames
24
Close=Cerrar
25
Commentaries=Comentarios\:
26
Crear_capa_osg=Crear nueva capa OSG
27
Creation_Date=Fecha de creacion\:
28
Default_Navigation=Navegaci\u00F3n combinada
29
delete_manipulator=Eliminar selecci\u00F3n
30
Des_north=Desactivar
31
disable_3d_edition=Desactivar edici\u00F3n de objetos 3D
32
Display=Propiedades de Visualizaci\u00F3n
33
Distancia_interocular=Distancia interocular
34
Distancia_pantalla=Distancia a la pantalla
35
East=E
36
editable_layer_select=Capa no selecionada o capa no v\u00E1lida
37
editable_layer_select_info=Selecciona una capa editable OSG
38
edited_layer=La capa ha sido puesta en edici\u00F3n
39
Elegir_pantalla=Elegir pantalla
40
Elevacion=Elevaci\u00F3n
41
Elevation_layer_question=\u00BFDesea usar esta capa como elevaci\u00F3n (Si/No)?
42
enable_3d_edition=Activar edici\u00F3n de objetos 3D
43
enable_manipulator=Activar modo de edici\u00F3n de objetos 3D
44
enter_layer_path=Introduzca la ruta para guardar la capa OSG
45
EscaladoX=EscaladoX\:
46
EscaladoY=EscaladoY\:
47
EscaladoZ=EscaladoZ\:
48
Examine=Examinar
49
Ext3D.latitude=LAT 
50
Ext3D.longitude=LONG
51
Extrusion=Extrusi\u00F3n
52
Factor=Factor
53
File=Fichero
54
Flat=Plana
55
FullScreen=Pantalla Completa
56
geometry_not_supported=Geometr\u00EDa no soportada
57
GL=No
58
group_manipulator= Agrupar objetos
59
ungroup_manipulator= Desagrupar objetos
60
HeadMounted=Casco Visor
61
Heigth_layer_question=Altura de los vectores (en metros)
62
Heigth_Z=Valor Z asociado a la capa
63
Hight=Altura\:
64
Hold_Control_Camera= CTRL + raton para mover la camara
65
HorizontalInterlace=Entrelazado Horizontal
66
HorizontalSplit=Split Horizontal
67
Importar=Importar
68
Importar_Objeto_3D=Importar Objeto 3D
69
Importar_Objeto_3D_Vectorial=Importar Objeto 3D Vectorial
70
Increm_distancia_fusion=Incrementar distancia de fusi\u00F3n
71
info_extrusion=Acceso a campos num\u00E9ricos de capas vectoriales, aplicando un nivel de extrusi\u00F3n individual o fijo.
72
Informacion=Informac\u00F3n
73
initial_canvas_warning=Menu Ventana; Preferencias\: menu 3D, deshabilitar la compatibilidad con Java / Swing.
74
initial_skin_warning=Menu Ventana-&gt;Preferencias\: menu General-&gt;Skin seleccionar el JdialogSkin o DockingSkin</HTML>
75
initial_warning_3D=\u00A1ATENCI\u00D3N\! \nLa extension 3D podria no mostrarse correctamente. Por favor realice las siguientes operaciones\:
76
input_object_info=Inserte la posicion del objeto manualmente o pulse sobre la vista:
77
Label_Duration=Duraci\u00F3n
78
Label_Mode=Modo
79
Latitude=Latitud\:
80
Layer_options=Opciones de capa 3D
81
Layer_Properties=Propiedades de la capa.
82
Layer_Refresh=Refrescar la capa
83
Layer3D=Layer3D
84
LeftEye=Ojo Izquierdo
85
Longitude=Longitud\:
86
modified_layer=La capa ha sido modificada, recuerde salvar los cambios.
87
Modo_de_Proyeccion=Modo de proyecci\u00F3n
88
Modo_ventana=Modo ventana
89
Monitor=Monitor
90
Name=Nombre\:
91
new_layer=Nueva capa
92
new_osg=Nuevo OSG
93
Nivel_de_detalle=Nivel de detalle
94
Nivel_de_extrusion=Nivel de extrusi\u00F3n
95
Nivel_de_extrusi\u00F3n=Nivel de extrusi\u00F3n
96
No_available=Servicio no disponible
97
no_file=Fichero no introducido
98
no_file2=Fichero no encontrado
99
no_root=La ruta no existe
100
None=Ninguno
101
North=N
102
North_plane=Esta herramienta no est\u00E1 disponible en vista plana
103
Objeto_3D=Objeto 3D
104
Objeto_3D_GIS=Objeto 3D GIS
105
Objeto_3D_GIS_Vectorial=Objeto 3D GIS Vectorial
106
ObtainPoint = Obteniendo punto de informaci\u00F3n
107
Offset=Offset
108
Only_one_elevation_messg=Ya existe una capa de elevaci\u00F3n en la vista.
109
Only_one_elevation_title=Informaci\u00F3n sobre capa de elevaci\u00F3n
110
Opaco=Opaco
111
Opciones=Opciones
112
Opciones_de_elevaci\u00F3n=Opciones de elevaci\u00F3n
113
Opciones_de_imagen=Opciones de imagen
114
Opciones_de_objeto=Posici\u00F3n del objeto
115
Owner=Propietario\:
116
Pan_Navigation=Desplazamiento
117
Pegado_sobre_el_terreno=Pegado sobre el terreno
118
Posicion_origen=Posici\u00F3n origen
119
PowerWall=PowerWall
120
Propiedades_3D=Propiedades 3D
121
Proyection_Select=Seleccione tipo\:
122
QuadBuffer=Quad Buffer (S\u00F3lo Pant. Completa)
123
Quadbuffer_error=Modo Quad Buffer no soportado por su tarjeta gr\u00E1fica.
124
Rango_maximo=Rango m\u00E1ximo
125
Rango_minimo=Rango m\u00EDnimo
126
Raster_layer=Rasterizar la capa
127
Rasterize_layer_question=\u00BFDesea rasterizar la capa (Si/No)?
128
RealityCenter=Centro de Realidad Virtual 
129
Refresh_automaticaly=Refrescar la vista automaticamente
130
remember_save_layer=IMPORTANTE: Recuerde guardar la capa al terminar la edici\u00F3n
131
Reset_View=Zoom completo
132
Resolucion=Resoluci\u00F3n
133
RightEye=Ojo Derecho
134
root_in=Introduce o selecciona un fichero
135
Rotation=Rotaci\u00F3n\:
136
Rotation_degreesX=Rotaci\u00F3n(grados)X\:
137
Rotation_degreesY=Rotaci\u00F3n(grados)Y\:
138
Rotation_degreesZ=Rotaci\u00F3n(grados)Z\:
139
rotation_manipulator=Manipulador de rotaci\u00F3n
140
Ruta_manual=Introducir ruta
141
save_layer_osg=Salvar capa OSG
142
saved_layer_ok=La capa se ha guardado correctamente
143
saved_layer_error=Error al guardar la capa
144
Select_Color=Seleccion de color
145
show_3Dview=Vista 3D
146
Sincronizar_camaras=Sincronizar c\u00E1maras
147
South=S
148
Spherical=Esferica
149
Swing_Compability=Activar compatibilidad con Java / Swing
150
tabbox_manipulator=Manipulador de caja
151
Text_Secs=Duraci\u00F3n(segs)
152
Tipo_pantalla=Tipo de pantalla
153
Transparency=Transparencia de la capa
154
Transparente=Transparente
155
Valor_extrusionado=Valor extrusionado
156
Valor_inicial=Valor inicial
157
Valor_maximo_de_escala=Valor m\u00E1ximo de escala
158
Valor_minimo_de_escala=Valor m\u00EDnimo de escala
159
Vertical_Exageration=Exageraci\u00F3n vertical\:
160
VerticalInterlace=Entrelazado Vertical
161
view_3D_properties=Propiedades de la vista 3D
162
Vista3D=Vista 3D
163
Visualizacion_estereo=Visualizaci\u00F3n est\u00E9reo
164
West=O
165
Window_Title=Controles de animaci\u00F3n
166
Wire_Frame=Wire Frame
167
X=X
168
Y=Y
169
Zoom_Navigation=Zoom
170
>>>>>>> .r32373
1.10/tags/gvSIG_3D_Animation_1_10_build_15/extensions/ext3Dgui/config/about.htm
1
<html>
2
  <head>
3
    <title>Extension 3D del programa GvSIG </title>
4
    <meta content="">
5
    <style></style>
6
  </head>
7
  <body>
8
<table width="60%" border="0">
9
  <tr>
10
    <td width="50%"><div align="right"><img src="images/logoIver.png" width="87" height="50"></div></td>
11
    <td width="50%"><img src="logo_ai2.jpg"></td>
12
  </tr>
13
  <tr>
14
    <td colspan="2"><font face="Arial, Helvetica, sans-serif">&copy; Copyright
15
      Generalitat Valenciana, IVER T.I and AI2 2008.</font></td>
16
  </tr>
17
</table>
18
  <h2>Plugin 3D para gvSIG</h2>	
19
		<p><b>Iver T.I y AI2</b> ha a&ntilde;adido la <b>Extensi&oacute;n 3D</b>
20
		 a GvSIG.</p>
21
		
22
		<p><b>Desarrollo:</b></p>
23
		
24
		<p>Directores del proyecto:</p>
25
		<ul>
26
			<li>Salvador Bayarri</li>
27
			<li>Javier Lluch</li>
28
		</ul>
29
		<p>Equipo de desarrollo:</p>
30
		<ul>
31
			<li>Rafael Gait&aacute;n,</li>
32
			<li>Julio Campos,</li>
33
			<li>Jordi Torres,</li>
34
			<li>Mar&iacute;a Ten,</li>
35
			<li>Angel Fraile,</li>
36
			<li>Jes&uacute;s Zarzoso</li>
37
		</ul>
38
  <p><b> Build Number: 15</b></p>
39
  </body>
40
</html>
1.10/tags/gvSIG_3D_Animation_1_10_build_15/extensions/ext3Dgui/config/text_en.properties
1
#text_en.properties
2
0=0
3
1=1
4
2X=2X
5
4X=4X
6
Ac_north=Activate
7
Accept=Accept
8
Activar_intervalo=Activate interval
9
Activar_profundidad_maxima=Activate maximum depth
10
Activar_WOW=Enable Phillips WOW display
11
Active_north=Always to North
12
Altura_en_metros=Height in meters
13
Altura_fija=Fixed Height
14
Anaglyphic=Anaglyphic
15
Antialiasing=Antialiasing
16
Apply=Apply
17
AWT=Yes
18
Azimut_Navigation=Incline
19
Background_Color=Background color
20
Cancel=Cancel
21
Capa_Raster=Raster Layer
22
Capa_Vectorial=Vectorial layer
23
Check_Text=Frame visualization
24
Close=Close
25
Commentaries=Comments
26
Crear_capa_osg=Create new OSG Layer
27
Creation_Date=Creation date
28
Default_Navigation=Default navigation
29
delete_manipulator=Delete selection
30
Des_north=Disable
31
disable_3d_edition=Disable 3D objects edition
32
Display=Visualization Properties
33
Distancia_interocular=Interocular distance
34
Distancia_pantalla=Distance to display
35
East=E
36
editable_layer_select=Layer not selected or invlaid layer
37
editable_layer_select_info=Select an editable OSG layer
38
edited_layer=Layer is in edition mode
39
Elegir_pantalla=Choose display
40
Elevacion=Elevation
41
Elevation_layer_question=Use this layer as elevation layer(Yes/No)?
42
enable_3d_edition=Enable 3D objects edition
43
enable_manipulator=Enable 3D objects edition mode
44
enter_layer_path=Select the path to save OSG layer
45
EscaladoX=ScaleX\:
46
EscaladoY=ScaleY\:
47
EscaladoZ=ScaleZ\:
48
Examine=Examine
49
Ext3D.latitude=LAT
50
Ext3D.longitude=LONG
51
Extrusion=Extrusion
52
Factor=Factor
53
File=File
54
Flat=Flat
55
FullScreen=Full screen
56
geometry_not_supported=Geometry not supported
57
GL=No
58
group_manipulator= Group objects
59
ungroup_manipulator= Ungroup objects
60
HeadMounted=Head mounted display
61
Heigth_layer_question=Vector height (in meters)
62
Heigth_Z=Z Value associated to the layer
63
Hight=Height\:
64
Hold_Control_Camera= CTRL + mouse to move the camera
65
HorizontalInterlace=Horizontal interlaced
66
HorizontalSplit=Horizontal Split
67
Importar=Import
68
Importar_Objeto_3D=Import 3D Object
69
Importar_Objeto_3D_Vectorial=Import 3D vectorial Object
70
Increm_distancia_fusion=Increase fusion distance
71
info_extrusion=Access to numeric fields in vectorial layers, applying a fixed or individual extrusion level
72
Informacion=Information
73
initial_canvas_warning=Menu Window;Preferences\: menu3D,  disable Java/swing compatibility. 
74
initial_warning_3D=ATTENTION \n 3D extension could not work correctly. Please execute the next operations\:
75
input_object_info=Set the object coordinates manually or click on the view:
76
Label_Mode=Mode
77
Latitude=Latitude\:
78
Layer_options=3D Layer options
79
Layer_Properties=Layer properties
80
Layer_Refresh=Layer refresh
81
Layer3D=Layer3D
82
LeftEye=Left eye
83
Longitude=Longitude
84
modified_layer=The layer has been modified, remember to save the changes.
85
Modo_de_Proyeccion=Projection Mode
86
Modo_ventana=Window mode
87
Monitor=Monitor
88
Name=Name\:
89
new_layer=New layer
90
new_osg=New OSG
91
Nivel_de_detalle=Level of detail
92
Nivel_de_extrusion=Extrusion level
93
Nivel_de_extrusi\u00F3n=Extrusion level
94
No_available=Service not available
95
no_file=File not inserted
96
no_root=The path does not exist. 
97
None=None
98
North=N
99
North_plane=This tool is not available in plane view
100
Objeto_3D=3D object
101
Objeto_3D_GIS=3D GIS Object
102
Objeto_3D_GIS_Vectorial=3D Vectorial GIS Object
103
ObtainPoint = Obtaining information point
104
Offset=Offset
105
Only_one_elevation_messg=A elevation layer already exists in View3D
106
Only_one_elevation_title=Elevation Layer information
107
Opaco=Opaque
108
Opciones=Options
109
Opciones_de_elevaci\u00F3n=Elevation options
110
Opciones_de_imagen=Image options
111
Opciones_de_objeto=Object position
112
Owner=Owner\:
113
Pan_Navigation=Pan
114
Pegado_sobre_el_terreno=Stuck in terrain
115
Posicion_origen=Origin position
116
PowerWall=PowerWall
117
Propiedades_3D=3D Properties
118
Proyection_Select=Select type
119
QuadBuffer=Quad buffer (Only FullScreen)
120
Quadbuffer_error=Quad Buffer mode not supported by the graphics hardware.
121
Rango_maximo=Maximum range
122
Rango_minimo=Minimu range
123
Raster_layer=Rasterize layer
124
Rasterize_layer_question=Do you want to rasterize Layer (Yes/No)?
125
RealityCenter=Reality center
126
Refresh_automaticaly=Refresh view automatically
127
remember_save_layer=WARNING: Do not forget save layer after edition!
128
Reset_View=Reset view
129
Resolucion=Resolution
130
RightEye=Right eye
131
root_in=Select or insert a file
132
Rotation=Rotation\:
133
Rotation_degreesX=Rotation (degrees)X\:
134
Rotation_degreesY=Rotation (degrees)Y\:
135
Rotation_degreesZ=Rotation (degrees)Z\:
136
rotation_manipulator=Rotation manipulator
137
Ruta_manual=Insert path
138
save_layer_osg=Save OSG layer
139
saved_layer_ok=The layer has been successfully saved
140
saved_layer_error=Error saving a layer
141
Select_Color=Select color
142
show_3Dview=View 3D
143
Sincronizar_camaras=Synchronize cameras
144
South=S
145
Spherical=Spherical
146
Swing_Compability=Enable Java/Swing compatibility
147
tabbox_manipulator=Tabbox manipulator
148
Text_Secs=Duration (secs)
149
Tipo_pantalla=Display type
150
Transparency=Transparency
151
Transparente=Transparent
152
Valor_extrusionado=Extruded value
153
Valor_inicial=Initial value
154
Valor_maximo_de_escala=Maximum scale value
155
Valor_minimo_de_escala=Minimum scale value
156
Vertical_Exageration=Vertical exaggeration
157
VerticalInterlace=Vertical interlaced
158
view_3D_properties=VIew 3D properties
159
Vista3D=View 3D
160
Visualizacion_estereo=Stereo visualization
161
West=W
162
Window_Title=Animation controls
163
Wire_Frame=Wire Frame
164
X=X
165
Y=Y
166
Zoom_Navigation=Zoom
1.10/tags/gvSIG_3D_Animation_1_10_build_15/extensions/ext3Dgui/doc/config_eclipse.html
1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
2
<HTML>
3
<HEAD>
4
	<META HTTP-EQUIV="CONTENT-TYPE" CONTENT="text/html; charset=utf-8">
5
	<TITLE>Configuraci&oacute;n del arranque de gvSIG dentro de eclipse con 3D</TITLE>
6
</HEAD>
7
<BODY LANG="es-ES" DIR="LTR">
8
<H2>Plugin de 3D para gvSIG:</H2>
9
<H3>Cambios en la configuraci&oacute;n del arranque
10
de gvSIG para que funcione el plugin:</H3>
11
<P ALIGN=JUSTIFY>El plugin de 3D requiere unas librer&iacute;as en el
12
<I>classpath</I> de arranque de <I>andami</I> y para no tener que
13
modificar las propiedades del proyecto, vamos a explicar los cambios en la
14
configuraci&oacute;n del <I>Run</I> para que arranque la aplicaci&oacute;n correctamente:</P>
15
<ol>
16
  <li>Abrir la configuraci&oacute;n del <I>Run</I>.</li>
17
  <li>Pestaña <b><i>Classpath</i></b> </li>
18
  <li>Pinchar sobre el elemento de la lista <i>User entries</i></li>
19
  <li>Bot&oacute;n <i>Add Jars...</i></li>
20
  <li>De <i>_fwAndami/lib</i> seleccionar los siguientes proyectos<BR>
21
  	<ul>
22
  		<li>jogl*.jar</li>
23
  		<li>libosg-*.jar</li>
24
  		<li>libNative-*.jar</li>
25
  		<li>gluegen-rt-*.jar</li>
26
  	</ul>
27
  </li>
28
</ol>
29
</BODY>
30
</HTML>
1.10/tags/gvSIG_3D_Animation_1_10_build_15/extensions/ext3Dgui/generate-install.sh
1
#!/bin/sh
2

  
3
#echo  CONFIGURING BASE PROJECTS  
4
#echo  CONFIGURING BASE PROJECTS  
5
#echo  CONFIGURING BASE PROJECTS  
6
#cd ../build/projects/gvsig-plugin-base
7
#mvn clean
8
#mvn install -Dmaven.test.skip
9
#mvn clean
10
rm -rf ../build/product/gvSIG
11
echo CLEANING  3D  PROJECTS
12
echo CLEANING  3D  PROJECTS  
13
echo CLEANING  3D  PROJECTS
14
cd ../build/projects/gvsig-plugin-3D
15
mvn clean
16
echo  CLEANING ANIMATION PROJECTS  
17
echo  CLEANING ANIMATION PROJECTS  
18
echo  CLEANING ANIMATION PROJECTS  
19
cd ../gvsig-plugin-animation
20
mvn clean
21
echo  CONFIGURING 3D PROJECTS  
22
echo  CONFIGURING 3D PROJECTS  
23
echo  CONFIGURING 3D PROJECTS  
24
cd ../gvsig-plugin-3D
25
mvn install -Dmaven.test.skip -Dinstall-extension
26
echo  CONFIGURING ANIMATION PROJECTS  
27
echo  CONFIGURING ANIMATION PROJECTS  
28
echo  CONFIGURING ANIMATION PROJECTS  
29
cd ../gvsig-plugin-animation
30
mvn install -Dmaven.test.skip -Dinstall-extension
31
echo  GENERATING INSTALLER  
32
echo  GENERATING INSTALLER  
33
echo  GENERATING INSTALLER  
34
cd ../../../ext3Dgui
35
mvn install -Dmaven.test.skip -Dgenerate-install
36
#cp /home/jtorres/Projects/gvsig-1.9-branch/_fwAndami/gvSIG/extensiones/com.iver.cit.gvsig/lib/org.gvsig.raster.jar ../build/product/gvSIG/extensiones/com.iver.cit.gvsig/lib
37
#mvn install -Dmaven.test.skip -Dgenerate-install
38

  
1.10/tags/gvSIG_3D_Animation_1_10_build_15/extensions/ext3Dgui/gen_simb_link.sh
1
export BINARIES_3D=$PWD/../binaries/linux/3D;
2
echo $BINARIES_3D;
3
cd $HOME/.depman/lib
4
find . -type l -exec ls -l {} ';' |sed 's/.*[.][/]//g' | sed 's/\(.*\) -> \(.*\)$/ln -sf \2 \1/g' > $BINARIES_3D/install-3D.tmp ;
5
cat $BINARIES_3D/install-3D.sh.head $BINARIES_3D/install-3D.tmp > $BINARIES_3D/install-3D.sh ;
6
chmod +x $BINARIES_3D/install-3D.sh
7
rm -f $BINARIES_3D/install-3D.tmp
0 8

  
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff