123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348 |
- 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
- local function jr_set_livery(self, puncher, itemstack,data)
- -- Get color data
- local meta = itemstack:get_meta()
- local color = meta:get_string("paint_color")
- local alpha = tonumber(meta:get_string("alpha"))
- if color and color:find("^#%x%x%x%x%x%x$") then
- data.livery = self.base_texture.."^("..self.base_livery.."^[colorize:"..color..":255)" -- livery texture has no own texture....
- self:set_textures(data)
- end
- end
- local function jr_set_textures(self, data)
- if data.livery then
- self.object:set_properties({
- textures={data.livery}
- })
- end
- end
- advtrains.register_wagon("KuHa_E231", {
- mesh="advtrains_KuHa_E231.b3d",
- textures = {"advtrains_KuHa_E231.png"},
- drives_on={default=true},
- max_speed=20,
- seats = {
- {
- name=S("Driver stand"),
- attach_offset={x=0, y=8, z=18},
- view_offset={x=0, y=0, z=0},
- driving_ctrl_access=true,
- group="dstand",
- },
- {
- name="1",
- attach_offset={x=-4, y=8, z=0},
- view_offset={x=0, y=0, z=0},
- group="pass",
- },
- {
- name="2",
- attach_offset={x=4, y=8, z=0},
- view_offset={x=0, y=0, z=0},
- group="pass",
- },
- {
- name="3",
- attach_offset={x=-4, y=8, z=-8},
- view_offset={x=0, y=0, z=0},
- group="pass",
- },
- {
- name="4",
- attach_offset={x=4, y=8, z=-8},
- view_offset={x=0, y=0, z=0},
- group="pass",
- },
- },
- seat_groups = {
- dstand={
- name = "Driver Stand",
- access_to = {"pass"},
- require_doors_open=true,
- driving_ctrl_access=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=40}, time=1},
- [1]={frames={x=80, y=120}, time=1},
- sound = "advtrains_train_jre231_door_chime",
- },
- close={
- [-1]={frames={x=40, y=80}, time=1},
- [1]={frames={x=120, y=160}, time=1},
- sound = "advtrains_train_jre231_door_chime",
- }
- },
- door_entry={-1},
- assign_to_seat_group = {"dstand", "pass"},
- visual_size = {x=1, y=1},
- wagon_span=2.5,
- is_locomotive=true,
- collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0},
- drops={"default:steelblock 4"},
- horn_sound = "advtrains_train_jre231_horn",
- base_texture = "advtrains_KuHa_E231.png",
- base_livery = "advtrains_KuHa_E231_livery.png",
- set_textures = jr_set_textures,
- set_livery = jr_set_livery,
-
- custom_on_velocity_change = function(self, velocity, old_velocity, dtime)
- if not velocity or not old_velocity then return end
- if old_velocity == 0 and velocity > 0 then
- if self.sound_arrive_handle then
- minetest.sound_stop(self.sound_arrive_handle)
- self.sound_arrive_handle = nil
- end
- self.sound_depart_handle = minetest.sound_play("advtrains_train_jre231_depart", {object = self.object})
- end
- if velocity < 2 and (old_velocity >= 2 or old_velocity == velocity) and not self.sound_arrive_handle then
- if self.sound_depart_handle then
- minetest.sound_stop(self.sound_depart_handle)
- self.sound_depart_handle = nil
- end
- self.sound_arrive_handle = minetest.sound_play("advtrains_train_jre231_arrive", {object = self.object})
- elseif (velocity > old_velocity) and self.sound_arrive_handle then
- minetest.sound_stop(self.sound_arrive_handle)
- self.sound_arrive_handle = nil
- end
- end,
- }, S("KuHa_E231"), "advtrains_KuHa_E231_inv.png^advtrains_jre231_inv_overlay_right.png^advtrains_jre231_inv_overlay_middle.png")
- advtrains.register_wagon("MoHa_E231", {
- mesh="advtrains_MoHa_E231.b3d",
- textures = {"advtrains_MoHa_E231.png"},
- drives_on={default=true},
- max_speed=20,
- seats = {
- {
- name="1",
- attach_offset={x=-4, y=8, z=8},
- view_offset={x=0, y=0, z=0},
- group="pass",
- },
- {
- name="2",
- attach_offset={x=4, y=8, z=8},
- view_offset={x=0, y=0, z=0},
- group="pass",
- },
- {
- name="1a",
- attach_offset={x=-4, y=8, z=0},
- view_offset={x=0, y=0, z=0},
- group="pass",
- },
- {
- name="2a",
- attach_offset={x=4, y=8, z=0},
- view_offset={x=0, y=0, z=0},
- group="pass",
- },
- {
- name="3",
- attach_offset={x=-4, y=8, z=-8},
- view_offset={x=0, y=0, z=0},
- group="pass",
- },
- {
- name="4",
- attach_offset={x=4, y=8, z=-8},
- view_offset={x=0, y=0, 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=40}, time=1},
- [1]={frames={x=80, y=120}, time=1},
- sound = "advtrains_train_jre231_door_chime",
- },
- close={
- [-1]={frames={x=40, y=80}, time=1},
- [1]={frames={x=120, y=160}, time=1},
- sound = "advtrains_train_jre231_door_chime",
- }
- },
- 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},
- base_texture = "advtrains_MoHa_E231.png",
- base_livery = "advtrains_MoHa_E231_livery.png",
- set_textures = jr_set_textures,
- set_livery = jr_set_livery,
- drops={"default:steelblock 4"},
- }, S("MoHa_E231"), "advtrains_MoHa_E231_inv.png^advtrains_jre231_inv_overlay_middle.png^advtrains_jre231_inv_overlay_left.png^advtrains_jre231_inv_overlay_right.png^advtrains_jre231_inv_overlay_top.png")
- advtrains.register_wagon("SaHa_E231", {
- mesh="advtrains_SaHa_E231.b3d",
- textures = {"advtrains_SaHa_E231.png"},
- drives_on={default=true},
- max_speed=20,
- seats = {
- {
- name="1",
- attach_offset={x=-4, y=8, z=8},
- view_offset={x=0, y=0, z=0},
- group="pass",
- },
- {
- name="2",
- attach_offset={x=4, y=8, z=8},
- view_offset={x=0, y=0, z=0},
- group="pass",
- },
- {
- name="1a",
- attach_offset={x=-4, y=8, z=0},
- view_offset={x=0, y=0, z=0},
- group="pass",
- },
- {
- name="2a",
- attach_offset={x=4, y=8, z=0},
- view_offset={x=0, y=0, z=0},
- group="pass",
- },
- {
- name="3",
- attach_offset={x=-4, y=8, z=-8},
- view_offset={x=0, y=0, z=0},
- group="pass",
- },
- {
- name="4",
- attach_offset={x=4, y=8, z=-8},
- view_offset={x=0, y=0, 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=40}, time=1},
- [1]={frames={x=80, y=120}, time=1},
- sound = "advtrains_train_jre231_door_chime",
- },
- close={
- [-1]={frames={x=40, y=80}, time=1},
- [1]={frames={x=120, y=160}, time=1},
- sound = "advtrains_train_jre231_door_chime",
- }
- },
- 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={"default:steelblock 4"},
- base_texture = "advtrains_SaHa_E231.png",
- base_livery = "advtrains_MoHa_E231_livery.png",
- set_textures = jr_set_textures,
- set_livery = jr_set_livery,
- }, S("SaHa_E231"), "advtrains_SaHa_E231_inv.png^advtrains_jre231_inv_overlay_left.png^advtrains_jre231_inv_overlay_right.png")
- advtrains.register_wagon("MoHa_E230", {
- mesh="advtrains_MoHa_E230.b3d",
- textures = {"advtrains_MoHa_E230.png"},
- drives_on={default=true},
- max_speed=20,
- seats = {
- {
- name="1",
- attach_offset={x=-4, y=8, z=8},
- view_offset={x=0, y=0, z=0},
- group="pass",
- },
- {
- name="2",
- attach_offset={x=4, y=8, z=8},
- view_offset={x=0, y=0, z=0},
- group="pass",
- },
- {
- name="1a",
- attach_offset={x=-4, y=8, z=0},
- view_offset={x=0, y=0, z=0},
- group="pass",
- },
- {
- name="2a",
- attach_offset={x=4, y=8, z=0},
- view_offset={x=0, y=0, z=0},
- group="pass",
- },
- {
- name="3",
- attach_offset={x=-4, y=8, z=-8},
- view_offset={x=0, y=0, z=0},
- group="pass",
- },
- {
- name="4",
- attach_offset={x=4, y=8, z=-8},
- view_offset={x=0, y=0, 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=40}, time=1},
- [1]={frames={x=80, y=120}, time=1},
- sound = "advtrains_train_jre231_door_chime",
- },
- close={
- [-1]={frames={x=40, y=80}, time=1},
- [1]={frames={x=120, y=160}, time=1},
- sound = "advtrains_train_jre231_door_chime",
- }
- },
- 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},
- base_texture = "advtrains_MoHa_E230.png",
- base_livery = "advtrains_MoHa_E231_livery.png",
- set_textures = jr_set_textures,
- set_livery = jr_set_livery,
- drops={"default:steelblock 4"},
- }, S("MoHa_E230"), "advtrains_MoHa_E230_inv.png^advtrains_jre231_inv_overlay_middle.png^advtrains_jre231_inv_overlay_left.png^advtrains_jre231_inv_overlay_right.png")
|