389 lines
11 KiB
C#
389 lines
11 KiB
C#
#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.FileSystem;
|
|
using OpenRA.Graphics;
|
|
using OpenRA.Mods.Common.Traits;
|
|
using OpenRA.Widgets;
|
|
|
|
namespace OpenRA.Mods.Common.Widgets.Logic
|
|
{
|
|
public class AssetBrowserLogic
|
|
{
|
|
static readonly string[] AllowedExtensions = { ".shp", ".r8", "tmp", ".tem", ".des", ".sno", ".int", ".jun", ".vqa" };
|
|
|
|
readonly World world;
|
|
|
|
Widget panel;
|
|
|
|
TextFieldWidget filenameInput;
|
|
SliderWidget frameSlider;
|
|
ScrollPanelWidget assetList;
|
|
ScrollItemWidget template;
|
|
|
|
IFolder assetSource = null;
|
|
List<string> availableShps = new List<string>();
|
|
bool animateFrames = false;
|
|
|
|
string currentPalette;
|
|
string currentFilename;
|
|
Sprite[] currentSprites;
|
|
VqaPlayerWidget player = null;
|
|
bool isVideoLoaded = false;
|
|
int currentFrame;
|
|
|
|
[ObjectCreator.UseCtor]
|
|
public AssetBrowserLogic(Widget widget, Action onExit, World world)
|
|
{
|
|
this.world = world;
|
|
|
|
panel = widget;
|
|
assetSource = GlobalFileSystem.MountedFolders.First();
|
|
|
|
var ticker = panel.GetOrNull<LogicTickerWidget>("ANIMATION_TICKER");
|
|
if (ticker != null)
|
|
{
|
|
ticker.OnTick = () =>
|
|
{
|
|
if (animateFrames)
|
|
SelectNextFrame();
|
|
};
|
|
}
|
|
|
|
var sourceDropdown = panel.GetOrNull<DropDownButtonWidget>("SOURCE_SELECTOR");
|
|
if (sourceDropdown != null)
|
|
{
|
|
sourceDropdown.OnMouseDown = _ => ShowSourceDropdown(sourceDropdown);
|
|
sourceDropdown.GetText = () =>
|
|
{
|
|
var name = assetSource != null ? Platform.UnresolvePath(assetSource.Name) : "All Packages";
|
|
if (name.Length > 15)
|
|
name = "..." + name.Substring(name.Length - 15);
|
|
|
|
return name;
|
|
};
|
|
}
|
|
|
|
var spriteWidget = panel.GetOrNull<SpriteWidget>("SPRITE");
|
|
if (spriteWidget != null)
|
|
{
|
|
spriteWidget.GetSprite = () => currentSprites != null ? currentSprites[currentFrame] : null;
|
|
currentPalette = spriteWidget.Palette;
|
|
spriteWidget.GetPalette = () => currentPalette;
|
|
spriteWidget.IsVisible = () => !isVideoLoaded;
|
|
}
|
|
|
|
var playerWidget = panel.GetOrNull<VqaPlayerWidget>("PLAYER");
|
|
if (playerWidget != null)
|
|
playerWidget.IsVisible = () => isVideoLoaded;
|
|
|
|
var paletteDropDown = panel.GetOrNull<DropDownButtonWidget>("PALETTE_SELECTOR");
|
|
if (paletteDropDown != null)
|
|
{
|
|
paletteDropDown.OnMouseDown = _ => ShowPaletteDropdown(paletteDropDown, world);
|
|
paletteDropDown.GetText = () => currentPalette;
|
|
}
|
|
|
|
var colorPreview = panel.GetOrNull<ColorPreviewManagerWidget>("COLOR_MANAGER");
|
|
if (colorPreview != null)
|
|
colorPreview.Color = Game.Settings.Player.Color;
|
|
|
|
var colorDropdown = panel.GetOrNull<DropDownButtonWidget>("COLOR");
|
|
if (colorDropdown != null)
|
|
{
|
|
colorDropdown.IsDisabled = () => currentPalette != colorPreview.PaletteName;
|
|
colorDropdown.OnMouseDown = _ => ColorPickerLogic.ShowColorDropDown(colorDropdown, colorPreview, world);
|
|
panel.Get<ColorBlockWidget>("COLORBLOCK").GetColor = () => Game.Settings.Player.Color.RGB;
|
|
}
|
|
|
|
filenameInput = panel.Get<TextFieldWidget>("FILENAME_INPUT");
|
|
filenameInput.OnTextEdited = () => ApplyFilter(filenameInput.Text);
|
|
filenameInput.OnEscKey = filenameInput.YieldKeyboardFocus;
|
|
|
|
var frameContainer = panel.GetOrNull("FRAME_SELECTOR");
|
|
if (frameContainer != null)
|
|
frameContainer.IsVisible = () => (currentSprites != null && currentSprites.Length > 1) ||
|
|
(isVideoLoaded && player != null && player.Video != null && player.Video.Frames > 1);
|
|
|
|
frameSlider = panel.Get<SliderWidget>("FRAME_SLIDER");
|
|
if (frameSlider != null)
|
|
{
|
|
frameSlider.OnChange += x =>
|
|
{
|
|
if (!isVideoLoaded)
|
|
currentFrame = (int)Math.Round(x);
|
|
};
|
|
|
|
frameSlider.GetValue = () => isVideoLoaded ? player.Video.CurrentFrame : currentFrame;
|
|
frameSlider.IsDisabled = () => isVideoLoaded;
|
|
}
|
|
|
|
var frameText = panel.GetOrNull<LabelWidget>("FRAME_COUNT");
|
|
if (frameText != null)
|
|
{
|
|
frameText.GetText = () =>
|
|
isVideoLoaded ?
|
|
"{0} / {1}".F(player.Video.CurrentFrame + 1, player.Video.Frames) :
|
|
"{0} / {1}".F(currentFrame, currentSprites.Length - 1);
|
|
}
|
|
|
|
var playButton = panel.GetOrNull<ButtonWidget>("BUTTON_PLAY");
|
|
if (playButton != null)
|
|
{
|
|
playButton.Key = new Hotkey(Keycode.SPACE, Modifiers.None);
|
|
playButton.OnClick = () =>
|
|
{
|
|
if (isVideoLoaded)
|
|
player.Play();
|
|
else
|
|
animateFrames = true;
|
|
};
|
|
|
|
playButton.IsVisible = () => isVideoLoaded ? player.Paused : !animateFrames;
|
|
}
|
|
|
|
var pauseButton = panel.GetOrNull<ButtonWidget>("BUTTON_PAUSE");
|
|
if (pauseButton != null)
|
|
{
|
|
pauseButton.Key = new Hotkey(Keycode.SPACE, Modifiers.None);
|
|
pauseButton.OnClick = () =>
|
|
{
|
|
if (isVideoLoaded)
|
|
player.Pause();
|
|
else
|
|
animateFrames = false;
|
|
};
|
|
|
|
pauseButton.IsVisible = () => isVideoLoaded ? !player.Paused : animateFrames;
|
|
}
|
|
|
|
var stopButton = panel.GetOrNull<ButtonWidget>("BUTTON_STOP");
|
|
if (stopButton != null)
|
|
{
|
|
stopButton.Key = new Hotkey(Keycode.RETURN, Modifiers.None);
|
|
stopButton.OnClick = () =>
|
|
{
|
|
if (isVideoLoaded)
|
|
player.Stop();
|
|
else
|
|
{
|
|
frameSlider.Value = 0;
|
|
currentFrame = 0;
|
|
animateFrames = false;
|
|
}
|
|
};
|
|
}
|
|
|
|
var nextButton = panel.GetOrNull<ButtonWidget>("BUTTON_NEXT");
|
|
if (nextButton != null)
|
|
{
|
|
nextButton.Key = new Hotkey(Keycode.RIGHT, Modifiers.None);
|
|
nextButton.OnClick = () =>
|
|
{
|
|
if (!isVideoLoaded)
|
|
nextButton.OnClick = SelectNextFrame;
|
|
};
|
|
|
|
nextButton.IsVisible = () => !isVideoLoaded;
|
|
}
|
|
|
|
var prevButton = panel.GetOrNull<ButtonWidget>("BUTTON_PREV");
|
|
if (prevButton != null)
|
|
{
|
|
prevButton.Key = new Hotkey(Keycode.LEFT, Modifiers.None);
|
|
prevButton.OnClick = () =>
|
|
{
|
|
if (!isVideoLoaded)
|
|
SelectPreviousFrame();
|
|
};
|
|
|
|
prevButton.IsVisible = () => !isVideoLoaded;
|
|
}
|
|
|
|
assetList = panel.Get<ScrollPanelWidget>("ASSET_LIST");
|
|
template = panel.Get<ScrollItemWidget>("ASSET_TEMPLATE");
|
|
PopulateAssetList();
|
|
|
|
var closeButton = panel.GetOrNull<ButtonWidget>("CLOSE_BUTTON");
|
|
if (closeButton != null)
|
|
closeButton.OnClick = () =>
|
|
{
|
|
if (isVideoLoaded)
|
|
player.Stop();
|
|
Ui.CloseWindow();
|
|
onExit();
|
|
};
|
|
}
|
|
|
|
void SelectNextFrame()
|
|
{
|
|
currentFrame++;
|
|
if (currentFrame >= currentSprites.Length)
|
|
currentFrame = 0;
|
|
}
|
|
|
|
void SelectPreviousFrame()
|
|
{
|
|
currentFrame--;
|
|
if (currentFrame < 0)
|
|
currentFrame = currentSprites.Length - 1;
|
|
}
|
|
|
|
Dictionary<string, bool> assetVisByName = new Dictionary<string, bool>();
|
|
|
|
bool FilterAsset(string filename)
|
|
{
|
|
var filter = filenameInput.Text;
|
|
|
|
if (string.IsNullOrWhiteSpace(filter))
|
|
return true;
|
|
|
|
if (filename.IndexOf(filter, StringComparison.OrdinalIgnoreCase) >= 0)
|
|
return true;
|
|
|
|
return false;
|
|
}
|
|
|
|
void ApplyFilter(string filename)
|
|
{
|
|
assetVisByName.Clear();
|
|
assetList.Layout.AdjustChildren();
|
|
assetList.ScrollToTop();
|
|
|
|
// Select the first visible
|
|
var firstVisible = assetVisByName.FirstOrDefault(kvp => kvp.Value);
|
|
if (firstVisible.Key != null)
|
|
LoadAsset(firstVisible.Key);
|
|
}
|
|
|
|
void AddAsset(ScrollPanelWidget list, string filepath, ScrollItemWidget template)
|
|
{
|
|
var filename = Path.GetFileName(filepath);
|
|
var item = ScrollItemWidget.Setup(template,
|
|
() => currentFilename == filename,
|
|
() => { LoadAsset(filename); });
|
|
item.Get<LabelWidget>("TITLE").GetText = () => filepath;
|
|
item.IsVisible = () =>
|
|
{
|
|
bool visible;
|
|
if (assetVisByName.TryGetValue(filepath, out visible))
|
|
return visible;
|
|
|
|
visible = FilterAsset(filepath);
|
|
assetVisByName.Add(filepath, visible);
|
|
return visible;
|
|
};
|
|
|
|
list.AddChild(item);
|
|
}
|
|
|
|
bool LoadAsset(string filename)
|
|
{
|
|
if (isVideoLoaded)
|
|
{
|
|
player.Stop();
|
|
player = null;
|
|
isVideoLoaded = false;
|
|
}
|
|
|
|
if (string.IsNullOrEmpty(filename))
|
|
return false;
|
|
|
|
if (!GlobalFileSystem.Exists(filename))
|
|
return false;
|
|
|
|
if (Path.GetExtension(filename) == ".vqa")
|
|
{
|
|
player = panel.Get<VqaPlayerWidget>("PLAYER");
|
|
currentFilename = filename;
|
|
player.Load(filename);
|
|
player.DrawOverlay = false;
|
|
isVideoLoaded = true;
|
|
frameSlider.MaximumValue = (float)player.Video.Frames - 1;
|
|
frameSlider.Ticks = 0;
|
|
return true;
|
|
}
|
|
else
|
|
{
|
|
currentFilename = filename;
|
|
currentSprites = world.Map.SequenceProvider.SpriteCache[filename];
|
|
currentFrame = 0;
|
|
frameSlider.MaximumValue = (float)currentSprites.Length - 1;
|
|
frameSlider.Ticks = currentSprites.Length;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
bool ShowSourceDropdown(DropDownButtonWidget dropdown)
|
|
{
|
|
Func<IFolder, ScrollItemWidget, ScrollItemWidget> setupItem = (source, itemTemplate) =>
|
|
{
|
|
var item = ScrollItemWidget.Setup(itemTemplate,
|
|
() => assetSource == source,
|
|
() => { assetSource = source; PopulateAssetList(); });
|
|
item.Get<LabelWidget>("LABEL").GetText = () => source != null ? Platform.UnresolvePath(source.Name) : "All Packages";
|
|
return item;
|
|
};
|
|
|
|
// TODO: Re-enable "All Packages" once list generation is done in a background thread
|
|
// var sources = new[] { (IFolder)null }.Concat(GlobalFileSystem.MountedFolders);
|
|
var sources = GlobalFileSystem.MountedFolders;
|
|
dropdown.ShowDropDown("LABEL_DROPDOWN_TEMPLATE", 280, sources, setupItem);
|
|
return true;
|
|
}
|
|
|
|
void PopulateAssetList()
|
|
{
|
|
assetList.RemoveChildren();
|
|
availableShps.Clear();
|
|
|
|
// TODO: This is too slow to run in the main thread
|
|
// var files = AssetSource != null ? AssetSource.AllFileNames() :
|
|
// GlobalFileSystem.MountedFolders.SelectMany(f => f.AllFileNames());
|
|
if (assetSource == null)
|
|
return;
|
|
|
|
var files = assetSource.AllFileNames().OrderBy(s => s);
|
|
foreach (var file in files)
|
|
{
|
|
if (AllowedExtensions.Any(ext => file.EndsWith(ext, true, CultureInfo.InvariantCulture)))
|
|
{
|
|
AddAsset(assetList, file, template);
|
|
availableShps.Add(file);
|
|
}
|
|
}
|
|
}
|
|
|
|
bool ShowPaletteDropdown(DropDownButtonWidget dropdown, World world)
|
|
{
|
|
Func<PaletteFromFile, ScrollItemWidget, ScrollItemWidget> setupItem = (palette, itemTemplate) =>
|
|
{
|
|
var name = palette.Name;
|
|
var item = ScrollItemWidget.Setup(itemTemplate,
|
|
() => currentPalette == name,
|
|
() => currentPalette = name);
|
|
item.Get<LabelWidget>("LABEL").GetText = () => name;
|
|
|
|
return item;
|
|
};
|
|
|
|
var palettes = world.WorldActor.TraitsImplementing<PaletteFromFile>();
|
|
dropdown.ShowDropDown("LABEL_DROPDOWN_TEMPLATE", 280, palettes, setupItem);
|
|
return true;
|
|
}
|
|
}
|
|
}
|