1. 1 : /**
  2. 2 : * Base class for graph nodes.
  3. 3 : *
  4. 4 : * @author {@link https://github.com/Mugen87|Mugen87}
  5. 5 : */
  6. 6 : class Node {
  7. 7 :
  8. 8 : /**
  9. 9 : * Constructs a new node.
  10. 10 : *
  11. 11 : * @param {Number} index - The unique index of this node.
  12. 12 : */
  13. 13 : constructor( index = - 1 ) {
  14. 14 :
  15. 15 : /**
  16. 16 : * The unique index of this node. The default value *-1* means invalid index.
  17. 17 : * @type {Number}
  18. 18 : * @default -1
  19. 19 : */
  20. 20 : this.index = index;
  21. 21 :
  22. 22 : }
  23. 23 :
  24. 24 : /**
  25. 25 : * Transforms this instance into a JSON object.
  26. 26 : *
  27. 27 : * @return {Object} The JSON object.
  28. 28 : */
  29. 29 : toJSON() {
  30. 30 :
  31. 31 : return {
  32. 32 : type: this.constructor.name,
  33. 33 : index: this.index
  34. 34 : };
  35. 35 :
  36. 36 : }
  37. 37 :
  38. 38 : /**
  39. 39 : * Restores this instance from the given JSON object.
  40. 40 : *
  41. 41 : * @param {Object} json - The JSON object.
  42. 42 : * @return {Node} A reference to this node.
  43. 43 : */
  44. 44 : fromJSON( json ) {
  45. 45 :
  46. 46 : this.index = json.index;
  47. 47 : return this;
  48. 48 :
  49. 49 : }
  50. 50 :
  51. 51 : }
  52. 52 :
  53. 53 : export { Node };