C# Class NFrame.NFIKernelModule

ファイルを表示 Open project: ketoo/NoahGameFrame Class Usage Examples

Public Methods

Method Description
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

Method Details

AddHeartBeat() public abstract method

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

CreateObject() public abstract method

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
return NFIObject

DestroyObject() public abstract method

public abstract DestroyObject ( NFGUID self ) : bool
self NFGUID
return bool

FindHeartBeat() public abstract method

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

FindProperty() public abstract method

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

FindRecord() public abstract method

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

FindRecordRow() public abstract method

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

FindRecordRow() public abstract method

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

FindRecordRow() public abstract method

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

FindRecordRow() public abstract method

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

FindRecordRow() public abstract method

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

FindRecordRow() public abstract method

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

GetElementModule() public abstract method

public abstract GetElementModule ( ) : NFIElementModule
return NFIElementModule

GetLogicClassModule() public abstract method

public abstract GetLogicClassModule ( ) : NFILogicClassModule
return NFILogicClassModule

GetObject() public abstract method

public abstract GetObject ( NFGUID ident ) : NFIObject
ident NFGUID
return NFIObject

GetObjectList() public abstract method

public abstract GetObjectList ( ) : NFIDataList
return NFIDataList

GetUploadModule() public abstract method

public abstract GetUploadModule ( ) : NFIUploadModule
return NFIUploadModule

QueryPropertyFloat() public abstract method

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

QueryPropertyInt() public abstract method

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

QueryPropertyObject() public abstract method

public abstract QueryPropertyObject ( NFGUID self, string strPropertyName ) : NFGUID
self NFGUID
strPropertyName string
return NFGUID

QueryPropertyString() public abstract method

public abstract QueryPropertyString ( NFGUID self, string strPropertyName ) : string
self NFGUID
strPropertyName string
return string

QueryPropertyVector2() public abstract method

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

QueryPropertyVector3() public abstract method

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

QueryRecordFloat() public abstract method

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

QueryRecordInt() public abstract method

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

QueryRecordObject() public abstract method

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

QueryRecordString() public abstract method

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

QueryRecordVector2() public abstract method

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

QueryRecordVector3() public abstract method

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

RegisterClassCallBack() public abstract method

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

RegisterEventCallBack() public abstract method

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

RegisterPropertyCallback() public abstract method

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

RegisterRecordCallback() public abstract method

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

RemoveHeartBeat() public abstract method

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

SetPropertyFloat() public abstract method

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

SetPropertyInt() public abstract method

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

SetPropertyObject() public abstract method

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

SetPropertyString() public abstract method

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

SetPropertyVector2() public abstract method

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

SetPropertyVector3() public abstract method

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

SetRecordFloat() public abstract method

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

SetRecordInt() public abstract method

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

SetRecordObject() public abstract method

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

SetRecordString() public abstract method

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

SetRecordVector2() public abstract method

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

SetRecordVector3() public abstract method

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

UpDate() public abstract method

public abstract UpDate ( float fTime ) : bool
fTime float
return bool