Skip to content

Commit

Permalink
Reformat from tabs to spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
Jordan2139 committed Feb 7, 2023
1 parent 3fe0e67 commit e1919cb
Showing 1 changed file with 37 additions and 37 deletions.
74 changes: 37 additions & 37 deletions sv.lua
Original file line number Diff line number Diff line change
@@ -1,59 +1,59 @@
-- version check
Citizen.CreateThread(function()
local vRaw = LoadResourceFile(GetCurrentResourceName(), 'version.json')
if vRaw and config.versionCheck then
local v = json.decode(vRaw)
local url = 'https://raw.githubusercontent.com/DevBlocky/nearest-postal/master/version.json'
PerformHttpRequest(url, function(code, res)
if code == 200 then
local rv = json.decode(res)
if rv.version ~= v.version then
print(([[
local vRaw = LoadResourceFile(GetCurrentResourceName(), 'version.json')
if vRaw and config.versionCheck then
local v = json.decode(vRaw)
local url = 'https://raw.githubusercontent.com/DevBlocky/nearest-postal/master/version.json'
PerformHttpRequest(url, function(code, res)
if code == 200 then
local rv = json.decode(res)
if rv.version ~= v.version then
print(([[
-------------------------------------------------------
nearest-postal
UPDATE: %s AVAILABLE
CHANGELOG: %s
-------------------------------------------------------
]]):format(rv.version, rv.changelog))
end
else
print('nearest-postal was unable to check the version')
end
end, 'GET')
end
end
else
print('nearest-postal was unable to check the version')
end
end, 'GET')
end
end)

-- add functionality to get postals server side from a vec3

local postals = nil
Citizen.CreateThread(function()
postals = LoadResourceFile(GetCurrentResourceName(), GetResourceMetadata(GetCurrentResourceName(), 'postal_file'))
postals = json.decode(postals)
for i, postal in ipairs(postals) do
postals[i] = {vec(postal.x, postal.y), code = postal.code}
end
postals = LoadResourceFile(GetCurrentResourceName(), GetResourceMetadata(GetCurrentResourceName(), 'postal_file'))
postals = json.decode(postals)
for i, postal in ipairs(postals) do
postals[i] = {vec(postal.x, postal.y), code = postal.code}
end
end)

local function getPostalServer(coords)
while postals == nil do
Wait(1)
end
local _total = #postals
local _nearestIndex, _nearestD
coords = vec(coords[1], coords[2])
while postals == nil do
Wait(1)
end
local _total = #postals
local _nearestIndex, _nearestD
coords = vec(coords[1], coords[2])

for i = 1, _total do
local D = #(coords - postals[i][1])
if not _nearestD or D < _nearestD then
_nearestIndex = i
_nearestD = D
end
end
local _code = postals[_nearestIndex].code
local nearest = {code = _code, dist = _nearestD}
return nearest or nil
for i = 1, _total do
local D = #(coords - postals[i][1])
if not _nearestD or D < _nearestD then
_nearestIndex = i
_nearestD = D
end
end
local _code = postals[_nearestIndex].code
local nearest = {code = _code, dist = _nearestD}
return nearest or nil
end

exports('getPostalServer', function(coords)
return getPostalServer(coords)
return getPostalServer(coords)
end)

0 comments on commit e1919cb

Please sign in to comment.