Skip to content

Commit 2332527

Browse files
authoredApr 5, 2021
Add vector.to_string and vector.from_string (#10323)
Writing vectors as strings is very common and should belong to `vector.*`. `minetest.pos_to_string` is also too long to write, implies that one should only use it for positions and leaves no spaces after the commas.
1 parent 19c2835 commit 2332527

File tree

3 files changed

+45
-0
lines changed

3 files changed

+45
-0
lines changed
 

‎builtin/common/tests/vector_spec.lua

+19
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,25 @@ describe("vector", function()
4848
assert.same({ x = 41, y = 52, z = 63 }, vector.offset(vector.new(1, 2, 3), 40, 50, 60))
4949
end)
5050

51+
it("to_string()", function()
52+
local v = vector.new(1, 2, 3.14)
53+
assert.same("(1, 2, 3.14)", vector.to_string(v))
54+
end)
55+
56+
it("from_string()", function()
57+
local v = vector.new(1, 2, 3.14)
58+
assert.same({v, 13}, {vector.from_string("(1, 2, 3.14)")})
59+
assert.same({v, 12}, {vector.from_string("(1,2 ,3.14)")})
60+
assert.same({v, 12}, {vector.from_string("(1,2,3.14,)")})
61+
assert.same({v, 11}, {vector.from_string("(1 2 3.14)")})
62+
assert.same({v, 15}, {vector.from_string("( 1, 2, 3.14 )")})
63+
assert.same({v, 15}, {vector.from_string(" ( 1, 2, 3.14) ")})
64+
assert.same({vector.new(), 8}, {vector.from_string("(0,0,0) ( 1, 2, 3.14) ")})
65+
assert.same({v, 22}, {vector.from_string("(0,0,0) ( 1, 2, 3.14) ", 8)})
66+
assert.same({v, 22}, {vector.from_string("(0,0,0) ( 1, 2, 3.14) ", 9)})
67+
assert.same(nil, vector.from_string("nothing"))
68+
end)
69+
5170
-- This function is needed because of floating point imprecision.
5271
local function almost_equal(a, b)
5372
if type(a) == "number" then

‎builtin/common/vector.lua

+16
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,22 @@ function vector.new(a, b, c)
1212
return {x=0, y=0, z=0}
1313
end
1414

15+
function vector.from_string(s, init)
16+
local x, y, z, np = string.match(s, "^%s*%(%s*([^%s,]+)%s*[,%s]%s*([^%s,]+)%s*[,%s]" ..
17+
"%s*([^%s,]+)%s*[,%s]?%s*%)()", init)
18+
x = tonumber(x)
19+
y = tonumber(y)
20+
z = tonumber(z)
21+
if not (x and y and z) then
22+
return nil
23+
end
24+
return {x = x, y = y, z = z}, np
25+
end
26+
27+
function vector.to_string(v)
28+
return string.format("(%g, %g, %g)", v.x, v.y, v.z)
29+
end
30+
1531
function vector.equals(a, b)
1632
return a.x == b.x and
1733
a.y == b.y and

‎doc/lua_api.txt

+10
Original file line numberDiff line numberDiff line change
@@ -3149,6 +3149,16 @@ For the following functions, `v`, `v1`, `v2` are vectors,
31493149
* Returns a vector.
31503150
* A copy of `a` if `a` is a vector.
31513151
* `{x = a, y = b, z = c}`, if all of `a`, `b`, `c` are defined numbers.
3152+
* `vector.from_string(s[, init])`:
3153+
* Returns `v, np`, where `v` is a vector read from the given string `s` and
3154+
`np` is the next position in the string after the vector.
3155+
* Returns `nil` on failure.
3156+
* `s`: Has to begin with a substring of the form `"(x, y, z)"`. Additional
3157+
spaces, leaving away commas and adding an additional comma to the end
3158+
is allowed.
3159+
* `init`: If given starts looking for the vector at this string index.
3160+
* `vector.to_string(v)`:
3161+
* Returns a string of the form `"(x, y, z)"`.
31523162
* `vector.direction(p1, p2)`:
31533163
* Returns a vector of length 1 with direction `p1` to `p2`.
31543164
* If `p1` and `p2` are identical, returns `{x = 0, y = 0, z = 0}`.

0 commit comments

Comments
 (0)
Please sign in to comment.