unity获取UI组件结构的小工具

写这个工具的原因

之前写项目的时候,界面ui多了感觉绑定组件的时候觉得很麻烦,就在想能不能用代码创建一个脚本自动获取组件

思路

将每个对象的声明,初始化,和destroy代码,储存到一个类中。然后将代码替换到模板代码中声明,初始化和destroy相应的位置,然后生成脚本到相应的位置

开始撸代码

声明:private Button xxx_but;

要声明组件我们需要知道组件的类型,因此先设计一个查询组件类型的字典

 public static Dictionary<string, string> typMap = new Dictionary<string, string>()
    {
        {"but",typeof(Button).Name },
        {"txt",typeof(Text).Name },
        {"img",typeof(Image).Name }
    };

根据名字去获取组件的类型
因此我们需要确定组件的命名格式,然后根据命名来确认类型

初始化: xxx_but=trtransform.Find("路径").GetComponent<组件类型>()
我们需要获取物体的路径

    /// <summary>
    /// 获取物体的路径
    /// </summary>
    /// <param name="go"></param>
    /// <returns></returns>
    static string GetgameObjectPath(Transform go)
    {
        string path = "";
        while (go != Selection.gameobjects[0])
        {

            path = path.Insert(0, "/");
            path = path.Insert(0, go.name);
            go = go.parent;
        }
        return path;
    }

创建一个类来保存定义组件,初始化和销毁代码的字符串

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class UIInfo
{
    private string file1;
    private string body1;
    private string body2;

    public string File1
    {
        get { return file1; }
        set { file1 = value; }
    }

    public string Body1
    {
        get { return body1; }
        set { body1 = value; }
    }

    public string Body2
    {
        get { return body2; }
        set { body2 = value; }
    }
//构造函数,补全代码块(file1, body1, body2)
    public UIInfo(string name, string contrastKey, string path)
    {
        file1 = string.Format("public {0} {1}", GetUIPath.typMap[contrastKey], name);
        body1 = string.Format("{0} =transform.Find(\"{1}\").GetComponent<{2}>()", name, path, GetUIPath.typMap[contrastKey]);
        body2 = string.Format("{0}=null", name);
    }

}

将所有的组件的名字,组件类型,路径储存到List中

   /// <summary>
   /// 获取物体的基本信息(名字,校准key,路径),并储存
   /// </summary>
   /// <param name="tf"></param>
   static void GetChildinfo(Transform tf)
   {
       Debug.Log(tf.name);
       
           foreach (Transform tfChild in tf)
           {

               string contrastKey = tfChild.name.Substring(0, 3);
               if (typMap.ContainsKey(contrastKey))
               {
                   Debug.Log(tfChild.name + "------" + contrastKey + "------" + GetgameObjectPath(tfChild));
                   UIInfo uinf = new UIInfo(tfChild.name, contrastKey, GetgameObjectPath(tfChild));
                   uinfo.Add(uinf);
               }
               if (tfChild.childCount >= 0)
               {
                   GetChildinfo(tfChild);
               }
           }
       


   }

