コード例 #1
0
        protected void legacyRestoreState(RestorableSupport rs, RestorableSupport.StateObject context)
        {
            super.legacyRestoreState(rs, context);

            // Previous versions of SurfaceQuad used half-width and half-height properties. We are now using standard
            // width and height, so these restored values must be converted.
            Double width  = rs.getStateValueAsDouble(context, "halfWidth");
            Double height = rs.getStateValueAsDouble(context, "halfHeight");

            if (width != null && height != null)
            {
                this.setSize(2 * width, 2 * height);
            }

            // This property has not changed since the previos version, but it's shown here for reference.
            //LatLon center = rs.getStateValueAsLatLon(context, "center");
            //if (center != null)
            //    this.setCenter(center);

            Double od = rs.getStateValueAsDouble(context, "orientationDegrees");

            if (od != null)
            {
                this.setHeading(Angle.fromDegrees(od));
            }
        }
コード例 #2
0
        protected void doRestoreState(RestorableSupport rs, RestorableSupport.StateObject context)
        {
            // Invoke the legacy restore functionality. This will enable the shape to recognize state XML elements
            // from previous versions of BasicOrbitView.
            this.legacyRestoreState(rs, context);

            base.doRestoreState(rs, context);

            // Restore the center property only if all parts are available.
            // We will not restore a partial center (for example, just latitude).
            RestorableSupport.StateObject so = rs.getStateObject(context, "center");
            if (so != null)
            {
                Double lat = rs.getStateValueAsDouble(so, "latitude");
                Double lon = rs.getStateValueAsDouble(so, "longitude");
                Double ele = rs.getStateValueAsDouble(so, "elevation");
                if (lat != null && lon != null)
                {
                    this.setCenterPosition(Position.fromDegrees(lat, lon, (ele != null ? ele : 0)));
                }
            }

            Double d = rs.getStateValueAsDouble(context, "zoom");

            if (d != null)
            {
                this.setZoom(d);
            }
        }
コード例 #3
0
ファイル: Offset.cs プロジェクト: zhj149/WorldWindJava.NET
        /**
         * Restores the state of any offset parameters contained in the specified <code>RestorableSupport</code>. If the
         * <code>StateObject</code> is not <code>null</code> it's searched for state values, otherwise the
         * <code>RestorableSupport</code> root is searched.
         *
         * @param restorableSupport the <code>RestorableSupport</code> that contains the offset's state.
         * @param context           the <code>StateObject</code> to search for state values, if not <code>null</code>.
         *
         * @throws ArgumentException if <code>restorableSupport</code> is <code>null</code>.
         */
        public void restoreState(RestorableSupport restorableSupport, RestorableSupport.StateObject context)
        {
            if (restorableSupport == null)
            {
                String message = Logging.getMessage("nullValue.RestorableSupportIsNull");
                Logging.logger().severe(message);
                throw new ArgumentException(message);
            }

            Double d = restorableSupport.getStateValueAsDouble(context, "x");

            if (d != null)
            {
                this.setX(d);
            }

            d = restorableSupport.getStateValueAsDouble(context, "y");
            if (d != null)
            {
                this.setY(d);
            }

            String s = restorableSupport.getStateValueAsString(context, "xUnits");

            if (s != null)
            {
                this.setXUnits(s);
            }

            s = restorableSupport.getStateValueAsString(context, "yUnits");
            if (s != null)
            {
                this.setYUnits(s);
            }
        }
コード例 #4
0
        protected void doRestoreState(RestorableSupport rs, RestorableSupport.StateObject context)
        {
            super.doRestoreState(rs, context);

            LatLon ll = rs.getStateValueAsLatLon(context, "center");

            if (ll != null)
            {
                this.setCenter(ll);
            }

            Double d = rs.getStateValueAsDouble(context, "width");

            if (d != null)
            {
                this.setWidth(d);
            }

            d = rs.getStateValueAsDouble(context, "height");
            if (d != null)
            {
                this.setHeight(d);
            }

            d = rs.getStateValueAsDouble(context, "headingDegrees");
            if (d != null)
            {
                this.setHeading(Angle.fromDegrees(d));
            }
        }
