forked from qbcore-framework/PolyZone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreation_sv.lua
76 lines (68 loc) · 2.75 KB
/
creation_sv.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
RegisterNetEvent("polyzone:printPoly")
AddEventHandler("polyzone:printPoly", function(zone)
file = io.open('polyzone_created_zones.txt', "a")
io.output(file)
local output = parsePoly(zone)
io.write(output)
io.close(file)
end)
RegisterNetEvent("polyzone:printCircle")
AddEventHandler("polyzone:printCircle", function(zone)
file = io.open('polyzone_created_zones.txt', "a")
io.output(file)
local output = parseCircle(zone)
io.write(output)
io.close(file)
end)
RegisterNetEvent("polyzone:printBox")
AddEventHandler("polyzone:printBox", function(zone)
file = io.open('polyzone_created_zones.txt', "a")
io.output(file)
local output = parseBox(zone)
io.write(output)
io.close(file)
end)
function round(num, numDecimalPlaces)
local mult = 10^(numDecimalPlaces or 0)
return math.floor(num * mult + 0.5) / mult
end
function printoutHeader(name)
return "--Name: " .. name .. " | " .. os.date("!%Y-%m-%dT%H:%M:%SZ\n")
end
function parsePoly(zone)
local printout = printoutHeader(zone.name)
printout = printout .. "PolyZone:Create({\n"
for i=1, #zone.points do
if i ~= #zone.points then
printout = printout .. " vector2(" .. tostring(zone.points[i].x) .. ", " .. tostring(zone.points[i].y) .."),\n"
else
printout = printout .. " vector2(" .. tostring(zone.points[i].x) .. ", " .. tostring(zone.points[i].y) ..")\n"
end
end
printout = printout .. "}, {\n name=\"" .. zone.name .. "\",\n --minZ = " .. zone.minZ .. ",\n --maxZ = " .. zone.maxZ .. "\n})\n\n"
return printout
end
function parseCircle(zone)
local printout = printoutHeader(zone.name)
printout = printout .. "CircleZone:Create("
printout = printout .. "vector3(" .. tostring(round(zone.center.x, 2)) .. ", " .. tostring(round(zone.center.y, 2)) .. ", " .. tostring(round(zone.center.z, 2)) .."), "
printout = printout .. tostring(zone.radius) .. ", "
printout = printout .. "{\n name=\"" .. zone.name .. "\",\n useZ=" .. tostring(zone.useZ) .. ",\n --debugPoly=true\n})\n\n"
return printout
end
function parseBox(zone)
local printout = printoutHeader(zone.name)
printout = printout .. "BoxZone:Create("
printout = printout .. "vector3(" .. tostring(round(zone.center.x, 2)) .. ", " .. tostring(round(zone.center.y, 2)) .. ", " .. tostring(round(zone.center.z, 2)) .."), "
printout = printout .. tostring(zone.length) .. ", "
printout = printout .. tostring(zone.width) .. ", "
printout = printout .. "{\n name=\"" .. zone.name .. "\",\n heading=" .. zone.heading .. ",\n --debugPoly=true"
if zone.minZ then
printout = printout .. ",\n minZ=" .. tostring(round(zone.minZ, 2))
end
if zone.maxZ then
printout = printout .. ",\n maxZ=" .. tostring(round(zone.maxZ, 2))
end
printout = printout .. "\n})\n\n"
return printout
end