TSRPC+Cocos

TSRPC文档: https://tsrpc.cn/docs/get-started/api.html

创建

先创建一个默认的会话项目,找一个文件夹在控制台运行以下代码:

复制代码
npx create-tsrpc-app@latest first-api --presets browser
# 或者
yarn create tsrpc-app first-api --presets browser

运行之后根据自己的需求选

等待

新建初始模板结束

会发现在运行Powershell的文件夹下出现了一个"first-api"文件夹,里面包含前端和后端工程。

分别下载依赖,运行如下代码

复制代码
npm i

看看后端里写的readme,运行后端

复制代码
npm run dev

运行前端

注意要用命令行运行,不要用liveServer什么的。

复制代码
npm run dev

可以看到如下页面

都运行起来之后,就可以发消息了

如果使用的是WS,也是一样的操作,前端页面如下:

使用Cocos制作前端

之前的前端部分可以关掉了,接下来用Cocos Creator制作一个前端。

新建一个Cocos项目,把这些复制到package.json

复制代码
  "dependencies": {
    "tsrpc-browser": "^3.4.11",
    "tsrpc-miniapp": "^3.4.1"
  }

先运行

复制代码
npm i

sharedclient的内容复制到cocos里

注册一个全局管理器

复制代码
GameManager.ts
import { HttpClient } from "tsrpc-browser";
import { ReqAddData } from "../shared/protocols/PtlAddData";
import { serviceProto } from "../shared/protocols/serviceProto";

/**
 * 前端游戏状态管理
 * 主要用于实现前端的预测和和解
 */
export class GameManager {
    private client;
    constructor() {
        // Use browser client or miniapp client depend on the platform 
        this.client = new HttpClient(serviceProto, {
            server: "http://192.168.231.98:3000",
            json: true,
            logger: console,
        });
    }

    async addData(obj: ReqAddData): Promise<void> {
        let ret = await this.client.callApi('AddData', obj);
        if (!ret.isSucc) {
            console.log("请求失败");
            return;
        }
    }

    async loadList() {
        let ret = await this.client.callApi('GetData', {});

        // Error
        if (!ret.isSucc) {
            alert(ret.err.message);
            return;
        }

        // Success
        return ret.res.data;
    }
}

发送按钮绑定事件

复制代码
this.gameManager.addData({ content, name });
// 发送完成后刷新一次
this.scheduleOnce(() => {
    this._updateList();
}, 0.5)

配合UI制作等等,实现一个对话窗功能

相关推荐
q***73551 小时前
SpringBoot中使用TraceId进行日志追踪
spring boot·后端·状态模式
B***y8856 小时前
SpringMVC的工作流程
状态模式
q***14641 天前
SpringMVC的工作流程
状态模式
7***n751 天前
前端设计模式详解
前端·设计模式·状态模式
徐同保1 天前
n8n执行pnpm dev:fe命令,前后端同时启动
状态模式
y***13641 天前
【wiki知识库】07.用户管理后端SpringBoot部分
spring boot·后端·状态模式
gAlAxy...1 天前
SpringMVC 请求参数绑定全解析
状态模式
todoitbo2 天前
基于 DevUI MateChat 搭建前端编程学习智能助手:从痛点到解决方案
前端·学习·ai·状态模式·devui·matechat
A***F1573 天前
使用 Spring Boot 实现图片上传
spring boot·后端·状态模式
阿珊和她的猫4 天前
HTTP 状态码 304:未修改(Not Modified)的深度解析
网络协议·http·状态模式