Home Reference Source Repository

js/mmd/PMDModel.js

  1. 'use strict'
  2.  
  3. import Model from '../base/Model'
  4.  
  5. /**
  6. * PMDModel class
  7. * @access public
  8. */
  9. export default class PMDModel extends Model {
  10. /**
  11. * constructor
  12. * @access public
  13. * @constructor
  14. */
  15. constructor() {
  16. super()
  17.  
  18. // Header
  19. this.version = 0.0
  20. this.modelName = ''
  21. this.comment = ''
  22.  
  23. // Face
  24. this.faceArray = []
  25. this.faceHash = new Map()
  26.  
  27. // FaceDisplay
  28. this.faceDisplayArray = []
  29.  
  30. // BoneDisplayName
  31. this.boneDisplayNameArray = []
  32.  
  33. // BoneDisplay
  34. this.boneDisplayIndex = []
  35. this.boneDisplayFrameIndex = []
  36.  
  37. // English
  38. this.englishCompatibility = false
  39. this.englishName = ''
  40. this.englishComment = ''
  41. this.boneDisplayEnglishNameArray = []
  42.  
  43. // Motion
  44. this.motionNumCache = new Map()
  45. this.faceMotionNumCache = new Map()
  46. }
  47.  
  48. destroy() {
  49. super.destroy()
  50. }
  51.  
  52. copy(model) {
  53. super.copy(model)
  54.  
  55. this.version = model.version
  56. this.modelName = model.modelName
  57. this.comment = model.comment
  58. this.faceArray = model.faceArray
  59. this.faceHash = model.faceHash
  60. this.faceDisplayArray = model.faceDisplayArray
  61. this.boneDisplayNameArray = model.boneDisplayNameArray
  62. this.boneDisplayIndex = model.boneDisplayIndex
  63. this.boneDisplayFrameIndex = model.boneDisplayFrameIndex
  64. this.englishCompatibility = model.englishCompatibility
  65. this.englishName = model.englishName
  66. this.englishComment = model.englishComment
  67. this.boneDisplayEnglishNameArray = model.boneDisplayEnglishNameArray
  68. }
  69. }