コード例 #5
0
        protected void doRestoreState(RestorableSupport rs, RestorableSupport.StateObject context)
        {
            // Restore the property limits and collision detection flags before restoring the view's position and
            // orientation. This has the effect of ensuring that the view's position and orientation are consistent with the
            // current property limits and the current surface collision state.

            RestorableSupport.StateObject so = rs.getStateObject(context, "viewPropertyLimits");
            if (so != null)
            {
                this.getViewPropertyLimits().restoreState(rs, so);
            }

            Boolean b = rs.getStateValueAsBoolean(context, "detectCollisions");

            if (b != null)
            {
                this.setDetectCollisions(b);
            }

            Double d = rs.getStateValueAsDouble(context, "fieldOfView");

            if (d != null)
            {
                this.setFieldOfView(Angle.fromDegrees(d));
            }

            d = rs.getStateValueAsDouble(context, "nearClipDistance");
            if (d != null)
            {
                this.setNearClipDistance(d);
            }

            d = rs.getStateValueAsDouble(context, "farClipDistance");
            if (d != null)
            {
                this.setFarClipDistance(d);
            }

            Position p = rs.getStateValueAsPosition(context, "eyePosition");

            if (p != null)
            {
                this.setEyePosition(p);
            }

            d = rs.getStateValueAsDouble(context, "heading");
            if (d != null)
            {
                this.setHeading(Angle.fromDegrees(d));
            }

            d = rs.getStateValueAsDouble(context, "pitch");
            if (d != null)
            {
                this.setPitch(Angle.fromDegrees(d));
            }
        }
コード例 #6
0
        public void restoreState(RestorableSupport rs, RestorableSupport.StateObject context)
        {
            base.restoreState(rs, context);

            Sector sector = rs.getStateValueAsSector(context, "centerLocationLimits");

            if (sector != null)
            {
                this.setCenterLocationLimits(sector);
            }

            // Min and max center elevation.
            double[] minAndMaxValue = this.getCenterElevationLimits();
            Double   min            = rs.getStateValueAsDouble(context, "minCenterElevation");

            if (min != null)
            {
                minAndMaxValue[0] = min;
            }

            Double max = rs.getStateValueAsDouble(context, "maxCenterElevation");

            if (max != null)
            {
                minAndMaxValue[1] = max;
            }

            if (min != null || max != null)
            {
                this.setCenterElevationLimits(minAndMaxValue[0], minAndMaxValue[1]);
            }

            // Min and max zoom value.
            minAndMaxValue = this.getZoomLimits();
            min            = rs.getStateValueAsDouble(context, "minZoom");
            if (min != null)
            {
                minAndMaxValue[0] = min;
            }

            max = rs.getStateValueAsDouble(context, "maxZoom");
            if (max != null)
            {
                minAndMaxValue[1] = max;
            }

            if (min != null || max != null)
            {
                this.setZoomLimits(minAndMaxValue[0], minAndMaxValue[1]);
            }
        }
コード例 #7
0
        /**
         * Restores the state of any size parameters contained in the specified <code>RestorableSupport</code>. If the
         * <code>StateObject</code> is not <code>null</code> it's searched for state values, otherwise the
         * <code>RestorableSupport</code> root is searched.
         *
         * @param restorableSupport the <code>RestorableSupport</code> that contains the size's state.
         * @param context           the <code>StateObject</code> to search for state values, if not <code>null</code>.
         *
         * @throws ArgumentException if <code>restorableSupport</code> is <code>null</code>.
         */
        public void restoreState(RestorableSupport restorableSupport, RestorableSupport.StateObject context)
        {
            if (restorableSupport == null)
            {
                String message = Logging.getMessage("nullValue.RestorableSupportIsNull");
                Logging.logger().severe(message);
                throw new ArgumentException(message);
            }

            RestorableSupport.StateObject so = restorableSupport.getStateObject(context, "width");
            if (so != null)
            {
                String mode = restorableSupport.getStateValueAsString(so, "mode");
                mode = convertLegacyModeString(mode);

                Double param = restorableSupport.getStateValueAsDouble(so, "param");
                String units = restorableSupport.getStateValueAsString(so, "units");

                // Restore the width only when the mode and param are specified. null is an acceptable value for units.
                if (mode != null && param != null)
                {
                    this.setWidth(mode, param, units);
                }
            }

            so = restorableSupport.getStateObject(context, "height");
            if (so != null)
            {
                String mode = restorableSupport.getStateValueAsString(so, "mode");
                mode = convertLegacyModeString(mode);

                Double param = restorableSupport.getStateValueAsDouble(so, "param");
                String units = restorableSupport.getStateValueAsString(so, "units");

                // Restore the height only when the mode and param are specified. null is an acceptable value for units.
                if (mode != null && param != null)
                {
                    this.setHeight(mode, param, units);
                }
            }
        }
