commit 3ec1933a2ccbc98b7c0b9850b5dd252761261e34 Author: mbb Date: Mon Jul 31 16:04:17 2017 +0200 Iniial commit diff --git a/depends.txt b/depends.txt new file mode 100755 index 0000000..1fb6665 --- /dev/null +++ b/depends.txt @@ -0,0 +1,2 @@ +advtrains +intllib? \ No newline at end of file diff --git a/init.lua b/init.lua new file mode 100755 index 0000000..3226142 --- /dev/null +++ b/init.lua @@ -0,0 +1,77 @@ +local S +if minetest.get_modpath("intllib") then + S = intllib.Getter() +else + S = function(s,a,...)a={a,...}return s:gsub("@(%d+)",function(n)return a[tonumber(n)]end)end +end + + +advtrains.register_wagon("NY_lokomotive", { + mesh="advtrains_engine_ny.b3d", + textures = {"advtrains_engine_ny.png"}, + is_locomotive=true, + drives_on={default=true}, + max_speed=10, + seats = { + { + name=S("Driver Stand (left)"), + attach_offset={x=-1, y=5, z=2}, + view_offset={x=0, y=-4, z=2}, + driving_ctrl_access=true, + group = "dstand", + }, +-- { +-- name=S("Driver Stand (right)"), +-- attach_offset={x=5, y=10, z=-10}, +-- view_offset={x=0, y=6, z=0}, +-- driving_ctrl_access=true, +-- group = "dstand", +-- }, + }, + seat_groups = { + dstand={ + name = "Driver Stand", + access_to = {}, + }, + }, + assign_to_seat_group = {"dstand"}, + visual_size = {x=1, y=1}, + wagon_span=1.85, + collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0}, + update_animation=function(self, velocity) + if self.old_anim_velocity~=advtrains.abs_ceil(velocity) then + self.object:set_animation({x=1,y=80}, advtrains.abs_ceil(velocity)*15, 0, true) + self.old_anim_velocity=advtrains.abs_ceil(velocity) + end + end, + custom_on_activate = function(self, staticdata_table, dtime_s) + minetest.add_particlespawner({ + amount = 10, + time = 0, + -- ^ If time is 0 has infinite lifespan and spawns the amount on a per-second base + minpos = {x=0, y=2, z=1.2}, + maxpos = {x=0, y=2, z=1.2}, + minvel = {x=-0.2, y=1.8, z=-0.2}, + maxvel = {x=0.2, y=2, z=0.2}, + minacc = {x=0, y=-0.1, z=0}, + maxacc = {x=0, y=-0.3, z=0}, + minexptime = 2, + maxexptime = 4, + minsize = 1, + maxsize = 4, + -- ^ The particle's properties are random values in between the bounds: + -- ^ minpos/maxpos, minvel/maxvel (velocity), minacc/maxacc (acceleration), + -- ^ minsize/maxsize, minexptime/maxexptime (expirationtime) + collisiondetection = true, + -- ^ collisiondetection: if true uses collision detection + vertical = false, + -- ^ vertical: if true faces player using y axis only + texture = "smoke_puff.png", + -- ^ Uses texture (string) + attached = self.object, + }) + end, + drops={"advtrains:engine_ny"}, +}, S("NY Engine"), "advtrains_engine_ny_inv.png") + + diff --git a/models/advtrains_engine_ny.b3d b/models/advtrains_engine_ny.b3d new file mode 100644 index 0000000..17c97ee Binary files /dev/null and b/models/advtrains_engine_ny.b3d differ diff --git a/textures/advtrains_engine_ny.png b/textures/advtrains_engine_ny.png new file mode 100644 index 0000000..9bdcf47 Binary files /dev/null and b/textures/advtrains_engine_ny.png differ