2

我在网上搜索过,但没有教程让我很清楚,所以我需要对此进行简要说明:

我想为 lua(在C语言编译器中)创建新的数据类型,以创建如下值:

pos1 = Vector3.new(5, 5, 4) --Represents 3D position

pos2 = CFrame.new(4, 2, 1) * CFrame.Angles(math.rad(40), math.rad(20), math.rad(5)) --Represents 3D position AND rotation

这些是我可以在名为 Roblox 的游戏引擎上通常使用的一些代码。我想重新创建它们以在 Roblox 外部使用。

4

2 回答 2

1
local Vector3 = {} 
setmetatable(Vector3,{
    __index = Vector3;
    __add = function(a,b) return Vector3:new(a.x+b.x,a.y+b.y,a.z+b.z); end;
    __tostring = function(a) return "("..a.x..','..a.y..','..a.z..")" end
}); --this metatable defines the overloads for tables with this metatable
function Vector3:new(x,y,z) --Vector3 is implicitly assigned to a variable self
    return setmetatable({x=x or 0,y=y or 0,z=z or 0},getmetatable(self)); #create a new table and give it the metatable of Vector3
end 

Vec1 = Vector3:new(1,2,3)
Vec2 = Vector3:new(0,1,1)
print(Vec1+Vec2)

输出

(1,3,4)
> 
于 2013-05-07T04:49:50.080 回答
0

metatables 和 loadstring 是我以与此类似的方式得出的结论:

loadstring([=[function ]=] .. customtype .. [=[.new(...)
return loadstring( [[function() return setmetatable( {...} , {__index = function() return ]] .. ... .. [[ ) end )() end]] ]=] )()

这只是我的意思的要点。对不起,它不整洁和完美,但至少它可以继续下去(我昨晚没睡多少)。

于 2015-06-12T23:50:23.667 回答