2 * Copyright (c) 2014 Samsung Electronics Co., Ltd.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
18 //------------------------------------------------------------------------------
21 //------------------------------------------------------------------------------
24 #include <dali-toolkit/dali-toolkit.h>
25 #include <dali-toolkit/public-api/builder/builder.h>
26 #include <dali-toolkit/public-api/builder/tree-node.h>
27 #include <dali-toolkit/public-api/builder/json-parser.h>
40 #include <dali/integration-api/debug.h>
41 #include "shared/view.h"
43 #define TOKEN_STRING(x) #x
46 using namespace Dali::Toolkit;
51 const char* BACKGROUND_IMAGE( "" );
52 const char* TOOLBAR_IMAGE( DALI_IMAGE_DIR "top-bar.png" );
53 const char* EDIT_IMAGE( DALI_IMAGE_DIR "icon-change.png" );
55 std::string USER_DIRECTORY;
57 std::string JSON_BROKEN(" \
64 'parent-origin': 'CENTER', \
65 'text':'COULD NOT LOAD JSON FILE' \
71 std::string ReplaceQuotes(const std::string &single_quoted)
73 std::string s(single_quoted);
75 // wrong as no embedded quote but had regex link problems
76 std::replace(s.begin(), s.end(), '\'', '"');
81 std::string GetFileContents(const std::string &fn)
83 std::ifstream t(fn.c_str());
84 return std::string((std::istreambuf_iterator<char>(t)),
85 std::istreambuf_iterator<char>());
88 typedef std::vector<std::string> FileList;
90 void DirectoryFileList(const std::string& directory, FileList& files)
94 d = opendir(directory.c_str());
97 while ((dir = readdir(d)) != NULL)
99 if (dir->d_type == DT_REG)
101 files.push_back( directory + std::string(dir->d_name) );
109 void DirectoryFilesByType(const std::string& dir, const std::string& fileType /* ie "json" */, FileList& files)
111 typedef FileList Collection;
112 typedef FileList::iterator Iter;
115 DirectoryFileList(dir, allFiles);
117 for(Iter iter = allFiles.begin(); iter != allFiles.end(); ++iter)
119 size_t pos = (*iter).rfind( '.' );
120 if( pos != std::string::npos )
122 if( (*iter).substr( pos+1 ) == fileType )
124 files.push_back( (*iter) );
130 const std::string ShortName( const std::string& name )
132 size_t pos = name.rfind( '/' );
134 if( pos != std::string::npos )
136 return name.substr( pos );
144 static Vector3 SetItemSize(unsigned int numberOfColumns, float layoutWidth, float sideMargin, float columnSpacing)
146 return Vector3(layoutWidth, 50, 1);
149 //------------------------------------------------------------------------------
153 //------------------------------------------------------------------------------
159 explicit FileWatcher(const std::string &fn) { SetFilename(fn) ; };
161 void SetFilename(const std::string &fn);
162 std::string GetFilename() const;
164 bool FileHasChanged(void);
165 std::string GetFileContents(void) const { return ::GetFileContents(mstringPath) ; };
169 // FileWatcher(const FileWatcher&);
170 // FileWatcher &operator=(const FileWatcher &);
172 std::time_t mLastTime;
173 std::string mstringPath;
177 FileWatcher::FileWatcher(void) : mLastTime(0)
181 bool FileWatcher::FileHasChanged(void)
185 if(0 != stat(mstringPath.c_str(), &buf))
191 if(buf.st_mtime > mLastTime)
193 mLastTime = buf.st_mtime;
198 mLastTime = buf.st_mtime;
206 FileWatcher::~FileWatcher()
210 void FileWatcher::SetFilename(const std::string &fn)
213 FileHasChanged(); // update last time
216 std::string FileWatcher::GetFilename(void) const
225 //------------------------------------------------------------------------------
229 //------------------------------------------------------------------------------
230 class ExampleApp : public ConnectionTracker, public Toolkit::ItemFactory
233 ExampleApp(Application &app) : mApp(app)
235 app.InitSignal().Connect(this, &ExampleApp::Create);
242 void SetTitle(const std::string& title)
247 bool OnToolSelectLayout( Toolkit::Button button )
249 bool on = mItemView.IsVisible();
263 void LeaveSelection()
268 void EnterSelection()
270 Stage stage = Stage::GetCurrent();
272 mTapDetector = TapGestureDetector::New();
273 mTapDetector.DetectedSignal().Connect( this, &ExampleApp::OnTap );
277 stage.Remove( mItemView );
282 mItemView = ItemView::New(*this);
283 stage.Add( mItemView );
284 mItemView.SetParentOrigin(ParentOrigin::CENTER);
285 mItemView.SetAnchorPoint(AnchorPoint::CENTER);
286 mGridLayout = GridLayout::New();
287 mGridLayout->SetNumberOfColumns(1);
289 mGridLayout->SetItemSizeFunction(SetItemSize);
291 mGridLayout->SetTopMargin(DemoHelper::DEFAULT_VIEW_STYLE.mToolBarHeight);
293 mItemView.AddLayout(*mGridLayout);
295 Vector3 size(stage.GetSize());
296 mItemView.ActivateLayout(0, size, 0.0f/*immediate*/);
297 mItemView.SetKeyboardFocusable( true );
302 if( USER_DIRECTORY.size() )
304 DirectoryFilesByType( USER_DIRECTORY, "json", files );
308 DirectoryFilesByType( DALI_SCRIPT_DIR, "json", files );
311 std::sort(files.begin(), files.end());
314 for(FileList::iterator iter = files.begin(); iter != files.end(); ++iter)
316 JsonParser parser = JsonParser::New();
318 std::string data( GetFileContents( *iter ) );
320 parser.Parse( data );
322 if( parser.ParseError() )
324 std::cout << "Parser Error:" << *iter << std::endl;
325 std::cout << parser.GetErrorLineNumber() << "(" << parser.GetErrorColumn() << "):" << parser.GetErrorDescription() << std::endl;
329 if( parser.GetRoot() )
331 if( const TreeNode* node = parser.GetRoot()->Find("stage") )
333 // only those with a stage section
336 mFiles.push_back( *iter );
338 mItemView.InsertItem( Item(itemId,
339 MenuItem( ShortName( *iter ) ) ),
346 std::cout << "Ignored file (stage has no nodes?):" << *iter << std::endl;
351 std::cout << "Ignored file (no stage section):" << *iter << std::endl;
356 // Display item view on the stage
357 stage.Add( mItemView );
359 mItemView.SetVisible( true );
360 mBuilderLayer.SetVisible( false );
364 // Itemview renderes the previous items unless its scrolled. Not sure why at the moment so we force a scroll
365 mItemView.ScrollToItem(0, 0);
371 mTapDetector.Reset();
373 mItemView.SetVisible( false );
374 mBuilderLayer.SetVisible( true );
379 void OnTap( Actor actor, const TapGesture& tap )
381 ItemId id = mItemView.GetItemId( actor );
383 LoadFromFileList( id );
386 Actor MenuItem(const std::string& text)
393 if( mFileWatcher.FileHasChanged() )
395 LoadFromFile( mFileWatcher.GetFilename() );
401 void ReloadJsonFile(const std::string& filename, Builder& builder, Layer& layer)
403 Stage stage = Stage::GetCurrent();
405 builder = Builder::New();
406 builder.QuitSignal().Connect( this, &ExampleApp::OnBuilderQuit );
408 Property::Map defaultDirs;
409 defaultDirs[ TOKEN_STRING(DALI_IMAGE_DIR) ] = DALI_IMAGE_DIR;
410 defaultDirs[ TOKEN_STRING(DALI_MODEL_DIR) ] = DALI_MODEL_DIR;
411 defaultDirs[ TOKEN_STRING(DALI_SCRIPT_DIR) ] = DALI_SCRIPT_DIR;
413 builder.AddConstants( defaultDirs );
415 // render tasks may have been setup last load so remove them
416 RenderTaskList taskList = stage.GetRenderTaskList();
417 if( taskList.GetTaskCount() > 1 )
419 typedef std::vector<RenderTask> Collection;
420 typedef Collection::iterator ColIter;
423 for(unsigned int i = 1; i < taskList.GetTaskCount(); ++i)
425 tasks.push_back( taskList.GetTask(i) );
428 for(ColIter iter = tasks.begin(); iter != tasks.end(); ++iter)
430 taskList.RemoveTask(*iter);
433 RenderTask defaultTask = taskList.GetTask(0);
434 defaultTask.SetSourceActor( stage.GetRootLayer() );
435 defaultTask.SetTargetFrameBuffer( FrameBufferImage() );
438 unsigned int numChildren = layer.GetChildCount();
440 for(unsigned int i=0; i<numChildren; ++i)
442 layer.Remove( layer.GetChildAt(0) );
445 std::string data(GetFileContents(filename));
449 builder.LoadFromString(data);
453 builder.LoadFromString(ReplaceQuotes(JSON_BROKEN));
456 builder.AddActors( layer );
461 void LoadFromFileList( size_t index )
463 if( index < mFiles.size())
465 const std::string& name = mFiles[index];
466 mFileWatcher.SetFilename( name );
467 LoadFromFile( name );
471 void LoadFromFile( const std::string& name )
473 ReloadJsonFile( name, mBuilder, mBuilderLayer );
475 // do this here as GetCurrentSize()
476 mBuilderLayer.SetParentOrigin(ParentOrigin::CENTER);
477 mBuilderLayer.SetAnchorPoint(AnchorPoint::CENTER);
478 Dali::Vector3 size = Stage::GetCurrent().GetRootLayer().GetCurrentSize();
479 size.y -= DemoHelper::DEFAULT_VIEW_STYLE.mToolBarHeight;
480 mBuilderLayer.SetSize( size );
482 mBuilderLayer.LowerToBottom();
483 Stage::GetCurrent().GetRootLayer().RaiseToTop();
488 void Create(Application& app)
490 Stage stage = Stage::GetCurrent();
492 Stage::GetCurrent().KeyEventSignal().Connect(this, &ExampleApp::OnKeyEvent);
494 Layer contents = DemoHelper::CreateView( app,
503 mBuilderLayer = Layer::New();
504 stage.GetRootLayer().Add(mBuilderLayer);
507 // Create an edit mode button. (left of toolbar)
508 Toolkit::PushButton editButton = Toolkit::PushButton::New();
509 editButton.SetBackgroundImage( ResourceImage::New( EDIT_IMAGE ) );
510 editButton.ClickedSignal().Connect( this, &ExampleApp::OnToolSelectLayout);
511 editButton.SetLeaveRequired( true );
512 mToolBar.AddControl( editButton, DemoHelper::DEFAULT_VIEW_STYLE.mToolBarButtonPercentage, Toolkit::Alignment::HorizontalLeft, DemoHelper::DEFAULT_MODE_SWITCH_PADDING );
516 mTimer = Timer::New( 500 ); // ms
517 mTimer.TickSignal().Connect( this, &ExampleApp::OnTimer);
522 virtual unsigned int GetNumberOfItems()
524 return mFiles.size();
527 virtual Actor NewItem(unsigned int itemId)
529 DALI_ASSERT_DEBUG( itemId < mFiles.size() );
530 return MenuItem( ShortName( mFiles[itemId] ) );
534 * Main key event handler
536 void OnKeyEvent(const KeyEvent& event)
538 if(event.state == KeyEvent::Down)
540 if( IsKey( event, Dali::DALI_KEY_ESCAPE) || IsKey( event, Dali::DALI_KEY_BACK) )
542 if ( mItemView.IsVisible() )
555 * Event handler when Builder wants to quit (we only want to close the shown json unless we're at the top-level)
559 if ( mItemView.IsVisible() )
572 GridLayoutPtr mGridLayout;
576 unsigned int mOrientation;
578 Toolkit::ToolBar mToolBar;
582 Toolkit::Popup mMenu;
584 TapGestureDetector mTapDetector;
591 FileWatcher mFileWatcher;
597 //------------------------------------------------------------------------------
601 //------------------------------------------------------------------------------
602 int main(int argc, char **argv)
606 if(strcmp(argv[1], "-f") == 0)
608 USER_DIRECTORY = argv[2];
612 Application app = Application::New(&argc, &argv);
614 ExampleApp dali_app(app);