C# 클래스 NFrame.NFIKernelModule

파일 보기 프로젝트 열기: ketoo/NoahGameFrame 1 사용 예제들

공개 메소드들

메소드 설명
AddHeartBeat ( NFGUID self, string strHeartBeatName, NFIHeartBeat handler, float fTime, int nCount ) : bool
CreateObject ( NFGUID self, int nContainerID, int nGroupID, string strClassName, string strConfigIndex, NFIDataList arg ) : NFIObject
DestroyObject ( NFGUID self ) : bool
FindHeartBeat ( NFGUID self, string strHeartBeatName ) : bool
FindProperty ( NFGUID self, string strPropertyName ) : bool
FindRecord ( NFGUID self, string strRecordName ) : NFIRecord
FindRecordRow ( NFGUID self, string strRecordName, int nCol, NFGUID nValue, NFIDataList &xDatalist ) : int
FindRecordRow ( NFGUID self, string strRecordName, int nCol, NFVector2 nValue, NFIDataList &xDatalist ) : int
FindRecordRow ( NFGUID self, string strRecordName, int nCol, NFVector3 nValue, NFIDataList &xDatalist ) : int
FindRecordRow ( NFGUID self, string strRecordName, int nCol, double fValue, NFIDataList &xDatalist ) : int
FindRecordRow ( NFGUID self, string strRecordName, int nCol, int nValue, NFIDataList &xDatalist ) : int
FindRecordRow ( NFGUID self, string strRecordName, int nCol, string strValue, NFIDataList &xDatalist ) : int
GetElementModule ( ) : NFIElementModule
GetLogicClassModule ( ) : NFILogicClassModule
GetObject ( NFGUID ident ) : NFIObject
GetObjectList ( ) : NFIDataList
GetUploadModule ( ) : NFIUploadModule
QueryPropertyFloat ( NFGUID self, string strPropertyName ) : double
QueryPropertyInt ( NFGUID self, string strPropertyName ) : System.Int64
QueryPropertyObject ( NFGUID self, string strPropertyName ) : NFGUID
QueryPropertyString ( NFGUID self, string strPropertyName ) : string
QueryPropertyVector2 ( NFGUID self, string strPropertyName ) : NFVector2
QueryPropertyVector3 ( NFGUID self, string strPropertyName ) : NFVector3
QueryRecordFloat ( NFGUID self, string strRecordName, int nRow, int nCol ) : double
QueryRecordInt ( NFGUID self, string strRecordName, int nRow, int nCol ) : System.Int64
QueryRecordObject ( NFGUID self, string strRecordName, int nRow, int nCol ) : NFGUID
QueryRecordString ( NFGUID self, string strRecordName, int nRow, int nCol ) : string
QueryRecordVector2 ( NFGUID self, string strRecordName, int nRow, int nCol ) : NFVector2
QueryRecordVector3 ( NFGUID self, string strRecordName, int nRow, int nCol ) : NFVector3
RegisterClassCallBack ( string strClassName, NFIObject handler ) : void
RegisterEventCallBack ( NFGUID self, int nEventID, NFIEvent handler ) : void
RegisterPropertyCallback ( NFGUID self, string strPropertyName, NFIProperty handler ) : void
RegisterRecordCallback ( NFGUID self, string strRecordName, NFIRecord handler ) : void
RemoveHeartBeat ( NFGUID self, string strHeartBeatName ) : bool
SetPropertyFloat ( NFGUID self, string strPropertyName, double fValue ) : bool
SetPropertyInt ( NFGUID self, string strPropertyName, Int64 nValue ) : bool
SetPropertyObject ( NFGUID self, string strPropertyName, NFGUID objectValue ) : bool
SetPropertyString ( NFGUID self, string strPropertyName, string strValue ) : bool
SetPropertyVector2 ( NFGUID self, string strPropertyName, NFVector2 objectValue ) : bool
SetPropertyVector3 ( NFGUID self, string strPropertyName, NFVector3 objectValue ) : bool
SetRecordFloat ( NFGUID self, string strRecordName, int nRow, int nCol, double fValue ) : bool
SetRecordInt ( NFGUID self, string strRecordName, int nRow, int nCol, Int64 nValue ) : bool
SetRecordObject ( NFGUID self, string strRecordName, int nRow, int nCol, NFGUID objectValue ) : bool
SetRecordString ( NFGUID self, string strRecordName, int nRow, int nCol, string strValue ) : bool
SetRecordVector2 ( NFGUID self, string strRecordName, int nRow, int nCol, NFVector2 objectValue ) : bool
SetRecordVector3 ( NFGUID self, string strRecordName, int nRow, int nCol, NFVector3 objectValue ) : bool
UpDate ( float fTime ) : bool

