Afegides implementacions (fora del codi) que ha fet chatGPT de la classe bullet

This commit is contained in:
2024-09-30 20:28:20 +02:00
parent aaf6dc29a1
commit af1c1051e6
2 changed files with 176 additions and 0 deletions

114
bullet-chatGPT.cpp Normal file
View File

@@ -0,0 +1,114 @@
#include "bullet.h"
#include "param.h" // for param
#include "sprite.h" // for Sprite
#include <memory> // for std::unique_ptr
// Constantes evaluables en tiempo de compilación
constexpr int BULLET_WIDTH = 12;
constexpr int BULLET_HEIGHT = 12;
constexpr int BULLET_VELY = -3;
constexpr int BULLET_VELX_LEFT = -2;
constexpr int BULLET_VELX_RIGHT = 2;
// Constructor
Bullet::Bullet(int x, int y, BulletType kind, bool poweredUp, int owner, SDL_Rect *playArea, Texture *texture)
: posX(x), posY(y), kind(kind), owner(owner), playArea(playArea),
width(BULLET_WIDTH), height(BULLET_HEIGHT), velY(BULLET_VELY),
sprite(std::make_unique<Sprite>(SDL_Rect{x, y, BULLET_WIDTH, BULLET_HEIGHT}, texture))
{
velX = (kind == BulletType::LEFT) ? BULLET_VELX_LEFT : (kind == BulletType::RIGHT) ? BULLET_VELX_RIGHT
: 0;
auto spriteOffset = poweredUp ? 3 : 0;
auto kindIndex = static_cast<int>(kind);
sprite->setSpriteClip((kindIndex + spriteOffset) * width, 0, sprite->getWidth(), sprite->getHeight());
collider.r = width / 2;
shiftColliders();
}
// Implementación de render (llama al render del sprite)
void Bullet::render()
{
sprite->render();
}
// Implementación del movimiento usando BulletMoveStatus
BulletMoveStatus Bullet::move()
{
posX += velX;
if (posX < param.game.playArea.rect.x - width || posX > playArea->w)
{
disable();
return BulletMoveStatus::OUT;
}
posY += velY;
if (posY < param.game.playArea.rect.y - height)
{
disable();
return BulletMoveStatus::OUT;
}
sprite->setPosX(posX);
sprite->setPosY(posY);
shiftColliders();
return BulletMoveStatus::OK;
}
bool Bullet::isEnabled() const
{
return kind != BulletType::NULL_TYPE;
}
void Bullet::disable()
{
kind = BulletType::NULL_TYPE;
}
int Bullet::getPosX() const
{
return posX;
}
int Bullet::getPosY() const
{
return posY;
}
void Bullet::setPosX(int x)
{
posX = x;
}
void Bullet::setPosY(int y)
{
posY = y;
}
int Bullet::getVelY() const
{
return velY;
}
BulletType Bullet::getKind() const
{
return kind;
}
int Bullet::getOwner() const
{
return owner;
}
circle_t &Bullet::getCollider()
{
return collider;
}
void Bullet::shiftColliders()
{
collider.x = posX + collider.r;
collider.y = posY + collider.r;
}

62
bullet-chatGPT.h Normal file
View File

@@ -0,0 +1,62 @@
#pragma once
#include <SDL2/SDL_rect.h> // for SDL_Rect
#include <SDL2/SDL_stdinc.h> // for Uint8
#include "utils.h" // for circle_t
#include <memory> // for std::unique_ptr
class Sprite;
class Texture;
// Enumeración para los diferentes tipos de balas
enum class BulletType {
UP,
LEFT,
RIGHT,
NULL_TYPE
};
// Enumeración para los resultados del movimiento de la bala
enum class BulletMoveStatus : Uint8 {
OK = 0,
OUT = 1
};
// Clase Bullet
class Bullet
{
private:
std::unique_ptr<Sprite> sprite; // Sprite con los gráficos y métodos de pintado
int posX; // Posición en el eje X
int posY; // Posición en el eje Y
Uint8 width; // Ancho del objeto
Uint8 height; // Alto del objeto
int velX; // Velocidad en el eje X
int velY; // Velocidad en el eje Y
BulletType kind; // Tipo de objeto
int owner; // Identificador del dueño del objeto
circle_t collider; // Círculo de colisión del objeto
SDL_Rect *playArea; // Rectángulo con la zona de juego
void shiftColliders(); // Alinea el círculo de colisión con el objeto
public:
Bullet(int x, int y, BulletType kind, bool poweredUp, int owner, SDL_Rect *playArea, Texture *texture);
~Bullet() = default;
void render(); // Pinta el objeto en pantalla
BulletMoveStatus move(); // Actualiza la posición y estado del objeto
bool isEnabled() const; // Comprueba si el objeto está habilitado
void disable(); // Deshabilita el objeto
int getPosX() const;
int getPosY() const;
void setPosX(int x);
void setPosY(int y);
int getVelY() const;
BulletType getKind() const;
int getOwner() const;
circle_t& getCollider();
};