This page has been translated automatically.
视频教程
界面
要领
高级
实用建议
UnigineEditor
界面概述
资产工作流程
设置和首选项
项目开发
调整节点参数
Setting Up Materials
Setting Up Properties
照明
Landscape Tool
Sandworm (Experimental)
使用编辑器工具执行特定任务
Extending Editor Functionality
嵌入式节点类型
Nodes
Objects
Effects
Decals
Light Sources
Geodetics
World Objects
Sound Objects
Pathfinding Objects
Players
编程
基本原理
搭建开发环境
Usage Examples
UnigineScript
C++
C#
UUSL (Unified UNIGINE Shader Language)
File Formats
Rebuilding the Engine Tools
GUI
双精度坐标
应用程序接口
Containers
Controls-Related Classes
Engine-Related Classes
Filesystem Functionality
GUI-Related Classes
Math Functionality
Node-Related Classes
Objects-Related Classes
Networking Functionality
Pathfinding-Related Classes
Physics-Related Classes
Plugins-Related Classes
IG Plugin
CIGIConnector Plugin
Rendering-Related Classes
注意! 这个版本的文档是过时的,因为它描述了一个较老的SDK版本!请切换到最新SDK版本的文档。
注意! 这个版本的文档描述了一个不再受支持的旧SDK版本!请升级到最新的SDK版本。

Unigine.Expression Class

This class allows you to execute a given code fragment at run-time. There can be up to 4 arguments of any type passed to the Expression. The setVariable() function sets values of such arguments. For example:

Source code (C#)
Expression e0 = new Expression(Engine.get().getWorldInterpreter(), "133.0 * 133.0");
if (e0.isCompiled() == 1)
{
    Log.Message("{0}\n", e0.run().getFloat());
}

Expression e1 = new Expression(Engine.get().getWorldInterpreter(), @"
	{
    int a,b,c,d;
    return a + b + c + d;
	}
");

e1.setVariable("a", new Variable(1));
e1.setVariable("b", new Variable(2));
e1.setVariable("c", new Variable(3));
e1.setVariable("d", new Variable(4));

if(e1.isCompiled() == 1) {
	Log.Message("{0}\n",e1.run().getInt());
}

Expression e2 = new Expression(Engine.get().getWorldInterpreter(), @"
	{

        string name;
		File file = new File(name," + "\"rb\"" + @");

		int size = file.getSize();
		file.close();
		delete file;
		return size;
	}
");

e2.setVariable("name", new Variable("test.cpp"));
if(e2.isCompiled() == 1) {
		Log.Message("{0}\n", e2.run().getInt());
}

Output
double: 17689
int: 10
int: 1302

Expression Class

Members


Expression ( IntPtr interpreter, string src, int scope = 0 ) #

Arguments

  • IntPtr interpreter - Interpreter pointer.
  • string src - Source buffer. Source buffer is a string containing expression's source code.
  • int scope - 1 to treat the expression namespace as the global; otherwise, 0 (by default).

variable run ( ) #

Runs the given expression.

Return value

Argument value.

int saveState ( Stream stream ) #

Saves the expression data (all its parameters) to the specified binary stream.

Arguments

  • Stream stream - Stream to which the expression data will be saved.

Return value

1 if the expression data is saved successfully; otherwise, 0.

int restoreState ( Stream stream ) #

Restores the data of the expression (all its parameters) from the specified binary stream.

Arguments

  • Stream stream - Stream in which the saved expression data is stored.

Return value

1 if the expression data is restored successfully; otherwise, 0.
Last update: 2020-11-24
Build: ()