当前位置:   article > 正文

用23种设计模式打造一个cocos creator的游戏框架----(八)适配器模式_cocos中怎么引用另一个tsstartrecord(callback: function){

cocos中怎么引用另一个tsstartrecord(callback: function){

1、模式标准

模式名称:适配器模式

模式分类:结构型

模式意图:适配器模式的意图是将一个类的接口转换成客户端期望的另一个接口。适配器模式使原本接口不兼容的类可以一起工作。

结构图:

适用于:

  1. 系统需要使用现有的类,而这些类的接口不符合系统的需要。 适配器可以在不修改现有类的情况下提供一个兼容的接口。

  2. 想要构建一个可重用的类,这个类可以与其他不相关的类或不可预见的类(即那些接口可能不一定兼容的类)协同工作。

  3. 需要一个统一的输出接口,而输入端的类型不可预知

2、分析与设计 

需要统一输出接口,在游戏开发中应该也有一些,这里举的例子是通讯适配。比如一般的网络请求都是XMLHttpRequest进行的get与post的请求,请求体是json,返回的是自己熟悉的{code:200,msg:"成功",data:{}}格式,但是我用tsrpc这个ts框架后,请求体变成了tsrpc特有的Proto,且返回个格式变为了{isSucc:true,err:null,res:{}},我希望游戏框架里面请求方式是类似xhgame.net.post('/api/userInfo'),无论我们如何换后端,前端都是不用改。

3、开始打造

  1. export abstract class IRequest {
  2. abstract get(url: string, reqData: any, callback: Function): void
  3. abstract post(url: string, reqData: any, callback: Function): void
  4. }
  1. export class Http extends IRequest {
  2. public get(url: string, reqData: any, callback: Function) {
  3. url = xhgame.config.game_host + url
  4. url += "?";
  5. for (var item in reqData) {
  6. url += item + "=" + reqData[item] + "&";
  7. }
  8. var xhr = new XMLHttpRequest();
  9. xhr.onreadystatechange = function () {
  10. if (xhr.readyState == 4) {
  11. if (xhr.status >= 200 && xhr.status < 400) {
  12. var response = xhr.responseText;
  13. if (response) {
  14. var responseJson = JSON.parse(response);
  15. callback(responseJson);
  16. } else {
  17. console.log("返回数据不存在")
  18. callback(false);
  19. }
  20. } else {
  21. console.log("请求失败")
  22. callback(false);
  23. }
  24. }
  25. };
  26. xhr.open("GET", url, true);
  27. xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  28. xhr.setRequestHeader('Authorization', 'Bearer ' + xhgame.storage.origin_get('token'));
  29. xhr.send();
  30. }
  31. public post(url: string, reqData: any, callback: Function) {
  32. url = xhgame.config.game_host + url
  33. //1.拼接请求参数
  34. var param = "";
  35. for (var item in reqData) {
  36. param += item + "=" + reqData[item] + "&";
  37. }
  38. //2.发起请求
  39. var xhr = new XMLHttpRequest();
  40. xhr.onreadystatechange = function () {
  41. if (xhr.readyState == 4) {
  42. if (xhr.status >= 200 && xhr.status < 400) {
  43. var response = xhr.responseText;
  44. if (response) {
  45. var responseJson = JSON.parse(response);
  46. callback(responseJson);
  47. } else {
  48. console.log("返回数据不存在")
  49. callback(false);
  50. }
  51. } else {
  52. console.log("请求失败")
  53. callback(false);
  54. }
  55. }
  56. };
  57. xhr.open("POST", url, true);
  58. xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  59. xhr.setRequestHeader('Authorization', 'Bearer ' + xhgame.storage.origin_get('token'));
  60. xhr.send(param);//reqData为字符串形式: "key=value"
  61. }
  62. }
  1. import { Http } from "../../../xhgame-framework/net/Http";
  2. import { HttpClient as HttpClient_Miniapp, WsClient as WsClient_Miniapp } from 'tsrpc-miniapp';
  3. import { HttpClient as HttpClient_Browser, WsClient as WsClient_Browser } from 'tsrpc-browser';
  4. import { serviceProto as ServiceProtoGate, ServiceType as ServiceTypeGate } from "../../tsshared/protocols/ServiceProtoGate";
  5. import { PREVIEW } from "cc/env";
  6. export enum TSPRC_API {
  7. GetOpenid = "GetOpenid"
  8. }
  9. // 设计模式6(适配器)
  10. export class TsrpcAdapterHttp extends Http {
  11. tsrpc: HttpClient_Miniapp<ServiceTypeGate> | HttpClient_Browser<ServiceTypeGate> = null
  12. constructor() {
  13. super()
  14. this.tsrpc = new (PREVIEW ? HttpClient_Browser : HttpClient_Miniapp)(ServiceProtoGate, {
  15. server: 'http://127.0.0.1:8010',
  16. json: true,
  17. logger: console,
  18. });
  19. }
  20. async get(url: TSPRC_API, reqData: any, callback: Function) {
  21. let res = await this.tsrpc.callApi(url, reqData)
  22. callback(res)
  23. }
  24. async post(url: TSPRC_API, reqData: any, callback: Function) {
  25. let res = await this.tsrpc.callApi(url, reqData)
  26. callback(res)
  27. }
  28. }

4、开始使用 

在用构建器构建游戏时

  1. setNet(): IGameBuilder {
  2. //return new Http()
  3. this.net = new TsrpcAdapterHttp()
  4. return this;
  5. }

有了适配器请求方式都统一称如下方式了

xhgame.net.post(api,data)

完成

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/152461
推荐阅读
相关标签
  

闽ICP备14008679号