2019-07-05 04:47:08 +03:00
|
|
|
local codegen = require "codegen"
|
|
|
|
local idl = codegen.idl "bgfx.idl"
|
2019-07-04 02:46:17 +03:00
|
|
|
|
|
|
|
local csharp_template = [[
|
|
|
|
using System;
|
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
using System.Security;
|
|
|
|
|
2019-07-05 02:07:18 +03:00
|
|
|
internal struct bgfx
|
2019-07-04 02:46:17 +03:00
|
|
|
{
|
|
|
|
$types
|
|
|
|
|
|
|
|
$funcs
|
|
|
|
|
|
|
|
#if DEBUG
|
|
|
|
const string DllName = "bgfx_debug.dll";
|
|
|
|
#else
|
|
|
|
const string DllName = "bgfx.dll";
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
]]
|
|
|
|
|
2019-07-04 17:30:32 +03:00
|
|
|
local function hasPrefix(str, prefix)
|
|
|
|
return prefix == "" or str:sub(1, #prefix) == prefix
|
|
|
|
end
|
|
|
|
|
2019-07-04 02:46:17 +03:00
|
|
|
local function hasSuffix(str, suffix)
|
|
|
|
return suffix == "" or str:sub(-#suffix) == suffix
|
|
|
|
end
|
|
|
|
|
|
|
|
local function convert_type_0(arg)
|
|
|
|
|
2019-07-04 17:30:32 +03:00
|
|
|
if hasPrefix(arg.ctype, "uint64_t") then
|
|
|
|
return arg.ctype:gsub("uint64_t", "ulong")
|
2019-07-04 18:00:35 +03:00
|
|
|
elseif hasPrefix(arg.ctype, "int64_t") then
|
|
|
|
return arg.ctype:gsub("int64_t", "long")
|
2019-07-04 17:30:32 +03:00
|
|
|
elseif hasPrefix(arg.ctype, "uint32_t") then
|
|
|
|
return arg.ctype:gsub("uint32_t", "uint")
|
|
|
|
elseif hasPrefix(arg.ctype, "int32_t") then
|
|
|
|
return arg.ctype:gsub("int32_t", "int")
|
|
|
|
elseif hasPrefix(arg.ctype, "uint16_t") then
|
|
|
|
return arg.ctype:gsub("uint16_t", "ushort")
|
2019-07-04 18:00:35 +03:00
|
|
|
elseif hasPrefix(arg.ctype, "bgfx_view_id_t") then
|
|
|
|
return arg.ctype:gsub("bgfx_view_id_t", "ushort")
|
2019-07-04 17:30:32 +03:00
|
|
|
elseif hasPrefix(arg.ctype, "uint8_t") then
|
|
|
|
return arg.ctype:gsub("uint8_t", "byte")
|
|
|
|
elseif hasPrefix(arg.ctype, "uintptr_t") then
|
|
|
|
return arg.ctype:gsub("uintptr_t", "UIntPtr")
|
2019-07-04 02:46:17 +03:00
|
|
|
elseif arg.ctype == "const char*" then
|
|
|
|
return "[MarshalAs(UnmanagedType.LPStr)] string"
|
|
|
|
elseif hasSuffix(arg.fulltype, "Handle") then
|
|
|
|
return arg.fulltype
|
2019-07-04 19:22:09 +03:00
|
|
|
elseif arg.ctype == "..." then
|
|
|
|
return "[MarshalAs(UnmanagedType.LPStr)] string args"
|
|
|
|
elseif arg.ctype == "va_list"
|
|
|
|
or arg.fulltype == "bx::AllocatorI*"
|
|
|
|
or arg.fulltype == "CallbackI*"
|
|
|
|
or arg.fulltype == "ReleaseFn" then
|
|
|
|
return "IntPtr"
|
|
|
|
elseif arg.fulltype == "const ViewId*" then
|
|
|
|
return "ushort*"
|
2019-07-04 02:46:17 +03:00
|
|
|
end
|
|
|
|
|
2019-07-04 17:30:32 +03:00
|
|
|
return arg.fulltype
|
2019-07-04 02:46:17 +03:00
|
|
|
end
|
|
|
|
|
|
|
|
local function convert_type(arg)
|
|
|
|
local ctype = convert_type_0(arg)
|
2019-07-04 17:30:32 +03:00
|
|
|
ctype = ctype:gsub("::Enum", "")
|
|
|
|
ctype = ctype:gsub("const ", "")
|
|
|
|
ctype = ctype:gsub(" &", "*")
|
|
|
|
ctype = ctype:gsub("&", "*")
|
|
|
|
return ctype
|
|
|
|
end
|
|
|
|
|
|
|
|
local function convert_ret_type(arg)
|
|
|
|
local ctype = convert_type(arg)
|
|
|
|
if hasPrefix(ctype, "[MarshalAs(UnmanagedType.LPStr)]") then
|
|
|
|
return "string"
|
|
|
|
end
|
|
|
|
|
|
|
|
return ctype
|
2019-07-04 02:46:17 +03:00
|
|
|
end
|
|
|
|
|
|
|
|
local converter = {}
|
|
|
|
local yield = coroutine.yield
|
|
|
|
|
2019-07-05 02:46:25 +03:00
|
|
|
local gen = {}
|
|
|
|
|
|
|
|
function gen.gen()
|
2019-07-04 02:46:17 +03:00
|
|
|
local r = csharp_template:gsub("$(%l+)", function(what)
|
|
|
|
local tmp = {}
|
|
|
|
for _, object in ipairs(idl[what]) do
|
|
|
|
local co = coroutine.create(converter[what])
|
|
|
|
local any
|
|
|
|
while true do
|
|
|
|
local ok, v = coroutine.resume(co, object)
|
|
|
|
assert(ok, debug.traceback(co, v))
|
|
|
|
if not v then
|
|
|
|
break
|
|
|
|
end
|
|
|
|
table.insert(tmp, v)
|
|
|
|
any = true
|
|
|
|
end
|
|
|
|
if any then
|
|
|
|
table.insert(tmp, "")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return table.concat(tmp, "\n\t")
|
|
|
|
end)
|
|
|
|
return r
|
|
|
|
end
|
|
|
|
|
|
|
|
local combined = { "State", "Stencil", "Buffer", "Texture", "Sampler", "Reset" }
|
|
|
|
|
2019-07-04 07:24:44 +03:00
|
|
|
for _, v in ipairs(combined) do
|
|
|
|
combined[v] = {}
|
|
|
|
end
|
|
|
|
|
|
|
|
local lastCombinedFlag
|
|
|
|
|
|
|
|
local function FlagBlock(typ)
|
|
|
|
if typ == nil then
|
|
|
|
return
|
2019-07-04 02:46:17 +03:00
|
|
|
end
|
|
|
|
|
2019-07-04 07:24:44 +03:00
|
|
|
local format = "0x%08x"
|
2019-07-04 17:30:32 +03:00
|
|
|
local enumType = " : uint"
|
2019-07-04 07:24:44 +03:00
|
|
|
if typ.bits == 64 then
|
|
|
|
format = "0x%016x"
|
|
|
|
enumType = " : ulong"
|
|
|
|
elseif typ.bits == 16 then
|
|
|
|
format = "0x%04x"
|
|
|
|
enumType = " : ushort"
|
|
|
|
end
|
2019-07-04 02:46:17 +03:00
|
|
|
|
2019-07-04 07:24:44 +03:00
|
|
|
yield("[Flags]")
|
2019-07-04 18:58:43 +03:00
|
|
|
yield("public enum " .. typ.name .. "Flags" .. enumType)
|
2019-07-04 07:24:44 +03:00
|
|
|
yield("{")
|
|
|
|
|
|
|
|
for _, flag in ipairs(typ.flag) do
|
2019-07-04 20:50:29 +03:00
|
|
|
local flagName = flag.name:gsub("_", "")
|
2019-07-04 07:24:44 +03:00
|
|
|
yield("\t"
|
2019-07-04 20:50:29 +03:00
|
|
|
.. flagName
|
|
|
|
.. string.rep(" ", 22 - #(flagName))
|
2019-07-04 07:24:44 +03:00
|
|
|
.. " = "
|
2019-07-04 16:36:08 +03:00
|
|
|
.. string.format(flag.format or format, flag.value)
|
2019-07-04 07:24:44 +03:00
|
|
|
.. ","
|
|
|
|
)
|
|
|
|
end
|
2019-07-04 20:50:29 +03:00
|
|
|
|
2019-07-04 16:36:08 +03:00
|
|
|
if typ.shift then
|
|
|
|
yield("\t"
|
|
|
|
.. "Shift"
|
|
|
|
.. string.rep(" ", 22 - #("Shift"))
|
|
|
|
.. " = "
|
|
|
|
.. flag.shift
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2019-07-04 07:24:44 +03:00
|
|
|
-- generate Mask
|
|
|
|
if typ.mask then
|
|
|
|
yield("\t"
|
|
|
|
.. "Mask"
|
|
|
|
.. string.rep(" ", 22 - #("Mask"))
|
|
|
|
.. " = "
|
|
|
|
.. string.format(format, flag.mask)
|
|
|
|
)
|
2019-07-04 02:46:17 +03:00
|
|
|
end
|
|
|
|
|
2019-07-04 07:24:44 +03:00
|
|
|
yield("}")
|
2019-07-04 02:46:17 +03:00
|
|
|
end
|
|
|
|
|
2019-07-04 16:36:08 +03:00
|
|
|
local function lastCombinedFlagBlock()
|
|
|
|
if lastCombinedFlag then
|
|
|
|
FlagBlock(combined[lastCombinedFlag])
|
|
|
|
lastCombinedFlag = nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-07-04 02:46:17 +03:00
|
|
|
function converter.types(typ)
|
|
|
|
if typ.handle then
|
2019-07-04 16:36:08 +03:00
|
|
|
lastCombinedFlagBlock()
|
2019-07-04 02:46:17 +03:00
|
|
|
|
|
|
|
yield("public struct " .. typ.name .. "{ public ushort idx; }")
|
|
|
|
elseif hasSuffix(typ.name, "::Enum") then
|
2019-07-04 16:36:08 +03:00
|
|
|
lastCombinedFlagBlock()
|
2019-07-04 02:46:17 +03:00
|
|
|
|
|
|
|
yield("public enum " .. typ.typename)
|
|
|
|
yield("{")
|
|
|
|
for _, enum in ipairs(typ.enum) do
|
|
|
|
yield("\t" .. enum.name .. ",")
|
|
|
|
end
|
|
|
|
yield("}")
|
|
|
|
elseif typ.bits ~= nil then
|
2019-07-04 07:24:44 +03:00
|
|
|
local prefix, name = typ.name:match "(%u%l+)(.*)"
|
|
|
|
if prefix ~= lastCombinedFlag then
|
2019-07-04 16:36:08 +03:00
|
|
|
lastCombinedFlagBlock()
|
|
|
|
lastCombinedFlag = prefix
|
2019-07-04 02:46:17 +03:00
|
|
|
end
|
2019-07-04 07:24:44 +03:00
|
|
|
local combinedFlag = combined[prefix]
|
|
|
|
if combinedFlag then
|
|
|
|
combinedFlag.bits = typ.bits
|
|
|
|
combinedFlag.name = prefix
|
|
|
|
local flags = combinedFlag.flag or {}
|
|
|
|
combinedFlag.flag = flags
|
|
|
|
local lookup = combinedFlag.lookup or {}
|
|
|
|
combinedFlag.lookup = lookup
|
|
|
|
for _, flag in ipairs(typ.flag) do
|
2019-07-04 20:50:29 +03:00
|
|
|
local flagName = name .. flag.name:gsub("_", "")
|
2019-07-04 07:24:44 +03:00
|
|
|
local value = flag.value
|
|
|
|
if value == nil then
|
|
|
|
-- It's a combined flag
|
|
|
|
value = 0
|
|
|
|
for _, v in ipairs(flag) do
|
|
|
|
value = value | assert(lookup[name .. v], v .. " is not defined for " .. flagName)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
lookup[flagName] = value
|
|
|
|
table.insert(flags, {
|
|
|
|
name = flagName,
|
|
|
|
value = value,
|
|
|
|
})
|
2019-07-04 02:46:17 +03:00
|
|
|
end
|
2019-07-04 16:36:08 +03:00
|
|
|
if typ.shift then
|
|
|
|
table.insert(flags, {
|
|
|
|
name = name .. "Shift",
|
|
|
|
value = typ.shift,
|
|
|
|
format = "%d",
|
|
|
|
})
|
|
|
|
end
|
2019-07-04 07:24:44 +03:00
|
|
|
if typ.mask then
|
|
|
|
-- generate Mask
|
|
|
|
table.insert(flags, {
|
|
|
|
name = name .. "Mask",
|
|
|
|
value = typ.mask,
|
|
|
|
})
|
|
|
|
lookup[name .. "Mask"] = typ.mask
|
2019-07-04 02:46:17 +03:00
|
|
|
end
|
2019-07-04 07:24:44 +03:00
|
|
|
else
|
|
|
|
FlagBlock(typ)
|
2019-07-04 02:46:17 +03:00
|
|
|
end
|
2019-07-04 18:00:35 +03:00
|
|
|
elseif typ.struct ~= nil then
|
2019-07-04 18:58:43 +03:00
|
|
|
|
|
|
|
if typ.namespace ~= nil then
|
|
|
|
yield("public unsafe struct " .. typ.namespace .. typ.name)
|
|
|
|
else
|
|
|
|
yield("public unsafe struct " .. typ.name)
|
|
|
|
end
|
|
|
|
|
2019-07-04 18:00:35 +03:00
|
|
|
yield("{")
|
|
|
|
|
|
|
|
for _, member in ipairs(typ.struct) do
|
|
|
|
yield(
|
2019-07-04 19:22:09 +03:00
|
|
|
"\tpublic " .. convert_type(member) .. " " .. member.name .. ";"
|
2019-07-04 18:00:35 +03:00
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
yield("}")
|
2019-07-04 02:46:17 +03:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function converter.funcs(func)
|
2019-07-05 02:07:18 +03:00
|
|
|
yield("[DllImport(DllName, EntryPoint=\"bgfx_" .. func.cname .. "\", CallingConvention = CallingConvention.Cdecl)]")
|
2019-07-04 02:46:17 +03:00
|
|
|
|
|
|
|
if func.ret.cpptype == "bool" then
|
2019-07-04 17:30:32 +03:00
|
|
|
yield("[return: MarshalAs(UnmanagedType.I1)]")
|
|
|
|
elseif func.ret.cpptype == "const char*" then
|
|
|
|
yield("[return: MarshalAs(UnmanagedType.LPStr)]")
|
2019-07-04 02:46:17 +03:00
|
|
|
end
|
|
|
|
|
|
|
|
local first = ""
|
|
|
|
local args = "("
|
|
|
|
|
|
|
|
for _, arg in ipairs(func.args) do
|
|
|
|
|
|
|
|
local argtype = convert_type(arg)
|
|
|
|
|
|
|
|
args = args .. first .. argtype .. " " .. arg.name
|
|
|
|
first = ", "
|
|
|
|
end
|
|
|
|
|
2019-07-05 02:07:18 +03:00
|
|
|
yield("internal static extern unsafe " .. convert_ret_type(func.ret) .. " " .. func.cname .. args .. ");")
|
2019-07-04 02:46:17 +03:00
|
|
|
end
|
|
|
|
|
|
|
|
-- printtable("idl types", idl.types)
|
|
|
|
-- printtable("idl funcs", idl.funcs)
|
2019-07-05 02:46:25 +03:00
|
|
|
|
|
|
|
function gen.write(codes, outputfile)
|
|
|
|
local out = assert(io.open(outputfile, "wb"))
|
|
|
|
out:write(codes)
|
|
|
|
out:close()
|
|
|
|
end
|
|
|
|
|
|
|
|
return gen
|