components/LogicRegionSpawner.js

  1. /**
  2. ## JSON Definition
  3. {
  4. "type": "LogicRegionSpawner",
  5. // List all additional parameters and their possible values here.
  6. "spawn": "teddy-bear",
  7. // Required. String identifying the type of entity to spawn.
  8. "interval": 30000,
  9. // Optional. Time in milliseconds between spawning an entity. Defaults to 1000.
  10. "regions": {
  11. // If spawning entity covers a large area, the spawned entities can be randomly spawned over a regional grid, so that the whole area gets a somewhat uniform coverage of spawned entities
  12. "width": 4000,
  13. "height": 5000,
  14. // Optional. Dimensions of a spawning region in world units. Defaults to entity's dimensions. The entity's dimensions are sliced into chunks of this size for spawn distribution.
  15. }
  16. }
  17. */
  18. import Entity from '../Entity.js';
  19. import {arrayCache} from '../utils/array.js';
  20. import createComponentClass from '../factory.js';
  21. export default (function () {
  22. return createComponentClass(/** @lends platypus.components.LogicRegionSpawner.prototype */{
  23. id: 'LogicRegionSpawner',
  24. /**
  25. * This component spawns new entities within a given area at set intervals.
  26. *
  27. * @memberof platypus.components
  28. * @uses platypus.Component
  29. * @constructs
  30. * @param {*} definition
  31. * @listens platypus.Entity#handle-logic
  32. */
  33. initialize: function (definition) {
  34. var x = 0,
  35. y = 0,
  36. columns = 1,
  37. rows = 1,
  38. width = 0,
  39. height = 0,
  40. rw = 0,
  41. rh = 0;
  42. this.spawnPosition = {
  43. x: 0,
  44. y: 0
  45. };
  46. this.spawnProperties = {
  47. type: definition.spawn,
  48. properties: this.spawnPosition
  49. };
  50. this.regions = null;
  51. this.usedRegions = null;
  52. this.regionWidth = 0;
  53. this.regionHeight = 0;
  54. if (definition.regions) {
  55. this.regions = arrayCache.setUp();
  56. this.usedRegions = arrayCache.setUp();
  57. this.regionWidth = width = definition.regions.width || this.owner.width;
  58. this.regionHeight = height = definition.regions.height || this.owner.height;
  59. columns = Math.round(this.owner.width / width);
  60. rows = Math.round(this.owner.height / height);
  61. for (x = 0; x < columns; x++) {
  62. for (y = 0; y < rows; y++) {
  63. rw = Math.min(width, this.owner.width - x * width);
  64. rh = Math.min(height, this.owner.height - y * height);
  65. this.regions.push({
  66. x: x * width,
  67. y: y * height,
  68. width: rw,
  69. height: rh
  70. });
  71. }
  72. }
  73. }
  74. this.interval = this.owner.interval || definition.interval || 1000;
  75. this.time = 0;
  76. },
  77. events: {// These are messages that this component listens for
  78. "handle-logic": function (resp) {
  79. var regions = this.regions,
  80. region = null;
  81. this.time += resp.delta;
  82. if (this.time > this.interval) {
  83. this.time -= this.interval;
  84. if (regions) {
  85. if (!regions.length) {
  86. this.regions = this.usedRegions;
  87. this.usedRegions = regions;
  88. regions = this.regions;
  89. }
  90. region = regions[Math.floor(regions.length * Math.random())];
  91. this.spawnPosition.x = this.owner.x - (this.owner.regX || 0) + (region.x + (Math.random() * region.width));
  92. this.spawnPosition.y = this.owner.y - (this.owner.regY || 0) + (region.y + (Math.random() * region.height));
  93. } else {
  94. this.spawnPosition.x = this.owner.x - (this.owner.regX || 0) + (Math.random() * this.owner.width);
  95. this.spawnPosition.y = this.owner.y - (this.owner.regY || 0) + (Math.random() * this.owner.height);
  96. }
  97. this.owner.parent.addEntity(this.spawnProperties);
  98. }
  99. }
  100. },
  101. methods: {
  102. destroy: function () {
  103. if (this.regions) {
  104. arrayCache.recycle(this.regions);
  105. arrayCache.recycle(this.usedRegions);
  106. }
  107. }
  108. },
  109. getAssetList: function (def, props, defaultProps) {
  110. var spawn = def.spawn || props.spawn || defaultProps.spawn;
  111. if (spawn) {
  112. return Entity.getAssetList({
  113. type: spawn
  114. });
  115. }
  116. return arrayCache.setUp();
  117. }
  118. });
  119. }());