fusenapi/utils/websocket_data/render_data.go

64 lines
2.9 KiB
Go
Raw Normal View History

2023-08-07 03:25:06 +00:00
package websocket_data
2023-08-23 07:08:45 +00:00
import "fusenapi/constants"
2023-08-23 07:54:02 +00:00
// websocket数据交互基本数据类型
2023-08-07 03:25:06 +00:00
type DataTransferData struct {
2023-08-23 07:08:45 +00:00
T constants.Websocket `json:"t"` //消息类型
D interface{} `json:"d"` //传递的消息
2023-08-07 03:25:06 +00:00
}
2023-08-07 04:31:31 +00:00
// websocket接受要云渲染处理的数据
2023-08-07 03:25:06 +00:00
type RenderImageReqMsg struct {
2023-08-29 09:40:09 +00:00
RenderId string `json:"render_id"` //渲染id
OnlyReturnCombineImage bool `json:"only_return_combine_image"` //是否只返回刀版图
RenderData RenderData `json:"render_data"`
2023-08-07 10:37:33 +00:00
}
type RenderData struct {
2023-08-29 09:48:52 +00:00
TemplateTag string `json:"template_tag"` //模板标签(必须)
ProductId int64 `json:"product_id"` //产品id(必须)
Website string `json:"website"` //网站(可选)
Slogan string `json:"slogan"` //slogan(可选)
Address string `json:"address"` //地址(可选)
Phone string `json:"phone"` //电话(可选)
Qrcode string `json:"qrcode"` //二维码(可选)
ProductSizeId int64 `json:"product_size_id"` //尺寸id(可选)
UserId int64 `json:"user_id"` //用户id(websocket连接建立再赋值)
GuestId int64 `json:"guest_id"` //游客id(websocket连接建立再赋值)
Logo string `json:"logo"` //log资源地址(websocket连接建立再赋值)
2023-08-07 03:25:06 +00:00
}
2023-08-07 04:31:31 +00:00
// websocket发送渲染完的数据
2023-08-07 03:25:06 +00:00
type RenderImageRspMsg struct {
2023-08-25 04:01:01 +00:00
RenderId string `json:"render_id"` //渲染id
Image string `json:"image"` //渲染结果图片
RenderProcessTime RenderProcessTime `json:"render_process_time"` //流程耗时
}
type RenderProcessTime struct {
2023-08-25 03:06:32 +00:00
CombineTakesTime string `json:"combine_takes_time"` //合图需要时间
UnityRenderTakesTime string `json:"unity_render_takes_time"` //unity渲染用时
UploadCombineImageTakesTime string `json:"upload_combine_image_takes_time"` //上传刀版图耗时
UploadUnityRenderImageTakesTime string `json:"upload_unity_render_image_takes_time"` //上传unity渲染结果图时间
2023-08-07 03:25:06 +00:00
}
2023-08-29 07:04:11 +00:00
// 合图返回数据
type CombineImageRspMsg struct {
2023-08-29 08:24:59 +00:00
RenderId string `json:"render_id"` //渲染id
CombineImage string `json:"combine_image"` //刀版图
CombineProcessTime CombineProcessTime `json:"combine_process_time"`
}
type CombineProcessTime struct {
CombineTakesTime string `json:"combine_takes_time"` //合图时间
UploadCombineImageTakesTime string `json:"upload_combine_image_takes_time"` //上传刀版图耗时
2023-08-29 07:04:11 +00:00
}
2023-08-30 10:51:24 +00:00
2023-08-31 02:15:43 +00:00
// 发送到组装渲染阶段信息返回数据
type AssembleRenderDataRspMsg struct {
RenderId string `json:"render_id"` //渲染id
}
2023-08-30 10:51:24 +00:00
// 发送到unity阶段信息返回数据
type ToUnityRspMsg struct {
RenderId string `json:"render_id"` //渲染id
}