task.go 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. package model
  2. import (
  3. "time"
  4. "go.mongodb.org/mongo-driver/bson/primitive"
  5. )
  6. type RenderComponent struct {
  7. Name string `bson:"name,omitempty" json:"name"`
  8. FabricId *primitive.ObjectID `bson:"fabricId,omitempty" json:"fabricId,omitempty"`
  9. CardId *primitive.ObjectID `bson:"cardId,omitempty" json:"cardId,omitempty"`
  10. MatType uint8 `bson:"matType,omitempty" json:"matType"`
  11. // Imagemat *ImageMatConf `bson:"imageMat,omitempty" json:"imageMat,omitempty"`
  12. // Uvtransform *Uvtransform `bson:"transform,omitempty" json:"transform"`
  13. Color *Vect3 `bson:"color,omitempty" json:"color"`
  14. GroupId uint64 `bson:"groupId,omitempty" json:"groupId"`
  15. Visible *bool `bson:"visible,omitempty" json:"visible"`
  16. Card *MatConfig `bson:"card,omitempty" json:"card"`
  17. }
  18. type RenderShoeComp struct {
  19. Name string
  20. Config *RenderComponent
  21. }
  22. type RenderModelComp struct {
  23. Id string `bson:"id,omitempty" json:"id"`
  24. MeshId *primitive.ObjectID `bson:"meshId,omitempty" json:"meshId,omitempty"`
  25. MeshUrl string `bson:"meshUrl,omitempty" json:"meshUrl,omitempty"`
  26. Type string `bson:"type,omitempty" json:"type"`
  27. TypeId *primitive.ObjectID `bson:"typeId,omitempty" json:"typeId,omitempty"`
  28. // Transform ModelTransform `bson:"transform,omitempty" json:"transform,omitempty"`
  29. Components []*RenderShoeComp `bson:"components,omitempty" json:"components,omitempty"`
  30. }
  31. const (
  32. TaskRunState_Created = 0
  33. TaskRunState_Quened = 1
  34. TaskRunState_WorkRuning = 2
  35. TaskRunState_ReWorkRuning = 3
  36. TaskRunState_Succ = 4
  37. TaskRunState_Fail = 5
  38. )
  39. type TaskRunResult struct {
  40. Images []*OssType
  41. }
  42. type ConvMeshRunResult struct {
  43. Osgjs *OssType
  44. Thumbnail *OssType
  45. File *OssType
  46. }
  47. type RenderTask struct {
  48. Id primitive.ObjectID `bson:"_id,omitempty" json:"_id"`
  49. UserId primitive.ObjectID `bson:"userId,omitempty" json:"userId"`
  50. DesignId primitive.ObjectID `bson:"designId" json:"designId"`
  51. RunState int32 `bson:"runState" json:"runState"`
  52. RunPercent int32 `bson:"runPercent" json:"runPercent"`
  53. RunResult *TaskRunResult `bson:"runResult" json:"runResult"`
  54. Width int32 `bson:"width" json:"width"`
  55. Height int32 `bson:"height" json:"height"`
  56. CreateTime time.Time `bson:"createTime" json:"createTime"`
  57. Scene *DesignScene `bson:"scene" json:"scene"`
  58. MeshId string `bson:"meshId" json:"meshId"`
  59. MeshUrl string `bson:"meshUrl" json:"meshUrl"`
  60. MeshShadow string `bson:"meshShadow" json:"meshShadow"`
  61. Cameras []*RenderCamera `bson:"cameras" json:"cameras"`
  62. ShoeComps []*RenderShoeComp `bson:"shoeComps" json:"shoeComps"`
  63. ModelComps []*RenderModelComp `bson:"modelComps" json:"modelComps"`
  64. MaxSamples int32 `bson:"maxSamples" json:"maxSamples"`
  65. Exposure float32 `bson:"exposure" json:"exposure"`
  66. }
  67. type RenderSetting struct {
  68. MaxSamples int32 `bson:"maxSamples" json:"maxSamples"` //32
  69. Exposure float32 `bson:"exposure" json:"exposure"` //1.2
  70. }
  71. type RenderCamera struct {
  72. Thumbnail *OssType `bson:"thumbnail" json:"thumbnail"` //
  73. Position Vec3Obj `bson:"position" json:"position"` //
  74. Fov float32 `bson:"fov" json:"fov"` //45
  75. Direction Vec3Obj `bson:"direction" json:"direction"`
  76. Viewport CameraViewPort `bson:"viewport" json:"viewport"`
  77. }
  78. type CameraViewPort struct {
  79. Width int32 `bson:"width" json:"width"`
  80. Height int32 `bson:"height" json:"height"`
  81. }
  82. type SunLight struct {
  83. Type string `bson:"type" json:"type"`
  84. Intensity float32 `bson:"intensity" json:"intensity"`
  85. Direction Vec3Obj `bson:"direction" json:"direction"`
  86. AngularDiameter float32 `bson:"angularDiameter" json:"angularDiameter"`
  87. Color Vect3 `bson:"color" json:"color"`
  88. }
  89. type RenderEnv struct {
  90. Color Vect3 `bson:"color" json:"color"`
  91. Rotation float32 `bson:"rotation" json:"rotation"`
  92. Intensity float32 `bson:"intensity" json:"intensity"`
  93. FilePath string `bson:"filePath" json:"filePath"`
  94. Visiable bool `bson:"visiable" json:"visiable"`
  95. }
  96. type Vec3Obj struct {
  97. X float64 `bson:"x" json:"x"`
  98. Y float64 `bson:"y" json:"y"`
  99. Z float64 `bson:"z" json:"z"`
  100. }
  101. type Vec4Obj struct {
  102. X float64 `bson:"x" json:"x"`
  103. Y float64 `bson:"y" json:"y"`
  104. Z float64 `bson:"z" json:"z"`
  105. W float64 `bson:"w" json:"w"`
  106. }
  107. type RenderMatParam struct {
  108. Name string `bson:"name" json:"name"`
  109. Type string `bson:"type" json:"type"`
  110. Value interface{} `bson:"value" json:"value"`
  111. }
  112. type RenderMat struct {
  113. Name string `bson:"name" json:"name"`
  114. Type string `bson:"type" json:"type"`
  115. Parameters []*RenderMatParam `bson:"parameters" json:"parameters"`
  116. }
  117. type RenderGroup struct {
  118. Name string `bson:"name" json:"name"`
  119. Position Vec3Obj `bson:"position" json:"position"`
  120. Rotation Vec4Obj `bson:"rotation" json:"rotation"`
  121. Scale Vec3Obj `bson:"scale" json:"scale"`
  122. Materials []*RenderMat `bson:"materials" json:"materials"`
  123. FilePath string `bson:"filePath" json:"filePath"`
  124. }
  125. type RenderConf struct {
  126. Setting *RenderSetting `bson:"setting" json:"setting"`
  127. Camera *RenderCamera `bson:"camera" json:"camera"`
  128. Lights []interface{} `bson:"lights" json:"lights"`
  129. Enviroment *RenderEnv `bson:"enviroment" json:"enviroment"`
  130. Groups []*RenderGroup `bson:"groups" json:"groups"`
  131. }
  132. type TaskConvMesh2Osgjs struct {
  133. Id primitive.ObjectID `bson:"_id,omitempty" json:"_id"`
  134. UserId string `bson:"userId,omitempty" json:"userId"`
  135. MeshId string `bson:"meshId,omitempty" json:"meshId"` //模型meshId
  136. Collecton string `bson:"collection,omitempty" json:"collection"` //数据库表的名字
  137. FbxFile *OssType `bson:"fbxFile,omitempty" json:"fbxFile"` //模型文件字段名字
  138. OsgjsFieldName string `bson:"osgjsFieldName,omitempty" json:"osgjsFieldName"` //模型文件字段名字
  139. CreateTime time.Time `bson:"createTime,omitempty" json:"createTime"` //创建时间
  140. WorkerId string `bson:"workerId,omitempty" json:"workerId"` //分配的工作ID,可根据此Id取消worker的执行
  141. }
  142. type TaskConvHdr struct {
  143. Id primitive.ObjectID `bson:"_id,omitempty" json:"_id"`
  144. UserId string `bson:"userId,omitempty" json:"userId"`
  145. Env3dId string `bson:"env3dId,omitempty" json:"env3dId"` //模型meshId
  146. Collecton string `bson:"collection,omitempty" json:"collection"` //数据库表的名字
  147. HdrFile *OssType `bson:"hdrFile,omitempty" json:"hdrFile"` //模型文件字段名字
  148. CreateTime time.Time `bson:"createTime,omitempty" json:"createTime"` //创建时间
  149. WorkerId string `bson:"workerId,omitempty" json:"workerId"` //分配的工作ID,可根据此Id取消worker的执行
  150. }
  151. type TaskCreateShadow struct {
  152. Id primitive.ObjectID `bson:"_id,omitempty" json:"_id"`
  153. CreateTime time.Time `bson:"createTime,omitempty" json:"createTime"` //创建时间
  154. UserId string `bson:"userId,omitempty" json:"userId"`
  155. MeshId string `bson:"meshId,omitempty" json:"meshId"` //模型meshId
  156. Collecton string `bson:"collection,omitempty" json:"collection"` //数据库表的名字
  157. FbxFile *OssType `bson:"fbxFile,omitempty" json:"fbxFile"` //模型文件字段名字
  158. ShadowFieldName string `bson:"shadowFieldName,omitempty" json:"shodowFieldName"` //模型文件字段名字
  159. }
  160. type WorkerRequest struct {
  161. Name string `json:"name"`
  162. UserId string `json:"userId"`
  163. TaskId string `json:"taskId"`
  164. MainId string `json:"mainId"`
  165. TaskCollection string `json:"taskCollection"`
  166. WorkerType string `json:"workerType"`
  167. CreateTime time.Time `json:"createTime"`
  168. }
  169. type WorkerResponse struct {
  170. ErrorNo int `json:"errorNo"`
  171. ErrorDesc string `json:"errorDesc"`
  172. Result struct {
  173. WorkingId string `json:"workingId"`
  174. } `json:"result"`
  175. }