Skip to content

Commit

Permalink
feat(resource/zoneCreator): target output format
Browse files Browse the repository at this point in the history
  • Loading branch information
DokaDoka committed Sep 14, 2022
1 parent 6fb18c7 commit eef6e04
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 0 deletions.
1 change: 1 addition & 0 deletions resource/zoneCreator/client.lua
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ local function closeCreator(cancel)
{ type = 'select', label = 'Format', default = format, options = {
{ value = 'function', label = 'Function' },
{ value = 'array', label = 'Array' },
{ value = 'target', label = 'Target'},
}}
}) or {}

Expand Down
38 changes: 38 additions & 0 deletions resource/zoneCreator/server.lua
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,18 @@ local poly = lib.zones.poly({
},
thickness = 2,
},
-- target
exports.ox_target:addPolyZone({
name = poly,
points = {
vec(447.9, -998.8, 25.8),
vec(450.3, -998.2, 25.8),
vec(449.9, -995.5, 25.8),
vec(447.2, -995.6, 25.8),
vec(446.3, -997.9, 25.8),
},
thickness = 2,
})
]]

local parse = {
Expand Down Expand Up @@ -51,6 +63,15 @@ local parse = {
('\tthickness = %s,\n'):format(data.height),
'},\n'
}
elseif data.format == 'target' then
pattern = {
'exports.ox_target:addPolyZone({\n',
('\tname = "%s",\n'):format(data.name),
'\tpoints = {\n',
('%s\t},\n'):format(table.concat(points)),
('\tthickness = %s,\n'):format(data.height),
'})\n'
}
end

return table.concat(pattern)
Expand All @@ -75,6 +96,15 @@ local parse = {
('\trotation = %s,\n'):format(data.heading),
'},\n',
}
elseif data.format == 'target' then
pattern = {
'exports.ox_target:addBoxZone({\n',
('\tname = "%s",\n'):format(data.name),
('\tcoords = vec3(%s, %s, %s),\n'):format(data.xCoord, data.yCoord, data.zCoord),
('\tsize = vec3(%s, %s, %s),\n'):format(data.width, data.length, data.height),
('\trotation = %s,\n'):format(data.heading),
'})\n',
}
end

return table.concat(pattern)
Expand All @@ -97,6 +127,14 @@ local parse = {
('\tradius = %s,\n'):format(data.height),
'},\n',
}
elseif data.format == 'target' then
pattern = {
'exports.ox_target:addSphereZone({\n',
('\tname = "%s",\n'):format(data.name),
('\tcoords = vec3(%s, %s, %s),\n'):format(data.xCoord, data.yCoord, data.zCoord),
('\tradius = %s,\n'):format(data.height),
'})\n',
}
end

return table.concat(pattern)
Expand Down

0 comments on commit eef6e04

Please sign in to comment.