메소드 상세

AddHeartBeat() 공개 추상적인 메소드

public abstract AddHeartBeat ( NFGUID self, string strHeartBeatName, NFIHeartBeat handler, float fTime, int nCount ) : bool
self NFGUID
strHeartBeatName string
handler NFIHeartBeat
fTime float
nCount int
리턴 bool

CreateObject() 공개 추상적인 메소드

public abstract CreateObject ( NFGUID self, int nContainerID, int nGroupID, string strClassName, string strConfigIndex, NFIDataList arg ) : NFIObject
self NFGUID
nContainerID int
nGroupID int
strClassName string
strConfigIndex string
arg NFIDataList
리턴 NFIObject

DestroyObject() 공개 추상적인 메소드

public abstract DestroyObject ( NFGUID self ) : bool
self NFGUID
리턴 bool

FindHeartBeat() 공개 추상적인 메소드

public abstract FindHeartBeat ( NFGUID self, string strHeartBeatName ) : bool
self NFGUID
strHeartBeatName string
리턴 bool

FindProperty() 공개 추상적인 메소드

public abstract FindProperty ( NFGUID self, string strPropertyName ) : bool
self NFGUID
strPropertyName string
리턴 bool

FindRecord() 공개 추상적인 메소드

public abstract FindRecord ( NFGUID self, string strRecordName ) : NFIRecord
self NFGUID
strRecordName string
리턴 NFIRecord

FindRecordRow() 공개 추상적인 메소드

public abstract FindRecordRow ( NFGUID self, string strRecordName, int nCol, NFGUID nValue, NFIDataList &xDatalist ) : int
self NFGUID
strRecordName string
nCol int
nValue NFGUID
xDatalist NFIDataList
리턴 int

FindRecordRow() 공개 추상적인 메소드

public abstract FindRecordRow ( NFGUID self, string strRecordName, int nCol, NFVector2 nValue, NFIDataList &xDatalist ) : int
self NFGUID
strRecordName string
nCol int
nValue NFVector2
xDatalist NFIDataList
리턴 int

FindRecordRow() 공개 추상적인 메소드

public abstract FindRecordRow ( NFGUID self, string strRecordName, int nCol, NFVector3 nValue, NFIDataList &xDatalist ) : int
self NFGUID
strRecordName string
nCol int
nValue NFVector3
xDatalist NFIDataList
리턴 int

FindRecordRow() 공개 추상적인 메소드

public abstract FindRecordRow ( NFGUID self, string strRecordName, int nCol, double fValue, NFIDataList &xDatalist ) : int
self NFGUID
strRecordName string
nCol int
fValue double
xDatalist NFIDataList
리턴 int

FindRecordRow() 공개 추상적인 메소드

public abstract FindRecordRow ( NFGUID self, string strRecordName, int nCol, int nValue, NFIDataList &xDatalist ) : int
self NFGUID
strRecordName string
nCol int
nValue int
xDatalist NFIDataList
리턴 int

FindRecordRow() 공개 추상적인 메소드

public abstract FindRecordRow ( NFGUID self, string strRecordName, int nCol, string strValue, NFIDataList &xDatalist ) : int
self NFGUID
strRecordName string
nCol int
strValue string
xDatalist NFIDataList
리턴 int

