forked from jhergel/icesl-nodes
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathNodeLua.cpp
More file actions
388 lines (350 loc) · 13.1 KB
/
Copy pathNodeLua.cpp
File metadata and controls
388 lines (350 loc) · 13.1 KB
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
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
#include "graphMaker.h"
#include "NodeLua.h"
#include <regex>
using namespace std;
//-------------------------------------------------------
void Node::onChange(){
GraphMaker::getInstance().onChange();
}
//-------------------------------------------------------
void Node::makeNewInput(string name){
if(getPrevNamed().find(name) != getPrevNamed().end())return;
getPrevNamed().insert(std::make_pair(name,make_pair(nullptr,"")));
getInputName().push_back(name);
}
//-------------------------------------------------------
void Node::makeNewOutput(string name){
if(getNextNamed().find(name) != getNextNamed().end())return;
getNextNamed()[name] = nullptr;
getoutputName().push_back(name);
return;
}
//-------------------------------------------------------
void Node::removeConnectionTo(Node* n)
{
for(auto edge: prevNamed){
if(edge.second.first == n){
prevNamed[edge.first] = make_pair(nullptr,"");
}
}
for(auto edge: nextNamed){
if(edge.second == n){
nextNamed[edge.first] = nullptr;
}
}
}
//-------------------------------------------------------
std::string Node::codeBefore(){
//write the current Id of the node
string s = string("setfenv(1, _G0) --go back to global initialization\n");
s += string("__curentNodeId = ");
s += to_string((int64_t)this);
s += "\n";
for(auto edge:this->prevNamed){
string s2 = to_string((int64_t)edge.second.first);
s+="__inputmap[\""+edge.first+"\"] = \"" + edge.second.second+s2+"\"\n";
}
s+= loadFileIntoString((Resources::path() + "/lua_constant/set_up_env.lua").c_str());
if(hasEmitAndNotOutput && !m_emitingNode){
s+= loadFileIntoString((Resources::path() + "/lua_constant/gather_emit.lua").c_str());
}
for(auto& st: tweaks){
Tweak* t = st.second;
s+="__tweaksTable[\""+t->getName()+"\"] = " + t->getValueToLua() +"\n";
}
return s;
}
//-------------------------------------------------------
std::string Node::codeAfter()
{
string s = "";
if(hasEmitAndNotOutput && !m_emitingNode){//overwrite emit in node space in lua
s += loadFileIntoString((Resources::path() + "/lua_constant/gather_emit_end.lua").c_str());
}
return s;
}
//------------------------------------------------------------------
void Node::reloadProgram(){
m_Program = loadFileIntoString(m_Path.c_str());
m_timeStamp = fileTimestamp(m_Path);
parse();
onChange();
}
//-------------------------------------------------------
//create the tweaks by parsing the lua file.
void Node::parseTweaks()
{
//first remove comm's
string toParse = m_Program;
string uncommented;
std::regex nocomment("(--\\[\\[(.|\n)*?\\]\\]--)");
regex_replace(std::back_inserter(uncommented),toParse.begin(),toParse.end(),nocomment,"$2");
std::regex nocomment2("(--.*\\n)");
string uncommented2;
regex_replace(std::back_inserter(uncommented2),uncommented.begin(),uncommented.end(),nocomment2,"$2");
string float_expr = "[ \\n]*(-?[0-9]*[.]?[0-9]*(?:[Ee][+-]?[0-9]+)?)[ \\n]*";
string name_expr = "[ \\n]*[\"\']([^\'\"]*)[\"\'][ \\n]*";
//look for node_string
try{
string income = uncommented2;
string expr = string("node_string\\(") + name_expr + "," + name_expr + "\\)";
std::regex scalarEx(expr);
std::regex_iterator<std::string::iterator> rit ( income.begin(), income.end(), scalarEx );
std::regex_iterator<std::string::iterator> rend;
while(rit != rend){
if(tweaks.find(rit->str(1))==tweaks.end())tweaks[rit->str(1)] = new TweakString(this,rit->str(1),rit->str(2));
rit++;
}
}catch (const std::regex_error& e) {
std::cout << "regex_error caught: " << e.what() << '\n';
}
try{
string income = uncommented2;
string expr = string("node_scalar\\(") + name_expr + "," + float_expr + "\\)";
std::regex scalarEx(expr);
std::regex_iterator<std::string::iterator> rit ( income.begin(), income.end(), scalarEx );
std::regex_iterator<std::string::iterator> rend;
while(rit != rend){
if(tweaks.find(rit->str(1))==tweaks.end())tweaks[rit->str(1)] = new TweakScalar(this,rit->str(1),stof(rit->str(2)));
rit++;
}
}catch (const std::regex_error& e) {
std::cout << "regex_error caught: " << e.what() << '\n';
}
try{
string income = uncommented2;
string expr = string("node_scalar\\(") + name_expr + "," + float_expr + "," + float_expr + "," + float_expr + "\\)";
std::regex scalarEx(expr);
std::regex_iterator<std::string::iterator> rit ( income.begin(), income.end(), scalarEx );
std::regex_iterator<std::string::iterator> rend;
while(rit != rend){
if(tweaks.find(rit->str(1))==tweaks.end())tweaks[rit->str(1)] = new TweakSlider(this,rit->str(1),stof(rit->str(2)),stof(rit->str(3)),stof(rit->str(4)));
rit++;
}
}catch (const std::regex_error& e) {
std::cout << "regex_error caught: " << e.what() << '\n';
}
try{
string income = uncommented2;
const char* expr = "node_int\\([ \\n]*[\"\']([\\w_]*)[\"\'][ \\n]*,[ \\n]*(-?[0-9]*)[ \\n]*\\)";
std::regex scalarEx(expr);
std::regex_iterator<std::string::iterator> rit ( income.begin(), income.end(), scalarEx );
std::regex_iterator<std::string::iterator> rend;
while(rit != rend){
if(tweaks.find(rit->str(1))==tweaks.end())tweaks[rit->str(1)] = new TweakInt(this,rit->str(1),stoi(rit->str(2)));
rit++;
}
}catch (const std::regex_error& e) {
std::cout << "regex_error caught: " << e.what() << '\n';
}
try{
string income = uncommented2;
string expr = string("node_path\\(") + name_expr + "," + name_expr + "\\)";
std::regex scalarEx(expr);
std::regex_iterator<std::string::iterator> rit ( income.begin(), income.end(), scalarEx );
std::regex_iterator<std::string::iterator> rend;
while(rit != rend){
if(tweaks.find(rit->str(1))==tweaks.end())tweaks[rit->str(1)] = new TweakPath(this,rit->str(1),rit->str(2));
rit++;
}
}catch (const std::regex_error& e) {
std::cout << "regex_error caught: " << e.what() << '\n';
}
}
//------------------------------------------------------------------------------------
void Node::parseInputAndOutput()
{
string toParse = m_Program;
string uncommented;
std::regex nocomment("(--\\[\\[(.|\n)*?\\]\\]--)");
regex_replace(std::back_inserter(uncommented),toParse.begin(),toParse.end(),nocomment,"$2");
std::regex nocomment2("(--.*\\n)");
string uncommented2;
regex_replace(std::back_inserter(uncommented2),uncommented.begin(),uncommented.end(),nocomment2,"$2");
try{
string outcome = uncommented2;
std::regex outputEx("output\\([ \n]*[\"\']([\\w_]*)[\"\'][ \n]*,(.|\n)*?\\)");
std::smatch sm;
while(regex_search (outcome,sm,outputEx)){
makeNewOutput(sm[1]);
outcome = sm.suffix().str();
}
}catch (const std::regex_error& e) {
std::cout << "regex_error caught: " << e.what() << '\n';
}
try{
string income = uncommented2;
std::regex inputEx("input\\([ \n]*[\"\']([\\w_]*)[\"\'][ \n]*\\)");
std::smatch sm;
while(regex_search (income,sm,inputEx)){
makeNewInput(sm[1]);
income = sm.suffix().str();
}
}catch (const std::regex_error& e) {
std::cout << "regex_error caught: " << e.what() << '\n';
}
try{
string income = uncommented2;
std::regex outputEx("emit");
std::smatch sm;
if(regex_search(income,sm,outputEx)){
hasEmitAndNotOutput = true;
if(!m_emitingNode)makeNewOutput("emit");
}
}catch (const std::regex_error& e) {
std::cout << "regex_error caught: " << e.what() << '\n';
}
}
//-------------------------------------------------------
//parse the code to detect input and output code.
//it also detect if emit is used for retrocompatibility.
//also look at the tweaks.
void Node::parse(){
parseTweaks();
parseInputAndOutput();
}
//-------------------------------------------------------
//write the master lua file by traversing the graph.
bool Node::writeMaster(ofstream& myfile)
{
std::vector<Node*> ordered_node;
orderNode(ordered_node);
ForIndex(i,ordered_node.size()){
Node* currentNode = ordered_node[i];
myfile << currentNode->codeBefore().c_str();
myfile << currentNode->m_Program.c_str();
myfile << currentNode->codeAfter().c_str();
}
return (false); // no error
}
//-------------------------------------------------------
void Node::changePath(std::string path,Project p){
m_Path = path;
m_RelativePath = p.relativePath(path);
m_Program = loadFileIntoString(m_Path.c_str());
m_emitingNode = strcmp(m_RelativePath.c_str(),"emit.lua") == 0;
m_timeStamp = fileTimestamp(m_Path);
parse();
}
//-------------------------------------------------------
std::string Node::hashProgram(){
hashwrapper* myWrapper = new md5wrapper();
return myWrapper->getHashFromString(m_Program);
delete myWrapper;
}
//-------------------------------------------------------
void Node::connect(Node* n,std::string outName,int pos){
prevNamed.at(inputName[pos]) = std::make_pair(n,outName);
n->nextNamed[outName] = this;
}
//-------------------------------------------------------
//detect if a node is an Ascendent
bool Node::isAscendent(Node* toConnect){
std::vector<Node*> toVisit;
toVisit.push_back(this);
while(toVisit.size()>0){
Node* current = toVisit.back();
toVisit.pop_back();
if(current == toConnect)return true;
for( auto& val: current->prevNamed){
Node* a = val.second.first;
if(a != nullptr)toVisit.push_back(a);
}
}
return false;
}
//-------------------------------------------------------
//test if all input are connected
bool Node::isConnectedToInput(){
bool b = true;
for( auto& val: prevNamed){
Node* a = val.second.first;
if(a == nullptr)return false;
b = b && a->isConnectedToInput();
}
return b;
}
//-------------------------------------------------------
//order the node to write the master script.
void Node::orderNode(std::vector<Node*>& orderedNode){
std::vector<Node*> toVisit;
toVisit.push_back(this);
std::set<Node*> visited;
while(toVisit.size()>0){
Node* current = toVisit.back();
if(visited.find(current) == visited.end()){
orderedNode.push_back(current);
visited.insert(current);
}
toVisit.pop_back();
for( auto& val: current->prevNamed){
Node* a = val.second.first;
if(a == nullptr)continue;
toVisit.push_back(a);
}
}
std::reverse(orderedNode.begin(),orderedNode.end());
}
//------------------------------------------------------------------
//automatically detect file changes to reload lua files.
Node::t_FileTime Node::fileTimestamp(std::string file) const
{
#ifdef WIN32
HANDLE f = CreateFileA(file.c_str(),
GENERIC_READ, FILE_SHARE_READ | FILE_SHARE_WRITE,
NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
if (f == NULL) {
t_FileTime z;
memset(&z, 0, sizeof(t_FileTime));
return z;
}
FILETIME creation, lastaccess, lastwrite;
GetFileTime(f, &creation, &lastaccess, &lastwrite);
CloseHandle(f);
return lastwrite;
#else
struct stat st;
int fh = open(file.c_str(), O_RDONLY);
if (fh < 0) return false;
fstat(fh, &st);
close(fh);
return st.st_mtime;
#endif
}
// -----------------------------------------------
bool Node::fileChanged(std::string file, t_FileTime& _last) const
{
#ifdef WIN32
HANDLE f = CreateFileA(file.c_str(),
GENERIC_READ, FILE_SHARE_READ | FILE_SHARE_WRITE,
NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
if (f == NULL) return false;
FILETIME creation, lastaccess, lastwrite;
GetFileTime(f, &creation, &lastaccess, &lastwrite);
CloseHandle(f);
if (lastwrite.dwHighDateTime > _last.dwHighDateTime
|| (lastwrite.dwHighDateTime == _last.dwHighDateTime
&& lastwrite.dwLowDateTime > _last.dwLowDateTime)
) {
_last = lastwrite;
cerr << "[script] detected change in " << file << endl;
return true;
}
#else
struct stat st;
int fh = open(file.c_str(), O_RDONLY);
if (fh < 0) return false;
fstat(fh, &st);
close(fh);
if (st.st_mtime > _last) {
_last = st.st_mtime;
cerr << "[script] detected change in " << file << endl;
return true;
}
#endif
return false;
}
//------------------------------------------------------------------
bool Node::hasChange(){
return fileChanged(m_Path,m_timeStamp);
}