2002-07-17 04:07:32 +08:00
|
|
|
//C++ header - Open Scene Graph - Copyright (C) 1998-2002 Robert Osfield
|
2001-12-19 08:38:23 +08:00
|
|
|
//Distributed under the terms of the GNU Library General Public License (LGPL)
|
|
|
|
//as published by the Free Software Foundation.
|
|
|
|
|
2001-12-22 06:48:19 +08:00
|
|
|
#ifndef OSG_DisplaySettings
|
|
|
|
#define OSG_DisplaySettings 1
|
2001-12-19 08:38:23 +08:00
|
|
|
|
|
|
|
#include <osg/Referenced>
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
namespace osg {
|
|
|
|
|
2001-12-22 06:48:19 +08:00
|
|
|
/** DisplaySettings class for encapsulating what visuals are required and
|
2001-12-19 08:38:23 +08:00
|
|
|
* have been set up, and the status of stereo viewing.*/
|
2001-12-22 06:48:19 +08:00
|
|
|
class SG_EXPORT DisplaySettings : public osg::Referenced
|
2001-12-19 08:38:23 +08:00
|
|
|
{
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2002-02-28 08:11:31 +08:00
|
|
|
/** Maintain a DisplaySettings singleton for objects to querry at runtime.*/
|
|
|
|
static DisplaySettings* instance();
|
|
|
|
|
|
|
|
|
2001-12-22 06:48:19 +08:00
|
|
|
DisplaySettings()
|
2001-12-19 08:38:23 +08:00
|
|
|
{
|
|
|
|
setDefaults();
|
|
|
|
readEnvironmentalVariables();
|
|
|
|
}
|
|
|
|
|
2001-12-22 06:48:19 +08:00
|
|
|
DisplaySettings(std::vector<std::string>& commandLine)
|
2001-12-19 08:38:23 +08:00
|
|
|
{
|
|
|
|
setDefaults();
|
|
|
|
readEnvironmentalVariables();
|
|
|
|
readCommandLine(commandLine);
|
|
|
|
}
|
|
|
|
|
2001-12-22 06:48:19 +08:00
|
|
|
DisplaySettings(const DisplaySettings& vs);
|
2001-12-19 08:38:23 +08:00
|
|
|
|
2001-12-22 06:48:19 +08:00
|
|
|
virtual ~DisplaySettings();
|
2001-12-19 08:38:23 +08:00
|
|
|
|
2002-02-28 08:11:31 +08:00
|
|
|
|
|
|
|
|
2001-12-22 06:48:19 +08:00
|
|
|
DisplaySettings& operator = (const DisplaySettings& vs);
|
2002-02-28 08:11:31 +08:00
|
|
|
|
2001-12-19 08:38:23 +08:00
|
|
|
|
2001-12-22 06:48:19 +08:00
|
|
|
void merge(const DisplaySettings& vs);
|
2001-12-19 08:38:23 +08:00
|
|
|
|
|
|
|
void setDefaults();
|
|
|
|
|
|
|
|
void readEnvironmentalVariables();
|
|
|
|
|
|
|
|
/** read the command line string list, removing any matched control sequences.*/
|
|
|
|
void readCommandLine(std::vector<std::string>& commandLine);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void setStereo(const bool on) { _stereo = on; }
|
|
|
|
const bool getStereo() const { return _stereo; }
|
|
|
|
|
|
|
|
enum StereoMode
|
|
|
|
{
|
|
|
|
QUAD_BUFFER,
|
|
|
|
ANAGLYPHIC,
|
|
|
|
HORIZONTAL_SPLIT,
|
|
|
|
VERTICAL_SPLIT
|
|
|
|
};
|
|
|
|
|
|
|
|
void setStereoMode(const StereoMode mode) { _stereoMode = mode; }
|
|
|
|
const StereoMode getStereoMode() const { return _stereoMode; }
|
|
|
|
|
|
|
|
void setEyeSeperation(const float eyeSeperation) { _eyeSeperation = eyeSeperation; }
|
|
|
|
const float getEyeSeperation() const { return _eyeSeperation; }
|
|
|
|
|
|
|
|
void setScreenDistance(const float distance) { _screenDistance = distance; }
|
|
|
|
const float getScreenDistance() const { return _screenDistance; }
|
|
|
|
|
2002-04-15 06:21:59 +08:00
|
|
|
enum SplitStereoHorizontalEyeMapping
|
|
|
|
{
|
|
|
|
LEFT_EYE_LEFT_VIEWPORT,
|
|
|
|
LEFT_EYE_RIGHT_VIEWPORT
|
|
|
|
};
|
|
|
|
|
|
|
|
void setSplitStereoHorizontalEyeMapping(SplitStereoHorizontalEyeMapping m) { _splitStereoHorizontalEyeMapping = m; }
|
|
|
|
SplitStereoHorizontalEyeMapping getSplitStereoHorizontalEyeMapping() const { return _splitStereoHorizontalEyeMapping; }
|
|
|
|
|
|
|
|
void setSplitStereoHorizontalSeperation(const int s) { _splitStereoHorizontalSeperation = s; }
|
|
|
|
const int getSplitStereoHorizontalSeperation() const { return _splitStereoHorizontalSeperation; }
|
|
|
|
|
|
|
|
enum SplitStereoVerticalEyeMapping
|
|
|
|
{
|
|
|
|
LEFT_EYE_TOP_VIEWPORT,
|
2002-05-27 14:37:51 +08:00
|
|
|
LEFT_EYE_BOTTOM_VIEWPORT
|
2002-04-15 06:21:59 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
void setSplitStereoVerticalEyeMapping(SplitStereoVerticalEyeMapping m) { _splitStereoVerticalEyeMapping = m; }
|
|
|
|
SplitStereoVerticalEyeMapping getSplitStereoVerticalEyeMapping() const { return _splitStereoVerticalEyeMapping; }
|
|
|
|
|
|
|
|
void setSplitStereoVerticalSeperation(const int s) { _splitStereoVerticalSeperation = s; }
|
|
|
|
const int getSplitStereoVerticalSeperation() const { return _splitStereoVerticalSeperation; }
|
|
|
|
|
2001-12-19 08:38:23 +08:00
|
|
|
|
2001-12-22 06:48:19 +08:00
|
|
|
void setScreenHeight(const float height) { _screenHeight = height; }
|
|
|
|
const float getScreenHeight() const { return _screenHeight; }
|
|
|
|
|
2001-12-19 08:38:23 +08:00
|
|
|
|
|
|
|
void setDoubleBuffer(const bool flag) { _doubleBuffer = flag; }
|
|
|
|
const bool getDoubleBuffer() const { return _doubleBuffer; }
|
|
|
|
|
|
|
|
|
|
|
|
void setRGB(const bool flag) { _RGB = flag; }
|
|
|
|
const bool getRGB() const { return _RGB; }
|
|
|
|
|
|
|
|
|
|
|
|
void setDepthBuffer(const bool flag) { _depthBuffer = flag; }
|
|
|
|
const bool getDepthBuffer() const { return _depthBuffer; }
|
|
|
|
|
|
|
|
|
|
|
|
void setMinimumNumAlphaBits(const unsigned int bits) { _minimumNumberAlphaBits = bits; }
|
|
|
|
const unsigned int getMinimumNumAlphaBits() const { return _minimumNumberAlphaBits; }
|
|
|
|
const bool getAlphaBuffer() const { return _minimumNumberAlphaBits!=0; }
|
|
|
|
|
|
|
|
|
|
|
|
void setMinimumNumStencilBits(const unsigned int bits) { _minimumNumberStencilBits = bits; }
|
|
|
|
const unsigned int getMinimumNumStencilBits() const { return _minimumNumberStencilBits; }
|
|
|
|
const bool getStencilBuffer() const { return _minimumNumberStencilBits!=0; }
|
|
|
|
|
2002-02-28 08:11:31 +08:00
|
|
|
|
|
|
|
void setMaxNumberOfGraphicsContexts(const int num) { _maxNumOfGraphicsContexts = num; }
|
|
|
|
const int getMaxNumberOfGraphicsContexts() const { return _maxNumOfGraphicsContexts; }
|
|
|
|
|
|
|
|
|
2001-12-19 08:38:23 +08:00
|
|
|
protected:
|
|
|
|
|
2001-12-22 06:48:19 +08:00
|
|
|
void copy(const DisplaySettings& vs);
|
2001-12-19 08:38:23 +08:00
|
|
|
|
2002-04-15 06:21:59 +08:00
|
|
|
bool _stereo;
|
|
|
|
StereoMode _stereoMode;
|
|
|
|
float _eyeSeperation;
|
|
|
|
float _screenDistance;
|
|
|
|
float _screenHeight;
|
|
|
|
|
|
|
|
SplitStereoHorizontalEyeMapping _splitStereoHorizontalEyeMapping;
|
|
|
|
int _splitStereoHorizontalSeperation;
|
|
|
|
SplitStereoVerticalEyeMapping _splitStereoVerticalEyeMapping;
|
|
|
|
int _splitStereoVerticalSeperation;
|
2001-12-19 08:38:23 +08:00
|
|
|
|
2002-04-15 06:21:59 +08:00
|
|
|
bool _doubleBuffer;
|
|
|
|
bool _RGB;
|
|
|
|
bool _depthBuffer;
|
|
|
|
unsigned int _minimumNumberAlphaBits;
|
|
|
|
unsigned int _minimumNumberStencilBits;
|
2001-12-19 08:38:23 +08:00
|
|
|
|
2002-04-15 06:21:59 +08:00
|
|
|
int _maxNumOfGraphicsContexts;
|
2001-12-19 08:38:23 +08:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
# endif
|