GetElementModule() 공개 추상적인 메소드

public abstract GetElementModule ( ) : NFIElementModule
리턴 NFIElementModule

GetLogicClassModule() 공개 추상적인 메소드

public abstract GetLogicClassModule ( ) : NFILogicClassModule
리턴 NFILogicClassModule

GetObject() 공개 추상적인 메소드

public abstract GetObject ( NFGUID ident ) : NFIObject
ident NFGUID
리턴 NFIObject

GetObjectList() 공개 추상적인 메소드

public abstract GetObjectList ( ) : NFIDataList
리턴 NFIDataList

GetUploadModule() 공개 추상적인 메소드

public abstract GetUploadModule ( ) : NFIUploadModule
리턴 NFIUploadModule

QueryPropertyFloat() 공개 추상적인 메소드

public abstract QueryPropertyFloat ( NFGUID self, string strPropertyName ) : double
self NFGUID
strPropertyName string
리턴 double

QueryPropertyInt() 공개 추상적인 메소드

public abstract QueryPropertyInt ( NFGUID self, string strPropertyName ) : System.Int64
self NFGUID
strPropertyName string
리턴 System.Int64

QueryPropertyObject() 공개 추상적인 메소드

public abstract QueryPropertyObject ( NFGUID self, string strPropertyName ) : NFGUID
self NFGUID
strPropertyName string
리턴 NFGUID

QueryPropertyString() 공개 추상적인 메소드

public abstract QueryPropertyString ( NFGUID self, string strPropertyName ) : string
self NFGUID
strPropertyName string
리턴 string

QueryPropertyVector2() 공개 추상적인 메소드

public abstract QueryPropertyVector2 ( NFGUID self, string strPropertyName ) : NFVector2
self NFGUID
strPropertyName string
리턴 NFVector2

QueryPropertyVector3() 공개 추상적인 메소드

public abstract QueryPropertyVector3 ( NFGUID self, string strPropertyName ) : NFVector3
self NFGUID
strPropertyName string
리턴 NFVector3

QueryRecordFloat() 공개 추상적인 메소드

public abstract QueryRecordFloat ( NFGUID self, string strRecordName, int nRow, int nCol ) : double
self NFGUID
strRecordName string
nRow int
nCol int
리턴 double

QueryRecordInt() 공개 추상적인 메소드

public abstract QueryRecordInt ( NFGUID self, string strRecordName, int nRow, int nCol ) : System.Int64
self NFGUID
strRecordName string
nRow int
nCol int
리턴 System.Int64

QueryRecordObject() 공개 추상적인 메소드

public abstract QueryRecordObject ( NFGUID self, string strRecordName, int nRow, int nCol ) : NFGUID
self NFGUID
strRecordName string
nRow int
nCol int
리턴 NFGUID

QueryRecordString() 공개 추상적인 메소드

public abstract QueryRecordString ( NFGUID self, string strRecordName, int nRow, int nCol ) : string
self NFGUID
strRecordName string
nRow int
nCol int
리턴 string

QueryRecordVector2() 공개 추상적인 메소드

public abstract QueryRecordVector2 ( NFGUID self, string strRecordName, int nRow, int nCol ) : NFVector2
self NFGUID
strRecordName string
nRow int
nCol int
리턴 NFVector2

QueryRecordVector3() 공개 추상적인 메소드

public abstract QueryRecordVector3 ( NFGUID self, string strRecordName, int nRow, int nCol ) : NFVector3
self NFGUID
strRecordName string
nRow int
nCol int
리턴 NFVector3

RegisterClassCallBack() 공개 추상적인 메소드

public abstract RegisterClassCallBack ( string strClassName, NFIObject handler ) : void
strClassName string
handler NFIObject
리턴 void

RegisterEventCallBack() 공개 추상적인 메소드

public abstract RegisterEventCallBack ( NFGUID self, int nEventID, NFIEvent handler ) : void
self NFGUID
nEventID int
handler NFIEvent
리턴 void

