public IResource GetResource() { switch (ResourceType) { case EmbeddedResourceType.Image: return(embeddedResources.Image(Path)); case EmbeddedResourceType.Skybox: return(embeddedResources.Skybox(Path)); // todo: model loaders case EmbeddedResourceType.FlexibleModel: case EmbeddedResourceType.ExplicitModel: default: throw new ArgumentOutOfRangeException(); } }
private bool TryHandleKeyboard(IKeyEvent args) { if (appModeService.Mode != AppMode.Presentation) { return(false); } if (args.ComplexEventType == KeyEventType.Up) { var scene = worldTreeService.World.Scenes.First(); var cStory = worldTreeService.MainRoot.GetComponent <IStoryComponent>(); if (args.EventKey == Key.J) { cStory.StartLayoutType = storyLayouts.Select(x => x.Type).Single(x => x.ToString().Contains("NestedSpheres")); cStory.ShowAux1 = true; cStory.ShowAux2 = false; scene.BackgroundColor = Color4.Black; scene.Skybox = null; return(true); } if (args.EventKey == Key.K) { cStory.StartLayoutType = storyLayouts.Select(x => x.Type).Single(x => x.ToString().Contains("Building")); cStory.ShowAux1 = false; cStory.ShowAux2 = false; scene.BackgroundColor = Color4.Black; scene.Skybox = null; return(true); } if (args.EventKey == Key.L) { cStory.StartLayoutType = storyLayouts.Select(x => x.Type).Last(x => x.ToString().Contains("Sphere")); cStory.ShowAux1 = false; cStory.ShowAux2 = false; scene.BackgroundColor = Color4.Black; scene.Skybox = embeddedResources.Skybox("Skyboxes/stars.skybox"); return(true); } if (args.EventKey == Key.O || args.EventKey == Key.P) { if (args.EventKey == Key.P) { layerToShow++; layerToShow %= 3; } else if (args.EventKey == Key.O) { layerToShow--; layerToShow += 3; layerToShow %= 3; } switch (layerToShow) { case 0: cStory.HideMain = false; cStory.ShowAux3 = false; cStory.ShowAux4 = false; break; case 1: cStory.HideMain = true; cStory.ShowAux3 = true; cStory.ShowAux4 = false; break; case 2: cStory.HideMain = true; cStory.ShowAux3 = false; cStory.ShowAux4 = true; break; } return(true); } } return(false); }
public FluentGuiService(IViewService viewService, IRenderLoopDispatcher renderLoopDispatcher, IAssetService assetService, IUndoRedoService undoRedo, IEmbeddedResources embeddedResources, IReadOnlyList <IStoryLayout> storyLayouts, // todo: refactor away from using these services IStoryService storyService, IWorldTreeService worldTreeService) { this.viewService = viewService; this.assetService = assetService; this.undoRedo = undoRedo; var mainPanel = new FluentPanel <ISceneNode>(() => selectedSceneNode, x => x != null) { Width = 300 }; var builder = mainPanel.Build().Table(); { var mainGroupBox = builder.Row().GroupBox("common", x => x, x => true).Table(); mainGroupBox.Row().Label(x => x.Id.ToString()); mainGroupBox.Row().TextBox(x => x.Name); } { var sceneGroupBox = builder.Row().GroupBox("Scene", x => x.AmParent as IScene, x => x != null).Table(); var colorRow = sceneGroupBox.Row(); colorRow.Label("Bgnd Color"); colorRow.ColorPicker(x => x.BackgroundColor); var skyboxRow = sceneGroupBox.Row(); skyboxRow.Label("Skybox"); skyboxRow.DropDown(x => x.Skybox, new Dictionary <string, ISkybox> { { "None", null }, { "Storm", embeddedResources.Skybox("Skyboxes/storm.skybox") }, { "Stars", embeddedResources.Skybox("Skyboxes/stars.skybox") } }); } { var storyRootGroupBox = builder.Row().GroupBox("Story Root", x => x.SearchComponent <IStoryComponent>(), x => x != null && x.IsLayoutRoot).Table(); var layoutTypeRow = storyRootGroupBox.Row(); layoutTypeRow.Label("LayoutType"); layoutTypeRow.DropDown(x => x.StartLayoutType, storyLayouts.ToDictionary(x => x.UserFriendlyName, x => x.Type)); var auxRow12 = storyRootGroupBox.Row(); auxRow12.CheckBox("Aux 1", x => x.ShowAux1); auxRow12.CheckBox("Aux 2", x => x.ShowAux2); var auxRow34 = storyRootGroupBox.Row(); auxRow34.CheckBox("Aux 3", x => x.ShowAux3); auxRow34.CheckBox("Aux 4", x => x.ShowAux4); } { var storyNodeGroupBox = builder.Row().GroupBox("Story Node", x => x.SearchComponent <IStoryComponent>(), x => x != null).Table(); var firstRow = storyNodeGroupBox.Row(); firstRow.CheckBox("Instant transition", x => x.InstantTransition); firstRow.CheckBox("Skip", x => x.SkipOrder); for (var i = 0; i < 4; i++) { var iLoc = i; var row = storyNodeGroupBox.Row(); row.Label(x => storyService.GlobalGraph.Next.TryGetValue(x.Node.Id, out var nextList) && iLoc < nextList.Count ? worldTreeService.GetById(nextList[iLoc]).Name : "-"); row.Button("X", x => storyService.RemoveEdge(x.Node.Id, storyService.GlobalGraph.Next[x.Node.Id][iLoc])); } } { var modelComponentBuilder = builder.Row().GroupBox("Model", x => x.SearchComponent <IModelComponent>(), x => x != null).Table(); var colorRow = modelComponentBuilder.Row(); colorRow.CheckBox("SingleColor", x => x.SingleColor); colorRow.ColorPicker(x => x.Color); var textureRow = modelComponentBuilder.Row(); textureRow.Label("Image"); textureRow.Button("Load", OnLoadTextureClicked); var checkBoxRow1 = modelComponentBuilder.Row(); checkBoxRow1.CheckBox("Ignore Lighting", x => x.IgnoreLighting); checkBoxRow1.CheckBox("No Specular", x => x.NoSpecular); var checkBoxRow2 = modelComponentBuilder.Row(); checkBoxRow2.CheckBox("Don't cull", x => x.DontCull); checkBoxRow2.CheckBox("Ortho", x => x.Ortho); modelComponentBuilder.Row().Button("Export", OnExportClick); } { var spherePackingComponentBuilder = builder.Row().GroupBox("Sphere Packing", x => x.SearchComponent <SpherePackingComponent>(), x => x != null).Table(); var row = spherePackingComponentBuilder.Row(); row.Label("Radius"); row.TextBox(x => x.Radius); row = spherePackingComponentBuilder.Row(); row.Label("Color"); row.ColorPicker(x => x.Color); } { var rectGroupBox = builder.Row().GroupBox("Rectangle", x => x, x => x.HasComponent <IRectangleComponent>()).Table(); var commonRectRow = rectGroupBox.Row().Panel(x => x.SearchComponent <IRectangleComponent>(), x => x != null).Table().Row(); commonRectRow.CheckBox("DragBorders", x => x.DragByBorders); var colorRow = rectGroupBox.Row().Panel(x => x.SearchComponent <ColorRectangleComponent>(), x => x != null).Table().Row(); colorRow.Label("Color"); colorRow.ColorPicker(x => x.Color); // todo: change image } { var viewModel = new RichTextViewModel(() => selectedSceneNode.SearchComponent <IRichTextComponent>()); var textGroupBox = builder.Row().GroupBox("Rich Text", x => viewModel, x => x.Valid).Table(); var bgndModeRow = textGroupBox.Row(); bgndModeRow.Label("Bgnd Mode"); bgndModeRow.DropDown(x => x.BackgroundMode, new Dictionary <string, RtTransparencyMode> { ["Opaque"] = RtTransparencyMode.Opaque, ["Native"] = RtTransparencyMode.Native, ["White is transparent"] = RtTransparencyMode.WhiteIsTransparent, ["Black is transparent"] = RtTransparencyMode.BlackIsTransparent, }); var bgndColorRow = textGroupBox.Row(); bgndColorRow.Label("Bgnd Color"); bgndColorRow.ColorPicker(x => x.BackgroundColor); var bgndOpacityRow = textGroupBox.Row(); bgndOpacityRow.Label("Bgnd Opacity"); bgndOpacityRow.Slider(x => x.BackgroundOpacity, 0, 1, 256); var alignmentRow = textGroupBox.Row(); alignmentRow.Label("Alignment"); alignmentRow.DropDown(x => x.Alignment, new Dictionary <string, RtParagraphAlignment> { ["Left"] = RtParagraphAlignment.Left, ["Center"] = RtParagraphAlignment.Center, ["Right"] = RtParagraphAlignment.Right, ["Justify"] = RtParagraphAlignment.Justify, }); var directionRow = textGroupBox.Row(); directionRow.Label("Direction"); directionRow.DropDown(x => x.Direction, new Dictionary <string, RtParagraphDirection> { ["LeftToRight"] = RtParagraphDirection.LeftToRight, ["RightToLeft"] = RtParagraphDirection.RightToLeft, }); var tabsRow = textGroupBox.Row(); tabsRow.Label("Tabs"); tabsRow.NumericUpDown(x => x.Tabs, 0, 16); var marginUpRow = textGroupBox.Row(); marginUpRow.Label("MarginUp"); marginUpRow.NumericUpDown(x => x.MarginUp, 0, 1000); var fontRow = textGroupBox.Row(); fontRow.Label("Font"); fontRow.DropDown(x => x.FontFamily, Fonts.AvailableFontFamilies .Select(x => x.Name) .OrderBy(r => r) .ToDictionary(x => x)); var sizeRow = textGroupBox.Row(); sizeRow.Label("Size"); sizeRow.NumericUpDown(x => x.Size, 1, 200); var colorRow = textGroupBox.Row(); colorRow.Label("Color"); colorRow.ColorPicker(x => x.Color); var decorationRow1 = textGroupBox.Row(); decorationRow1.CheckBox("Bold", x => x.Bold); decorationRow1.CheckBox("Italic", x => x.Italic); var decorationRow2 = textGroupBox.Row(); decorationRow2.CheckBox("Underline", x => x.Underline); decorationRow2.CheckBox("Strikethrough", x => x.Strikethrough); var highlightGroupRow = textGroupBox.Row(); highlightGroupRow.Label("Highlight Group"); highlightGroupRow.TextBox(x => x.HighlightGroup); var formulaRow = textGroupBox.Row(); formulaRow.Button("Insert Formula", vm => vm.InsertFormula()); } { var highlightOnMouseGroupBox = builder.Row().GroupBox("Highlight on Mouse", x => x.SearchComponent <HighlightOnMouseComponent>(), x => x != null).Table(); var row = highlightOnMouseGroupBox.Row(); row.Label("Group Name"); row.TextBox(x => x.GroupName, x => x ?? "", x => string.IsNullOrEmpty(x) ? null : x); } { var circlePackingGroupBox = builder.Row().GroupBox("Circle Packing", x => x.SearchComponent <ICirclePackingComponent>(), x => x != null).Table(); var shapeRow = circlePackingGroupBox.Row(); shapeRow.Label("Shape"); shapeRow.DropDown(x => x.ShapeName, new[] { "Square", "Circle", "Ellipse" }.ToDictionary(x => x)); var radiusRow = circlePackingGroupBox.Row(); radiusRow.Label("Radius"); radiusRow.TextBox(x => x.CircleRadius); var maxCircles = circlePackingGroupBox.Row(); maxCircles.Label("Max Circles"); maxCircles.TextBox(x => x.MaxInitialCircles); var movementRateRow = circlePackingGroupBox.Row(); movementRateRow.Label("Smoothness"); movementRateRow.Slider(x => x.MovementRate, 0, 1, 32); var quakeRow = circlePackingGroupBox.Row(); quakeRow.Label("Quake"); quakeRow.Slider(x => x.RandomFactor, 0, 1, 32); var areaRow = circlePackingGroupBox.Row(); areaRow.Label("Area"); areaRow.Label(x => x.Area.ToString(CultureInfo.InvariantCulture)); var numCirclesRow = circlePackingGroupBox.Row(); numCirclesRow.Label(x => "Num Circles: " + x.CurrentNumCircles); numCirclesRow.Label(x => "Uppber Bound: " + x.MaxCircles); var iterPerBreakRow = circlePackingGroupBox.Row(); iterPerBreakRow.Label("Iteractions per Display"); iterPerBreakRow.TextBox(x => x.NumIterationPerBreak); var batchSizeRow = circlePackingGroupBox.Row(); batchSizeRow.Label("Batch Size"); batchSizeRow.TextBox(x => x.BatchSize); var resetRow = circlePackingGroupBox.Row(); resetRow.Label(""); resetRow.Button("Reset Circles", x => x.ResetPacker()); var optimizeStepRow = circlePackingGroupBox.Row(); optimizeStepRow.Label(""); optimizeStepRow.Button("Optimize Step", x => x.OptimizeStep()); var runOptimizeRow = circlePackingGroupBox.Row(); runOptimizeRow.Label(""); runOptimizeRow.Button("Run Optimization", x => x.RunOptimization()); var stopOptimizeRow = circlePackingGroupBox.Row(); stopOptimizeRow.Label(""); stopOptimizeRow.Button("Stop Optimization", x => x.StopOptimization()); var deleteCircleRow = circlePackingGroupBox.Row(); deleteCircleRow.Label(""); deleteCircleRow.Button("Delete Circle", x => x.DeleteCircle()); var fillHodeRow = circlePackingGroupBox.Row(); fillHodeRow.Button("Fill Hole (E)", x => x.TryFillHole(true)); fillHodeRow.Button("Fill Hole (N)", x => x.TryFillHole(false)); } { var circlePackingGroupBox = builder.Row().GroupBox("Circle Packing", x => x.SearchComponent <ICirclePackingAutoComponent>(), x => x != null).Table(); var shapeRow = circlePackingGroupBox.Row(); shapeRow.Label("Shape"); shapeRow.DropDown(x => x.ShapeName, new[] { "Square", "Circle", "Ellipse" }.ToDictionary(x => x)); var radiusRow = circlePackingGroupBox.Row(); radiusRow.Label("Radius"); radiusRow.TextBox(x => x.CircleRadius); var numCirclesRow = circlePackingGroupBox.Row(); numCirclesRow.Label(x => "Num Circles: " + x.NumCircles); //numCirclesRow.Label(x => "Uppber Bound: " + x.MaxCircles); var attemptsPerDisplayRow = circlePackingGroupBox.Row(); attemptsPerDisplayRow.Label("Attempts per Display"); attemptsPerDisplayRow.TextBox(x => x.AttemptsPerRefresh); var statsRow = circlePackingGroupBox.Row(); statsRow.Label(x => $"Seconds: {x.SecondsSinceLastSuccess:F} Attempts: {x.AttemptsSinceLastSuccess}"); var resetRow = circlePackingGroupBox.Row(); resetRow.Label(""); resetRow.Button("Reset", x => x.Reset()); var runOptimizeRow = circlePackingGroupBox.Row(); runOptimizeRow.Label(""); runOptimizeRow.Button("Run", x => x.Run()); var stopOptimizeRow = circlePackingGroupBox.Row(); stopOptimizeRow.Label(""); stopOptimizeRow.Button("Stop", x => x.Stop()); var deleteCircleRow = circlePackingGroupBox.Row(); } { var componentsBuilder = builder.Row().GroupBox("Components", x => x, x => x != null).Table(); // todo: to ArrayTable var componentsCache = (IEnumerable <ISceneNodeComponent>)null; var componentsStringCache = ""; componentsBuilder.Row().Label(n => { if (n.Components != componentsCache) { componentsCache = n.Components; componentsStringCache = string.Join("\n", n.Components.Select(c => c.AmInterface.Name)); } return(componentsStringCache); }); var newComponentViewModel = new NewComponentViewModel(() => selectedSceneNode); var newComponentPanelBuilder = componentsBuilder.Row().Panel(x => newComponentViewModel, x => true).Table(); var newComponentRow = newComponentPanelBuilder.Row(); newComponentRow.DropDown(x => x.ComponentType, new Dictionary <string, Type> { ["Rotate Once"] = typeof(RotateOnceComponent), ["Highlight on Mouse"] = typeof(HighlightOnMouseComponent), ["Warp Scrolling"] = typeof(WarpScrollComponent), }); newComponentRow.Button("Add", x => { componentsCache = null; ISceneNodeComponent component; if (x.ComponentType == typeof(RotateOnceComponent)) { component = AmFactory.Create <RotateOnceComponent>(); } else if (x.ComponentType == typeof(HighlightOnMouseComponent)) { component = AmFactory.Create <HighlightOnMouseComponent>(); } else if (x.ComponentType == typeof(WarpScrollComponent)) { component = AmFactory.Create <WarpScrollComponent>(); } else { throw new ArgumentOutOfRangeException(); } newComponentViewModel.GetNode().Components.Add(component); undoRedo.OnChange(); }); } builder.Row().Panel(x => x, x => true); rootControl = mainPanel; renderLoopDispatcher.AfterUpdate += Update; }