然后将模板程序中相应的地方替换成list中的代码,并保存文件

    private static string File1 = "";
    private static string Body1 = "";
    static void WriteScript()
    {

        for (int i = 0; i < uinfo.Count; i++)
        {
            File1 += uinfo[i].File1 + ";\r\n";
            Body1 += uinfo[i].Body1 + ";\r\n";
            Debug.Log(uinfo[i].File1 + "_____________" + uinfo[i].Body1 + "______________" + uinfo[i].Body2);
        }
        Debug.Log(File1 + "---------------" + Body1);
        Eg_str = Eg_str.Replace("@File1", File1);
        Eg_str = Eg_str.Replace("@Body1", Body1);
        //储存文档
        SaveFileDialog saveFile = new SaveFileDialog();
        saveFile.FileName = "TestName.cs";
        string path = Environment.CurrentDirectory.Replace("/", @"\");
        if (saveFile.ShowDialog() == DialogResult.OK)
        {
            string[] name = saveFile.FileName.Split('\\');
            string nameStr = name[name.Length - 1].Replace(".cs", "");
            Eg_str = Eg_str.Replace("@Name", nameStr);
            File.WriteAllText(saveFile.FileName, Eg_str);
        }
    }

最后在给unity编辑器写个命令创建出相应的脚步

 [MenuItem("MyTools/GetScript")]
    static void CreatScript()
    {
        GameObject[] select = Selection.gameObjects;
        if (select.Length == 1)
        {
            Transform selectGo = select[0].transform;
            GetChildinfo(selectGo);
            WriteScript();
        }
        else
        {
            EditorUtility.DisplayDialog("警告", "你只能选择一个GameObject", "确定");
        }


    }

完整的代码
GetUIPath.cs

using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
using UnityEditor;
using UnityEngine;
using UnityEngine.UI;
using System.Windows.Forms;
using Application = UnityEngine.Application;
using Button = UnityEngine.UI.Button;
using MenuItem = UnityEditor.MenuItem;

/* 注意事项:  UI命名规则
 Button: but_xxx;
 Text: txt_xxx;
 Image: img_xxx;
 */
public class GetUIPath : Editor
{

    public static Dictionary<string, string> typMap = new Dictionary<string, string>()
    {
        {"but",typeof(Button).Name },
        {"txt",typeof(Text).Name },
        {"img",typeof(Image).Name }
    };

    private static List<UIInfo> uinfo = new List<UIInfo>();

    private static string Eg_str =
        "using System.Collections;" +
        "\r\nusing System.Collections.Generic;" +
        "\r\nusing UnityEngine;\r\tusing UnityEngine.UI;" +
        "\r\n//Wait for me, I don\'t want to let you down\r\n" +
        "//love you into disease, but no medicine can.\r\n" +
        "//Created By HeXiaoTao\r\n" +
        "public class @Name : MonoBehaviour {\r\n\r\n\t" +
        "@File1// Use this for initialization\r\n\tvoid Start () {@Body1}\r\n\t\r\n\t" +
        "// Update is called once per frame\r\n\tvoid Update () {\r\n\t\t\r\n\t}\r\n" +
        "}";

    private static string File1 = "";
    private static string Body1 = "";
    static void WriteScript()
    {

        for (int i = 0; i < uinfo.Count; i++)
        {
            File1 += uinfo[i].File1 + ";\r\n";
            Body1 += uinfo[i].Body1 + ";\r\n";
            Debug.Log(uinfo[i].File1 + "_____________" + uinfo[i].Body1 + "______________" + uinfo[i].Body2);
        }
        Debug.Log(File1 + "---------------" + Body1);
        Eg_str = Eg_str.Replace("@File1", File1);
        Eg_str = Eg_str.Replace("@Body1", Body1);
        //储存文档
        SaveFileDialog saveFile = new SaveFileDialog();
        saveFile.FileName = "TestName.cs";
        string path = Environment.CurrentDirectory.Replace("/", @"\");
        if (saveFile.ShowDialog() == DialogResult.OK)
        {
            string[] name = saveFile.FileName.Split('\\');
            string nameStr = name[name.Length - 1].Replace(".cs", "");
            Eg_str = Eg_str.Replace("@Name", nameStr);
            File.WriteAllText(saveFile.FileName, Eg_str);
        }
    }
    /// <summary>
    /// 获取物体的路径
    /// </summary>
    /// <param name="go"></param>
    /// <returns></returns>
    static string GetgameObjectPath(Transform go)
    {
        string path = "";
        while (go != Selection.gameobjects[0])
        {

            path = path.Insert(0, "/");
            path = path.Insert(0, go.name);
            go = go.parent;
        }
        return path;
    }
    /// <summary>
    /// 获取物体的基本信息(名字,校准key,路径),并储存
    /// </summary>
    /// <param name="tf"></param>
    static void GetChildinfo(Transform tf)
    {
        Debug.Log(tf.name);
        
            foreach (Transform tfChild in tf)
            {

                string contrastKey = tfChild.name.Substring(0, 3);
                if (typMap.ContainsKey(contrastKey))
                {
                    Debug.Log(tfChild.name + "------" + contrastKey + "------" + GetgameObjectPath(tfChild));
                    UIInfo uinf = new UIInfo(tfChild.name, contrastKey, GetgameObjectPath(tfChild));
                    uinfo.Add(uinf);
                }
                if (tfChild.childCount >= 0)
                {
                    GetChildinfo(tfChild);
                }
            }
        


    }

    
    [MenuItem("MyTools/GetScript")]
    static void CreatScript()
    {
        GameObject[] select = Selection.gameObjects;
        if (select.Length == 1)
        {
            Transform selectGo = select[0].transform;
            GetChildinfo(selectGo);
            WriteScript();
        }
        else
        {
            EditorUtility.DisplayDialog("警告", "你只能选择一个GameObject", "确定");
        }


   }
}

UIInfo.cs

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class UIInfo
{
    private string file1;
    private string body1;
    private string body2;

    public string File1
    {
        get { return file1; }
        set { file1 = value; }
    }

    public string Body1
    {
        get { return body1; }
        set { body1 = value; }
    }

    public string Body2
    {
        get { return body2; }
        set { body2 = value; }
    }
    public UIInfo(string name, string contrastKey, string path)
    {
        file1 = string.Format("public {0} {1}", GetUIPath.typMap[contrastKey], name);
        body1 = string.Format("{0} =transform.Find(\"{1}\").GetComponent<{2}>()", name, path, GetUIPath.typMap[contrastKey]);
        body2 = string.Format("{0}=null", name);
    }

}

实现的效果

选择对应的ui组件,点击编辑器下的MyTools/GetScript


image.png
image.png

最终效果


image.png

结束

Over

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,245评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,749评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,960评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,575评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,668评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,670评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,664评论 3 415
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,422评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,864评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,178评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,340评论 1 344
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,015评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,646评论 3 323
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,265评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,494评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,261评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,206评论 2 352

推荐阅读更多精彩内容

  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,647评论 18 139
  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 172,019评论 25 707
  • 用两张图告诉你,为什么你的 App 会卡顿? - Android - 掘金 Cover 有什么料? 从这篇文章中你...
    hw1212阅读 12,710评论 2 59
  • 那天半夜,传来消息,爷爷去世了…… 因此我们连夜赶回老家。下雨了,地上湿的一塌糊涂。大老远就看到大伯家搭了个棚,边...
    酥饼子阅读 207评论 0 1
  • 函数声明、函数表达式、匿名函数 函数声明:使用function关键字声明一个函数,再指定一个函数名,叫函数声明。 ...
    shadow123阅读 225评论 0 0