コード例 #8
0
        public Material restoreState(RestorableSupport rs, RestorableSupport.StateObject so)
        {
            double shininess = this.getShininess();
            Double d         = rs.getStateValueAsDouble(so, "shininess");

            if (d != null)
            {
                shininess = d;
            }

            String as = rs.getStateValueAsString(so, "ambient");
            Color ambient = RestorableSupport.decodeColor(as);

            if (ambient == null)
            {
                ambient = this.getAmbient();
            }

            String ds      = rs.getStateValueAsString(so, "diffuse");
            Color  diffuse = RestorableSupport.decodeColor(ds);

            if (diffuse == null)
            {
                diffuse = this.getDiffuse();
            }

            String ss       = rs.getStateValueAsString(so, "specular");
            Color  specular = RestorableSupport.decodeColor(ss);

            if (specular == null)
            {
                specular = this.getSpecular();
            }

            String es       = rs.getStateValueAsString(so, "emission");
            Color  emission = RestorableSupport.decodeColor(es);

            if (emission == null)
            {
                emission = this.getEmission();
            }

            return(new Material(specular, diffuse, ambient, emission, (float)shininess));
        }
コード例 #9
0
        protected static void legacyWmsRestoreStateToParams(RestorableSupport rs, RestorableSupport.StateObject context,
                                                            AVList parameters)
        {
            // WMSTiledImageLayer has historically used a different format for storing LatLon and Sector properties
            // in the restorable state XML documents. Although WMSTiledImageLayer no longer writes these properties,
            // we must provide support for reading them here.
            Double lat = rs.getStateValueAsDouble(context, AVKey.LEVEL_ZERO_TILE_DELTA + ".Latitude");
            Double lon = rs.getStateValueAsDouble(context, AVKey.LEVEL_ZERO_TILE_DELTA + ".Longitude");

            if (lat != null && lon != null)
            {
                parameters.setValue(AVKey.LEVEL_ZERO_TILE_DELTA, LatLon.fromDegrees(lat, lon));
            }

            Double minLat = rs.getStateValueAsDouble(context, AVKey.SECTOR + ".MinLatitude");
            Double minLon = rs.getStateValueAsDouble(context, AVKey.SECTOR + ".MinLongitude");
            Double maxLat = rs.getStateValueAsDouble(context, AVKey.SECTOR + ".MaxLatitude");
            Double maxLon = rs.getStateValueAsDouble(context, AVKey.SECTOR + ".MaxLongitude");

            if (minLat != null && minLon != null && maxLat != null && maxLon != null)
            {
                parameters.setValue(AVKey.SECTOR, Sector.fromDegrees(minLat, maxLat, minLon, maxLon));
            }
        }
