1
0
mirror of synced 2024-12-04 11:58:03 +01:00
Switch-Toolbox/Switch_FileFormatsMain/FileFormats/BMD/BMDMaterialWrapper.cs

73 lines
2.3 KiB
C#
Raw Normal View History

2019-07-12 02:23:47 +02:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2019-07-12 02:46:45 +02:00
using System.Windows.Forms;
2019-07-12 02:23:47 +02:00
using Switch_Toolbox.Library;
2019-07-12 02:46:45 +02:00
using Switch_Toolbox.Library.Forms;
2019-07-12 02:23:47 +02:00
using SuperBMDLib.Materials;
namespace FirstPlugin
{
public class BMDMaterialWrapper : STGenericMaterial
{
2019-07-13 02:13:27 +02:00
public Material Material;
2019-07-12 02:23:47 +02:00
SuperBMDLib.Model ParentModel;
public bool isTransparent
{
get
{
return (Material.Flag & 3) == 0;
}
}
2019-07-12 02:23:47 +02:00
public BMDMaterialWrapper(Material mat, SuperBMDLib.Model model)
{
Material = mat;
ParentModel = model;
2019-07-12 02:46:45 +02:00
Text = mat.Name;
2019-07-12 02:23:47 +02:00
int textureUnit = 1;
if (mat.TextureIndices[0] != -1)
{
int texIndex = mat.TextureIndices[0];
BMDTextureMap matTexture = new BMDTextureMap(this);
matTexture.TextureIndex = texIndex;
2019-07-12 02:23:47 +02:00
matTexture.Name = ParentModel.Textures[texIndex].Name;
matTexture.Type = STGenericMatTexture.TextureType.Diffuse;
matTexture.textureUnit = textureUnit++;
2019-07-13 03:53:00 +02:00
matTexture.wrapModeS = (int)GXToOpenGL.GetWrapMode(ParentModel.Textures[texIndex].WrapS);
matTexture.wrapModeT = (int)GXToOpenGL.GetWrapMode(ParentModel.Textures[texIndex].WrapT);
matTexture.minFilter = (int)GXToOpenGL.GetMinFilter(ParentModel.Textures[texIndex].MinFilter);
matTexture.magFilter = (int)GXToOpenGL.GetMinFilter(ParentModel.Textures[texIndex].MagFilter);
2019-07-12 02:23:47 +02:00
TextureMaps.Add(matTexture);
2019-07-12 02:46:45 +02:00
foreach (var textureIndex in mat.TextureIndices)
{
if (textureIndex != -1)
Nodes.Add(ParentModel.Textures[textureIndex].Name);
}
2019-07-12 02:23:47 +02:00
}
}
2019-07-12 02:46:45 +02:00
public override void OnClick(TreeView treeView)
{
STPropertyGrid editor = (STPropertyGrid)LibraryGUI.GetActiveContent(typeof(STPropertyGrid));
if (editor == null)
{
editor = new STPropertyGrid();
LibraryGUI.LoadEditor(editor);
}
editor.Text = Text;
editor.Dock = DockStyle.Fill;
editor.LoadProperty(Material, null);
}
2019-07-12 02:23:47 +02:00
}
}