forked from organicmaps/organicmaps
[drape] Fixed rendering initialization notification
This commit is contained in:
parent
4695b23cdb
commit
a3007501b4
14 changed files with 131 additions and 29 deletions
|
@ -11,6 +11,15 @@
|
|||
#include "platform/file_logging.hpp"
|
||||
#include "platform/settings.hpp"
|
||||
|
||||
namespace
|
||||
{
|
||||
void OnRenderingInitializationFinished(std::shared_ptr<jobject> const & listener)
|
||||
{
|
||||
JNIEnv * env = jni::GetEnv();
|
||||
env->CallVoidMethod(*listener, jni::GetMethodID(env, *listener.get(),
|
||||
"onRenderingInitializationFinished", "()V"));
|
||||
}
|
||||
} // namespace
|
||||
|
||||
extern "C"
|
||||
{
|
||||
|
@ -125,7 +134,8 @@ Java_com_mapswithme_maps_MapFragment_nativeOnTouch(JNIEnv * env, jclass clazz, j
|
|||
}
|
||||
|
||||
JNIEXPORT void JNICALL
|
||||
Java_com_mapswithme_maps_MapFragment_nativeSetupWidget(JNIEnv * env, jclass clazz, jint widget, jfloat x, jfloat y, jint anchor)
|
||||
Java_com_mapswithme_maps_MapFragment_nativeSetupWidget(
|
||||
JNIEnv * env, jclass clazz, jint widget, jfloat x, jfloat y, jint anchor)
|
||||
{
|
||||
g_framework->SetupWidget(static_cast<gui::EWidget>(widget), x, y, static_cast<dp::Anchor>(anchor));
|
||||
}
|
||||
|
@ -142,4 +152,18 @@ Java_com_mapswithme_maps_MapFragment_nativeCleanWidgets(JNIEnv * env, jclass cla
|
|||
g_framework->CleanWidgets();
|
||||
}
|
||||
|
||||
JNIEXPORT void JNICALL
|
||||
Java_com_mapswithme_maps_MapFragment_nativeSetRenderingInitializationFinishedListener(
|
||||
JNIEnv * env, jclass clazz, jobject listener)
|
||||
{
|
||||
if (listener)
|
||||
{
|
||||
g_framework->NativeFramework()->SetGraphicsContextInitializationHandler(
|
||||
std::bind(&OnRenderingInitializationFinished, jni::make_global_ref(listener)));
|
||||
}
|
||||
else
|
||||
{
|
||||
g_framework->NativeFramework()->SetGraphicsContextInitializationHandler(nullptr);
|
||||
}
|
||||
}
|
||||
} // extern "C"
|
||||
|
|
|
@ -26,7 +26,8 @@ import com.mapswithme.util.log.LoggerFactory;
|
|||
|
||||
public class MapFragment extends BaseMwmFragment
|
||||
implements View.OnTouchListener,
|
||||
SurfaceHolder.Callback
|
||||
SurfaceHolder.Callback,
|
||||
MapRenderingListener
|
||||
{
|
||||
public static final String ARG_LAUNCH_BY_DEEP_LINK = "launch_by_deep_link";
|
||||
private static final Logger LOGGER = LoggerFactory.INSTANCE.getLogger(LoggerFactory.Type.MISC);
|
||||
|
@ -72,12 +73,6 @@ public class MapFragment extends BaseMwmFragment
|
|||
@NonNull
|
||||
private SurfaceView mSurfaceView;
|
||||
|
||||
interface MapRenderingListener
|
||||
{
|
||||
void onRenderingInitialized();
|
||||
void onRenderingRestored();
|
||||
}
|
||||
|
||||
private void setupWidgets(int width, int height)
|
||||
{
|
||||
mHeight = height;
|
||||
|
@ -137,20 +132,30 @@ public class MapFragment extends BaseMwmFragment
|
|||
nativeApplyWidgets();
|
||||
}
|
||||
|
||||
private void onRenderingInitialized()
|
||||
@Override
|
||||
public void onRenderingCreated()
|
||||
{
|
||||
final Activity activity = getActivity();
|
||||
if (isAdded() && activity instanceof MapRenderingListener)
|
||||
((MapRenderingListener) activity).onRenderingInitialized();
|
||||
((MapRenderingListener) activity).onRenderingCreated();
|
||||
}
|
||||
|
||||
private void onRenderingRestored()
|
||||
@Override
|
||||
public void onRenderingRestored()
|
||||
{
|
||||
final Activity activity = getActivity();
|
||||
if (isAdded() && activity instanceof MapRenderingListener)
|
||||
((MapRenderingListener) activity).onRenderingRestored();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onRenderingInitializationFinished()
|
||||
{
|
||||
final Activity activity = getActivity();
|
||||
if (isAdded() && activity instanceof MapRenderingListener)
|
||||
((MapRenderingListener) activity).onRenderingInitializationFinished();
|
||||
}
|
||||
|
||||
private void reportUnsupported()
|
||||
{
|
||||
new AlertDialog.Builder(getActivity())
|
||||
|
@ -222,7 +227,7 @@ public class MapFragment extends BaseMwmFragment
|
|||
mSurfaceCreated = true;
|
||||
mSurfaceAttached = true;
|
||||
nativeResumeSurfaceRendering();
|
||||
onRenderingInitialized();
|
||||
onRenderingCreated();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -280,9 +285,17 @@ public class MapFragment extends BaseMwmFragment
|
|||
public void onStart()
|
||||
{
|
||||
super.onStart();
|
||||
nativeSetRenderingInitializationFinishedListener(this);
|
||||
LOGGER.d(TAG, "onStart");
|
||||
}
|
||||
|
||||
public void onStop()
|
||||
{
|
||||
super.onStop();
|
||||
nativeSetRenderingInitializationFinishedListener(null);
|
||||
LOGGER.d(TAG, "onStop");
|
||||
}
|
||||
|
||||
private boolean isThemeChangingProcess()
|
||||
{
|
||||
return mUiThemeOnPause != null && !mUiThemeOnPause.equals(Config.getCurrentUiTheme());
|
||||
|
@ -391,4 +404,5 @@ public class MapFragment extends BaseMwmFragment
|
|||
private static native void nativeSetupWidget(int widget, float x, float y, int anchor);
|
||||
private static native void nativeApplyWidgets();
|
||||
private static native void nativeCleanWidgets();
|
||||
private static native void nativeSetRenderingInitializationFinishedListener(MapRenderingListener listener);
|
||||
}
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
package com.mapswithme.maps;
|
||||
|
||||
interface MapRenderingListener
|
||||
{
|
||||
void onRenderingCreated();
|
||||
void onRenderingRestored();
|
||||
void onRenderingInitializationFinished();
|
||||
}
|
|
@ -135,7 +135,7 @@ public class MwmActivity extends BaseMwmFragmentActivity
|
|||
implements MapObjectListener,
|
||||
View.OnTouchListener,
|
||||
OnClickListener,
|
||||
MapFragment.MapRenderingListener,
|
||||
MapRenderingListener,
|
||||
CustomNavigateUpListener,
|
||||
RoutingController.Container,
|
||||
LocationHelper.UiCallback,
|
||||
|
@ -278,13 +278,12 @@ public class MwmActivity extends BaseMwmFragmentActivity
|
|||
}
|
||||
|
||||
@Override
|
||||
public void onRenderingInitialized()
|
||||
public void onRenderingCreated()
|
||||
{
|
||||
checkMeasurementSystem();
|
||||
checkKitkatMigrationMove();
|
||||
|
||||
LocationHelper.INSTANCE.attach(this);
|
||||
runTasks();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -293,6 +292,12 @@ public class MwmActivity extends BaseMwmFragmentActivity
|
|||
runTasks();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onRenderingInitializationFinished()
|
||||
{
|
||||
runTasks();
|
||||
}
|
||||
|
||||
private void myPositionClick()
|
||||
{
|
||||
mLocationErrorDialogAnnoying = false;
|
||||
|
|
|
@ -671,7 +671,7 @@ BackendRenderer::Routine::Routine(BackendRenderer & renderer) : m_renderer(rende
|
|||
void BackendRenderer::Routine::Do()
|
||||
{
|
||||
LOG(LINFO, ("Start routine."));
|
||||
m_renderer.OnContextCreate();
|
||||
m_renderer.CreateContext();
|
||||
while (!IsCancelled())
|
||||
{
|
||||
RENDER_FRAME(m_renderer.RenderFrame());
|
||||
|
|
|
@ -44,8 +44,9 @@ public:
|
|||
ref_ptr<dp::GraphicsContextFactory> factory, ref_ptr<dp::TextureManager> texMng,
|
||||
MapDataProvider const & model, TUpdateCurrentCountryFn const & updateCurrentCountryFn,
|
||||
ref_ptr<RequestedTiles> requestedTiles, bool allow3dBuildings, bool trafficEnabled,
|
||||
bool simplifiedTrafficColors, TIsUGCFn && isUGCFn)
|
||||
: BaseRenderer::Params(apiVersion, commutator, factory, texMng)
|
||||
bool simplifiedTrafficColors, TIsUGCFn && isUGCFn,
|
||||
OnGraphicsContextInitialized const & onGraphicsContextInitialized)
|
||||
: BaseRenderer::Params(apiVersion, commutator, factory, texMng, onGraphicsContextInitialized)
|
||||
, m_model(model)
|
||||
, m_updateCurrentCountryFn(updateCurrentCountryFn)
|
||||
, m_requestedTiles(requestedTiles)
|
||||
|
|
|
@ -5,6 +5,9 @@
|
|||
|
||||
namespace df
|
||||
{
|
||||
// static
|
||||
std::atomic<uint8_t> BaseRenderer::m_contextCounter(0);
|
||||
|
||||
BaseRenderer::BaseRenderer(ThreadsCommutator::ThreadName name, Params const & params)
|
||||
: m_apiVersion(params.m_apiVersion)
|
||||
, m_commutator(params.m_commutator)
|
||||
|
@ -15,6 +18,7 @@ BaseRenderer::BaseRenderer(ThreadsCommutator::ThreadName name, Params const & pa
|
|||
, m_renderingEnablingCompletionHandler(nullptr)
|
||||
, m_wasNotified(false)
|
||||
, m_wasContextReset(false)
|
||||
, m_onGraphicsContextInitialized(params.m_onGraphicsContextInitialized)
|
||||
{
|
||||
m_commutator->RegisterThread(m_threadName, this);
|
||||
}
|
||||
|
@ -103,6 +107,16 @@ bool BaseRenderer::FilterContextDependentMessage(ref_ptr<Message> msg)
|
|||
return msg->IsGraphicsContextDependent();
|
||||
}
|
||||
|
||||
void BaseRenderer::CreateContext()
|
||||
{
|
||||
OnContextCreate();
|
||||
|
||||
m_contextCounter++;
|
||||
uint8_t constexpr kContextCount = 2;
|
||||
if (m_contextCounter == kContextCount && m_onGraphicsContextInitialized)
|
||||
m_onGraphicsContextInitialized();
|
||||
}
|
||||
|
||||
void BaseRenderer::CheckRenderingEnabled()
|
||||
{
|
||||
if (!m_isEnabled)
|
||||
|
@ -114,6 +128,8 @@ void BaseRenderer::CheckRenderingEnabled()
|
|||
using namespace std::placeholders;
|
||||
EnableMessageFiltering(std::bind(&BaseRenderer::FilterContextDependentMessage, this, _1));
|
||||
OnContextDestroy();
|
||||
CHECK(m_contextCounter > 0, ());
|
||||
m_contextCounter--;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -161,7 +177,7 @@ void BaseRenderer::CheckRenderingEnabled()
|
|||
OnRenderingEnabled();
|
||||
|
||||
if (needCreateContext)
|
||||
OnContextCreate();
|
||||
CreateContext();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -27,24 +27,28 @@ extern void RenderFrameMediator(std::function<void()> && renderFrameFunction);
|
|||
|
||||
namespace df
|
||||
{
|
||||
using OnGraphicsContextInitialized = std::function<void()>;
|
||||
|
||||
class BaseRenderer : public MessageAcceptor
|
||||
{
|
||||
public:
|
||||
struct Params
|
||||
{
|
||||
Params(dp::ApiVersion apiVersion, ref_ptr<ThreadsCommutator> commutator,
|
||||
ref_ptr<dp::GraphicsContextFactory> factory, ref_ptr<dp::TextureManager> texMng)
|
||||
ref_ptr<dp::GraphicsContextFactory> factory, ref_ptr<dp::TextureManager> texMng,
|
||||
OnGraphicsContextInitialized const & onGraphicsContextInitialized)
|
||||
: m_apiVersion(apiVersion)
|
||||
, m_commutator(commutator)
|
||||
, m_oglContextFactory(factory)
|
||||
, m_texMng(texMng)
|
||||
{
|
||||
}
|
||||
, m_onGraphicsContextInitialized(onGraphicsContextInitialized)
|
||||
{}
|
||||
|
||||
dp::ApiVersion m_apiVersion;
|
||||
ref_ptr<ThreadsCommutator> m_commutator;
|
||||
ref_ptr<dp::GraphicsContextFactory> m_oglContextFactory;
|
||||
ref_ptr<dp::TextureManager> m_texMng;
|
||||
OnGraphicsContextInitialized m_onGraphicsContextInitialized;
|
||||
};
|
||||
|
||||
BaseRenderer(ThreadsCommutator::ThreadName name, Params const & params);
|
||||
|
@ -66,6 +70,8 @@ protected:
|
|||
void StartThread();
|
||||
void StopThread();
|
||||
|
||||
void CreateContext();
|
||||
|
||||
void CheckRenderingEnabled();
|
||||
|
||||
virtual std::unique_ptr<threads::IRoutine> CreateRoutine() = 0;
|
||||
|
@ -90,6 +96,9 @@ private:
|
|||
bool m_wasNotified;
|
||||
std::atomic<bool> m_wasContextReset;
|
||||
|
||||
OnGraphicsContextInitialized m_onGraphicsContextInitialized;
|
||||
static std::atomic<uint8_t> m_contextCounter;
|
||||
|
||||
bool FilterContextDependentMessage(ref_ptr<Message> msg);
|
||||
void SetRenderingEnabled(bool const isEnabled);
|
||||
void Notify();
|
||||
|
|
|
@ -85,7 +85,8 @@ DrapeEngine::DrapeEngine(Params && params)
|
|||
params.m_allow3dBuildings,
|
||||
params.m_trafficEnabled,
|
||||
params.m_blockTapEvents,
|
||||
std::move(effects));
|
||||
std::move(effects),
|
||||
params.m_onGraphicsContextInitialized);
|
||||
|
||||
m_frontend = make_unique_dp<FrontendRenderer>(std::move(frParams));
|
||||
|
||||
|
@ -99,7 +100,8 @@ DrapeEngine::DrapeEngine(Params && params)
|
|||
params.m_allow3dBuildings,
|
||||
params.m_trafficEnabled,
|
||||
params.m_simplifiedTrafficColors,
|
||||
std::move(params.m_isUGCFn));
|
||||
std::move(params.m_isUGCFn),
|
||||
params.m_onGraphicsContextInitialized);
|
||||
|
||||
m_backend = make_unique_dp<BackendRenderer>(std::move(brParams));
|
||||
|
||||
|
|
|
@ -70,7 +70,8 @@ public:
|
|||
bool isAutozoomEnabled,
|
||||
bool simplifiedTrafficColors,
|
||||
OverlaysShowStatsCallback && overlaysShowStatsCallback,
|
||||
TIsUGCFn && isUGCFn)
|
||||
TIsUGCFn && isUGCFn,
|
||||
OnGraphicsContextInitialized && onGraphicsContextInitialized)
|
||||
: m_apiVersion(apiVersion)
|
||||
, m_factory(factory)
|
||||
, m_viewport(viewport)
|
||||
|
@ -91,6 +92,7 @@ public:
|
|||
, m_simplifiedTrafficColors(simplifiedTrafficColors)
|
||||
, m_overlaysShowStatsCallback(std::move(overlaysShowStatsCallback))
|
||||
, m_isUGCFn(std::move(isUGCFn))
|
||||
, m_onGraphicsContextInitialized(std::move(onGraphicsContextInitialized))
|
||||
{}
|
||||
|
||||
dp::ApiVersion m_apiVersion;
|
||||
|
@ -113,6 +115,7 @@ public:
|
|||
bool m_simplifiedTrafficColors;
|
||||
OverlaysShowStatsCallback m_overlaysShowStatsCallback;
|
||||
TIsUGCFn m_isUGCFn;
|
||||
OnGraphicsContextInitialized m_onGraphicsContextInitialized;
|
||||
};
|
||||
|
||||
DrapeEngine(Params && params);
|
||||
|
|
|
@ -2339,7 +2339,7 @@ void FrontendRenderer::Routine::Do()
|
|||
m_renderer.m_myPositionController->SetListener(ref_ptr<MyPositionController::Listener>(&m_renderer));
|
||||
m_renderer.m_userEventStream.SetListener(ref_ptr<UserEventStream::Listener>(&m_renderer));
|
||||
|
||||
m_renderer.OnContextCreate();
|
||||
m_renderer.CreateContext();
|
||||
|
||||
#if defined(DEBUG) || defined(DEBUG_DRAPE_XCODE) || defined(SCENARIO_ENABLE)
|
||||
gui::DrapeGui::Instance().GetScaleFpsHelper().SetVisible(true);
|
||||
|
|
|
@ -89,8 +89,9 @@ public:
|
|||
TUserPositionChangedFn const & positionChangedFn, ref_ptr<RequestedTiles> requestedTiles,
|
||||
OverlaysShowStatsCallback && overlaysShowStatsCallback,
|
||||
bool allow3dBuildings, bool trafficEnabled, bool blockTapEvents,
|
||||
std::vector<PostprocessRenderer::Effect> && enabledEffects)
|
||||
: BaseRenderer::Params(apiVersion, commutator, factory, texMng)
|
||||
std::vector<PostprocessRenderer::Effect> && enabledEffects,
|
||||
OnGraphicsContextInitialized const & onGraphicsContextInitialized)
|
||||
: BaseRenderer::Params(apiVersion, commutator, factory, texMng, onGraphicsContextInitialized)
|
||||
, m_myPositionParams(std::move(myPositionParams))
|
||||
, m_viewport(viewport)
|
||||
, m_modelViewChangedFn(modelViewChangedFn)
|
||||
|
|
|
@ -1890,6 +1890,15 @@ void Framework::CreateDrapeEngine(ref_ptr<dp::GraphicsContextFactory> contextFac
|
|||
m_localAdsManager.GetStatistics().RegisterEvents(std::move(statEvents));
|
||||
};
|
||||
|
||||
auto onGraphicsContextInitialized = [this]()
|
||||
{
|
||||
GetPlatform().RunTask(Platform::Thread::Gui, [this]()
|
||||
{
|
||||
if (m_onGraphicsContextInitialized)
|
||||
m_onGraphicsContextInitialized();
|
||||
});
|
||||
};
|
||||
|
||||
auto isUGCFn = [this](FeatureID const & id)
|
||||
{
|
||||
auto const ugc = m_ugcApi->GetLoader().GetUGC(id);
|
||||
|
@ -1917,7 +1926,8 @@ void Framework::CreateDrapeEngine(ref_ptr<dp::GraphicsContextFactory> contextFac
|
|||
move(myPositionModeChangedFn), allow3dBuildings, trafficEnabled,
|
||||
params.m_isChoosePositionMode, params.m_isChoosePositionMode, GetSelectedFeatureTriangles(),
|
||||
m_routingManager.IsRoutingActive() && m_routingManager.IsRoutingFollowing(),
|
||||
isAutozoomEnabled, simplifiedTrafficColors, move(overlaysShowStatsFn), move(isUGCFn));
|
||||
isAutozoomEnabled, simplifiedTrafficColors, move(overlaysShowStatsFn), move(isUGCFn),
|
||||
move(onGraphicsContextInitialized));
|
||||
|
||||
m_drapeEngine = make_unique_dp<df::DrapeEngine>(move(p));
|
||||
m_drapeEngine->SetModelViewListener([this](ScreenBase const & screen)
|
||||
|
@ -2030,6 +2040,11 @@ void Framework::SetRenderingDisabled(bool destroySurface)
|
|||
m_drapeEngine->SetRenderingDisabled(destroySurface);
|
||||
}
|
||||
|
||||
void Framework::SetGraphicsContextInitializationHandler(df::OnGraphicsContextInitialized && handler)
|
||||
{
|
||||
m_onGraphicsContextInitialized = std::move(handler);
|
||||
}
|
||||
|
||||
void Framework::EnableDebugRectRendering(bool enabled)
|
||||
{
|
||||
if (m_drapeEngine)
|
||||
|
|
|
@ -516,6 +516,8 @@ public:
|
|||
void SetRenderingEnabled(ref_ptr<dp::GraphicsContextFactory> contextFactory = nullptr);
|
||||
void SetRenderingDisabled(bool destroySurface);
|
||||
|
||||
void SetGraphicsContextInitializationHandler(df::OnGraphicsContextInitialized && handler);
|
||||
|
||||
void OnRecoverSurface(int width, int height, bool recreateContextDependentResources);
|
||||
void OnDestroySurface();
|
||||
|
||||
|
@ -525,6 +527,8 @@ private:
|
|||
/// Depends on initialized Drape engine.
|
||||
void LoadViewport();
|
||||
|
||||
df::OnGraphicsContextInitialized m_onGraphicsContextInitialized;
|
||||
|
||||
public:
|
||||
void ConnectToGpsTracker();
|
||||
void DisconnectFromGpsTracker();
|
||||
|
|
Loading…
Add table
Reference in a new issue