fusenapi/utils/websocket_data/render_data.go

81 lines
3.8 KiB
Go
Raw Normal View History

2023-08-07 03:25:06 +00:00
package websocket_data
2023-08-07 04:31:31 +00:00
// websocket接受要云渲染处理的数据
2023-08-07 03:25:06 +00:00
type RenderImageReqMsg struct {
2023-11-01 10:23:13 +00:00
RequestId string `json:"request_id"`
IgnoreContextCancel bool `json:"ignore_context_cancel"` //是否无视切换上下文取消正在执行的渲染任务
RenderData RenderData `json:"render_data"` //渲染主要参数
2023-08-07 10:37:33 +00:00
}
type RenderData struct {
2023-09-19 07:38:03 +00:00
TemplateTag string `json:"template_tag"` //模板标签(必须)
TemplateTagColor TemplateTagColor `json:"template_tag_color"` //模板标签组合颜色(必须)
2023-09-19 08:01:23 +00:00
TemplateTagGroups interface{} `json:"template_tag_groups"` //模板标签分组信息数组(必须)
2023-10-08 07:53:53 +00:00
Resolution string `json:"resolution"` //合图分辨率
2023-09-19 07:38:03 +00:00
Logo string `json:"logo"` //log资源地址(必须)
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"` //二维码(可选)
UserId int64 `json:"user_id"` //用户id(websocket连接建立再赋值)
GuestId int64 `json:"guest_id"` //游客id(websocket连接建立再赋值)
2023-09-19 06:39:33 +00:00
}
type TemplateTagColor struct {
2023-09-20 06:11:07 +00:00
Colors [][]string `json:"colors"` //颜色组合
2023-09-19 08:10:17 +00:00
SelectedColorIndex int `json:"selected_color_index"` //主色的下标索引
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-11-02 02:10:22 +00:00
RequestId string `json:"request_id"`
Image string `json:"image"` //渲染结果图片
RenderProcessTime *RenderProcessTime `json:"render_process_time"` //流程耗时
2023-08-25 04:01:01 +00:00
}
type RenderProcessTime struct {
2023-08-25 03:06:32 +00:00
UnityRenderTakesTime string `json:"unity_render_takes_time"` //unity渲染用时
UploadUnityRenderImageTakesTime string `json:"upload_unity_render_image_takes_time"` //上传unity渲染结果图时间
2023-11-13 02:42:22 +00:00
UnityRealTakesTime string `json:"unity_real_takes_time"`//unity真实处理时间
2023-08-07 03:25:06 +00:00
}
2023-08-29 07:04:11 +00:00
// 合图返回数据
type CombineImageRspMsg struct {
2023-11-10 02:23:26 +00:00
RequestId string `json:"request_id"`
CombineImage string `json:"combine_image"` //刀版图
SizeId int64 `json:"size_id"` //尺寸id
ModelId int64 `json:"model_id"`
TemplateId int64 `json:"template_id"`
CombineProcessTime *CombineProcessTime `json:"combine_process_time"`
2023-08-29 08:24:59 +00:00
}
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 {
2023-10-11 06:19:22 +00:00
RequestId string `json:"request_id"`
2023-08-31 02:15:43 +00:00
}
2023-08-30 10:51:24 +00:00
// 发送到unity阶段信息返回数据
type ToUnityRspMsg struct {
2023-10-11 06:19:22 +00:00
RequestId string `json:"request_id"`
2023-08-30 10:51:24 +00:00
}
2023-09-13 05:59:01 +00:00
// 发送到unity结构中id的结构
type ToUnityIdStruct struct {
TaskId string `json:"task_id"`
Wid string `json:"wid"`
2023-10-11 06:19:22 +00:00
RequestId string `json:"request_id"`
2023-09-13 05:59:01 +00:00
RenderBeginTime int64 `json:"render_begin_time"`
2023-10-08 09:04:37 +00:00
TemplateTag string `json:"template_tag"`
2023-11-02 08:00:49 +00:00
UserId int64 `json:"user_id"`
GuestId int64 `json:"guest_id"`
2023-09-13 05:59:01 +00:00
}
2023-11-10 02:23:26 +00:00
// 要求前端重发渲染消息事件结构
type RequestBrowserResendRenderEvent struct {
RequestId string `json:"request_id"`
Description string `json:"description"`
}