本文整理匯總了C#中ProtoScript.Runners.LiveRunner.UpdateCmdLineInterpreter方法的典型用法代碼示例。如果您正苦於以下問題:C# LiveRunner.UpdateCmdLineInterpreter方法的具體用法?C# LiveRunner.UpdateCmdLineInterpreter怎麽用?C# LiveRunner.UpdateCmdLineInterpreter使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類ProtoScript.Runners.LiveRunner
的用法示例。
在下文中一共展示了LiveRunner.UpdateCmdLineInterpreter方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: TestDeltaExpressionFFI_02
public void TestDeltaExpressionFFI_02()
{
liveRunner = new ProtoScript.Runners.LiveRunner();
//string code = @"class Point{ X : double; constructor ByCoordinates(x : double, y : double, z : double){X = x;} def Translate(x : double, y : double, z : double){return = Point.ByCoordinates(11,12,13);} }";
//liveRunner.UpdateCmdLineInterpreter(code);
liveRunner.UpdateCmdLineInterpreter(@"import (""FFITarget.dll"");");
liveRunner.UpdateCmdLineInterpreter("p = DummyPoint.ByCoordinates(10,10,10);");
ProtoCore.Mirror.RuntimeMirror mirror = liveRunner.InspectNodeValue("p");
//==============================================
// Build a binary expression to retirieve the x property
// xval = newPoint.X
//==============================================
liveRunner.UpdateCmdLineInterpreter("xval = p.X;");
mirror = liveRunner.InspectNodeValue("xval");
//==============================================
//
// import ("ProtoGeometry.dll");
// p = Point.Bycoordinates(10.0, 10.0, 10.0);
// newPoint = p.Translate(1.0,2.0,3.0);
// xval = newPoint.X;
//
//==============================================
Assert.IsTrue((double)mirror.GetData().Data == 10.0);
//==============================================
// Translate the point
// newPoint = p.Translate(1,2,3);
//==============================================
liveRunner.UpdateCmdLineInterpreter("p = p.Translate(1,2,3);");
mirror = liveRunner.InspectNodeValue("p");
mirror = liveRunner.InspectNodeValue("xval");
//==============================================
//
// import ("ProtoGeometry.dll");
// p = Point.Bycoordinates(10.0, 10.0, 10.0);
// newPoint = p.Translate(1.0,2.0,3.0);
// xval = newPoint.X;
//
//==============================================
Assert.IsTrue((double)mirror.GetData().Data == 11.0);
}
示例2: TestDeltaExpression_02
public void TestDeltaExpression_02()
{
liveRunner = new ProtoScript.Runners.LiveRunner();
// emit the DS code from the AST tree
liveRunner.UpdateCmdLineInterpreter("x=99;");
ProtoCore.Mirror.RuntimeMirror mirror = liveRunner.InspectNodeValue("x");
Assert.IsTrue((Int64)mirror.GetData().Data == 99);
//string o = liveRunner.GetCoreDump();
// emit the DS code from the AST tree
liveRunner.UpdateCmdLineInterpreter("y=x;");
mirror = liveRunner.InspectNodeValue("y");
Assert.IsTrue((Int64)mirror.GetData().Data == 99);
mirror = liveRunner.InspectNodeValue("x");
Assert.IsTrue((Int64)mirror.GetData().Data == 99);
//string o = liveRunner.GetCoreDump();
// emit the DS code from the AST tree
liveRunner.UpdateCmdLineInterpreter("x = 100;");
mirror = liveRunner.InspectNodeValue("x");
Assert.IsTrue((Int64)mirror.GetData().Data == 100);
mirror = liveRunner.InspectNodeValue("y");
Assert.IsTrue((Int64)mirror.GetData().Data == 100);
}
示例3: TestDeltaExpressionFFI_01
public void TestDeltaExpressionFFI_01()
{
liveRunner = new ProtoScript.Runners.LiveRunner();
liveRunner.UpdateCmdLineInterpreter(@"import (""FFITarget.dll"");");
liveRunner.UpdateCmdLineInterpreter("p = DummyPoint.ByCoordinates(10,10,10);");
ProtoCore.Mirror.RuntimeMirror mirror = liveRunner.InspectNodeValue("p");
//==============================================
// Translate the point
// newPoint = p.Translate(1,2,3);
//==============================================
liveRunner.UpdateCmdLineInterpreter("newPoint = p.Translate(1,2,3);");
mirror = liveRunner.InspectNodeValue("newPoint");
//==============================================
// Build a binary expression to retirieve the x property
// xval = newPoint.X
//==============================================
liveRunner.UpdateCmdLineInterpreter("xval = newPoint.X;");
mirror = liveRunner.InspectNodeValue("xval");
//==============================================
//
// import ("ProtoGeometry.dll");
// p = Point.Bycoordinates(10.0, 10.0, 10.0);
// newPoint = p.Translate(1.0,2.0,3.0);
// xval = newPoint.X;
//
//==============================================
Assert.IsTrue((double)mirror.GetData().Data == 11.0);
}
示例4: TestDeltaExpression_01
public void TestDeltaExpression_01()
{
liveRunner = new ProtoScript.Runners.LiveRunner();
// emit the DS code from the AST tree
liveRunner.UpdateCmdLineInterpreter("a=10;");
ProtoCore.Mirror.RuntimeMirror mirror = liveRunner.InspectNodeValue("a");
Assert.IsTrue((Int64)mirror.GetData().Data == 10);
//string o = liveRunner.GetCoreDump();
// emit the DS code from the AST tree
liveRunner.UpdateCmdLineInterpreter("c=20;");
mirror = liveRunner.InspectNodeValue("c");
Assert.IsTrue((Int64)mirror.GetData().Data == 20);
mirror = liveRunner.InspectNodeValue("a");
Assert.IsTrue((Int64)mirror.GetData().Data == 10);
//string o = liveRunner.GetCoreDump();
// emit the DS code from the AST tree
liveRunner.UpdateCmdLineInterpreter("b = a+c;");
mirror = liveRunner.InspectNodeValue("a");
Assert.IsTrue((Int64)mirror.GetData().Data == 10);
mirror = liveRunner.InspectNodeValue("c");
Assert.IsTrue((Int64)mirror.GetData().Data == 20);
mirror = liveRunner.InspectNodeValue("b");
Assert.IsTrue((Int64)mirror.GetData().Data == 30);
//o = liveRunner.GetCoreDump();
// emit the DS code from the AST tree
liveRunner.UpdateCmdLineInterpreter("c= 30;");
mirror = liveRunner.InspectNodeValue("a");
Assert.IsTrue((Int64)mirror.GetData().Data == 10);
mirror = liveRunner.InspectNodeValue("c");
Assert.IsTrue((Int64)mirror.GetData().Data == 30);
mirror = liveRunner.InspectNodeValue("b");
Assert.IsTrue((Int64)mirror.GetData().Data == 40);
//o = liveRunner.GetCoreDump();
}