Parcourir la source

Add plain tile

DricomDragon il y a 4 ans
Parent
commit
bbc9512011
2 fichiers modifiés avec 5 ajouts et 3 suppressions
  1. 5 3
      main.cpp
  2. BIN
      textures/plain.bmp

+ 5 - 3
main.cpp

@@ -8,10 +8,10 @@
 #define BLOC_SIZE 16
 #define WIDTH 100
 #define HEIGHT 50
-#define BLOC_TOTAL 4
+#define BLOC_TOTAL 5
 #define MAX_LEVEL 1000 // * 10-3
 
-enum BlocType {WATER, MOUNTAIN, GRASS, DESERT};
+enum BlocType {WATER, MOUNTAIN, GRASS, DESERT, PLAIN};
 
 class Seed {
 	public:
@@ -112,6 +112,7 @@ int main()
 	SDL_Surface* water = SDL_LoadBMP("textures/water.bmp");
 	SDL_Surface* desert = SDL_LoadBMP("textures/desert.bmp");
 	SDL_Surface* mountain = SDL_LoadBMP("textures/mountain.bmp");
+	SDL_Surface* plain = SDL_LoadBMP("textures/plain.bmp");
 
 	// [2.3] Create variables
 	SDL_Rect pawnPos({0, 0, 0, 0});
@@ -123,7 +124,7 @@ int main()
 	clearWorld(world);
 
 	// [2.5] Surface containers
-	SDL_Surface* tileSet[BLOC_TOTAL] = {water, mountain, grass, desert};
+	SDL_Surface* tileSet[BLOC_TOTAL] = {water, mountain, grass, desert, plain};
 	SDL_Surface* map = SDL_CreateRGBSurface(SDL_HWSURFACE, WIDTH * BLOC_SIZE, HEIGHT * BLOC_SIZE, 32, 0x0, 0x0, 0x0, 0x0);
 	SDL_Surface* tileCurrent = tileSet[0];
 
@@ -211,6 +212,7 @@ int main()
 	SDL_FreeSurface(water);
 	SDL_FreeSurface(desert);
 	SDL_FreeSurface(mountain);
+	SDL_FreeSurface(plain);
 
 	SDL_FreeSurface(screen);
 

BIN
textures/plain.bmp