type plus

This commit is contained in:
kimpure 2024-11-03 01:07:10 +09:00
parent 4cc2698e30
commit b95266ef3c

View file

@ -284,13 +284,80 @@ export type CTypeInfo<T, R> = {
signedness: boolean, signedness: boolean,
-- subtype -- subtype
--[=[
@within CTypeInfo
@tag Method
@Method ptr
create a pointer subtype.
@return pointer subtype
]=]
ptr: (self: CTypeInfo<T, R>) -> CPtrInfo<CTypeInfo<T, R>>, ptr: (self: CTypeInfo<T, R>) -> CPtrInfo<CTypeInfo<T, R>>,
--[=[
@within CTypeInfo
@tag Method
@Method arr
create an array subtype.
@param len The length of the array
@return array subtype
]=]
arr: (self: CTypeInfo<T, R>, len: number) -> CArrInfo<CTypeInfo<T, R>, R>, arr: (self: CTypeInfo<T, R>, len: number) -> CArrInfo<CTypeInfo<T, R>, R>,
-- realize -- 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<T, R>, val: R) -> BoxData, box: (self: CTypeInfo<T, R>, 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<T, R>, target: RefData | BoxData, offset: number?) -> R, readData: (self: CTypeInfo<T, R>, 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<T, R>, target: RefData | BoxData, value: R, offset: number?) -> (), writeData: (self: CTypeInfo<T, R>, 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: ( copyData: (
self: CTypeInfo<T, R>, self: CTypeInfo<T, R>,
dst: RefData | BoxData, dst: RefData | BoxData,
@ -298,9 +365,37 @@ export type CTypeInfo<T, R> = {
dstOffset: number?, dstOffset: number?,
srcOffset: 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<T, R>, target: RefData | BoxData, offset: number?) -> string, stringifyData: (self: CTypeInfo<T, R>, target: RefData | BoxData, offset: number?) -> string,
-- FIXME: recursive types; 'intoType' should be CTypes -- 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: ( cast: (
self: CTypeInfo<T, R>, self: CTypeInfo<T, R>,
intoType: any, intoType: any,
@ -334,11 +429,55 @@ export type CPtrInfo<T> = {
-- subtype -- subtype
-- FIXME: recursive types; result 'any' should be CArrInfo<CPtrInfo<T>> -- FIXME: recursive types; result 'any' should be CArrInfo<CPtrInfo<T>>
--[=[
@within CPtrInfo
@tag Method
@Method arr
create an array subtype.
FIXME: recursive types; result 'any' should be CArrInfo<CPtrInfo<T>>
@param len The length of the array
@return array subtype
]=]
arr: (self: CPtrInfo<T>, len: number) -> any, arr: (self: CPtrInfo<T>, len: number) -> any,
-- FIXME: recursive types; result 'any' should be CPtrInfo<CPtrInfo<T>> -- FIXME: recursive types; result 'any' should be CPtrInfo<CPtrInfo<T>>
--[=[
@within CPtrInfo
@tag Method
@Method ptr
create a pointer subtype.
FIXME: recursive types; result 'any' should be CPtrInfo<CPtrInfo<T>>
@return pointer subtype
]=]
ptr: (self: CPtrInfo<T>) -> any, ptr: (self: CPtrInfo<T>) -> 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<T>, target: RefData | BoxData, offset: number?) -> RefData, readRef: (self: CPtrInfo<T>, 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: ( writeRef: (
self: CPtrInfo<T>, self: CPtrInfo<T>,
target: RefData | BoxData, target: RefData | BoxData,
@ -379,17 +518,74 @@ export type CArrInfo<T, R> = {
inner: T, inner: T,
-- subtype -- subtype
--[=[
@within CArrInfo
@tag Method
@Method ptr
create a pointer subtype.
FIXME: recursive types; result 'any' should be CPtrInfo<CPtrInfo<T>>
@return pointer subtype
]=]
ptr: (self: CArrInfo<T, R>) -> CPtrInfo<CArrInfo<T, R>>, ptr: (self: CArrInfo<T, R>) -> CPtrInfo<CArrInfo<T, R>>,
-- realize -- 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<T, R>, table: { T }) -> BoxData, box: (self: CArrInfo<T, R>, 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<T, R>, target: RefData | BoxData, offset: number?) -> { T }, readData: (self: CArrInfo<T, R>, 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: ( writeData: (
self: CArrInfo<T, R>, self: CArrInfo<T, R>,
target: RefData | BoxData, target: RefData | BoxData,
value: { R }, value: { R },
target_offset: number? 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: ( copyData: (
self: CArrInfo<T, R>, self: CArrInfo<T, R>,
dst: RefData | BoxData, dst: RefData | BoxData,
@ -398,6 +594,16 @@ export type CArrInfo<T, R> = {
srcOffset: number? srcOffset: number?
) -> (), ) -> (),
--[=[
@within CArrInfo
@tag Method
@method copyData
returns the byte offset of the field.
@param field index
@return byte offset
]=]
offset: (self: CArrInfo<T, R>, index: number) -> number, offset: (self: CArrInfo<T, R>, index: number) -> number,
} }
@ -516,6 +722,18 @@ export type CStructInfo = {
table: { any }, table: { any },
offset: number? 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: ( copyData: (
self: CStructInfo, self: CStructInfo,
dst: RefData | BoxData, dst: RefData | BoxData,
@ -524,7 +742,28 @@ export type CStructInfo = {
srcOffset: number? 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, 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, field: (self: CStructInfo, index: number) -> CTypes,
} }