mkxp-freebird/src/sharedstate.h

130 lines
2.9 KiB
C
Raw Normal View History

2013-09-01 14:27:21 +00:00
/*
** sharedstate.h
2013-09-01 14:27:21 +00:00
**
** This file is part of mkxp.
**
** Copyright (C) 2013 Jonas Kulla <Nyocurio@gmail.com>
**
** mkxp 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.
**
** mkxp 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 mkxp. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef SHAREDSTATE_H
#define SHAREDSTATE_H
2013-09-01 14:27:21 +00:00
#include <sigc++/signal.h>
2013-09-01 14:27:21 +00:00
#define shState SharedState::instance
#define glState shState->_glState()
#define rgssVer SharedState::rgssVersion
2013-09-01 14:27:21 +00:00
struct SharedStatePrivate;
2013-09-01 14:27:21 +00:00
struct RGSSThreadData;
struct GlobalIBO;
struct SDL_Window;
2013-09-06 10:26:41 +00:00
struct TEXFBO;
struct Quad;
struct ShaderSet;
2013-09-01 14:27:21 +00:00
class Scene;
class FileSystem;
class EventThread;
class Graphics;
class Input;
class Audio;
class GLState;
class TexPool;
class Font;
Font: Overhaul font asset discovery Previously, any font names requested by RGSS would be translated directly to filenames by lowercasing and replacing spaces with underscores (and finally doing some extension substitution). To make this whole thing work smoother as well as get closer to how font discovery is done in VX, we now scan the "Fonts/" folder at startup and index all present font assets by their family name; now, if an "Open Sans" font is present in "Fonts/", it will be used regardless of filename. Font assets with "Regular" style are preferred, but in their absence, mkxp will make use of any other style it can find for the respective family. This is not the exact same behavior as VX, but it should cover 95% of use cases. Previously, one could substitute fonts via filenames, ie. to substitute "Arial" with "Open Sans", one would just rename "OpenSans.ttf" to "arial.ttf" and put it in "Fonts/". With the above change, this is no longer possible. As an alternative, one can now explicitly specify font family substitutions via mkxp.conf; eg. for the above case, one would add fontSub=Arial>Open Sans to the configuration file. Multiple such rules can be specified. In the process, I also added the ability to provide 'Font.(default_)name' with an array of font families to search for the first existing one instead of a plain string. This makes the behavior closer to RMXP; however, it doesn't work 100% the same: when a reference to the 'Font.name' array is held and additional strings are added to it without re-assignig the array to 'Font.name', those will be ignored.
2014-04-11 11:37:14 +00:00
class SharedFontState;
2013-09-01 14:27:21 +00:00
struct GlobalIBO;
struct Config;
struct Vec2i;
struct SharedMidiState;
struct SharedState
2013-09-01 14:27:21 +00:00
{
void *bindingData() const;
2013-09-01 14:27:21 +00:00
void setBindingData(void *data);
SDL_Window *sdlWindow() const;
2013-09-01 14:27:21 +00:00
Scene *screen() const;
2013-09-01 14:27:21 +00:00
void setScreen(Scene &screen);
FileSystem &fileSystem() const;
2013-09-01 14:27:21 +00:00
EventThread &eThread() const;
RGSSThreadData &rtData() const;
Config &config() const;
2013-09-01 14:27:21 +00:00
Graphics &graphics() const;
Input &input() const;
Audio &audio() const;
2013-09-01 14:27:21 +00:00
GLState &_glState() const;
2013-09-01 14:27:21 +00:00
ShaderSet &shaders() const;
TexPool &texPool() const;
2013-09-01 14:27:21 +00:00
SharedFontState &fontState() const;
Font &defaultFont() const;
2013-09-01 14:27:21 +00:00
SharedMidiState &midiState() const;
2013-09-01 14:27:21 +00:00
sigc::signal<void> prepareDraw;
unsigned int genTimeStamp();
/* Returns global quad IBO, and ensures it has indices
* for at least minSize quads */
void ensureQuadIBO(size_t minSize);
GlobalIBO &globalIBO();
2013-09-01 14:27:21 +00:00
/* Global general purpose texture */
void bindTex();
void ensureTexSize(int minW, int minH, Vec2i &currentSizeOut);
2013-09-01 14:27:21 +00:00
2013-09-06 10:26:41 +00:00
TEXFBO &gpTexFBO(int minW, int minH);
2013-09-01 14:27:21 +00:00
Quad &gpQuad() const;
/* Basically just a simple "TexPool"
* replacement for Tilemap atlas use */
void requestAtlasTex(int w, int h, TEXFBO &out);
void releaseAtlasTex(TEXFBO &tex);
2013-09-01 14:27:21 +00:00
/* Checks EventThread's shutdown request flag and if set,
* requests the binding to terminate. In this case, this
* function will most likely not return */
void checkShutdown();
void checkReset();
static SharedState *instance;
static int rgssVersion;
/* This function will throw an Exception instance
* on initialization error */
2013-09-01 14:27:21 +00:00
static void initInstance(RGSSThreadData *threadData);
static void finiInstance();
private:
SharedState(RGSSThreadData *threadData);
~SharedState();
2013-09-01 14:27:21 +00:00
SharedStatePrivate *p;
2013-09-01 14:27:21 +00:00
};
#endif // SHAREDSTATE_H