94 lines
2.7 KiB
C#
94 lines
2.7 KiB
C#
// Copyright (c) 2012-2021 Wojciech Figat. All rights reserved.
|
|
|
|
using System;
|
|
using FlaxEditor.Content.Thumbnails;
|
|
using FlaxEditor.Viewport.Previews;
|
|
using FlaxEditor.Windows;
|
|
using FlaxEditor.Windows.Assets;
|
|
using FlaxEngine;
|
|
using FlaxEngine.GUI;
|
|
|
|
namespace FlaxEditor.Content
|
|
{
|
|
/// <summary>
|
|
/// A <see cref="Texture"/> asset proxy object.
|
|
/// </summary>
|
|
/// <seealso cref="FlaxEditor.Content.BinaryAssetProxy" />
|
|
public sealed class TextureProxy : BinaryAssetProxy
|
|
{
|
|
private SimpleTexturePreview _preview;
|
|
|
|
/// <inheritdoc />
|
|
public override string Name => "Texture";
|
|
|
|
/// <inheritdoc />
|
|
public override bool CanReimport(ContentItem item)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public override EditorWindow Open(Editor editor, ContentItem item)
|
|
{
|
|
return new TextureWindow(editor, (AssetItem)item);
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public override Color AccentColor => Color.FromRGB(0x25B84C);
|
|
|
|
/// <inheritdoc />
|
|
public override Type AssetType => typeof(Texture);
|
|
|
|
/// <inheritdoc />
|
|
public override void OnThumbnailDrawPrepare(ThumbnailRequest request)
|
|
{
|
|
if (_preview == null)
|
|
{
|
|
_preview = new SimpleTexturePreview
|
|
{
|
|
AnchorPreset = AnchorPresets.StretchAll,
|
|
Offsets = Margin.Zero,
|
|
};
|
|
}
|
|
|
|
// TODO: disable streaming for asset during thumbnail rendering (and restore it after)
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public override bool CanDrawThumbnail(ThumbnailRequest request)
|
|
{
|
|
// Check if asset is streamed enough
|
|
var asset = (Texture)request.Asset;
|
|
var mipLevels = asset.MipLevels;
|
|
var minMipLevels = Mathf.Min(mipLevels, 7);
|
|
return asset.ResidentMipLevels >= Mathf.Max(minMipLevels, (int)(mipLevels * ThumbnailsModule.MinimumRequiredResourcesQuality));
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public override void OnThumbnailDrawBegin(ThumbnailRequest request, ContainerControl guiRoot, GPUContext context)
|
|
{
|
|
_preview.Asset = (Texture)request.Asset;
|
|
_preview.Parent = guiRoot;
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public override void OnThumbnailDrawEnd(ThumbnailRequest request, ContainerControl guiRoot)
|
|
{
|
|
_preview.Asset = null;
|
|
_preview.Parent = null;
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public override void Dispose()
|
|
{
|
|
if (_preview != null)
|
|
{
|
|
_preview.Dispose();
|
|
_preview = null;
|
|
}
|
|
|
|
base.Dispose();
|
|
}
|
|
}
|
|
}
|