Source: mapgen/createWorld.js

  1. /**
  2. * Creates the world by initializing a blank world, setting up spreading centers,
  3. * creating spreading lines, and generating horizontal spreading lines.
  4. */
  5. function createWorld() {
  6. createBlankWorld();
  7. createSpreadingCenters();
  8. world.tectonics.spreadingCenters.forEach(center => {
  9. createSpreadingLine(center);
  10. });
  11. createHSpreadLine();
  12. }
  13. /**
  14. * Initializes a blank world with default settings, geographical points,
  15. * feature arrays, and populates the world map with cells.
  16. */
  17. function createBlankWorld() {
  18. initializeWorldSettings();
  19. setGeographicalPoints();
  20. initializeFeatureArrays();
  21. populateWorldMap();
  22. }
  23. /**
  24. * Initializes the world settings such as drawing type, pixel size, tectonics,
  25. * height, and width.
  26. */
  27. function initializeWorldSettings() {
  28. world.drawingType = "colorful";
  29. world.tectonics = { spreadingCenters: [] };
  30. world.height = world.height || 256;
  31. world.width = world.width || 512;
  32. settings.pixelSize = settings.height / world.height
  33. }
  34. /**
  35. * Sets geographical points such as the equator, steppe top and bottom,
  36. * frost points, and desert points based on the world's height.
  37. */
  38. function setGeographicalPoints() {
  39. world.equator = Math.floor(world.height / 2);
  40. world.steppeTop = world.equator + Math.floor(world.height / 8);
  41. world.steppeBottom = world.equator - Math.floor(world.height / 8);
  42. world.frostPointBottom = Math.floor(world.height / 10);
  43. world.frostPointTop = world.height - world.frostPointBottom;
  44. world.desertPointTop = Math.floor(world.height / 2) + Math.floor(world.height / 10);
  45. world.desertPointBottom = Math.floor(world.height / 2) - Math.floor(world.height / 10);
  46. }
  47. /**
  48. * Initializes arrays to hold various features of the world such as maps, rivers,
  49. * mountains, forests, and other geographical and cultural elements.
  50. */
  51. function initializeFeatureArrays() {
  52. world.map = [];
  53. world.rivers = [];
  54. world.mountains = [];
  55. world.forests = [];
  56. world.riverIds = [];
  57. world.religions = [];
  58. world.asteroids = [];
  59. world.trees = [];
  60. world.continents = [];
  61. world.continentsByProvince = [];
  62. world.landCells = [];
  63. world.populatedCells = [];
  64. world.provinces = [];
  65. }
  66. /**
  67. * Populates the world map with cells. Each cell is initialized with default properties.
  68. */
  69. function populateWorldMap() {
  70. for (let y = 0; y < world.height; y++) {
  71. const row = [];
  72. for (let x = 0; x < world.width; x++) {
  73. row.push(createCell(x, y));
  74. }
  75. world.map.push(row);
  76. }
  77. }
  78. /**
  79. * Creates a cell at the specified coordinates and initializes its properties.
  80. *
  81. * @param {number} x - The x-coordinate of the cell.
  82. * @param {number} y - The y-coordinate of the cell.
  83. * @returns {object} The created cell with initialized properties.
  84. */
  85. function createCell(x, y) {
  86. return {
  87. x: x,
  88. y: y,
  89. ckX: x * settings.pixelSize, // top left corner of extended square
  90. ckY: settings.height - (y * settings.pixelSize), // top left corner of extended square
  91. tree: false,
  92. elevation: getRandomInt(-254, -200),
  93. magma: 0,
  94. asteroidNames: [],
  95. river: false,
  96. lake: false,
  97. beach: false,
  98. population: 0,
  99. raindrops: 0,
  100. floodFilled: false,
  101. dropToWater: false
  102. };
  103. }