blob: 200c6e7e7919bc6a73c2cc66050916525d0eba60 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
using System;
using System.Collections.Generic;
namespace NW4RTools.Models {
public class ChanCtrl {
public UInt32 Flags;
public Color MatColor, AmbColor;
public UInt32 FlagC, FlagA;
}
// TODO: Rename this class?
public class SRTSettingInfo {
public float ScaleX, ScaleY, Rotate, TranslateX, TranslateY;
public byte CameraID;
public byte LightID;
public byte MapType;
public byte Flags;
public Matrix TexMatrix;
}
public class Material {
public UInt32 Index, Flags;
// ResGenMode
public byte TexCoordGenCount, ChanCount, TevStageCount, IndStageCount;
public UInt32 CullMode;
// ResMatMisc
public byte ZCompLoc, LightSetID, FogID;
public byte[] IndirectTexMtxCalcMethod1;
public byte[] IndirectTexMtxCalcMethod2;
// ResTexObj and ResTlutObj
public byte[][] TexObj;
public byte[] TlutObj;
// ResTexSrt
public UInt32 TexMatrixType;
public SRTSettingInfo[] SRTSettings;
// ResMatChan
public ChanCtrl[] ChanCtrls;
// Other
public List<TextureInfo> TextureInfos;
public Shader ShaderRef;
// Display Lists
public byte[] PixDL;
public byte[] TevColorDL;
public byte[] IndMtxAndScaleDL;
public byte[] TexCoordGenDL;
public Material() {
}
}
}
|