#include "render.h" #include "SDL.h" #include "game.h" #include "snake.h" #include "food.h" #include "config.h" #include "menu.h" #include "common.h" #include "files.h" #include #define NUM_COLUMNS 4 void renderGame(){ SDL_SetRenderDrawColor(game.renderer, 0, 0, 0, 255); SDL_RenderClear(game.renderer); SDL_Rect rect; //Rechteck anlegen rect.w = config.blockSizePx; //Breite festlegen rect.h = config.blockSizePx; //Höhe festlegen //_______Head kreieren__________________________________________________ SDL_SetRenderDrawColor(game.renderer, 0, 255, 0, 255); //RGB-Farbe Kopf rect.x = (game.snake.headX * config.blockSizePx); //Abstand links rect.y = (game.snake.headY * config.blockSizePx); //Abstand rechts SDL_RenderFillRect(game.renderer, &rect); //Rechteck rendern //______Tail kreieren_________________________________________________________________ for(int i = 1; iw) / 2 - 30; // Zentrieren textRect.y = 50; // Y-Koordinate für die Spaltenbeschreibung textRect.w = ttlStorage.textSurface->w; textRect.h = ttlStorage.textSurface->h; SDL_RenderCopy(game.renderer, ttlStorage.textTexture, NULL, &textRect); SDL_FreeSurface(ttlStorage.textSurface); SDL_DestroyTexture(ttlStorage.textTexture); } // rendering score data int maxCycles = (recordsInFile < MAX_PRINTED_SCORES) ? recordsInFile : MAX_PRINTED_SCORES; for (int i = 0; i < maxCycles; ++i) { char playerName[50]; // temporary buffer for text char map[50]; // temporary buffer for text strcpy(playerName, topScores[i].playerName); strcpy(map, topScores[i].map); // player name SDL_Surface* playerNameSurface = TTF_RenderText_Solid(ttlStorage.ptrFont_30, playerName, ttlStorage.textColour[5]); SDL_Texture* playerNameTexture = SDL_CreateTextureFromSurface(game.renderer, playerNameSurface); // map name SDL_Surface* mapSurface = TTF_RenderText_Solid(ttlStorage.ptrFont_30, map, ttlStorage.textColour[5]); SDL_Texture* mapTexture = SDL_CreateTextureFromSurface(game.renderer, mapSurface); // score SDL_Surface *scoreSurface = NULL; char numberScore[30]; // buffer for number 'score' snprintf(numberScore, sizeof(numberScore), "%d", topScores[i].score); scoreSurface = TTF_RenderText_Solid(ttlStorage.ptrFont_30, numberScore, ttlStorage.textColour[5]); SDL_Texture *numberTexture1 = SDL_CreateTextureFromSurface(game.renderer, scoreSurface); // difficulty SDL_Surface *difficultySurface = NULL; char numberDifficulty[30]; // buffer for number 'difficulty' snprintf(numberDifficulty, sizeof(numberDifficulty), "%d", topScores[i].difficulty); difficultySurface = TTF_RenderText_Solid(ttlStorage.ptrFont_30, numberDifficulty, ttlStorage.textColour[5]); SDL_Texture *numberTexture2 = SDL_CreateTextureFromSurface(game.renderer, difficultySurface); int numberS = 70; //x distance int textPlayer = 220; //x distance int numberD = 470; //x distance int textMap = 620; //x distance int y = 90 + i*30; //y distance SDL_Rect scoreRect = {numberS, y, scoreSurface->w, scoreSurface->h}; SDL_Rect playerNameRect = {textPlayer, y, playerNameSurface->w, playerNameSurface->h }; SDL_Rect difficultyRect = {numberD, y, difficultySurface->w, difficultySurface->h}; SDL_Rect mapNameRect = {textMap, y, mapSurface->w, mapSurface->h }; SDL_RenderCopy(game.renderer, numberTexture1, NULL, &scoreRect); SDL_RenderCopy(game.renderer, playerNameTexture, NULL, &playerNameRect); SDL_RenderCopy(game.renderer, numberTexture2, NULL, &difficultyRect); SDL_RenderCopy(game.renderer, mapTexture, NULL, &mapNameRect); SDL_FreeSurface(playerNameSurface); SDL_FreeSurface(mapSurface); SDL_FreeSurface(scoreSurface); SDL_FreeSurface(difficultySurface); SDL_DestroyTexture(playerNameTexture); SDL_DestroyTexture(mapTexture); SDL_DestroyTexture(numberTexture1); SDL_DestroyTexture(numberTexture2); } SDL_RenderPresent(game.renderer); } int CreateSDLWindow(){ // Erstelle ein SDL-Fenster game.window = SDL_CreateWindow("Snake", 350, 50, config.windowSize, config.windowSize, SDL_WINDOW_OPENGL); if (game.window == NULL) { LOGI("SDL: Fenster konnte nicht erstellt werden! SDL_Error: %s\n", SDL_GetError()); return 1; } game.renderer = SDL_CreateRenderer(game.window, -1, SDL_RENDERER_ACCELERATED); if (game.renderer == NULL) { LOGI("SDL: Renderer konnte nicht erstellt werden! SDL_Error: %s\n", SDL_GetError()); return 1; } return 0; } void DestroySDLWindow(){ // Zerstöre das Fenster und beende SDL TTF_CloseFont(ttlStorage.ptrFont_20); TTF_CloseFont(ttlStorage.ptrFont_30); TTF_CloseFont(ttlStorage.ptrFont_200); SDL_DestroyRenderer(game.renderer); SDL_DestroyWindow(game.window); TTF_Quit(); SDL_Quit(); }