public void AddToTree(WorldTreeNode parentNode) { if (parentNode != null) { this.parentNode = parentNode; inTree = true; // create a node for the collection and add it to the parent node = app.MakeTreeNode(this, NodeName); parentNode.Nodes.Add(node); foreach (IWorldObject obj in children) { obj.AddToTree(node); } // build the menu CommandMenuBuilder menuBuilder = new CommandMenuBuilder(); menuBuilder.Add("Drag Road", new DragObjectsFromMenuCommandFactory(app), app.DefaultCommandClickHandler); menuBuilder.AddDropDown("Move to Collection", menuBuilder.ObjectCollectionDropDown_Opening); menuBuilder.FinishDropDown(); menuBuilder.Add("Copy Description", "", app.copyToClipboardMenuButton_Click); menuBuilder.Add("Help", "Road", app.HelpClickHandler); menuBuilder.Add("Delete", new DeleteObjectCommandFactory(app, parent, this), app.DefaultCommandClickHandler); node.ContextMenuStrip = menuBuilder.Menu; buttonBar = menuBuilder.ButtonBar; } else { inTree = false; } }
public void AddToTree(WorldTreeNode parentNode) { if (!inTree && parentNode != null) { this.parentNode = parentNode; // add the terrain node node = app.MakeTreeNode(this, NodeName); parentNode.Nodes.Add(node); CommandMenuBuilder menuBuilder = new CommandMenuBuilder(); menuBuilder.Add("Drag Decal", new DragObjectsFromMenuCommandFactory(app), app.DefaultCommandClickHandler); menuBuilder.Add("Copy Description", "", app.copyToClipboardMenuButton_Click); menuBuilder.AddDropDown("Move to Collection", menuBuilder.ObjectCollectionDropDown_Opening); menuBuilder.Add("Help", ObjectType, app.HelpClickHandler); menuBuilder.Add("Delete", new DeleteObjectCommandFactory(app, parent, this), app.DefaultCommandClickHandler); node.ContextMenuStrip = menuBuilder.Menu; inTree = true; buttonBar = menuBuilder.ButtonBar; } else { inTree = false; } }
public void AddToTree(WorldTreeNode parentNode) { if (parentNode != null && !inTree) { this.parentNode = parentNode; inTree = true; // create a node for the collection and add it to the parent node = app.MakeTreeNode(this, NodeName); parentNode.Nodes.Add(node); // build the menu CommandMenuBuilder menuBuilder = new CommandMenuBuilder(); menuBuilder.Add("Attach Particle Effect", new AddWaypointParticleEffectCommandFactory(app, this), app.DefaultCommandClickHandler); menuBuilder.Add("Add Spawn Generator", new AddSpawnGenToMarkerCommandFactory(app, this), app.DefaultCommandClickHandler); menuBuilder.Add("Add Sound", new AddSoundCommandFactory(app, this), app.DefaultCommandClickHandler); menuBuilder.AddDropDown("View From"); menuBuilder.Add("Above", new DirectionAndMarker(CameraDirection.Above, this), app.CameraMarkerDirClickHandler); menuBuilder.Add("North", new DirectionAndMarker(CameraDirection.North, this), app.CameraMarkerDirClickHandler); menuBuilder.Add("South", new DirectionAndMarker(CameraDirection.South, this), app.CameraMarkerDirClickHandler); menuBuilder.Add("West", new DirectionAndMarker(CameraDirection.West, this), app.CameraMarkerDirClickHandler); menuBuilder.Add("East", new DirectionAndMarker(CameraDirection.East, this), app.CameraMarkerDirClickHandler); menuBuilder.FinishDropDown(); menuBuilder.Add("Drag Marker", new DragObjectsFromMenuCommandFactory(app), app.DefaultCommandClickHandler); menuBuilder.AddDropDown("Move to Collection", menuBuilder.ObjectCollectionDropDown_Opening); menuBuilder.FinishDropDown(); menuBuilder.Add("Copy Description", "", app.copyToClipboardMenuButton_Click); menuBuilder.Add("Help", "Marker", app.HelpClickHandler); menuBuilder.Add("Delete", new DeleteObjectCommandFactory(app, parent, this), app.DefaultCommandClickHandler); node.ContextMenuStrip = menuBuilder.Menu; foreach (IWorldObject child in children) { child.AddToTree(node); } buttonBar = menuBuilder.ButtonBar; } else { inTree = false; } }
private void buildMenu(WorldTreeNode node) { if (inTree && node != null) { CommandMenuBuilder menuBuilder = new CommandMenuBuilder(); if (loaded) { menuBuilder.Add("Create Object Collection", new CreateWorldCollectionCommandFactory(app, (IObjectCollectionParent)this), app.DefaultCommandClickHandler); menuBuilder.Add("Add Object", new AddObjectCommandFactory(app, this), app.DefaultCommandClickHandler); menuBuilder.Add("Add Road", new AddRoadCommandFactory(app, this), app.DefaultCommandClickHandler); menuBuilder.Add("Add Marker", new AddMarkerCommandFactory(app, this), app.DefaultCommandClickHandler); menuBuilder.Add("Add Marker at Camera", new AddMarkerAtCameraCommandFactory(app, this), app.DefaultCommandClickHandler); menuBuilder.Add("Add Region", new AddRegionCommandFactory(app, this), app.DefaultCommandClickHandler); menuBuilder.Add("Add Point Light", new AddPointLightCommandFactory(app, this), app.DefaultCommandClickHandler); menuBuilder.Add("Add Terrain Decal", new AddTerrainDecalCommandFactory(app, this), app.DefaultCommandClickHandler); menuBuilder.AddDropDown("Move to Collection", menuBuilder.ObjectCollectionMoveDropDown_Opening); menuBuilder.FinishDropDown(); menuBuilder.Add("Copy Description", "", app.copyToClipboardMenuButton_Click); menuBuilder.Add("Unload Collection", new UnloadCollectionCommandFactory(app, this), app.DefaultCommandClickHandler); if (inScene) { menuBuilder.Add("Remove From Scene", this, app.RemoveCollectionFromSceneClickHandler); node.ImageIndex = 3; node.SelectedImageIndex = 3; } else { menuBuilder.Add("Add To Scene", this, app.AddCollectionToSceneClickHandler); node.ImageIndex = 2; node.SelectedImageIndex = 2; } menuBuilder.Add("Help", "Collection", app.HelpClickHandler); menuBuilder.Add("Delete", new DeleteObjectCommandFactory(app, parent, this), app.DefaultCommandClickHandler); node.ContextMenuStrip = menuBuilder.Menu; buttonBar = menuBuilder.ButtonBar; } else { if (buttonBar != null) { buttonBar.Clear(); } menuBuilder.Add("Load Collection", new LoadCollectionCommandFactory(app, this), app.DefaultCommandClickHandler); node.ContextMenuStrip = menuBuilder.Menu; node.ImageIndex = 1; node.SelectedImageIndex = 1; buttonBar = menuBuilder.ButtonBar; } app.UpdateButtonBar(); } }
public void AddToTree(WorldTreeNode parentNode) { if (parentNode != null) { this.parentNode = parentNode; inTree = true; // create a node for the collection and add it to the parent node = app.MakeTreeNode(this, NodeName); parentNode.Nodes.Add(node); CommandMenuBuilder menuBuilder = new CommandMenuBuilder(); menuBuilder.Add("Add Forest", new AddForestCommandFactory(app, parent, this), app.DefaultCommandClickHandler); menuBuilder.Add("Add Water", new AddWaterCommandFactory(app, parent, this), app.DefaultCommandClickHandler); menuBuilder.Add("Add Fog", new AddFogCommandFactory(app, parent, this), app.DefaultCommandClickHandler); menuBuilder.Add("Add Sound", new AddSoundCommandFactory(app, (IWorldContainer)this), app.DefaultCommandClickHandler); menuBuilder.Add("Add Vegetation", new AddGrassCommandFactory(app, parent, this), app.DefaultCommandClickHandler); menuBuilder.Add("Add Spawn Generator", new AddSpawnGenToRegionCommandFactory(app, this), app.DefaultCommandClickHandler); menuBuilder.Add("Add Ambient Light", new AddAmbientLightCommandFactory(app, this), app.DefaultCommandClickHandler); menuBuilder.Add("Add Directional Light", new AddDirectionalLightCommandFactory(app, this), app.DefaultCommandClickHandler); menuBuilder.Add("Drag Region", new DragObjectsFromMenuCommandFactory(app), app.DefaultCommandClickHandler); menuBuilder.AddDropDown("Move to Collection", menuBuilder.ObjectCollectionDropDown_Opening); menuBuilder.FinishDropDown(); menuBuilder.Add("Copy Description", "", app.copyToClipboardMenuButton_Click); menuBuilder.Add("Help", "Region", app.HelpClickHandler); menuBuilder.Add("Delete", new DeleteObjectCommandFactory(app, parent, this), app.DefaultCommandClickHandler); node.ContextMenuStrip = menuBuilder.Menu; // points.AddToTree(node); foreach (IWorldObject child in children) { child.AddToTree(node); } buttonBar = menuBuilder.ButtonBar; } }
public void AddToTree(WorldTreeNode parentNode) { if (parentNode != null) { this.parentNode = parentNode; inTree = true; // create a node for the collection and add it to the parent node = app.MakeTreeNode(this, NodeName); parentNode.Nodes.Add(node); // build the menu CommandMenuBuilder menuBuilder = new CommandMenuBuilder(); if (AttachmentPoints.Count > 0) { menuBuilder.Add("Attach Particle Effect", new AddObjectParticleEffectCommandFactory(app, this), app.DefaultCommandClickHandler); } menuBuilder.Add("Add Sound", new AddSoundCommandFactory(app, this), app.DefaultCommandClickHandler); menuBuilder.AddDropDown("View From"); menuBuilder.Add("Above", new DirectionAndObject(CameraDirection.Above, this), app.CameraObjectDirClickHandler); menuBuilder.Add("North", new DirectionAndObject(CameraDirection.North, this), app.CameraObjectDirClickHandler); menuBuilder.Add("South", new DirectionAndObject(CameraDirection.South, this), app.CameraObjectDirClickHandler); menuBuilder.Add("West", new DirectionAndObject(CameraDirection.West, this), app.CameraObjectDirClickHandler); menuBuilder.Add("East", new DirectionAndObject(CameraDirection.East, this), app.CameraObjectDirClickHandler); menuBuilder.FinishDropDown(); menuBuilder.Add("Drag Object", new DragObjectsFromMenuCommandFactory(app), app.DefaultCommandClickHandler); menuBuilder.AddDropDown("Move to Collection", menuBuilder.ObjectCollectionDropDown_Opening); menuBuilder.FinishDropDown(); menuBuilder.Add("Copy Description", "", app.copyToClipboardMenuButton_Click); menuBuilder.Add("Help", "Object", app.HelpClickHandler); menuBuilder.Add("Delete", new DeleteObjectCommandFactory(app, parent, this), app.DefaultCommandClickHandler); // menuBuilder.Add("Generate Model Paths", new GenerateModelPathsCommandFactory(this), app.DefaultCommandClickHandler); node.ContextMenuStrip = menuBuilder.Menu; foreach (IWorldObject child in children) { child.AddToTree(node); } buttonBar = menuBuilder.ButtonBar; } }