C# 클래스 Alexandria.Engines.Unreal.Package

A collection of exported and imported objects.
상속: Alexandria.Engines.Unreal.Core.Object
파일 보기 프로젝트 열기: Burton-Radons/Alexandria 1 사용 예제들

공개 메소드들

메소드 설명
FindExport ( string classPackageName, string className, string name ) : System.Export

Search for an export.

Package ( State state, string fileName ) : System

Initialize the Package by reading from the given filename.

Package ( State state, string fileName, BinaryReader reader ) : System

Initialize the Package by reading from the given filename.

Package ( State state, string fileName, Stream stream ) : System

Initialize the Package by reading from the given filename.

ReadExport ( BinaryReader reader ) : System.Export

Read an Export reference from the BinaryReader.

ReadNameIndex ( BinaryReader reader ) : Name

Read a Name reference from the BinaryReader.

ReadNameValue ( BinaryReader reader ) : string

Read a Name reference from the BinaryReader, returning the Name's string value.

ReadReference ( BinaryReader reader ) : Reference

Read a reference from the BinaryReader.

ResolveReference ( int index ) : Reference

Convert an index into a Reference.

비공개 메소드들

메소드 설명
DetermineGame ( int fileVersion, int licenseMode, bool isEncrypted ) : PackageGame

메소드 상세

FindExport() 공개 메소드

Search for an export.
public FindExport ( string classPackageName, string className, string name ) : System.Export
classPackageName string
className string
name string
리턴 System.Export

Package() 공개 메소드

Initialize the Package by reading from the given filename.
public Package ( State state, string fileName ) : System
state State The this is to exist within.
fileName string The name of the file to open that contains the .
리턴 System

Package() 공개 메소드

Initialize the Package by reading from the given filename.
public Package ( State state, string fileName, BinaryReader reader ) : System
state State The this is to exist within.
fileName string The name of the file to open that contains the .
reader System.IO.BinaryReader The to read from.
리턴 System

Package() 공개 메소드

Initialize the Package by reading from the given filename.
public Package ( State state, string fileName, Stream stream ) : System
state State The this is to exist within.
fileName string The name of the file to open that contains the .
stream Stream The to read from.
리턴 System

ReadExport() 공개 메소드

Read an Export reference from the BinaryReader.
public ReadExport ( BinaryReader reader ) : System.Export
reader System.IO.BinaryReader The to read from.
리턴 System.Export

ReadNameIndex() 공개 메소드

Read a Name reference from the BinaryReader.
public ReadNameIndex ( BinaryReader reader ) : Name
reader System.IO.BinaryReader The to read from.
리턴 Name

ReadNameValue() 공개 메소드

Read a Name reference from the BinaryReader, returning the Name's string value.
public ReadNameValue ( BinaryReader reader ) : string
reader System.IO.BinaryReader The to read from.
리턴 string

ReadReference() 공개 메소드

Read a reference from the BinaryReader.
public ReadReference ( BinaryReader reader ) : Reference
reader System.IO.BinaryReader The to read from.
리턴 Reference

ResolveReference() 공개 메소드

Convert an index into a Reference.
public ResolveReference ( int index ) : Reference
index int The index to convert.
리턴 Reference