前言

最近在预研一款换装的小游戏,通过在积分乐园中兑换服装,就可以在不同场景中展示穿上新服装的角色。对于这类有主题形象的动画,自然就想到了骨骼动画,通过网格自由变形和蒙皮技术就能在视觉上呈现所需要的动画效果,并且骨骼动画也支持皮肤替换,或者插槽的图片替换,对于换装的需求比较友好。因此决定使用骨骼动画来实现换装小游戏的demo,以下就是在android平台上实现dragonbones换装的过程。

技术选型

对于dragonbones在android端的渲染显示,有多个方案可以选择,例如:白鹭引擎或者cocos2d游戏引擎。最终选择使用korge来进行渲染,为什么抛弃cocos2d这个广泛使用的游戏引擎来渲染呢?主要理由是:

  • cocos2d 游戏引擎加载比较耗时,其首次加载时间无法接受;
  • cocos2d 编译出来的底层依赖需要单独裁剪,裁剪后的libcocos.so依然较大;
  • cocos2d 对于游戏动画的渲染,其渲染的载体是activity,也就是编译出来的cocosactivity,这个是无法满足业务需要的。因此需要自定义游戏容器,并且需要改动画加载的容器载体和加载路径。简单点来说,可以从任意路径来加载游戏资源(例如网络或者本地,不仅仅是assets目录),并且可以在自定义view中进行渲染。解决思路可以参考:android实战之cocos游戏容器搭建

最终,还是在官方的github上发现这条issue,从而找到了android上渲染dragonbones的方式。korge的介绍是这样的

modern multiplatform game engine for kotlin.

korge的基本用法

1)创建 dragonbones scene

class displaychangeimgscene : basedbscene() {
    companion object {
        private const val ske_json = "mecha_1004d_show/mecha_1004d_show_ske.json"
        private const val tex_json = "mecha_1004d_show/mecha_1004d_show_tex.json"
        private const val tex_png = "mecha_1004d_show/mecha_1004d_show_tex.png"
    }
    private val factory = korgedbfactory()
    override suspend fun container.createscenearmaturedisplay(): korgedbarmaturedisplay {
        val skedeferred = asyncimmediately { res[ske_json].readstring() }
        val texdeferred = asyncimmediately { res[tex_json].readstring() }
        val imgdeferred = asyncimmediately { res[tex_png].readbitmap().mipmaps() }
​
        val skejsondata = skedeferred.await()
        val texjsondata = texdeferred.await()
        factory.parsedragonbonesdata(json.parse(skejsondata)!!)
        factory.parsetextureatlasdata(json.parse(texjsondata)!!, imgdeferred.await())
​
        val armaturedisplay = factory.buildarmaturedisplay("mecha_1004d")!!.position(500, 700)
        armaturedisplay.animation.play("idle")
​
        return armaturedisplay
    }
}

2)使用korgeandroidview加载 scene module

class mainactivity : appcompatactivity() {
    private val binding by lazy { activitymainbinding.inflate(layoutinflater) }​
    private val slotdisplaymodule by scenemodule<displaychangeimgscene>()​
    override fun oncreate(savedinstancestate: bundle?) {
        super.oncreate(savedinstancestate)
        setcontentview(binding.root)
        binding.root.addview(korgeandroidview(this).apply { 
            loadmodule(slotdisplaymodule)
        })
    }
}

3)scenemodule 函数

@mainthread
inline fun <reified ds : basedbscene> activity.scenemodule(
    windowwidth: int = resources.displaymetrics.widthpixels,
    windowheight: int = resources.displaymetrics.heightpixels
): lazy<module> {
    return scenemodulelazy(ds::class, windowwidth, windowheight)
}
class scenemodulelazy<ds : basedbscene>(
    private val dbsceneclass: kclass<ds>,
    private val width: int,
    private val height: int
) : lazy<module> {
    private var cached: module? = null​
    override val value: module
        get() {
            return cached ?: object : module() {
                override val mainscene = dbsceneclass
                override suspend fun asyncinjector.configure() {
                    mapprototype(dbsceneclass) {
                        val sceneinstance = class.forname(dbsceneclass.qualifiedname!!).newinstance()
                        sceneinstance as ds
                    }
                }
                override val fullscreen = true​
                override val size: sizeint
                    get() = sizeint(width, height)
                override val windowsize: sizeint
                    get() = sizeint(width, height)
            }
        }​
    override fun isinitialized(): boolean = cached != null
}

上面就是最简单的demo,通过加载dragonbones的配置数据即可显示骨骼动画。

实现换装的多种实现

静态换装 vs 动态换装

静态换装

如果换装的素材是固定的,可以预先放置在插槽里,通过切换插槽的displayindex实现换装。

在骨骼动画设计时,每个slot可对应多个display,例如:

