Exemple #1
0
    public void _20_3_AutoGeneratorDescriptorOfEmptyTimeline()
    {
        var basePath          = Path.Combine(Application.dataPath, "AutomatineTest/TestGenerated/Editor");
        var autoGenOutputPath = Path.Combine(basePath, "_20_3_AutoGeneratorDescriptorOfEmptyTimeline.json");

        {
            // write to json file.
            var classGenParam = new AutoData(
                "2016/01/06 16:55:06",
                "Auto_Default3",
                "autoInfo",
                new List <string> {
                "複数行のコメント", "描きたいですね。"
            },

                new List <TimelineData> {
                new TimelineData(
                    "2016/01/06 16:55:06",
                    "timelineInfo_0"
                    )
            }
                );

            var serialized = JsonUtility.ToJson(classGenParam);


            // write json file
            using (var sw = new StreamWriter(autoGenOutputPath))
            {
                sw.Write(serialized);
            }
        }

        {
            // read json file
            var body = string.Empty;
            using (var sr = new StreamReader(autoGenOutputPath))
            {
                body = sr.ReadToEnd();
            }
            var deserialized = JsonUtility.FromJson <AutoData>(body);

            var desc = AutoDescriptor.Auto("<InitialParamType, UpdateParamType>", deserialized);

            var outputPath = Path.Combine(basePath, "_20_3_AutoGeneratorDescriptorOfEmptyTimeline.cs");

            // write class file
            using (var sw = new StreamWriter(outputPath))
            {
                sw.Write(desc);
            }
        }
    }
Exemple #2
0
    public void _20_1_AutoGeneratorDescriptorFromJson()
    {
        var basePath          = Path.Combine(Application.dataPath, "AutomatineTest/TestGenerated/Editor");
        var autoGenOutputPath = Path.Combine(basePath, "_20_1_AutoGeneratorDescriptorFromJson.json");

        {
            // write to json file.
            var classGenParam = new AutoData(
                "2016/01/06 16:55:06",
                "Auto_Default1",
                "autoInfo",
                new List <string> {
                "複数行のコメント", "描きたいですね。"
            },

                new List <TimelineData> {
                new TimelineData(
                    "2016/01/06 16:55:06",
                    "timelineInfo_0",
                    new List <TackData> {
                    new TackData(
                        "id",
                        "tackInfo_0",
                        0,
                        1,
                        "Act",
                        "DEFAULT",
                        new List <string> {
                        "Default", "_Infinity"
                    }
                        ),
                    new TackData(
                        "id0",
                        "tackInfo_1",
                        1,
                        10,
                        "Act",
                        "P0",
                        new List <string> {
                        "Default"
                    }
                        )
                }
                    ),
                new TimelineData(
                    "2016/01/06 16:55:86",
                    "timelineInfo_1",
                    new List <TackData> {
                    new TackData(
                        "id1",
                        "tackInfo_2",
                        0,
                        20,
                        "Anim",
                        "DEFAULT",
                        new List <string> {
                        "Default"
                    }
                        ),
                    new TackData(
                        "id2",
                        "tackInfo_3",
                        20,
                        100,
                        "Anim",
                        "SPAWN",
                        new List <string> {
                        "Default"
                    }
                        )
                }
                    )
            }
                );

            var serialized = JsonUtility.ToJson(classGenParam);


            // write json file
            using (var sw = new StreamWriter(autoGenOutputPath))
            {
                sw.Write(serialized);
            }
        }

        {
            // read json file
            var body = string.Empty;
            using (var sr = new StreamReader(autoGenOutputPath))
            {
                body = sr.ReadToEnd();
            }
            var deserialized = JsonUtility.FromJson <AutoData>(body);

            var desc = AutoDescriptor.Auto("<InitialParamType, UpdateParamType>", deserialized);


            var outputPath = Path.Combine(basePath, "_20_1_AutoGeneratorDescriptorFromJson.cs");

            // write class file
            using (var sw = new StreamWriter(outputPath))
            {
                sw.Write(desc);
            }
        }
    }