2013-12-21 14:32:30 +01:00
|
|
|
#pragma once
|
|
|
|
|
2014-02-23 21:36:39 +01:00
|
|
|
#include <string>
|
|
|
|
#include <algorithm>
|
|
|
|
|
2013-12-21 14:32:30 +01:00
|
|
|
/**
|
|
|
|
* Enumeration of the possible modes in which video can be playing (2D, 3D)
|
|
|
|
*/
|
|
|
|
enum VideoMode
|
|
|
|
{
|
|
|
|
VIDEO_2D,
|
|
|
|
VIDEO_3DSBS,
|
|
|
|
VIDEO_3DTAB
|
|
|
|
};
|
2014-02-23 21:36:39 +01:00
|
|
|
|
|
|
|
inline VideoMode parse3DMode(std::string videoMode)
|
|
|
|
{
|
|
|
|
// convert to lower case
|
|
|
|
std::transform(videoMode.begin(), videoMode.end(), videoMode.begin(), ::tolower);
|
|
|
|
|
2014-08-18 13:50:19 +02:00
|
|
|
if (videoMode == "3DTAB")
|
2014-02-23 21:36:39 +01:00
|
|
|
{
|
|
|
|
return VIDEO_3DTAB;
|
|
|
|
}
|
|
|
|
else if (videoMode == "3DSBS")
|
|
|
|
{
|
|
|
|
return VIDEO_3DSBS;
|
|
|
|
}
|
|
|
|
|
|
|
|
// return the default 2D
|
|
|
|
return VIDEO_2D;
|
|
|
|
}
|