From f958b4b5ece6abd16eb4b9ff6e9e7021b4c13c0f Mon Sep 17 00:00:00 2001 From: = <=> Date: Sun, 28 Jan 2024 21:08:50 +0100 Subject: [PATCH] Start of textscreen --- CMakeLists.txt | 1 + src/TextScreen.h | 114 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 115 insertions(+) create mode 100644 src/TextScreen.h diff --git a/CMakeLists.txt b/CMakeLists.txt index ea77af5..8868cd8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -33,6 +33,7 @@ add_executable(Pong src/main.cpp src/VisibleObjects/PlayerPaddle.h src/VisibleObjects/Side.h src/VisibleObjects/Score.h + src/TextScreen.h src/defaultfont.h) # Now link the libraries to the target diff --git a/src/TextScreen.h b/src/TextScreen.h new file mode 100644 index 0000000..f226d95 --- /dev/null +++ b/src/TextScreen.h @@ -0,0 +1,114 @@ +// +// Created by love on 2024-01-24. +// + +#pragma once + +#include +#include +#include "defaultfont.h" +#include "iostream" + +class TextScreen { +private: + std::string *text; + TTF_Font *font; + bool hasUpdated; + + // Regular + SDL_Rect position; + SDL_Color color = {243, 156, 18, 255}; + SDL_Surface *surface = nullptr; + + // Shadow + const SDL_Color shadowColor = {243, 156, 18, 100}; + SDL_Surface *shadowSurface = nullptr; + const int shadowOffset = 3; + +public: + /** + * + * @param text This class takes care of freeing text + * @param screenSize This won't be freed by this class + */ + TextScreen(std::string *text, SDL_Point *screenSize) : text(text), hasUpdated(false) { + if (defaultFontPath == nullptr) { + std::cerr << "Font path is not set for this platform (null)" << std::endl; + exit(-1); + } + this->font = TTF_OpenFont(defaultFontPath, 42); + if (font == nullptr) { + std::cerr << "Failed to load font: " << TTF_GetError() << std::endl; + exit(-1); + } + this->position = SDL_Rect{50, 50, screenSize->x - 50, screenSize->y - 50}; + } + + ~TextScreen() { + if (font) + TTF_CloseFont(font); + SDL_FreeSurface(surface); + delete text; + } + + + void draw(SDL_Renderer *renderer) { + // Draw shadow + if (shadowSurface != nullptr) { + SDL_Texture *shadowTexture = SDL_CreateTextureFromSurface(renderer, shadowSurface); + if (shadowTexture != nullptr) { + SDL_Rect shadowPosition = {position.x + shadowOffset, position.y + shadowOffset, position.w, + position.h}; + SDL_RenderCopy(renderer, shadowTexture, nullptr, &shadowPosition); + SDL_DestroyTexture(shadowTexture); + } + } + + // Draw text + if (surface != nullptr) { + SDL_Texture *texture = SDL_CreateTextureFromSurface(renderer, surface); + if (texture != nullptr) { + SDL_RenderCopy(renderer, texture, nullptr, &position); + SDL_DestroyTexture(texture); + } + } + } + + void setText(std::string *replaceText) { + delete this->text; + this->text = replaceText; + } + + void replaceCharAtIndex(char c, int index) { + if (text->length() <= index) { + std::cerr << "text string is at length " << text->length() << ", but index is " << index << std::endl; + return; + } + hasUpdated = false; + text[index] = c; + } + + void update() { + if (!hasUpdated) + return; + + SDL_FreeSurface(surface); + SDL_FreeSurface(shadowSurface); + + shadowSurface = TTF_RenderText_Solid(font, text->c_str(), shadowColor); + if (shadowSurface == nullptr) + std::cerr << "Failed to create shadow text surface (TextScreen): " << TTF_GetError() << std::endl; + + surface = TTF_RenderText_Solid(font, text->c_str(), color); + if (surface == nullptr) + std::cerr << "Failed to create text surface (TextScreen): " << TTF_GetError() << std::endl; + + hasUpdated = true; + + } + + bool gameContextFinished() { + + } + +};