维系一个游戏的交易系统,货币和道具系统是密不可分的。那么我们这一样来学习一个货币系统。
A trading system that sustains a game, money and prop systems are inextricably linked. So we're learning about a monetary system like this.
货币存储类型com.server.game.scene.currency.CurrencyStore
Currency storage typecom.server.game.scene.currence.CurrenceStore
继承这个类的是具体的货币
It's the specific currency that inherits this category.
子类的操作就可以将具体的自定义货币类型放入到自定义的地方去(如自己定义的数据表中的某个地方)
Subclass operations can place a specific type of custom currency in a customised place (e.g. somewhere in the data sheet that you define)
而具体的货币类型则放在com.server.game.scene.currency.Currency。如钻石、绑定钻石、银币、金币等。
For example, diamonds, diamonds tied, silver coins, gold coins, etc.
定义货币的类型在一个枚举中,集中管理各种货币。
The type of currency is defined in one list, which centrally manages the various currencies.
货币重定向处理类
Currency re-direction processing category
当然还有一个重要的类就是货币的管理类com.server.game.scene.currency.manager.CurrencyMgr
Another important category, of course, is the currency management class.com.server.game.scene.currence.manager.CurrentyMgr.
第一步:客户端请求,服务端查看配置信息(是一个四段式的方式如2:100002&10&0 主类:道具id&数量&是否绑定)
第二步:调用增加资源接口com.server.game.scene.item.manager.ResourceLogic#addResource
第三步:跳过了背包的操作(原因我后门讲述),并进入调用
第四步:查看是什么类型的货币
第五步:通过货币类型去找特殊货币重定向处理CurrencyRedirectType,并调用对应的钩子方法
第六步:增加货币资源First step: Client request, service-side view of configuration information (a four-part approach such as 2:10002&10&0 main category: propid&number & binding)
Second step: move to add resource interfacescom.server.game.scene.item.manager.ResourceLogic#addResource
Third step: skips backpack operations (cause I'm talking at the back door) and moves to call
fourth step: look at what type of currency
Fifth step: look for special currency to re-direct CurrenceRedirectType by currency type, and call the corresponding hook method
Sixth step: increase money resources
最重要的增加货币的代码如下
The most important additional currency code is as follows:
以上就是真实货币和自定义货币的一些设计方式。大家有更好的设计方式可以沟通一下。
These are some of the ways in which real and custom-defined currencies are designed. There are better ways to communicate.
注册有任何问题请添加 微信:MVIP619 拉你进入群

打开微信扫一扫
添加客服
进入交流群
发表评论