123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- 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=-2.8, y=-1, z=18},
- view_offset={x=0, y=-3, z=10},
- driving_ctrl_access=true,
- group = "dstand",
- },
- {
- name="1",
- attach_offset={x=-4, y=-3, z=8},
- view_offset={x=0, y=-4, z=0},
- group="pass",
- },
- {
- name="2",
- attach_offset={x=4, y=-3, z=8},
- view_offset={x=0, y=-4, z=0},
- group="pass",
- },
- {
- name="3",
- attach_offset={x=-4, y=-3, z=-8},
- view_offset={x=0, y=-4, z=0},
- group="pass",
- },
- {
- name="4",
- attach_offset={x=4, y=-3, z=-8},
- view_offset={x=0, y=-4, z=0},
- group="pass",
- },
- },
- seat_groups = {
- dstand={
- name = "Driver Stand",
- access_to = {"pass"},
- driving_ctrl_access=true,
- require_doors_open=true,
- },
- pass={
- name = "Passenger area",
- access_to = {"dstand"},
- require_doors_open=true,
- },
- },
- assign_to_seat_group = {"dstand", "pass"},
- doors={
- open={
- [-1]={frames={x=0, y=20}, time=1},
- [1]={frames={x=40, y=60}, time=1}
- },
- close={
- [-1]={frames={x=20, y=40}, time=1},
- [1]={frames={x=60, y=80}, time=1}
- }
- },
- visual_size = {x=1, y=1},
- wagon_span=2.3,
- 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,
- drops={"advtrains:NY_lokomotive"},
- }, S("NY subway Engine"), "advtrains_engine_ny_inv.png")
- advtrains.register_wagon("ny_wagon", {
- mesh="advtrains_wagon_ny.b3d",
- textures = {"advtrains_engine_ny.png"},
- drives_on={default=true},
- max_speed=20,
- seats = {
- {
- name="1",
- attach_offset={x=-4, y=-3, z=8},
- view_offset={x=0, y=-4, z=0},
- group="pass",
- },
- {
- name="2",
- attach_offset={x=4, y=-3, z=8},
- view_offset={x=0, y=-4, z=0},
- group="pass",
- },
- {
- name="1a",
- attach_offset={x=-4, y=-3, z=0},
- view_offset={x=0, y=-4, z=0},
- group="pass",
- },
- {
- name="2a",
- attach_offset={x=4, y=-3, z=0},
- view_offset={x=0, y=-4, z=0},
- group="pass",
- },
- {
- name="3",
- attach_offset={x=-4, y=-3, z=-8},
- view_offset={x=0, y=-4, z=0},
- group="pass",
- },
- {
- name="4",
- attach_offset={x=4, y=-3, z=-8},
- view_offset={x=0, y=-4, z=0},
- group="pass",
- },
- },
- seat_groups = {
- pass={
- name = "Passenger area",
- access_to = {},
- require_doors_open=true,
- },
- },
- assign_to_seat_group = {"pass"},
- doors={
- open={
- [-1]={frames={x=0, y=20}, time=1},
- [1]={frames={x=40, y=60}, time=1}
- },
- close={
- [-1]={frames={x=20, y=40}, time=1},
- [1]={frames={x=60, y=80}, time=1}
- }
- },
- door_entry={-1, 1},
- visual_size = {x=1, y=1},
- wagon_span=2.3,
- collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0},
- drops={"advtrains:ny_wagon"},
- }, S("NY subway wagon"), "advtrains_wagon_ny_inv.png")
|