blobwarsAttrition/src/game/options.c

285 lines
8.7 KiB
C
Raw Permalink Normal View History

2018-02-19 20:15:07 +01:00
/*
2019-06-02 17:13:34 +02:00
Copyright (C) 2018-2019 Parallel Realities
2018-02-19 20:15:07 +01:00
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include "options.h"
static void (*returnFromOptions)(void);
static void logic(void);
static void draw(void);
static void soundVolume(void);
static void musicVolume(void);
2018-02-27 22:54:52 +01:00
static void fullscreen(void);
static void windowSize(void);
2018-02-19 20:15:07 +01:00
static void bloodGore(void);
static void trophyAlert(void);
static void inventory(void);
2018-02-20 18:50:26 +01:00
static void controls(void);
2018-02-19 20:15:07 +01:00
static void back(void);
2018-02-20 18:50:26 +01:00
static void setGeneralOptions(void);
2018-02-27 22:54:52 +01:00
static void setWindowSizeOption(void);
2018-02-20 18:50:26 +01:00
static void setControlOptions(void);
static int section;
2018-02-19 20:15:07 +01:00
2018-02-20 12:29:50 +01:00
static Widget *soundVolumeWidget;
static Widget *musicVolumeWidget;
2018-02-27 22:54:52 +01:00
static Widget *windowSizeWidget;
static Widget *fullscreenWidget;
2018-02-20 12:29:50 +01:00
static Widget *bloodGoreWidget;
static Widget *trophyAlertWidget;
static Widget *inventoryWidget;
2018-02-20 18:50:26 +01:00
static Widget *controlsWidget;
2018-02-20 12:29:50 +01:00
static Texture *atlasTexture;
static Atlas *background;
void initOptions(void (*callback)(void))
2018-02-19 20:15:07 +01:00
{
2018-02-20 18:50:26 +01:00
startSectionTransition();
2019-06-02 17:13:34 +02:00
2018-02-20 18:50:26 +01:00
section = SECTION_MAIN;
2019-06-02 17:13:34 +02:00
2018-02-19 20:15:07 +01:00
returnFromOptions = callback;
2018-02-20 12:29:50 +01:00
atlasTexture = getTexture("gfx/atlas/atlas.png");
2019-06-02 17:13:34 +02:00
2018-02-20 12:29:50 +01:00
background = getImageFromAtlas("gfx/main/options.png");
2019-06-02 17:13:34 +02:00
2018-02-20 18:50:26 +01:00
setGeneralOptions();
setControlOptions();
showWidgetGroup("options");
2018-03-15 09:01:04 +01:00
app.delegate.logic = &logic;
app.delegate.draw = &draw;
2019-06-02 17:13:34 +02:00
2018-02-20 18:50:26 +01:00
endSectionTransition();
}
2018-02-19 20:15:07 +01:00
2018-02-20 18:50:26 +01:00
static void setGeneralOptions(void)
{
2018-02-20 12:29:50 +01:00
soundVolumeWidget = getWidget("soundVolume", "options");
2018-02-19 20:15:07 +01:00
soundVolumeWidget->action = soundVolume;
2018-02-20 20:24:17 +01:00
soundVolumeWidget->value[0] = app.config.soundVolume;
2019-06-02 17:13:34 +02:00
2018-02-20 12:29:50 +01:00
musicVolumeWidget = getWidget("musicVolume", "options");
2018-02-19 20:15:07 +01:00
musicVolumeWidget->action = musicVolume;
2018-02-20 20:24:17 +01:00
musicVolumeWidget->value[0] = app.config.musicVolume;
2018-02-27 22:54:52 +01:00
fullscreenWidget = getWidget("fullscreen", "options");
fullscreenWidget->action = fullscreen;
fullscreenWidget->value[0] = app.config.fullscreen;
windowSizeWidget = getWidget("windowSize", "options");
windowSizeWidget->action = windowSize;
setWindowSizeOption();
2019-06-02 17:13:34 +02:00
2018-02-20 12:29:50 +01:00
bloodGoreWidget = getWidget("bloodGore", "options");
2018-02-19 20:15:07 +01:00
bloodGoreWidget->action = bloodGore;
2018-02-20 20:24:17 +01:00
bloodGoreWidget->value[0] = app.config.blood;
2019-06-02 17:13:34 +02:00
2018-02-20 12:29:50 +01:00
trophyAlertWidget = getWidget("trophyAlert", "options");
2018-02-19 20:15:07 +01:00
trophyAlertWidget->action = trophyAlert;
2018-02-20 20:24:17 +01:00
trophyAlertWidget->value[0] = app.config.trophyAlert;
2019-06-02 17:13:34 +02:00
2018-02-20 12:29:50 +01:00
inventoryWidget = getWidget("inventory", "options");
2018-02-19 20:15:07 +01:00
inventoryWidget->action = inventory;
2018-02-20 20:24:17 +01:00
inventoryWidget->value[0] = app.config.inventory;
2019-06-02 17:13:34 +02:00
2018-02-20 18:50:26 +01:00
controlsWidget = getWidget("controls", "options");
controlsWidget->action = controls;
2019-06-02 17:13:34 +02:00
2018-02-20 18:50:26 +01:00
getWidget("back", "options")->action = back;
getWidget("back", "controls")->action = back;
}
2018-02-19 20:15:07 +01:00
2018-02-27 22:54:52 +01:00
static void setWindowSizeOption(void)
{
int i;
char winSize[16];
sprintf(winSize, "%d x %d", app.config.winWidth, app.config.winHeight);
for (i = 0 ; i < windowSizeWidget->numOptions ; i++)
{
if (strcmp(windowSizeWidget->options[i], winSize) == 0)
{
windowSizeWidget->value[0] = i;
return;
}
}
}
2018-02-20 18:50:26 +01:00
static void setControlOptions(void)
{
2018-02-20 20:24:17 +01:00
getWidget("left", "controls")->value[0] = app.config.keyControls[CONTROL_LEFT];
getWidget("right", "controls")->value[0] = app.config.keyControls[CONTROL_RIGHT];
getWidget("up", "controls")->value[0] = app.config.keyControls[CONTROL_UP];
getWidget("down", "controls")->value[0] = app.config.keyControls[CONTROL_DOWN];
getWidget("jump", "controls")->value[0] = app.config.keyControls[CONTROL_JUMP];
getWidget("fire", "controls")->value[0] = app.config.keyControls[CONTROL_FIRE];
getWidget("jetpack", "controls")->value[0] = app.config.keyControls[CONTROL_JETPACK];
getWidget("pause", "controls")->value[0] = app.config.keyControls[CONTROL_PAUSE];
getWidget("map", "controls")->value[0] = app.config.keyControls[CONTROL_MAP];
2019-06-02 17:13:34 +02:00
2018-02-20 20:24:17 +01:00
getWidget("left", "controls")->value[1] = app.config.joypadControls[CONTROL_LEFT];
getWidget("right", "controls")->value[1] = app.config.joypadControls[CONTROL_RIGHT];
getWidget("up", "controls")->value[1] = app.config.joypadControls[CONTROL_UP];
getWidget("down", "controls")->value[1] = app.config.joypadControls[CONTROL_DOWN];
getWidget("jump", "controls")->value[1] = app.config.joypadControls[CONTROL_JUMP];
getWidget("fire", "controls")->value[1] = app.config.joypadControls[CONTROL_FIRE];
getWidget("jetpack", "controls")->value[1] = app.config.joypadControls[CONTROL_JETPACK];
getWidget("pause", "controls")->value[1] = app.config.joypadControls[CONTROL_PAUSE];
getWidget("map", "controls")->value[1] = app.config.joypadControls[CONTROL_MAP];
2018-02-19 20:15:07 +01:00
}
static void logic(void)
{
2018-02-20 12:29:50 +01:00
doWidgets();
2018-02-19 20:15:07 +01:00
}
static void draw(void)
{
2018-02-20 12:29:50 +01:00
float h;
2019-06-02 17:13:34 +02:00
2018-12-22 22:53:19 +01:00
h = (app.config.winWidth / 800.0) * background->rect.h;
2019-06-02 17:13:34 +02:00
if (section == SECTION_MAIN)
{
2018-12-22 22:53:19 +01:00
drawText(app.config.winWidth / 2, 50, 40, TA_CENTER, colors.white, app.strings[ST_OPTIONS]);
}
else
{
2018-12-22 22:53:19 +01:00
drawText(app.config.winWidth / 2, 50, 40, TA_CENTER, colors.white, app.strings[ST_CONTROLS]);
}
2019-06-02 17:13:34 +02:00
2018-12-22 22:53:19 +01:00
blitRectScaled(atlasTexture->texture, 0, app.config.winHeight - h, app.config.winWidth, h, &background->rect, 0);
2019-06-02 17:13:34 +02:00
2018-02-20 12:29:50 +01:00
drawWidgets();
2018-02-19 20:15:07 +01:00
}
static void soundVolume(void)
{
2018-02-20 20:24:17 +01:00
app.config.soundVolume = soundVolumeWidget->value[0];
2019-06-02 17:13:34 +02:00
2018-02-20 12:29:50 +01:00
Mix_Volume(-1, app.config.soundVolume);
2018-02-19 20:15:07 +01:00
}
static void musicVolume(void)
{
2018-02-20 20:24:17 +01:00
app.config.musicVolume = musicVolumeWidget->value[0];
2019-06-02 17:13:34 +02:00
2018-02-20 12:29:50 +01:00
Mix_VolumeMusic(app.config.musicVolume);
2018-02-19 20:15:07 +01:00
}
2018-02-27 22:54:52 +01:00
static void fullscreen(void)
{
app.config.fullscreen = fullscreenWidget->value[0];
2019-06-02 17:13:34 +02:00
2018-12-22 22:53:19 +01:00
SDL_SetWindowFullscreen(app.window, app.config.fullscreen? SDL_WINDOW_FULLSCREEN : 0);
2018-02-27 22:54:52 +01:00
}
static void windowSize(void)
{
int i;
i = windowSizeWidget->value[0];
sscanf(windowSizeWidget->options[i], "%d x %d", &app.config.winWidth, &app.config.winHeight);
2019-06-02 17:13:34 +02:00
2018-12-22 22:53:19 +01:00
SDL_SetWindowSize(app.window, app.config.winWidth, app.config.winHeight);
2019-06-02 17:13:34 +02:00
2018-12-22 22:53:19 +01:00
app.uiOffset.x = (app.config.winWidth / 2) - (UI_WIDTH / 2);
app.uiOffset.y = (app.config.winHeight / 2) - (UI_HEIGHT / 2);
2019-06-02 17:13:34 +02:00
2018-12-22 22:53:19 +01:00
SDL_DestroyTexture(app.backBuffer);
2019-06-02 17:13:34 +02:00
2018-12-22 22:53:19 +01:00
app.backBuffer = SDL_CreateTexture(app.renderer, SDL_PIXELFORMAT_RGBA8888, SDL_TEXTUREACCESS_TARGET, app.config.winWidth, app.config.winHeight);
2019-06-02 17:13:34 +02:00
2018-12-22 22:53:19 +01:00
initBackground();
2018-02-27 22:54:52 +01:00
}
2018-02-19 20:15:07 +01:00
static void bloodGore(void)
{
2018-02-20 20:24:17 +01:00
app.config.blood = bloodGoreWidget->value[0];
2018-02-19 20:15:07 +01:00
}
static void trophyAlert(void)
{
2018-02-20 20:24:17 +01:00
app.config.trophyAlert = trophyAlertWidget->value[0];
2018-02-19 20:15:07 +01:00
}
static void inventory(void)
{
2018-02-20 20:24:17 +01:00
app.config.inventory = inventoryWidget->value[0];
2018-02-19 20:15:07 +01:00
}
2018-02-20 18:50:26 +01:00
static void controls(void)
2018-02-19 20:15:07 +01:00
{
2018-02-20 18:50:26 +01:00
section = SECTION_CONTROLS;
2019-06-02 17:13:34 +02:00
2018-02-20 18:50:26 +01:00
playSound(SND_MENU_SELECT, 0);
2019-06-02 17:13:34 +02:00
2018-02-20 18:50:26 +01:00
showWidgetGroup("controls");
2018-02-19 20:15:07 +01:00
}
2018-02-20 20:24:17 +01:00
static void updateControlConfig(void)
{
app.config.keyControls[CONTROL_LEFT] = getWidget("left", "controls")->value[0];
app.config.keyControls[CONTROL_RIGHT] = getWidget("right", "controls")->value[0];
app.config.keyControls[CONTROL_UP] = getWidget("up", "controls")->value[0];
app.config.keyControls[CONTROL_DOWN] = getWidget("down", "controls")->value[0];
app.config.keyControls[CONTROL_JUMP] = getWidget("jump", "controls")->value[0];
app.config.keyControls[CONTROL_FIRE] = getWidget("fire", "controls")->value[0];
2018-04-21 10:40:15 +02:00
app.config.keyControls[CONTROL_JETPACK] = getWidget("jetpack", "controls")->value[0];
2018-02-20 20:24:17 +01:00
app.config.keyControls[CONTROL_MAP] = getWidget("map", "controls")->value[0];
app.config.keyControls[CONTROL_PAUSE] = getWidget("pause", "controls")->value[0];
2019-06-02 17:13:34 +02:00
2018-02-20 20:24:17 +01:00
app.config.joypadControls[CONTROL_LEFT] = getWidget("left", "controls")->value[1];
app.config.joypadControls[CONTROL_RIGHT] = getWidget("right", "controls")->value[1];
app.config.joypadControls[CONTROL_UP] = getWidget("up", "controls")->value[1];
app.config.joypadControls[CONTROL_DOWN] = getWidget("down", "controls")->value[1];
app.config.joypadControls[CONTROL_JUMP] = getWidget("jump", "controls")->value[1];
app.config.joypadControls[CONTROL_FIRE] = getWidget("fire", "controls")->value[1];
2018-04-21 10:40:15 +02:00
app.config.joypadControls[CONTROL_JETPACK] = getWidget("jetpack", "controls")->value[1];
2018-02-20 20:24:17 +01:00
app.config.joypadControls[CONTROL_MAP] = getWidget("map", "controls")->value[1];
app.config.joypadControls[CONTROL_PAUSE] = getWidget("pause", "controls")->value[1];
}
2018-02-19 20:15:07 +01:00
static void back(void)
{
2018-02-20 18:50:26 +01:00
switch (section)
{
case SECTION_MAIN:
playSound(SND_MENU_BACK, 0);
startSectionTransition();
saveConfig();
returnFromOptions();
endSectionTransition();
break;
2019-06-02 17:13:34 +02:00
2018-02-20 18:50:26 +01:00
case SECTION_CONTROLS:
2018-02-20 20:24:17 +01:00
updateControlConfig();
2018-02-20 18:50:26 +01:00
playSound(SND_MENU_BACK, 0);
section = SECTION_MAIN;
showWidgetGroup("options");
break;
}
2018-02-19 20:15:07 +01:00
}