RegisterPropertyCallback() 공개 추상적인 메소드

public abstract RegisterPropertyCallback ( NFGUID self, string strPropertyName, NFIProperty handler ) : void
self NFGUID
strPropertyName string
handler NFIProperty
리턴 void

RegisterRecordCallback() 공개 추상적인 메소드

public abstract RegisterRecordCallback ( NFGUID self, string strRecordName, NFIRecord handler ) : void
self NFGUID
strRecordName string
handler NFIRecord
리턴 void

RemoveHeartBeat() 공개 추상적인 메소드

public abstract RemoveHeartBeat ( NFGUID self, string strHeartBeatName ) : bool
self NFGUID
strHeartBeatName string
리턴 bool

SetPropertyFloat() 공개 추상적인 메소드

public abstract SetPropertyFloat ( NFGUID self, string strPropertyName, double fValue ) : bool
self NFGUID
strPropertyName string
fValue double
리턴 bool

SetPropertyInt() 공개 추상적인 메소드

public abstract SetPropertyInt ( NFGUID self, string strPropertyName, Int64 nValue ) : bool
self NFGUID
strPropertyName string
nValue Int64
리턴 bool

SetPropertyObject() 공개 추상적인 메소드

public abstract SetPropertyObject ( NFGUID self, string strPropertyName, NFGUID objectValue ) : bool
self NFGUID
strPropertyName string
objectValue NFGUID
리턴 bool

SetPropertyString() 공개 추상적인 메소드

public abstract SetPropertyString ( NFGUID self, string strPropertyName, string strValue ) : bool
self NFGUID
strPropertyName string
strValue string
리턴 bool

SetPropertyVector2() 공개 추상적인 메소드

public abstract SetPropertyVector2 ( NFGUID self, string strPropertyName, NFVector2 objectValue ) : bool
self NFGUID
strPropertyName string
objectValue NFVector2
리턴 bool

SetPropertyVector3() 공개 추상적인 메소드

public abstract SetPropertyVector3 ( NFGUID self, string strPropertyName, NFVector3 objectValue ) : bool
self NFGUID
strPropertyName string
objectValue NFVector3
리턴 bool

SetRecordFloat() 공개 추상적인 메소드

public abstract SetRecordFloat ( NFGUID self, string strRecordName, int nRow, int nCol, double fValue ) : bool
self NFGUID
strRecordName string
nRow int
nCol int
fValue double
리턴 bool

SetRecordInt() 공개 추상적인 메소드

public abstract SetRecordInt ( NFGUID self, string strRecordName, int nRow, int nCol, Int64 nValue ) : bool
self NFGUID
strRecordName string
nRow int
nCol int
nValue Int64
리턴 bool

SetRecordObject() 공개 추상적인 메소드

public abstract SetRecordObject ( NFGUID self, string strRecordName, int nRow, int nCol, NFGUID objectValue ) : bool
self NFGUID
strRecordName string
nRow int
nCol int
objectValue NFGUID
리턴 bool

SetRecordString() 공개 추상적인 메소드

public abstract SetRecordString ( NFGUID self, string strRecordName, int nRow, int nCol, string strValue ) : bool
self NFGUID
strRecordName string
nRow int
nCol int
strValue string
리턴 bool

SetRecordVector2() 공개 추상적인 메소드

public abstract SetRecordVector2 ( NFGUID self, string strRecordName, int nRow, int nCol, NFVector2 objectValue ) : bool
self NFGUID
strRecordName string
nRow int
nCol int
objectValue NFVector2
리턴 bool

SetRecordVector3() 공개 추상적인 메소드

public abstract SetRecordVector3 ( NFGUID self, string strRecordName, int nRow, int nCol, NFVector3 objectValue ) : bool
self NFGUID
strRecordName string
nRow int
nCol int
objectValue NFVector3
리턴 bool

UpDate() 공개 추상적인 메소드

public abstract UpDate ( float fTime ) : bool
fTime float
리턴 bool