#region Copyright & License Information /* * Copyright 2007-2020 The OpenRA Developers (see AUTHORS) * This file is part of OpenRA, which is free software. It is made * available to you under the terms of the GNU General Public License * as published by the Free Software Foundation, either version 3 of * the License, or (at your option) any later version. For more * information, see COPYING. */ #endregion using System.Linq; using OpenRA.Graphics; using OpenRA.Mods.Common.Lint; using OpenRA.Mods.Common.Traits; using OpenRA.Widgets; namespace OpenRA.Mods.Common.Widgets.Logic { [ChromeLogicArgsHotkeys("ChangeZoomKey")] public class MapEditorLogic : ChromeLogic { MapCopyFilters copyFilters = MapCopyFilters.All; [ObjectCreator.UseCtor] public MapEditorLogic(Widget widget, World world, WorldRenderer worldRenderer) { var editorViewport = widget.Get("MAP_EDITOR"); var gridButton = widget.GetOrNull("GRID_BUTTON"); var terrainGeometryTrait = world.WorldActor.Trait(); if (gridButton != null && terrainGeometryTrait != null) { gridButton.OnClick = () => terrainGeometryTrait.Enabled ^= true; gridButton.IsHighlighted = () => terrainGeometryTrait.Enabled; } var copypasteButton = widget.GetOrNull("COPYPASTE_BUTTON"); if (copypasteButton != null) { // HACK: Replace Ctrl with Cmd on macOS // TODO: Add platform-specific override support to HotkeyManager // and then port the editor hotkeys to this system. var copyPasteKey = copypasteButton.Key.GetValue(); if (Platform.CurrentPlatform == PlatformType.OSX && copyPasteKey.Modifiers.HasModifier(Modifiers.Ctrl)) { var modified = new Hotkey(copyPasteKey.Key, copyPasteKey.Modifiers & ~Modifiers.Ctrl | Modifiers.Meta); copypasteButton.Key = FieldLoader.GetValue("Key", modified.ToString()); } copypasteButton.OnClick = () => editorViewport.SetBrush(new EditorCopyPasteBrush(editorViewport, worldRenderer, () => copyFilters)); copypasteButton.IsHighlighted = () => editorViewport.CurrentBrush is EditorCopyPasteBrush; } var copyFilterDropdown = widget.Get("COPYFILTER_BUTTON"); copyFilterDropdown.OnMouseDown = _ => { copyFilterDropdown.RemovePanel(); copyFilterDropdown.AttachPanel(CreateCategoriesPanel()); }; var coordinateLabel = widget.GetOrNull("COORDINATE_LABEL"); if (coordinateLabel != null) { coordinateLabel.GetText = () => { var cell = worldRenderer.Viewport.ViewToWorld(Viewport.LastMousePos); var map = worldRenderer.World.Map; return map.Height.Contains(cell) ? "{0},{1} ({2})".F(cell, map.Height[cell], map.Tiles[cell].Type) : ""; }; } var cashLabel = widget.GetOrNull("CASH_LABEL"); if (cashLabel != null) { var reslayer = worldRenderer.World.WorldActor.TraitsImplementing().FirstOrDefault(); if (reslayer != null) cashLabel.GetText = () => "$ {0}".F(reslayer.NetWorth); } var actionManager = world.WorldActor.Trait(); var undoButton = widget.GetOrNull("UNDO_BUTTON"); if (undoButton != null) { undoButton.IsDisabled = () => !actionManager.HasUndos(); undoButton.OnClick = () => actionManager.Undo(); } var redoButton = widget.GetOrNull("REDO_BUTTON"); if (redoButton != null) { redoButton.IsDisabled = () => !actionManager.HasRedos(); redoButton.OnClick = () => actionManager.Redo(); } } Widget CreateCategoriesPanel() { var categoriesPanel = Ui.LoadWidget("COPY_FILTER_PANEL", null, new WidgetArgs()); var categoryTemplate = categoriesPanel.Get("CATEGORY_TEMPLATE"); MapCopyFilters[] allCategories = { MapCopyFilters.Terrain, MapCopyFilters.Resources, MapCopyFilters.Actors }; foreach (var cat in allCategories) { var category = (CheckboxWidget)categoryTemplate.Clone(); category.GetText = () => cat.ToString(); category.IsChecked = () => copyFilters.HasFlag(cat); category.IsVisible = () => true; category.OnClick = () => copyFilters ^= cat; categoriesPanel.AddChild(category); } return categoriesPanel; } } }