{
  "name": "weapon_hand_l",
  "display": [
    {
      "name": "weapon_1004_l",
      "transform": {
        "x": 91.22,
        "y": -30.21
      }
    },
    {
      "name": "weapon_1004b_l",
      "transform": {
        "x": 122.94,
        "y": -44.14
      }
    },
    {
      "name": "weapon_1004c_l",
      "transform": {
        "x": 130.95,
        "y": -56.95
      }
    },
    {
      "name": "weapon_1004d_l",
      "transform": {
        "x": 134.67,
        "y": -55.25
      }
    },
    {
      "name": "weapon_1004e_l",
      "transform": {
        "x": 155.62,
        "y": -59.2
      }
    }
  ]
}

在代码中,可直接切换display进行换装,即:

    private var leftweaponindex = 0
    private val leftdisplaylist = listof(
        "weapon_1004_l", "weapon_1004b_l", "weapon_1004c_l", "weapon_1004d_l", "weapon_1004e_l"
    )
    override suspend fun container.createscenearmaturedisplay(): korgedbarmaturedisplay {
        val skedeferred = asyncimmediately { json.parse(res["mecha_1004d_show/mecha_1004d_show_ske.json"].readstring())!! }
        val texdeferred = asyncimmediately { res["mecha_1004d_show/mecha_1004d_show_tex.json"].readstring() }
        val imgdeferred = asyncimmediately { res["mecha_1004d_show/mecha_1004d_show_tex.png"].readbitmap().mipmaps() }
        factory.parsedragonbonesdata(skedeferred.await())
        factory.parsetextureatlasdata(json.parse(texdeferred.await())!!, imgdeferred.await())​
        val armaturedisplay = factory.buildarmaturedisplay("mecha_1004d")!!.position(500, 700)
        armaturedisplay.animation.play("idle")
​
        val slot = armaturedisplay.armature.getslot("weapon_hand_l")!!
        mouse {
            upanywhere {
                leftweaponindex++;
                leftweaponindex %= leftdisplaylist.size
​
                factory.replaceslotdisplay(
                    dragonbonesname = "mecha_1004d_show",
                    armaturename = "mecha_1004d",
                    slotname = "weapon_hand_l",
                    displayname = leftdisplaylist[leftweaponindex],
                    slot = slot
                )
            }
        }​
        return armaturedisplay
    }

动态换装

如果换装的素材是不固定的,需要动态获取资源,或者通过一张外部图片来实现换装效果,可以通过修改slot的显示纹理即可实现。

```
// 换装原理是:通过factory.parsetextureatlasdata来解析纹理数据,纹理为外部图片,纹理配置为mock数据
private fun changeslotdisplay(slot: slot, replacebitmap: bitmap) {
    // 使用 hashcode 来作为 骨架名称 和 骨骼名称
    val replacearmaturename = replacebitmap.hashcode().tostring()
    // 需要替换的插槽所包含的显示对象
    val replacedisplayname = slot._displayframes.first { it.rawdisplaydata != null }.rawdisplaydata!!.name
    // 通过factory解析纹理数据
    val mocktexmodel = mocktexmodel(replacearmaturename, replacedisplayname, replacebitmap.width, replacebitmap.height)
    val textureatlasdata = json.parse(gson.tojson(mocktexmodel))!!
    factory.parsetextureatlasdata(textureatlasdata, replacebitmap.mipmaps())
​
    // 替换 display 的纹理,替换的图片和原图大小、位置一致
    val replacetexturedata = getreplacedisplaytexturedata(replacearmaturename, replacedisplayname)
    slot.replacetexturedata(replacetexturedata)
​
    slot._displayframe?.displaydata?.transform?.let {
        // 修改 display 相对于 slot 的位置、初始缩放等配置
    }
}
private fun getreplacedisplaytexturedata(replacearmaturename: string, replacedisplayname: string): texturedata {
    val data = factory.gettextureatlasdata(replacearmaturename)
    data!!.fastforeach { textureatlasdata ->
        val texturedata = textureatlasdata.gettexture(replacedisplayname)
        if (texturedata != null) {
            return texturedata
        }
    }
    throw exception("getnewdisplaytexturedata null")
}
private fun mocktexmodel(armaturename: string, displayname: string, imgw: int, imgh: int): dragonbonestexmodel {
    val origintexmodel = gson.fromjson(texjsondata, dragonbonestexmodel::class.java)
​
    val subtexture: dragonbonestexmodel.subtexture = run loop@{
        origintexmodel.subtexture.foreach { subtexture ->
            if (subtexture.name == displayname) {
                return@loop subtexture.apply {
                    this.x = 0
                    this.y = 0
                }
            }
        }
        throw exception("can not find replace display!")
    }
    return dragonbonestexmodel(
        name = armaturename,
        width = imgw,
        height = imgh,
        subtexture = listof(subtexture)
    )
}
```

包含动画 vs 不包含动画

