Exemple #1
0
    private static void ReplaceMatTexture(Material sourceMaterial, Material targetMaterial, string attr)
    {
        if (sourceTexPathDic == null || targetTexPathDic == null || sourceMaterial == null || targetMaterial == null)
        {
            return;
        }
        if (sourceMaterial.HasProperty(attr))
        {
            var tex = sourceMaterial.GetTexture(attr);
            if (tex == null)
            {
                return;
            }
            var    texName       = tex.name;
            string targetTexPath = string.Empty;
            if (targetTexPathDic.TryGetValue(texName, out targetTexPath))
            {
                var newtex = AssetDatabase.LoadAssetAtPath <Texture>(targetTexPath);
                if (newtex != null)
                {
                    targetMaterial.SetTexture(attr, newtex);
                }
                else
                {
                    throw new Exception("target texture path error: " + targetTexPath);
                }
            }
            else
            {
                string sourcePath = String.Empty;

                if (sourceTexPathDic.TryGetValue(texName, out sourcePath))
                {
                    var end = sourcePath.Split('.')[1];

                    var tp = targetTexturePath + GetTextureSubPath(sourcePath);
                    AssetDatabase.CopyAsset(sourcePath, tp);
                    targetTexPathDic.Add(texName, tp);

                    var newtex = AssetDatabase.LoadAssetAtPath <Texture>(tp);
                    targetMaterial.SetTexture(attr, newtex);
                }
                else
                {
                    DebugLogWrapper.LogError("材质引用的纹理丢失:" + targetMaterial.name + "texture" + tex.name);
                    return;
                }
            }
        }
    }
Exemple #2
0
 public static void GetAllAssetPath(Dictionary <string, string> retDir, string path, string filter)
 {
     string[] ids = AssetDatabase.FindAssets(filter, new string[] { path });
     for (int i = 0; i < ids.Length; i++)
     {
         string assetPath = AssetDatabase.GUIDToAssetPath(ids[i]);
         var    strs      = assetPath.Split('/');
         var    str       = strs[strs.Length - 1].Trim().Split('.')[0];
         if (retDir.ContainsKey(str))
         {
             DebugLogWrapper.LogError("检测到重复资源>>>>" + str + ": " + assetPath + "   retDir:" + retDir[str]);
         }
         else
         {
             retDir.Add(str, assetPath);
         }
     }
 }
Exemple #3
0
    public static ExcelDataSet ReadExcel(string excelPath)
    {
        ExcelDataSet set = new ExcelDataSet();

        if (!File.Exists(excelPath))
        {
            throw new Exception("path not exists");
        }
        try
        {
            FileStream       stream      = File.Open(excelPath, FileMode.Open, FileAccess.Read);
            IExcelDataReader excelReader = ExcelReaderFactory.CreateOpenXmlReader(stream);
            do
            {
                ExcelDataTable table = new ExcelDataTable();
                // sheet name
                while (excelReader.Read())
                {
                    ExcelDataRow row = new ExcelDataRow();
                    for (int i = 0; i < excelReader.FieldCount; i++)
                    {
                        string value = excelReader.IsDBNull(i) ? "" : excelReader.GetString(i);
                        row.Cells.Add(value);
                    }
                    table.Rows.Add(row);
                }
                if (table.Rows.Count > 0)
                {
                    set.Tables.Add(table);
                }
            } while (excelReader.NextResult());
            excelReader.Dispose();
            stream.Dispose();
        }
        catch (Exception e)
        {
            DebugLogWrapper.LogError(e);
        }

        return(set);
    }
Exemple #4
0
    private void FingerAni(Transform fin, MyDirection direction)
    {
        if (fin != null || noBlcokRecttransform != null)
        {
            if (direction == MyDirection.up)
            {
                fin.position = fin.position + new Vector3(0f, 0.61f * 1f, 0);
            }
            else if (direction == MyDirection.down)
            {
                fin.position = fin.position + new Vector3(0f, 0.61f * (-1f), 0);
            }
            else if (direction == MyDirection.right)
            {
                contactPoint2.gameObject.SetActive(false);
                fin.position = fin.position + new Vector3(4f * 1f, 0f, 0);
            }
            else
            {
                contactPoint2.gameObject.SetActive(false);
                fin.position = fin.position + new Vector3(4f * -1f, 0f, 0);
            }

            try
            {
                tweenAni = fin.DOMove(noBlcokRecttransform.transform.position, 1f);
                tweenAni.OnComplete(() =>
                                    OnMoveEnd(fin, direction));
            }
            catch (Exception e)
            {
                DebugLogWrapper.LogException(e);
                OnMoveEnd(fin, direction);
            }
        }
    }
