The JUCE cross-platform C++ framework, with DISTRHO/KXStudio specific changes
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

199 lines
6.4KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library - "Jules' Utility Class Extensions"
  4. Copyright 2004-11 by Raw Material Software Ltd.
  5. ------------------------------------------------------------------------------
  6. JUCE can be redistributed and/or modified under the terms of the GNU General
  7. Public License (Version 2), as published by the Free Software Foundation.
  8. A copy of the license is included in the JUCE distribution, or can be found
  9. online at www.gnu.org/licenses.
  10. JUCE is distributed in the hope that it will be useful, but WITHOUT ANY
  11. WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  12. A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  13. ------------------------------------------------------------------------------
  14. To release a closed-source product which uses JUCE, commercial licenses are
  15. available: visit www.rawmaterialsoftware.com/juce for more information.
  16. ==============================================================================
  17. */
  18. #define JNI_CLASS_MEMBERS(METHOD, STATICMETHOD, FIELD, STATICFIELD) \
  19. METHOD (layout, "layout", "(IIII)V") \
  20. METHOD (requestRender, "requestRender", "()V") \
  21. DECLARE_JNI_CLASS (OpenGLView, JUCE_ANDROID_ACTIVITY_CLASSPATH "$OpenGLView");
  22. #undef JNI_CLASS_MEMBERS
  23. extern jobject createOpenGLView (ComponentPeer*);
  24. //==============================================================================
  25. class OpenGLContext::NativeContext
  26. {
  27. public:
  28. NativeContext (Component& component_,
  29. const OpenGLPixelFormat& pixelFormat,
  30. const NativeContext* contextToShareWith)
  31. : component (component_),
  32. isInsideGLCallback (false)
  33. {
  34. {
  35. const ScopedLock sl (contextListLock);
  36. glView = GlobalRef (createOpenGLView (component.getPeer()));
  37. contextList.add (this);
  38. }
  39. updateWindowPosition (component.getTopLevelComponent()
  40. ->getLocalArea (&component, component.getLocalBounds()));
  41. }
  42. ~NativeContext()
  43. {
  44. {
  45. const ScopedLock sl (contextListLock);
  46. contextList.removeValue (this);
  47. }
  48. android.activity.callVoidMethod (JuceAppActivity.deleteView, glView.get());
  49. glView.clear();
  50. }
  51. void initialiseOnRenderThread()
  52. {
  53. }
  54. void shutdownOnRenderThread()
  55. {
  56. }
  57. bool makeActive() const noexcept { return isInsideGLCallback; }
  58. bool makeInactive() const noexcept { return true; }
  59. bool isActive() const noexcept { return isInsideGLCallback; }
  60. void swapBuffers() const noexcept {}
  61. bool setSwapInterval (const int) { return false; }
  62. int getSwapInterval() const { return 0; }
  63. bool createdOk() const noexcept { return getRawContext() != nullptr; }
  64. void* getRawContext() const noexcept { return glView.get(); }
  65. GLuint getFrameBufferID() const noexcept { return 0; }
  66. void updateWindowPosition (const Rectangle<int>& bounds)
  67. {
  68. if (lastBounds != bounds)
  69. {
  70. lastBounds = bounds;
  71. glView.callVoidMethod (OpenGLView.layout,
  72. bounds.getX(), bounds.getY(),
  73. bounds.getRight(), bounds.getBottom());
  74. }
  75. }
  76. void contextChangedSize()
  77. {
  78. }
  79. void triggerRepaint()
  80. {
  81. glView.callVoidMethod (OpenGLView.requestRender);
  82. }
  83. //==============================================================================
  84. void contextCreatedCallback();
  85. void renderCallback();
  86. //==============================================================================
  87. static NativeContext* findContextFor (JNIEnv* env, jobject glView)
  88. {
  89. const ScopedLock sl (contextListLock);
  90. for (int i = contextList.size(); --i >= 0;)
  91. {
  92. NativeContext* const c = contextList.getUnchecked(i);
  93. if (env->IsSameObject (c->glView.get(), glView))
  94. return c;
  95. }
  96. return nullptr;
  97. }
  98. static NativeContext* getActiveContext() noexcept
  99. {
  100. const ScopedLock sl (contextListLock);
  101. for (int i = contextList.size(); --i >= 0;)
  102. {
  103. NativeContext* const c = contextList.getUnchecked(i);
  104. if (c->isInsideGLCallback)
  105. return c;
  106. }
  107. return nullptr;
  108. }
  109. Component& component;
  110. private:
  111. GlobalRef glView;
  112. Rectangle<int> lastBounds;
  113. bool isInsideGLCallback;
  114. typedef Array<NativeContext*> ContextArray;
  115. static CriticalSection contextListLock;
  116. static ContextArray contextList;
  117. JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (NativeContext);
  118. };
  119. CriticalSection OpenGLContext::NativeContext::contextListLock;
  120. OpenGLContext::NativeContext::ContextArray OpenGLContext::NativeContext::contextList;
  121. //==============================================================================
  122. bool OpenGLHelpers::isContextActive()
  123. {
  124. return OpenGLContext::NativeContext::getActiveContext() != nullptr;
  125. }
  126. //==============================================================================
  127. #define GL_VIEW_CLASS_NAME JUCE_JOIN_MACRO (JUCE_ANDROID_ACTIVITY_CLASSNAME, _00024OpenGLView)
  128. JUCE_JNI_CALLBACK (GL_VIEW_CLASS_NAME, contextCreated, void, (JNIEnv* env, jobject view))
  129. {
  130. threadLocalJNIEnvHolder.getOrAttach();
  131. OpenGLContext::NativeContext* const context = OpenGLContext::NativeContext::findContextFor (env, view);
  132. if (context != nullptr)
  133. {
  134. context->contextCreatedCallback();
  135. JUCE_CHECK_OPENGL_ERROR
  136. }
  137. else
  138. {
  139. jassertfalse;
  140. }
  141. }
  142. JUCE_JNI_CALLBACK (GL_VIEW_CLASS_NAME, contextChangedSize, void, (JNIEnv* env, jobject view))
  143. {
  144. OpenGLContext::NativeContext* const context = OpenGLContext::NativeContext::findContextFor (env, view);
  145. if (context != nullptr)
  146. context->contextChangedSize();
  147. }
  148. JUCE_JNI_CALLBACK (GL_VIEW_CLASS_NAME, render, void, (JNIEnv* env, jobject view))
  149. {
  150. OpenGLContext::NativeContext* const context = OpenGLContext::NativeContext::findContextFor (env, view);
  151. if (context != nullptr)
  152. context->renderCallback();
  153. }