asset.go 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. package model
  2. import (
  3. "time"
  4. "go.mongodb.org/mongo-driver/bson/primitive"
  5. )
  6. const (
  7. AssetState_Created = 1
  8. AssetState_Complated = 2
  9. AssetState_Publish2Qiye = 3
  10. )
  11. const (
  12. MeshState_SetFile = 0 //create
  13. MeshState_SetOsgjs = 1 //模型转换到osgjs了,可以用于webgl显示了
  14. MeshState_SetShadow = 2 //阴影已生成
  15. )
  16. type Asset struct {
  17. Id primitive.ObjectID `bson:"_id,omitempty" json:"_id"`
  18. UserId primitive.ObjectID `bson:"userId,omitempty" json:"userId,omitempty"`
  19. Name string `bson:"name,omitempty" json:"name"`
  20. CreateTime time.Time `bson:"createTime,omitempty" json:"createTime"`
  21. UpdateTime time.Time `bson:"updateTime,omitempty" json:"updateTime"`
  22. Categories []string `bson:"categories,omitempty" json:"categories,omitempty"` //所属分类Id
  23. State int32 `bson:"state,omitempty" json:"state"` //是否公开
  24. Thumbnail *OssType `bson:"thumbnail,omitempty" json:"thumbnail"`
  25. //图片相关
  26. Image *OssType `bson:"image,omitempty" json:"image"`
  27. //模型相关
  28. Materials *[]struct {
  29. Name string `bson:"name" json:"name"`
  30. Data *MatConfig `bson:"data" json:"data"`
  31. } `bson:"materials,omitempty" json:"materials"`
  32. Geometries []string `bson:"geometries,omitempty" json:"geometries"`
  33. Osgjs *OssType `bson:"osgjs,omitempty" json:"osgjs"`
  34. File *OssType `bson:"file,omitempty" json:"file"` //hdr or fbx
  35. Shadow *OssType `bson:"shadow,omitempty" json:"shadow,omitempty"`
  36. MeshState *int32 `bson:"meshState,omitempty" json:"meshState,omitempty"`
  37. }
  38. type UvSize struct {
  39. Width int `bson:"width,omitempty" json:"width,omitempty"`
  40. Height int `bson:"height,omitempty" json:"height,omitempty"`
  41. }
  42. type MeshMatConf struct {
  43. UvMap *OssType `bson:"uvmap" json:"uvmap"`
  44. UvSize *UvSize `bson:"uvsize" json:"uvsize"`
  45. Name string `bson:"name" json:"name"`
  46. Material *MatConfig `bson:"material" json:"material"`
  47. TechMaterial *TechMatConfig `bson:"techMaterial" json:"techMaterial"`
  48. Index int `bson:"index" json:"index"`
  49. Images []*ComponentImage `bson:"images" json:"images"`
  50. Visible *bool `bson:"visible" json:"visible"`
  51. }
  52. type AssetDecorateMesh struct {
  53. Id primitive.ObjectID `bson:"_id,omitempty" json:"_id"`
  54. UserId primitive.ObjectID `bson:"userId,omitempty" json:"userId,omitempty"`
  55. Name string `bson:"name,omitempty" json:"name"`
  56. CreateTime time.Time `bson:"createTime,omitempty" json:"createTime"`
  57. UpdateTime time.Time `bson:"updateTime,omitempty" json:"updateTime"`
  58. State int `bson:"state,omitempty" json:"state"` //created completed published
  59. Thumbnail *OssType `bson:"thumbnail,omitempty" json:"thumbnail"`
  60. Categories []string `bson:"categories,omitempty" json:"categories,omitempty"` //所属分类Id
  61. Components []*MeshMatConf `bson:"components,omitempty" json:"components"`
  62. Osgjs *OssType `bson:"osgjs,omitempty" json:"osgjs"`
  63. File *OssType `bson:"file,omitempty" json:"file"` //hdr or fbx
  64. Shadow *OssType `bson:"shadow,omitempty" json:"shadow,omitempty"`
  65. }
  66. type AssetTexture struct {
  67. Id primitive.ObjectID `bson:"_id,omitempty" json:"_id"`
  68. UserId primitive.ObjectID `bson:"userId,omitempty" json:"userId,omitempty"`
  69. Name string `bson:"name,omitempty" json:"name"`
  70. CreateTime time.Time `bson:"createTime,omitempty" json:"createTime"`
  71. UpdateTime time.Time `bson:"updateTime,omitempty" json:"updateTime"`
  72. Categories []string `bson:"categories,omitempty" json:"categories,omitempty"` //所属分类Id
  73. State int32 `bson:"state,omitempty" json:"state"` //是否公开
  74. Image *OssType `bson:"image,omitempty" json:"image"`
  75. }
  76. /*盒型*/
  77. type Boxtpl struct {
  78. Id primitive.ObjectID `bson:"_id,omitempty" json:"_id"`
  79. UserId primitive.ObjectID `bson:"userId,omitempty" json:"userId,omitempty"`
  80. Name string `bson:"name,omitempty" json:"name"`
  81. CreateTime time.Time `bson:"createTime,omitempty" json:"createTime"`
  82. UpdateTime time.Time `bson:"updateTime,omitempty" json:"updateTime"`
  83. State int `bson:"state,omitempty" json:"state"` //created completed published
  84. Thumbnail *OssType `bson:"thumbnail,omitempty" json:"thumbnail"`
  85. Categories []string `bson:"categories,omitempty" json:"categories,omitempty"` //所属分类Id
  86. Osgjs *OssType `bson:"osgjs,omitempty" json:"osgjs"`
  87. File *OssType `bson:"file,omitempty" json:"file"` //模型文件
  88. Shadow *OssType `bson:"shadow,omitempty" json:"shadow,omitempty"`
  89. Type int `bson:"type,omitempty" json:"type,omitempty"` //动态生成或模型文件 默认模型
  90. Components []*BoxtplComponent `bson:"components,omitempty" json:"components"` //模板部件
  91. }
  92. type BoxtplComponent struct {
  93. Name string `bson:"name,omitempty" json:"name"`
  94. Index int `bson:"index,omitempty" json:"index"`
  95. UV *BoxtplCompUv `bson:"uv,omitempty" json:"uv"`
  96. }
  97. type BoxtplCompUv struct {
  98. Width uint `bson:"width,omitempty" json:"width"`
  99. Height uint `bson:"height,omitempty" json:"height"`
  100. Image OssType `bson:"image,omitempty" json:"image"`
  101. }
  102. /*项目的盒型*/
  103. type ProjectBoxtpl struct {
  104. Id primitive.ObjectID `bson:"_id,omitempty" json:"_id"`
  105. ProjectId primitive.ObjectID `bson:"projectId,omitempty" json:"projectId,omitempty"`
  106. Name string `bson:"name,omitempty" json:"name"`
  107. CreateTime time.Time `bson:"createTime,omitempty" json:"createTime"`
  108. UpdateTime time.Time `bson:"updateTime,omitempty" json:"updateTime"`
  109. Thumbnail *OssType `bson:"thumbnail,omitempty" json:"thumbnail"`
  110. Osgjs *OssType `bson:"osgjs,omitempty" json:"osgjs"`
  111. File *OssType `bson:"file,omitempty" json:"file"` //模型文件
  112. Shadow *OssType `bson:"shadow,omitempty" json:"shadow,omitempty"`
  113. Type int `bson:"type,omitempty" json:"type,omitempty"` //动态生成或模型文件 默认模型
  114. Components []*BoxtplComponent `bson:"components,omitempty" json:"components"` //模板部件
  115. }
  116. type ProjectDecorateMesh struct {
  117. Id primitive.ObjectID `bson:"_id,omitempty" json:"_id"`
  118. ProjectId primitive.ObjectID `bson:"projectId,omitempty" json:"projectId,omitempty"`
  119. Name string `bson:"name,omitempty" json:"name"`
  120. CreateTime time.Time `bson:"createTime,omitempty" json:"createTime"`
  121. UpdateTime time.Time `bson:"updateTime,omitempty" json:"updateTime"`
  122. Thumbnail *OssType `bson:"thumbnail,omitempty" json:"thumbnail"`
  123. Osgjs *OssType `bson:"osgjs,omitempty" json:"osgjs"`
  124. File *OssType `bson:"file,omitempty" json:"file"` //hdr or fbx
  125. Shadow *OssType `bson:"shadow,omitempty" json:"shadow,omitempty"`
  126. Materials []*MeshMatConf `bson:"materials,omitempty" json:"materials"`
  127. }
  128. type AssetMaterial struct {
  129. Id primitive.ObjectID `bson:"_id,omitempty" json:"_id"`
  130. UserId primitive.ObjectID `bson:"userId,omitempty" json:"userId"` //用户ID
  131. Name string `bson:"name,omitempty" json:"name"`
  132. Thumbnail *OssType `bson:"thumbnail,omitempty" json:"thumbnail"`
  133. CreateTime time.Time `bson:"createTime,omitempty" json:"createTime"`
  134. UpdateTime time.Time `bson:"updateTime,omitempty" json:"updateTime"`
  135. Config *MatConfig `bson:"config,omitempty" json:"config"`
  136. State int `bson:"state,omitempty" json:"state"` //created completed published
  137. Categories []string `bson:"categories,omitempty" json:"categories,omitempty"` //所属分类Id
  138. }