Exemple #5
0
    public static void GeneratePlayerData()
    {
        var excelPath    = Application.dataPath + facadeExcelPath;
        var facadeSet    = ReadExcel(excelPath);
        var facadeTables = facadeSet.Tables;

        foreach (var table in facadeTables)
        {
            var rows = table.Rows;
            if (rows == null)
            {
                continue;
            }
            if (rows.Count < 3)
            {
                continue;
            }
            if (rows[0].Cells.Count < 6)
            {
                continue;
            }

            if (!rows[0].Cells[facadeModelNum].Equals(ModelStr) || !rows[0].Cells[facadeTextureNum].Equals(TextureStr))
            {
                continue;
            }
            for (int i = 0; i < rows.Count; ++i)
            {
                if (i == 0)
                {
                    continue;
                }

                var row = rows[i];
                var kv  = row.Cells[facadeTextureNum].Trim();
                if (kv == string.Empty)
                {
                    continue;
                }
                if (!texturesDic.ContainsKey(kv))
                {
                    texturesDic.Add(kv, kv);
                }

                continue;
                var modelsStr = row.Cells[facadeModelNum].Trim();
                if (modelsStr == string.Empty)
                {
                    continue;
                }

                var           __modelsStr  = modelsStr.Split(';');
                List <string> modelStrList = new List <string>();
                foreach (var _modelsStr in __modelsStr)
                {
                    var es = _modelsStr.Split('|');
                    for (int j = 0; j < es.Length; j++)
                    {
                        if (es[j].Trim() != string.Empty)
                        {
                            modelStrList.Add(es[j].Trim());
                        }
                    }
                }
                foreach (var k in modelStrList)
                {
                    if (!modelsDic.ContainsKey(k))
                    {
                        modelsDic.Add(k, k);
                    }
                }
            }
        }

        excelPath = Application.dataPath + equipExcelPath;
        var equipSet    = ReadExcel(excelPath);
        var equipTables = equipSet.Tables;

        foreach (var table in equipTables)
        {
            var rows = table.Rows;
            if (rows == null)
            {
                continue;
            }
            if (rows.Count < 3)
            {
                continue;
            }
            if (rows[0].Cells.Count < 6)
            {
                continue;
            }

            if (!rows[0].Cells[equipModelNum].Equals(ModelStr) || !rows[0].Cells[equipTextureNum].Equals(TextureStr))
            {
                continue;
            }
            for (int i = 0; i < rows.Count; ++i)
            {
                if (i == 0)
                {
                    continue;
                }

                var row = rows[i];
                var kv  = row.Cells[equipTextureNum].Trim();
                if (kv == string.Empty)
                {
                    continue;
                }
                if (!texturesDic.ContainsKey(kv))
                {
                    texturesDic.Add(kv, kv);
                }

                continue;
                var modelsStr = row.Cells[equipModelNum].Trim();
                if (modelsStr == string.Empty)
                {
                    continue;
                }

                var __modelsStr = modelsStr.Split(new [] { ';', '|' });

                foreach (var k in __modelsStr)
                {
                    if (!modelsDic.ContainsKey(k))
                    {
                        modelsDic.Add(k, k);
                    }
                }
            }
        }

        sourceTexPathDic.Clear();
        GetAllAssetPath(sourceTexPathDic, sourcePath, "t:Texture");
        targetTexPathDic.Clear();
        GetAllAssetPath(targetTexPathDic, targetPath, "t:Texture");

        foreach (var tex in texturesDic)
        {
            if (!targetTexPathDic.ContainsKey(tex.Key))
            {
                if (!sourceTexPathDic.ContainsKey(tex.Key))
                {
                    DebugLogWrapper.LogError("asset miss>>>" + tex.Key);
                    continue;
                }
                var sp = sourceTexPathDic[tex.Key];
                var tp = targetTexturePath + GetTextureSubPath(sp);
                AssetDatabase.CopyAsset(sp, tp);
                targetTexPathDic.Add(tex.Key, tp);
            }
        }

        var player            = AssetDatabase.LoadAssetAtPath <GameObject>(playerPath);
        var dummyCount        = player.transform.childCount;
        List <GameObject> gos = new List <GameObject>();

        for (int i = 0; i < dummyCount; ++i)
        {
            var child = player.transform.GetChild(i);
            if (child.name == "Bip01")
            {
                continue;
            }
            if (child.name == "Dummy_idle_ball")
            {
                continue;
            }
            if (child.name.Contains("Dummy_"))
            {
                var modelsCount = child.childCount;
                for (int j = 0; j < modelsCount; ++j)
                {
                    gos.Add(child.GetChild(j).gameObject);
                }
            }
        }


        // 导出models 并且生成bones info
        ExportBonesInfo(gos, outPath);



        targetMatPathDic.Clear();
        sourceMatPathDic.Clear();

        // 搜集所有assert


        GetAllAssetPath(targetMatPathDic, targetPath, "t:Material");
        GetAllAssetPath(sourceMatPathDic, sourcePath, "t:Material");

        Dictionary <string, string> goPathsDic = new Dictionary <string, string>();

        GetAllAssetPath(goPathsDic, targetModelsPath, "t:Prefab");

        foreach (var goPath in goPathsDic)
        {
            var go     = AssetDatabase.LoadAssetAtPath <GameObject>(goPath.Value);
            var render = go.GetComponent <Renderer>();
            var mat    = render.sharedMaterial;
            if (mat == null)
            {
                DebugLogWrapper.LogError("材质丢失,请手动指定" + go.name);
                continue;
            }
            string matPath = string.Empty;
            if (targetMatPathDic.TryGetValue(mat.name, out matPath))
            {
                var newMat    = AssetDatabase.LoadAssetAtPath <Material>(matPath);
                var sourceMat = AssetDatabase.LoadAssetAtPath <Material>(sourceMatPathDic[mat.name]);

                // 重新指定引用的材质
                render.sharedMaterial = newMat;
                ReplaceMatTexs(sourceMat, newMat);
            }
            else
            {
                var sourceMat = AssetDatabase.LoadAssetAtPath <Material>(sourceMatPathDic[mat.name]);
                var newMat    = new Material(sourceMat);
                newMat.name = sourceMat.name;
                AssetDatabase.CreateAsset(newMat, newMaterialsPath + newMat.name);
                render.sharedMaterial = newMat;
                ReplaceMatTexs(sourceMat, newMat);
            }
        }
        AssetDatabase.SaveAssets();
    }