2012-07-21 12:23:40 +08:00
|
|
|
/****************************************************************************
|
2014-01-07 11:25:07 +08:00
|
|
|
Copyright (c) 2010-2012 cocos2d-x.org
|
|
|
|
Copyright (c) 2013-2014 Chukong Technologies Inc.
|
|
|
|
|
|
|
|
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.
|
|
|
|
****************************************************************************/
|
2012-07-21 12:23:40 +08:00
|
|
|
|
2014-07-31 00:53:04 +08:00
|
|
|
#ifndef __CC_EGLViewIMPL_DESKTOP_H__
|
|
|
|
#define __CC_EGLViewIMPL_DESKTOP_H__
|
2012-07-21 12:23:40 +08:00
|
|
|
|
2014-04-27 01:11:22 +08:00
|
|
|
#include "base/CCRef.h"
|
2014-05-17 05:36:00 +08:00
|
|
|
#include "platform/CCCommon.h"
|
2014-07-31 00:53:04 +08:00
|
|
|
#include "platform/CCGLView.h"
|
2013-10-14 15:53:14 +08:00
|
|
|
#include "glfw3.h"
|
2012-07-21 12:23:40 +08:00
|
|
|
|
2014-07-31 00:53:04 +08:00
|
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32)
|
|
|
|
#ifndef GLFW_EXPOSE_NATIVE_WIN32
|
|
|
|
#define GLFW_EXPOSE_NATIVE_WIN32
|
|
|
|
#endif
|
|
|
|
#ifndef GLFW_EXPOSE_NATIVE_WGL
|
|
|
|
#define GLFW_EXPOSE_NATIVE_WGL
|
|
|
|
#endif
|
|
|
|
#include "glfw3native.h"
|
|
|
|
#endif /* (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32) */
|
|
|
|
|
|
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_MAC)
|
|
|
|
#ifndef GLFW_EXPOSE_NATIVE_NSGL
|
|
|
|
#define GLFW_EXPOSE_NATIVE_NSGL
|
|
|
|
#endif
|
|
|
|
#ifndef GLFW_EXPOSE_NATIVE_COCOA
|
|
|
|
#define GLFW_EXPOSE_NATIVE_COCOA
|
|
|
|
#endif
|
|
|
|
#include "glfw3native.h"
|
|
|
|
#endif // #if (CC_TARGET_PLATFORM == CC_PLATFORM_MAC)
|
|
|
|
|
2012-09-04 02:06:04 +08:00
|
|
|
NS_CC_BEGIN
|
|
|
|
|
2014-07-31 00:53:04 +08:00
|
|
|
class CC_DLL GLViewImpl : public GLView
|
2012-07-21 12:23:40 +08:00
|
|
|
{
|
|
|
|
public:
|
2014-07-31 00:53:04 +08:00
|
|
|
static GLViewImpl* create(const std::string& viewName);
|
|
|
|
static GLViewImpl* createWithRect(const std::string& viewName, Rect size, float frameZoomFactor = 1.0f);
|
|
|
|
static GLViewImpl* createWithFullScreen(const std::string& viewName);
|
|
|
|
static GLViewImpl* createWithFullScreen(const std::string& viewName, const GLFWvidmode &videoMode, GLFWmonitor *monitor);
|
2014-01-23 05:51:01 +08:00
|
|
|
|
2013-09-13 18:21:12 +08:00
|
|
|
/*
|
|
|
|
*frameZoomFactor for frame. This method is for debugging big resolution (e.g.new ipad) app on desktop.
|
|
|
|
*/
|
2014-01-23 05:51:01 +08:00
|
|
|
|
2013-08-21 12:01:56 +08:00
|
|
|
//void resize(int width, int height);
|
2014-03-07 14:03:57 +08:00
|
|
|
|
2015-03-15 02:33:15 +08:00
|
|
|
float getFrameZoomFactor() const override;
|
2013-08-21 12:01:56 +08:00
|
|
|
//void centerWindow();
|
|
|
|
|
2015-03-15 02:33:15 +08:00
|
|
|
virtual void setViewPortInPoints(float x , float y , float w , float h) override;
|
|
|
|
virtual void setScissorInPoints(float x , float y , float w , float h) override;
|
2015-07-29 18:43:11 +08:00
|
|
|
virtual Rect getScissorRect() const override;
|
2014-01-23 05:51:01 +08:00
|
|
|
|
2015-03-15 02:33:15 +08:00
|
|
|
bool windowShouldClose() override;
|
|
|
|
void pollEvents() override;
|
2014-01-23 05:51:01 +08:00
|
|
|
GLFWwindow* getWindow() const { return _mainWindow; }
|
|
|
|
|
2014-01-24 07:36:55 +08:00
|
|
|
/* override functions */
|
|
|
|
virtual bool isOpenGLReady() override;
|
|
|
|
virtual void end() override;
|
|
|
|
virtual void swapBuffers() override;
|
|
|
|
virtual void setFrameSize(float width, float height) override;
|
|
|
|
virtual void setIMEKeyboardState(bool bOpen) override;
|
|
|
|
|
2014-03-07 13:50:50 +08:00
|
|
|
/*
|
|
|
|
* Set zoom factor for frame. This method is for debugging big resolution (e.g.new ipad) app on desktop.
|
|
|
|
*/
|
2015-03-15 02:33:15 +08:00
|
|
|
void setFrameZoomFactor(float zoomFactor) override;
|
2015-02-12 09:21:04 +08:00
|
|
|
/**
|
|
|
|
* Hide or Show the mouse cursor if there is one.
|
|
|
|
*/
|
2015-03-03 15:29:15 +08:00
|
|
|
virtual void setCursorVisible(bool isVisible) override;
|
2014-03-07 13:50:50 +08:00
|
|
|
/** Retina support is disabled by default
|
|
|
|
* @note This method is only available on Mac.
|
|
|
|
*/
|
|
|
|
void enableRetina(bool enabled);
|
|
|
|
/** Check whether retina display is enabled. */
|
2014-05-19 01:12:56 +08:00
|
|
|
bool isRetinaEnabled() const { return _isRetinaEnabled; };
|
|
|
|
|
|
|
|
/** Get retina factor */
|
2015-03-15 02:33:15 +08:00
|
|
|
int getRetinaFactor() const override { return _retinaFactor; }
|
2014-07-31 00:53:04 +08:00
|
|
|
|
|
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32)
|
|
|
|
HWND getWin32Window() { return glfwGetWin32Window(_mainWindow); }
|
|
|
|
#endif /* (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32) */
|
|
|
|
|
|
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_MAC)
|
2015-07-24 05:28:23 +08:00
|
|
|
id getCocoaWindow() override { return glfwGetCocoaWindow(_mainWindow); }
|
2014-07-31 00:53:04 +08:00
|
|
|
#endif // #if (CC_TARGET_PLATFORM == CC_PLATFORM_MAC)
|
2014-03-07 14:03:57 +08:00
|
|
|
|
2013-08-21 12:01:56 +08:00
|
|
|
protected:
|
2014-07-31 00:53:04 +08:00
|
|
|
GLViewImpl();
|
|
|
|
virtual ~GLViewImpl();
|
2014-01-24 07:36:55 +08:00
|
|
|
|
2014-01-31 12:16:40 +08:00
|
|
|
bool initWithRect(const std::string& viewName, Rect rect, float frameZoomFactor);
|
2014-01-24 07:36:55 +08:00
|
|
|
bool initWithFullScreen(const std::string& viewName);
|
2014-04-09 01:33:24 +08:00
|
|
|
bool initWithFullscreen(const std::string& viewname, const GLFWvidmode &videoMode, GLFWmonitor *monitor);
|
2014-01-24 07:36:55 +08:00
|
|
|
|
2014-01-23 06:17:32 +08:00
|
|
|
bool initGlew();
|
2014-01-23 05:51:01 +08:00
|
|
|
|
2014-03-07 13:50:50 +08:00
|
|
|
void updateFrameSize();
|
2014-03-07 14:03:57 +08:00
|
|
|
|
2014-03-07 13:50:50 +08:00
|
|
|
// GLFW callbacks
|
|
|
|
void onGLFWError(int errorID, const char* errorDesc);
|
|
|
|
void onGLFWMouseCallBack(GLFWwindow* window, int button, int action, int modify);
|
|
|
|
void onGLFWMouseMoveCallBack(GLFWwindow* window, double x, double y);
|
|
|
|
void onGLFWMouseScrollCallback(GLFWwindow* window, double x, double y);
|
|
|
|
void onGLFWKeyCallback(GLFWwindow* window, int key, int scancode, int action, int mods);
|
|
|
|
void onGLFWCharCallback(GLFWwindow* window, unsigned int character);
|
|
|
|
void onGLFWWindowPosCallback(GLFWwindow* windows, int x, int y);
|
|
|
|
void onGLFWframebuffersize(GLFWwindow* window, int w, int h);
|
2014-03-07 14:03:57 +08:00
|
|
|
void onGLFWWindowSizeFunCallback(GLFWwindow *window, int width, int height);
|
2014-08-14 15:48:09 +08:00
|
|
|
void onGLFWWindowIconifyCallback(GLFWwindow* window, int iconified);
|
2014-03-07 14:03:57 +08:00
|
|
|
|
2014-08-14 15:48:09 +08:00
|
|
|
bool _captured;
|
2013-08-21 12:01:56 +08:00
|
|
|
bool _supportTouch;
|
2014-03-07 13:50:50 +08:00
|
|
|
bool _isInRetinaMonitor;
|
|
|
|
bool _isRetinaEnabled;
|
|
|
|
int _retinaFactor; // Should be 1 or 2
|
2014-03-07 14:03:57 +08:00
|
|
|
|
2013-08-21 12:01:56 +08:00
|
|
|
float _frameZoomFactor;
|
2014-03-07 14:03:57 +08:00
|
|
|
|
2013-08-21 12:01:56 +08:00
|
|
|
GLFWwindow* _mainWindow;
|
2014-04-09 01:33:24 +08:00
|
|
|
GLFWmonitor* _monitor;
|
2014-01-24 07:36:55 +08:00
|
|
|
|
2015-09-02 20:02:23 +08:00
|
|
|
std::string _glfwError;
|
2015-08-06 04:06:16 +08:00
|
|
|
|
2014-03-07 13:50:50 +08:00
|
|
|
float _mouseX;
|
|
|
|
float _mouseY;
|
|
|
|
|
|
|
|
friend class GLFWEventHandler;
|
2014-03-07 14:03:57 +08:00
|
|
|
|
2014-01-24 07:36:55 +08:00
|
|
|
private:
|
2014-07-31 00:53:04 +08:00
|
|
|
CC_DISALLOW_COPY_AND_ASSIGN(GLViewImpl);
|
2012-07-21 12:23:40 +08:00
|
|
|
};
|
|
|
|
|
2012-09-04 02:06:04 +08:00
|
|
|
NS_CC_END // end of namespace cocos2d
|
2012-07-21 12:23:40 +08:00
|
|
|
|
2014-07-31 00:53:04 +08:00
|
|
|
#endif // end of __CC_EGLViewImpl_DESKTOP_H__
|