Normand Briere
2017-05-07 314b34423070cf127464da79a53cddf6b1c38587
ScriptNode.java
....@@ -285,7 +285,7 @@
285285 else
286286 {
287287 if (speaker != null)
288
- System.err.println(speaker.GetFileRoot().name + " (not a command) : " + reader.line);
288
+ System.err.println(speaker.GetFileRoot().name + " (speaking) : " + reader.line);
289289 else
290290 System.err.println("no speaker (not a command) : " + reader.line);
291291 }
....@@ -412,7 +412,7 @@
412412 {
413413 //path += "/" + Filename(readers[i].script);
414414 ScriptReader reader = readers[i];
415
- path += Filename(readers[i].script) + "; duration=" + reader.duration + "; total=" + reader.totalduration +
415
+ path += Filename(reader.script) + "; duration=" + reader.duration + "; total=" + reader.totalduration +
416416 "; line#" + reader.linecount + ": " + reader.line;
417417 if (reader.line != null && // sept 2014
418418 reader.line.startsWith("_"))
....@@ -488,7 +488,7 @@
488488 reader = readers[stack] = new ScriptReader(new BufferedReader(new FileReader(script)), reader.totalduration, /*0, 0, "",*/ script);
489489 //duration = 0; // june 2014
490490 //linecount = 0;
491
- //reader.script = script;
491
+ reader.script = script; // oct 2014
492492 return;
493493 }
494494 if (command.equals("return")) // line.startsWith("; return"))
....@@ -1438,7 +1438,7 @@
14381438 object.skip = false;
14391439 return;
14401440 }
1441
- if (command.equals("skipmocap"))
1441
+ if (command.equals("skipmocap") || command.equals("mocapskip")) // oct 2014
14421442 {
14431443 object.skipmocap = true;
14441444 return;