如果换装的部位不包含动画,则可以使用图片做为换装素材,具体实现方法如上。 如果换装的部位包含动画,则可以使用子骨架做为换装的素材,api调用方法和换图片是一样的,只不过换进去的是子骨架的显示对象,在引擎层面,图片和子骨架的显示对象都是显示对象,所以处理起来是一样的,唯一不同的是子骨架不需要考虑轴点,也不能重新设置轴点,因为他自身有动画数据相当于已经包含轴点信息。

先将原始骨骼动画文件中,该slot的display信息定义为空。例如:

{
  "name": "1036",
  "display": [
    {
      "name": "blank"
    }
  ]
},
{
  "name": "1082",
  "display": [
    {
      "name": "blank"
    }
  ]
},

在子骨架中定义 slot 的 display 信息。例如:

           "slot": [
               {
                   "name": "1019",
                   "parent": "root"
               }
           ],
           "skin": [
               {
                   "name": "",
                   "slot": [
                       {
                           "name": "1019",
                           "display": [
                               {
                                   "type": "mesh",
                                   "name": "glove/2080500b",
                                   "width": 159,
                                   "height": 323,
                                   "vertices": [
                                       104.98,
                                       -1078.6,
                                       108.08,
                                       -1094.03
                                   ],
                                   "uvs": [
                                       0.45257,
                                       0.1035,
                                       0.4721,
                                       0.15156,
                                       0.4234,
                                       0.05575
                                   ],
                                   "triangles": [
                                       7,
                                       11,
                                       18,
                                       20
                                   ],
                                   "weights": [
                                       2,
                                       3,
                                       0.92
                                   ],
                                   "slotpose": [
                                       1,
​
                                       0,
                                       0
                                   ],
                                   "bonepose": [
                                       6,
                                       0.193207,
​
                                       139.903737,
                                       -897.076346
                                   ],
                                   "edges": [
                                       19,
                                       18,
                                       18,
                                       20,
                                       19
                                   ],
                                   "useredges": [
                                       16,
                                       11,
                                       7
                                   ]
                               }
                           ]
                       }
                   ]
               }
           ],

使用子骨架的显示对象进行替换,以下是使用直接替换 skin 的方式,和替换 display 的原理相同。

private suspend fun replacedragonbonesdisplay(armaturedisplay: korgedbarmaturedisplay) {
   val path = "you_xin/suit1/replace/"
   val dragonbonesjsonpath = path + "xx_ske.json"
   val textureatlasjsonpath = path + "xx_tex.json"
   val textureatlaspath = path + "xx_tex.png"
   // 加载子骨架数据
   factory.parsedragonbonesdata(json.parse(res[dragonbonesjsonpath].readstring())!!)
   factory.parsetextureatlasdata(
       json.parse(res[textureatlasjsonpath].readstring())!!,
       res[textureatlaspath].readbitmap().mipmaps()
   )
   // 获取解析后的骨骼数据
   val replacearmaturedata = factory.getarmaturedata("xx")
   // 通过 replaceskin 的方式修改 slot display
   factory.replaceskin(armaturedisplay.armature, replacearmaturedata!!.defaultskin!!)
}

局部换装 vs 全局换装

之前说的都是局部换装,替换的是纹理集中的一块子纹理,如果希望一次性替换整个纹理集也是支持的。但是纹理集的配置文件不能换(如果配置文件也要换的话,就直接重新构建骨架就好) 也就是说游戏中可以有一套纹理集配置文件对应多个纹理集图片,实现配置文件不变的情况下换整个纹理集。利用这个技术可以实现例如格斗游戏中同样的角色穿不同颜色的衣服的效果。

全局换装之skin修改

dragonbones支持多套皮肤的切换,如果皮肤时固定的,可预先配置在骨骼动画文件中,需要时直接切换即可。

private fun changedragonbonesskin(armaturedisplay: korgedbarmaturedisplay) {
   val replaceskin = factory.getarmaturedata("xxx")?.getskin("xxx") ?: return
   factory.replaceskin(armaturedisplay.armature, replaceskin)
}

全局换装之纹理修改

如果皮肤并未固定的,需要动态配置或者网络下发,那么可以使用纹理替换的方式。

private suspend fun changedragonbonesskin() {
   val texdeferred = asyncimmediately { res["body/texture_01.png"].readbitmap().mipmaps() }
   factory.updatetextureatlases(texdeferred.await(), "body")
}

总结

对于一款换装小游戏来讲,使用spine或者是dragonbones的差异不大,其设计思路基本相同,而且korge同样也是支持spine的渲染。从技术实现上,换装的功能并不难实现,只是需要考虑的细节方面还有很多,例如:

  • 服装商城的在线配置和管理,并且有些服装还可能自带动画
  • 某些服装可能涉及多个插槽,例如:一套裙子,有一部分的层级在身体前面,另一部分的层级在身体后面,那就意味需要两个插槽才能实现
  • 如果该人物形象在多个界面或者应用中出现,动画效果不同,但是身上的服装相同,需要考虑处理换装后服装同步的问题

到此这篇关于android 上实现dragonbones换装功能的文章就介绍到这了,更多相关android  dragonbones换装内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!