2009-07-28 21:32:10 +00:00
|
|
|
// Copyright (C) 2003 Dolphin Project.
|
2008-12-08 04:46:09 +00: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, version 2.0.
|
|
|
|
|
|
|
|
// 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 2.0 for more details.
|
|
|
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
|
|
|
// Official SVN repository and contact information can be found at
|
|
|
|
// http://code.google.com/p/dolphin-emu/
|
|
|
|
|
2009-04-03 14:35:49 +00:00
|
|
|
#ifndef _PLUGIN_VIDEOOGL_CONFIG_H_
|
|
|
|
#define _PLUGIN_VIDEOOGL_CONFIG_H_
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2009-02-28 16:33:59 +00:00
|
|
|
#include "Common.h"
|
|
|
|
|
2009-07-12 21:58:32 +00:00
|
|
|
#include <string>
|
|
|
|
|
2009-02-04 17:33:59 +00:00
|
|
|
// Log in two categories, and save three other options in the same byte
|
|
|
|
#define CONF_LOG 1
|
|
|
|
#define CONF_PRIMLOG 2
|
|
|
|
#define CONF_SAVETEXTURES 4
|
|
|
|
#define CONF_SAVETARGETS 8
|
|
|
|
#define CONF_SAVESHADERS 16
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2009-03-08 20:04:40 +00:00
|
|
|
enum MultisampleMode {
|
|
|
|
MULTISAMPLE_OFF,
|
|
|
|
MULTISAMPLE_2X,
|
|
|
|
MULTISAMPLE_4X,
|
|
|
|
MULTISAMPLE_8X,
|
|
|
|
MULTISAMPLE_CSAA_8X,
|
|
|
|
MULTISAMPLE_CSAA_8XQ,
|
|
|
|
MULTISAMPLE_CSAA_16X,
|
|
|
|
MULTISAMPLE_CSAA_16XQ,
|
|
|
|
};
|
|
|
|
|
2009-02-28 16:33:59 +00:00
|
|
|
// NEVER inherit from this class.
|
2008-12-08 04:46:09 +00:00
|
|
|
struct Config
|
|
|
|
{
|
|
|
|
Config();
|
|
|
|
void Load();
|
2009-03-20 11:51:22 +00:00
|
|
|
void GameIniLoad();
|
2008-12-08 04:46:09 +00:00
|
|
|
void Save();
|
2009-06-03 23:38:31 +00:00
|
|
|
void UpdateProjectionHack();
|
2008-12-08 04:46:09 +00:00
|
|
|
|
|
|
|
// General
|
2008-12-17 22:09:33 +00:00
|
|
|
bool bFullscreen;
|
2009-02-28 16:33:59 +00:00
|
|
|
bool bHideCursor;
|
2009-09-06 13:36:05 +00:00
|
|
|
bool RenderToMainframe;
|
2009-03-05 23:11:13 +00:00
|
|
|
bool bVSync;
|
2009-02-28 16:33:59 +00:00
|
|
|
|
|
|
|
// Resolution control
|
|
|
|
char iFSResolution[16];
|
2009-06-08 00:44:48 +00:00
|
|
|
char iInternalRes[16];
|
2009-02-21 13:53:26 +00:00
|
|
|
|
2009-09-05 05:42:51 +00:00
|
|
|
bool bNativeResolution, b2xResolution, bAllow2xResolution; // Should possibly be augmented with 2x, 4x native.
|
2009-09-02 21:30:19 +00:00
|
|
|
bool bWidescreenHack;
|
2009-02-28 16:33:59 +00:00
|
|
|
bool bKeepAR43, bKeepAR169, bCrop; // Aspect ratio controls.
|
|
|
|
bool bUseXFB;
|
|
|
|
bool bAutoScale; // Removes annoying borders without using XFB. Doesn't always work perfectly.
|
2008-12-17 22:09:33 +00:00
|
|
|
|
2008-12-08 04:46:09 +00:00
|
|
|
// Enhancements
|
2008-12-17 22:09:33 +00:00
|
|
|
int iMultisampleMode;
|
2008-12-08 04:46:09 +00:00
|
|
|
bool bForceFiltering;
|
|
|
|
int iMaxAnisotropy;
|
2009-06-08 19:42:25 +00:00
|
|
|
std::string sPostProcessingShader;
|
2008-12-08 04:46:09 +00:00
|
|
|
|
|
|
|
// Information
|
|
|
|
bool bShowFPS;
|
2008-12-17 22:09:33 +00:00
|
|
|
bool bOverlayStats;
|
2009-02-15 20:49:59 +00:00
|
|
|
bool bOverlayProjStats;
|
2008-12-08 04:46:09 +00:00
|
|
|
bool bTexFmtOverlayEnable;
|
2008-12-17 22:09:33 +00:00
|
|
|
bool bTexFmtOverlayCenter;
|
2009-03-16 07:54:44 +00:00
|
|
|
bool bShowEFBCopyRegions;
|
2008-12-17 22:09:33 +00:00
|
|
|
|
|
|
|
// Render
|
|
|
|
bool bWireFrame;
|
|
|
|
bool bDisableLighting;
|
|
|
|
bool bDisableTexturing;
|
2009-03-16 05:04:59 +00:00
|
|
|
bool bDstAlphaPass;
|
2009-04-01 12:31:18 +00:00
|
|
|
bool bDisableFog;
|
2008-12-17 22:09:33 +00:00
|
|
|
|
|
|
|
// Utility
|
|
|
|
bool bDumpTextures;
|
2009-05-07 07:43:56 +00:00
|
|
|
bool bHiresTextures;
|
2009-03-07 09:29:25 +00:00
|
|
|
bool bDumpEFBTarget;
|
2009-03-28 21:07:16 +00:00
|
|
|
bool bDumpFrames;
|
2009-04-19 10:10:45 +00:00
|
|
|
bool bFreeLook;
|
2008-12-17 22:09:33 +00:00
|
|
|
|
|
|
|
// Hacks
|
2009-01-11 22:25:57 +00:00
|
|
|
bool bEFBCopyDisable;
|
|
|
|
bool bEFBCopyDisableHotKey;
|
2009-05-11 06:40:03 +00:00
|
|
|
bool bHack;
|
2009-01-12 15:00:00 +00:00
|
|
|
bool bCopyEFBToRAM;
|
2009-02-28 16:33:59 +00:00
|
|
|
bool bSafeTextureCache;
|
2009-05-11 06:40:03 +00:00
|
|
|
int iPhackvalue;
|
|
|
|
bool bPhackvalue1, bPhackvalue2;
|
|
|
|
float fhackvalue1, fhackvalue2;
|
2009-05-14 06:28:10 +00:00
|
|
|
bool bProjHack1;
|
2009-02-19 02:58:29 +00:00
|
|
|
|
2008-12-17 22:09:33 +00:00
|
|
|
int iLog; // CONF_ bits
|
|
|
|
int iSaveTargetId;
|
|
|
|
|
|
|
|
//currently unused:
|
2008-12-08 04:46:09 +00:00
|
|
|
int iCompileDLsLevel;
|
|
|
|
bool bShowShaderErrors;
|
2009-02-28 16:33:59 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(Config);
|
2008-12-08 04:46:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
extern Config g_Config;
|
|
|
|
|
2009-04-03 14:35:49 +00:00
|
|
|
#endif // _PLUGIN_VIDEOOGL_CONFIG_H_
|