main.cpp 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. // Author : Jovian HERSEMEULE
  2. #include <iostream>
  3. #include <SDL/SDL.h>
  4. #define BLOC_SIZE 16
  5. #define WIDTH 100
  6. #define HEIGHT 50
  7. #define BLOC_TOTAL 4
  8. enum blocType {WATER, MOUNTAIN, GRASS, DESERT};
  9. void putBloc(blocType bloc, float world[HEIGHT][WIDTH][BLOC_TOTAL], int y, int x, float level = 1.0f) {
  10. int dist;
  11. for (int j(0); j < HEIGHT; j++)
  12. for (int i(0); i < WIDTH; i++) {
  13. dist = (j - y)*(j - y) + 1 + (i - x)*(i - x);
  14. world[j][i][bloc] += level / dist;
  15. }
  16. }
  17. void drawWorld(float world[HEIGHT][WIDTH][BLOC_TOTAL], SDL_Surface* tileSet[], SDL_Surface* out) {
  18. SDL_Rect pos({0, 0, 0, 0});
  19. int indexOfMax;
  20. for (int y(0); y < HEIGHT; y++)
  21. for (int x(0); x < WIDTH; x++) {
  22. indexOfMax = 0;
  23. pos.x = x * BLOC_SIZE;
  24. pos.y = y * BLOC_SIZE;
  25. // Select the tile with highest level
  26. for (int k(1); k < BLOC_TOTAL; k++)
  27. if (world[y][x][k] > world[y][x][indexOfMax]) {
  28. indexOfMax = k;
  29. }
  30. SDL_BlitSurface(tileSet[indexOfMax], NULL, out, &pos);
  31. }
  32. }
  33. void printWorld(float world[HEIGHT][WIDTH][BLOC_TOTAL]) {
  34. for (int k(0); k < BLOC_TOTAL; k++) {
  35. std::cout << k << ":" << std::endl;
  36. for (int j(0); j < HEIGHT; j++) {
  37. for (int i(0); i < WIDTH; i++)
  38. std::cout << world[j][i][k];
  39. std::cout << std::endl;
  40. }
  41. }
  42. }
  43. int main()
  44. {
  45. /// [1] Start
  46. // [1.1] Start SDL
  47. if ( SDL_Init( SDL_INIT_VIDEO ) < 0)
  48. {
  49. std::cout << "Can't initialize SDL: " << SDL_GetError() << std::endl;
  50. return 1;
  51. }
  52. // [1.2] Anticipate quit
  53. atexit(SDL_Quit);
  54. // [1.3] Set title
  55. SDL_WM_SetCaption("Application SDL", 0);
  56. /// [2] Create components
  57. // [2.1] Create window
  58. SDL_Surface* screen = SDL_SetVideoMode(WIDTH * BLOC_SIZE, HEIGHT * BLOC_SIZE, 32, SDL_HWSURFACE|SDL_DOUBLEBUF);
  59. if ( !screen )
  60. {
  61. std::cout << "Unable to set " << WIDTH << "x" << HEIGHT << " video: " << SDL_GetError() << std::endl;
  62. return 1;
  63. }
  64. // [2.2] Load textures
  65. SDL_Surface* grass = SDL_LoadBMP("textures/grass.bmp");
  66. SDL_Surface* water = SDL_LoadBMP("textures/water.bmp");
  67. SDL_Surface* desert = SDL_LoadBMP("textures/desert.bmp");
  68. SDL_Surface* mountain = SDL_LoadBMP("textures/mountain.bmp");
  69. SDL_Surface* pawn = SDL_LoadBMP("textures/pawn.bmp");
  70. // [2.3] Create variables
  71. SDL_Rect pawnPos({0, 0, 0, 0});
  72. SDL_Rect cursorPos({0, 0, 0, 0}); // Bloc coordinates
  73. // [2.4] Create world
  74. float world[HEIGHT][WIDTH][BLOC_TOTAL];
  75. // Clear world
  76. for (int j(0); j < HEIGHT; j++)
  77. for (int i(0); i < WIDTH; i++)
  78. for (int t(0); t < BLOC_TOTAL; t++)
  79. world[j][i][t] = 0.0f;
  80. // Basic water
  81. const float waterLevel = 1.0f;
  82. for (int j(0); j < HEIGHT; j++)
  83. for (int i(0); i < WIDTH; i++)
  84. world[j][i][WATER] = waterLevel / (HEIGHT - j);
  85. // Top mountain line
  86. const float mountainLevel = 1.0f;
  87. for (int j(0); j < HEIGHT; j++)
  88. for (int i(0); i < WIDTH; i++)
  89. world[j][i][MOUNTAIN] = mountainLevel / (1 + j);
  90. // [2.5] Surface containers
  91. SDL_Surface* tileSet[BLOC_TOTAL] = {water, mountain, grass, desert};
  92. SDL_Surface* map = SDL_CreateRGBSurface(SDL_HWSURFACE, WIDTH * BLOC_SIZE, HEIGHT * BLOC_SIZE, 32, 0x0, 0x0, 0x0, 0x0);
  93. // [2.6] First map render
  94. drawWorld(world, tileSet, map);
  95. /// [3] Main loop
  96. bool done(false);
  97. while (!done)
  98. {
  99. // [3.1] Events
  100. SDL_Event event;
  101. while (SDL_PollEvent(&event))
  102. {
  103. switch (event.type)
  104. {
  105. case SDL_QUIT:
  106. done = true;
  107. break;
  108. case SDL_KEYDOWN:
  109. if (event.key.keysym.sym == SDLK_ESCAPE)
  110. done = true;
  111. break;
  112. case SDL_MOUSEMOTION:
  113. cursorPos.x = event.motion.x / BLOC_SIZE;
  114. cursorPos.y = event.motion.y / BLOC_SIZE;
  115. pawnPos.x = cursorPos.x * BLOC_SIZE;
  116. pawnPos.y = cursorPos.y * BLOC_SIZE;
  117. break;
  118. case SDL_MOUSEBUTTONDOWN:
  119. if (event.button.button == 1) {
  120. putBloc(DESERT, world, cursorPos.y, cursorPos.x);
  121. drawWorld(world, tileSet, map);
  122. }
  123. if (event.button.button == 3) {
  124. putBloc(GRASS, world, cursorPos.y, cursorPos.x);
  125. drawWorld(world, tileSet, map);
  126. }
  127. break;
  128. } // end switch event type
  129. } // end of message processing
  130. // [3.2] Compute
  131. // Nothing for now
  132. // [3.3] Draw phase
  133. SDL_FillRect(screen, 0, SDL_MapRGB(screen->format, 0, 255, 255));
  134. SDL_BlitSurface(map, NULL, screen, NULL);
  135. SDL_BlitSurface(pawn, NULL, screen, &pawnPos);
  136. SDL_Flip(screen);
  137. SDL_Delay(16);
  138. } // end of main loop
  139. ///[4] Free components
  140. SDL_FreeSurface(grass);
  141. SDL_FreeSurface(water);
  142. SDL_FreeSurface(desert);
  143. SDL_FreeSurface(mountain);
  144. SDL_FreeSurface(pawn);
  145. SDL_FreeSurface(screen);
  146. printWorld(world);
  147. std::cout << "No error caught." << std::endl;
  148. return 0;
  149. }