1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
|
/*
* 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.
*
*/
//------------------------------------------------------------------------------
//
// Run a json script layout file
//
// - watches an named file and reloads actor tree if the file changes
// ie run
// builder-run layout.json
//
// and edit layout.json in a text editor saving to trigger the reload
//
//------------------------------------------------------------------------------
#include <dali/dali.h>
#include <dali-toolkit/dali-toolkit.h>
#include <dali-toolkit/public-api/builder/builder.h>
#include <dali-toolkit/public-api/builder/tree-node.h>
#include <iostream>
#include <map>
#include <string>
#include <fstream>
#include <streambuf>
#include "sys/stat.h"
#include <ctime>
#include <dali/integration-api/debug.h>
#define TOKEN_STRING(x) #x
using namespace Dali;
using namespace Dali::Toolkit;
namespace
{
std::string JSON_BROKEN(" \
{ \
'stage': \
[ \
{ \
'type':'TextActor', \
'size': [50,50,1], \
'parent-origin': 'CENTER', \
'text':'COULD NOT LOAD JSON FILE' \
} \
] \
} \
");
std::string ReplaceQuotes(const std::string &single_quoted)
{
std::string s(single_quoted);
// wrong as no embedded quote but had regex link problems
std::replace(s.begin(), s.end(), '\'', '"');
return s;
}
} // anon namespace
//------------------------------------------------------------------------------
//
//
//
//------------------------------------------------------------------------------
class FileWatcher
{
public:
FileWatcher(void);
~FileWatcher(void);
explicit FileWatcher(const std::string &fn): mLastTime(0) { SetFilename(fn) ; };
void SetFilename(const std::string &fn);
std::string GetFilename();
bool FileHasChanged(void);
std::string GetFileContents(void) { return GetFileContents(mstringPath) ; };
private:
// compiler does
// FileWatcher(const FileWatcher&);
// FileWatcher &operator=(const FileWatcher &);
std::time_t mLastTime;
std::string mstringPath;
std::string GetFileContents(const std::string &fn)
{
std::ifstream t(fn.c_str());
return std::string((std::istreambuf_iterator<char>(t)), std::istreambuf_iterator<char>());
};
};
FileWatcher::FileWatcher(void) : mLastTime(0)
{
}
bool FileWatcher::FileHasChanged(void)
{
struct stat buf;
if(0 != stat(mstringPath.c_str(), &buf))
{
DALI_LOG_WARNING("File does not exist '%s'\n", mstringPath.c_str());
return false;
}
else
{
if(buf.st_mtime > mLastTime)
{
mLastTime = buf.st_mtime;
return true;
}
else
{
mLastTime = buf.st_mtime;
return false;
}
}
return false;
}
FileWatcher::~FileWatcher()
{
}
void FileWatcher::SetFilename(const std::string &fn)
{
mstringPath = fn;
}
std::string FileWatcher::GetFilename(void)
{
return mstringPath;
}
//------------------------------------------------------------------------------
//
//
//
//------------------------------------------------------------------------------
class ExampleApp : public ConnectionTracker
{
public:
ExampleApp(Application &app) : mApp(app)
{
app.InitSignal().Connect(this, &ExampleApp::Create);
}
~ExampleApp() {}
public:
void SetJSONFilename(std::string const &fn) { fw.SetFilename(fn) ; };
void Create(Application& app)
{
mTimer = Timer::New( 500 ); // ms
mTimer.TickSignal().Connect( this, &ExampleApp::OnTimer);
mTimer.Start();
// Connect to key events in order to exit
Stage::GetCurrent().KeyEventSignal().Connect(this, &ExampleApp::OnKeyEvent);
}
private:
Application& mApp;
Layer mRootLayer;
FileWatcher fw;
Timer mTimer;
void ReloadJsonFile(Builder& builder, Layer& layer)
{
Stage stage = Stage::GetCurrent();
builder = Builder::New();
builder.QuitSignal().Connect( this, &ExampleApp::OnBuilderQuit );
Property::Map defaultDirs;
defaultDirs[ TOKEN_STRING(DALI_IMAGE_DIR) ] = DALI_IMAGE_DIR;
defaultDirs[ TOKEN_STRING(DALI_MODEL_DIR) ] = DALI_MODEL_DIR;
defaultDirs[ TOKEN_STRING(DALI_SCRIPT_DIR) ] = DALI_SCRIPT_DIR;
builder.AddConstants( defaultDirs );
if(!layer)
{
layer = Layer::New();
layer.SetParentOrigin(ParentOrigin::CENTER);
layer.SetAnchorPoint(AnchorPoint::CENTER);
layer.SetSize( stage.GetRootLayer().GetCurrentSize() );
stage.GetRootLayer().Add(layer);
// render tasks may have been setup last load so remove them
RenderTaskList taskList = stage.GetRenderTaskList();
if( taskList.GetTaskCount() > 1 )
{
typedef std::vector<RenderTask> Collection;
typedef Collection::iterator ColIter;
Collection tasks;
for(unsigned int i = 1; i < taskList.GetTaskCount(); ++i)
{
tasks.push_back( taskList.GetTask(i) );
}
for(ColIter iter = tasks.begin(); iter != tasks.end(); ++iter)
{
taskList.RemoveTask(*iter);
}
RenderTask defaultTask = taskList.GetTask(0);
defaultTask.SetSourceActor( stage.GetRootLayer() );
defaultTask.SetTargetFrameBuffer( FrameBufferImage() );
}
}
unsigned int numChildren = layer.GetChildCount();
for(unsigned int i=0; i<numChildren; ++i)
{
layer.Remove( layer.GetChildAt(0) );
}
std::string data(fw.GetFileContents());
try
{
builder.LoadFromString(data);
}
catch(...)
{
builder.LoadFromString(ReplaceQuotes(JSON_BROKEN));
}
builder.AddActors( layer );
}
bool OnTimer(void)
{
if(fw.FileHasChanged())
{
ReloadJsonFile( mBuilder, mRootLayer );
}
return true;
}
// Process Key events to Quit on back-key
void OnKeyEvent( const KeyEvent& event )
{
if( event.state == KeyEvent::Down )
{
if( IsKey( event, Dali::DALI_KEY_ESCAPE ) || IsKey( event, Dali::DALI_KEY_BACK ) )
{
mApp.Quit();
}
}
}
void OnBuilderQuit()
{
mApp.Quit();
}
Builder mBuilder;
};
//------------------------------------------------------------------------------
//
//
//
//------------------------------------------------------------------------------
int main(int argc, char **argv)
{
Application dali_app = Application::New(&argc, &argv);
ExampleApp app(dali_app);
if(argc > 1)
{
std::cout << "Loading file:" << argc << " " << argv[1] << std::endl;
app.SetJSONFilename(argv[1]);
}
else
{
DALI_ASSERT_ALWAYS(!"Specify JSON file on command line\n");
}
dali_app.MainLoop();
return 0;
}
|