Fix UV editor if no textures are present
This commit is contained in:
parent
957639f80d
commit
2bed8a49a6
Binary file not shown.
@ -14,8 +14,8 @@ namespace DKCTF
|
|||||||
public FileType FileType { get; set; } = FileType.Layout;
|
public FileType FileType { get; set; } = FileType.Layout;
|
||||||
|
|
||||||
public bool CanSave { get; set; }
|
public bool CanSave { get; set; }
|
||||||
public string[] Description { get; set; } = new string[] { "Cafe Layout Animation (GUI)" };
|
public string[] Description { get; set; } = new string[] { "DKCTF Archive" };
|
||||||
public string[] Extension { get; set; } = new string[] { "*.bflan" };
|
public string[] Extension { get; set; } = new string[] { "*.pak" };
|
||||||
public string FileName { get; set; }
|
public string FileName { get; set; }
|
||||||
public string FilePath { get; set; }
|
public string FilePath { get; set; }
|
||||||
public IFileInfo IFileInfo { get; set; }
|
public IFileInfo IFileInfo { get; set; }
|
||||||
|
@ -298,6 +298,11 @@ namespace Toolbox.Library.Forms
|
|||||||
ClearNodes();
|
ClearNodes();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void GetArchiveMenus(TreeNode node, ArchiveFileInfo info)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
private void treeViewCustom1_MouseClick(object sender, TreeNodeMouseClickEventArgs e)
|
private void treeViewCustom1_MouseClick(object sender, TreeNodeMouseClickEventArgs e)
|
||||||
{
|
{
|
||||||
if (e.Button == MouseButtons.Right)
|
if (e.Button == MouseButtons.Right)
|
||||||
@ -307,6 +312,14 @@ namespace Toolbox.Library.Forms
|
|||||||
bool IsRoot = e.Node.Parent == null;
|
bool IsRoot = e.Node.Parent == null;
|
||||||
|
|
||||||
treeNodeContextMenu.Items.Clear();
|
treeNodeContextMenu.Items.Clear();
|
||||||
|
if (e.Node.Tag != null && e.Node.Tag is ArchiveFileInfo)
|
||||||
|
{
|
||||||
|
//The tag gets set when an archive is replaced by a treenode
|
||||||
|
//Todo store this in a better place as devs could possiblly replace this
|
||||||
|
//Create menus when an archive node is replaced
|
||||||
|
GetArchiveMenus(e.Node, (ArchiveFileInfo)e.Node.Tag);
|
||||||
|
}
|
||||||
|
|
||||||
if (IsRoot)
|
if (IsRoot)
|
||||||
{
|
{
|
||||||
foreach (var item in ((IContextMenuNode)e.Node).GetContextMenuItems())
|
foreach (var item in ((IContextMenuNode)e.Node).GetContextMenuItems())
|
||||||
|
@ -519,7 +519,8 @@ namespace Toolbox.Library.Forms
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
textureCB.SelectedIndex = 0;
|
if (textureCB.Items.Count > 0)
|
||||||
|
textureCB.SelectedIndex = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
24
Switch_Toolbox_Library/Helpers/ArchiveNodeMenuHelper.cs
Normal file
24
Switch_Toolbox_Library/Helpers/ArchiveNodeMenuHelper.cs
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using Toolbox.Library.Forms;
|
||||||
|
using System.Windows.Forms;
|
||||||
|
|
||||||
|
namespace Toolbox.Library
|
||||||
|
{
|
||||||
|
public class ArchiveNodeMenuHelper
|
||||||
|
{
|
||||||
|
private ArchiveFileInfo FileInfo;
|
||||||
|
private TreeNode Node;
|
||||||
|
|
||||||
|
private void RenameAction(object sender, EventArgs args)
|
||||||
|
{
|
||||||
|
RenameDialog dialog = new RenameDialog();
|
||||||
|
dialog.SetString(Node.Text);
|
||||||
|
|
||||||
|
if (dialog.ShowDialog() == DialogResult.OK) { Node.Text = dialog.textBox1.Text; }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -36,6 +36,7 @@ namespace Toolbox.Library
|
|||||||
bool AddFile(ArchiveFileInfo archiveFileInfo);
|
bool AddFile(ArchiveFileInfo archiveFileInfo);
|
||||||
bool DeleteFile(ArchiveFileInfo archiveFileInfo);
|
bool DeleteFile(ArchiveFileInfo archiveFileInfo);
|
||||||
}
|
}
|
||||||
|
|
||||||
public class ArchiveFileInfo : INode
|
public class ArchiveFileInfo : INode
|
||||||
{
|
{
|
||||||
// Opens the file format automatically (may take longer to open the archive file)
|
// Opens the file format automatically (may take longer to open the archive file)
|
||||||
@ -909,8 +910,6 @@ namespace Toolbox.Library
|
|||||||
}
|
}
|
||||||
|
|
||||||
ArchiveFileInfo.FileFormat = file;
|
ArchiveFileInfo.FileFormat = file;
|
||||||
|
|
||||||
Console.WriteLine("replacedFileFormat ");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void OpenFormDialog(IFileFormat fileFormat)
|
private void OpenFormDialog(IFileFormat fileFormat)
|
||||||
@ -994,6 +993,7 @@ namespace Toolbox.Library
|
|||||||
NewNode.ImageKey = replaceNode.ImageKey;
|
NewNode.ImageKey = replaceNode.ImageKey;
|
||||||
NewNode.SelectedImageKey = replaceNode.SelectedImageKey;
|
NewNode.SelectedImageKey = replaceNode.SelectedImageKey;
|
||||||
NewNode.Text = replaceNode.Text;
|
NewNode.Text = replaceNode.Text;
|
||||||
|
NewNode.Tag = fileInfo;
|
||||||
|
|
||||||
rootNode.FileNodes.RemoveAt(index);
|
rootNode.FileNodes.RemoveAt(index);
|
||||||
rootNode.FileNodes.Insert(index, Tuple.Create(fileInfo, NewNode));
|
rootNode.FileNodes.Insert(index, Tuple.Create(fileInfo, NewNode));
|
||||||
|
Binary file not shown.
Binary file not shown.
@ -284,6 +284,7 @@
|
|||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Generics\Texture\ImageParameters.cs" />
|
<Compile Include="Generics\Texture\ImageParameters.cs" />
|
||||||
<Compile Include="Generics\Texture\STTextureFolder.cs" />
|
<Compile Include="Generics\Texture\STTextureFolder.cs" />
|
||||||
|
<Compile Include="Helpers\ArchiveNodeMenuHelper.cs" />
|
||||||
<Compile Include="Helpers\DragHelper.cs" />
|
<Compile Include="Helpers\DragHelper.cs" />
|
||||||
<Compile Include="Interfaces\FileFormatting\ILeaveOpenOnLoad.cs" />
|
<Compile Include="Interfaces\FileFormatting\ILeaveOpenOnLoad.cs" />
|
||||||
<Compile Include="Interfaces\FileFormatting\IPropertyContainer.cs" />
|
<Compile Include="Interfaces\FileFormatting\IPropertyContainer.cs" />
|
||||||
|
Loading…
Reference in New Issue
Block a user