mkxp-freebird/src/config.h

107 lines
1.9 KiB
C
Raw Normal View History

2013-09-01 14:27:21 +00:00
/*
** config.h
**
** 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 CONFIG_H
#define CONFIG_H
#include <string>
#include <vector>
#include <set>
2013-09-01 14:27:21 +00:00
struct Config
{
int rgssVersion;
2013-09-01 14:27:21 +00:00
bool debugMode;
bool printFPS;
2013-09-01 14:27:21 +00:00
bool winResizable;
bool fullscreen;
2013-09-23 08:39:16 +00:00
bool fixedAspectRatio;
2013-09-23 09:00:50 +00:00
bool smoothScaling;
2013-09-01 14:27:21 +00:00
bool vsync;
int defScreenW;
int defScreenH;
2013-10-17 00:18:16 +00:00
int fixedFramerate;
bool frameSkip;
bool syncToRefreshrate;
2013-10-17 00:18:16 +00:00
2013-09-01 14:27:21 +00:00
bool solidFonts;
bool subImageFix;
bool enableBlitting;
int maxTextureSize;
std::string gameFolder;
bool anyAltToggleFS;
bool enableReset;
2013-10-20 20:38:46 +00:00
bool allowSymlinks;
bool pathCache;
2013-09-01 14:27:21 +00:00
std::string dataPathOrg;
std::string dataPathApp;
std::string iconPath;
std::string execName;
std::string titleLanguage;
struct
{
std::string soundFont;
bool chorus;
bool reverb;
} midi;
struct
{
int sourceCount;
} SE;
bool useScriptNames;
std::string customScript;
std::set<std::string> preloadScripts;
std::vector<std::string> rtps;
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
std::vector<std::string> fontSubs;
std::vector<std::string> rubyLoadpaths;
2013-09-01 14:27:21 +00:00
/* Game INI contents */
struct {
std::string scripts;
std::string title;
2013-09-01 14:27:21 +00:00
} game;
/* Internal */
std::string customDataPath;
std::string commonDataPath;
2013-09-01 14:27:21 +00:00
Config();
void read(int argc, char *argv[]);
2013-09-01 14:27:21 +00:00
void readGameINI();
};
#endif // CONFIG_H