packSource.ts 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. import { RxValue } from "../controllers/rxValue";
  2. import { PackEnv } from "./pack/PackEnv";
  3. import { PackGeom } from "./pack/PackGeom";
  4. import { PackMat } from "./pack/PackMat";
  5. import { PackProduct } from "./pack/PackProduct";
  6. import { PackScene } from "./pack/PackScene";
  7. export class PackSource {
  8. version = "2.0.0";
  9. viewMode = "scene";
  10. state = RxValue.create({
  11. mats: [] as PackMat[],
  12. geoms: [] as PackGeom[],
  13. env3ds: [] as PackEnv[],
  14. products: [] as PackProduct[],
  15. scenes: [] as PackScene[],
  16. })
  17. userData:any = null;
  18. get scenes() {
  19. return this.state.scenes;
  20. }
  21. get mats() {
  22. return this.state.mats;
  23. }
  24. get geoms() {
  25. return this.state.geoms;
  26. }
  27. get env3ds() {
  28. return this.state.env3ds;
  29. }
  30. get products() {
  31. return this.state.products;
  32. }
  33. toJson( ) {
  34. const toJson = (item:any)=>item.toJson();
  35. return {
  36. version: this.version,
  37. viewMode: this.viewMode,
  38. userData: this.userData,
  39. mats: this.mats.map(toJson),
  40. env3ds: this.env3ds.map(toJson),
  41. geoms: this.geoms.map(toJson),
  42. scenes: this.scenes.map(toJson),
  43. products: this.products.map(toJson),
  44. }
  45. }
  46. fromJson(data:any) {
  47. this.version = data.version;
  48. this.viewMode = data.viewMode;
  49. this.userData = data.userData;
  50. this.state.env3ds = (data.env3ds||[]).map((item:any)=>{
  51. const s = new PackEnv();
  52. s.fromJson(item);
  53. return s;
  54. })
  55. this.state.mats = (data.mats||[]).map((item:any)=>{
  56. const s = new PackMat();
  57. s.fromJson(item);
  58. return s;
  59. })
  60. this.state.geoms = (data.geoms||[]).map((item:any)=>{
  61. const s = new PackGeom();
  62. s.fromJson(item);
  63. return s;
  64. })
  65. this.state.products = (data.products||[]).map((item:any)=>{
  66. const s = new PackProduct();
  67. s.fromJson(item);
  68. return s;
  69. })
  70. this.state.scenes = (data.scenes||[]).map((item:any)=>{
  71. const s = new PackScene();
  72. s.fromJson(item);
  73. return s;
  74. })
  75. }
  76. }