Exemple #1
0
 public void setProperty(Property property)
 {
     if (property.getName() == "Position")
     {
         cameraPosition = Registry.instance().GetEngine("Python").run(new Script(property.getValue())).asVec3();
     }
     if (property.getName() == "LookAt")
     {
         lookAt = Registry.instance().GetEngine("Python").run(new Script(property.getValue())).asVec3();
     }
     if (property.getName() == "ViewDistance")
     {
         viewDistance = Registry.instance().GetEngine("Python").run(new Script(property.getValue())).asInt();
     }
 }
        public override void setProperty(Property prop)
        {
            if (prop.getName() == "longitudeMin")
                LongitudeMin = float.Parse(prop.getValue());
            else if (prop.getName() == "longitudeMax")
                LongitudeMax = float.Parse(prop.getValue());
            else if (prop.getName() == "latitudeMin")
                LatitudeMin = float.Parse(prop.getValue());
            else if (prop.getName() == "latitudeMax")
                LatitudeMax = float.Parse(prop.getValue());

            base.setProperty(prop);
        }
 static XmlElement encodeProperty(XmlDocument doc, Property property)
 {
     XmlElement e = doc.CreateElement("property");
     e.SetAttribute("name", property.getName());
     e.SetAttribute("value", property.getValue());
     return e;
 }
        static XmlElement encodeSlice(XmlDocument doc, BuildLayerSlice slice)
        {
            XmlElement e = null;
            if (slice != null)
            {
                e = doc.CreateElement("slice");
                if (slice.getMinRange() > 0)
                {
                    Property p = new Property("ignore", slice.getMinRange());
                    e.SetAttribute("min_range", p.getValue());
                }
                if (slice.getMaxRange() < float.MaxValue)
                {
                    Property p = new Property("ignore", slice.getMaxRange());
                    e.SetAttribute("max_range", p.getValue());
                }
                e.SetAttribute("graph", slice.getFilterGraph().getName());

                if (slice.getSource() != null)
                    e.SetAttribute("source", slice.getSource().getName());

                foreach (Property it in slice.getProperties())
                {
                    e.AppendChild(encodeProperty(doc, it));
                }

                foreach (BuildLayerSlice it in slice.getSubSlices())
                {
                    e.AppendChild(encodeSlice(doc, it));
                }
            }
            return e;
        }
 // Filter overrides
 public override void setProperty(Property prop)
 {
     if (prop.getName() == "color")
         setColorScript(new Script(prop.getValue()));
     else if (prop.getName() == "raster_overlay")
         setRasterOverlayScript(new Script(prop.getValue()));
     else if (prop.getName() == "raster_overlay_max_size")
         setRasterOverlayMaxSize(prop.getIntValue(DEFAULT_RASTER_OVERLAY_MAX_SIZE));
     else if (prop.getName() == "feature_name")
         setFeatureNameScript(new Script(prop.getValue()));
     else if (prop.getName() == "pointNameEntities")
         setNameEntities(prop.getValue());
     else if (prop.getName() == "nameMaterial")
         setNameMaterial(prop.getValue());
     else if (prop.getName() == "pointEntityScale")
         Scale = new Script(prop.getValue());
     else if (prop.getName() == "distancesScale")
         CoordScale = new Script(prop.getValue());
     else if (prop.getName() == "lineWidth")
         LineWidth = new Script(prop.getValue());
     else if (prop.getName() == "materialScale")
         MaterialScale = new Script(prop.getValue());
     base.setProperty(prop);
 }
        // Filter overrides
        public virtual void setProperty(Property p)
        {
            if (p.getName() == "radius")
                setRadius(p.getDoubleValue(getRadius()));
            else if (p.getName() == "output_attribute")
                setOutputAttribute(p.getValue());
            else if (p.getName() == "alignment_layer")
                setAlignmentLayerResourceName(p.getValue());

            base.setProperty(p);
        }
 public override void setProperty(Property p)
 {
     if (p.getName() == "localize")
         setLocalize(p.getBoolValue(getLocalize()));
     else if (p.getName() == "translate")
         setTranslateScript(new Script(p.getValue()));
     else if (p.getName() == "use_terrain_srs")
         setUseTerrainSRS(p.getBoolValue(getUseTerrainSRS()));
     else if (p.getName() == "srs")
         setSRSScript(new Script(p.getValue()));
     base.setProperty(p);
 }
        // Filter overrides
        public virtual void setProperty(Property p)
        {
            if (p.getName() == "optimize")
                setOptimize(p.getBoolValue(getOptimize()));
            else if (p.getName() == "cull_backfaces")
                setCullBackfaces(p.getBoolValue(getCullBackfaces()));
            else if (p.getName() == "apply_cluster_culling")
                setApplyClusterCulling(p.getBoolValue(getApplyClusterCulling()));
            else if (p.getName() == "disable_lighting")
                setDisableLighting(p.getBoolValue(getDisableLighting()));
            else if (p.getName() == "line_width")
                setLineWidth(p.getFloatValue(getLineWidth()));
            else if (p.getName() == "point_size")
                setPointSize(p.getFloatValue(getPointSize()));
            else if (p.getName() == "raster_overlay")
                setRasterOverlayScript(new Script(p.getValue()));
            else if (p.getName() == "raster_overlay_max_size")
                setRasterOverlayMaxSize(p.getIntValue(getRasterOverlayMaxSize()));
            else if (p.getName() == "embed_attributes")
                setEmbedAttributes(p.getBoolValue(getEmbedAttributes()));
            else if (p.getName() == "alpha_blending")
                setAlphaBlending(p.getBoolValue(getAlphaBlending()));

            base.setProperty(p);
        }
 public override void setProperty(Property prop)
 {
     if (prop.getName() == "metering")
         setMetering(prop.getIntValue(DEFAULT_METERING));
     else if (prop.getName() == "group_property")
         setAssignmentNameProperty(prop.getValue());
     base.setProperty(prop);
 }
 public override void setProperty(Property p)
 {
     if (p.getName() == "localize")
     {
         Localize = p.getBoolValue(Localize);
     }
     else if (p.getName() == "translate")
     {
         TranslateScript = new Script(p.getValue());
     }
     else if (p.getName() == "use_terrain_srs")
     {
         UseTerrainSrs = p.getBoolValue(UseTerrainSrs);
     }
     else if (p.getName() == "srs")
     {
         SrsScript = new Script(p.getValue());
     }
     base.setProperty(p);
 }
 // Filter overrides
 public virtual void setProperty(Property p)
 {
     if (p.getName() == "text")
         setTextScript(new Script(p.getValue()));
     else if (p.getName() == "disable_depth_test")
         setDisableDepthTest(p.getBoolValue(getDisableDepthTest()));
     else if (p.getName() == "font_size")
         setFontSizeScript(new Script(p.getValue()));
     else if (p.getName() == "font")
         setFontName(p.getValue());
     base.setProperty(p);
 }