This page has been translated automatically.
视频教程
界面
要领
高级
实用建议
专业(SIM)
UnigineEditor
界面概述
资产工作流程
设置和首选项
项目开发
调整节点参数
Setting Up Materials
设置属性
照明
Landscape Tool
Sandworm
使用编辑器工具执行特定任务
如何擴展編輯器功能
嵌入式节点类型
Nodes
Objects
Effects
Decals
光源
Geodetics
World Nodes
Sound Objects
Pathfinding Objects
Players
编程
基本原理
搭建开发环境
使用范例
C++
UnigineScript
UUSL (Unified UNIGINE Shader Language)
Plugins
File Formats
Materials and Shaders
Rebuilding the Engine Tools
GUI
双精度坐标
应用程序接口
Containers
Common Functionality
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
创建内容
内容优化
Materials
Material Nodes Library
Miscellaneous
Input
Math
Matrix
Textures
Art Samples
Tutorials
注意! 这个版本的文档是过时的,因为它描述了一个较老的SDK版本!请切换到最新SDK版本的文档。
注意! 这个版本的文档描述了一个不再受支持的旧SDK版本!请升级到最新的SDK版本。

Package Class

The Package class is a data provider for the internal FileSystem class. You can load all the resources via this class. This article describes the sample located in the <UnigineSDK>/source/csharp/samples/Api/Systems/Package/ directory.

Notice
In the C# API you can inherit from the Package class only once.

See also#

  • An example can be found in the <UnigineSDK>/source/csharp/samples/Api/Systems/Package/ directory.
  • The C++ API Unigine::Package class and the Unigine::FileSystem class which have the same methods and behavior as in the C# API.

Package Class Usage Example#

C# Side#

To use the Unigine.Package class, you should create your own class and inherit it from the Unigine.Package class and override virtual methods.

Source code (C#)
using System;
using System.IO;
using File = System.IO.File;
using System.Runtime.InteropServices;
using Unigine;

/*
 */
class UnigineApp {
	
	/*
	 * Create a class and inherit if from Unigine.Package
	 */
	class MyPackage : Package {
		
		private FileStream file;
		
		// list of files
		public override int getNumFiles() {
			Log.Warning("MyPackage.getNumFiles(): called\n");
			return 2;
		}
		
		public override string getFileName(int num) {
			Log.Warning("MyPackage.getFileName({0}): called\n",num);
			if(num == 0) return "data/package.cpp";
			if(num == 1) return "data/package.world";
			return "";
		}
		
		// select file
		public override int selectFile(string name,out int size) {
			
			Log.Warning("MyPackage.selectFile(\"{0}\",): called\n",name);
			
			try {
				file = null;
				if(name == "data/package.cpp") file = File.OpenRead("my_data/package.cpp");
				if(name == "data/package.world") file = File.OpenRead("my_data/package.world");
			}
			catch(Exception e) {
				Log.Error("MyPackage.selectFile(): {0}\n",e.Message);
				size = 0;
				return 0;
			}
			
			size = (int)file.Length;
			
			return 1;
		}
		
		// read file
		public override int readFile(IntPtr data,int size) {
			
			Log.Warning("MyPackage.readFile(,{0}): called\n",size);
			
			try {
				byte[] src = new byte[size];
				int ret = file.Read(src,0,size);
				Marshal.Copy(src,0,data,ret);
			}
			catch(Exception e) {
				Log.Error("MyPackage.readFile(): {0}\n",e.Message);
				return 0;
			}
			
			return 1;
		}
	}
	
	/*
	 */
	[STAThread]
	static void Main(string[] args) {
		
		// create an instance of the MyPackage class and add it to the FileSystem
		MyPackage package = new MyPackage();
		FileSystem.preloadExternPackage(package);
		
		// initialize engine
		Engine engine = Engine.Init(Engine.VERSION,args);
		
		// enter main loop
		engine.Main();
		
		// shutdown engine
		Engine.Shutdown();
	}
}

The MyPackage class has overridden readFile(), selectFile(), getFileName() and getNumFiles() functions. The class operates with two files located in the my_data folder. In the Main() function we create an instance of the MyPackage class and add it to the FileSystem.

Unigine Script Side#

In the UnigineScript package.cpp file:

Source code (UnigineScript)
int init() {
	
	log.message("\n");
	
	log.message("Hello from My C# Package\n");
	engine.dialogMessage("Package");
	
	return 1;
}

Output#

The following result will be shown:

In the console:

Output
MyPackage.selectFile("data/package.cpp",): called
MyPackage.readFile(,866): called
MyPackage.selectFile("data/package.cpp",): called
MyPackage.readFile(,866): called
Loading "data/package.cpp" 4ms
MyPackage.selectFile("data/package.world",): called
MyPackage.readFile(,62): called
Loading "data/package.world" 0ms

Hello from My C# Package
Last update: 2022-03-10
Build: ()