Add new map editor UI.
This commit is contained in:
134
OpenRA.Mods.Common/EditorBrushes/EditorActorBrush.cs
Normal file
134
OpenRA.Mods.Common/EditorBrushes/EditorActorBrush.cs
Normal file
@@ -0,0 +1,134 @@
|
|||||||
|
#region Copyright & License Information
|
||||||
|
/*
|
||||||
|
* Copyright 2007-2015 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. For more information,
|
||||||
|
* see COPYING.
|
||||||
|
*/
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Drawing;
|
||||||
|
using System.Linq;
|
||||||
|
using OpenRA.FileFormats;
|
||||||
|
using OpenRA.Graphics;
|
||||||
|
using OpenRA.Mods.Common;
|
||||||
|
using OpenRA.Mods.Common.Graphics;
|
||||||
|
using OpenRA.Mods.Common.Traits;
|
||||||
|
using OpenRA.Orders;
|
||||||
|
using OpenRA.Primitives;
|
||||||
|
using OpenRA.Traits;
|
||||||
|
using OpenRA.Widgets;
|
||||||
|
|
||||||
|
namespace OpenRA.Mods.Common.Widgets
|
||||||
|
{
|
||||||
|
public class EditorActorBrush : IEditorBrush
|
||||||
|
{
|
||||||
|
public readonly ActorInfo Actor;
|
||||||
|
|
||||||
|
readonly WorldRenderer worldRenderer;
|
||||||
|
readonly World world;
|
||||||
|
readonly EditorActorLayer editorLayer;
|
||||||
|
readonly EditorViewportControllerWidget editorWidget;
|
||||||
|
readonly ActorPreviewWidget preview;
|
||||||
|
readonly CVec locationOffset;
|
||||||
|
readonly WVec previewOffset;
|
||||||
|
readonly PlayerReference owner;
|
||||||
|
|
||||||
|
int facing = 92;
|
||||||
|
|
||||||
|
public EditorActorBrush(EditorViewportControllerWidget editorWidget, ActorInfo actor, PlayerReference owner, WorldRenderer wr)
|
||||||
|
{
|
||||||
|
this.editorWidget = editorWidget;
|
||||||
|
worldRenderer = wr;
|
||||||
|
world = wr.World;
|
||||||
|
editorLayer = world.WorldActor.Trait<EditorActorLayer>();
|
||||||
|
|
||||||
|
Actor = actor;
|
||||||
|
this.owner = owner;
|
||||||
|
|
||||||
|
preview = editorWidget.Get<ActorPreviewWidget>("DRAG_ACTOR_PREVIEW");
|
||||||
|
preview.GetScale = () => worldRenderer.Viewport.Zoom;
|
||||||
|
preview.IsVisible = () => editorWidget.CurrentBrush == this;
|
||||||
|
|
||||||
|
var buildingInfo = actor.Traits.GetOrDefault<BuildingInfo>();
|
||||||
|
if (buildingInfo != null)
|
||||||
|
{
|
||||||
|
locationOffset = -FootprintUtils.AdjustForBuildingSize(buildingInfo);
|
||||||
|
previewOffset = FootprintUtils.CenterOffset(world, buildingInfo);
|
||||||
|
}
|
||||||
|
|
||||||
|
var td = new TypeDictionary();
|
||||||
|
td.Add(new FacingInit(facing));
|
||||||
|
td.Add(new TurretFacingInit(facing));
|
||||||
|
td.Add(new OwnerInit(owner.Name));
|
||||||
|
td.Add(new RaceInit(owner.Race));
|
||||||
|
preview.SetPreview(actor, td);
|
||||||
|
|
||||||
|
// The preview widget may be rendered by the higher-level code before it is ticked.
|
||||||
|
// Force a manual tick to ensure the bounds are set correctly for this first draw.
|
||||||
|
Tick();
|
||||||
|
}
|
||||||
|
|
||||||
|
public bool HandleMouseInput(MouseInput mi)
|
||||||
|
{
|
||||||
|
// Exclusively uses left and right mouse buttons, but nothing else
|
||||||
|
if (mi.Button != MouseButton.Left && mi.Button != MouseButton.Right)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
if (mi.Button == MouseButton.Right)
|
||||||
|
{
|
||||||
|
editorWidget.ClearBrush();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
var cell = worldRenderer.Viewport.ViewToWorld(mi.Location);
|
||||||
|
if (mi.Button == MouseButton.Left && mi.Event == MouseInputEvent.Down && world.Map.Contains(cell))
|
||||||
|
{
|
||||||
|
var newActorReference = new ActorReference(Actor.Name);
|
||||||
|
newActorReference.Add(new OwnerInit(owner.Name));
|
||||||
|
|
||||||
|
cell += locationOffset;
|
||||||
|
newActorReference.Add(new LocationInit(cell));
|
||||||
|
|
||||||
|
var ios = Actor.Traits.GetOrDefault<IOccupySpaceInfo>();
|
||||||
|
if (ios != null && ios.SharesCell)
|
||||||
|
{
|
||||||
|
var subcell = editorLayer.FreeSubCellAt(cell);
|
||||||
|
if (subcell != SubCell.Invalid)
|
||||||
|
newActorReference.Add(new SubCellInit(subcell));
|
||||||
|
}
|
||||||
|
|
||||||
|
var initDict = newActorReference.InitDict;
|
||||||
|
|
||||||
|
if (Actor.Traits.Contains<IFacingInfo>())
|
||||||
|
initDict.Add(new FacingInit(facing));
|
||||||
|
|
||||||
|
if (Actor.Traits.Contains<TurretedInfo>())
|
||||||
|
initDict.Add(new TurretFacingInit(facing));
|
||||||
|
|
||||||
|
editorLayer.Add(newActorReference);
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Tick()
|
||||||
|
{
|
||||||
|
var cell = worldRenderer.Viewport.ViewToWorld(Viewport.LastMousePos);
|
||||||
|
var pos = world.Map.CenterOfCell(cell + locationOffset) + previewOffset;
|
||||||
|
|
||||||
|
var origin = worldRenderer.Viewport.WorldToViewPx(worldRenderer.ScreenPxPosition(pos));
|
||||||
|
|
||||||
|
var zoom = worldRenderer.Viewport.Zoom;
|
||||||
|
var s = preview.IdealPreviewSize;
|
||||||
|
var o = preview.PreviewOffset;
|
||||||
|
preview.Bounds.X = origin.X - (int)(zoom * (o.X + s.X / 2));
|
||||||
|
preview.Bounds.Y = origin.Y - (int)(zoom * (o.Y + s.Y / 2));
|
||||||
|
preview.Bounds.Width = (int)(zoom * s.X);
|
||||||
|
preview.Bounds.Height = (int)(zoom * s.Y);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
114
OpenRA.Mods.Common/EditorBrushes/EditorDefaultBrush.cs
Normal file
114
OpenRA.Mods.Common/EditorBrushes/EditorDefaultBrush.cs
Normal file
@@ -0,0 +1,114 @@
|
|||||||
|
#region Copyright & License Information
|
||||||
|
/*
|
||||||
|
* Copyright 2007-2015 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. For more information,
|
||||||
|
* see COPYING.
|
||||||
|
*/
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Drawing;
|
||||||
|
using System.Linq;
|
||||||
|
using OpenRA.FileFormats;
|
||||||
|
using OpenRA.Graphics;
|
||||||
|
using OpenRA.Mods.Common;
|
||||||
|
using OpenRA.Mods.Common.Graphics;
|
||||||
|
using OpenRA.Mods.Common.Traits;
|
||||||
|
using OpenRA.Orders;
|
||||||
|
using OpenRA.Primitives;
|
||||||
|
using OpenRA.Traits;
|
||||||
|
using OpenRA.Widgets;
|
||||||
|
|
||||||
|
namespace OpenRA.Mods.Common.Widgets
|
||||||
|
{
|
||||||
|
public interface IEditorBrush
|
||||||
|
{
|
||||||
|
bool HandleMouseInput(MouseInput mi);
|
||||||
|
void Tick();
|
||||||
|
}
|
||||||
|
|
||||||
|
public class EditorDefaultBrush : IEditorBrush
|
||||||
|
{
|
||||||
|
public readonly ActorInfo Actor;
|
||||||
|
|
||||||
|
readonly WorldRenderer worldRenderer;
|
||||||
|
readonly World world;
|
||||||
|
readonly EditorViewportControllerWidget editorWidget;
|
||||||
|
readonly EditorActorLayer editorLayer;
|
||||||
|
readonly Dictionary<int, ResourceType> resources;
|
||||||
|
|
||||||
|
public EditorDefaultBrush(EditorViewportControllerWidget editorWidget, WorldRenderer wr)
|
||||||
|
{
|
||||||
|
this.editorWidget = editorWidget;
|
||||||
|
worldRenderer = wr;
|
||||||
|
world = wr.World;
|
||||||
|
|
||||||
|
editorLayer = world.WorldActor.Trait<EditorActorLayer>();
|
||||||
|
resources = world.WorldActor.TraitsImplementing<ResourceType>()
|
||||||
|
.ToDictionary(r => r.Info.ResourceType, r => r);
|
||||||
|
}
|
||||||
|
|
||||||
|
public bool HandleMouseInput(MouseInput mi)
|
||||||
|
{
|
||||||
|
// Exclusively uses left and right mouse buttons, but nothing else
|
||||||
|
// Mouse move events are important for tooltips, so we always allow these through
|
||||||
|
if (mi.Button != MouseButton.Left && mi.Button != MouseButton.Right && mi.Event != MouseInputEvent.Move)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
var cell = worldRenderer.Viewport.ViewToWorld(mi.Location);
|
||||||
|
if (mi.Event == MouseInputEvent.Up)
|
||||||
|
return true;
|
||||||
|
|
||||||
|
var underCursor = editorLayer.PreviewsAt(worldRenderer.Viewport.ViewToWorldPx(mi.Location))
|
||||||
|
.FirstOrDefault();
|
||||||
|
|
||||||
|
ResourceType type;
|
||||||
|
if (underCursor != null)
|
||||||
|
editorWidget.SetTooltip(underCursor.Tooltip);
|
||||||
|
else if (world.Map.Contains(cell) && resources.TryGetValue(world.Map.MapResources.Value[cell].Type, out type))
|
||||||
|
editorWidget.SetTooltip(type.Info.Name);
|
||||||
|
else
|
||||||
|
editorWidget.SetTooltip(null);
|
||||||
|
|
||||||
|
// Finished with mouse move events, so let them bubble up the widget tree
|
||||||
|
if (mi.Event == MouseInputEvent.Move)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
if (mi.Button == MouseButton.Right)
|
||||||
|
{
|
||||||
|
editorWidget.SetTooltip(null);
|
||||||
|
|
||||||
|
if (underCursor != null)
|
||||||
|
editorLayer.Remove(underCursor);
|
||||||
|
|
||||||
|
if (world.Map.MapResources.Value[cell].Type != 0)
|
||||||
|
world.Map.MapResources.Value[cell] = new ResourceTile();
|
||||||
|
}
|
||||||
|
else if (mi.Button == MouseButton.Left && mi.Event == MouseInputEvent.Down)
|
||||||
|
{
|
||||||
|
if (underCursor != null)
|
||||||
|
{
|
||||||
|
// Test case / demonstration of how to edit an existing actor
|
||||||
|
var facing = underCursor.Init<FacingInit>();
|
||||||
|
if (facing != null)
|
||||||
|
underCursor.ReplaceInit(new FacingInit((facing.Value(world) + 32) % 256));
|
||||||
|
else if (underCursor.Info.Traits.WithInterface<UsesInit<FacingInit>>().Any())
|
||||||
|
underCursor.ReplaceInit(new FacingInit(32));
|
||||||
|
|
||||||
|
var turret = underCursor.Init<TurretFacingInit>();
|
||||||
|
if (turret != null)
|
||||||
|
underCursor.ReplaceInit(new TurretFacingInit((turret.Value(world) + 32) % 256));
|
||||||
|
else if (underCursor.Info.Traits.WithInterface<UsesInit<TurretFacingInit>>().Any())
|
||||||
|
underCursor.ReplaceInit(new TurretFacingInit(32));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Tick() { }
|
||||||
|
}
|
||||||
|
}
|
||||||
115
OpenRA.Mods.Common/EditorBrushes/EditorResourceBrush.cs
Normal file
115
OpenRA.Mods.Common/EditorBrushes/EditorResourceBrush.cs
Normal file
@@ -0,0 +1,115 @@
|
|||||||
|
#region Copyright & License Information
|
||||||
|
/*
|
||||||
|
* Copyright 2007-2015 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. For more information,
|
||||||
|
* see COPYING.
|
||||||
|
*/
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Drawing;
|
||||||
|
using System.Linq;
|
||||||
|
using OpenRA.FileFormats;
|
||||||
|
using OpenRA.Graphics;
|
||||||
|
using OpenRA.Mods.Common;
|
||||||
|
using OpenRA.Mods.Common.Graphics;
|
||||||
|
using OpenRA.Mods.Common.Traits;
|
||||||
|
using OpenRA.Orders;
|
||||||
|
using OpenRA.Primitives;
|
||||||
|
using OpenRA.Traits;
|
||||||
|
using OpenRA.Widgets;
|
||||||
|
|
||||||
|
namespace OpenRA.Mods.Common.Widgets
|
||||||
|
{
|
||||||
|
public class EditorResourceBrush : IEditorBrush
|
||||||
|
{
|
||||||
|
public readonly ResourceTypeInfo ResourceType;
|
||||||
|
|
||||||
|
readonly WorldRenderer worldRenderer;
|
||||||
|
readonly World world;
|
||||||
|
readonly EditorViewportControllerWidget editorWidget;
|
||||||
|
readonly SpriteWidget preview;
|
||||||
|
|
||||||
|
public EditorResourceBrush(EditorViewportControllerWidget editorWidget, ResourceTypeInfo resource, WorldRenderer wr)
|
||||||
|
{
|
||||||
|
this.editorWidget = editorWidget;
|
||||||
|
ResourceType = resource;
|
||||||
|
worldRenderer = wr;
|
||||||
|
world = wr.World;
|
||||||
|
|
||||||
|
preview = editorWidget.Get<SpriteWidget>("DRAG_LAYER_PREVIEW");
|
||||||
|
preview.Palette = resource.Palette;
|
||||||
|
preview.GetScale = () => worldRenderer.Viewport.Zoom;
|
||||||
|
preview.IsVisible = () => editorWidget.CurrentBrush == this;
|
||||||
|
|
||||||
|
var variant = resource.Variants.FirstOrDefault();
|
||||||
|
var sequenceProvider = wr.World.Map.Rules.Sequences[world.TileSet.Id];
|
||||||
|
var sequence = sequenceProvider.GetSequence("resources", variant);
|
||||||
|
var sprite = sequence.GetSprite(resource.MaxDensity - 1);
|
||||||
|
preview.GetSprite = () => sprite;
|
||||||
|
|
||||||
|
// The preview widget may be rendered by the higher-level code before it is ticked.
|
||||||
|
// Force a manual tick to ensure the bounds are set correctly for this first draw.
|
||||||
|
Tick();
|
||||||
|
}
|
||||||
|
|
||||||
|
public bool HandleMouseInput(MouseInput mi)
|
||||||
|
{
|
||||||
|
// Exclusively uses left and right mouse buttons, but nothing else
|
||||||
|
if (mi.Button != MouseButton.Left && mi.Button != MouseButton.Right)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
if (mi.Button == MouseButton.Right)
|
||||||
|
{
|
||||||
|
editorWidget.ClearBrush();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
var cell = worldRenderer.Viewport.ViewToWorld(mi.Location);
|
||||||
|
|
||||||
|
if (mi.Button == MouseButton.Left && AllowResourceAt(cell))
|
||||||
|
{
|
||||||
|
var type = (byte)ResourceType.ResourceType;
|
||||||
|
var index = (byte)ResourceType.MaxDensity;
|
||||||
|
world.Map.MapResources.Value[cell] = new ResourceTile(type, index);
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
public bool AllowResourceAt(CPos cell)
|
||||||
|
{
|
||||||
|
if (!world.Map.Contains(cell))
|
||||||
|
return false;
|
||||||
|
|
||||||
|
var tile = world.Map.MapTiles.Value[cell];
|
||||||
|
var tileInfo = world.TileSet.GetTileInfo(tile);
|
||||||
|
var terrainType = world.TileSet.TerrainInfo[tileInfo.TerrainType];
|
||||||
|
|
||||||
|
if (world.Map.MapResources.Value[cell].Type == ResourceType.ResourceType)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
if (!ResourceType.AllowedTerrainTypes.Contains(terrainType.Type))
|
||||||
|
return false;
|
||||||
|
|
||||||
|
return ResourceType.AllowOnRamps || tileInfo == null || tileInfo.RampType == 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Tick()
|
||||||
|
{
|
||||||
|
var cell = worldRenderer.Viewport.ViewToWorld(Viewport.LastMousePos);
|
||||||
|
var offset = WVec.Zero;
|
||||||
|
var location = world.Map.CenterOfCell(cell) + offset;
|
||||||
|
|
||||||
|
var cellScreenPosition = worldRenderer.ScreenPxPosition(location);
|
||||||
|
var cellScreenPixel = worldRenderer.Viewport.WorldToViewPx(cellScreenPosition);
|
||||||
|
var zoom = worldRenderer.Viewport.Zoom;
|
||||||
|
|
||||||
|
preview.Bounds.X = cellScreenPixel.X;
|
||||||
|
preview.Bounds.Y = cellScreenPixel.Y;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
151
OpenRA.Mods.Common/EditorBrushes/EditorTileBrush.cs
Normal file
151
OpenRA.Mods.Common/EditorBrushes/EditorTileBrush.cs
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
#region Copyright & License Information
|
||||||
|
/*
|
||||||
|
* Copyright 2007-2015 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. For more information,
|
||||||
|
* see COPYING.
|
||||||
|
*/
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Drawing;
|
||||||
|
using System.Linq;
|
||||||
|
using OpenRA.FileFormats;
|
||||||
|
using OpenRA.Graphics;
|
||||||
|
using OpenRA.Mods.Common;
|
||||||
|
using OpenRA.Mods.Common.Graphics;
|
||||||
|
using OpenRA.Mods.Common.Traits;
|
||||||
|
using OpenRA.Orders;
|
||||||
|
using OpenRA.Primitives;
|
||||||
|
using OpenRA.Traits;
|
||||||
|
using OpenRA.Widgets;
|
||||||
|
|
||||||
|
namespace OpenRA.Mods.Common.Widgets
|
||||||
|
{
|
||||||
|
public class EditorTileBrush : IEditorBrush
|
||||||
|
{
|
||||||
|
public readonly ushort Template;
|
||||||
|
|
||||||
|
readonly WorldRenderer worldRenderer;
|
||||||
|
readonly World world;
|
||||||
|
readonly EditorViewportControllerWidget editorWidget;
|
||||||
|
readonly TerrainTemplatePreviewWidget preview;
|
||||||
|
readonly Rectangle bounds;
|
||||||
|
|
||||||
|
bool painting;
|
||||||
|
|
||||||
|
public EditorTileBrush(EditorViewportControllerWidget editorWidget, ushort template, WorldRenderer wr)
|
||||||
|
{
|
||||||
|
this.editorWidget = editorWidget;
|
||||||
|
Template = template;
|
||||||
|
worldRenderer = wr;
|
||||||
|
world = wr.World;
|
||||||
|
|
||||||
|
preview = editorWidget.Get<TerrainTemplatePreviewWidget>("DRAG_TILE_PREVIEW");
|
||||||
|
preview.GetScale = () => worldRenderer.Viewport.Zoom;
|
||||||
|
preview.IsVisible = () => editorWidget.CurrentBrush == this;
|
||||||
|
|
||||||
|
preview.Template = world.TileSet.Templates.First(t => t.Value.Id == template).Value;
|
||||||
|
bounds = worldRenderer.Theater.TemplateBounds(preview.Template, Game.ModData.Manifest.TileSize, world.Map.TileShape);
|
||||||
|
|
||||||
|
// The preview widget may be rendered by the higher-level code before it is ticked.
|
||||||
|
// Force a manual tick to ensure the bounds are set correctly for this first draw.
|
||||||
|
Tick();
|
||||||
|
}
|
||||||
|
|
||||||
|
public bool HandleMouseInput(MouseInput mi)
|
||||||
|
{
|
||||||
|
// Exclusively uses left and right mouse buttons, but nothing else
|
||||||
|
if (mi.Button != MouseButton.Left && mi.Button != MouseButton.Right)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
if (mi.Button == MouseButton.Right)
|
||||||
|
{
|
||||||
|
editorWidget.ClearBrush();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (mi.Button == MouseButton.Left)
|
||||||
|
{
|
||||||
|
if (mi.Event == MouseInputEvent.Down)
|
||||||
|
painting = true;
|
||||||
|
else if (mi.Event == MouseInputEvent.Up)
|
||||||
|
painting = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!painting)
|
||||||
|
return true;
|
||||||
|
|
||||||
|
var map = world.Map;
|
||||||
|
var cell = worldRenderer.Viewport.ViewToWorld(mi.Location);
|
||||||
|
|
||||||
|
if (mi.Event != MouseInputEvent.Down && mi.Event != MouseInputEvent.Move)
|
||||||
|
return true;
|
||||||
|
|
||||||
|
var rules = map.Rules;
|
||||||
|
var tileset = rules.TileSets[map.Tileset];
|
||||||
|
var template = tileset.Templates[Template];
|
||||||
|
var baseHeight = map.Contains(cell) ? map.MapHeight.Value[cell] : 0;
|
||||||
|
if (mi.Event == MouseInputEvent.Move && PlacementOverlapsSameTemplate(template, cell))
|
||||||
|
return true;
|
||||||
|
|
||||||
|
var i = 0;
|
||||||
|
for (var y = 0; y < template.Size.Y; y++)
|
||||||
|
{
|
||||||
|
for (var x = 0; x < template.Size.X; x++, i++)
|
||||||
|
{
|
||||||
|
if (template.Contains(i) && template[i] != null)
|
||||||
|
{
|
||||||
|
var index = template.PickAny ? (byte)Game.CosmeticRandom.Next(0, template.TilesCount) : (byte)i;
|
||||||
|
var c = cell + new CVec(x, y);
|
||||||
|
if (!map.Contains(c))
|
||||||
|
continue;
|
||||||
|
|
||||||
|
map.MapTiles.Value[c] = new TerrainTile(Template, index);
|
||||||
|
map.MapHeight.Value[c] = (byte)(baseHeight + template[index].Height).Clamp(0, world.TileSet.MaxGroundHeight);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool PlacementOverlapsSameTemplate(TerrainTemplateInfo template, CPos cell)
|
||||||
|
{
|
||||||
|
var map = world.Map;
|
||||||
|
var i = 0;
|
||||||
|
for (var y = 0; y < template.Size.Y; y++)
|
||||||
|
{
|
||||||
|
for (var x = 0; x < template.Size.X; x++, i++)
|
||||||
|
{
|
||||||
|
if (template.Contains(i) && template[i] != null)
|
||||||
|
{
|
||||||
|
var c = cell + new CVec(x, y);
|
||||||
|
if (map.Contains(c) && map.MapTiles.Value[c].Type == template.Id)
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Tick()
|
||||||
|
{
|
||||||
|
var cell = worldRenderer.Viewport.ViewToWorld(Viewport.LastMousePos);
|
||||||
|
var offset = WVec.Zero;
|
||||||
|
var location = world.Map.CenterOfCell(cell) + offset;
|
||||||
|
|
||||||
|
var cellScreenPosition = worldRenderer.ScreenPxPosition(location);
|
||||||
|
var cellScreenPixel = worldRenderer.Viewport.WorldToViewPx(cellScreenPosition);
|
||||||
|
var zoom = worldRenderer.Viewport.Zoom;
|
||||||
|
|
||||||
|
preview.Bounds.X = cellScreenPixel.X + (int)(zoom * bounds.X);
|
||||||
|
preview.Bounds.Y = cellScreenPixel.Y + (int)(zoom * bounds.Y);
|
||||||
|
preview.Bounds.Width = (int)(zoom * bounds.Width);
|
||||||
|
preview.Bounds.Height = (int)(zoom * bounds.Height);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -539,6 +539,7 @@
|
|||||||
<Compile Include="Widgets\Logic\Ingame\IngameRadarDisplayLogic.cs" />
|
<Compile Include="Widgets\Logic\Ingame\IngameRadarDisplayLogic.cs" />
|
||||||
<Compile Include="Widgets\Logic\Ingame\LeaveMapLogic.cs" />
|
<Compile Include="Widgets\Logic\Ingame\LeaveMapLogic.cs" />
|
||||||
<Compile Include="Widgets\Logic\Ingame\LoadIngamePlayerOrObserverUILogic.cs" />
|
<Compile Include="Widgets\Logic\Ingame\LoadIngamePlayerOrObserverUILogic.cs" />
|
||||||
|
<Compile Include="Widgets\Logic\Ingame\LoadMapEditorLogic.cs" />
|
||||||
<Compile Include="Widgets\Logic\Ingame\ObserverShroudSelectorLogic.cs" />
|
<Compile Include="Widgets\Logic\Ingame\ObserverShroudSelectorLogic.cs" />
|
||||||
<Compile Include="Widgets\Logic\Ingame\ObserverStatsLogic.cs" />
|
<Compile Include="Widgets\Logic\Ingame\ObserverStatsLogic.cs" />
|
||||||
<Compile Include="Widgets\Logic\Ingame\OrderButtonsChromeLogic.cs" />
|
<Compile Include="Widgets\Logic\Ingame\OrderButtonsChromeLogic.cs" />
|
||||||
@@ -559,6 +560,13 @@
|
|||||||
<Compile Include="Widgets\Logic\Lobby\LobbyUtils.cs" />
|
<Compile Include="Widgets\Logic\Lobby\LobbyUtils.cs" />
|
||||||
<Compile Include="Widgets\Logic\Lobby\SpawnSelectorTooltipLogic.cs" />
|
<Compile Include="Widgets\Logic\Lobby\SpawnSelectorTooltipLogic.cs" />
|
||||||
<Compile Include="Widgets\Logic\MainMenuLogic.cs" />
|
<Compile Include="Widgets\Logic\MainMenuLogic.cs" />
|
||||||
|
<Compile Include="Widgets\Logic\Editor\ActorSelectorLogic.cs" />
|
||||||
|
<Compile Include="Widgets\Logic\Editor\LayerSelectorLogic.cs" />
|
||||||
|
<Compile Include="Widgets\Logic\Editor\MapEditorLogic.cs" />
|
||||||
|
<Compile Include="Widgets\Logic\Editor\MapEditorTabsLogic.cs" />
|
||||||
|
<Compile Include="Widgets\Logic\Editor\NewMapLogic.cs" />
|
||||||
|
<Compile Include="Widgets\Logic\Editor\SaveMapLogic.cs" />
|
||||||
|
<Compile Include="Widgets\Logic\Editor\TileSelectorLogic.cs" />
|
||||||
<Compile Include="Widgets\Logic\MapChooserLogic.cs" />
|
<Compile Include="Widgets\Logic\MapChooserLogic.cs" />
|
||||||
<Compile Include="Widgets\Logic\MissionBrowserLogic.cs" />
|
<Compile Include="Widgets\Logic\MissionBrowserLogic.cs" />
|
||||||
<Compile Include="Widgets\Logic\ModBrowserLogic.cs" />
|
<Compile Include="Widgets\Logic\ModBrowserLogic.cs" />
|
||||||
@@ -628,8 +636,13 @@
|
|||||||
<Compile Include="Widgets\Logic\Ingame\MenuButtonsChromeLogic.cs" />
|
<Compile Include="Widgets\Logic\Ingame\MenuButtonsChromeLogic.cs" />
|
||||||
<Compile Include="Widgets\Logic\Ingame\LoadIngamePerfLogic.cs" />
|
<Compile Include="Widgets\Logic\Ingame\LoadIngamePerfLogic.cs" />
|
||||||
<Compile Include="Traits\World\EditorActorLayer.cs" />
|
<Compile Include="Traits\World\EditorActorLayer.cs" />
|
||||||
|
<Compile Include="EditorBrushes\EditorActorBrush.cs" />
|
||||||
|
<Compile Include="EditorBrushes\EditorTileBrush.cs" />
|
||||||
|
<Compile Include="EditorBrushes\EditorResourceBrush.cs" />
|
||||||
|
<Compile Include="EditorBrushes\EditorDefaultBrush.cs" />
|
||||||
<Compile Include="Traits\World\EditorActorPreview.cs" />
|
<Compile Include="Traits\World\EditorActorPreview.cs" />
|
||||||
<Compile Include="Traits\World\EditorResourceLayer.cs" />
|
<Compile Include="Traits\World\EditorResourceLayer.cs" />
|
||||||
|
<Compile Include="Widgets\EditorViewportControllerWidget.cs" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
@@ -644,4 +657,7 @@ cd "$(SolutionDir)"</PostBuildEvent>
|
|||||||
<Target Name="AfterBuild">
|
<Target Name="AfterBuild">
|
||||||
</Target>
|
</Target>
|
||||||
-->
|
-->
|
||||||
|
<ItemGroup>
|
||||||
|
<Folder Include="EditorBrushes\" />
|
||||||
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
||||||
@@ -98,26 +98,33 @@ namespace OpenRA.Mods.Common.Traits
|
|||||||
return t.Variants.Keys.Random(Game.CosmeticRandom);
|
return t.Variants.Keys.Random(Game.CosmeticRandom);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public int ResourceDensityAt(CPos c)
|
||||||
|
{
|
||||||
|
// Set density based on the number of neighboring resources
|
||||||
|
var adjacent = 0;
|
||||||
|
var type = Tiles[c].Type;
|
||||||
|
for (var u = -1; u < 2; u++)
|
||||||
|
for (var v = -1; v < 2; v++)
|
||||||
|
if (Map.MapResources.Value[c + new CVec(u, v)].Type == type.Info.ResourceType)
|
||||||
|
adjacent++;
|
||||||
|
|
||||||
|
return Math.Max(int2.Lerp(0, type.Info.MaxDensity, adjacent, 9), 1);
|
||||||
|
}
|
||||||
|
|
||||||
public virtual CellContents UpdateDirtyTile(CPos c)
|
public virtual CellContents UpdateDirtyTile(CPos c)
|
||||||
{
|
{
|
||||||
var t = Tiles[c];
|
var t = Tiles[c];
|
||||||
|
var type = t.Type;
|
||||||
|
|
||||||
// Empty tile
|
// Empty tile
|
||||||
if (t.Type == null)
|
if (type == null)
|
||||||
{
|
{
|
||||||
t.Sprite = null;
|
t.Sprite = null;
|
||||||
return t;
|
return t;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Set density based on the number of neighboring resources
|
// Set density based on the number of neighboring resources
|
||||||
var adjacent = 0;
|
t.Density = ResourceDensityAt(c);
|
||||||
var type = t.Type;
|
|
||||||
for (var u = -1; u < 2; u++)
|
|
||||||
for (var v = -1; v < 2; v++)
|
|
||||||
if (Map.MapResources.Value[c + new CVec(u, v)].Type == type.Info.ResourceType)
|
|
||||||
adjacent++;
|
|
||||||
|
|
||||||
t.Density = Math.Max(int2.Lerp(0, type.Info.MaxDensity, adjacent, 9), 1);
|
|
||||||
|
|
||||||
var sprites = type.Variants[t.Variant];
|
var sprites = type.Variants[t.Variant];
|
||||||
var frame = int2.Lerp(0, sprites.Length - 1, t.Density - 1, type.Info.MaxDensity);
|
var frame = int2.Lerp(0, sprites.Length - 1, t.Density - 1, type.Info.MaxDensity);
|
||||||
|
|||||||
@@ -23,6 +23,9 @@ namespace OpenRA.Mods.Common.Traits
|
|||||||
[Desc("The widget tree to open when a regular map is loaded (i.e. the ingame UI).")]
|
[Desc("The widget tree to open when a regular map is loaded (i.e. the ingame UI).")]
|
||||||
public readonly string IngameRoot = "INGAME_ROOT";
|
public readonly string IngameRoot = "INGAME_ROOT";
|
||||||
|
|
||||||
|
[Desc("The widget tree to open when the map editor is loaded.")]
|
||||||
|
public readonly string EditorRoot = "EDITOR_ROOT";
|
||||||
|
|
||||||
[Desc("Remove any existing UI when a map is loaded.")]
|
[Desc("Remove any existing UI when a map is loaded.")]
|
||||||
public readonly bool ClearRoot = true;
|
public readonly bool ClearRoot = true;
|
||||||
|
|
||||||
@@ -44,7 +47,9 @@ namespace OpenRA.Mods.Common.Traits
|
|||||||
if (info.ClearRoot)
|
if (info.ClearRoot)
|
||||||
Ui.ResetAll();
|
Ui.ResetAll();
|
||||||
|
|
||||||
var widget = world.Type == WorldType.Shellmap ? info.ShellmapRoot : info.IngameRoot;
|
var widget = world.Type == WorldType.Shellmap ? info.ShellmapRoot :
|
||||||
|
world.Type == WorldType.Editor ? info.EditorRoot : info.IngameRoot;
|
||||||
|
|
||||||
Game.LoadWidget(world, widget, Ui.Root, new WidgetArgs());
|
Game.LoadWidget(world, widget, Ui.Root, new WidgetArgs());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
98
OpenRA.Mods.Common/Widgets/EditorViewportControllerWidget.cs
Normal file
98
OpenRA.Mods.Common/Widgets/EditorViewportControllerWidget.cs
Normal file
@@ -0,0 +1,98 @@
|
|||||||
|
#region Copyright & License Information
|
||||||
|
/*
|
||||||
|
* Copyright 2007-2015 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. For more information,
|
||||||
|
* see COPYING.
|
||||||
|
*/
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Drawing;
|
||||||
|
using System.Linq;
|
||||||
|
using OpenRA.FileFormats;
|
||||||
|
using OpenRA.Graphics;
|
||||||
|
using OpenRA.Mods.Common;
|
||||||
|
using OpenRA.Mods.Common.Graphics;
|
||||||
|
using OpenRA.Mods.Common.Traits;
|
||||||
|
using OpenRA.Orders;
|
||||||
|
using OpenRA.Primitives;
|
||||||
|
using OpenRA.Traits;
|
||||||
|
using OpenRA.Widgets;
|
||||||
|
|
||||||
|
namespace OpenRA.Mods.Common.Widgets
|
||||||
|
{
|
||||||
|
public class EditorViewportControllerWidget : Widget
|
||||||
|
{
|
||||||
|
public IEditorBrush CurrentBrush { get; private set; }
|
||||||
|
|
||||||
|
public readonly string TooltipContainer;
|
||||||
|
public readonly string TooltipTemplate;
|
||||||
|
|
||||||
|
readonly Lazy<TooltipContainerWidget> tooltipContainer;
|
||||||
|
readonly EditorDefaultBrush defaultBrush;
|
||||||
|
readonly WorldRenderer worldRenderer;
|
||||||
|
|
||||||
|
bool enableTooltips;
|
||||||
|
|
||||||
|
[ObjectCreator.UseCtor]
|
||||||
|
public EditorViewportControllerWidget(World world, WorldRenderer worldRenderer)
|
||||||
|
{
|
||||||
|
this.worldRenderer = worldRenderer;
|
||||||
|
tooltipContainer = Exts.Lazy(() => Ui.Root.Get<TooltipContainerWidget>(TooltipContainer));
|
||||||
|
CurrentBrush = defaultBrush = new EditorDefaultBrush(this, worldRenderer);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void ClearBrush() { SetBrush(null); }
|
||||||
|
public void SetBrush(IEditorBrush brush)
|
||||||
|
{
|
||||||
|
CurrentBrush = brush ?? defaultBrush;
|
||||||
|
}
|
||||||
|
|
||||||
|
public override void MouseEntered()
|
||||||
|
{
|
||||||
|
enableTooltips = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
public override void MouseExited()
|
||||||
|
{
|
||||||
|
tooltipContainer.Value.RemoveTooltip();
|
||||||
|
enableTooltips = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void SetTooltip(string tooltip)
|
||||||
|
{
|
||||||
|
if (!enableTooltips)
|
||||||
|
return;
|
||||||
|
|
||||||
|
if (tooltip != null)
|
||||||
|
{
|
||||||
|
Func<string> getTooltip = () => tooltip;
|
||||||
|
tooltipContainer.Value.SetTooltip(TooltipTemplate, new WidgetArgs() { { "getText", getTooltip } });
|
||||||
|
}
|
||||||
|
else
|
||||||
|
tooltipContainer.Value.RemoveTooltip();
|
||||||
|
}
|
||||||
|
|
||||||
|
public override bool HandleMouseInput(MouseInput mi)
|
||||||
|
{
|
||||||
|
if (CurrentBrush.HandleMouseInput(mi))
|
||||||
|
return true;
|
||||||
|
|
||||||
|
return base.HandleMouseInput(mi);
|
||||||
|
}
|
||||||
|
|
||||||
|
WPos cachedViewportPosition;
|
||||||
|
public override void Tick()
|
||||||
|
{
|
||||||
|
// Clear any tooltips when the viewport is scrolled using the keyboard
|
||||||
|
if (worldRenderer.Viewport.CenterPosition != cachedViewportPosition)
|
||||||
|
SetTooltip(null);
|
||||||
|
|
||||||
|
cachedViewportPosition = worldRenderer.Viewport.CenterPosition;
|
||||||
|
CurrentBrush.Tick();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
150
OpenRA.Mods.Common/Widgets/Logic/Editor/ActorSelectorLogic.cs
Normal file
150
OpenRA.Mods.Common/Widgets/Logic/Editor/ActorSelectorLogic.cs
Normal file
@@ -0,0 +1,150 @@
|
|||||||
|
#region Copyright & License Information
|
||||||
|
/*
|
||||||
|
* Copyright 2007-2015 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. For more information,
|
||||||
|
* see COPYING.
|
||||||
|
*/
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Drawing;
|
||||||
|
using System.Linq;
|
||||||
|
using OpenRA.FileFormats;
|
||||||
|
using OpenRA.Graphics;
|
||||||
|
using OpenRA.Mods.Common;
|
||||||
|
using OpenRA.Mods.Common.Graphics;
|
||||||
|
using OpenRA.Mods.Common.Traits;
|
||||||
|
using OpenRA.Mods.Common.Widgets;
|
||||||
|
using OpenRA.Primitives;
|
||||||
|
using OpenRA.Traits;
|
||||||
|
using OpenRA.Widgets;
|
||||||
|
|
||||||
|
namespace OpenRA.Mods.Common.Widgets.Logic
|
||||||
|
{
|
||||||
|
public class ActorSelectorLogic
|
||||||
|
{
|
||||||
|
readonly EditorViewportControllerWidget editor;
|
||||||
|
readonly DropDownButtonWidget ownersDropDown;
|
||||||
|
readonly ScrollPanelWidget panel;
|
||||||
|
readonly ScrollItemWidget itemTemplate;
|
||||||
|
readonly Ruleset modRules;
|
||||||
|
readonly World world;
|
||||||
|
readonly WorldRenderer worldRenderer;
|
||||||
|
|
||||||
|
PlayerReference selectedOwner;
|
||||||
|
|
||||||
|
[ObjectCreator.UseCtor]
|
||||||
|
public ActorSelectorLogic(Widget widget, World world, WorldRenderer worldRenderer, Ruleset modRules)
|
||||||
|
{
|
||||||
|
this.modRules = modRules;
|
||||||
|
this.world = world;
|
||||||
|
this.worldRenderer = worldRenderer;
|
||||||
|
|
||||||
|
editor = widget.Parent.Get<EditorViewportControllerWidget>("MAP_EDITOR");
|
||||||
|
ownersDropDown = widget.Get<DropDownButtonWidget>("OWNERS_DROPDOWN");
|
||||||
|
|
||||||
|
panel = widget.Get<ScrollPanelWidget>("ACTORTEMPLATE_LIST");
|
||||||
|
itemTemplate = panel.Get<ScrollItemWidget>("ACTORPREVIEW_TEMPLATE");
|
||||||
|
panel.Layout = new GridLayout(panel);
|
||||||
|
|
||||||
|
var editorLayer = world.WorldActor.Trait<EditorActorLayer>();
|
||||||
|
|
||||||
|
selectedOwner = editorLayer.Players.Players.Values.First();
|
||||||
|
Func<PlayerReference, ScrollItemWidget, ScrollItemWidget> setupItem = (option, template) =>
|
||||||
|
{
|
||||||
|
var item = ScrollItemWidget.Setup(template, () => selectedOwner == option, () =>
|
||||||
|
{
|
||||||
|
selectedOwner = option;
|
||||||
|
|
||||||
|
ownersDropDown.Text = selectedOwner.Name;
|
||||||
|
ownersDropDown.TextColor = selectedOwner.Color.RGB;
|
||||||
|
|
||||||
|
IntializeActorPreviews();
|
||||||
|
});
|
||||||
|
|
||||||
|
item.Get<LabelWidget>("LABEL").GetText = () => option.Name;
|
||||||
|
item.GetColor = () => option.Color.RGB;
|
||||||
|
|
||||||
|
return item;
|
||||||
|
};
|
||||||
|
|
||||||
|
ownersDropDown.OnClick = () =>
|
||||||
|
{
|
||||||
|
var owners = editorLayer.Players.Players.Values.OrderBy(p => p.Name);
|
||||||
|
ownersDropDown.ShowDropDown("LABEL_DROPDOWN_TEMPLATE", 270, owners, setupItem);
|
||||||
|
};
|
||||||
|
|
||||||
|
ownersDropDown.Text = selectedOwner.Name;
|
||||||
|
ownersDropDown.TextColor = selectedOwner.Color.RGB;
|
||||||
|
|
||||||
|
IntializeActorPreviews();
|
||||||
|
}
|
||||||
|
|
||||||
|
void IntializeActorPreviews()
|
||||||
|
{
|
||||||
|
panel.RemoveChildren();
|
||||||
|
|
||||||
|
var actors = modRules.Actors.Where(a => !a.Value.Name.Contains('^'))
|
||||||
|
.Select(a => a.Value);
|
||||||
|
|
||||||
|
foreach (var a in actors)
|
||||||
|
{
|
||||||
|
var actor = a;
|
||||||
|
if (actor.Traits.Contains<BridgeInfo>()) // bridge layer takes care about that automatically
|
||||||
|
continue;
|
||||||
|
|
||||||
|
if (!actor.Traits.Contains<IRenderActorPreviewInfo>())
|
||||||
|
continue;
|
||||||
|
|
||||||
|
var filter = actor.Traits.GetOrDefault<EditorTilesetFilterInfo>();
|
||||||
|
if (filter != null)
|
||||||
|
{
|
||||||
|
if (filter.ExcludeTilesets != null && filter.ExcludeTilesets.Contains(world.TileSet.Id))
|
||||||
|
continue;
|
||||||
|
if (filter.RequireTilesets != null && !filter.RequireTilesets.Contains(world.TileSet.Id))
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
var td = new TypeDictionary();
|
||||||
|
td.Add(new FacingInit(92));
|
||||||
|
td.Add(new TurretFacingInit(92));
|
||||||
|
td.Add(new HideBibPreviewInit());
|
||||||
|
td.Add(new OwnerInit(selectedOwner.Name));
|
||||||
|
td.Add(new RaceInit(selectedOwner.Race));
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
var item = ScrollItemWidget.Setup(itemTemplate,
|
||||||
|
() => { var brush = editor.CurrentBrush as EditorActorBrush; return brush != null && brush.Actor == actor; },
|
||||||
|
() => editor.SetBrush(new EditorActorBrush(editor, actor, selectedOwner, worldRenderer)));
|
||||||
|
|
||||||
|
var preview = item.Get<ActorPreviewWidget>("ACTOR_PREVIEW");
|
||||||
|
preview.SetPreview(actor, td);
|
||||||
|
|
||||||
|
// Scale templates to fit within the panel
|
||||||
|
var scale = 1f;
|
||||||
|
if (scale * preview.IdealPreviewSize.X > itemTemplate.Bounds.Width)
|
||||||
|
scale = (float)(itemTemplate.Bounds.Width - panel.ItemSpacing) / (float)preview.IdealPreviewSize.X;
|
||||||
|
|
||||||
|
preview.GetScale = () => scale;
|
||||||
|
preview.Bounds.Width = (int)(scale * preview.IdealPreviewSize.X);
|
||||||
|
preview.Bounds.Height = (int)(scale * preview.IdealPreviewSize.Y);
|
||||||
|
|
||||||
|
item.Bounds.Width = preview.Bounds.Width + 2 * preview.Bounds.X;
|
||||||
|
item.Bounds.Height = preview.Bounds.Height + 2 * preview.Bounds.Y;
|
||||||
|
item.IsVisible = () => true;
|
||||||
|
item.GetTooltipText = () => actor.Name;
|
||||||
|
panel.AddChild(item);
|
||||||
|
}
|
||||||
|
catch
|
||||||
|
{
|
||||||
|
Log.Write("debug", "Map editor ignoring actor {0}, because of missing sprites for tileset {1}.",
|
||||||
|
actor.Name, world.TileSet.Id);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,84 @@
|
|||||||
|
#region Copyright & License Information
|
||||||
|
/*
|
||||||
|
* Copyright 2007-2015 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. For more information,
|
||||||
|
* see COPYING.
|
||||||
|
*/
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Linq;
|
||||||
|
using OpenRA.FileFormats;
|
||||||
|
using OpenRA.Graphics;
|
||||||
|
using OpenRA.Traits;
|
||||||
|
using OpenRA.Widgets;
|
||||||
|
|
||||||
|
namespace OpenRA.Mods.Common.Widgets.Logic
|
||||||
|
{
|
||||||
|
public class LayerSelectorLogic
|
||||||
|
{
|
||||||
|
readonly EditorViewportControllerWidget editor;
|
||||||
|
readonly Ruleset modRules;
|
||||||
|
readonly World world;
|
||||||
|
readonly WorldRenderer worldRenderer;
|
||||||
|
|
||||||
|
readonly ScrollPanelWidget layerTemplateList;
|
||||||
|
readonly ScrollItemWidget layerPreviewTemplate;
|
||||||
|
|
||||||
|
[ObjectCreator.UseCtor]
|
||||||
|
public LayerSelectorLogic(Widget widget, WorldRenderer worldRenderer, Ruleset modRules)
|
||||||
|
{
|
||||||
|
this.modRules = modRules;
|
||||||
|
this.worldRenderer = worldRenderer;
|
||||||
|
this.world = worldRenderer.World;
|
||||||
|
|
||||||
|
editor = widget.Parent.Get<EditorViewportControllerWidget>("MAP_EDITOR");
|
||||||
|
|
||||||
|
layerTemplateList = widget.Get<ScrollPanelWidget>("LAYERTEMPLATE_LIST");
|
||||||
|
layerTemplateList.Layout = new GridLayout(layerTemplateList);
|
||||||
|
layerPreviewTemplate = layerTemplateList.Get<ScrollItemWidget>("LAYERPREVIEW_TEMPLATE");
|
||||||
|
|
||||||
|
IntializeLayerPreview(widget);
|
||||||
|
}
|
||||||
|
|
||||||
|
void IntializeLayerPreview(Widget widget)
|
||||||
|
{
|
||||||
|
layerTemplateList.RemoveChildren();
|
||||||
|
|
||||||
|
var resources = modRules.Actors["world"].Traits.WithInterface<ResourceTypeInfo>();
|
||||||
|
foreach (var resource in resources)
|
||||||
|
{
|
||||||
|
var newResourcePreviewTemplate = ScrollItemWidget.Setup(layerPreviewTemplate,
|
||||||
|
() => { var brush = editor.CurrentBrush as EditorResourceBrush; return brush != null && brush.ResourceType == resource; },
|
||||||
|
() => editor.SetBrush(new EditorResourceBrush(editor, resource, worldRenderer)));
|
||||||
|
|
||||||
|
newResourcePreviewTemplate.Bounds.X = 0;
|
||||||
|
newResourcePreviewTemplate.Bounds.Y = 0;
|
||||||
|
|
||||||
|
var layerPreview = newResourcePreviewTemplate.Get<SpriteWidget>("LAYER_PREVIEW");
|
||||||
|
layerPreview.IsVisible = () => true;
|
||||||
|
layerPreview.GetPalette = () => resource.Palette;
|
||||||
|
|
||||||
|
var variant = resource.Variants.FirstOrDefault();
|
||||||
|
var sequenceProvier = modRules.Sequences[world.TileSet.Id];
|
||||||
|
var sequence = sequenceProvier.GetSequence("resources", variant);
|
||||||
|
var frame = sequence.Frames != null ? sequence.Frames.Last() : resource.MaxDensity - 1;
|
||||||
|
layerPreview.GetSprite = () => sequence.GetSprite(frame);
|
||||||
|
|
||||||
|
var tileWidth = Game.ModData.Manifest.TileSize.Width;
|
||||||
|
var tileHeight = Game.ModData.Manifest.TileSize.Height;
|
||||||
|
layerPreview.Bounds.Width = tileWidth;
|
||||||
|
layerPreview.Bounds.Height = tileHeight;
|
||||||
|
newResourcePreviewTemplate.Bounds.Width = tileWidth + (layerPreview.Bounds.X * 2);
|
||||||
|
newResourcePreviewTemplate.Bounds.Height = tileHeight + (layerPreview.Bounds.Y * 2);
|
||||||
|
|
||||||
|
newResourcePreviewTemplate.IsVisible = () => true;
|
||||||
|
newResourcePreviewTemplate.GetTooltipText = () => resource.Name;
|
||||||
|
|
||||||
|
layerTemplateList.AddChild(newResourcePreviewTemplate);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
70
OpenRA.Mods.Common/Widgets/Logic/Editor/MapEditorLogic.cs
Normal file
70
OpenRA.Mods.Common/Widgets/Logic/Editor/MapEditorLogic.cs
Normal file
@@ -0,0 +1,70 @@
|
|||||||
|
#region Copyright & License Information
|
||||||
|
/*
|
||||||
|
* Copyright 2007-2015 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. For more information,
|
||||||
|
* see COPYING.
|
||||||
|
*/
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Drawing;
|
||||||
|
using System.Linq;
|
||||||
|
using OpenRA.Graphics;
|
||||||
|
using OpenRA.Mods.Common.Traits;
|
||||||
|
using OpenRA.Primitives;
|
||||||
|
using OpenRA.Traits;
|
||||||
|
using OpenRA.Widgets;
|
||||||
|
|
||||||
|
namespace OpenRA.Mods.Common.Widgets.Logic
|
||||||
|
{
|
||||||
|
public class MapEditorLogic
|
||||||
|
{
|
||||||
|
[ObjectCreator.UseCtor]
|
||||||
|
public MapEditorLogic(Widget widget, World world, WorldRenderer worldRenderer)
|
||||||
|
{
|
||||||
|
var gridButton = widget.GetOrNull<ButtonWidget>("GRID_BUTTON");
|
||||||
|
var terrainGeometryTrait = world.WorldActor.Trait<TerrainGeometryOverlay>();
|
||||||
|
|
||||||
|
if (gridButton != null && terrainGeometryTrait != null)
|
||||||
|
{
|
||||||
|
gridButton.OnClick = () => terrainGeometryTrait.Enabled ^= true;
|
||||||
|
gridButton.IsHighlighted = () => terrainGeometryTrait.Enabled;
|
||||||
|
}
|
||||||
|
|
||||||
|
var zoomDropdown = widget.Get<DropDownButtonWidget>("ZOOM_BUTTON");
|
||||||
|
if (zoomDropdown != null)
|
||||||
|
{
|
||||||
|
var selectedZoom = Game.Settings.Graphics.PixelDouble ? 2f : 1f;
|
||||||
|
var selectedLabel = selectedZoom.ToString();
|
||||||
|
Func<float, ScrollItemWidget, ScrollItemWidget> setupItem = (zoom, itemTemplate) =>
|
||||||
|
{
|
||||||
|
var item = ScrollItemWidget.Setup(itemTemplate,
|
||||||
|
() => selectedZoom == zoom,
|
||||||
|
() => { worldRenderer.Viewport.Zoom = selectedZoom = zoom; selectedLabel = zoom.ToString(); });
|
||||||
|
|
||||||
|
var label = zoom.ToString();
|
||||||
|
item.Get<LabelWidget>("LABEL").GetText = () => label;
|
||||||
|
|
||||||
|
return item;
|
||||||
|
};
|
||||||
|
|
||||||
|
var options = new[] { 2f, 1f, 0.5f, 0.25f };
|
||||||
|
zoomDropdown.OnMouseDown = _ => zoomDropdown.ShowDropDown("LABEL_DROPDOWN_TEMPLATE", 150, options, setupItem);
|
||||||
|
zoomDropdown.GetText = () => selectedLabel;
|
||||||
|
zoomDropdown.GetKey = _ => Game.Settings.Keys.TogglePixelDoubleKey;
|
||||||
|
zoomDropdown.OnKeyPress = e =>
|
||||||
|
{
|
||||||
|
var key = Hotkey.FromKeyInput(e);
|
||||||
|
if (key != Game.Settings.Keys.TogglePixelDoubleKey)
|
||||||
|
return;
|
||||||
|
|
||||||
|
var selected = (options.IndexOf(selectedZoom) + 1) % options.Length;
|
||||||
|
worldRenderer.Viewport.Zoom = selectedZoom = options[selected];
|
||||||
|
selectedLabel = selectedZoom.ToString();
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,53 @@
|
|||||||
|
#region Copyright & License Information
|
||||||
|
/*
|
||||||
|
* Copyright 2007-2015 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. For more information,
|
||||||
|
* see COPYING.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using OpenRA.GameRules;
|
||||||
|
using OpenRA.Graphics;
|
||||||
|
using OpenRA.Widgets;
|
||||||
|
|
||||||
|
namespace OpenRA.Mods.Common.Widgets.Logic
|
||||||
|
{
|
||||||
|
public class MapEditorTabsLogic
|
||||||
|
{
|
||||||
|
protected enum MenuType { Tiles, Layers, Actors }
|
||||||
|
protected MenuType menuType = MenuType.Tiles;
|
||||||
|
|
||||||
|
[ObjectCreator.UseCtor]
|
||||||
|
public MapEditorTabsLogic(Widget widget, WorldRenderer worldRenderer)
|
||||||
|
{
|
||||||
|
var tabContainer = widget.Get("MAP_EDITOR_TAB_CONTAINER");
|
||||||
|
|
||||||
|
var tilesTab = tabContainer.Get<ButtonWidget>("TILES_TAB");
|
||||||
|
tilesTab.IsHighlighted = () => menuType == MenuType.Tiles;
|
||||||
|
tilesTab.OnClick = () => { menuType = MenuType.Tiles; };
|
||||||
|
|
||||||
|
var overlaysTab = tabContainer.Get<ButtonWidget>("OVERLAYS_TAB");
|
||||||
|
overlaysTab.IsHighlighted = () => menuType == MenuType.Layers;
|
||||||
|
overlaysTab.OnClick = () => { menuType = MenuType.Layers; };
|
||||||
|
|
||||||
|
var actorsTab = tabContainer.Get<ButtonWidget>("ACTORS_TAB");
|
||||||
|
actorsTab.IsHighlighted = () => menuType == MenuType.Actors;
|
||||||
|
actorsTab.OnClick = () => { menuType = MenuType.Actors; };
|
||||||
|
|
||||||
|
var tileContainer = widget.Parent.Get<ContainerWidget>("TILE_WIDGETS");
|
||||||
|
tileContainer.IsVisible = () => menuType == MenuType.Tiles;
|
||||||
|
|
||||||
|
var layerContainer = widget.Parent.Get<ContainerWidget>("LAYER_WIDGETS");
|
||||||
|
layerContainer.IsVisible = () => menuType == MenuType.Layers;
|
||||||
|
|
||||||
|
var actorContainer = widget.Parent.Get<ContainerWidget>("ACTOR_WIDGETS");
|
||||||
|
actorContainer.IsVisible = () => menuType == MenuType.Actors;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
94
OpenRA.Mods.Common/Widgets/Logic/Editor/NewMapLogic.cs
Normal file
94
OpenRA.Mods.Common/Widgets/Logic/Editor/NewMapLogic.cs
Normal file
@@ -0,0 +1,94 @@
|
|||||||
|
#region Copyright & License Information
|
||||||
|
/*
|
||||||
|
* Copyright 2007-2015 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. For more information,
|
||||||
|
* see COPYING.
|
||||||
|
*/
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Globalization;
|
||||||
|
using System.IO;
|
||||||
|
using System.Linq;
|
||||||
|
using OpenRA;
|
||||||
|
using OpenRA.FileFormats;
|
||||||
|
using OpenRA.Mods.Common.Widgets;
|
||||||
|
using OpenRA.Traits;
|
||||||
|
using OpenRA.Widgets;
|
||||||
|
|
||||||
|
namespace OpenRA.Mods.Common.Widgets.Logic
|
||||||
|
{
|
||||||
|
public class NewMapLogic
|
||||||
|
{
|
||||||
|
Widget panel;
|
||||||
|
|
||||||
|
[ObjectCreator.UseCtor]
|
||||||
|
public NewMapLogic(Action onExit, Action<string> onSelect, Ruleset modRules, Widget widget, World world)
|
||||||
|
{
|
||||||
|
panel = widget;
|
||||||
|
|
||||||
|
panel.Get<ButtonWidget>("CANCEL_BUTTON").OnClick = () => { Ui.CloseWindow(); onExit(); };
|
||||||
|
|
||||||
|
var tilesetDropDown = panel.Get<DropDownButtonWidget>("TILESET");
|
||||||
|
var tilesets = modRules.TileSets.Select(t => t.Key).ToList();
|
||||||
|
Func<string, ScrollItemWidget, ScrollItemWidget> setupItem = (option, template) =>
|
||||||
|
{
|
||||||
|
var item = ScrollItemWidget.Setup(template,
|
||||||
|
() => tilesetDropDown.Text == option,
|
||||||
|
() => { tilesetDropDown.Text = option; });
|
||||||
|
item.Get<LabelWidget>("LABEL").GetText = () => option;
|
||||||
|
return item;
|
||||||
|
};
|
||||||
|
tilesetDropDown.Text = tilesets.First();
|
||||||
|
tilesetDropDown.OnClick = () =>
|
||||||
|
tilesetDropDown.ShowDropDown("LABEL_DROPDOWN_TEMPLATE", 210, tilesets, setupItem);
|
||||||
|
|
||||||
|
var widthTextField = panel.Get<TextFieldWidget>("WIDTH");
|
||||||
|
var heightTextField = panel.Get<TextFieldWidget>("HEIGHT");
|
||||||
|
|
||||||
|
panel.Get<ButtonWidget>("CREATE_BUTTON").OnClick = () =>
|
||||||
|
{
|
||||||
|
var tileset = modRules.TileSets[tilesetDropDown.Text];
|
||||||
|
var map = Map.FromTileset(tileset);
|
||||||
|
|
||||||
|
int width, height;
|
||||||
|
int.TryParse(widthTextField.Text, out width);
|
||||||
|
int.TryParse(heightTextField.Text, out height);
|
||||||
|
|
||||||
|
// Require at least a 2x2 playable area so that the
|
||||||
|
// ground is visible through the edge shroud
|
||||||
|
width = Math.Max(2, width);
|
||||||
|
height = Math.Max(2, height);
|
||||||
|
|
||||||
|
map.Resize(width + 2, height + tileset.MaxGroundHeight + 2);
|
||||||
|
map.ResizeCordon(1, 1, width + 1, height + tileset.MaxGroundHeight + 1);
|
||||||
|
map.PlayerDefinitions = new MapPlayers(map.Rules, map.SpawnPoints.Value.Length).ToMiniYaml();
|
||||||
|
map.FixOpenAreas(modRules);
|
||||||
|
|
||||||
|
var userMapFolder = Game.ModData.Manifest.MapFolders.First(f => f.Value == "User").Key;
|
||||||
|
|
||||||
|
// Ignore optional flag
|
||||||
|
if (userMapFolder.StartsWith("~"))
|
||||||
|
userMapFolder = userMapFolder.Substring(1);
|
||||||
|
|
||||||
|
var mapDir = Platform.ResolvePath(userMapFolder);
|
||||||
|
Directory.CreateDirectory(mapDir);
|
||||||
|
var tempLocation = Path.Combine(mapDir, "temp") + ".oramap";
|
||||||
|
map.Save(tempLocation); // TODO: load it right away and save later properly
|
||||||
|
|
||||||
|
var newMap = new Map(tempLocation);
|
||||||
|
Game.ModData.MapCache[newMap.Uid].UpdateFromMap(newMap, MapClassification.User);
|
||||||
|
|
||||||
|
ConnectionLogic.Connect(System.Net.IPAddress.Loopback.ToString(),
|
||||||
|
Game.CreateLocalServer(newMap.Uid),
|
||||||
|
"",
|
||||||
|
() => { Game.LoadEditor(newMap.Uid); },
|
||||||
|
() => { Game.CloseServer(); onExit(); });
|
||||||
|
onSelect(newMap.Uid);
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
122
OpenRA.Mods.Common/Widgets/Logic/Editor/SaveMapLogic.cs
Normal file
122
OpenRA.Mods.Common/Widgets/Logic/Editor/SaveMapLogic.cs
Normal file
@@ -0,0 +1,122 @@
|
|||||||
|
#region Copyright & License Information
|
||||||
|
/*
|
||||||
|
* Copyright 2007-2015 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. For more information,
|
||||||
|
* see COPYING.
|
||||||
|
*/
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.IO;
|
||||||
|
using System.Linq;
|
||||||
|
using OpenRA.Mods.Common.Traits;
|
||||||
|
using OpenRA.Widgets;
|
||||||
|
|
||||||
|
namespace OpenRA.Mods.Common.Widgets.Logic
|
||||||
|
{
|
||||||
|
public class SaveMapLogic
|
||||||
|
{
|
||||||
|
[ObjectCreator.UseCtor]
|
||||||
|
public SaveMapLogic(Widget widget, Action onExit, World world)
|
||||||
|
{
|
||||||
|
var newMap = world.Map;
|
||||||
|
|
||||||
|
var title = widget.GetOrNull<TextFieldWidget>("TITLE");
|
||||||
|
if (title != null)
|
||||||
|
title.Text = newMap.Title;
|
||||||
|
|
||||||
|
var description = widget.GetOrNull<TextFieldWidget>("DESCRIPTION");
|
||||||
|
if (description != null)
|
||||||
|
description.Text = newMap.Description;
|
||||||
|
|
||||||
|
var author = widget.GetOrNull<TextFieldWidget>("AUTHOR");
|
||||||
|
if (author != null)
|
||||||
|
author.Text = newMap.Author;
|
||||||
|
|
||||||
|
var visibilityDropdown = widget.GetOrNull<DropDownButtonWidget>("CLASS_DROPDOWN");
|
||||||
|
if (visibilityDropdown != null)
|
||||||
|
{
|
||||||
|
var mapVisibility = new List<string>(Enum.GetNames(typeof(MapVisibility)));
|
||||||
|
Func<string, ScrollItemWidget, ScrollItemWidget> setupItem = (option, template) =>
|
||||||
|
{
|
||||||
|
var item = ScrollItemWidget.Setup(template,
|
||||||
|
() => visibilityDropdown.Text == option,
|
||||||
|
() => { visibilityDropdown.Text = option; });
|
||||||
|
item.Get<LabelWidget>("LABEL").GetText = () => option;
|
||||||
|
return item;
|
||||||
|
};
|
||||||
|
visibilityDropdown.Text = Enum.GetName(typeof(MapVisibility), newMap.Visibility);
|
||||||
|
visibilityDropdown.OnClick = () =>
|
||||||
|
visibilityDropdown.ShowDropDown("LABEL_DROPDOWN_TEMPLATE", 210, mapVisibility, setupItem);
|
||||||
|
}
|
||||||
|
|
||||||
|
var pathDropdown = widget.GetOrNull<DropDownButtonWidget>("PATH_DROPDOWN");
|
||||||
|
if (pathDropdown != null)
|
||||||
|
{
|
||||||
|
var mapFolders = new List<string>();
|
||||||
|
foreach (var mapFolder in Game.ModData.Manifest.MapFolders.Keys)
|
||||||
|
{
|
||||||
|
var folder = mapFolder;
|
||||||
|
if (mapFolder.StartsWith("~"))
|
||||||
|
folder = mapFolder.Substring(1);
|
||||||
|
|
||||||
|
mapFolders.Add(Platform.ResolvePath(folder));
|
||||||
|
}
|
||||||
|
|
||||||
|
Func<string, ScrollItemWidget, ScrollItemWidget> setupItem = (option, template) =>
|
||||||
|
{
|
||||||
|
var item = ScrollItemWidget.Setup(template,
|
||||||
|
() => pathDropdown.Text == Platform.UnresolvePath(option),
|
||||||
|
() => { pathDropdown.Text = Platform.UnresolvePath(option); });
|
||||||
|
item.Get<LabelWidget>("LABEL").GetText = () => option;
|
||||||
|
return item;
|
||||||
|
};
|
||||||
|
|
||||||
|
var userMapFolder = Game.ModData.Manifest.MapFolders.First(f => f.Value == "User").Key;
|
||||||
|
if (userMapFolder.StartsWith("~"))
|
||||||
|
userMapFolder = userMapFolder.Substring(1);
|
||||||
|
pathDropdown.Text = Platform.UnresolvePath(userMapFolder);
|
||||||
|
pathDropdown.OnClick = () =>
|
||||||
|
pathDropdown.ShowDropDown("LABEL_DROPDOWN_TEMPLATE", 210, mapFolders, setupItem);
|
||||||
|
}
|
||||||
|
|
||||||
|
var filename = widget.GetOrNull<TextFieldWidget>("FILENAME");
|
||||||
|
if (filename != null)
|
||||||
|
filename.Text = Path.GetFileName(world.Map.Path);
|
||||||
|
|
||||||
|
var close = widget.GetOrNull<ButtonWidget>("CLOSE");
|
||||||
|
if (close != null)
|
||||||
|
close.OnClick = () => { Ui.CloseWindow(); onExit(); };
|
||||||
|
|
||||||
|
var save = widget.GetOrNull<ButtonWidget>("SAVE");
|
||||||
|
if (save != null && !string.IsNullOrEmpty(filename.Text))
|
||||||
|
{
|
||||||
|
var editorLayer = world.WorldActor.Trait<EditorActorLayer>();
|
||||||
|
save.OnClick = () =>
|
||||||
|
{
|
||||||
|
newMap.Title = title.Text;
|
||||||
|
newMap.Description = description.Text;
|
||||||
|
newMap.Author = author.Text;
|
||||||
|
newMap.Visibility = (MapVisibility)Enum.Parse(typeof(MapVisibility), visibilityDropdown.Text);
|
||||||
|
newMap.ActorDefinitions = editorLayer.Save();
|
||||||
|
newMap.PlayerDefinitions = editorLayer.Players.ToMiniYaml();
|
||||||
|
newMap.RequiresMod = Game.ModData.Manifest.Mod.Id;
|
||||||
|
|
||||||
|
var combinedPath = Path.Combine(pathDropdown.Text, filename.Text);
|
||||||
|
var resolvedPath = Platform.ResolvePath(combinedPath);
|
||||||
|
newMap.Save(resolvedPath);
|
||||||
|
|
||||||
|
// Update the map cache so it can be loaded without restarting the game
|
||||||
|
Game.ModData.MapCache[newMap.Uid].UpdateFromMap(newMap, MapClassification.User);
|
||||||
|
|
||||||
|
Console.WriteLine("Saved current map at {0}", resolvedPath);
|
||||||
|
Ui.CloseWindow();
|
||||||
|
onExit();
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
92
OpenRA.Mods.Common/Widgets/Logic/Editor/TileSelectorLogic.cs
Normal file
92
OpenRA.Mods.Common/Widgets/Logic/Editor/TileSelectorLogic.cs
Normal file
@@ -0,0 +1,92 @@
|
|||||||
|
#region Copyright & License Information
|
||||||
|
/*
|
||||||
|
* Copyright 2007-2015 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. For more information,
|
||||||
|
* see COPYING.
|
||||||
|
*/
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Linq;
|
||||||
|
using OpenRA.FileFormats;
|
||||||
|
using OpenRA.Graphics;
|
||||||
|
using OpenRA.Widgets;
|
||||||
|
|
||||||
|
namespace OpenRA.Mods.Common.Widgets.Logic
|
||||||
|
{
|
||||||
|
public class TileSelectorLogic
|
||||||
|
{
|
||||||
|
readonly EditorViewportControllerWidget editor;
|
||||||
|
readonly ScrollPanelWidget panel;
|
||||||
|
readonly ScrollItemWidget itemTemplate;
|
||||||
|
|
||||||
|
[ObjectCreator.UseCtor]
|
||||||
|
public TileSelectorLogic(Widget widget, WorldRenderer worldRenderer, Ruleset modRules)
|
||||||
|
{
|
||||||
|
var tileset = modRules.TileSets[worldRenderer.World.Map.Tileset];
|
||||||
|
|
||||||
|
editor = widget.Parent.Get<EditorViewportControllerWidget>("MAP_EDITOR");
|
||||||
|
panel = widget.Get<ScrollPanelWidget>("TILETEMPLATE_LIST");
|
||||||
|
itemTemplate = panel.Get<ScrollItemWidget>("TILEPREVIEW_TEMPLATE");
|
||||||
|
panel.Layout = new GridLayout(panel);
|
||||||
|
|
||||||
|
var tileCategorySelector = widget.Get<DropDownButtonWidget>("TILE_CATEGORY");
|
||||||
|
var categories = tileset.EditorTemplateOrder;
|
||||||
|
Func<string, ScrollItemWidget, ScrollItemWidget> setupItem = (option, template) =>
|
||||||
|
{
|
||||||
|
var item = ScrollItemWidget.Setup(template,
|
||||||
|
() => tileCategorySelector.Text == option,
|
||||||
|
() => { tileCategorySelector.Text = option; IntializeTilePreview(widget, worldRenderer, tileset, option); });
|
||||||
|
|
||||||
|
item.Get<LabelWidget>("LABEL").GetText = () => option;
|
||||||
|
return item;
|
||||||
|
};
|
||||||
|
|
||||||
|
tileCategorySelector.OnClick = () =>
|
||||||
|
tileCategorySelector.ShowDropDown("LABEL_DROPDOWN_TEMPLATE", 270, categories, setupItem);
|
||||||
|
|
||||||
|
tileCategorySelector.Text = categories.First();
|
||||||
|
IntializeTilePreview(widget, worldRenderer, tileset, categories.First());
|
||||||
|
}
|
||||||
|
|
||||||
|
void IntializeTilePreview(Widget widget, WorldRenderer worldRenderer, TileSet tileset, string category)
|
||||||
|
{
|
||||||
|
panel.RemoveChildren();
|
||||||
|
|
||||||
|
var tileIds = tileset.Templates
|
||||||
|
.Where(t => t.Value.Category == category)
|
||||||
|
.Select(t => t.Value.Id);
|
||||||
|
|
||||||
|
foreach (var t in tileIds)
|
||||||
|
{
|
||||||
|
var tileId = t;
|
||||||
|
var item = ScrollItemWidget.Setup(itemTemplate,
|
||||||
|
() => { var brush = editor.CurrentBrush as EditorTileBrush; return brush != null && brush.Template == tileId; },
|
||||||
|
() => editor.SetBrush(new EditorTileBrush(editor, tileId, worldRenderer)));
|
||||||
|
|
||||||
|
var preview = item.Get<TerrainTemplatePreviewWidget>("TILE_PREVIEW");
|
||||||
|
var template = tileset.Templates[tileId];
|
||||||
|
var bounds = worldRenderer.Theater.TemplateBounds(template, Game.ModData.Manifest.TileSize, worldRenderer.World.Map.TileShape);
|
||||||
|
|
||||||
|
// Scale templates to fit within the panel
|
||||||
|
var scale = 1f;
|
||||||
|
while (scale * bounds.Width > itemTemplate.Bounds.Width)
|
||||||
|
scale /= 2;
|
||||||
|
|
||||||
|
preview.Template = template;
|
||||||
|
preview.GetScale = () => scale;
|
||||||
|
preview.Bounds.Width = (int)(scale * bounds.Width);
|
||||||
|
preview.Bounds.Height = (int)(scale * bounds.Height);
|
||||||
|
|
||||||
|
item.Bounds.Width = preview.Bounds.Width + 2 * preview.Bounds.X;
|
||||||
|
item.Bounds.Height = preview.Bounds.Height + 2 * preview.Bounds.Y;
|
||||||
|
item.IsVisible = () => true;
|
||||||
|
item.GetTooltipText = () => tileId.ToString();
|
||||||
|
|
||||||
|
panel.AddChild(item);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
#region Copyright & License Information
|
||||||
|
/*
|
||||||
|
* Copyright 2007-2015 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. For more information,
|
||||||
|
* see COPYING.
|
||||||
|
*/
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
using OpenRA.Widgets;
|
||||||
|
|
||||||
|
namespace OpenRA.Mods.Common.Widgets.Logic
|
||||||
|
{
|
||||||
|
public class LoadMapEditorLogic
|
||||||
|
{
|
||||||
|
[ObjectCreator.UseCtor]
|
||||||
|
public LoadMapEditorLogic(Widget widget, World world)
|
||||||
|
{
|
||||||
|
var editorRoot = widget.Get("WORLD_ROOT");
|
||||||
|
Game.LoadWidget(world, "EDITOR_WORLD_ROOT", editorRoot, new WidgetArgs());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -16,6 +16,7 @@ namespace OpenRA.Mods.Common.Widgets
|
|||||||
{
|
{
|
||||||
public class SpriteWidget : Widget
|
public class SpriteWidget : Widget
|
||||||
{
|
{
|
||||||
|
public Func<float> GetScale = () => 1f;
|
||||||
public string Palette = "chrome";
|
public string Palette = "chrome";
|
||||||
public Func<string> GetPalette;
|
public Func<string> GetPalette;
|
||||||
public Func<Sprite> GetSprite;
|
public Func<Sprite> GetSprite;
|
||||||
@@ -44,6 +45,7 @@ namespace OpenRA.Mods.Common.Widgets
|
|||||||
|
|
||||||
Sprite cachedSprite = null;
|
Sprite cachedSprite = null;
|
||||||
string cachedPalette = null;
|
string cachedPalette = null;
|
||||||
|
float cachedScale;
|
||||||
PaletteReference pr;
|
PaletteReference pr;
|
||||||
float2 offset = float2.Zero;
|
float2 offset = float2.Zero;
|
||||||
|
|
||||||
@@ -51,6 +53,7 @@ namespace OpenRA.Mods.Common.Widgets
|
|||||||
{
|
{
|
||||||
var sprite = GetSprite();
|
var sprite = GetSprite();
|
||||||
var palette = GetPalette();
|
var palette = GetPalette();
|
||||||
|
var scale = GetScale();
|
||||||
|
|
||||||
if (sprite == null || palette == null)
|
if (sprite == null || palette == null)
|
||||||
return;
|
return;
|
||||||
@@ -67,7 +70,14 @@ namespace OpenRA.Mods.Common.Widgets
|
|||||||
cachedPalette = palette;
|
cachedPalette = palette;
|
||||||
}
|
}
|
||||||
|
|
||||||
Game.Renderer.SpriteRenderer.DrawSprite(sprite, RenderOrigin + offset, pr);
|
if (scale != cachedScale)
|
||||||
|
{
|
||||||
|
offset *= scale;
|
||||||
|
cachedScale = scale;
|
||||||
|
}
|
||||||
|
|
||||||
|
var size = new float2(sprite.Size.X * scale, sprite.Size.Y * scale);
|
||||||
|
Game.Renderer.SpriteRenderer.DrawSprite(sprite, RenderOrigin + offset, pr, size);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -42,6 +42,8 @@ namespace OpenRA.Mods.D2k.Traits
|
|||||||
return t;
|
return t;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
t.Density = ResourceDensityAt(c);
|
||||||
|
|
||||||
int index;
|
int index;
|
||||||
var clear = FindClearSides(t.Type, c);
|
var clear = FindClearSides(t.Type, c);
|
||||||
if (clear == ClearSides.None)
|
if (clear == ClearSides.None)
|
||||||
|
|||||||
378
mods/cnc/chrome/editor.yaml
Normal file
378
mods/cnc/chrome/editor.yaml
Normal file
@@ -0,0 +1,378 @@
|
|||||||
|
Container@NEW_MAP_BG:
|
||||||
|
Logic: NewMapLogic
|
||||||
|
X: (WINDOW_RIGHT - WIDTH)/2
|
||||||
|
Y: (WINDOW_BOTTOM - HEIGHT)/2
|
||||||
|
Width: 300
|
||||||
|
Height: 150
|
||||||
|
Children:
|
||||||
|
Label@TITLE:
|
||||||
|
Text:New Map
|
||||||
|
Width: PARENT_RIGHT
|
||||||
|
Y: 0-25
|
||||||
|
Font: BigBold
|
||||||
|
Contrast: true
|
||||||
|
Align: Center
|
||||||
|
Background@bg:
|
||||||
|
Width: PARENT_RIGHT
|
||||||
|
Height: 115
|
||||||
|
Background: panel-black
|
||||||
|
Children:
|
||||||
|
Label@TILESET_LABEL:
|
||||||
|
X: 5
|
||||||
|
Y: 19
|
||||||
|
Width: 95
|
||||||
|
Height: 25
|
||||||
|
Align: Right
|
||||||
|
Text: Tileset:
|
||||||
|
DropDownButton@TILESET:
|
||||||
|
X: 105
|
||||||
|
Y: 22
|
||||||
|
Width: 150
|
||||||
|
Height: 25
|
||||||
|
Label@WIDTH_LABEL:
|
||||||
|
X: 5
|
||||||
|
Y: 59
|
||||||
|
Width: 95
|
||||||
|
Height: 25
|
||||||
|
Align: Right
|
||||||
|
Text: Width:
|
||||||
|
TextField@WIDTH:
|
||||||
|
X: 105
|
||||||
|
Y: 60
|
||||||
|
Width: 50
|
||||||
|
MaxLength: 3
|
||||||
|
Height: 25
|
||||||
|
Text: 128
|
||||||
|
Label@HEIGHT_LABEL:
|
||||||
|
X: 115
|
||||||
|
Y: 59
|
||||||
|
Width: 95
|
||||||
|
Height: 25
|
||||||
|
Align: Right
|
||||||
|
Text: Height:
|
||||||
|
TextField@HEIGHT:
|
||||||
|
X: 215
|
||||||
|
Y: 60
|
||||||
|
Width: 50
|
||||||
|
MaxLength: 3
|
||||||
|
Height: 25
|
||||||
|
Text: 128
|
||||||
|
Button@CREATE_BUTTON:
|
||||||
|
X: 0
|
||||||
|
Y: 114
|
||||||
|
Width: 140
|
||||||
|
Height: 35
|
||||||
|
Text: Create
|
||||||
|
Font: Bold
|
||||||
|
Key: return
|
||||||
|
Button@CANCEL_BUTTON:
|
||||||
|
X: PARENT_RIGHT - WIDTH
|
||||||
|
Y: 114
|
||||||
|
Width: 140
|
||||||
|
Height: 35
|
||||||
|
Text: Cancel
|
||||||
|
Font: Bold
|
||||||
|
Key: escape
|
||||||
|
|
||||||
|
Container@SAVE_MAP_PANEL:
|
||||||
|
X: (WINDOW_RIGHT - WIDTH)/2
|
||||||
|
Y: (WINDOW_BOTTOM - HEIGHT)/2
|
||||||
|
Width: 350
|
||||||
|
Height: 330
|
||||||
|
Children:
|
||||||
|
Label@TITLE:
|
||||||
|
Text: Save Map
|
||||||
|
Width: PARENT_RIGHT
|
||||||
|
Y: 0-25
|
||||||
|
Font: BigBold
|
||||||
|
Contrast: true
|
||||||
|
Align: Center
|
||||||
|
Background@SAVE_MAP_BACKGROUND:
|
||||||
|
Logic: SaveMapLogic
|
||||||
|
Width: PARENT_RIGHT
|
||||||
|
Height: 295
|
||||||
|
Background: panel-black
|
||||||
|
Children:
|
||||||
|
Label@TITLE_LABEL:
|
||||||
|
X: 10
|
||||||
|
Y: 39
|
||||||
|
Width: 95
|
||||||
|
Height: 25
|
||||||
|
Align: Right
|
||||||
|
Text: Title:
|
||||||
|
TextField@TITLE:
|
||||||
|
X: 110
|
||||||
|
Y: 40
|
||||||
|
Width: 210
|
||||||
|
MaxLength: 50
|
||||||
|
Height: 25
|
||||||
|
Label@DESCRIPTION_LABEL:
|
||||||
|
X: 10
|
||||||
|
Y: 79
|
||||||
|
Width: 95
|
||||||
|
Height: 25
|
||||||
|
Align: Right
|
||||||
|
Text: Description:
|
||||||
|
TextField@DESCRIPTION:
|
||||||
|
X: 110
|
||||||
|
Y: 80
|
||||||
|
Width: 210
|
||||||
|
MaxLength: 50
|
||||||
|
Height: 25
|
||||||
|
Label@AUTHOR_LABEL:
|
||||||
|
X: 10
|
||||||
|
Y: 119
|
||||||
|
Width: 95
|
||||||
|
Height: 25
|
||||||
|
Align: Right
|
||||||
|
Text: Author:
|
||||||
|
TextField@AUTHOR:
|
||||||
|
X: 110
|
||||||
|
Y: 120
|
||||||
|
Width: 210
|
||||||
|
MaxLength: 50
|
||||||
|
Height: 25
|
||||||
|
Label@CLASS_LABEL:
|
||||||
|
X: 10
|
||||||
|
Y: 160
|
||||||
|
Width: 95
|
||||||
|
Height: 25
|
||||||
|
Align: Right
|
||||||
|
Text: Class:
|
||||||
|
DropDownButton@CLASS_DROPDOWN:
|
||||||
|
X: 110
|
||||||
|
Y: 160
|
||||||
|
Width: 210
|
||||||
|
Height: 25
|
||||||
|
Label@PATH_LABEL:
|
||||||
|
X: 10
|
||||||
|
Y: 199
|
||||||
|
Width: 40
|
||||||
|
Height: 25
|
||||||
|
Align: Right
|
||||||
|
Text: Path:
|
||||||
|
DropDownButton@PATH_DROPDOWN:
|
||||||
|
X: 60
|
||||||
|
Y: 200
|
||||||
|
Width: 270
|
||||||
|
Height: 25
|
||||||
|
Label@FILENAME_LABEL:
|
||||||
|
X: 10
|
||||||
|
Y: 239
|
||||||
|
Width: 40
|
||||||
|
Height: 25
|
||||||
|
Align: Right
|
||||||
|
Text: File:
|
||||||
|
TextField@FILENAME:
|
||||||
|
X: 60
|
||||||
|
Y: 240
|
||||||
|
Width: 270
|
||||||
|
Height: 25
|
||||||
|
Button@CLOSE:
|
||||||
|
X: 0
|
||||||
|
Y: 294
|
||||||
|
Width: 140
|
||||||
|
Height: 35
|
||||||
|
Text: Close
|
||||||
|
Font: Bold
|
||||||
|
Key: escape
|
||||||
|
Button@SAVE:
|
||||||
|
X: PARENT_RIGHT - WIDTH
|
||||||
|
Y: 294
|
||||||
|
Width: 140
|
||||||
|
Height: 35
|
||||||
|
Text: Save
|
||||||
|
Font: Bold
|
||||||
|
|
||||||
|
Container@EDITOR_ROOT:
|
||||||
|
Logic: LoadMapEditorLogic
|
||||||
|
Children:
|
||||||
|
Container@WORLD_ROOT:
|
||||||
|
Container@MENU_ROOT:
|
||||||
|
TooltipContainer@TOOLTIP_CONTAINER:
|
||||||
|
|
||||||
|
Container@EDITOR_WORLD_ROOT:
|
||||||
|
Logic: LoadIngamePerfLogic, MapEditorLogic
|
||||||
|
Children:
|
||||||
|
Container@PERF_ROOT:
|
||||||
|
ViewportController:
|
||||||
|
Width: WINDOW_RIGHT
|
||||||
|
Height: WINDOW_BOTTOM
|
||||||
|
EditorViewportController@MAP_EDITOR:
|
||||||
|
Width: WINDOW_RIGHT
|
||||||
|
Height: WINDOW_BOTTOM
|
||||||
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
|
TooltipTemplate: SIMPLE_TOOLTIP
|
||||||
|
Children:
|
||||||
|
TerrainTemplatePreview@DRAG_TILE_PREVIEW:
|
||||||
|
Visible: false
|
||||||
|
Sprite@DRAG_LAYER_PREVIEW:
|
||||||
|
Visible: false
|
||||||
|
ActorPreview@DRAG_ACTOR_PREVIEW:
|
||||||
|
Visible: false
|
||||||
|
Background@RADAR_BG:
|
||||||
|
X: WINDOW_RIGHT-255
|
||||||
|
Y: 5
|
||||||
|
Width: 250
|
||||||
|
Height: 250
|
||||||
|
Background: panel-gray
|
||||||
|
Children:
|
||||||
|
Radar@INGAME_RADAR:
|
||||||
|
X: 1
|
||||||
|
Y: 1
|
||||||
|
Width: PARENT_RIGHT-2
|
||||||
|
Height: PARENT_BOTTOM-2
|
||||||
|
MenuButton@OPTIONS_BUTTON:
|
||||||
|
Logic: MenuButtonsChromeLogic
|
||||||
|
Key: escape
|
||||||
|
X: WINDOW_RIGHT-254-WIDTH
|
||||||
|
Y: 5
|
||||||
|
Width: 30
|
||||||
|
Height: 25
|
||||||
|
TooltipText: Menu
|
||||||
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
|
Children:
|
||||||
|
Image:
|
||||||
|
X: 7
|
||||||
|
Y: 5
|
||||||
|
ImageCollection: order-icons
|
||||||
|
ImageName: options
|
||||||
|
Container@TILE_WIDGETS:
|
||||||
|
Logic: TileSelectorLogic
|
||||||
|
X: WINDOW_RIGHT-255
|
||||||
|
Y: 278
|
||||||
|
Width: 250
|
||||||
|
Height: 324
|
||||||
|
ClickThrough: false
|
||||||
|
Children:
|
||||||
|
Container@TILES_BG:
|
||||||
|
Width: PARENT_RIGHT
|
||||||
|
Height: PARENT_BOTTOM
|
||||||
|
Children:
|
||||||
|
DropDownButton@TILE_CATEGORY:
|
||||||
|
Width: PARENT_RIGHT
|
||||||
|
Height: 25
|
||||||
|
Font: Bold
|
||||||
|
ScrollPanel@TILETEMPLATE_LIST:
|
||||||
|
Y: 24
|
||||||
|
Width: PARENT_RIGHT
|
||||||
|
Height: PARENT_BOTTOM - 24
|
||||||
|
ItemSpacing: 4
|
||||||
|
Children:
|
||||||
|
ScrollItem@TILEPREVIEW_TEMPLATE:
|
||||||
|
Visible: false
|
||||||
|
Width: PARENT_RIGHT - 35
|
||||||
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
|
Children:
|
||||||
|
TerrainTemplatePreview@TILE_PREVIEW:
|
||||||
|
X: 4
|
||||||
|
Y: 4
|
||||||
|
Container@LAYER_WIDGETS:
|
||||||
|
Logic: LayerSelectorLogic
|
||||||
|
X: WINDOW_RIGHT-255
|
||||||
|
Y: 278
|
||||||
|
Width: 250
|
||||||
|
Height: 324
|
||||||
|
ClickThrough: false
|
||||||
|
Children:
|
||||||
|
Container@LAYERS_BG:
|
||||||
|
Width: PARENT_RIGHT
|
||||||
|
Height: PARENT_BOTTOM
|
||||||
|
Children:
|
||||||
|
ScrollPanel@LAYERTEMPLATE_LIST:
|
||||||
|
Width: PARENT_RIGHT
|
||||||
|
Height: PARENT_BOTTOM
|
||||||
|
ItemSpacing: 4
|
||||||
|
Children:
|
||||||
|
ScrollItem@LAYERPREVIEW_TEMPLATE:
|
||||||
|
Visible: false
|
||||||
|
IgnoreChildMouseOver: true
|
||||||
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
|
Children:
|
||||||
|
Sprite@LAYER_PREVIEW:
|
||||||
|
X: 4
|
||||||
|
Y: 4
|
||||||
|
Visible: false
|
||||||
|
Container@ACTOR_WIDGETS:
|
||||||
|
Logic: ActorSelectorLogic
|
||||||
|
X: WINDOW_RIGHT-255
|
||||||
|
Y: 278
|
||||||
|
Width: 250
|
||||||
|
Height: 324
|
||||||
|
ClickThrough: false
|
||||||
|
Children:
|
||||||
|
Container@ACTORS_BG:
|
||||||
|
Width: PARENT_RIGHT
|
||||||
|
Height: PARENT_BOTTOM
|
||||||
|
Children:
|
||||||
|
DropDownButton@OWNERS_DROPDOWN:
|
||||||
|
Width: PARENT_RIGHT
|
||||||
|
Height: 25
|
||||||
|
Font: Bold
|
||||||
|
ScrollPanel@ACTORTEMPLATE_LIST:
|
||||||
|
Y: 24
|
||||||
|
Width: PARENT_RIGHT
|
||||||
|
Height: PARENT_BOTTOM - 24
|
||||||
|
ItemSpacing: 4
|
||||||
|
Children:
|
||||||
|
ScrollItem@ACTORPREVIEW_TEMPLATE:
|
||||||
|
Visible: false
|
||||||
|
Width: PARENT_RIGHT - 35
|
||||||
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
|
IgnoreChildMouseOver: true
|
||||||
|
Children:
|
||||||
|
ActorPreview@ACTOR_PREVIEW:
|
||||||
|
X: 4
|
||||||
|
Y: 4
|
||||||
|
Visible: true
|
||||||
|
Container@MAP_EDITOR_TAB_CONTAINER:
|
||||||
|
Logic: MapEditorTabsLogic
|
||||||
|
X: WINDOW_RIGHT-255
|
||||||
|
Y: 254
|
||||||
|
Width: 250
|
||||||
|
Height: 25
|
||||||
|
ClickThrough: false
|
||||||
|
Children:
|
||||||
|
Button@TILES_TAB:
|
||||||
|
Width: 81
|
||||||
|
Height: 25
|
||||||
|
Text: Tiles
|
||||||
|
Font: Bold
|
||||||
|
Button@OVERLAYS_TAB:
|
||||||
|
X: 80
|
||||||
|
Width: 90
|
||||||
|
Height: 25
|
||||||
|
Text: Overlays
|
||||||
|
Font: Bold
|
||||||
|
Button@ACTORS_TAB:
|
||||||
|
X: 169
|
||||||
|
Width: 81
|
||||||
|
Height: 25
|
||||||
|
Text: Actors
|
||||||
|
Font: Bold
|
||||||
|
Button@GRID_BUTTON:
|
||||||
|
X: WINDOW_RIGHT - 420
|
||||||
|
Y: 5
|
||||||
|
Width: 100
|
||||||
|
Height: 25
|
||||||
|
Text: Grid
|
||||||
|
Font: Bold
|
||||||
|
Key: f1
|
||||||
|
TooltipTemplate: BUTTON_TOOLTIP
|
||||||
|
TooltipText: Toggle the terrain grid
|
||||||
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
|
Label@ZOOM_LABEL:
|
||||||
|
X: WINDOW_RIGHT - 500 - 55
|
||||||
|
Y: 5
|
||||||
|
Width: 50
|
||||||
|
Height: 25
|
||||||
|
Text: Zoom:
|
||||||
|
Align: Right
|
||||||
|
Font: Bold
|
||||||
|
Contrast: true
|
||||||
|
DropDownButton@ZOOM_BUTTON:
|
||||||
|
X: WINDOW_RIGHT - 500
|
||||||
|
Y: 5
|
||||||
|
Width: 70
|
||||||
|
Height: 25
|
||||||
|
Font: Bold
|
||||||
@@ -33,12 +33,24 @@ Container@INGAME_MENU:
|
|||||||
Width: 140
|
Width: 140
|
||||||
Height: 35
|
Height: 35
|
||||||
Text: Abort Mission
|
Text: Abort Mission
|
||||||
|
Button@EXIT_EDITOR:
|
||||||
|
X: 0
|
||||||
|
Y: 0
|
||||||
|
Width: 140
|
||||||
|
Height: 35
|
||||||
|
Text: Exit Map Editor
|
||||||
Button@SURRENDER:
|
Button@SURRENDER:
|
||||||
X: 150
|
X: 150
|
||||||
Y: 0
|
Y: 0
|
||||||
Width: 140
|
Width: 140
|
||||||
Height: 35
|
Height: 35
|
||||||
Text: Surrender
|
Text: Surrender
|
||||||
|
Button@SAVE_MAP:
|
||||||
|
X: 150
|
||||||
|
Y: 0
|
||||||
|
Width: 140
|
||||||
|
Height: 35
|
||||||
|
Text: Save Map
|
||||||
Button@MUSIC:
|
Button@MUSIC:
|
||||||
X: 300
|
X: 300
|
||||||
Y: 0
|
Y: 0
|
||||||
|
|||||||
@@ -120,6 +120,7 @@ ChromeLayout:
|
|||||||
./mods/cnc/chrome/tooltips.yaml
|
./mods/cnc/chrome/tooltips.yaml
|
||||||
./mods/cnc/chrome/assetbrowser.yaml
|
./mods/cnc/chrome/assetbrowser.yaml
|
||||||
./mods/cnc/chrome/missionbrowser.yaml
|
./mods/cnc/chrome/missionbrowser.yaml
|
||||||
|
./mods/cnc/chrome/editor.yaml
|
||||||
|
|
||||||
Voices:
|
Voices:
|
||||||
./mods/cnc/audio/voices.yaml
|
./mods/cnc/audio/voices.yaml
|
||||||
|
|||||||
@@ -53,6 +53,13 @@ Container@INGAME_MENU:
|
|||||||
Height: 30
|
Height: 30
|
||||||
Text: Surrender
|
Text: Surrender
|
||||||
Font: Bold
|
Font: Bold
|
||||||
|
Button@SAVE_MAP:
|
||||||
|
X: (PARENT_RIGHT - WIDTH)/2
|
||||||
|
Y: 180
|
||||||
|
Width: 140
|
||||||
|
Height: 30
|
||||||
|
Text: Save Map
|
||||||
|
Font: Bold
|
||||||
Button@ABORT_MISSION:
|
Button@ABORT_MISSION:
|
||||||
X: (PARENT_RIGHT - WIDTH)/2
|
X: (PARENT_RIGHT - WIDTH)/2
|
||||||
Y: 220
|
Y: 220
|
||||||
@@ -60,3 +67,10 @@ Container@INGAME_MENU:
|
|||||||
Height: 30
|
Height: 30
|
||||||
Text: Abort Mission
|
Text: Abort Mission
|
||||||
Font: Bold
|
Font: Bold
|
||||||
|
Button@EXIT_EDITOR:
|
||||||
|
X: (PARENT_RIGHT - WIDTH)/2
|
||||||
|
Y: 220
|
||||||
|
Width: 140
|
||||||
|
Height: 30
|
||||||
|
Text: Exit Map Editor
|
||||||
|
Font: Bold
|
||||||
|
|||||||
@@ -100,6 +100,7 @@ ChromeLayout:
|
|||||||
./mods/ra/chrome/assetbrowser.yaml
|
./mods/ra/chrome/assetbrowser.yaml
|
||||||
./mods/ra/chrome/missionbrowser.yaml
|
./mods/ra/chrome/missionbrowser.yaml
|
||||||
./mods/ra/chrome/confirmation-dialogs.yaml
|
./mods/ra/chrome/confirmation-dialogs.yaml
|
||||||
|
./mods/ra/chrome/editor.yaml
|
||||||
|
|
||||||
Weapons:
|
Weapons:
|
||||||
./mods/d2k/weapons.yaml
|
./mods/d2k/weapons.yaml
|
||||||
|
|||||||
@@ -76,4 +76,5 @@ sietch:
|
|||||||
Power:
|
Power:
|
||||||
Amount: 0
|
Amount: 0
|
||||||
ProvidesPrerequisite@buildingname:
|
ProvidesPrerequisite@buildingname:
|
||||||
|
-WithCrumbleOverlay:
|
||||||
|
|
||||||
|
|||||||
367
mods/ra/chrome/editor.yaml
Normal file
367
mods/ra/chrome/editor.yaml
Normal file
@@ -0,0 +1,367 @@
|
|||||||
|
Background@NEW_MAP_BG:
|
||||||
|
Logic: NewMapLogic
|
||||||
|
X: (WINDOW_RIGHT - WIDTH)/2
|
||||||
|
Y: (WINDOW_BOTTOM - HEIGHT)/2
|
||||||
|
Width: 300
|
||||||
|
Height: 200
|
||||||
|
Children:
|
||||||
|
Label@LABEL_TITLE:
|
||||||
|
X: 0
|
||||||
|
Y: 20
|
||||||
|
Width: 300
|
||||||
|
Height: 25
|
||||||
|
Text: New Map
|
||||||
|
Align: Center
|
||||||
|
Font: Bold
|
||||||
|
Label@TILESET_LABEL:
|
||||||
|
X: 5
|
||||||
|
Y: 59
|
||||||
|
Width: 95
|
||||||
|
Height: 25
|
||||||
|
Align: Right
|
||||||
|
Text: Tileset:
|
||||||
|
DropDownButton@TILESET:
|
||||||
|
X: 105
|
||||||
|
Y: 60
|
||||||
|
Width: 150
|
||||||
|
Height: 25
|
||||||
|
Label@WIDTH_LABEL:
|
||||||
|
X: 5
|
||||||
|
Y: 99
|
||||||
|
Width: 95
|
||||||
|
Height: 25
|
||||||
|
Align: Right
|
||||||
|
Text: Width:
|
||||||
|
TextField@WIDTH:
|
||||||
|
X: 105
|
||||||
|
Y: 100
|
||||||
|
Width: 50
|
||||||
|
MaxLength: 3
|
||||||
|
Height: 25
|
||||||
|
Text: 128
|
||||||
|
Label@HEIGHT_LABEL:
|
||||||
|
X: 115
|
||||||
|
Y: 99
|
||||||
|
Width: 95
|
||||||
|
Height: 25
|
||||||
|
Align: Right
|
||||||
|
Text: Height:
|
||||||
|
TextField@HEIGHT:
|
||||||
|
X: 215
|
||||||
|
Y: 100
|
||||||
|
Width: 50
|
||||||
|
MaxLength: 3
|
||||||
|
Height: 25
|
||||||
|
Text: 128
|
||||||
|
Button@CREATE_BUTTON:
|
||||||
|
X: 15
|
||||||
|
Y: PARENT_BOTTOM - 45
|
||||||
|
Width: 120
|
||||||
|
Height: 25
|
||||||
|
Text: Create
|
||||||
|
Font: Bold
|
||||||
|
Key: return
|
||||||
|
Button@CANCEL_BUTTON:
|
||||||
|
X: PARENT_RIGHT - 15 - WIDTH
|
||||||
|
Y: PARENT_BOTTOM - 45
|
||||||
|
Width: 120
|
||||||
|
Height: 25
|
||||||
|
Text: Cancel
|
||||||
|
Font: Bold
|
||||||
|
Key: escape
|
||||||
|
|
||||||
|
Background@SAVE_MAP_PANEL:
|
||||||
|
Logic: SaveMapLogic
|
||||||
|
X: (WINDOW_RIGHT - WIDTH)/2
|
||||||
|
Y: (WINDOW_BOTTOM - HEIGHT)/2
|
||||||
|
Width: 350
|
||||||
|
Height: 350
|
||||||
|
Children:
|
||||||
|
Label@LABEL_TITLE:
|
||||||
|
X: (PARENT_RIGHT - WIDTH)/2
|
||||||
|
Y: 20
|
||||||
|
Width: 250
|
||||||
|
Height: 25
|
||||||
|
Text: Save Map
|
||||||
|
Align: Center
|
||||||
|
Font: Bold
|
||||||
|
Label@TITLE_LABEL:
|
||||||
|
X: 10
|
||||||
|
Y: 59
|
||||||
|
Width: 95
|
||||||
|
Height: 25
|
||||||
|
Align: Right
|
||||||
|
Text: Title:
|
||||||
|
TextField@TITLE:
|
||||||
|
X: 110
|
||||||
|
Y: 60
|
||||||
|
Width: 210
|
||||||
|
MaxLength: 50
|
||||||
|
Height: 25
|
||||||
|
Label@DESCRIPTION_LABEL:
|
||||||
|
X: 10
|
||||||
|
Y: 99
|
||||||
|
Width: 95
|
||||||
|
Height: 25
|
||||||
|
Align: Right
|
||||||
|
Text: Description:
|
||||||
|
TextField@DESCRIPTION:
|
||||||
|
X: 110
|
||||||
|
Y: 100
|
||||||
|
Width: 210
|
||||||
|
MaxLength: 50
|
||||||
|
Height: 25
|
||||||
|
Label@AUTHOR_LABEL:
|
||||||
|
X: 10
|
||||||
|
Y: 139
|
||||||
|
Width: 95
|
||||||
|
Height: 25
|
||||||
|
Align: Right
|
||||||
|
Text: Author:
|
||||||
|
TextField@AUTHOR:
|
||||||
|
X: 110
|
||||||
|
Y: 140
|
||||||
|
Width: 210
|
||||||
|
MaxLength: 50
|
||||||
|
Height: 25
|
||||||
|
Label@CLASS_LABEL:
|
||||||
|
X: 10
|
||||||
|
Y: 180
|
||||||
|
Width: 95
|
||||||
|
Height: 25
|
||||||
|
Align: Right
|
||||||
|
Text: Class:
|
||||||
|
DropDownButton@CLASS_DROPDOWN:
|
||||||
|
X: 110
|
||||||
|
Y: 180
|
||||||
|
Width: 210
|
||||||
|
Height: 25
|
||||||
|
Label@PATH_LABEL:
|
||||||
|
X: 10
|
||||||
|
Y: 219
|
||||||
|
Width: 40
|
||||||
|
Height: 25
|
||||||
|
Align: Right
|
||||||
|
Text: Path:
|
||||||
|
DropDownButton@PATH_DROPDOWN:
|
||||||
|
X: 60
|
||||||
|
Y: 220
|
||||||
|
Width: 270
|
||||||
|
Height: 25
|
||||||
|
Label@FILENAME_LABEL:
|
||||||
|
X: 10
|
||||||
|
Y: 259
|
||||||
|
Width: 40
|
||||||
|
Height: 25
|
||||||
|
Align: Right
|
||||||
|
Text: File:
|
||||||
|
TextField@FILENAME:
|
||||||
|
X: 60
|
||||||
|
Y: 260
|
||||||
|
Width: 270
|
||||||
|
Height: 25
|
||||||
|
Button@CLOSE:
|
||||||
|
X: 30
|
||||||
|
Y: 300
|
||||||
|
Width: 100
|
||||||
|
Height: 25
|
||||||
|
Text: Close
|
||||||
|
Font: Bold
|
||||||
|
Key: escape
|
||||||
|
Button@SAVE:
|
||||||
|
X: 210
|
||||||
|
Y: 300
|
||||||
|
Width: 100
|
||||||
|
Height: 25
|
||||||
|
Text: Save
|
||||||
|
Font: Bold
|
||||||
|
|
||||||
|
Container@EDITOR_ROOT:
|
||||||
|
Logic: LoadMapEditorLogic
|
||||||
|
Children:
|
||||||
|
Container@WORLD_ROOT:
|
||||||
|
Container@MENU_ROOT:
|
||||||
|
TooltipContainer@TOOLTIP_CONTAINER:
|
||||||
|
|
||||||
|
Container@EDITOR_WORLD_ROOT:
|
||||||
|
Logic: LoadIngamePerfLogic, MapEditorLogic
|
||||||
|
Children:
|
||||||
|
Container@PERF_ROOT:
|
||||||
|
ViewportController:
|
||||||
|
X: 0
|
||||||
|
Y: 0
|
||||||
|
Width: WINDOW_RIGHT
|
||||||
|
Height: WINDOW_BOTTOM
|
||||||
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
|
EditorViewportController@MAP_EDITOR:
|
||||||
|
Width: WINDOW_RIGHT
|
||||||
|
Height: WINDOW_BOTTOM
|
||||||
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
|
TooltipTemplate: SIMPLE_TOOLTIP
|
||||||
|
Children:
|
||||||
|
ActorPreview@DRAG_ACTOR_PREVIEW:
|
||||||
|
Visible: false
|
||||||
|
TerrainTemplatePreview@DRAG_TILE_PREVIEW:
|
||||||
|
Visible: false
|
||||||
|
Sprite@DRAG_LAYER_PREVIEW:
|
||||||
|
Visible: false
|
||||||
|
Background@RADAR_BG:
|
||||||
|
X: WINDOW_RIGHT-255
|
||||||
|
Y: 5
|
||||||
|
Width: 250
|
||||||
|
Height: 250
|
||||||
|
Children:
|
||||||
|
Radar@INGAME_RADAR:
|
||||||
|
X: 10
|
||||||
|
Y: 10
|
||||||
|
Width: PARENT_RIGHT-19
|
||||||
|
Height: PARENT_BOTTOM-19
|
||||||
|
Container@TILE_WIDGETS:
|
||||||
|
Logic: TileSelectorLogic
|
||||||
|
Children:
|
||||||
|
Background@TILES_BG:
|
||||||
|
X: WINDOW_RIGHT-250
|
||||||
|
Y: 290
|
||||||
|
Width: 240
|
||||||
|
Height: 360
|
||||||
|
Children:
|
||||||
|
DropDownButton@TILE_CATEGORY:
|
||||||
|
X: 10
|
||||||
|
Y: 10
|
||||||
|
Width: 220
|
||||||
|
Height: 25
|
||||||
|
Font: Bold
|
||||||
|
ScrollPanel@TILETEMPLATE_LIST:
|
||||||
|
X: 10
|
||||||
|
Y: 35
|
||||||
|
Width: PARENT_RIGHT-20
|
||||||
|
Height: PARENT_BOTTOM-45
|
||||||
|
ItemSpacing: 4
|
||||||
|
Children:
|
||||||
|
ScrollItem@TILEPREVIEW_TEMPLATE:
|
||||||
|
Visible: false
|
||||||
|
Width: PARENT_RIGHT - 35
|
||||||
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
|
Children:
|
||||||
|
TerrainTemplatePreview@TILE_PREVIEW:
|
||||||
|
X: 4
|
||||||
|
Y: 4
|
||||||
|
Container@LAYER_WIDGETS:
|
||||||
|
Visible: false
|
||||||
|
Logic: LayerSelectorLogic
|
||||||
|
Children:
|
||||||
|
Background@LAYERS_BG:
|
||||||
|
X: WINDOW_RIGHT-250
|
||||||
|
Y: 290
|
||||||
|
Width: 240
|
||||||
|
Height: 360
|
||||||
|
Children:
|
||||||
|
ScrollPanel@LAYERTEMPLATE_LIST:
|
||||||
|
X: 10
|
||||||
|
Y: 10
|
||||||
|
Width: PARENT_RIGHT-20
|
||||||
|
Height: PARENT_BOTTOM-20
|
||||||
|
ItemSpacing: 4
|
||||||
|
Children:
|
||||||
|
ScrollItem@LAYERPREVIEW_TEMPLATE:
|
||||||
|
Visible: false
|
||||||
|
IgnoreChildMouseOver: true
|
||||||
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
|
Children:
|
||||||
|
Sprite@LAYER_PREVIEW:
|
||||||
|
X: 4
|
||||||
|
Y: 4
|
||||||
|
Visible: false
|
||||||
|
Container@ACTOR_WIDGETS:
|
||||||
|
Visible: false
|
||||||
|
Logic: ActorSelectorLogic
|
||||||
|
Children:
|
||||||
|
Background@ACTORS_BG:
|
||||||
|
X: WINDOW_RIGHT-250
|
||||||
|
Y: 290
|
||||||
|
Width: 240
|
||||||
|
Height: 360
|
||||||
|
Children:
|
||||||
|
DropDownButton@OWNERS_DROPDOWN:
|
||||||
|
X: 10
|
||||||
|
Y: 10
|
||||||
|
Width: 220
|
||||||
|
Height: 25
|
||||||
|
Font: Bold
|
||||||
|
ScrollPanel@ACTORTEMPLATE_LIST:
|
||||||
|
X: 10
|
||||||
|
Y: 35
|
||||||
|
Width: PARENT_RIGHT-20
|
||||||
|
Height: PARENT_BOTTOM-45
|
||||||
|
ItemSpacing: 4
|
||||||
|
Children:
|
||||||
|
ScrollItem@ACTORPREVIEW_TEMPLATE:
|
||||||
|
Visible: false
|
||||||
|
Width: PARENT_RIGHT - 35
|
||||||
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
|
IgnoreChildMouseOver: true
|
||||||
|
Children:
|
||||||
|
ActorPreview@ACTOR_PREVIEW:
|
||||||
|
X: 4
|
||||||
|
Y: 4
|
||||||
|
Visible: true
|
||||||
|
Container@MAP_EDITOR_TAB_CONTAINER:
|
||||||
|
Logic: MapEditorTabsLogic
|
||||||
|
X: WINDOW_RIGHT-245
|
||||||
|
Y: 260
|
||||||
|
Width: 240
|
||||||
|
Height: 25
|
||||||
|
Children:
|
||||||
|
Button@TILES_TAB:
|
||||||
|
X: 0
|
||||||
|
Width: 70
|
||||||
|
Height: 25
|
||||||
|
Text: Tiles
|
||||||
|
Font: Bold
|
||||||
|
Button@OVERLAYS_TAB:
|
||||||
|
X: 70
|
||||||
|
Width: 90
|
||||||
|
Height: 25
|
||||||
|
Text: Overlays
|
||||||
|
Font: Bold
|
||||||
|
Button@ACTORS_TAB:
|
||||||
|
X: 160
|
||||||
|
Width: 70
|
||||||
|
Height: 25
|
||||||
|
Text: Actors
|
||||||
|
Font: Bold
|
||||||
|
MenuButton@OPTIONS_BUTTON:
|
||||||
|
Logic: MenuButtonsChromeLogic
|
||||||
|
MenuContainer: INGAME_MENU
|
||||||
|
HideIngameUI: true
|
||||||
|
Pause: true
|
||||||
|
Width: 160
|
||||||
|
Height: 25
|
||||||
|
Text: Menu
|
||||||
|
TooltipText: Menu
|
||||||
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
|
Font: Bold
|
||||||
|
Key: escape
|
||||||
|
Button@GRID_BUTTON:
|
||||||
|
X: 180
|
||||||
|
Width: 160
|
||||||
|
Height: 25
|
||||||
|
Text: Grid
|
||||||
|
TooltipTemplate: BUTTON_TOOLTIP
|
||||||
|
TooltipText: Toggle the terrain grid
|
||||||
|
TooltipContainer: TOOLTIP_CONTAINER
|
||||||
|
Font: Bold
|
||||||
|
Key: f1
|
||||||
|
Label@ZOOM_LABEL:
|
||||||
|
X: 345
|
||||||
|
Width: 50
|
||||||
|
Height: 25
|
||||||
|
Text: Zoom:
|
||||||
|
Align: Right
|
||||||
|
Font: Bold
|
||||||
|
Contrast: true
|
||||||
|
DropDownButton@ZOOM_BUTTON:
|
||||||
|
X: 400
|
||||||
|
Width: 70
|
||||||
|
Height: 25
|
||||||
|
Font: Bold
|
||||||
@@ -66,6 +66,13 @@ Container@INGAME_MENU:
|
|||||||
Height: 30
|
Height: 30
|
||||||
Text: Surrender
|
Text: Surrender
|
||||||
Font: Bold
|
Font: Bold
|
||||||
|
Button@SAVE_MAP:
|
||||||
|
X: (PARENT_RIGHT - WIDTH)/2
|
||||||
|
Y: 180
|
||||||
|
Width: 140
|
||||||
|
Height: 30
|
||||||
|
Text: Save Map
|
||||||
|
Font: Bold
|
||||||
Button@ABORT_MISSION:
|
Button@ABORT_MISSION:
|
||||||
X: (PARENT_RIGHT - WIDTH)/2
|
X: (PARENT_RIGHT - WIDTH)/2
|
||||||
Y: 220
|
Y: 220
|
||||||
@@ -73,3 +80,10 @@ Container@INGAME_MENU:
|
|||||||
Height: 30
|
Height: 30
|
||||||
Text: Abort Mission
|
Text: Abort Mission
|
||||||
Font: Bold
|
Font: Bold
|
||||||
|
Button@EXIT_EDITOR:
|
||||||
|
X: (PARENT_RIGHT - WIDTH)/2
|
||||||
|
Y: 220
|
||||||
|
Width: 140
|
||||||
|
Height: 30
|
||||||
|
Text: Exit Map Editor
|
||||||
|
Font: Bold
|
||||||
|
|||||||
@@ -114,6 +114,7 @@ ChromeLayout:
|
|||||||
./mods/ra/chrome/assetbrowser.yaml
|
./mods/ra/chrome/assetbrowser.yaml
|
||||||
./mods/ra/chrome/missionbrowser.yaml
|
./mods/ra/chrome/missionbrowser.yaml
|
||||||
./mods/ra/chrome/confirmation-dialogs.yaml
|
./mods/ra/chrome/confirmation-dialogs.yaml
|
||||||
|
./mods/ra/chrome/editor.yaml
|
||||||
|
|
||||||
Weapons:
|
Weapons:
|
||||||
./mods/ra/weapons/explosions.yaml
|
./mods/ra/weapons/explosions.yaml
|
||||||
|
|||||||
@@ -168,6 +168,7 @@ ChromeLayout:
|
|||||||
./mods/ra/chrome/assetbrowser.yaml
|
./mods/ra/chrome/assetbrowser.yaml
|
||||||
./mods/ra/chrome/missionbrowser.yaml
|
./mods/ra/chrome/missionbrowser.yaml
|
||||||
./mods/ra/chrome/confirmation-dialogs.yaml
|
./mods/ra/chrome/confirmation-dialogs.yaml
|
||||||
|
./mods/ra/chrome/editor.yaml
|
||||||
|
|
||||||
Voices:
|
Voices:
|
||||||
./mods/ts/audio/voices.yaml
|
./mods/ts/audio/voices.yaml
|
||||||
|
|||||||
Reference in New Issue
Block a user