diff --git a/types/ffi.luau b/types/ffi.luau index b41875f..91dcdb1 100644 --- a/types/ffi.luau +++ b/types/ffi.luau @@ -284,13 +284,80 @@ export type CTypeInfo = { signedness: boolean, -- subtype + --[=[ + @within CTypeInfo + @tag Method + @Method ptr + + create a pointer subtype. + + @return pointer subtype + ]=] ptr: (self: CTypeInfo) -> CPtrInfo>, + + --[=[ + @within CTypeInfo + @tag Method + @Method arr + + create an array subtype. + + @param len The length of the array + @return array subtype + ]=] arr: (self: CTypeInfo, len: number) -> CArrInfo, R>, -- realize + --[=[ + @within CTypeInfo + @tag Method + @Method box + + create a box with initial values + + @param table The array of field values + @return A box + ]=] box: (self: CTypeInfo, val: R) -> BoxData, + + --[=[ + @within CTypeInfo + @tag Method + @method readData + + Read a lua table from reference or box. + + @param target Target to read data from + @param offset Offset to read data from + @return A table + ]=] readData: (self: CTypeInfo, target: RefData | BoxData, offset: number?) -> R, + + --[=[ + @within CTypeInfo + @tag Method + @method writeData + + Write a lua table into reference or box. + + @param target Target to write data into + @param table Lua data to write + @param offset Offset to write data into + ]=] writeData: (self: CTypeInfo, target: RefData | BoxData, value: R, offset: number?) -> (), + + --[=[ + @within CTypeInfo + @tag Method + @Method copyData + + copy values ​​from the source and paste them into the target. + + @param destination where the data will be pasted + @param src The source data + @param dstOffset The offset in the destination where the data will be pasted + @param srcOffset The offset in the source data from where the data will be copied + ]=] copyData: ( self: CTypeInfo, dst: RefData | BoxData, @@ -298,9 +365,37 @@ export type CTypeInfo = { dstOffset: number?, srcOffset: number? ) -> (), + + --[=[ + @within CTypeInfo + @tag Method + @Method stringifyData + + stringify data. Useful when you need to output numbers that Lua can't handle. + + @param memory to output + @param memory byte offset + ]=] stringifyData: (self: CTypeInfo, target: RefData | BoxData, offset: number?) -> string, -- FIXME: recursive types; 'intoType' should be CTypes + --[=[ + @within CTypeInfo + @tag Method + @Method cast + + casting a value to a different type. + + may result in loss of precision. + + FIXME: recursive types; 'intoType' should be CTypes + + @param type to convert + @param memory to read the value to be converted + @param memory to use the converted value + @param memory byte offset to read + @param memory byte offset to write + ]=] cast: ( self: CTypeInfo, intoType: any, @@ -334,11 +429,55 @@ export type CPtrInfo = { -- subtype -- FIXME: recursive types; result 'any' should be CArrInfo> + --[=[ + @within CPtrInfo + @tag Method + @Method arr + + create an array subtype. + FIXME: recursive types; result 'any' should be CArrInfo> + + @param len The length of the array + @return array subtype + ]=] arr: (self: CPtrInfo, len: number) -> any, + -- FIXME: recursive types; result 'any' should be CPtrInfo> + --[=[ + @within CPtrInfo + @tag Method + @Method ptr + + create a pointer subtype. + FIXME: recursive types; result 'any' should be CPtrInfo> + + @return pointer subtype + ]=] ptr: (self: CPtrInfo) -> any, + --[=[ + @within CPtrInfo + @tag Method + @Method readData + + similar to readData . Reads data in the reference (the memory space pointed to by reference). + + @param Reference to read + @param byte offset + ]=] readRef: (self: CPtrInfo, target: RefData | BoxData, offset: number?) -> RefData, + + --[=[ + @within CPtrInfo + @tag Method + @Method writeData + + similar to writeData. Writes data in the reference (in the memory space pointed to by). + + @param reference to use + @param lua value to use + @param byte offset + ]=] writeRef: ( self: CPtrInfo, target: RefData | BoxData, @@ -379,17 +518,74 @@ export type CArrInfo = { inner: T, -- subtype + --[=[ + @within CArrInfo + @tag Method + @Method ptr + + create a pointer subtype. + FIXME: recursive types; result 'any' should be CPtrInfo> + + @return pointer subtype + ]=] ptr: (self: CArrInfo) -> CPtrInfo>, -- realize + --[=[ + @within CArrInfo + @tag Method + @Method box + + create a box with initial values + + @param table The array of field values + @return A box + ]=] box: (self: CArrInfo, table: { T }) -> BoxData, + + --[=[ + @within CArrInfo + @tag Method + @method readData + + Read a lua table from reference or box. + + @param target Target to read data from + @param offset Offset to read data from + @return A table + ]=] readData: (self: CArrInfo, target: RefData | BoxData, offset: number?) -> { T }, + + --[=[ + @within CArrInfo + @tag Method + @method writeData + + Write a lua table into reference or box. + + @param target Target to write data into + @param table Lua data to write + @param offset Offset to write data into + ]=] writeData: ( self: CArrInfo, target: RefData | BoxData, value: { R }, target_offset: number? ) -> (), + + --[=[ + @within CArrInfo + @tag Method + @Method copyData + + copy values ​​from the source and paste them into the target. + + @param destination where the data will be pasted + @param src The source data + @param dstOffset The offset in the destination where the data will be pasted + @param srcOffset The offset in the source data from where the data will be copied + ]=] copyData: ( self: CArrInfo, dst: RefData | BoxData, @@ -398,6 +594,16 @@ export type CArrInfo = { srcOffset: number? ) -> (), + --[=[ + @within CArrInfo + @tag Method + @method copyData + + returns the byte offset of the field. + + @param field index + @return byte offset + ]=] offset: (self: CArrInfo, index: number) -> number, } @@ -516,6 +722,18 @@ export type CStructInfo = { table: { any }, offset: number? ) -> (), + --[=[ + @within CSturctInfo + @tag Method + @method copyData + + Copy values from the source and paste them into the target. + + @param destination where the data will be pasted + @param src The source data + @param dstOffset The offset in the destination where the data will be pasted + @param srcOffset The offset in the source data from where the data will be copied + ]=] copyData: ( self: CStructInfo, dst: RefData | BoxData, @@ -524,7 +742,28 @@ export type CStructInfo = { srcOffset: number? ) -> (), + --[=[ + @within CSturctInfo + @tag Method + @method copyData + + returns the byte offset of the field. + + @param field index + @return byte offset + ]=] offset: (self: CStructInfo, index: number) -> number, + + --[=[ + @within CSturctInfo + @tag Method + @method copyData + + returns the field type + + @param field index + @return field type + ]=] field: (self: CStructInfo, index: number) -> CTypes, }