mirror of https://github.com/axmolengine/axmol.git
122 lines
2.9 KiB
C++
122 lines
2.9 KiB
C++
/****************************************************************************
|
|
Copyright (c) 2010 cocos2d-x.org
|
|
|
|
http://www.cocos2d-x.org
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
all copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
THE SOFTWARE.
|
|
****************************************************************************/
|
|
|
|
#include "CCCamera.h"
|
|
//#include "CCDirector.h"
|
|
#include "ccMacros.h"
|
|
|
|
#include "support/opengl_support/glu.h"
|
|
|
|
#include "CCDrawingPrimitives.h"
|
|
|
|
using namespace std;
|
|
|
|
CCCamera::CCCamera(void)
|
|
{
|
|
}
|
|
|
|
CCCamera::~CCCamera(void)
|
|
{
|
|
}
|
|
|
|
string CCCamera::description(void)
|
|
{
|
|
char des[100];
|
|
sprintf_s(des, 100, "<CCCamera | center = (%.2f,%.2f,%.2f)>", m_fCenterX, m_fCenterY, m_fCenterZ);
|
|
string ret(des);
|
|
|
|
return ret;
|
|
}
|
|
|
|
void CCCamera::restore(void)
|
|
{
|
|
m_fEyeX = m_fEyeY = 0.0f;
|
|
m_fEyeZ = getZEye();
|
|
|
|
m_fCenterX = m_fCenterY = m_fCenterZ = 0.0f;
|
|
|
|
m_fUpX = 0.0f;
|
|
m_fUpY = 1.0f;
|
|
m_fUpZ = 0.0f;
|
|
|
|
m_bDirty = false;
|
|
}
|
|
|
|
void CCCamera::locate(void)
|
|
{
|
|
if (m_bDirty)
|
|
{
|
|
gluLookAt(m_fEyeX, m_fEyeY, m_fEyeZ,
|
|
m_fCenterX, m_fCenterY, m_fCenterZ,
|
|
m_fUpX, m_fUpY, m_fUpZ);
|
|
}
|
|
}
|
|
|
|
float CCCamera::getZEye(void)
|
|
{
|
|
return FLT_EPSILON;
|
|
}
|
|
|
|
void CCCamera::setEyeXYZ(float fEyeX, float fEyeY, float fEyeZ)
|
|
{
|
|
m_fEyeX = fEyeX;
|
|
m_fEyeY = fEyeY;
|
|
m_fEyeZ = fEyeZ;
|
|
}
|
|
|
|
void CCCamera::setCenterXYZ(float fCenterX, float fCenterY, float fCenterZ)
|
|
{
|
|
m_fCenterX = fCenterX;
|
|
m_fCenterY = fCenterY;
|
|
m_fCenterZ = fCenterZ;
|
|
}
|
|
|
|
void CCCamera::setUpXYZ(float fUpX, float fUpY, float fUpZ)
|
|
{
|
|
m_fUpX = fUpX;
|
|
m_fUpY = fUpY;
|
|
m_fUpZ = fUpZ;
|
|
}
|
|
|
|
void CCCamera::getEyeXYZ(float *pEyeX, float *pEyeY, float *pEyeZ)
|
|
{
|
|
*pEyeX = m_fEyeX;
|
|
*pEyeY = m_fEyeY;
|
|
*pEyeZ = m_fEyeZ;
|
|
}
|
|
|
|
void CCCamera::getCenterXYZ(float *pCenterX, float *pCenterY, float *pCenterZ)
|
|
{
|
|
*pCenterX = m_fCenterX;
|
|
*pCenterY = m_fCenterY;
|
|
*pCenterZ = m_fCenterZ;
|
|
}
|
|
|
|
void CCCamera::getUpXYZ(float *pUpX, float *pUpY, float *pUpZ)
|
|
{
|
|
*pUpX = m_fUpX;
|
|
*pUpY = m_fUpY;
|
|
*pUpZ = m_fUpZ;
|
|
}
|