diff options
author | 1F616EMO <root@1f616emo.xyz> | 2024-12-24 21:05:17 +0800 |
---|---|---|
committer | orwell <orwell@bleipb.de> | 2025-03-24 22:48:52 +0100 |
commit | 6566e6fbca46ad16552a11ef9d7a22ae21698e3d (patch) | |
tree | b9ac613947ab06804ac0c1129a7067d082e0ad49 | |
parent | 5546dca7825127152558b2982ce47a219456eb34 (diff) | |
download | advtrains-6566e6fbca46ad16552a11ef9d7a22ae21698e3d.tar.gz advtrains-6566e6fbca46ad16552a11ef9d7a22ae21698e3d.tar.bz2 advtrains-6566e6fbca46ad16552a11ef9d7a22ae21698e3d.zip |
Allow boarding wagons with irregular width from the platform
(i.e. width ~= 3)
Extends detection to the whole span of the wagon's width (to be consistent with previous behaviors, the middle is only included if width = 1).
-rw-r--r-- | advtrains/wagons.lua | 36 |
1 files changed, 22 insertions, 14 deletions
diff --git a/advtrains/wagons.lua b/advtrains/wagons.lua index 01c60ec..1a7e1f0 100644 --- a/advtrains/wagons.lua +++ b/advtrains/wagons.lua @@ -461,26 +461,34 @@ function wagon:on_step(dtime) --needs to know index and path if train.velocity==0 and self.door_entry and train.door_open and train.door_open~=0 then --using the mapping created by the trainlogic globalstep + local platform_offset = math.floor(self.wagon_width / 2) for i, ino in ipairs(self.door_entry) do --fct is the flipstate flag from door animation above local aci = advtrains.path_get_index_by_offset(train, index, ino*fct) local ix1, ix2 = advtrains.path_get_adjacent(train, aci) -- the two wanted positions are ix1 and ix2 + (2nd-1st rotated by 90deg) -- (x z) rotated by 90deg is (-z x) (http://stackoverflow.com/a/4780141) - local add = { x = (ix2.z-ix1.z)*train.door_open, y = 0, z = (ix1.x-ix2.x)*train.door_open } - local pts1=vector.round(vector.add(ix1, add)) - local pts2=vector.round(vector.add(ix2, add)) - if minetest.get_item_group(minetest.get_node(pts1).name, "platform")>0 then - local ckpts={ - pts1, - pts2, - vector.add(pts1, {x=0, y=1, z=0}), - vector.add(pts2, {x=0, y=1, z=0}), - } - for _,ckpos in ipairs(ckpts) do - local cpp=minetest.pos_to_string(ckpos) - if advtrains.playersbypts[cpp] then - self:on_rightclick(advtrains.playersbypts[cpp]) + local add = { + x = atround((ix2.z-ix1.z)*train.door_open), + y = 0, + z = atround((ix1.x-ix2.x)*train.door_open) + } + for offset = (platform_offset == 0 and 0 or 1), platform_offset do + local scaled_add = vector.multiply(add, offset) + local pts1=vector.add(ix1, scaled_add) + local pts2=vector.add(ix2, scaled_add) + if minetest.get_item_group(minetest.get_node(pts1).name, "platform")>0 then + local ckpts={ + pts1, + pts2, + vector.add(pts1, {x=0, y=1, z=0}), + vector.add(pts2, {x=0, y=1, z=0}), + } + for _,ckpos in ipairs(ckpts) do + local cpp=minetest.pos_to_string(ckpos) + if advtrains.playersbypts[cpp] then + self:on_rightclick(advtrains.playersbypts[cpp]) + end end end end |