GetFileName() public method

NOTE: This will not return a default file name correctly filled, use GetFileNameOrDefault() for that
public GetFileName ( int index ) : string
index int
return string
Ejemplo n.º 1
0
    public static void ExportData(string fileName)
    {
        try
        {
            FileStream   fileStream   = new FileStream(fileName, FileMode.Create, FileAccess.Write);
            StreamWriter streamWriter = new StreamWriter(fileStream, EasyVoiceSettings.instance.exportCSVFileEncodingUTF8 ? Encoding.UTF8 : Encoding.ASCII);

            //streamWriter.WriteLine(csvHeader);

            EasyVoiceDataAsset data = EasyVoiceSettings.instance.data; // readability

            streamWriter.Write(
                "|"
                );

            for (int i = 0; i < EasyVoiceSettings.instance.data.LineCount(); i++)
            {
                string speechText = data.GetSpeechText(i);                 // cache, using thrice
                streamWriter.Write(
                    speechText + "<"
                    );
            }

            streamWriter.Write(
                "|"
                );

            for (int i = 0; i < EasyVoiceSettings.instance.data.LineCount(); i++)
            {
                streamWriter.Write(
                    data.GetFileName(i) + ">"
                    );
            }


//            for (int i = 0; i < EasyVoiceSettings.instance.data.LineCount(); i++)
//            {
//                string speechText = data.GetSpeechText(i); // cache, using thrice
//                streamWriter.WriteLine(
//                    "" + data.GetId(i) + "," +
//                    "\"" + data.GetGroup(i).Replace("\"", "\"\"") + "\"," +
//                    "" + data.GetStatus(i) + "," +
//                    "\"" + data.GetSpeakerName(i).Replace("\"", "\"\"") + "\"," +
//                    (NeedCSVEscaping(speechText) ? "\"" + speechText.Replace("\"", "\"\"") + "\"" : speechText.Replace("\"", "\"\"")) + "," +
//                    "\"" + data.GetFileName(i).Replace("\"", "\"\"") + "\""
//                );
//            }

            streamWriter.Close();
            fileStream.Close();
        }
        catch (Exception e)
        {
            Debug.LogError("EasyVoice.ExportData encountered an error: " + e);
        }
    }
Ejemplo n.º 2
0
    private static void VerifyFileNameOrClip(int index, bool allowFurtherCalls)
    {
        verifyCount++;

        EasyVoiceDataAsset data = EasyVoiceSettings.instance.data; // readability

        data.SetIssue(index, LineIssue.badFileName, !ValidFileName(data.GetFileName(index)));

        // CLear all issues that we can possibly set in the loops below
        data.SetIssue(index, LineIssue.duplicateBaseFileName, false);
        data.SetIssue(index, LineIssue.duplicateAssetFileName, false);
        data.SetIssue(index, LineIssue.clashingExistingAsset, false);
        data.SetIssue(index, LineIssue.duplicateClipReference, false);

        //Debug.Log("Clearing line " + index + " file name or clip issues");

        AudioClip ourClip = data.GetClip(index);

        string ourAssetFileName, ourFullFileName;

        EasyVoiceClipCreator.GenerateFullFileName(index, out ourAssetFileName, out ourFullFileName);

        if (ourClip == null)
        {
            string ourFileName = data.GetFileNameOrDefault(index);

            for (int otherIndex = 0; otherIndex < data.LineCount(); otherIndex++)
            {
                if (otherIndex == index)
                {
                    continue;
                }

                if (data.GetClip(otherIndex) == null)
                {
                    // Check for duplicate file names -- another line has the same file name as us
                    if (ourFileName == data.GetFileNameOrDefault(otherIndex))
                    {
                        data.SetIssue(index, LineIssue.duplicateBaseFileName, true);
                        if (allowFurtherCalls)
                        {
                            // Recheck the other file as well now, because we probably just clashed it
                            VerifyFileNameOrClip(otherIndex, false);
                        }
                    }
                    else
                    {
                        // Recheck existing lines with duplicate issue, in case we were the one causing it
                        if (allowFurtherCalls)
                        {
                            if (data.HasIssue(otherIndex, LineIssue.duplicateBaseFileName))
                            {
                                VerifyFileNameOrClip(otherIndex, false);
                            }
                        }
                    }
                }
                else
                {
                    string otherAssetFileName, otherFullFileName;
                    EasyVoiceClipCreator.GenerateFullFileName(otherIndex, out otherAssetFileName, out otherFullFileName); // TODO: cache?

                    // Check for clashing clip names -- another line has a clip name+path the same as our potential file path
                    if (ourAssetFileName == otherAssetFileName)
                    {
                        data.SetIssue(index, LineIssue.duplicateAssetFileName, true);
                        if (allowFurtherCalls)
                        {
                            // Recheck the other file as well now, because we probably just clashed it
                            VerifyFileNameOrClip(otherIndex, false);
                        }
                    }
                    else
                    {
                        // Recheck existing lines with clashing file name issue, in case we were the one causing it
                        if (allowFurtherCalls)
                        {
                            if (data.HasIssue(otherIndex, LineIssue.duplicateAssetFileName))
                            {
                                VerifyFileNameOrClip(otherIndex, false);
                            }
                        }
                    }
                }
            }

            if (!data.HasIssue(index, LineIssue.duplicateAssetFileName)) // below issue is implied if already clashing another line with that asset, performance
            {
                // Check for clashing existing assets -- an asset already exists at the path that "our" asset will potentially be created at
                Object foundAsset = (Object)AssetDatabase.LoadAssetAtPath(ourAssetFileName, typeof(Object));
                if (foundAsset != null)
                {
                    data.SetIssue(index, LineIssue.clashingExistingAsset, true);
                }
            }
        }
        else
        {
            for (int otherIndex = 0; otherIndex < data.LineCount(); otherIndex++)
            {
                if (otherIndex == index)
                {
                    continue;
                }

                if (data.GetClip(otherIndex) != null)
                {
                    // Check for duplicate clip references -- another line has the same clip as we do
                    if (ourClip == data.GetClip(otherIndex))
                    {
                        data.SetIssue(index, LineIssue.duplicateClipReference, true);
                        if (allowFurtherCalls)
                        {
                            // Recheck the other file as well now, because we probably just clashed it
                            VerifyFileNameOrClip(otherIndex, false);
                        }
                    }
                    else
                    {
                        // Recheck existing lines with duplicate clip issue, in case we were the one causing it
                        if (allowFurtherCalls)
                        {
                            if (data.HasIssue(otherIndex, LineIssue.duplicateClipReference))
                            {
                                VerifyFileNameOrClip(otherIndex, false);
                            }
                        }
                    }
                }
                else
                {
                    // Check for clashing clip names -- another line has a the same potential file path as our clip name+path

                    string otherAssetFileName, otherFullFileName;
                    EasyVoiceClipCreator.GenerateFullFileName(otherIndex, out otherAssetFileName, out otherFullFileName); // TODO: cache?

                    if (ourAssetFileName == otherAssetFileName)
                    {
                        data.SetIssue(index, LineIssue.duplicateAssetFileName, true);
                        if (allowFurtherCalls)
                        {
                            // Recheck the other file as well now, because we probably just clashed it
                            VerifyFileNameOrClip(otherIndex, false);
                        }
                    }
                    else
                    {
                        // Recheck existing lines with clashing file name issue, in case we were the one causing it
                        if (allowFurtherCalls)
                        {
                            if (data.HasIssue(otherIndex, LineIssue.duplicateAssetFileName))
                            {
                                VerifyFileNameOrClip(otherIndex, false);
                            }
                        }
                    }
                }
            }
        }
    }