コード例 #10
0
        /** {@inheritDoc} */
        public void restoreState(RestorableSupport rs, RestorableSupport.StateObject so)
        {
            if (rs == null)
            {
                String message = Logging.getMessage("nullValue.RestorableSupportIsNull");
                Logging.logger().severe(message);
                throw new ArgumentException(message);
            }

            Boolean b = rs.getStateValueAsBoolean(so, "drawInterior");

            if (b != null)
            {
                this.setDrawInterior(b);
            }

            b = rs.getStateValueAsBoolean(so, "drawOutline");
            if (b != null)
            {
                this.setDrawOutline(b);
            }

            b = rs.getStateValueAsBoolean(so, "enableAntialiasing");
            if (b != null)
            {
                this.setEnableAntialiasing(b);
            }

            b = rs.getStateValueAsBoolean(so, "enableLighting");
            if (b != null)
            {
                this.setEnableLighting(b);
            }

            RestorableSupport.StateObject mo = rs.getStateObject(so, "interiorMaterial");
            if (mo != null)
            {
                this.setInteriorMaterial(this.getInteriorMaterial().restoreState(rs, mo));
            }

            mo = rs.getStateObject(so, "outlineMaterial");
            if (mo != null)
            {
                this.setOutlineMaterial(this.getOutlineMaterial().restoreState(rs, mo));
            }

            Double d = rs.getStateValueAsDouble(so, "interiorOpacity");

            if (d != null)
            {
                this.setInteriorOpacity(d);
            }

            d = rs.getStateValueAsDouble(so, "outlineOpacity");
            if (d != null)
            {
                this.setOutlineOpacity(d);
            }

            d = rs.getStateValueAsDouble(so, "outlineWidth");
            if (d != null)
            {
                this.setOutlineWidth(d);
            }

            Integer i = rs.getStateValueAsInteger(so, "outlineStippleFactor");

            if (i != null)
            {
                this.setOutlineStippleFactor(i);
            }

            i = rs.getStateValueAsInteger(so, "outlineStipplePattern");
            if (i != null)
            {
                this.setOutlineStipplePattern(i.shortValue());
            }

            String s = rs.getStateValueAsString(so, "interiorImagePath");

            if (s != null)
            {
                this.setImageSource(s);
            }

            d = rs.getStateValueAsDouble(so, "interiorImageScale");
            if (d != null)
            {
                this.setImageScale(d);
            }
        }
コード例 #11
0
        public void restoreState(RestorableSupport rs, RestorableSupport.StateObject context)
        {
            Sector sector = rs.getStateValueAsSector(context, "eyeLocationLimits");

            if (sector != null)
            {
                this.setEyeLocationLimits(sector);
            }

            // Min and max center elevation.
            double[] minAndMaxValue = this.getEyeElevationLimits();
            Double   min            = rs.getStateValueAsDouble(context, "minEyeElevation");

            if (min != null)
            {
                minAndMaxValue[0] = min;
            }

            Double max = rs.getStateValueAsDouble(context, "maxEyeElevation");

            if (max != null)
            {
                minAndMaxValue[1] = max;
            }

            if (min != null || max != null)
            {
                this.setEyeElevationLimits(minAndMaxValue[0], minAndMaxValue[1]);
            }

            // Min and max heading angle.
            Angle[] minAndMaxAngle = this.getHeadingLimits();
            min = rs.getStateValueAsDouble(context, "minHeadingDegrees");
            if (min != null)
            {
                minAndMaxAngle[0] = Angle.fromDegrees(min);
            }

            max = rs.getStateValueAsDouble(context, "maxHeadingDegrees");
            if (max != null)
            {
                minAndMaxAngle[1] = Angle.fromDegrees(max);
            }

            if (min != null || max != null)
            {
                this.setHeadingLimits(minAndMaxAngle[0], minAndMaxAngle[1]);
            }

            // Min and max pitch angle.
            minAndMaxAngle = this.getPitchLimits();
            min            = rs.getStateValueAsDouble(context, "minPitchDegrees");
            if (min != null)
            {
                minAndMaxAngle[0] = Angle.fromDegrees(min);
            }

            max = rs.getStateValueAsDouble(context, "maxPitchDegrees");
            if (max != null)
            {
                minAndMaxAngle[1] = Angle.fromDegrees(max);
            }

            if (min != null || max != null)
            {
                this.setPitchLimits(minAndMaxAngle[0], minAndMaxAngle[1]);
            }
        }