2019-11-23 20:27:39 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2010-2012 cocos2d-x.org
|
|
|
|
Copyright (c) 2013-2016 Chukong Technologies Inc.
|
|
|
|
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
|
|
|
|
|
|
|
|
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.
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
#include "platform/CCGL.h"
|
2019-11-23 20:27:39 +08:00
|
|
|
#include "base/CCRef.h"
|
|
|
|
#include "platform/CCCommon.h"
|
|
|
|
#include "platform/CCGLView.h"
|
|
|
|
#include "glfw3.h"
|
|
|
|
|
|
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32)
|
2021-12-25 10:04:45 +08:00
|
|
|
# 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"
|
2019-11-23 20:27:39 +08:00
|
|
|
#endif /* (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32) */
|
|
|
|
|
|
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_MAC)
|
2021-12-25 10:04:45 +08:00
|
|
|
# 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)
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
NS_CC_BEGIN
|
|
|
|
|
2020-06-12 12:42:58 +08:00
|
|
|
class GLFWEventHandler;
|
2019-11-23 20:27:39 +08:00
|
|
|
class CC_DLL GLViewImpl : public GLView
|
|
|
|
{
|
2020-09-04 17:58:34 +08:00
|
|
|
friend class GLFWEventHandler;
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
public:
|
2021-12-31 12:12:40 +08:00
|
|
|
static GLViewImpl* create(std::string_view viewName);
|
|
|
|
static GLViewImpl* create(std::string_view viewName, bool resizable);
|
|
|
|
static GLViewImpl* createWithRect(std::string_view viewName,
|
2021-12-25 10:04:45 +08:00
|
|
|
Rect size,
|
|
|
|
float frameZoomFactor = 1.0f,
|
|
|
|
bool resizable = false);
|
2021-12-31 12:12:40 +08:00
|
|
|
static GLViewImpl* createWithFullScreen(std::string_view viewName);
|
|
|
|
static GLViewImpl* createWithFullScreen(std::string_view viewName,
|
2021-12-25 10:04:45 +08:00
|
|
|
const GLFWvidmode& videoMode,
|
|
|
|
GLFWmonitor* monitor);
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
*frameZoomFactor for frame. This method is for debugging big resolution (e.g.new ipad) app on desktop.
|
|
|
|
*/
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
// void resize(int width, int height);
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
float getFrameZoomFactor() const override;
|
2021-12-25 10:04:45 +08:00
|
|
|
// void centerWindow();
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2021-12-25 10:04:45 +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;
|
2019-11-23 20:27:39 +08:00
|
|
|
virtual Rect getScissorRect() const override;
|
|
|
|
|
|
|
|
bool windowShouldClose() override;
|
|
|
|
void pollEvents() override;
|
|
|
|
GLFWwindow* getWindow() const { return _mainWindow; }
|
|
|
|
|
|
|
|
bool isFullscreen() const;
|
2020-08-03 11:03:07 +08:00
|
|
|
|
|
|
|
/* Sets primary monitor full screen with default w*h(refresh rate) */
|
2019-11-23 20:27:39 +08:00
|
|
|
void setFullscreen();
|
2020-08-03 11:03:07 +08:00
|
|
|
/* Sets primary monitor full screen with w*h(refresh rate) */
|
|
|
|
void setFullscreen(int w, int h, int refreshRate);
|
|
|
|
|
|
|
|
/* Sets monitor full screen with default w*h(refresh rate) */
|
2019-11-23 20:27:39 +08:00
|
|
|
void setFullscreen(int monitorIndex);
|
2020-08-03 11:03:07 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Sets monitor full screen with w*h(refresh rate)
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="monitorIndex">the 0 based index of monitor</param>
|
|
|
|
/// <param name="w">the width of hardware resolution in full screen, -1 use default value</param>
|
|
|
|
/// <param name="h">the height of hardware resolution in full screen, -1 use default value</param>
|
|
|
|
/// <param name="refreshRate">the display refresh rate, usually 60, -1 use default value</param>
|
|
|
|
void setFullscreen(int monitorIndex, int w, int h, int refreshRate);
|
|
|
|
|
|
|
|
/* for internal use */
|
2021-12-25 10:04:45 +08:00
|
|
|
void setFullscreen(GLFWmonitor* monitor, int w, int h, int refreshRate);
|
2019-11-23 20:27:39 +08:00
|
|
|
void setWindowed(int width, int height);
|
2020-08-03 11:03:07 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
int getMonitorCount() const;
|
2021-10-23 23:27:14 +08:00
|
|
|
Vec2 getMonitorSize() const;
|
2019-11-23 20:27:39 +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;
|
|
|
|
|
|
|
|
#if CC_ICON_SET_SUPPORT
|
2021-12-31 12:12:40 +08:00
|
|
|
virtual void setIcon(std::string_view filename) const override;
|
|
|
|
virtual void setIcon(const std::vector<std::string_view>& filelist) const override;
|
2019-11-23 20:27:39 +08:00
|
|
|
virtual void setDefaultIcon() const override;
|
|
|
|
#endif /* CC_ICON_SET_SUPPORT */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Set zoom factor for frame. This method is for debugging big resolution (e.g.new ipad) app on desktop.
|
|
|
|
*/
|
|
|
|
void setFrameZoomFactor(float zoomFactor) override;
|
|
|
|
/**
|
|
|
|
* Hide or Show the mouse cursor if there is one.
|
|
|
|
*/
|
|
|
|
virtual void setCursorVisible(bool isVisible) override;
|
|
|
|
/** Retina support is disabled by default
|
|
|
|
* @note This method is only available on Mac.
|
|
|
|
*/
|
|
|
|
void enableRetina(bool enabled);
|
|
|
|
/** Check whether retina display is enabled. */
|
|
|
|
bool isRetinaEnabled() const { return _isRetinaEnabled; };
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/** Get retina factor */
|
|
|
|
int getRetinaFactor() const override { return _retinaFactor; }
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32)
|
|
|
|
HWND getWin32Window() { return glfwGetWin32Window(_mainWindow); }
|
|
|
|
#endif /* (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32) */
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_MAC)
|
|
|
|
id getCocoaWindow() override { return glfwGetCocoaWindow(_mainWindow); }
|
2021-12-25 10:04:45 +08:00
|
|
|
id getNSGLContext() override { return glfwGetNSGLContext(_mainWindow); } // stevetranby: added
|
|
|
|
#endif // #if (CC_TARGET_PLATFORM == CC_PLATFORM_MAC)
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
protected:
|
|
|
|
GLViewImpl(bool initglfw = true);
|
|
|
|
virtual ~GLViewImpl();
|
|
|
|
|
2021-12-31 12:12:40 +08:00
|
|
|
bool initWithRect(std::string_view viewName, Rect rect, float frameZoomFactor, bool resizable);
|
|
|
|
bool initWithFullScreen(std::string_view viewName);
|
|
|
|
bool initWithFullscreen(std::string_view viewname, const GLFWvidmode& videoMode, GLFWmonitor* monitor);
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2020-02-15 23:51:23 +08:00
|
|
|
bool loadGL();
|
|
|
|
|
2020-08-03 11:03:07 +08:00
|
|
|
/* update frame layout when enter/exit full screen mode */
|
|
|
|
void updateWindowSize();
|
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
void updateFrameSize();
|
|
|
|
|
|
|
|
// 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);
|
2021-12-25 10:04:45 +08:00
|
|
|
void onGLFWWindowSizeCallback(GLFWwindow* window, int width, int height);
|
2019-11-23 20:27:39 +08:00
|
|
|
void onGLFWWindowIconifyCallback(GLFWwindow* window, int iconified);
|
|
|
|
void onGLFWWindowFocusCallback(GLFWwindow* window, int focused);
|
|
|
|
|
|
|
|
bool _captured;
|
|
|
|
bool _isInRetinaMonitor;
|
|
|
|
bool _isRetinaEnabled;
|
2021-12-25 10:04:45 +08:00
|
|
|
int _retinaFactor; // Should be 1 or 2
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
float _frameZoomFactor;
|
|
|
|
|
|
|
|
GLFWwindow* _mainWindow;
|
|
|
|
GLFWmonitor* _monitor;
|
|
|
|
|
|
|
|
std::string _glfwError;
|
|
|
|
|
|
|
|
float _mouseX;
|
|
|
|
float _mouseY;
|
|
|
|
|
|
|
|
public:
|
|
|
|
// View will trigger an event when window is resized, gains or loses focus
|
|
|
|
static const std::string EVENT_WINDOW_RESIZED;
|
|
|
|
static const std::string EVENT_WINDOW_FOCUSED;
|
|
|
|
static const std::string EVENT_WINDOW_UNFOCUSED;
|
|
|
|
|
|
|
|
private:
|
|
|
|
CC_DISALLOW_COPY_AND_ASSIGN(GLViewImpl);
|
|
|
|
};
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
NS_CC_END // end of namespace cocos2d
|