|
@@ -1,4 +1,4 @@
|
|
|
-using ExIni;
|
|
|
+using ExIni;
|
|
|
using MyRoomCustom;
|
|
|
using System;
|
|
|
using System.Collections;
|
|
@@ -379,7 +379,7 @@ namespace CM3D2.MultipleMaids.Plugin
|
|
|
if (!modItemsOnly)
|
|
|
{
|
|
|
bool previousGUIState = GUI.enabled;
|
|
|
- GUI.enabled = slotIndex > 1;
|
|
|
+ GUI.enabled = slotIndex > 1 || !bg2Busy;
|
|
|
modItemsToggle = GUI.Toggle(new Rect(GetPix(156),
|
|
|
GetPix(115),
|
|
|
GetPix(50),
|
|
@@ -391,133 +391,140 @@ namespace CM3D2.MultipleMaids.Plugin
|
|
|
GUI.enabled = previousGUIState;
|
|
|
}
|
|
|
|
|
|
-
|
|
|
-
|
|
|
- int iconSize = GetPix(45);
|
|
|
- Rect position1;
|
|
|
- Rect viewRect;
|
|
|
- int bg2ItemCount = slotIndex == 1 ?
|
|
|
- creativeSortList.Count :
|
|
|
- (!modItemsOnly && modItemsToggle) ?
|
|
|
- numberOfModItems : sortList.Count;
|
|
|
- if (sceneLevel != 5)
|
|
|
+ if (slotIndex > 0)
|
|
|
{
|
|
|
- position1 = new Rect(GetPix(7),
|
|
|
- GetPix(138),
|
|
|
- GetPix(44) * 4 + GetPix(20),
|
|
|
- rectWin.height - GetPix(148));
|
|
|
- viewRect = new Rect(0.0f,
|
|
|
- 0.0f,
|
|
|
- position1.width * 0.845f,
|
|
|
- Mathf.Ceil(bg2ItemCount / 4f) * iconSize + GetPix(10));
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- position1 = new Rect(GetPix(7),
|
|
|
- GetPix(138),
|
|
|
- GetPix(44) * 4 + GetPix(20),
|
|
|
- rectWin.height - GetPix(148));
|
|
|
- viewRect = new Rect(0.0f,
|
|
|
- 0.0f,
|
|
|
- position1.width * 0.845f,
|
|
|
- Mathf.Ceil(bg2ItemCount / 4f) * iconSize + GetPix(10));
|
|
|
- }
|
|
|
+ if (bg2Busy && slotIndex > 1)
|
|
|
+ {
|
|
|
+ GUI.Label(new Rect(GetPix(15), GetPix(130), GetPix(90), GetPix(25)), "Initializing...");
|
|
|
+ }
|
|
|
|
|
|
- bg2ScrollPos = GUI.BeginScrollView(position1, bg2ScrollPos, viewRect);
|
|
|
- int bg2Index = 0;
|
|
|
- List<SortItem> bg2List = slotIndex == 1 ? creativeSortList : sortList;
|
|
|
- foreach (SortItem sortItem in bg2List)
|
|
|
- {
|
|
|
- if (slotIndex > 1 && modItemsToggle && !sortItem.isMod)
|
|
|
+ int iconSize = GetPix(45);
|
|
|
+ Rect position1;
|
|
|
+ Rect viewRect;
|
|
|
+ int bg2ItemCount = slotIndex == 1 ?
|
|
|
+ creativeSortList.Count :
|
|
|
+ (!modItemsOnly && modItemsToggle) ?
|
|
|
+ numberOfModItems : sortList.Count;
|
|
|
+ if (sceneLevel != 5)
|
|
|
{
|
|
|
- continue;
|
|
|
+ position1 = new Rect(GetPix(7),
|
|
|
+ GetPix(138),
|
|
|
+ GetPix(44) * 4 + GetPix(20),
|
|
|
+ rectWin.height - GetPix(148));
|
|
|
+ viewRect = new Rect(0.0f,
|
|
|
+ 0.0f,
|
|
|
+ position1.width * 0.845f,
|
|
|
+ Mathf.Ceil(bg2ItemCount / 4f) * iconSize + GetPix(10));
|
|
|
}
|
|
|
- Rect position2 = new Rect(
|
|
|
- bg2Index % 4 * iconSize,
|
|
|
- bg2Index / 4 * iconSize,
|
|
|
- iconSize,
|
|
|
- iconSize
|
|
|
- );
|
|
|
- if (GUI.Button(position2, ""))
|
|
|
+ else
|
|
|
+ {
|
|
|
+ position1 = new Rect(GetPix(7),
|
|
|
+ GetPix(138),
|
|
|
+ GetPix(44) * 4 + GetPix(20),
|
|
|
+ rectWin.height - GetPix(148));
|
|
|
+ viewRect = new Rect(0.0f,
|
|
|
+ 0.0f,
|
|
|
+ position1.width * 0.845f,
|
|
|
+ Mathf.Ceil(bg2ItemCount / 4f) * iconSize + GetPix(10));
|
|
|
+ }
|
|
|
+
|
|
|
+ bg2ScrollPos = GUI.BeginScrollView(position1, bg2ScrollPos, viewRect);
|
|
|
+ int bg2Index = 0;
|
|
|
+ List<SortItem> bg2List = slotIndex == 1 ? creativeSortList : sortList;
|
|
|
+ foreach (SortItem sortItem in bg2List)
|
|
|
{
|
|
|
- GameObject gameObject = null;
|
|
|
- if (slotIndex > 1)
|
|
|
+ if (slotIndex > 1 && modItemsToggle && !sortItem.isMod)
|
|
|
{
|
|
|
- string menu = sortItem.menu;
|
|
|
- byte[] modBuf = null;
|
|
|
- bool ready = true;
|
|
|
- if (sortItem.isOfficialMod)
|
|
|
+ continue;
|
|
|
+ }
|
|
|
+ Rect position2 = new Rect(
|
|
|
+ bg2Index % 4 * iconSize,
|
|
|
+ bg2Index / 4 * iconSize,
|
|
|
+ iconSize,
|
|
|
+ iconSize
|
|
|
+ );
|
|
|
+ if (GUI.Button(position2, ""))
|
|
|
+ {
|
|
|
+ GameObject gameObject = null;
|
|
|
+ if (slotIndex > 1)
|
|
|
{
|
|
|
- menu = sortItem.baseMenu;
|
|
|
+ string menu = sortItem.menu;
|
|
|
+ byte[] modBuf = null;
|
|
|
+ bool ready = true;
|
|
|
+ if (sortItem.isOfficialMod)
|
|
|
+ {
|
|
|
+ menu = sortItem.baseMenu;
|
|
|
|
|
|
- using (FileStream fileStream = new FileStream(sortItem.menu, FileMode.Open))
|
|
|
+ using (FileStream fileStream = new FileStream(sortItem.menu, FileMode.Open))
|
|
|
+ {
|
|
|
+ if (fileStream == null)
|
|
|
+ {
|
|
|
+ ready = false;
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ modBuf = new byte[fileStream.Length];
|
|
|
+ fileStream.Read(modBuf, 0, (int)fileStream.Length);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ byte[] menuBuf = null;
|
|
|
+ using (AFileBase afileBase = GameUty.FileOpen(menu, null))
|
|
|
{
|
|
|
- if (fileStream == null)
|
|
|
+ if (ready = afileBase.IsValid())
|
|
|
{
|
|
|
- ready = false;
|
|
|
+ menuBuf = afileBase.ReadAll();
|
|
|
}
|
|
|
- else
|
|
|
+ }
|
|
|
+
|
|
|
+ if (ready)
|
|
|
+ {
|
|
|
+ string[] meshInfo = ProcScriptBin(menuBuf);
|
|
|
+ gameObject = ImportCM2.LoadSkinMesh_R(meshInfo[0], meshInfo, 1);
|
|
|
+ gameObject.name = menu;
|
|
|
+ if (sortItem.isOfficialMod)
|
|
|
{
|
|
|
- modBuf = new byte[fileStream.Length];
|
|
|
- fileStream.Read(modBuf, 0, (int)fileStream.Length);
|
|
|
+ gameObject.name += $"#{Path.GetFileName(sortItem.menu)}";
|
|
|
+ ProcModScriptBin(modBuf, gameObject);
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- byte[] menuBuf = null;
|
|
|
- using (AFileBase afileBase = GameUty.FileOpen(menu, null))
|
|
|
+ else
|
|
|
{
|
|
|
- if (ready = afileBase.IsValid())
|
|
|
- {
|
|
|
- menuBuf = afileBase.ReadAll();
|
|
|
- }
|
|
|
+
|
|
|
+ PlacementData.Data data = PlacementData.GetData(int.Parse(sortItem.menu));
|
|
|
+ gameObject = Instantiate(data.GetPrefab());
|
|
|
+ gameObject.name = $"creative_{sortItem.baseMenu}";
|
|
|
}
|
|
|
|
|
|
- if (ready)
|
|
|
+ if (gameObject != null)
|
|
|
{
|
|
|
- string[] meshInfo = ProcScriptBin(menuBuf);
|
|
|
- gameObject = ImportCM2.LoadSkinMesh_R(meshInfo[0], meshInfo, 1);
|
|
|
- gameObject.name = menu;
|
|
|
- if (sortItem.isOfficialMod)
|
|
|
- {
|
|
|
- gameObject.name += $"#{Path.GetFileName(sortItem.menu)}";
|
|
|
- ProcModScriptBin(modBuf, gameObject);
|
|
|
- }
|
|
|
+ doguBObject.Add(gameObject);
|
|
|
+ gameObject.transform.position = new Vector3(0, 0, 0.4f);
|
|
|
+ doguCnt = doguBObject.Count - 1;
|
|
|
+ gDogu[doguCnt] = GameObject.CreatePrimitive(PrimitiveType.Cube);
|
|
|
+ gDogu[doguCnt].GetComponent<Renderer>().material = m_material;
|
|
|
+ gDogu[doguCnt].layer = 8;
|
|
|
+ gDogu[doguCnt].GetComponent<Renderer>().enabled = false;
|
|
|
+ gDogu[doguCnt].SetActive(false);
|
|
|
+ gDogu[doguCnt].transform.position = gameObject.transform.position;
|
|
|
+ mDogu[doguCnt] = gDogu[doguCnt].AddComponent<MouseDrag6>();
|
|
|
+ mDogu[doguCnt].isScale = false;
|
|
|
+ mDogu[doguCnt].obj = gDogu[doguCnt];
|
|
|
+ mDogu[doguCnt].maid = gameObject;
|
|
|
+ mDogu[doguCnt].angles = gameObject.transform.eulerAngles;
|
|
|
+ gDogu[doguCnt].transform.localScale = new Vector3(cubeSize, cubeSize, cubeSize);
|
|
|
+ mDogu[doguCnt].ido = 1;
|
|
|
}
|
|
|
}
|
|
|
- else
|
|
|
- {
|
|
|
-
|
|
|
- PlacementData.Data data = PlacementData.GetData(int.Parse(sortItem.menu));
|
|
|
- gameObject = Instantiate(data.GetPrefab());
|
|
|
- gameObject.name = $"creative_{sortItem.baseMenu}";
|
|
|
- }
|
|
|
|
|
|
- if (gameObject != null)
|
|
|
- {
|
|
|
- doguBObject.Add(gameObject);
|
|
|
- gameObject.transform.position = new Vector3(0, 0, 0.4f);
|
|
|
- doguCnt = doguBObject.Count - 1;
|
|
|
- gDogu[doguCnt] = GameObject.CreatePrimitive(PrimitiveType.Cube);
|
|
|
- gDogu[doguCnt].GetComponent<Renderer>().material = m_material;
|
|
|
- gDogu[doguCnt].layer = 8;
|
|
|
- gDogu[doguCnt].GetComponent<Renderer>().enabled = false;
|
|
|
- gDogu[doguCnt].SetActive(false);
|
|
|
- gDogu[doguCnt].transform.position = gameObject.transform.position;
|
|
|
- mDogu[doguCnt] = gDogu[doguCnt].AddComponent<MouseDrag6>();
|
|
|
- mDogu[doguCnt].isScale = false;
|
|
|
- mDogu[doguCnt].obj = gDogu[doguCnt];
|
|
|
- mDogu[doguCnt].maid = gameObject;
|
|
|
- mDogu[doguCnt].angles = gameObject.transform.eulerAngles;
|
|
|
- gDogu[doguCnt].transform.localScale = new Vector3(cubeSize, cubeSize, cubeSize);
|
|
|
- mDogu[doguCnt].ido = 1;
|
|
|
- }
|
|
|
+ GUI.DrawTexture(position2, sortItem.tex);
|
|
|
+ bg2Index++;
|
|
|
}
|
|
|
|
|
|
- GUI.DrawTexture(position2, sortItem.tex);
|
|
|
- bg2Index++;
|
|
|
+ GUI.EndScrollView();
|
|
|
}
|
|
|
|
|
|
- GUI.EndScrollView();
|
|
|
GUI.enabled = true;
|
|
|
GUI.Label(new Rect(GetPix(3), GetPix(108), GetPix(100), GetPix(25)),
|
|
|
"服装",
|
|
@@ -553,6 +560,7 @@ namespace CM3D2.MultipleMaids.Plugin
|
|
|
if (!sceneManagerInitialize) InitializeSceneManager();
|
|
|
}
|
|
|
|
|
|
+ GUI.enabled = !bg2Busy;
|
|
|
int num1 =
|
|
|
slotCombo.List(new Rect(GetPix(51),
|
|
|
GetPix(111),
|
|
@@ -769,9 +777,7 @@ namespace CM3D2.MultipleMaids.Plugin
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
- numberOfModItems = 0;
|
|
|
slotIndex = num1;
|
|
|
- sortList.Clear();
|
|
|
bg2ScrollPos = new Vector2(0.0f, 0.0f);
|
|
|
|
|
|
if (slotIndex == 0)
|
|
@@ -802,219 +808,14 @@ namespace CM3D2.MultipleMaids.Plugin
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
- if (itemDataList.Count == 0)
|
|
|
+ if (!bg2Initialized)
|
|
|
{
|
|
|
- #region menu files
|
|
|
- HashSet<string> modMenus = null;
|
|
|
- if (!modItemsOnly)
|
|
|
- {
|
|
|
- modMenus = new HashSet<string>(GameUty.ModOnlysMenuFiles
|
|
|
- .Select(file => Path.GetFileName(file).ToLowerInvariant()));
|
|
|
- }
|
|
|
-
|
|
|
- string[] menuFiles = modItemsOnly ? GameUty.ModOnlysMenuFiles : GameUty.MenuFiles;
|
|
|
- foreach (string menuFile in menuFiles)
|
|
|
- {
|
|
|
- string fileName = Path.GetFileName(menuFile);
|
|
|
- byte[] buf;
|
|
|
- using (AFileBase aFileBase = GameUty.FileOpen(menuFile))
|
|
|
- {
|
|
|
- if (!aFileBase.IsValid())
|
|
|
- {
|
|
|
- continue;
|
|
|
- }
|
|
|
- buf = aFileBase.ReadAll();
|
|
|
- }
|
|
|
-
|
|
|
- ItemData item = new ItemData()
|
|
|
- {
|
|
|
- menu = fileName,
|
|
|
- isMod = modItemsOnly ? true : modMenus.Contains(fileName)
|
|
|
- };
|
|
|
- BinaryReader binaryReader = new BinaryReader(new MemoryStream(buf), Encoding.UTF8);
|
|
|
- if (binaryReader.ReadString() != "CM3D2_MENU")
|
|
|
- {
|
|
|
- binaryReader.Close();
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- try
|
|
|
- {
|
|
|
- binaryReader.ReadInt32();
|
|
|
- binaryReader.ReadString();
|
|
|
- item.name = binaryReader.ReadString();
|
|
|
- item.category = binaryReader.ReadString();
|
|
|
- binaryReader.ReadString();
|
|
|
- binaryReader.ReadInt32();
|
|
|
- bool run = true;
|
|
|
- do
|
|
|
- {
|
|
|
- int size;
|
|
|
- do
|
|
|
- {
|
|
|
- size = binaryReader.ReadByte();
|
|
|
- } while (size == 0);
|
|
|
-
|
|
|
- for (int index = 0; index < size; ++index)
|
|
|
- {
|
|
|
- string header = binaryReader.ReadString();
|
|
|
- if (header == "icons" || header == "icon")
|
|
|
- {
|
|
|
- run = false;
|
|
|
- item.icon = binaryReader.ReadString();
|
|
|
- break;
|
|
|
- }
|
|
|
-
|
|
|
- if (header == "priority")
|
|
|
- {
|
|
|
- int.TryParse(binaryReader.ReadString(), out item.priority);
|
|
|
- break;
|
|
|
- }
|
|
|
- }
|
|
|
- } while (run);
|
|
|
-
|
|
|
- itemDataList.Add(item);
|
|
|
- }
|
|
|
- catch { }
|
|
|
-
|
|
|
- binaryReader.Close();
|
|
|
- }
|
|
|
- }
|
|
|
- #endregion
|
|
|
-
|
|
|
- #region mod files
|
|
|
- foreach (string modFile in Menu.GetModFiles())
|
|
|
- {
|
|
|
- byte[] buf = null;
|
|
|
- try
|
|
|
- {
|
|
|
- using (FileStream fileStream = new FileStream(modFile, FileMode.Open))
|
|
|
- {
|
|
|
- if (fileStream == null)
|
|
|
- {
|
|
|
- continue;
|
|
|
- }
|
|
|
- buf = new byte[fileStream.Length];
|
|
|
- fileStream.Read(buf, 0, (int)fileStream.Length);
|
|
|
- }
|
|
|
- }
|
|
|
- catch { }
|
|
|
-
|
|
|
- if (buf == null)
|
|
|
- {
|
|
|
- continue;
|
|
|
- }
|
|
|
-
|
|
|
- ItemData item = new ItemData()
|
|
|
- {
|
|
|
- isMod = true,
|
|
|
- isOfficialMod = true,
|
|
|
- menu = modFile,
|
|
|
- priority = 1000
|
|
|
- };
|
|
|
-
|
|
|
- BinaryReader binaryReader = new BinaryReader(new MemoryStream(buf), Encoding.UTF8);
|
|
|
- if (binaryReader.ReadString() != "CM3D2_MOD")
|
|
|
- {
|
|
|
- binaryReader.Close();
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- try
|
|
|
- {
|
|
|
- binaryReader.ReadInt32();
|
|
|
- string iconName = binaryReader.ReadString();
|
|
|
- string baseItemPath = binaryReader.ReadString().Replace(":", " ");
|
|
|
- item.baseItem = Path.GetFileName(baseItemPath);
|
|
|
- item.name = binaryReader.ReadString();
|
|
|
- item.category = binaryReader.ReadString();
|
|
|
- binaryReader.ReadString();
|
|
|
- string mpnValue = binaryReader.ReadString();
|
|
|
- MPN mpn = MPN.null_mpn;
|
|
|
- try
|
|
|
- {
|
|
|
- mpn = (MPN)Enum.Parse(typeof(MPN), mpnValue, true);
|
|
|
- }
|
|
|
- catch
|
|
|
- {
|
|
|
- binaryReader.Close();
|
|
|
- continue;
|
|
|
- }
|
|
|
- if (mpn != MPN.null_mpn)
|
|
|
- {
|
|
|
- binaryReader.ReadString();
|
|
|
- }
|
|
|
- binaryReader.ReadString();
|
|
|
- int size = binaryReader.ReadInt32();
|
|
|
- for (int i = 0; i < size; i++)
|
|
|
- {
|
|
|
- string key = binaryReader.ReadString();
|
|
|
- int count = binaryReader.ReadInt32();
|
|
|
- byte[] data = binaryReader.ReadBytes(count);
|
|
|
- if (string.Equals(key, iconName, StringComparison.InvariantCultureIgnoreCase))
|
|
|
- {
|
|
|
- Texture2D tex = new Texture2D(1, 1, TextureFormat.RGBA32, false);
|
|
|
- tex.LoadImage(data);
|
|
|
- item.tex = tex;
|
|
|
- break;
|
|
|
- }
|
|
|
- }
|
|
|
- itemDataList.Add(item);
|
|
|
- }
|
|
|
- catch { }
|
|
|
- binaryReader.Close();
|
|
|
- }
|
|
|
- }
|
|
|
- #endregion
|
|
|
- }
|
|
|
-
|
|
|
- foreach (ItemData itemData in itemDataList)
|
|
|
- {
|
|
|
- if (itemData.category == slotArray[slotIndex] && itemData.priority > 0)
|
|
|
- {
|
|
|
- sortList.Add(new SortItem()
|
|
|
- {
|
|
|
- category = itemData.category,
|
|
|
- priority = itemData.priority,
|
|
|
- name = itemData.name,
|
|
|
- icon = itemData.icon,
|
|
|
- menu = itemData.menu,
|
|
|
- tex = itemData.tex,
|
|
|
- isMod = itemData.isMod,
|
|
|
- isOfficialMod = itemData.isOfficialMod,
|
|
|
- baseMenu = itemData.baseItem
|
|
|
- });
|
|
|
- }
|
|
|
+ GameMain.Instance.StartCoroutine(InitializeBG2());
|
|
|
}
|
|
|
-
|
|
|
- IOrderedEnumerable<SortItem> sortedItemList = sortList
|
|
|
- .OrderBy(item => item.priority)
|
|
|
- .ThenBy(item => item.name);
|
|
|
-
|
|
|
- List<SortItem> sortItemList = new List<SortItem>();
|
|
|
-
|
|
|
- string previousMenu = "";
|
|
|
- foreach (SortItem item in sortedItemList)
|
|
|
+ else
|
|
|
{
|
|
|
- try
|
|
|
- {
|
|
|
- if (item.menu != previousMenu)
|
|
|
- {
|
|
|
- if (!modItemsOnly && item.isMod) numberOfModItems++;
|
|
|
- if (item.tex == null)
|
|
|
- {
|
|
|
- byte[] data = ImportCM.LoadTexture(GameUty.FileSystem, item.icon, false).data;
|
|
|
- Texture2D texture2D = new Texture2D(50, 50, TextureFormat.RGB565, false);
|
|
|
- texture2D.LoadImage(data);
|
|
|
- item.tex = texture2D;
|
|
|
- }
|
|
|
- previousMenu = item.menu;
|
|
|
- sortItemList.Add(item);
|
|
|
- }
|
|
|
- }
|
|
|
- catch { }
|
|
|
+ SetBG2Props();
|
|
|
}
|
|
|
- sortList = sortItemList;
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -4853,7 +4654,7 @@ namespace CM3D2.MultipleMaids.Plugin
|
|
|
DynamicSkirtBone fieldValue =
|
|
|
GetFieldValue<BoneHair3, DynamicSkirtBone>(maid.body0.goSlot[index2].bonehair3, "m_SkirtBone");
|
|
|
SkirtListArray[selectMaidIndex][index2] = fieldValue;
|
|
|
- SetFieldValue8<BoneHair3, DynamicSkirtBone>(maid.body0.goSlot[index2].bonehair3,
|
|
|
+ SetFieldValue<BoneHair3, DynamicSkirtBone>(maid.body0.goSlot[index2].bonehair3,
|
|
|
"m_SkirtBone",
|
|
|
null);
|
|
|
}
|
|
@@ -4862,7 +4663,7 @@ namespace CM3D2.MultipleMaids.Plugin
|
|
|
{
|
|
|
for (int index2 = 0; index2 < maid.body0.goSlot.Count; ++index2)
|
|
|
{
|
|
|
- SetFieldValue8<BoneHair3, DynamicSkirtBone>(maid.body0.goSlot[index2].bonehair3,
|
|
|
+ SetFieldValue<BoneHair3, DynamicSkirtBone>(maid.body0.goSlot[index2].bonehair3,
|
|
|
"m_SkirtBone",
|
|
|
SkirtListArray[selectMaidIndex][index2]);
|
|
|
}
|
|
@@ -6134,10 +5935,11 @@ namespace CM3D2.MultipleMaids.Plugin
|
|
|
}
|
|
|
|
|
|
string[] strArray = faceComboList[faceIndex[selectMaidIndex]].text.Split(':')[2].Split(',');
|
|
|
- fieldValue2[(int)morph.hash["eyeclose"]] = float.Parse(strArray[0]);
|
|
|
- fieldValue2[(int)morph.hash["eyeclose2"]] = float.Parse(strArray[1]);
|
|
|
+
|
|
|
+ fieldValue2[(int)morph.hash[EyeCloseFaceKey(morph.bodyskin, "eyeclose")]] = float.Parse(strArray[0]);
|
|
|
+ fieldValue2[(int)morph.hash[EyeCloseFaceKey(morph.bodyskin, "eyeclose2")]] = float.Parse(strArray[1]);
|
|
|
fieldValue2[(int)morph.hash["eyeclose3"]] = float.Parse(strArray[2]);
|
|
|
- fieldValue2[(int)morph.hash["eyeclose6"]] = float.Parse(strArray[3]);
|
|
|
+ fieldValue2[(int)morph.hash[EyeCloseFaceKey(morph.bodyskin, "eyeclose6")]] = float.Parse(strArray[3]);
|
|
|
fieldValue1[(int)morph.hash["hitomih"]] = float.Parse(strArray[4]);
|
|
|
fieldValue1[(int)morph.hash["hitomis"]] = float.Parse(strArray[5]);
|
|
|
fieldValue1[(int)morph.hash["mayuha"]] = float.Parse(strArray[6]);
|
|
@@ -6151,7 +5953,7 @@ namespace CM3D2.MultipleMaids.Plugin
|
|
|
fieldValue1[(int)morph.hash["tangout"]] = float.Parse(strArray[14]);
|
|
|
fieldValue1[(int)morph.hash["tangup"]] = float.Parse(strArray[15]);
|
|
|
fieldValue1[(int)morph.hash["eyebig"]] = float.Parse(strArray[16]);
|
|
|
- fieldValue2[(int)morph.hash["eyeclose5"]] = float.Parse(strArray[17]);
|
|
|
+ fieldValue2[(int)morph.hash[EyeCloseFaceKey(morph.bodyskin, "eyeclose5")]] = float.Parse(strArray[17]);
|
|
|
fieldValue1[(int)morph.hash["mayuw"]] = float.Parse(strArray[18]);
|
|
|
fieldValue1[(int)morph.hash["mouthhe"]] = float.Parse(strArray[19]);
|
|
|
fieldValue1[(int)morph.hash["mouthc"]] = float.Parse(strArray[20]);
|
|
@@ -6300,10 +6102,11 @@ namespace CM3D2.MultipleMaids.Plugin
|
|
|
}
|
|
|
|
|
|
string[] strArray = faceComboList[faceIndex[selectMaidIndex]].text.Split(':')[2].Split(',');
|
|
|
- fieldValue2[(int)morph.hash["eyeclose"]] = float.Parse(strArray[0]);
|
|
|
- fieldValue2[(int)morph.hash["eyeclose2"]] = float.Parse(strArray[1]);
|
|
|
+
|
|
|
+ fieldValue2[(int)morph.hash[EyeCloseFaceKey(morph.bodyskin, "eyeclose")]] = float.Parse(strArray[0]);
|
|
|
+ fieldValue2[(int)morph.hash[EyeCloseFaceKey(morph.bodyskin, "eyeclose2")]] = float.Parse(strArray[1]);
|
|
|
fieldValue2[(int)morph.hash["eyeclose3"]] = float.Parse(strArray[2]);
|
|
|
- fieldValue2[(int)morph.hash["eyeclose6"]] = float.Parse(strArray[3]);
|
|
|
+ fieldValue2[(int)morph.hash[EyeCloseFaceKey(morph.bodyskin, "eyeclose6")]] = float.Parse(strArray[3]);
|
|
|
fieldValue1[(int)morph.hash["hitomih"]] = float.Parse(strArray[4]);
|
|
|
fieldValue1[(int)morph.hash["hitomis"]] = float.Parse(strArray[5]);
|
|
|
fieldValue1[(int)morph.hash["mayuha"]] = float.Parse(strArray[6]);
|
|
@@ -6317,7 +6120,7 @@ namespace CM3D2.MultipleMaids.Plugin
|
|
|
fieldValue1[(int)morph.hash["tangout"]] = float.Parse(strArray[14]);
|
|
|
fieldValue1[(int)morph.hash["tangup"]] = float.Parse(strArray[15]);
|
|
|
fieldValue1[(int)morph.hash["eyebig"]] = float.Parse(strArray[16]);
|
|
|
- fieldValue2[(int)morph.hash["eyeclose5"]] = float.Parse(strArray[17]);
|
|
|
+ fieldValue2[(int)morph.hash[EyeCloseFaceKey(morph.bodyskin, "eyeclose5")]] = float.Parse(strArray[17]);
|
|
|
fieldValue1[(int)morph.hash["mayuw"]] = float.Parse(strArray[18]);
|
|
|
fieldValue1[(int)morph.hash["mouthhe"]] = float.Parse(strArray[19]);
|
|
|
fieldValue1[(int)morph.hash["mouthc"]] = float.Parse(strArray[20]);
|
|
@@ -6821,29 +6624,31 @@ namespace CM3D2.MultipleMaids.Plugin
|
|
|
TMorph morph = maidArray[selectMaidIndex].body0.Face.morph;
|
|
|
float[] fieldValue1 = GetFieldValue<TMorph, float[]>(morph, "BlendValues");
|
|
|
float[] fieldValue2 = GetFieldValue<TMorph, float[]>(morph, "BlendValuesBackup");
|
|
|
- string str1 = inName4 + ":" + fieldValue2[(int)morph.hash["eyeclose"]] + ","
|
|
|
- + fieldValue2[(int)morph.hash["eyeclose2"]] + ","
|
|
|
- + fieldValue2[(int)morph.hash["eyeclose3"]] + ","
|
|
|
- + fieldValue2[(int)morph.hash["eyeclose6"]] + ","
|
|
|
- + fieldValue1[(int)morph.hash["hitomih"]] + ","
|
|
|
- + fieldValue1[(int)morph.hash["hitomis"]] + ","
|
|
|
- + fieldValue1[(int)morph.hash["mayuha"]] + ","
|
|
|
- + fieldValue1[(int)morph.hash["mayuup"]] + ","
|
|
|
- + fieldValue1[(int)morph.hash["mayuv"]] + ","
|
|
|
- + fieldValue1[(int)morph.hash["mayuvhalf"]] + ","
|
|
|
- + fieldValue1[(int)morph.hash["moutha"]] + ","
|
|
|
- + fieldValue1[(int)morph.hash["mouths"]] + ","
|
|
|
- + fieldValue1[(int)morph.hash["mouthdw"]] + ","
|
|
|
- + fieldValue1[(int)morph.hash["mouthup"]] + ","
|
|
|
- + fieldValue1[(int)morph.hash["tangout"]] + ","
|
|
|
- + fieldValue1[(int)morph.hash["tangup"]] + ","
|
|
|
- + fieldValue1[(int)morph.hash["eyebig"]] + ","
|
|
|
- + fieldValue2[(int)morph.hash["eyeclose5"]] + ","
|
|
|
- + fieldValue1[(int)morph.hash["mayuw"]] + ","
|
|
|
- + fieldValue1[(int)morph.hash["mouthhe"]] + ","
|
|
|
- + fieldValue1[(int)morph.hash["mouthc"]] + ","
|
|
|
- + fieldValue1[(int)morph.hash["mouthi"]] + ","
|
|
|
- + fieldValue1[(int)morph.hash["mouthuphalf"]] + ",";
|
|
|
+
|
|
|
+ string str1 = inName4 + ":"
|
|
|
+ + fieldValue2[(int)morph.hash[EyeCloseFaceKey(morph.bodyskin, "eyeclose")]] + ","
|
|
|
+ + fieldValue2[(int)morph.hash[EyeCloseFaceKey(morph.bodyskin, "eyeclose2")]] + ","
|
|
|
+ + fieldValue2[(int)morph.hash["eyeclose3"]] + ","
|
|
|
+ + fieldValue2[(int)morph.hash[EyeCloseFaceKey(morph.bodyskin, "eyeclose6")]] + ","
|
|
|
+ + fieldValue1[(int)morph.hash["hitomih"]] + ","
|
|
|
+ + fieldValue1[(int)morph.hash["hitomis"]] + ","
|
|
|
+ + fieldValue1[(int)morph.hash["mayuha"]] + ","
|
|
|
+ + fieldValue1[(int)morph.hash["mayuup"]] + ","
|
|
|
+ + fieldValue1[(int)morph.hash["mayuv"]] + ","
|
|
|
+ + fieldValue1[(int)morph.hash["mayuvhalf"]] + ","
|
|
|
+ + fieldValue1[(int)morph.hash["moutha"]] + ","
|
|
|
+ + fieldValue1[(int)morph.hash["mouths"]] + ","
|
|
|
+ + fieldValue1[(int)morph.hash["mouthdw"]] + ","
|
|
|
+ + fieldValue1[(int)morph.hash["mouthup"]] + ","
|
|
|
+ + fieldValue1[(int)morph.hash["tangout"]] + ","
|
|
|
+ + fieldValue1[(int)morph.hash["tangup"]] + ","
|
|
|
+ + fieldValue1[(int)morph.hash["eyebig"]] + ","
|
|
|
+ + fieldValue2[(int)morph.hash[EyeCloseFaceKey(morph.bodyskin, "eyeclose5")]] + ","
|
|
|
+ + fieldValue1[(int)morph.hash["mayuw"]] + ","
|
|
|
+ + fieldValue1[(int)morph.hash["mouthhe"]] + ","
|
|
|
+ + fieldValue1[(int)morph.hash["mouthc"]] + ","
|
|
|
+ + fieldValue1[(int)morph.hash["mouthi"]] + ","
|
|
|
+ + fieldValue1[(int)morph.hash["mouthuphalf"]] + ",";
|
|
|
string str2;
|
|
|
try
|
|
|
{
|
|
@@ -7030,10 +6835,10 @@ namespace CM3D2.MultipleMaids.Plugin
|
|
|
}
|
|
|
|
|
|
string[] strArray = faceComboList[faceIndex[selectMaidIndex]].text.Split(':')[2].Split(',');
|
|
|
- fieldValue2[(int)morph.hash["eyeclose"]] = float.Parse(strArray[0]);
|
|
|
- fieldValue2[(int)morph.hash["eyeclose2"]] = float.Parse(strArray[1]);
|
|
|
+ fieldValue2[(int)morph.hash[EyeCloseFaceKey(morph.bodyskin, "eyeclose")]] = float.Parse(strArray[0]);
|
|
|
+ fieldValue2[(int)morph.hash[EyeCloseFaceKey(morph.bodyskin, "eyeclose2")]] = float.Parse(strArray[1]);
|
|
|
fieldValue2[(int)morph.hash["eyeclose3"]] = float.Parse(strArray[2]);
|
|
|
- fieldValue2[(int)morph.hash["eyeclose6"]] = float.Parse(strArray[3]);
|
|
|
+ fieldValue2[(int)morph.hash[EyeCloseFaceKey(morph.bodyskin, "eyeclose6")]] = float.Parse(strArray[3]);
|
|
|
fieldValue1[(int)morph.hash["hitomih"]] = float.Parse(strArray[4]);
|
|
|
fieldValue1[(int)morph.hash["hitomis"]] = float.Parse(strArray[5]);
|
|
|
fieldValue1[(int)morph.hash["mayuha"]] = float.Parse(strArray[6]);
|
|
@@ -7047,7 +6852,7 @@ namespace CM3D2.MultipleMaids.Plugin
|
|
|
fieldValue1[(int)morph.hash["tangout"]] = float.Parse(strArray[14]);
|
|
|
fieldValue1[(int)morph.hash["tangup"]] = float.Parse(strArray[15]);
|
|
|
fieldValue1[(int)morph.hash["eyebig"]] = float.Parse(strArray[16]);
|
|
|
- fieldValue2[(int)morph.hash["eyeclose5"]] = float.Parse(strArray[17]);
|
|
|
+ fieldValue2[(int)morph.hash[EyeCloseFaceKey(morph.bodyskin, "eyeclose5")]] = float.Parse(strArray[17]);
|
|
|
fieldValue1[(int)morph.hash["mayuw"]] = float.Parse(strArray[18]);
|
|
|
fieldValue1[(int)morph.hash["mouthhe"]] = float.Parse(strArray[19]);
|
|
|
fieldValue1[(int)morph.hash["mouthc"]] = float.Parse(strArray[20]);
|
|
@@ -8647,7 +8452,7 @@ namespace CM3D2.MultipleMaids.Plugin
|
|
|
mFontSize = fontSize;
|
|
|
GameObject gameObject = GameObject.Find("__GameMain__/SystemUI Root").transform.Find("MessageWindowPanel").gameObject;
|
|
|
|
|
|
- SetFieldValue2<UILabel, int>(UTY.GetChildObject(gameObject, "MessageViewer/MsgParent/Message", false)
|
|
|
+ SetFieldValue<UILabel, int>(UTY.GetChildObject(gameObject, "MessageViewer/MsgParent/Message", false)
|
|
|
.GetComponent<UILabel>(),
|
|
|
"mFontSize",
|
|
|
fontSize);
|
|
@@ -8677,16 +8482,19 @@ namespace CM3D2.MultipleMaids.Plugin
|
|
|
|
|
|
MessageClass inst = new MessageClass(gameObject1, messageWindowMgr);
|
|
|
|
|
|
- inst.subtitles_manager_.visible = false;
|
|
|
- inst.subtitles_manager_ = null;
|
|
|
+ if (inst.subtitles_manager_ != null)
|
|
|
+ {
|
|
|
+ inst.subtitles_manager_.visible = false;
|
|
|
+ inst.subtitles_manager_ = null;
|
|
|
+ }
|
|
|
component.gameObject.SetActive(true);
|
|
|
nameComponent.gameObject.SetActive(true);
|
|
|
UTY.GetChildObject(gameObject1, "MessageViewer/MsgParent/MessageBox", false).SetActive(true);
|
|
|
- SetFieldValue5<MessageClass, UILabel>(inst, "message_label_", component);
|
|
|
- SetFieldValue5<MessageClass, UILabel>(inst, "name_label_", nameComponent);
|
|
|
+ SetFieldValue<MessageClass, UILabel>(inst, "message_label_", component);
|
|
|
+ SetFieldValue<MessageClass, UILabel>(inst, "name_label_", nameComponent);
|
|
|
|
|
|
component.ProcessText();
|
|
|
- SetFieldValue2<UILabel, int>(component, "mFontSize", fontSize);
|
|
|
+ SetFieldValue<UILabel, int>(component, "mFontSize", fontSize);
|
|
|
|
|
|
inst.SetText(inName, inText, "", 0, AudioSourceMgr.Type.System);
|
|
|
inst.FinishChAnime();
|