2012-04-19 14:35:52 +08:00
|
|
|
/****************************************************************************
|
|
|
|
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.
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __CC_EGLVIEW_WIN32_H__
|
|
|
|
#define __CC_EGLVIEW_WIN32_H__
|
|
|
|
|
2013-01-17 17:07:18 +08:00
|
|
|
#include "CCStdC.h"
|
2012-06-19 17:22:55 +08:00
|
|
|
#include "platform/CCCommon.h"
|
|
|
|
#include "cocoa/CCGeometry.h"
|
|
|
|
#include "platform/CCEGLViewProtocol.h"
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
NS_CC_BEGIN
|
|
|
|
|
2012-09-02 04:38:52 +08:00
|
|
|
typedef LRESULT (*CUSTOM_WND_PROC)(UINT message, WPARAM wParam, LPARAM lParam, BOOL* pProcessed);
|
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
class EGL;
|
2012-04-19 14:35:52 +08:00
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
class CC_DLL EGLView : public EGLViewProtocol
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
|
|
|
public:
|
2013-06-20 14:13:12 +08:00
|
|
|
EGLView();
|
|
|
|
virtual ~EGLView();
|
2012-04-19 14:35:52 +08:00
|
|
|
|
2012-05-03 10:12:00 +08:00
|
|
|
/* override functions */
|
|
|
|
virtual bool isOpenGLReady();
|
|
|
|
virtual void end();
|
|
|
|
virtual void swapBuffers();
|
2012-08-15 14:33:56 +08:00
|
|
|
virtual void setFrameSize(float width, float height);
|
2012-05-03 10:12:00 +08:00
|
|
|
virtual void setIMEKeyboardState(bool bOpen);
|
2012-09-02 04:38:52 +08:00
|
|
|
|
|
|
|
void setMenuResource(LPCWSTR menu);
|
|
|
|
void setWndProc(CUSTOM_WND_PROC proc);
|
|
|
|
|
2012-05-03 10:12:00 +08:00
|
|
|
private:
|
2012-10-09 00:38:04 +08:00
|
|
|
virtual bool Create();
|
2012-06-01 13:44:28 +08:00
|
|
|
bool initGL();
|
|
|
|
void destroyGL();
|
2012-05-03 10:12:00 +08:00
|
|
|
public:
|
2012-04-19 14:35:52 +08:00
|
|
|
virtual LRESULT WindowProc(UINT message, WPARAM wParam, LPARAM lParam);
|
|
|
|
|
|
|
|
// win32 platform function
|
|
|
|
HWND getHWnd();
|
|
|
|
void resize(int width, int height);
|
2012-10-18 10:54:19 +08:00
|
|
|
/*
|
|
|
|
* Set zoom factor for frame. This method is for debugging big resolution (e.g.new ipad) app on desktop.
|
|
|
|
*/
|
2012-10-19 17:39:55 +08:00
|
|
|
void setFrameZoomFactor(float fZoomFactor);
|
|
|
|
float getFrameZoomFactor();
|
2012-04-19 14:35:52 +08:00
|
|
|
void centerWindow();
|
2012-04-20 15:23:00 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
typedef void (*LPFN_ACCELEROMETER_KEYHOOK)( UINT message,WPARAM wParam, LPARAM lParam );
|
|
|
|
void setAccelerometerKeyHook( LPFN_ACCELEROMETER_KEYHOOK lpfnAccelerometerKeyHook );
|
|
|
|
|
2012-10-18 10:54:19 +08:00
|
|
|
virtual void setViewPortInPoints(float x , float y , float w , float h);
|
2012-10-24 10:03:19 +08:00
|
|
|
virtual void setScissorInPoints(float x , float y , float w , float h);
|
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
// static function
|
|
|
|
/**
|
|
|
|
@brief get the shared main open gl window
|
|
|
|
*/
|
2013-06-20 14:13:12 +08:00
|
|
|
static EGLView* sharedOpenGLView();
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
private:
|
2013-06-15 14:03:30 +08:00
|
|
|
bool _captured;
|
|
|
|
HWND _wnd;
|
|
|
|
HDC _DC;
|
|
|
|
HGLRC _RC;
|
|
|
|
LPFN_ACCELEROMETER_KEYHOOK _lpfnAccelerometerKeyHook;
|
|
|
|
bool _supportTouch;
|
2012-09-02 04:38:52 +08:00
|
|
|
|
2013-06-15 14:03:30 +08:00
|
|
|
LPCWSTR _menu;
|
|
|
|
CUSTOM_WND_PROC _wndproc;
|
2012-09-03 00:58:42 +08:00
|
|
|
|
2013-06-15 14:03:30 +08:00
|
|
|
float _frameZoomFactor;
|
2012-04-19 14:35:52 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
NS_CC_END
|
|
|
|
|
|
|
|
#endif // end of __CC_EGLVIEW_WIN32_H__
|