islandHeightmapGenerator.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /*
  2. Copyright (C) 2015 Marien Raat
  3. This program is free software: you can redistribute it and/or modify
  4. it under the terms of the GNU General Public License as published by
  5. the Free Software Foundation, either version 3 of the License, or
  6. (at your option) any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU General Public License for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with this program. If not, see <http://www.gnu.org/licenses/>.
  13. */
  14. #pragma once
  15. #include <random>
  16. #include <diamondsquare.h>
  17. class IslandHeightmapGenerator {
  18. public:
  19. IslandHeightmapGenerator(std::mt19937 *mt);
  20. void initializeMap(
  21. int width,
  22. int height,
  23. double *modifiers,
  24. bool overwriteOldMap = true);
  25. void pass();
  26. void finishMap();
  27. void createNewMap(
  28. int width,
  29. int height,
  30. double *modifiers,
  31. bool overwriteOldMap = true);
  32. bool isMapDone();
  33. double *getRawDiamondSquareMap();
  34. int getCurrentPassSize();
  35. static double modifiedHeightValue(double h);
  36. double *islandMap;
  37. private:
  38. DiamondSquareGenerator *dsGenerator;
  39. bool firstMap;
  40. int previousWidth, previousHeight, width, height,
  41. diamondSquareSize;
  42. void updateIslandMap();
  43. static double modifierFunction(int pass,
  44. double h,
  45. double *modifiers);
  46. };