forked from jaildesigner-jailgames/jaildoctors_dilemma
299 lines
9.2 KiB
C++
299 lines
9.2 KiB
C++
#include "common/jail_audio.h"
|
|
#include "common/jscore.h"
|
|
#include "const.h"
|
|
#include "enter_id.h"
|
|
#include <iostream>
|
|
|
|
// Constructor
|
|
EnterID::EnterID(SDL_Renderer *renderer, Screen *screen, Asset *asset, options_t *options)
|
|
{
|
|
// Copia la dirección de los objetos
|
|
this->renderer = renderer;
|
|
this->screen = screen;
|
|
this->asset = asset;
|
|
this->options = options;
|
|
|
|
// Reserva memoria para los punteros
|
|
eventHandler = new SDL_Event();
|
|
texture = new Texture(renderer, asset->get("smb2.png"));
|
|
text = new Text(asset->get("smb2.txt"), texture, renderer);
|
|
|
|
// Crea la textura para el texto que se escribe en pantalla
|
|
textTexture = SDL_CreateTexture(renderer, SDL_PIXELFORMAT_RGBA8888, SDL_TEXTUREACCESS_TARGET, GAMECANVAS_WIDTH, GAMECANVAS_HEIGHT);
|
|
if (textTexture == nullptr)
|
|
{
|
|
if (options->console)
|
|
{
|
|
std::cout << "Error: textTexture could not be created!\nSDL Error: " << SDL_GetError() << std::endl;
|
|
}
|
|
}
|
|
SDL_SetTextureBlendMode(textTexture, SDL_BLENDMODE_BLEND);
|
|
|
|
// Inicializa variables
|
|
counter = 0;
|
|
section.name = SECTION_PROG_ENTER_ID;
|
|
ticks = 0;
|
|
ticksSpeed = 15;
|
|
pos = 0;
|
|
name[pos] = 0;
|
|
maxLenght = 15;
|
|
|
|
// Escribe el texto en la textura
|
|
fillTexture();
|
|
}
|
|
|
|
// Destructor
|
|
EnterID::~EnterID()
|
|
{
|
|
delete eventHandler;
|
|
delete text;
|
|
delete texture;
|
|
}
|
|
|
|
// Bucle para el logo del juego
|
|
section_t EnterID::run()
|
|
{
|
|
// Detiene la música
|
|
JA_StopMusic();
|
|
|
|
while (section.name == SECTION_PROG_ENTER_ID)
|
|
{
|
|
update();
|
|
render();
|
|
}
|
|
|
|
return section;
|
|
}
|
|
|
|
// Comprueba el manejador de eventos
|
|
void EnterID::checkEventHandler()
|
|
{
|
|
// Comprueba los eventos que hay en la cola
|
|
while (SDL_PollEvent(eventHandler) != 0)
|
|
{
|
|
// Evento de salida de la aplicación
|
|
if (eventHandler->type == SDL_QUIT)
|
|
{
|
|
section.name = SECTION_PROG_QUIT;
|
|
break;
|
|
}
|
|
|
|
// El ENTER solo se comprueba cuando se suelta, para no saltarse la siguiente sección
|
|
if ((eventHandler->type == SDL_KEYUP && eventHandler->key.repeat == 0) || (eventHandler->type == SDL_JOYBUTTONUP))
|
|
{
|
|
if (eventHandler->key.keysym.scancode == SDL_SCANCODE_RETURN)
|
|
{
|
|
options->online.jailerID = (std::string)name;
|
|
endSection();
|
|
break;
|
|
}
|
|
}
|
|
|
|
// Comprueba las teclas que se han pulsado
|
|
if ((eventHandler->type == SDL_KEYDOWN && eventHandler->key.repeat == 0) || (eventHandler->type == SDL_JOYBUTTONDOWN))
|
|
{
|
|
|
|
if (eventHandler->key.keysym.scancode >= SDL_SCANCODE_A && eventHandler->key.keysym.scancode <= SDL_SCANCODE_Z)
|
|
{ // Si pulsa una letra
|
|
if (pos < maxLenght)
|
|
{
|
|
name[pos++] = eventHandler->key.keysym.scancode + 61;
|
|
name[pos] = 0;
|
|
}
|
|
}
|
|
else if (eventHandler->key.keysym.scancode >= SDL_SCANCODE_1 && eventHandler->key.keysym.scancode <= SDL_SCANCODE_9)
|
|
{ // Si pulsa un número
|
|
if (pos < maxLenght)
|
|
{ // En ascii el '0' va antes del '1', pero en scancode el '0' va despues de '9'
|
|
name[pos++] = eventHandler->key.keysym.scancode + 19;
|
|
name[pos] = 0;
|
|
}
|
|
}
|
|
else if (eventHandler->key.keysym.scancode == SDL_SCANCODE_0)
|
|
{
|
|
if (pos < maxLenght)
|
|
{
|
|
name[pos++] = 48;
|
|
name[pos] = 0;
|
|
}
|
|
}
|
|
else if (eventHandler->key.keysym.scancode == SDL_SCANCODE_BACKSPACE)
|
|
{
|
|
if (pos > 0)
|
|
{
|
|
name[--pos] = 0;
|
|
}
|
|
}
|
|
|
|
else if (eventHandler->key.keysym.scancode == SDL_SCANCODE_ESCAPE)
|
|
{
|
|
section.name = SECTION_PROG_QUIT;
|
|
break;
|
|
}
|
|
|
|
else if (eventHandler->key.keysym.scancode == SDL_SCANCODE_F1)
|
|
{
|
|
screen->setWindowSize(1);
|
|
break;
|
|
}
|
|
|
|
else if (eventHandler->key.keysym.scancode == SDL_SCANCODE_F2)
|
|
{
|
|
screen->setWindowSize(2);
|
|
break;
|
|
}
|
|
|
|
else if (eventHandler->key.keysym.scancode == SDL_SCANCODE_F3)
|
|
{
|
|
screen->setWindowSize(3);
|
|
break;
|
|
}
|
|
|
|
else if (eventHandler->key.keysym.scancode == SDL_SCANCODE_F4)
|
|
{
|
|
screen->setWindowSize(4);
|
|
break;
|
|
}
|
|
|
|
else if (eventHandler->key.keysym.scancode == SDL_SCANCODE_F5)
|
|
{
|
|
switchPalette();
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Actualiza las variables
|
|
void EnterID::update()
|
|
{
|
|
// Comprueba que la diferencia de ticks sea mayor a la velocidad del juego
|
|
if (SDL_GetTicks() - ticks > ticksSpeed)
|
|
{
|
|
// Actualiza el contador de ticks
|
|
ticks = SDL_GetTicks();
|
|
|
|
// Comprueba el manejador de eventos
|
|
checkEventHandler();
|
|
|
|
// Actualiza el contador
|
|
counter++;
|
|
|
|
// Actualiza el cursor
|
|
cursor = (counter % 20 >= 10) ? " " : "_";
|
|
}
|
|
}
|
|
|
|
// Dibuja en pantalla
|
|
void EnterID::render()
|
|
{
|
|
// Prepara para empezar a dibujar en la textura de juego
|
|
screen->start();
|
|
|
|
// Limpia la pantalla
|
|
screen->clean();
|
|
|
|
// Dibuja la textura con el texto en pantalla
|
|
SDL_RenderCopy(renderer, textTexture, nullptr, nullptr);
|
|
|
|
// Escribe el jailerID
|
|
const std::string jailerID = (std::string)name + cursor;
|
|
const color_t color = stringToColor(options->palette, "white");
|
|
text->writeDX(TXT_CENTER | TXT_COLOR, GAMECANVAS_CENTER_X, 97, jailerID, 1, color);
|
|
|
|
// Vuelca el contenido del renderizador en pantalla
|
|
screen->blit();
|
|
}
|
|
|
|
// Inicializa los textos
|
|
void EnterID::iniTexts()
|
|
{
|
|
texts.clear();
|
|
texts.push_back({"", stringToColor(options->palette, "white")});
|
|
texts.push_back({"", stringToColor(options->palette, "white")});
|
|
texts.push_back({"ONLINE CONFIGURATION:", stringToColor(options->palette, "red")});
|
|
texts.push_back({"", stringToColor(options->palette, "white")});
|
|
texts.push_back({"YOU HAVE NOT SPECIFIED ANY ID", stringToColor(options->palette, "white")});
|
|
texts.push_back({"FOR THE ONLINE SERVICE", stringToColor(options->palette, "white")});
|
|
texts.push_back({"", stringToColor(options->palette, "white")});
|
|
texts.push_back({"PLEASE ENTER AN ID OR", stringToColor(options->palette, "white")});
|
|
texts.push_back({"LEAVE BLANK FOR OFFLINE MODE", stringToColor(options->palette, "white")});
|
|
texts.push_back({"", stringToColor(options->palette, "white")});
|
|
texts.push_back({"", stringToColor(options->palette, "white")});
|
|
texts.push_back({"JAILER_ID:", stringToColor(options->palette, "red")});
|
|
texts.push_back({"", stringToColor(options->palette, "white")});
|
|
texts.push_back({"", stringToColor(options->palette, "white")});
|
|
texts.push_back({"", stringToColor(options->palette, "white")});
|
|
texts.push_back({"", stringToColor(options->palette, "white")});
|
|
texts.push_back({"", stringToColor(options->palette, "white")});
|
|
texts.push_back({"", stringToColor(options->palette, "white")});
|
|
texts.push_back({"", stringToColor(options->palette, "white")});
|
|
texts.push_back({"", stringToColor(options->palette, "white")});
|
|
texts.push_back({"", stringToColor(options->palette, "white")});
|
|
texts.push_back({"", stringToColor(options->palette, "white")});
|
|
texts.push_back({"", stringToColor(options->palette, "white")});
|
|
texts.push_back({"", stringToColor(options->palette, "white")});
|
|
}
|
|
|
|
// Escribe el texto en la textura
|
|
void EnterID::fillTexture()
|
|
{
|
|
// Inicializa los textos
|
|
iniTexts();
|
|
|
|
// Rellena la textura de texto
|
|
SDL_SetRenderTarget(renderer, textTexture);
|
|
color_t c = stringToColor(options->palette, "black");
|
|
SDL_SetRenderDrawColor(renderer, c.r, c.g, c.b, 0xFF);
|
|
SDL_RenderClear(renderer);
|
|
|
|
// Escribe el texto en la textura
|
|
const int size = text->getCharacterSize();
|
|
int i = 0;
|
|
|
|
for (auto t : texts)
|
|
{
|
|
text->writeDX(TXT_CENTER | TXT_COLOR, PLAY_AREA_CENTER_X, i * size, t.label, 1, t.color);
|
|
i++;
|
|
}
|
|
|
|
SDL_SetRenderTarget(renderer, nullptr);
|
|
}
|
|
|
|
// Cambia la paleta
|
|
void EnterID::switchPalette()
|
|
{
|
|
options->palette = options->palette == p_zxspectrum ? p_zxarne : p_zxspectrum;
|
|
fillTexture();
|
|
}
|
|
|
|
// Inicializa los servicios online
|
|
void EnterID::initOnline()
|
|
{
|
|
if (options->online.jailerID == "")
|
|
{ // Jailer ID no definido
|
|
|
|
options->online.enabled = false;
|
|
}
|
|
else
|
|
{ // Jailer ID iniciado
|
|
|
|
options->online.enabled = true;
|
|
jscore::init(options->online.server, options->online.port);
|
|
|
|
const std::string caption = options->online.jailerID + " IS LOGGED IN";
|
|
screen->showText(caption);
|
|
if (options->console)
|
|
{
|
|
std::cout << caption << std::endl;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Termina la sección
|
|
void EnterID::endSection()
|
|
{
|
|
initOnline();
|
|
section.name = (section.subsection == SUBSECTION_LOGO_TO_INTRO) ? SECTION_PROG_INTRO : SECTION_PROG_TITLE;
|
|
section.subsection = 0;
|
|
} |