欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Unity实现微信聊天框界面

程序员文章站 2022-06-15 19:14:35
本文实例为大家分享了unity实现微信聊天框界面的具体代码,供大家参考,具体内容如下【原理】一个聊天界面主要由三个部分组成:内容区、可见区、滑动条可见区在内容区上边,内容区会随着聊天内容变得非常长,但...

本文实例为大家分享了unity实现微信聊天框界面的具体代码,供大家参考,具体内容如下

【原理】

一个聊天界面主要由三个部分组成:内容区、可见区、滑动条

可见区在内容区上边,内容区会随着聊天内容变得非常长,但只有位于可见区的部分才能被看见,其他区域的看不见。通过滑动条上下移动内容区,看见的内容发生变化。

【步骤】

  • 新建一个ui->panel,重命名为chatpanel,添加scroll rect组件
  • 在chatpanel下新建一个ui->panel,重命名为viewport,添加mask组件
  • 在chatpanel下新建一个ui->scrollbar,direction选择bottom to top
  • 在viewport下新建一个ui->panel,移除image组件,重命名为content,调整其anchor和pivot
  • 调整viewport、content、scrollbar的height一致

Unity实现微信聊天框界面

  • 给scroll rect组件复制如下

Unity实现微信聊天框界面

  • 创建聊天气泡

效果如下

Unity实现微信聊天框界面

  • 在bubble上添加 contentsizefitter和vertical layout group组件,使得bubble大小随文本大小改变。在text上添加layoutelement。效果如下

Unity实现微信聊天框界面

  • 创建右边的聊天气泡,效果如下:

Unity实现微信聊天框界面

  • 新建一个脚本,名为chatpanelmanager,挂在chatpanel下

【脚本】

using unityengine;
using unityengine.ui;
 
public class chatpanelmanager : monobehaviour
{
    public gameobject leftbubbleprefab;
    public gameobject rightbubbleprefab;
 
    private scrollrect scrollrect;
    private scrollbar scrollbar;
    
    private recttransform content;
 
    [serializefield] 
    private float stepvertical; //上下两个气泡的垂直间隔
    [serializefield] 
    private float stephorizontal; //左右两个气泡的水平间隔
    [serializefield]
    private float maxtextwidth;//文本内容的最大宽度
 
    private float lastpos; //上一个气泡最下方的位置
    private float halfheadlength;//头像高度的一半
 
    public void init()
    {
        scrollrect = getcomponentinchildren<scrollrect>();
        scrollbar = getcomponentinchildren<scrollbar>();
        content = transform.find("viewport").find("content").getcomponent<recttransform>();
        lastpos = 0;
        halfheadlength = leftbubbleprefab.transform.find("head").getcomponent<recttransform>().rect.height / 2;
    }
 
    public void addbubble(string content, bool ismy)
    {
        gameobject newbubble = ismy ? instantiate(rightbubbleprefab, this.content) : instantiate(leftbubbleprefab, this.content);
        //设置气泡内容
        text text = newbubble.getcomponentinchildren<text>();
        text.text = content;
        if (text.preferredwidth > maxtextwidth)
        {
            text.getcomponent<layoutelement>().preferredwidth = maxtextwidth;
        }
        //计算气泡的水平位置
        float hpos = ismy ? stephorizontal / 2 : -stephorizontal / 2;
        //计算气泡的垂直位置
        float vpos = - stepvertical - halfheadlength + lastpos;
        newbubble.transform.localposition = new vector2(hpos, vpos);
        //更新lastpos
        image bubbleimage = newbubble.getcomponentinchildren<image>();
        float imagelength = getcontentsizefitterpreferredsize(bubbleimage.getcomponent<recttransform>(), bubbleimage.getcomponent<contentsizefitter>()).y;
        lastpos = vpos - imagelength;
        //更新content的长度
        if (-lastpos > this.content.rect.height)
        {
            this.content.sizedelta = new vector2(this.content.rect.width, -lastpos);
        }
 
        scrollrect.verticalnormalizedposition = 0;//使滑动条滚轮在最下方
    }
 
    public vector2 getcontentsizefitterpreferredsize(recttransform rect, contentsizefitter contentsizefitter)
    {
        layoutrebuilder.forcerebuildlayoutimmediate(rect);
        return new vector2(handleselffittingalongaxis(0, rect, contentsizefitter),
            handleselffittingalongaxis(1, rect, contentsizefitter));
    }
 
    private float handleselffittingalongaxis(int axis, recttransform rect, contentsizefitter contentsizefitter)
    {
        contentsizefitter.fitmode fitting =
            (axis == 0 ? contentsizefitter.horizontalfit : contentsizefitter.verticalfit);
        if (fitting == contentsizefitter.fitmode.minsize)
        {
            return layoututility.getminsize(rect, axis);
        }
        else
        {
            return layoututility.getpreferredsize(rect, axis);
        }
    }
}

【测试脚本——按空格添加内容】

using system.collections.generic;
using unityengine;
 
 
public class test : monobehaviour
{
    public chatpanelmanager cpm;
    private int count;
    private list<string> dialogue = new list<string>();
    void start()
    {
        cpm.init();
        dialogue.add("永恒之星");
        dialogue.add("永恒之星永恒之星");
        dialogue.add("永恒之星永恒之星永恒之星");
        dialogue.add("永恒之星永恒之星永恒之星永恒之星");
        dialogue.add("永恒之星永恒之星永恒之星永恒之星永恒之星");
        dialogue.add("永恒之星永恒之星永恒之星永恒之星永恒之星永恒之星");
        dialogue.add("永恒之星永恒之星永恒之星永恒之星永恒之星永恒之星永恒之星");
        dialogue.add("永恒之星永恒之星永恒之星永恒之星永恒之星永恒之星永恒之星");
        dialogue.add("永恒之星永恒之星永恒之星永恒之星永恒之星永恒之星永恒之星永恒之星");
        dialogue.add("永恒之星永恒之星永恒之星永恒之星永恒之星永恒之星永恒之星永恒之星永恒之星永恒之星永恒之星永恒之星永恒之星永恒之星永恒之星永恒之星");
    }
 
    void update()
    {
        if (input.getkeydown(keycode.space))
        {
           cpm.addbubble(dialogue[count],random.range(0,2)>0);
           count++;
           if (count > dialogue.count-1)
           {
               count = 0;
           }
        }
    }
}

【测试结果】

Unity实现微信聊天框界面

【补充说明】

这里核心是实现了聊天气泡内容的添加,至于头像和name,比较简单,我们可以在addbubble方法中自己补充实现。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。