X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=automated-tests%2Fsrc%2Fdali-toolkit%2Fdali-toolkit-test-utils%2Ftest-application.cpp;h=e8d9be4293f3475cecc28c4d6989dd7bab97dc1f;hb=f4c1e7f52d49c3ce033b9ee4c3c7414b06a22d45;hp=5aa928e2a3dffa2d183171f212ffeb942ebb6e9e;hpb=fa6279fb2830427d5ab569ca14e6ade1557ef2fa;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/automated-tests/src/dali-toolkit/dali-toolkit-test-utils/test-application.cpp b/automated-tests/src/dali-toolkit/dali-toolkit-test-utils/test-application.cpp index 5aa928e..e8d9be4 100644 --- a/automated-tests/src/dali-toolkit/dali-toolkit-test-utils/test-application.cpp +++ b/automated-tests/src/dali-toolkit/dali-toolkit-test-utils/test-application.cpp @@ -1,18 +1,19 @@ -// -// Copyright (c) 2014 Samsung Electronics Co., Ltd. -// -// Licensed under the Flora License, Version 1.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://floralicense.org/license/ -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an AS IS BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// +/* + * Copyright (c) 2014 Samsung Electronics Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ #include "test-application.h" @@ -23,12 +24,15 @@ namespace Dali TestApplication::TestApplication( size_t surfaceWidth, size_t surfaceHeight, float horizontalDpi, - float verticalDpi) + float verticalDpi, + ResourcePolicy::DataRetention policy) : mCore( NULL ), mSurfaceWidth( surfaceWidth ), mSurfaceHeight( surfaceHeight ), mFrame( 0u ), - mDpi( horizontalDpi, verticalDpi ) + mDpi( horizontalDpi, verticalDpi ), + mLastVSyncTime(0u), + mDataRetentionPolicy( policy ) { Initialize(); } @@ -37,12 +41,15 @@ TestApplication::TestApplication( bool initialize, size_t surfaceWidth, size_t surfaceHeight, float horizontalDpi, - float verticalDpi ) + float verticalDpi, + ResourcePolicy::DataRetention policy) : mCore( NULL ), mSurfaceWidth( surfaceWidth ), mSurfaceHeight( surfaceHeight ), mFrame( 0u ), - mDpi( horizontalDpi, verticalDpi ) + mDpi( horizontalDpi, verticalDpi ), + mLastVSyncTime(0u), + mDataRetentionPolicy( policy ) { if ( initialize ) { @@ -52,12 +59,16 @@ TestApplication::TestApplication( bool initialize, void TestApplication::Initialize() { + // We always need the first update! + mStatus.keepUpdating = Integration::KeepUpdating::STAGE_KEEP_RENDERING; + mCore = Dali::Integration::Core::New( mRenderController, mPlatformAbstraction, mGlAbstraction, mGlSyncAbstraction, - mGestureManager ); + mGestureManager, + mDataRetentionPolicy); mCore->ContextCreated(); mCore->SurfaceResized( mSurfaceWidth, mSurfaceHeight ); @@ -65,6 +76,8 @@ void TestApplication::Initialize() Dali::Integration::Log::LogFunction logFunction(&TestApplication::LogMessage); Dali::Integration::Log::InstallLogFunction(logFunction); + + mCore->SceneCreated(); } TestApplication::~TestApplication() @@ -141,15 +154,33 @@ void TestApplication::SetSurfaceWidth( unsigned int width, unsigned height ) mCore->SurfaceResized( mSurfaceWidth, mSurfaceHeight ); } -bool TestApplication::Render( unsigned int intervalMilliseconds ) +void TestApplication::SetTopMargin( unsigned int margin ) { - // Update Time values - mPlatformAbstraction.IncrementGetTimeResult( intervalMilliseconds ); - unsigned int seconds(0u), microseconds(0u); - mPlatformAbstraction.GetTimeMicroseconds( seconds, microseconds ); + mCore->SetTopMargin( margin ); +} + +void TestApplication::DoUpdate( unsigned int intervalMilliseconds, const char* location ) +{ + if( GetUpdateStatus() == 0 && + mRenderStatus.NeedsUpdate() == false && + ! GetRenderController().WasCalled(TestRenderController::RequestUpdateFunc) ) + { + fprintf(stderr, "WARNING - Update not required :%s\n", location==NULL?"NULL":location); + } + + unsigned int nextVSyncTime = mLastVSyncTime + intervalMilliseconds; + float elapsedSeconds = intervalMilliseconds / 1e3f; + + mCore->Update( elapsedSeconds, mLastVSyncTime, nextVSyncTime, mStatus ); + + GetRenderController().Initialize(); - mCore->VSync( mFrame, seconds, microseconds ); - mCore->Update( mStatus ); + mLastVSyncTime = nextVSyncTime; +} + +bool TestApplication::Render( unsigned int intervalMilliseconds, const char* location ) +{ + DoUpdate( intervalMilliseconds, location ); mCore->Render( mRenderStatus ); mFrame++; @@ -164,17 +195,15 @@ unsigned int TestApplication::GetUpdateStatus() bool TestApplication::UpdateOnly( unsigned int intervalMilliseconds ) { - // Update Time values - mPlatformAbstraction.IncrementGetTimeResult( intervalMilliseconds ); - unsigned int seconds(0u), microseconds(0u); - mPlatformAbstraction.GetTimeMicroseconds( seconds, microseconds ); - - mCore->VSync( mFrame, seconds, microseconds ); - mCore->Update( mStatus ); - + DoUpdate( intervalMilliseconds ); return mStatus.KeepUpdating(); } +bool TestApplication::GetRenderNeedsUpdate() +{ + return mRenderStatus.NeedsUpdate(); +} + bool TestApplication::RenderOnly( ) { // Update Time values @@ -187,7 +216,8 @@ bool TestApplication::RenderOnly( ) void TestApplication::ResetContext() { - mCore->ContextToBeDestroyed(); + mCore->ContextDestroyed(); + mGlAbstraction.Initialize(); mCore->ContextCreated(); }