diff --git a/basic_trains/advtrains_train_industrial/init.lua b/basic_trains/advtrains_train_industrial/init.lua deleted file mode 100644 index f22f806..0000000 --- a/basic_trains/advtrains_train_industrial/init.lua +++ /dev/null @@ -1,149 +0,0 @@ -local S = attrans - -advtrains.register_wagon("engine_industrial", { - mesh="advtrains_engine_industrial.b3d", - textures = {"advtrains_engine_industrial.png"}, - drives_on={default=true}, - max_speed=20, - seats = { - { - name=S("Driver Stand (right)"), - attach_offset={x=5, y=-3, z=-8}, - view_offset={x=5.2, y=-4, z=0}, - driving_ctrl_access=true, - group = "dstand", - }, - { - name=S("Driver Stand (left)"), - attach_offset={x=5, y=7, z=-8}, - view_offset={x=-5.2, y=-4, z=0}, - driving_ctrl_access=true, - group = "dstand", - }, - }, - seat_groups = { - dstand={ - name = "Driver Stand", - access_to = {}, - driving_ctrl_access = true, - }, - }, - assign_to_seat_group = {"dstand"}, - visual_size = {x=1, y=1}, - wagon_span=2.6, - is_locomotive=true, - collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0}, - drops={"default:steelblock 4"}, - horn_sound = "advtrains_industrial_horn", -}, S("Industrial Train Engine"), "advtrains_engine_industrial_inv.png") ---big-- -advtrains.register_wagon("engine_industrial_big", { - mesh="advtrains_engine_industrial_big.b3d", - textures = {"advtrains_engine_industrial_big.png"}, - drives_on={default=true}, - max_speed=30, - seats = { - { - name=S("Driver Stand (right)"), - attach_offset={x=5, y=-3, z=20}, - view_offset={x=5.2, y=-4, z=11}, - driving_ctrl_access=true, - group = "dstand", - }, - { - name=S("Driver Stand (left)"), - attach_offset={x=5, y=-3, z=-8}, - view_offset={x=-5.2, y=-4, z=0}, - driving_ctrl_access=true, - group = "dstand", - }, - }, - seat_groups = { - dstand={ - name = "Driver Stand", - access_to = {}, - driving_ctrl_access = true, - }, - }, - assign_to_seat_group = {"dstand"}, - visual_size = {x=1, y=1}, - wagon_span=4, - is_locomotive=true, - collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0}, - drops={"default:steelblock 4"}, - horn_sound = "advtrains_industrial_horn", -}, S("Big Industrial Train Engine"), "advtrains_engine_industrial_inv.png") -advtrains.register_wagon("wagon_tank", { - mesh="advtrains_wagon_tank.b3d", - textures = {"advtrains_wagon_tank.png"}, - seats = {}, - drives_on={default=true}, - max_speed=20, - visual_size = {x=1, y=1}, - wagon_span=2.2, - collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0}, - drops={"default:steelblock 4"}, - has_inventory = true, - get_inventory_formspec = advtrains.standard_inventory_formspec, - inventory_list_sizes = { - box=8*3, - }, -}, S("Industrial tank wagon"), "advtrains_wagon_tank_inv.png") -advtrains.register_wagon("wagon_wood", { - mesh="advtrains_wagon_wood.b3d", - textures = {"advtrains_wagon_wood.png"}, - seats = {}, - drives_on={default=true}, - max_speed=20, - visual_size = {x=1, y=1}, - wagon_span=1.8, - collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0}, - drops={"default:steelblock 4"}, - has_inventory = true, - get_inventory_formspec = advtrains.standard_inventory_formspec, - inventory_list_sizes = { - box=8*3, - }, -}, S("Industrial wood wagon"), "advtrains_wagon_wood_inv.png") - --- Craftings - -minetest.register_craft({ - output = 'advtrains:engine_industrial', - recipe = { - {'default:steelblock', 'default:steelblock', 'default:steelblock'}, - {'advtrains:driver_cab', 'default:steelblock', 'default:steelblock'}, - {'advtrains:wheel', '', 'advtrains:wheel'}, - }, -}) - ---Engine Industrial Big -minetest.register_craft({ - output = 'advtrains:engine_industrial_big', - recipe = { - {'default:glass', 'default:steelblock', 'default:steelblock'}, - {'advtrains:driver_cab', 'default:steelblock', 'default:steelblock'}, - {'advtrains:wheel', 'advtrains:wheel', 'advtrains:wheel'}, - }, -}) - - ---Industrial tank wagon -minetest.register_craft({ - output = 'advtrains:wagon_tank', - recipe = { - {'default:steelblock', 'default:steel_ingot', 'default:steelblock'}, - {'advtrains:steelblock', '', 'default:steelblock'}, - {'advtrains:wheel', 'default:steelblock', 'advtrains:wheel'}, - }, -}) - ---Industrial wood wagon -minetest.register_craft({ - output = 'advtrains:wagon_wood', - recipe = { - {'default:steel_ingot', '', 'default:steel_ingot'}, - {'advtrains:steelblock', 'default:steelblock', 'default:steelblock'}, - {'advtrains:wheel', '', 'advtrains:wheel'}, - }, -}) diff --git a/basic_trains/advtrains_train_industrial/mod.conf b/basic_trains/advtrains_train_industrial/mod.conf deleted file mode 100644 index 8441808..0000000 --- a/basic_trains/advtrains_train_industrial/mod.conf +++ /dev/null @@ -1,6 +0,0 @@ -name=advtrains_train_industrial -title=Advtrains Industrial Train (Basic Trains) -description=Industrial train set for Advanced Trains -author=orwell96 - -depends=advtrains,advtrains_train_track diff --git a/basic_trains/advtrains_train_industrial/models/advtrains_engine_industrial.b3d b/basic_trains/advtrains_train_industrial/models/advtrains_engine_industrial.b3d deleted file mode 100644 index 58010c7..0000000 Binary files a/basic_trains/advtrains_train_industrial/models/advtrains_engine_industrial.b3d and /dev/null differ diff --git a/basic_trains/advtrains_train_industrial/models/advtrains_engine_industrial_big.b3d b/basic_trains/advtrains_train_industrial/models/advtrains_engine_industrial_big.b3d deleted file mode 100644 index e8a50a2..0000000 Binary files a/basic_trains/advtrains_train_industrial/models/advtrains_engine_industrial_big.b3d and /dev/null differ diff --git a/basic_trains/advtrains_train_industrial/models/advtrains_wagon_tank.b3d b/basic_trains/advtrains_train_industrial/models/advtrains_wagon_tank.b3d deleted file mode 100644 index 4f28d6c..0000000 Binary files a/basic_trains/advtrains_train_industrial/models/advtrains_wagon_tank.b3d and /dev/null differ diff --git a/basic_trains/advtrains_train_industrial/models/advtrains_wagon_wood.b3d b/basic_trains/advtrains_train_industrial/models/advtrains_wagon_wood.b3d deleted file mode 100644 index 023bf9a..0000000 Binary files a/basic_trains/advtrains_train_industrial/models/advtrains_wagon_wood.b3d and /dev/null differ diff --git a/basic_trains/advtrains_train_industrial/sounds/advtrains_industrial_horn.ogg b/basic_trains/advtrains_train_industrial/sounds/advtrains_industrial_horn.ogg deleted file mode 100644 index e8f31b3..0000000 Binary files a/basic_trains/advtrains_train_industrial/sounds/advtrains_industrial_horn.ogg and /dev/null differ diff --git a/basic_trains/advtrains_train_industrial/textures/advtrains_engine_industrial.png b/basic_trains/advtrains_train_industrial/textures/advtrains_engine_industrial.png deleted file mode 100644 index ac81bc7..0000000 Binary files a/basic_trains/advtrains_train_industrial/textures/advtrains_engine_industrial.png and /dev/null differ diff --git a/basic_trains/advtrains_train_industrial/textures/advtrains_engine_industrial_big.png b/basic_trains/advtrains_train_industrial/textures/advtrains_engine_industrial_big.png deleted file mode 100644 index 0fcdc94..0000000 Binary files a/basic_trains/advtrains_train_industrial/textures/advtrains_engine_industrial_big.png and /dev/null differ diff --git a/basic_trains/advtrains_train_industrial/textures/advtrains_engine_industrial_inv.png b/basic_trains/advtrains_train_industrial/textures/advtrains_engine_industrial_inv.png deleted file mode 100644 index be4e80f..0000000 Binary files a/basic_trains/advtrains_train_industrial/textures/advtrains_engine_industrial_inv.png and /dev/null differ diff --git a/basic_trains/advtrains_train_industrial/textures/advtrains_wagon_tank.png b/basic_trains/advtrains_train_industrial/textures/advtrains_wagon_tank.png deleted file mode 100644 index 01100bf..0000000 Binary files a/basic_trains/advtrains_train_industrial/textures/advtrains_wagon_tank.png and /dev/null differ diff --git a/basic_trains/advtrains_train_industrial/textures/advtrains_wagon_tank_inv.png b/basic_trains/advtrains_train_industrial/textures/advtrains_wagon_tank_inv.png deleted file mode 100644 index 03401be..0000000 Binary files a/basic_trains/advtrains_train_industrial/textures/advtrains_wagon_tank_inv.png and /dev/null differ diff --git a/basic_trains/advtrains_train_industrial/textures/advtrains_wagon_wood.png b/basic_trains/advtrains_train_industrial/textures/advtrains_wagon_wood.png deleted file mode 100644 index 145dcd8..0000000 Binary files a/basic_trains/advtrains_train_industrial/textures/advtrains_wagon_wood.png and /dev/null differ diff --git a/basic_trains/advtrains_train_industrial/textures/advtrains_wagon_wood_inv.png b/basic_trains/advtrains_train_industrial/textures/advtrains_wagon_wood_inv.png deleted file mode 100644 index 87109dd..0000000 Binary files a/basic_trains/advtrains_train_industrial/textures/advtrains_wagon_wood_inv.png and /dev/null differ diff --git a/basic_trains/advtrains_train_japan/init.lua b/basic_trains/advtrains_train_japan/init.lua deleted file mode 100644 index a784845..0000000 --- a/basic_trains/advtrains_train_japan/init.lua +++ /dev/null @@ -1,162 +0,0 @@ -local S = attrans - -advtrains.register_wagon("engine_japan", { - mesh="advtrains_engine_japan.b3d", - textures = {"advtrains_engine_japan.png"}, - drives_on={default=true}, - max_speed=20, - seats = { - { - name=S("Driver stand"), - attach_offset={x=0, y=-2, z=13}, - view_offset={x=0, y=0, z=0}, - group="dstand", - }, - { - name="1", - attach_offset={x=-4, y=-2, z=0}, - view_offset={x=0, y=0, z=0}, - group="pass", - }, - { - name="2", - attach_offset={x=4, y=-2, z=0}, - view_offset={x=0, y=0, z=0}, - group="pass", - }, - { - name="3", - attach_offset={x=-4, y=-2, z=-8}, - view_offset={x=0, y=0, z=0}, - group="pass", - }, - { - name="4", - attach_offset={x=4, y=-2, 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=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.7}, - 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_japan_horn", -}, S("Japanese Train Engine"), "advtrains_engine_japan_inv.png") - -advtrains.register_wagon("wagon_japan", { - mesh="advtrains_wagon_japan.b3d", - textures = {"advtrains_wagon_japan.png"}, - drives_on={default=true}, - max_speed=20, - seats = { - { - name="1", - attach_offset={x=-4, y=-2, z=8}, - view_offset={x=0, y=0, z=0}, - group="pass", - }, - { - name="2", - attach_offset={x=4, y=-2, z=8}, - view_offset={x=0, y=0, z=0}, - group="pass", - }, - { - name="1a", - attach_offset={x=-4, y=-2, z=0}, - view_offset={x=0, y=0, z=0}, - group="pass", - }, - { - name="2a", - attach_offset={x=4, y=-2, z=0}, - view_offset={x=0, y=0, z=0}, - group="pass", - }, - { - name="3", - attach_offset={x=-4, y=-2, 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=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.7, 1.7}, - 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"}, -}, S("Japanese Train Wagon"), "advtrains_wagon_japan_inv.png") - --- Crafting - -minetest.register_craft({ - output = 'advtrains:engine_japan', - recipe = { - {'default:steelblock', 'default:steelblock', ''}, - {'xpanes:pane_flat', 'default:steelblock', 'xpanes:pane_flat'}, - {'advtrains:wheel', 'advtrains:wheel', 'advtrains:wheel'}, - }, -}) - -minetest.register_craft({ -output = 'advtrains:wagon_japan', - recipe = { - {'default:steelblock', 'default:steelblock', 'default:steelblock'}, - {'xpanes:pane_flat', 'default:steelblock', 'xpanes:pane_flat'}, - {'advtrains:wheel', '', 'advtrains:wheel'}, - }, -}) - - - diff --git a/basic_trains/advtrains_train_japan/mod.conf b/basic_trains/advtrains_train_japan/mod.conf deleted file mode 100644 index 2f6c253..0000000 --- a/basic_trains/advtrains_train_japan/mod.conf +++ /dev/null @@ -1,6 +0,0 @@ -name=advtrains_train_japan -title=Advtrains Japanese Train (Basic Trains) -description=Japanese train set for Advanced Trains -author=orwell96 - -depends=advtrains,advtrains_train_track diff --git a/basic_trains/advtrains_train_japan/models/advtrains_engine_japan.b3d b/basic_trains/advtrains_train_japan/models/advtrains_engine_japan.b3d deleted file mode 100644 index 218d965..0000000 Binary files a/basic_trains/advtrains_train_japan/models/advtrains_engine_japan.b3d and /dev/null differ diff --git a/basic_trains/advtrains_train_japan/models/advtrains_wagon_japan.b3d b/basic_trains/advtrains_train_japan/models/advtrains_wagon_japan.b3d deleted file mode 100644 index e6263dd..0000000 Binary files a/basic_trains/advtrains_train_japan/models/advtrains_wagon_japan.b3d and /dev/null differ diff --git a/basic_trains/advtrains_train_japan/sounds/advtrains_japan_horn.ogg b/basic_trains/advtrains_train_japan/sounds/advtrains_japan_horn.ogg deleted file mode 100644 index f7ddb14..0000000 Binary files a/basic_trains/advtrains_train_japan/sounds/advtrains_japan_horn.ogg and /dev/null differ diff --git a/basic_trains/advtrains_train_japan/textures/advtrains_engine_japan.png b/basic_trains/advtrains_train_japan/textures/advtrains_engine_japan.png deleted file mode 100644 index 2bc5fb8..0000000 Binary files a/basic_trains/advtrains_train_japan/textures/advtrains_engine_japan.png and /dev/null differ diff --git a/basic_trains/advtrains_train_japan/textures/advtrains_engine_japan_inv.png b/basic_trains/advtrains_train_japan/textures/advtrains_engine_japan_inv.png deleted file mode 100644 index 6af0636..0000000 Binary files a/basic_trains/advtrains_train_japan/textures/advtrains_engine_japan_inv.png and /dev/null differ diff --git a/basic_trains/advtrains_train_japan/textures/advtrains_wagon_japan.png b/basic_trains/advtrains_train_japan/textures/advtrains_wagon_japan.png deleted file mode 100644 index c9cddc8..0000000 Binary files a/basic_trains/advtrains_train_japan/textures/advtrains_wagon_japan.png and /dev/null differ diff --git a/basic_trains/advtrains_train_japan/textures/advtrains_wagon_japan_inv.png b/basic_trains/advtrains_train_japan/textures/advtrains_wagon_japan_inv.png deleted file mode 100644 index 3e6357c..0000000 Binary files a/basic_trains/advtrains_train_japan/textures/advtrains_wagon_japan_inv.png and /dev/null differ diff --git a/basic_trains/advtrains_train_steam/init.lua b/basic_trains/advtrains_train_steam/init.lua deleted file mode 100644 index 2f46ac2..0000000 --- a/basic_trains/advtrains_train_steam/init.lua +++ /dev/null @@ -1,253 +0,0 @@ -local S = attrans - --- length of the steam engine loop sound -local SND_LOOP_LEN = 5 - -advtrains.register_wagon("newlocomotive", { - mesh="advtrains_engine_steam.b3d", - textures = {"advtrains_engine_steam.png"}, - is_locomotive=true, - drives_on={default=true}, - max_speed=10, - seats = { - { - name=S("Driver Stand (left)"), - attach_offset={x=-5, y=0, z=-10}, - view_offset={x=0, y=6, z=0}, - group = "dstand", - }, - { - name=S("Driver Stand (right)"), - attach_offset={x=5, y=0, z=-10}, - view_offset={x=0, y=6, z=0}, - group = "dstand", - }, - }, - seat_groups = { - dstand={ - name = "Driver Stand", - driving_ctrl_access=true, - access_to = {}, - }, - }, - assign_to_seat_group = {"dstand"}, - visual_size = {x=1, y=1}, - wagon_span=2.3, - collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0}, - custom_on_velocity_change=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 = 5, - -- ^ 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={"default:steelblock 1"}, - horn_sound = "advtrains_steam_whistle", -}, S("Steam Engine"), "advtrains_engine_steam_inv.png") - -advtrains.register_wagon("detailed_steam_engine", { - mesh="advtrains_detailed_steam_engine.b3d", - textures = {"advtrains_detailed_steam_engine.png"}, - is_locomotive=true, - drives_on={default=true}, - max_speed=10, - seats = { - { - name=S("Driver Stand (left)"), - attach_offset={x=-8, y=0, z=-10}, - view_offset={x=9, y=-2, z=-6}, - group = "dstand", - }, - { - name=S("Driver Stand (right)"), - attach_offset={x=8, y=0, z=-10}, - view_offset={x=0, y=6, z=0}, - group = "dstand", - }, - }, - seat_groups = { - dstand={ - name = "Driver Stand", - driving_ctrl_access=true, - access_to = {}, - }, - }, - assign_to_seat_group = {"dstand"}, - visual_size = {x=1, y=1}, - wagon_span=2.05, - collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0}, - custom_on_velocity_change=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_step=function(self, dtime) - if self:train().velocity > 0 then -- First make sure that the train isn't standing - if not self.sound_loop_tmr or self.sound_loop_tmr <= 0 then - -- start the sound if it was never started or has expired - self.sound_loop_handle = minetest.sound_play({name="advtrains_steam_loop", gain=2}, {object=self.object}) - self.sound_loop_tmr = SND_LOOP_LEN - end - --decrease the sound timer - self.sound_loop_tmr = self.sound_loop_tmr - dtime - else - -- If the train is standing, the sound will be stopped in some time. We do not need to interfere with it. - self.sound_loop_tmr = nil - 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.3, z=1.45}, - maxpos = {x=0, y=2.3, z=1.4}, - 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 = 5, - -- ^ 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={"default:steelblock 1"}, - horn_sound = "advtrains_steam_whistle", -}, S("Detailed Steam Engine"), "advtrains_detailed_engine_steam_inv.png") - -advtrains.register_wagon("wagon_default", { - mesh="advtrains_passenger_wagon.b3d", - textures = {"advtrains_wagon.png"}, - drives_on={default=true}, - max_speed=10, - seats = { - { - name="1", - attach_offset={x=2, y=6, z=8}, - view_offset={x=0, y=-4, z=0}, - group="pass", - }, - { - name="2", - attach_offset={x=-1, y=6, z=8}, - view_offset={x=0, y=-4, 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 = {}, - }, - }, - - assign_to_seat_group = {"pass"}, - visual_size = {x=1, y=1}, - wagon_span=2.634, - collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0}, - drops={"default:steelblock 1"}, -}, S("Passenger Wagon"), "advtrains_wagon_inv.png") - - -advtrains.register_wagon("wagon_box", { - mesh="advtrains_wagon_box.b3d", - textures = {"advtrains_wagon_box.png"}, - drives_on={default=true}, - max_speed=10, - seats = {}, - visual_size = {x=1, y=1}, - wagon_span=2, - collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0}, - drops={"default:steelblock 1"}, - has_inventory = true, - get_inventory_formspec = advtrains.standard_inventory_formspec, - inventory_list_sizes = { - box=8*3, - }, -}, S("Box Wagon"), "advtrains_wagon_box_inv.png") - -minetest.register_craft({ - output = 'advtrains:newlocomotive', - recipe = { - {'', '', 'advtrains:chimney'}, - {'advtrains:driver_cab', 'dye:black', 'advtrains:boiler'}, - {'advtrains:wheel', 'advtrains:wheel', 'advtrains:wheel'}, - }, -}) - -minetest.register_craft({ - output = 'advtrains:detailed_steam_engine', - recipe = { - {'', '', 'advtrains:chimney'}, - {'advtrains:driver_cab', 'dye:green', 'advtrains:boiler'}, - {'advtrains:wheel', 'advtrains:wheel', 'advtrains:wheel'}, - }, -}) - -minetest.register_craft({ - output = 'advtrains:wagon_default', - recipe = { - {'default:steelblock', 'default:steelblock', 'default:steelblock'}, - {'default:glass', 'dye:dark_green', 'default:glass'}, - {'advtrains:wheel', 'advtrains:wheel', 'advtrains:wheel'}, - }, -}) -minetest.register_craft({ - output = 'advtrains:wagon_box', - recipe = { - {'group:wood', 'group:wood', 'group:wood'}, - {'group:wood', 'default:chest', 'group:wood'}, - {'advtrains:wheel', '', 'advtrains:wheel'}, - }, -}) diff --git a/basic_trains/advtrains_train_steam/mod.conf b/basic_trains/advtrains_train_steam/mod.conf deleted file mode 100644 index 02a036a..0000000 --- a/basic_trains/advtrains_train_steam/mod.conf +++ /dev/null @@ -1,6 +0,0 @@ -name=advtrains_train_steam -title=Advtrains Steam Train (Basic Trains) -description=Steam train set for Advanced Trains -author=orwell96 - -depends=advtrains,advtrains_train_track diff --git a/basic_trains/advtrains_train_steam/models/advtrains_detailed_steam_engine.b3d b/basic_trains/advtrains_train_steam/models/advtrains_detailed_steam_engine.b3d deleted file mode 100644 index f73becb..0000000 Binary files a/basic_trains/advtrains_train_steam/models/advtrains_detailed_steam_engine.b3d and /dev/null differ diff --git a/basic_trains/advtrains_train_steam/models/advtrains_engine_steam.b3d b/basic_trains/advtrains_train_steam/models/advtrains_engine_steam.b3d deleted file mode 100644 index 6a92f57..0000000 Binary files a/basic_trains/advtrains_train_steam/models/advtrains_engine_steam.b3d and /dev/null differ diff --git a/basic_trains/advtrains_train_steam/models/advtrains_passenger_wagon.b3d b/basic_trains/advtrains_train_steam/models/advtrains_passenger_wagon.b3d deleted file mode 100644 index 2bc01b2..0000000 Binary files a/basic_trains/advtrains_train_steam/models/advtrains_passenger_wagon.b3d and /dev/null differ diff --git a/basic_trains/advtrains_train_steam/models/advtrains_wagon.b3d b/basic_trains/advtrains_train_steam/models/advtrains_wagon.b3d deleted file mode 100644 index 5c8214c..0000000 Binary files a/basic_trains/advtrains_train_steam/models/advtrains_wagon.b3d and /dev/null differ diff --git a/basic_trains/advtrains_train_steam/models/advtrains_wagon_box.b3d b/basic_trains/advtrains_train_steam/models/advtrains_wagon_box.b3d deleted file mode 100644 index 914975f..0000000 Binary files a/basic_trains/advtrains_train_steam/models/advtrains_wagon_box.b3d and /dev/null differ diff --git a/basic_trains/advtrains_train_steam/screenshot.png b/basic_trains/advtrains_train_steam/screenshot.png deleted file mode 100644 index 089da73..0000000 Binary files a/basic_trains/advtrains_train_steam/screenshot.png and /dev/null differ diff --git a/basic_trains/advtrains_train_steam/sounds/advtrains_steam_loop.ogg b/basic_trains/advtrains_train_steam/sounds/advtrains_steam_loop.ogg deleted file mode 100644 index 8b221a9..0000000 Binary files a/basic_trains/advtrains_train_steam/sounds/advtrains_steam_loop.ogg and /dev/null differ diff --git a/basic_trains/advtrains_train_steam/sounds/advtrains_steam_whistle.ogg b/basic_trains/advtrains_train_steam/sounds/advtrains_steam_whistle.ogg deleted file mode 100644 index 42172a2..0000000 Binary files a/basic_trains/advtrains_train_steam/sounds/advtrains_steam_whistle.ogg and /dev/null differ diff --git a/basic_trains/advtrains_train_steam/textures/advtrains_detailed_engine_steam_inv.png b/basic_trains/advtrains_train_steam/textures/advtrains_detailed_engine_steam_inv.png deleted file mode 100644 index 51adb5a..0000000 Binary files a/basic_trains/advtrains_train_steam/textures/advtrains_detailed_engine_steam_inv.png and /dev/null differ diff --git a/basic_trains/advtrains_train_steam/textures/advtrains_detailed_steam_engine.png b/basic_trains/advtrains_train_steam/textures/advtrains_detailed_steam_engine.png deleted file mode 100644 index 926d5f0..0000000 Binary files a/basic_trains/advtrains_train_steam/textures/advtrains_detailed_steam_engine.png and /dev/null differ diff --git a/basic_trains/advtrains_train_steam/textures/advtrains_engine_steam.png b/basic_trains/advtrains_train_steam/textures/advtrains_engine_steam.png deleted file mode 100644 index 4b27e77..0000000 Binary files a/basic_trains/advtrains_train_steam/textures/advtrains_engine_steam.png and /dev/null differ diff --git a/basic_trains/advtrains_train_steam/textures/advtrains_engine_steam_inv.png b/basic_trains/advtrains_train_steam/textures/advtrains_engine_steam_inv.png deleted file mode 100644 index 8d3fafb..0000000 Binary files a/basic_trains/advtrains_train_steam/textures/advtrains_engine_steam_inv.png and /dev/null differ diff --git a/basic_trains/advtrains_train_steam/textures/advtrains_wagon.png b/basic_trains/advtrains_train_steam/textures/advtrains_wagon.png deleted file mode 100644 index bd34e68..0000000 Binary files a/basic_trains/advtrains_train_steam/textures/advtrains_wagon.png and /dev/null differ diff --git a/basic_trains/advtrains_train_steam/textures/advtrains_wagon_box.png b/basic_trains/advtrains_train_steam/textures/advtrains_wagon_box.png deleted file mode 100644 index 8cdd440..0000000 Binary files a/basic_trains/advtrains_train_steam/textures/advtrains_wagon_box.png and /dev/null differ diff --git a/basic_trains/advtrains_train_steam/textures/advtrains_wagon_box_inv.png b/basic_trains/advtrains_train_steam/textures/advtrains_wagon_box_inv.png deleted file mode 100644 index 480f245..0000000 Binary files a/basic_trains/advtrains_train_steam/textures/advtrains_wagon_box_inv.png and /dev/null differ diff --git a/basic_trains/advtrains_train_steam/textures/advtrains_wagon_inv.png b/basic_trains/advtrains_train_steam/textures/advtrains_wagon_inv.png deleted file mode 100644 index 65f7984..0000000 Binary files a/basic_trains/advtrains_train_steam/textures/advtrains_wagon_inv.png and /dev/null differ diff --git a/basic_trains/advtrains_train_subway/init.lua b/basic_trains/advtrains_train_subway/init.lua deleted file mode 100644 index add961b..0000000 --- a/basic_trains/advtrains_train_subway/init.lua +++ /dev/null @@ -1,152 +0,0 @@ -local S = attrans - -advtrains.register_wagon("subway_wagon", { - mesh="advtrains_subway_wagon.b3d", - textures = {"advtrains_subway_wagon.png"}, - drives_on={default=true}, - max_speed=15, - seats = { - { - name="Driver stand", - attach_offset={x=0, y=0, z=0}, - view_offset={x=0, y=0, z=0}, - group="dstand", - }, - { - name="1", - attach_offset={x=-4, y=-2, z=8}, - view_offset={x=0, y=0, z=0}, - group="pass", - }, - { - name="2", - attach_offset={x=4, y=-2, z=8}, - view_offset={x=0, y=0, z=0}, - group="pass", - }, - { - name="3", - attach_offset={x=-4, y=-2, z=-8}, - view_offset={x=0, y=0, z=0}, - group="pass", - }, - { - name="4", - attach_offset={x=4, y=-2, 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 = {"pass", "dstand"}, - doors={ - open={ - [-1]={frames={x=0, y=20}, time=1}, - [1]={frames={x=40, y=60}, time=1}, - sound = "advtrains_subway_dopen", - }, - close={ - [-1]={frames={x=20, y=40}, time=1}, - [1]={frames={x=60, y=80}, time=1}, - sound = "advtrains_subway_dclose", - } - }, - door_entry={-1, 1}, - visual_size = {x=1, y=1}, - wagon_span=2, - --collisionbox = {-1.0,-0.5,-1.8, 1.0,2.5,1.8}, - collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0}, - is_locomotive=true, - drops={"default:steelblock 4"}, - horn_sound = "advtrains_subway_horn", - 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 - minetest.sound_play("advtrains_subway_depart", {object = self.object}) - end - if velocity < 2 and (old_velocity >= 2 or old_velocity == velocity) and not self.sound_arrive_handle then - self.sound_arrive_handle = minetest.sound_play("advtrains_subway_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 - if velocity > 0 and (self.sound_loop_tmr or 0)<=0 then - self.sound_loop_handle = minetest.sound_play({name="advtrains_subway_loop", gain=0.3}, {object = self.object}) - self.sound_loop_tmr=3 - elseif velocity>0 then - self.sound_loop_tmr = self.sound_loop_tmr - dtime - elseif velocity==0 then - if self.sound_loop_handle then - minetest.sound_stop(self.sound_loop_handle) - self.sound_loop_handle = nil - end - self.sound_loop_tmr=0 - end - end, - custom_on_step = function(self, dtime, data, train) - --set line number - local line = nil - if train.line and self.line_cache ~= train.line then - self.line_cache=train.line - local lint = train.line - if string.sub(train.line, 1, 1) == "S" then - lint = string.sub(train.line,2) - end - if string.len(lint) == 1 then - if lint=="X" then line="X" end - line = tonumber(lint) - elseif string.len(lint) == 2 then - if tonumber(lint) then - line = lint - end - end - if line then - local new_line_tex="advtrains_subway_wagon.png" - if type(line)=="number" or line == "X" then - new_line_tex = new_line_tex.."^advtrains_subway_wagon_line"..line..".png" - else - local num = tonumber(line) - local red = math.fmod(line*67+101, 255) - local green = math.fmod(line*97+109, 255) - local blue = math.fmod(line*73+127, 255) - new_line_tex = new_line_tex..string.format("^(advtrains_subway_wagon_line.png^[colorize:#%X%X%X%X%X%X)^(advtrains_subway_wagon_line%s_.png^advtrains_subway_wagon_line_%s.png", math.floor(red/16), math.fmod(red,16), math.floor(green/16), math.fmod(green,16), math.floor(blue/16), math.fmod(blue,16), string.sub(line, 1, 1), string.sub(line, 2, 2)) - if red + green + blue > 512 then - new_line_tex = new_line_tex .. "^[colorize:#000)" - else - new_line_tex = new_line_tex .. ")" - end - end - self.object:set_properties({ - textures={new_line_tex}, - }) - elseif self.line_cache~=nil and line==nil then - self.object:set_properties({ - textures=self.textures, - }) - self.line_cache=nil - end - end - end, -}, S("Subway Passenger Wagon"), "advtrains_subway_wagon_inv.png") - ---wagons -minetest.register_craft({ - output = 'advtrains:subway_wagon', - recipe = { - {'default:steelblock', 'default:steelblock', 'default:steelblock'}, - {'default:steelblock', 'dye:yellow', 'default:steelblock'}, - {'default:steelblock', 'default:steelblock', 'default:steelblock'}, - }, -}) diff --git a/basic_trains/advtrains_train_subway/mod.conf b/basic_trains/advtrains_train_subway/mod.conf deleted file mode 100644 index 233a9b8..0000000 --- a/basic_trains/advtrains_train_subway/mod.conf +++ /dev/null @@ -1,6 +0,0 @@ -name=advtrains_train_subway -title=Advtrains Subway Train (Basic Trains) -description=Subway train set for Advanced Trains -author=orwell96 - -depends=advtrains,advtrains_train_track diff --git a/basic_trains/advtrains_train_subway/models/advtrains_subway_wagon.b3d b/basic_trains/advtrains_train_subway/models/advtrains_subway_wagon.b3d deleted file mode 100644 index cbd0f8e..0000000 Binary files a/basic_trains/advtrains_train_subway/models/advtrains_subway_wagon.b3d and /dev/null differ diff --git a/basic_trains/advtrains_train_subway/sounds/advtrains_subway_arrive.ogg b/basic_trains/advtrains_train_subway/sounds/advtrains_subway_arrive.ogg deleted file mode 100644 index 71bb90e..0000000 Binary files a/basic_trains/advtrains_train_subway/sounds/advtrains_subway_arrive.ogg and /dev/null differ diff --git a/basic_trains/advtrains_train_subway/sounds/advtrains_subway_dclose.ogg b/basic_trains/advtrains_train_subway/sounds/advtrains_subway_dclose.ogg deleted file mode 100644 index ffbc6ed..0000000 Binary files a/basic_trains/advtrains_train_subway/sounds/advtrains_subway_dclose.ogg and /dev/null differ diff --git a/basic_trains/advtrains_train_subway/sounds/advtrains_subway_depart.ogg b/basic_trains/advtrains_train_subway/sounds/advtrains_subway_depart.ogg deleted file mode 100644 index aca8cbc..0000000 Binary files a/basic_trains/advtrains_train_subway/sounds/advtrains_subway_depart.ogg and /dev/null differ diff --git a/basic_trains/advtrains_train_subway/sounds/advtrains_subway_dopen.ogg b/basic_trains/advtrains_train_subway/sounds/advtrains_subway_dopen.ogg deleted file mode 100644 index f1322df..0000000 Binary files a/basic_trains/advtrains_train_subway/sounds/advtrains_subway_dopen.ogg and /dev/null differ diff --git a/basic_trains/advtrains_train_subway/sounds/advtrains_subway_horn.ogg b/basic_trains/advtrains_train_subway/sounds/advtrains_subway_horn.ogg deleted file mode 100644 index f4519a3..0000000 Binary files a/basic_trains/advtrains_train_subway/sounds/advtrains_subway_horn.ogg and /dev/null differ diff --git a/basic_trains/advtrains_train_subway/sounds/advtrains_subway_loop.ogg b/basic_trains/advtrains_train_subway/sounds/advtrains_subway_loop.ogg deleted file mode 100644 index 2543cc2..0000000 Binary files a/basic_trains/advtrains_train_subway/sounds/advtrains_subway_loop.ogg and /dev/null differ diff --git a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon.png b/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon.png deleted file mode 100644 index c2d18ed..0000000 Binary files a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon.png and /dev/null differ diff --git a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_inv.png b/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_inv.png deleted file mode 100644 index c3fef1d..0000000 Binary files a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_inv.png and /dev/null differ diff --git a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line.png b/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line.png deleted file mode 100644 index dcd5005..0000000 Binary files a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line.png and /dev/null differ diff --git a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line0.png b/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line0.png deleted file mode 100644 index b853ef2..0000000 Binary files a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line0.png and /dev/null differ diff --git a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line0_.png b/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line0_.png deleted file mode 100644 index a4ba30b..0000000 Binary files a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line0_.png and /dev/null differ diff --git a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line1.png b/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line1.png deleted file mode 100644 index fe35193..0000000 Binary files a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line1.png and /dev/null differ diff --git a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line1_.png b/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line1_.png deleted file mode 100644 index d731f68..0000000 Binary files a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line1_.png and /dev/null differ diff --git a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line2.png b/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line2.png deleted file mode 100644 index 78b4f80..0000000 Binary files a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line2.png and /dev/null differ diff --git a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line2_.png b/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line2_.png deleted file mode 100644 index 42d094c..0000000 Binary files a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line2_.png and /dev/null differ diff --git a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line3.png b/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line3.png deleted file mode 100644 index 19e3af1..0000000 Binary files a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line3.png and /dev/null differ diff --git a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line3_.png b/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line3_.png deleted file mode 100644 index 608206c..0000000 Binary files a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line3_.png and /dev/null differ diff --git a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line4.png b/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line4.png deleted file mode 100644 index eb8dc39..0000000 Binary files a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line4.png and /dev/null differ diff --git a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line4_.png b/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line4_.png deleted file mode 100644 index 1fbdbf0..0000000 Binary files a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line4_.png and /dev/null differ diff --git a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line5.png b/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line5.png deleted file mode 100644 index a1a50d9..0000000 Binary files a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line5.png and /dev/null differ diff --git a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line5_.png b/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line5_.png deleted file mode 100644 index 5e78cc2..0000000 Binary files a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line5_.png and /dev/null differ diff --git a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line6.png b/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line6.png deleted file mode 100644 index f804880..0000000 Binary files a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line6.png and /dev/null differ diff --git a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line6_.png b/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line6_.png deleted file mode 100644 index 9e11041..0000000 Binary files a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line6_.png and /dev/null differ diff --git a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line7.png b/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line7.png deleted file mode 100644 index 0587719..0000000 Binary files a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line7.png and /dev/null differ diff --git a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line7_.png b/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line7_.png deleted file mode 100644 index edfe9b1..0000000 Binary files a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line7_.png and /dev/null differ diff --git a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line8.png b/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line8.png deleted file mode 100644 index 45de3bd..0000000 Binary files a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line8.png and /dev/null differ diff --git a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line8_.png b/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line8_.png deleted file mode 100644 index efd125b..0000000 Binary files a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line8_.png and /dev/null differ diff --git a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line9.png b/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line9.png deleted file mode 100644 index a5dfd1d..0000000 Binary files a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line9.png and /dev/null differ diff --git a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line9_.png b/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line9_.png deleted file mode 100644 index 09a3c7f..0000000 Binary files a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line9_.png and /dev/null differ diff --git a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_lineX.png b/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_lineX.png deleted file mode 100644 index 4b142c1..0000000 Binary files a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_lineX.png and /dev/null differ diff --git a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_0.png b/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_0.png deleted file mode 100644 index 6dbece0..0000000 Binary files a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_0.png and /dev/null differ diff --git a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_1.png b/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_1.png deleted file mode 100644 index e65cfe0..0000000 Binary files a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_1.png and /dev/null differ diff --git a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_2.png b/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_2.png deleted file mode 100644 index 6064893..0000000 Binary files a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_2.png and /dev/null differ diff --git a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_3.png b/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_3.png deleted file mode 100644 index a51e943..0000000 Binary files a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_3.png and /dev/null differ diff --git a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_4.png b/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_4.png deleted file mode 100644 index 73ea576..0000000 Binary files a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_4.png and /dev/null differ diff --git a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_5.png b/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_5.png deleted file mode 100644 index c278680..0000000 Binary files a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_5.png and /dev/null differ diff --git a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_6.png b/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_6.png deleted file mode 100644 index c4e6bcb..0000000 Binary files a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_6.png and /dev/null differ diff --git a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_7.png b/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_7.png deleted file mode 100644 index afe0814..0000000 Binary files a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_7.png and /dev/null differ diff --git a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_8.png b/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_8.png deleted file mode 100644 index 56108a0..0000000 Binary files a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_8.png and /dev/null differ diff --git a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_9.png b/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_9.png deleted file mode 100644 index 6d5b411..0000000 Binary files a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_9.png and /dev/null differ diff --git a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_livery.png b/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_livery.png deleted file mode 100644 index 2702871..0000000 Binary files a/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_livery.png and /dev/null differ diff --git a/basic_trains/license.txt b/basic_trains/license.txt deleted file mode 100644 index 83596b3..0000000 --- a/basic_trains/license.txt +++ /dev/null @@ -1,198 +0,0 @@ -Copyright (C) 2016-2020 Moritz Blei (orwell96) and contributors - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License as - published by the Free Software Foundation, either version 3 of the - License, or (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Affero General Public License for more details. - -================================= - -GNU AFFERO GENERAL PUBLIC LICENSE - -Version 3, 19 November 2007 - -Copyright © 2007 Free Software Foundation, Inc. -Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. -Preamble - -The GNU Affero General Public License is a free, copyleft license for software and other kinds of works, specifically designed to ensure cooperation with the community in the case of network server software. - -The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, our General Public Licenses are intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. - -When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. - -Developers that use our General Public Licenses protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License which gives you legal permission to copy, distribute and/or modify the software. - -A secondary benefit of defending all users' freedom is that improvements made in alternate versions of the program, if they receive widespread use, become available for other developers to incorporate. Many developers of free software are heartened and encouraged by the resulting cooperation. However, in the case of software used on network servers, this result may fail to come about. The GNU General Public License permits making a modified version and letting the public access it on a server without ever releasing its source code to the public. - -The GNU Affero General Public License is designed specifically to ensure that, in such cases, the modified source code becomes available to the community. It requires the operator of a network server to provide the source code of the modified version running there to the users of that server. Therefore, public use of a modified version, on a publicly accessible server, gives the public access to the source code of the modified version. - -An older license, called the Affero General Public License and published by Affero, was designed to accomplish similar goals. This is a different license, not a version of the Affero GPL, but Affero has released a new version of the Affero GPL which permits relicensing under this license. - -The precise terms and conditions for copying, distribution and modification follow. -TERMS AND CONDITIONS -0. Definitions. - -"This License" refers to version 3 of the GNU Affero General Public License. - -"Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. - -"The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. - -To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. - -A "covered work" means either the unmodified Program or a work based on the Program. - -To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. - -To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. - -An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. -1. Source Code. - -The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. - -A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. - -The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. - -The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. - -The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. - -The Corresponding Source for a work in source code form is that same work. -2. Basic Permissions. - -All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. - -You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. - -Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. -3. Protecting Users' Legal Rights From Anti-Circumvention Law. - -No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. - -When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. -4. Conveying Verbatim Copies. - -You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. - -You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. -5. Conveying Modified Source Versions. - -You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: - - a) The work must carry prominent notices stating that you modified it, and giving a relevant date. - b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". - c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. - d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. - -A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. -6. Conveying Non-Source Forms. - -You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: - - a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. - b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. - c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. - d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. - e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. - -A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. - -A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. - -"Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. - -If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). - -The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. - -Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. -7. Additional Terms. - -"Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. - -When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. - -Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: - - a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or - b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or - c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or - d) Limiting the use for publicity purposes of names of licensors or authors of the material; or - e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or - f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. - -All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. - -If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. - -Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. -8. Termination. - -You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). - -However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. - -Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. - -Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. -9. Acceptance Not Required for Having Copies. - -You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. -10. Automatic Licensing of Downstream Recipients. - -Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. - -An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. - -You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. -11. Patents. - -A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". - -A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. - -Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. - -In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. - -If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. - -If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. - -A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. - -Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. -12. No Surrender of Others' Freedom. - -If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. -13. Remote Network Interaction; Use with the GNU General Public License. - -Notwithstanding any other provision of this License, if you modify the Program, your modified version must prominently offer all users interacting with it remotely through a computer network (if your version supports such interaction) an opportunity to receive the Corresponding Source of your version by providing access to the Corresponding Source from a network server at no charge, through some standard or customary means of facilitating copying of software. This Corresponding Source shall include the Corresponding Source for any work covered by version 3 of the GNU General Public License that is incorporated pursuant to the following paragraph. - -Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the work with which it is combined will remain governed by version 3 of the GNU General Public License. -14. Revised Versions of this License. - -The Free Software Foundation may publish revised and/or new versions of the GNU Affero General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. - -Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU Affero General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU Affero General Public License, you may choose any version ever published by the Free Software Foundation. - -If the Program specifies that a proxy can decide which future versions of the GNU Affero General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. - -Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. -15. Disclaimer of Warranty. - -THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. -16. Limitation of Liability. - -IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. -17. Interpretation of Sections 15 and 16. - -If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. \ No newline at end of file diff --git a/basic_trains/license_media.txt b/basic_trains/license_media.txt deleted file mode 100644 index 888cf00..0000000 --- a/basic_trains/license_media.txt +++ /dev/null @@ -1,68 +0,0 @@ -THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. - -BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. - -1. Definitions - - "Adaptation" means a work based upon the Work, or upon the Work and other pre-existing works, such as a translation, adaptation, derivative work, arrangement of music or other alterations of a literary or artistic work, or phonogram or performance and includes cinematographic adaptations or any other form in which the Work may be recast, transformed, or adapted including in any form recognizably derived from the original, except that a work that constitutes a Collection will not be considered an Adaptation for the purpose of this License. For the avoidance of doubt, where the Work is a musical work, performance or phonogram, the synchronization of the Work in timed-relation with a moving image ("synching") will be considered an Adaptation for the purpose of this License. - "Collection" means a collection of literary or artistic works, such as encyclopedias and anthologies, or performances, phonograms or broadcasts, or other works or subject matter other than works listed in Section 1(f) below, which, by reason of the selection and arrangement of their contents, constitute intellectual creations, in which the Work is included in its entirety in unmodified form along with one or more other contributions, each constituting separate and independent works in themselves, which together are assembled into a collective whole. A work that constitutes a Collection will not be considered an Adaptation (as defined below) for the purposes of this License. - "Creative Commons Compatible License" means a license that is listed at https://creativecommons.org/compatiblelicenses that has been approved by Creative Commons as being essentially equivalent to this License, including, at a minimum, because that license: (i) contains terms that have the same purpose, meaning and effect as the License Elements of this License; and, (ii) explicitly permits the relicensing of adaptations of works made available under that license under this License or a Creative Commons jurisdiction license with the same License Elements as this License. - "Distribute" means to make available to the public the original and copies of the Work or Adaptation, as appropriate, through sale or other transfer of ownership. - "License Elements" means the following high-level license attributes as selected by Licensor and indicated in the title of this License: Attribution, ShareAlike. - "Licensor" means the individual, individuals, entity or entities that offer(s) the Work under the terms of this License. - "Original Author" means, in the case of a literary or artistic work, the individual, individuals, entity or entities who created the Work or if no individual or entity can be identified, the publisher; and in addition (i) in the case of a performance the actors, singers, musicians, dancers, and other persons who act, sing, deliver, declaim, play in, interpret or otherwise perform literary or artistic works or expressions of folklore; (ii) in the case of a phonogram the producer being the person or legal entity who first fixes the sounds of a performance or other sounds; and, (iii) in the case of broadcasts, the organization that transmits the broadcast. - "Work" means the literary and/or artistic work offered under the terms of this License including without limitation any production in the literary, scientific and artistic domain, whatever may be the mode or form of its expression including digital form, such as a book, pamphlet and other writing; a lecture, address, sermon or other work of the same nature; a dramatic or dramatico-musical work; a choreographic work or entertainment in dumb show; a musical composition with or without words; a cinematographic work to which are assimilated works expressed by a process analogous to cinematography; a work of drawing, painting, architecture, sculpture, engraving or lithography; a photographic work to which are assimilated works expressed by a process analogous to photography; a work of applied art; an illustration, map, plan, sketch or three-dimensional work relative to geography, topography, architecture or science; a performance; a broadcast; a phonogram; a compilation of data to the extent it is protected as a copyrightable work; or a work performed by a variety or circus performer to the extent it is not otherwise considered a literary or artistic work. - "You" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation. - "Publicly Perform" means to perform public recitations of the Work and to communicate to the public those public recitations, by any means or process, including by wire or wireless means or public digital performances; to make available to the public Works in such a way that members of the public may access these Works from a place and at a place individually chosen by them; to perform the Work to the public by any means or process and the communication to the public of the performances of the Work, including by public digital performance; to broadcast and rebroadcast the Work by any means including signs, sounds or images. - "Reproduce" means to make copies of the Work by any means including without limitation by sound or visual recordings and the right of fixation and reproducing fixations of the Work, including storage of a protected performance or phonogram in digital form or other electronic medium. - -2. Fair Dealing Rights. Nothing in this License is intended to reduce, limit, or restrict any uses free from copyright or rights arising from limitations or exceptions that are provided for in connection with the copyright protection under copyright law or other applicable laws. - -3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: - - to Reproduce the Work, to incorporate the Work into one or more Collections, and to Reproduce the Work as incorporated in the Collections; - to create and Reproduce Adaptations provided that any such Adaptation, including any translation in any medium, takes reasonable steps to clearly label, demarcate or otherwise identify that changes were made to the original Work. For example, a translation could be marked "The original work was translated from English to Spanish," or a modification could indicate "The original work has been modified."; - to Distribute and Publicly Perform the Work including as incorporated in Collections; and, - to Distribute and Publicly Perform Adaptations. - - For the avoidance of doubt: - Non-waivable Compulsory License Schemes. In those jurisdictions in which the right to collect royalties through any statutory or compulsory licensing scheme cannot be waived, the Licensor reserves the exclusive right to collect such royalties for any exercise by You of the rights granted under this License; - Waivable Compulsory License Schemes. In those jurisdictions in which the right to collect royalties through any statutory or compulsory licensing scheme can be waived, the Licensor waives the exclusive right to collect such royalties for any exercise by You of the rights granted under this License; and, - Voluntary License Schemes. The Licensor waives the right to collect royalties, whether individually or, in the event that the Licensor is a member of a collecting society that administers voluntary licensing schemes, via that society, from any exercise by You of the rights granted under this License. - -The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. Subject to Section 8(f), all rights not expressly granted by Licensor are hereby reserved. - -4. Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: - - You may Distribute or Publicly Perform the Work only under the terms of this License. You must include a copy of, or the Uniform Resource Identifier (URI) for, this License with every copy of the Work You Distribute or Publicly Perform. You may not offer or impose any terms on the Work that restrict the terms of this License or the ability of the recipient of the Work to exercise the rights granted to that recipient under the terms of the License. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties with every copy of the Work You Distribute or Publicly Perform. When You Distribute or Publicly Perform the Work, You may not impose any effective technological measures on the Work that restrict the ability of a recipient of the Work from You to exercise the rights granted to that recipient under the terms of the License. This Section 4(a) applies to the Work as incorporated in a Collection, but this does not require the Collection apart from the Work itself to be made subject to the terms of this License. If You create a Collection, upon notice from any Licensor You must, to the extent practicable, remove from the Collection any credit as required by Section 4(c), as requested. If You create an Adaptation, upon notice from any Licensor You must, to the extent practicable, remove from the Adaptation any credit as required by Section 4(c), as requested. - You may Distribute or Publicly Perform an Adaptation only under the terms of: (i) this License; (ii) a later version of this License with the same License Elements as this License; (iii) a Creative Commons jurisdiction license (either this or a later license version) that contains the same License Elements as this License (e.g., Attribution-ShareAlike 3.0 US)); (iv) a Creative Commons Compatible License. If you license the Adaptation under one of the licenses mentioned in (iv), you must comply with the terms of that license. If you license the Adaptation under the terms of any of the licenses mentioned in (i), (ii) or (iii) (the "Applicable License"), you must comply with the terms of the Applicable License generally and the following provisions: (I) You must include a copy of, or the URI for, the Applicable License with every copy of each Adaptation You Distribute or Publicly Perform; (II) You may not offer or impose any terms on the Adaptation that restrict the terms of the Applicable License or the ability of the recipient of the Adaptation to exercise the rights granted to that recipient under the terms of the Applicable License; (III) You must keep intact all notices that refer to the Applicable License and to the disclaimer of warranties with every copy of the Work as included in the Adaptation You Distribute or Publicly Perform; (IV) when You Distribute or Publicly Perform the Adaptation, You may not impose any effective technological measures on the Adaptation that restrict the ability of a recipient of the Adaptation from You to exercise the rights granted to that recipient under the terms of the Applicable License. This Section 4(b) applies to the Adaptation as incorporated in a Collection, but this does not require the Collection apart from the Adaptation itself to be made subject to the terms of the Applicable License. - If You Distribute, or Publicly Perform the Work or any Adaptations or Collections, You must, unless a request has been made pursuant to Section 4(a), keep intact all copyright notices for the Work and provide, reasonable to the medium or means You are utilizing: (i) the name of the Original Author (or pseudonym, if applicable) if supplied, and/or if the Original Author and/or Licensor designate another party or parties (e.g., a sponsor institute, publishing entity, journal) for attribution ("Attribution Parties") in Licensor's copyright notice, terms of service or by other reasonable means, the name of such party or parties; (ii) the title of the Work if supplied; (iii) to the extent reasonably practicable, the URI, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and (iv) , consistent with Ssection 3(b), in the case of an Adaptation, a credit identifying the use of the Work in the Adaptation (e.g., "French translation of the Work by Original Author," or "Screenplay based on original Work by Original Author"). The credit required by this Section 4(c) may be implemented in any reasonable manner; provided, however, that in the case of a Adaptation or Collection, at a minimum such credit will appear, if a credit for all contributing authors of the Adaptation or Collection appears, then as part of these credits and in a manner at least as prominent as the credits for the other contributing authors. For the avoidance of doubt, You may only use the credit required by this Section for the purpose of attribution in the manner set out above and, by exercising Your rights under this License, You may not implicitly or explicitly assert or imply any connection with, sponsorship or endorsement by the Original Author, Licensor and/or Attribution Parties, as appropriate, of You or Your use of the Work, without the separate, express prior written permission of the Original Author, Licensor and/or Attribution Parties. - Except as otherwise agreed in writing by the Licensor or as may be otherwise permitted by applicable law, if You Reproduce, Distribute or Publicly Perform the Work either by itself or as part of any Adaptations or Collections, You must not distort, mutilate, modify or take other derogatory action in relation to the Work which would be prejudicial to the Original Author's honor or reputation. Licensor agrees that in those jurisdictions (e.g. Japan), in which any exercise of the right granted in Section 3(b) of this License (the right to make Adaptations) would be deemed to be a distortion, mutilation, modification or other derogatory action prejudicial to the Original Author's honor and reputation, the Licensor will waive or not assert, as appropriate, this Section, to the fullest extent permitted by the applicable national law, to enable You to reasonably exercise Your right under Section 3(b) of this License (right to make Adaptations) but not otherwise. - -5. Representations, Warranties and Disclaimer - -UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU. - -6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -7. Termination - - This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Adaptations or Collections from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License. - Subject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. - -8. Miscellaneous - - Each time You Distribute or Publicly Perform the Work or a Collection, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License. - Each time You Distribute or Publicly Perform an Adaptation, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License. - If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. - No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. - This License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You. - The rights granted under, and the subject matter referenced, in this License were drafted utilizing the terminology of the Berne Convention for the Protection of Literary and Artistic Works (as amended on September 28, 1979), the Rome Convention of 1961, the WIPO Copyright Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996 and the Universal Copyright Convention (as revised on July 24, 1971). These rights and subject matter take effect in the relevant jurisdiction in which the License terms are sought to be enforced according to the corresponding provisions of the implementation of those treaty provisions in the applicable national law. If the standard suite of rights granted under applicable copyright law includes additional rights not granted under this License, such additional rights are deemed to be included in the License; this License is not intended to restrict the license of any rights under applicable law. - - Creative Commons Notice - - Creative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor. - - Except for the limited purpose of indicating to the public that the Work is licensed under the CCPL, Creative Commons does not authorize the use by either party of the trademark "Creative Commons" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time. For the avoidance of doubt, this trademark restriction does not form part of the License. - - Creative Commons may be contacted at https://creativecommons.org/. diff --git a/basic_trains/modpack.conf b/basic_trains/modpack.conf deleted file mode 100644 index 810349d..0000000 --- a/basic_trains/modpack.conf +++ /dev/null @@ -1,5 +0,0 @@ -name=basic_trains -title=Advtrains Basic Trains -description=Collection of basic trains for the Advanced Trains mod. Formerly included in Advtrains package. -author = orwell -release = 7737 diff --git a/discotrains/LICENSE b/discotrains/LICENSE deleted file mode 100644 index 83910af..0000000 --- a/discotrains/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -The MIT License (MIT) - -Copyright (c) 2019 Sivarajan - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. diff --git a/discotrains/README.md b/discotrains/README.md deleted file mode 100644 index 252e65e..0000000 --- a/discotrains/README.md +++ /dev/null @@ -1 +0,0 @@ -Disco trains is a mod by sivarajan that adds 6 colors of Subway trains to advtrains mod. diff --git a/discotrains/basic_trains/advtrains_train_industrial/init.lua b/discotrains/basic_trains/advtrains_train_industrial/init.lua deleted file mode 100644 index f22f806..0000000 --- a/discotrains/basic_trains/advtrains_train_industrial/init.lua +++ /dev/null @@ -1,149 +0,0 @@ -local S = attrans - -advtrains.register_wagon("engine_industrial", { - mesh="advtrains_engine_industrial.b3d", - textures = {"advtrains_engine_industrial.png"}, - drives_on={default=true}, - max_speed=20, - seats = { - { - name=S("Driver Stand (right)"), - attach_offset={x=5, y=-3, z=-8}, - view_offset={x=5.2, y=-4, z=0}, - driving_ctrl_access=true, - group = "dstand", - }, - { - name=S("Driver Stand (left)"), - attach_offset={x=5, y=7, z=-8}, - view_offset={x=-5.2, y=-4, z=0}, - driving_ctrl_access=true, - group = "dstand", - }, - }, - seat_groups = { - dstand={ - name = "Driver Stand", - access_to = {}, - driving_ctrl_access = true, - }, - }, - assign_to_seat_group = {"dstand"}, - visual_size = {x=1, y=1}, - wagon_span=2.6, - is_locomotive=true, - collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0}, - drops={"default:steelblock 4"}, - horn_sound = "advtrains_industrial_horn", -}, S("Industrial Train Engine"), "advtrains_engine_industrial_inv.png") ---big-- -advtrains.register_wagon("engine_industrial_big", { - mesh="advtrains_engine_industrial_big.b3d", - textures = {"advtrains_engine_industrial_big.png"}, - drives_on={default=true}, - max_speed=30, - seats = { - { - name=S("Driver Stand (right)"), - attach_offset={x=5, y=-3, z=20}, - view_offset={x=5.2, y=-4, z=11}, - driving_ctrl_access=true, - group = "dstand", - }, - { - name=S("Driver Stand (left)"), - attach_offset={x=5, y=-3, z=-8}, - view_offset={x=-5.2, y=-4, z=0}, - driving_ctrl_access=true, - group = "dstand", - }, - }, - seat_groups = { - dstand={ - name = "Driver Stand", - access_to = {}, - driving_ctrl_access = true, - }, - }, - assign_to_seat_group = {"dstand"}, - visual_size = {x=1, y=1}, - wagon_span=4, - is_locomotive=true, - collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0}, - drops={"default:steelblock 4"}, - horn_sound = "advtrains_industrial_horn", -}, S("Big Industrial Train Engine"), "advtrains_engine_industrial_inv.png") -advtrains.register_wagon("wagon_tank", { - mesh="advtrains_wagon_tank.b3d", - textures = {"advtrains_wagon_tank.png"}, - seats = {}, - drives_on={default=true}, - max_speed=20, - visual_size = {x=1, y=1}, - wagon_span=2.2, - collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0}, - drops={"default:steelblock 4"}, - has_inventory = true, - get_inventory_formspec = advtrains.standard_inventory_formspec, - inventory_list_sizes = { - box=8*3, - }, -}, S("Industrial tank wagon"), "advtrains_wagon_tank_inv.png") -advtrains.register_wagon("wagon_wood", { - mesh="advtrains_wagon_wood.b3d", - textures = {"advtrains_wagon_wood.png"}, - seats = {}, - drives_on={default=true}, - max_speed=20, - visual_size = {x=1, y=1}, - wagon_span=1.8, - collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0}, - drops={"default:steelblock 4"}, - has_inventory = true, - get_inventory_formspec = advtrains.standard_inventory_formspec, - inventory_list_sizes = { - box=8*3, - }, -}, S("Industrial wood wagon"), "advtrains_wagon_wood_inv.png") - --- Craftings - -minetest.register_craft({ - output = 'advtrains:engine_industrial', - recipe = { - {'default:steelblock', 'default:steelblock', 'default:steelblock'}, - {'advtrains:driver_cab', 'default:steelblock', 'default:steelblock'}, - {'advtrains:wheel', '', 'advtrains:wheel'}, - }, -}) - ---Engine Industrial Big -minetest.register_craft({ - output = 'advtrains:engine_industrial_big', - recipe = { - {'default:glass', 'default:steelblock', 'default:steelblock'}, - {'advtrains:driver_cab', 'default:steelblock', 'default:steelblock'}, - {'advtrains:wheel', 'advtrains:wheel', 'advtrains:wheel'}, - }, -}) - - ---Industrial tank wagon -minetest.register_craft({ - output = 'advtrains:wagon_tank', - recipe = { - {'default:steelblock', 'default:steel_ingot', 'default:steelblock'}, - {'advtrains:steelblock', '', 'default:steelblock'}, - {'advtrains:wheel', 'default:steelblock', 'advtrains:wheel'}, - }, -}) - ---Industrial wood wagon -minetest.register_craft({ - output = 'advtrains:wagon_wood', - recipe = { - {'default:steel_ingot', '', 'default:steel_ingot'}, - {'advtrains:steelblock', 'default:steelblock', 'default:steelblock'}, - {'advtrains:wheel', '', 'advtrains:wheel'}, - }, -}) diff --git a/discotrains/basic_trains/advtrains_train_industrial/mod.conf b/discotrains/basic_trains/advtrains_train_industrial/mod.conf deleted file mode 100644 index 8441808..0000000 --- a/discotrains/basic_trains/advtrains_train_industrial/mod.conf +++ /dev/null @@ -1,6 +0,0 @@ -name=advtrains_train_industrial -title=Advtrains Industrial Train (Basic Trains) -description=Industrial train set for Advanced Trains -author=orwell96 - -depends=advtrains,advtrains_train_track diff --git a/discotrains/basic_trains/advtrains_train_industrial/models/advtrains_engine_industrial.b3d b/discotrains/basic_trains/advtrains_train_industrial/models/advtrains_engine_industrial.b3d deleted file mode 100644 index 58010c7..0000000 Binary files a/discotrains/basic_trains/advtrains_train_industrial/models/advtrains_engine_industrial.b3d and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_industrial/models/advtrains_engine_industrial_big.b3d b/discotrains/basic_trains/advtrains_train_industrial/models/advtrains_engine_industrial_big.b3d deleted file mode 100644 index e8a50a2..0000000 Binary files a/discotrains/basic_trains/advtrains_train_industrial/models/advtrains_engine_industrial_big.b3d and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_industrial/models/advtrains_wagon_tank.b3d b/discotrains/basic_trains/advtrains_train_industrial/models/advtrains_wagon_tank.b3d deleted file mode 100644 index 4f28d6c..0000000 Binary files a/discotrains/basic_trains/advtrains_train_industrial/models/advtrains_wagon_tank.b3d and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_industrial/models/advtrains_wagon_wood.b3d b/discotrains/basic_trains/advtrains_train_industrial/models/advtrains_wagon_wood.b3d deleted file mode 100644 index 023bf9a..0000000 Binary files a/discotrains/basic_trains/advtrains_train_industrial/models/advtrains_wagon_wood.b3d and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_industrial/sounds/advtrains_industrial_horn.ogg b/discotrains/basic_trains/advtrains_train_industrial/sounds/advtrains_industrial_horn.ogg deleted file mode 100644 index e8f31b3..0000000 Binary files a/discotrains/basic_trains/advtrains_train_industrial/sounds/advtrains_industrial_horn.ogg and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_industrial/textures/advtrains_engine_industrial.png b/discotrains/basic_trains/advtrains_train_industrial/textures/advtrains_engine_industrial.png deleted file mode 100644 index ac81bc7..0000000 Binary files a/discotrains/basic_trains/advtrains_train_industrial/textures/advtrains_engine_industrial.png and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_industrial/textures/advtrains_engine_industrial_big.png b/discotrains/basic_trains/advtrains_train_industrial/textures/advtrains_engine_industrial_big.png deleted file mode 100644 index 0fcdc94..0000000 Binary files a/discotrains/basic_trains/advtrains_train_industrial/textures/advtrains_engine_industrial_big.png and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_industrial/textures/advtrains_engine_industrial_inv.png b/discotrains/basic_trains/advtrains_train_industrial/textures/advtrains_engine_industrial_inv.png deleted file mode 100644 index be4e80f..0000000 Binary files a/discotrains/basic_trains/advtrains_train_industrial/textures/advtrains_engine_industrial_inv.png and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_industrial/textures/advtrains_wagon_tank.png b/discotrains/basic_trains/advtrains_train_industrial/textures/advtrains_wagon_tank.png deleted file mode 100644 index 01100bf..0000000 Binary files a/discotrains/basic_trains/advtrains_train_industrial/textures/advtrains_wagon_tank.png and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_industrial/textures/advtrains_wagon_tank_inv.png b/discotrains/basic_trains/advtrains_train_industrial/textures/advtrains_wagon_tank_inv.png deleted file mode 100644 index 03401be..0000000 Binary files a/discotrains/basic_trains/advtrains_train_industrial/textures/advtrains_wagon_tank_inv.png and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_industrial/textures/advtrains_wagon_wood.png b/discotrains/basic_trains/advtrains_train_industrial/textures/advtrains_wagon_wood.png deleted file mode 100644 index 145dcd8..0000000 Binary files a/discotrains/basic_trains/advtrains_train_industrial/textures/advtrains_wagon_wood.png and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_industrial/textures/advtrains_wagon_wood_inv.png b/discotrains/basic_trains/advtrains_train_industrial/textures/advtrains_wagon_wood_inv.png deleted file mode 100644 index 87109dd..0000000 Binary files a/discotrains/basic_trains/advtrains_train_industrial/textures/advtrains_wagon_wood_inv.png and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_japan/init.lua b/discotrains/basic_trains/advtrains_train_japan/init.lua deleted file mode 100644 index a784845..0000000 --- a/discotrains/basic_trains/advtrains_train_japan/init.lua +++ /dev/null @@ -1,162 +0,0 @@ -local S = attrans - -advtrains.register_wagon("engine_japan", { - mesh="advtrains_engine_japan.b3d", - textures = {"advtrains_engine_japan.png"}, - drives_on={default=true}, - max_speed=20, - seats = { - { - name=S("Driver stand"), - attach_offset={x=0, y=-2, z=13}, - view_offset={x=0, y=0, z=0}, - group="dstand", - }, - { - name="1", - attach_offset={x=-4, y=-2, z=0}, - view_offset={x=0, y=0, z=0}, - group="pass", - }, - { - name="2", - attach_offset={x=4, y=-2, z=0}, - view_offset={x=0, y=0, z=0}, - group="pass", - }, - { - name="3", - attach_offset={x=-4, y=-2, z=-8}, - view_offset={x=0, y=0, z=0}, - group="pass", - }, - { - name="4", - attach_offset={x=4, y=-2, 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=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.7}, - 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_japan_horn", -}, S("Japanese Train Engine"), "advtrains_engine_japan_inv.png") - -advtrains.register_wagon("wagon_japan", { - mesh="advtrains_wagon_japan.b3d", - textures = {"advtrains_wagon_japan.png"}, - drives_on={default=true}, - max_speed=20, - seats = { - { - name="1", - attach_offset={x=-4, y=-2, z=8}, - view_offset={x=0, y=0, z=0}, - group="pass", - }, - { - name="2", - attach_offset={x=4, y=-2, z=8}, - view_offset={x=0, y=0, z=0}, - group="pass", - }, - { - name="1a", - attach_offset={x=-4, y=-2, z=0}, - view_offset={x=0, y=0, z=0}, - group="pass", - }, - { - name="2a", - attach_offset={x=4, y=-2, z=0}, - view_offset={x=0, y=0, z=0}, - group="pass", - }, - { - name="3", - attach_offset={x=-4, y=-2, 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=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.7, 1.7}, - 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"}, -}, S("Japanese Train Wagon"), "advtrains_wagon_japan_inv.png") - --- Crafting - -minetest.register_craft({ - output = 'advtrains:engine_japan', - recipe = { - {'default:steelblock', 'default:steelblock', ''}, - {'xpanes:pane_flat', 'default:steelblock', 'xpanes:pane_flat'}, - {'advtrains:wheel', 'advtrains:wheel', 'advtrains:wheel'}, - }, -}) - -minetest.register_craft({ -output = 'advtrains:wagon_japan', - recipe = { - {'default:steelblock', 'default:steelblock', 'default:steelblock'}, - {'xpanes:pane_flat', 'default:steelblock', 'xpanes:pane_flat'}, - {'advtrains:wheel', '', 'advtrains:wheel'}, - }, -}) - - - diff --git a/discotrains/basic_trains/advtrains_train_japan/mod.conf b/discotrains/basic_trains/advtrains_train_japan/mod.conf deleted file mode 100644 index 2f6c253..0000000 --- a/discotrains/basic_trains/advtrains_train_japan/mod.conf +++ /dev/null @@ -1,6 +0,0 @@ -name=advtrains_train_japan -title=Advtrains Japanese Train (Basic Trains) -description=Japanese train set for Advanced Trains -author=orwell96 - -depends=advtrains,advtrains_train_track diff --git a/discotrains/basic_trains/advtrains_train_japan/models/advtrains_engine_japan.b3d b/discotrains/basic_trains/advtrains_train_japan/models/advtrains_engine_japan.b3d deleted file mode 100644 index 218d965..0000000 Binary files a/discotrains/basic_trains/advtrains_train_japan/models/advtrains_engine_japan.b3d and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_japan/models/advtrains_wagon_japan.b3d b/discotrains/basic_trains/advtrains_train_japan/models/advtrains_wagon_japan.b3d deleted file mode 100644 index e6263dd..0000000 Binary files a/discotrains/basic_trains/advtrains_train_japan/models/advtrains_wagon_japan.b3d and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_japan/sounds/advtrains_japan_horn.ogg b/discotrains/basic_trains/advtrains_train_japan/sounds/advtrains_japan_horn.ogg deleted file mode 100644 index f7ddb14..0000000 Binary files a/discotrains/basic_trains/advtrains_train_japan/sounds/advtrains_japan_horn.ogg and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_japan/textures/advtrains_engine_japan.png b/discotrains/basic_trains/advtrains_train_japan/textures/advtrains_engine_japan.png deleted file mode 100644 index 2bc5fb8..0000000 Binary files a/discotrains/basic_trains/advtrains_train_japan/textures/advtrains_engine_japan.png and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_japan/textures/advtrains_engine_japan_inv.png b/discotrains/basic_trains/advtrains_train_japan/textures/advtrains_engine_japan_inv.png deleted file mode 100644 index 6af0636..0000000 Binary files a/discotrains/basic_trains/advtrains_train_japan/textures/advtrains_engine_japan_inv.png and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_japan/textures/advtrains_wagon_japan.png b/discotrains/basic_trains/advtrains_train_japan/textures/advtrains_wagon_japan.png deleted file mode 100644 index c9cddc8..0000000 Binary files a/discotrains/basic_trains/advtrains_train_japan/textures/advtrains_wagon_japan.png and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_japan/textures/advtrains_wagon_japan_inv.png b/discotrains/basic_trains/advtrains_train_japan/textures/advtrains_wagon_japan_inv.png deleted file mode 100644 index 3e6357c..0000000 Binary files a/discotrains/basic_trains/advtrains_train_japan/textures/advtrains_wagon_japan_inv.png and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_steam/init.lua b/discotrains/basic_trains/advtrains_train_steam/init.lua deleted file mode 100644 index 2f46ac2..0000000 --- a/discotrains/basic_trains/advtrains_train_steam/init.lua +++ /dev/null @@ -1,253 +0,0 @@ -local S = attrans - --- length of the steam engine loop sound -local SND_LOOP_LEN = 5 - -advtrains.register_wagon("newlocomotive", { - mesh="advtrains_engine_steam.b3d", - textures = {"advtrains_engine_steam.png"}, - is_locomotive=true, - drives_on={default=true}, - max_speed=10, - seats = { - { - name=S("Driver Stand (left)"), - attach_offset={x=-5, y=0, z=-10}, - view_offset={x=0, y=6, z=0}, - group = "dstand", - }, - { - name=S("Driver Stand (right)"), - attach_offset={x=5, y=0, z=-10}, - view_offset={x=0, y=6, z=0}, - group = "dstand", - }, - }, - seat_groups = { - dstand={ - name = "Driver Stand", - driving_ctrl_access=true, - access_to = {}, - }, - }, - assign_to_seat_group = {"dstand"}, - visual_size = {x=1, y=1}, - wagon_span=2.3, - collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0}, - custom_on_velocity_change=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 = 5, - -- ^ 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={"default:steelblock 1"}, - horn_sound = "advtrains_steam_whistle", -}, S("Steam Engine"), "advtrains_engine_steam_inv.png") - -advtrains.register_wagon("detailed_steam_engine", { - mesh="advtrains_detailed_steam_engine.b3d", - textures = {"advtrains_detailed_steam_engine.png"}, - is_locomotive=true, - drives_on={default=true}, - max_speed=10, - seats = { - { - name=S("Driver Stand (left)"), - attach_offset={x=-8, y=0, z=-10}, - view_offset={x=9, y=-2, z=-6}, - group = "dstand", - }, - { - name=S("Driver Stand (right)"), - attach_offset={x=8, y=0, z=-10}, - view_offset={x=0, y=6, z=0}, - group = "dstand", - }, - }, - seat_groups = { - dstand={ - name = "Driver Stand", - driving_ctrl_access=true, - access_to = {}, - }, - }, - assign_to_seat_group = {"dstand"}, - visual_size = {x=1, y=1}, - wagon_span=2.05, - collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0}, - custom_on_velocity_change=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_step=function(self, dtime) - if self:train().velocity > 0 then -- First make sure that the train isn't standing - if not self.sound_loop_tmr or self.sound_loop_tmr <= 0 then - -- start the sound if it was never started or has expired - self.sound_loop_handle = minetest.sound_play({name="advtrains_steam_loop", gain=2}, {object=self.object}) - self.sound_loop_tmr = SND_LOOP_LEN - end - --decrease the sound timer - self.sound_loop_tmr = self.sound_loop_tmr - dtime - else - -- If the train is standing, the sound will be stopped in some time. We do not need to interfere with it. - self.sound_loop_tmr = nil - 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.3, z=1.45}, - maxpos = {x=0, y=2.3, z=1.4}, - 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 = 5, - -- ^ 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={"default:steelblock 1"}, - horn_sound = "advtrains_steam_whistle", -}, S("Detailed Steam Engine"), "advtrains_detailed_engine_steam_inv.png") - -advtrains.register_wagon("wagon_default", { - mesh="advtrains_passenger_wagon.b3d", - textures = {"advtrains_wagon.png"}, - drives_on={default=true}, - max_speed=10, - seats = { - { - name="1", - attach_offset={x=2, y=6, z=8}, - view_offset={x=0, y=-4, z=0}, - group="pass", - }, - { - name="2", - attach_offset={x=-1, y=6, z=8}, - view_offset={x=0, y=-4, 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 = {}, - }, - }, - - assign_to_seat_group = {"pass"}, - visual_size = {x=1, y=1}, - wagon_span=2.634, - collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0}, - drops={"default:steelblock 1"}, -}, S("Passenger Wagon"), "advtrains_wagon_inv.png") - - -advtrains.register_wagon("wagon_box", { - mesh="advtrains_wagon_box.b3d", - textures = {"advtrains_wagon_box.png"}, - drives_on={default=true}, - max_speed=10, - seats = {}, - visual_size = {x=1, y=1}, - wagon_span=2, - collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0}, - drops={"default:steelblock 1"}, - has_inventory = true, - get_inventory_formspec = advtrains.standard_inventory_formspec, - inventory_list_sizes = { - box=8*3, - }, -}, S("Box Wagon"), "advtrains_wagon_box_inv.png") - -minetest.register_craft({ - output = 'advtrains:newlocomotive', - recipe = { - {'', '', 'advtrains:chimney'}, - {'advtrains:driver_cab', 'dye:black', 'advtrains:boiler'}, - {'advtrains:wheel', 'advtrains:wheel', 'advtrains:wheel'}, - }, -}) - -minetest.register_craft({ - output = 'advtrains:detailed_steam_engine', - recipe = { - {'', '', 'advtrains:chimney'}, - {'advtrains:driver_cab', 'dye:green', 'advtrains:boiler'}, - {'advtrains:wheel', 'advtrains:wheel', 'advtrains:wheel'}, - }, -}) - -minetest.register_craft({ - output = 'advtrains:wagon_default', - recipe = { - {'default:steelblock', 'default:steelblock', 'default:steelblock'}, - {'default:glass', 'dye:dark_green', 'default:glass'}, - {'advtrains:wheel', 'advtrains:wheel', 'advtrains:wheel'}, - }, -}) -minetest.register_craft({ - output = 'advtrains:wagon_box', - recipe = { - {'group:wood', 'group:wood', 'group:wood'}, - {'group:wood', 'default:chest', 'group:wood'}, - {'advtrains:wheel', '', 'advtrains:wheel'}, - }, -}) diff --git a/discotrains/basic_trains/advtrains_train_steam/mod.conf b/discotrains/basic_trains/advtrains_train_steam/mod.conf deleted file mode 100644 index 02a036a..0000000 --- a/discotrains/basic_trains/advtrains_train_steam/mod.conf +++ /dev/null @@ -1,6 +0,0 @@ -name=advtrains_train_steam -title=Advtrains Steam Train (Basic Trains) -description=Steam train set for Advanced Trains -author=orwell96 - -depends=advtrains,advtrains_train_track diff --git a/discotrains/basic_trains/advtrains_train_steam/models/advtrains_detailed_steam_engine.b3d b/discotrains/basic_trains/advtrains_train_steam/models/advtrains_detailed_steam_engine.b3d deleted file mode 100644 index f73becb..0000000 Binary files a/discotrains/basic_trains/advtrains_train_steam/models/advtrains_detailed_steam_engine.b3d and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_steam/models/advtrains_engine_steam.b3d b/discotrains/basic_trains/advtrains_train_steam/models/advtrains_engine_steam.b3d deleted file mode 100644 index 6a92f57..0000000 Binary files a/discotrains/basic_trains/advtrains_train_steam/models/advtrains_engine_steam.b3d and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_steam/models/advtrains_passenger_wagon.b3d b/discotrains/basic_trains/advtrains_train_steam/models/advtrains_passenger_wagon.b3d deleted file mode 100644 index 2bc01b2..0000000 Binary files a/discotrains/basic_trains/advtrains_train_steam/models/advtrains_passenger_wagon.b3d and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_steam/models/advtrains_wagon.b3d b/discotrains/basic_trains/advtrains_train_steam/models/advtrains_wagon.b3d deleted file mode 100644 index 5c8214c..0000000 Binary files a/discotrains/basic_trains/advtrains_train_steam/models/advtrains_wagon.b3d and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_steam/models/advtrains_wagon_box.b3d b/discotrains/basic_trains/advtrains_train_steam/models/advtrains_wagon_box.b3d deleted file mode 100644 index 914975f..0000000 Binary files a/discotrains/basic_trains/advtrains_train_steam/models/advtrains_wagon_box.b3d and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_steam/screenshot.png b/discotrains/basic_trains/advtrains_train_steam/screenshot.png deleted file mode 100644 index 089da73..0000000 Binary files a/discotrains/basic_trains/advtrains_train_steam/screenshot.png and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_steam/sounds/advtrains_steam_loop.ogg b/discotrains/basic_trains/advtrains_train_steam/sounds/advtrains_steam_loop.ogg deleted file mode 100644 index 8b221a9..0000000 Binary files a/discotrains/basic_trains/advtrains_train_steam/sounds/advtrains_steam_loop.ogg and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_steam/sounds/advtrains_steam_whistle.ogg b/discotrains/basic_trains/advtrains_train_steam/sounds/advtrains_steam_whistle.ogg deleted file mode 100644 index 42172a2..0000000 Binary files a/discotrains/basic_trains/advtrains_train_steam/sounds/advtrains_steam_whistle.ogg and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_steam/textures/advtrains_detailed_engine_steam_inv.png b/discotrains/basic_trains/advtrains_train_steam/textures/advtrains_detailed_engine_steam_inv.png deleted file mode 100644 index 51adb5a..0000000 Binary files a/discotrains/basic_trains/advtrains_train_steam/textures/advtrains_detailed_engine_steam_inv.png and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_steam/textures/advtrains_detailed_steam_engine.png b/discotrains/basic_trains/advtrains_train_steam/textures/advtrains_detailed_steam_engine.png deleted file mode 100644 index 926d5f0..0000000 Binary files a/discotrains/basic_trains/advtrains_train_steam/textures/advtrains_detailed_steam_engine.png and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_steam/textures/advtrains_engine_steam.png b/discotrains/basic_trains/advtrains_train_steam/textures/advtrains_engine_steam.png deleted file mode 100644 index 4b27e77..0000000 Binary files a/discotrains/basic_trains/advtrains_train_steam/textures/advtrains_engine_steam.png and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_steam/textures/advtrains_engine_steam_inv.png b/discotrains/basic_trains/advtrains_train_steam/textures/advtrains_engine_steam_inv.png deleted file mode 100644 index 8d3fafb..0000000 Binary files a/discotrains/basic_trains/advtrains_train_steam/textures/advtrains_engine_steam_inv.png and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_steam/textures/advtrains_wagon.png b/discotrains/basic_trains/advtrains_train_steam/textures/advtrains_wagon.png deleted file mode 100644 index bd34e68..0000000 Binary files a/discotrains/basic_trains/advtrains_train_steam/textures/advtrains_wagon.png and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_steam/textures/advtrains_wagon_box.png b/discotrains/basic_trains/advtrains_train_steam/textures/advtrains_wagon_box.png deleted file mode 100644 index 8cdd440..0000000 Binary files a/discotrains/basic_trains/advtrains_train_steam/textures/advtrains_wagon_box.png and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_steam/textures/advtrains_wagon_box_inv.png b/discotrains/basic_trains/advtrains_train_steam/textures/advtrains_wagon_box_inv.png deleted file mode 100644 index 480f245..0000000 Binary files a/discotrains/basic_trains/advtrains_train_steam/textures/advtrains_wagon_box_inv.png and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_steam/textures/advtrains_wagon_inv.png b/discotrains/basic_trains/advtrains_train_steam/textures/advtrains_wagon_inv.png deleted file mode 100644 index 65f7984..0000000 Binary files a/discotrains/basic_trains/advtrains_train_steam/textures/advtrains_wagon_inv.png and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_subway/init.lua b/discotrains/basic_trains/advtrains_train_subway/init.lua deleted file mode 100644 index add961b..0000000 --- a/discotrains/basic_trains/advtrains_train_subway/init.lua +++ /dev/null @@ -1,152 +0,0 @@ -local S = attrans - -advtrains.register_wagon("subway_wagon", { - mesh="advtrains_subway_wagon.b3d", - textures = {"advtrains_subway_wagon.png"}, - drives_on={default=true}, - max_speed=15, - seats = { - { - name="Driver stand", - attach_offset={x=0, y=0, z=0}, - view_offset={x=0, y=0, z=0}, - group="dstand", - }, - { - name="1", - attach_offset={x=-4, y=-2, z=8}, - view_offset={x=0, y=0, z=0}, - group="pass", - }, - { - name="2", - attach_offset={x=4, y=-2, z=8}, - view_offset={x=0, y=0, z=0}, - group="pass", - }, - { - name="3", - attach_offset={x=-4, y=-2, z=-8}, - view_offset={x=0, y=0, z=0}, - group="pass", - }, - { - name="4", - attach_offset={x=4, y=-2, 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 = {"pass", "dstand"}, - doors={ - open={ - [-1]={frames={x=0, y=20}, time=1}, - [1]={frames={x=40, y=60}, time=1}, - sound = "advtrains_subway_dopen", - }, - close={ - [-1]={frames={x=20, y=40}, time=1}, - [1]={frames={x=60, y=80}, time=1}, - sound = "advtrains_subway_dclose", - } - }, - door_entry={-1, 1}, - visual_size = {x=1, y=1}, - wagon_span=2, - --collisionbox = {-1.0,-0.5,-1.8, 1.0,2.5,1.8}, - collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0}, - is_locomotive=true, - drops={"default:steelblock 4"}, - horn_sound = "advtrains_subway_horn", - 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 - minetest.sound_play("advtrains_subway_depart", {object = self.object}) - end - if velocity < 2 and (old_velocity >= 2 or old_velocity == velocity) and not self.sound_arrive_handle then - self.sound_arrive_handle = minetest.sound_play("advtrains_subway_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 - if velocity > 0 and (self.sound_loop_tmr or 0)<=0 then - self.sound_loop_handle = minetest.sound_play({name="advtrains_subway_loop", gain=0.3}, {object = self.object}) - self.sound_loop_tmr=3 - elseif velocity>0 then - self.sound_loop_tmr = self.sound_loop_tmr - dtime - elseif velocity==0 then - if self.sound_loop_handle then - minetest.sound_stop(self.sound_loop_handle) - self.sound_loop_handle = nil - end - self.sound_loop_tmr=0 - end - end, - custom_on_step = function(self, dtime, data, train) - --set line number - local line = nil - if train.line and self.line_cache ~= train.line then - self.line_cache=train.line - local lint = train.line - if string.sub(train.line, 1, 1) == "S" then - lint = string.sub(train.line,2) - end - if string.len(lint) == 1 then - if lint=="X" then line="X" end - line = tonumber(lint) - elseif string.len(lint) == 2 then - if tonumber(lint) then - line = lint - end - end - if line then - local new_line_tex="advtrains_subway_wagon.png" - if type(line)=="number" or line == "X" then - new_line_tex = new_line_tex.."^advtrains_subway_wagon_line"..line..".png" - else - local num = tonumber(line) - local red = math.fmod(line*67+101, 255) - local green = math.fmod(line*97+109, 255) - local blue = math.fmod(line*73+127, 255) - new_line_tex = new_line_tex..string.format("^(advtrains_subway_wagon_line.png^[colorize:#%X%X%X%X%X%X)^(advtrains_subway_wagon_line%s_.png^advtrains_subway_wagon_line_%s.png", math.floor(red/16), math.fmod(red,16), math.floor(green/16), math.fmod(green,16), math.floor(blue/16), math.fmod(blue,16), string.sub(line, 1, 1), string.sub(line, 2, 2)) - if red + green + blue > 512 then - new_line_tex = new_line_tex .. "^[colorize:#000)" - else - new_line_tex = new_line_tex .. ")" - end - end - self.object:set_properties({ - textures={new_line_tex}, - }) - elseif self.line_cache~=nil and line==nil then - self.object:set_properties({ - textures=self.textures, - }) - self.line_cache=nil - end - end - end, -}, S("Subway Passenger Wagon"), "advtrains_subway_wagon_inv.png") - ---wagons -minetest.register_craft({ - output = 'advtrains:subway_wagon', - recipe = { - {'default:steelblock', 'default:steelblock', 'default:steelblock'}, - {'default:steelblock', 'dye:yellow', 'default:steelblock'}, - {'default:steelblock', 'default:steelblock', 'default:steelblock'}, - }, -}) diff --git a/discotrains/basic_trains/advtrains_train_subway/mod.conf b/discotrains/basic_trains/advtrains_train_subway/mod.conf deleted file mode 100644 index 233a9b8..0000000 --- a/discotrains/basic_trains/advtrains_train_subway/mod.conf +++ /dev/null @@ -1,6 +0,0 @@ -name=advtrains_train_subway -title=Advtrains Subway Train (Basic Trains) -description=Subway train set for Advanced Trains -author=orwell96 - -depends=advtrains,advtrains_train_track diff --git a/discotrains/basic_trains/advtrains_train_subway/models/advtrains_subway_wagon.b3d b/discotrains/basic_trains/advtrains_train_subway/models/advtrains_subway_wagon.b3d deleted file mode 100644 index cbd0f8e..0000000 Binary files a/discotrains/basic_trains/advtrains_train_subway/models/advtrains_subway_wagon.b3d and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_subway/sounds/advtrains_subway_arrive.ogg b/discotrains/basic_trains/advtrains_train_subway/sounds/advtrains_subway_arrive.ogg deleted file mode 100644 index 71bb90e..0000000 Binary files a/discotrains/basic_trains/advtrains_train_subway/sounds/advtrains_subway_arrive.ogg and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_subway/sounds/advtrains_subway_dclose.ogg b/discotrains/basic_trains/advtrains_train_subway/sounds/advtrains_subway_dclose.ogg deleted file mode 100644 index ffbc6ed..0000000 Binary files a/discotrains/basic_trains/advtrains_train_subway/sounds/advtrains_subway_dclose.ogg and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_subway/sounds/advtrains_subway_depart.ogg b/discotrains/basic_trains/advtrains_train_subway/sounds/advtrains_subway_depart.ogg deleted file mode 100644 index aca8cbc..0000000 Binary files a/discotrains/basic_trains/advtrains_train_subway/sounds/advtrains_subway_depart.ogg and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_subway/sounds/advtrains_subway_dopen.ogg b/discotrains/basic_trains/advtrains_train_subway/sounds/advtrains_subway_dopen.ogg deleted file mode 100644 index f1322df..0000000 Binary files a/discotrains/basic_trains/advtrains_train_subway/sounds/advtrains_subway_dopen.ogg and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_subway/sounds/advtrains_subway_horn.ogg b/discotrains/basic_trains/advtrains_train_subway/sounds/advtrains_subway_horn.ogg deleted file mode 100644 index f4519a3..0000000 Binary files a/discotrains/basic_trains/advtrains_train_subway/sounds/advtrains_subway_horn.ogg and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_subway/sounds/advtrains_subway_loop.ogg b/discotrains/basic_trains/advtrains_train_subway/sounds/advtrains_subway_loop.ogg deleted file mode 100644 index 2543cc2..0000000 Binary files a/discotrains/basic_trains/advtrains_train_subway/sounds/advtrains_subway_loop.ogg and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon.png b/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon.png deleted file mode 100644 index c2d18ed..0000000 Binary files a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon.png and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_inv.png b/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_inv.png deleted file mode 100644 index c3fef1d..0000000 Binary files a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_inv.png and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line.png b/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line.png deleted file mode 100644 index dcd5005..0000000 Binary files a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line.png and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line0.png b/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line0.png deleted file mode 100644 index b853ef2..0000000 Binary files a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line0.png and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line0_.png b/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line0_.png deleted file mode 100644 index a4ba30b..0000000 Binary files a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line0_.png and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line1.png b/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line1.png deleted file mode 100644 index fe35193..0000000 Binary files a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line1.png and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line1_.png b/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line1_.png deleted file mode 100644 index d731f68..0000000 Binary files a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line1_.png and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line2.png b/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line2.png deleted file mode 100644 index 78b4f80..0000000 Binary files a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line2.png and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line2_.png b/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line2_.png deleted file mode 100644 index 42d094c..0000000 Binary files a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line2_.png and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line3.png b/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line3.png deleted file mode 100644 index 19e3af1..0000000 Binary files a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line3.png and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line3_.png b/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line3_.png deleted file mode 100644 index 608206c..0000000 Binary files a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line3_.png and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line4.png b/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line4.png deleted file mode 100644 index eb8dc39..0000000 Binary files a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line4.png and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line4_.png b/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line4_.png deleted file mode 100644 index 1fbdbf0..0000000 Binary files a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line4_.png and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line5.png b/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line5.png deleted file mode 100644 index a1a50d9..0000000 Binary files a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line5.png and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line5_.png b/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line5_.png deleted file mode 100644 index 5e78cc2..0000000 Binary files a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line5_.png and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line6.png b/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line6.png deleted file mode 100644 index f804880..0000000 Binary files a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line6.png and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line6_.png b/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line6_.png deleted file mode 100644 index 9e11041..0000000 Binary files a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line6_.png and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line7.png b/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line7.png deleted file mode 100644 index 0587719..0000000 Binary files a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line7.png and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line7_.png b/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line7_.png deleted file mode 100644 index edfe9b1..0000000 Binary files a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line7_.png and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line8.png b/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line8.png deleted file mode 100644 index 45de3bd..0000000 Binary files a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line8.png and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line8_.png b/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line8_.png deleted file mode 100644 index efd125b..0000000 Binary files a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line8_.png and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line9.png b/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line9.png deleted file mode 100644 index a5dfd1d..0000000 Binary files a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line9.png and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line9_.png b/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line9_.png deleted file mode 100644 index 09a3c7f..0000000 Binary files a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line9_.png and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_lineX.png b/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_lineX.png deleted file mode 100644 index 4b142c1..0000000 Binary files a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_lineX.png and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_0.png b/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_0.png deleted file mode 100644 index 6dbece0..0000000 Binary files a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_0.png and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_1.png b/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_1.png deleted file mode 100644 index e65cfe0..0000000 Binary files a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_1.png and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_2.png b/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_2.png deleted file mode 100644 index 6064893..0000000 Binary files a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_2.png and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_3.png b/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_3.png deleted file mode 100644 index a51e943..0000000 Binary files a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_3.png and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_4.png b/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_4.png deleted file mode 100644 index 73ea576..0000000 Binary files a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_4.png and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_5.png b/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_5.png deleted file mode 100644 index c278680..0000000 Binary files a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_5.png and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_6.png b/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_6.png deleted file mode 100644 index c4e6bcb..0000000 Binary files a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_6.png and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_7.png b/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_7.png deleted file mode 100644 index afe0814..0000000 Binary files a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_7.png and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_8.png b/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_8.png deleted file mode 100644 index 56108a0..0000000 Binary files a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_8.png and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_9.png b/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_9.png deleted file mode 100644 index 6d5b411..0000000 Binary files a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_line_9.png and /dev/null differ diff --git a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_livery.png b/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_livery.png deleted file mode 100644 index 2702871..0000000 Binary files a/discotrains/basic_trains/advtrains_train_subway/textures/advtrains_subway_wagon_livery.png and /dev/null differ diff --git a/discotrains/basic_trains/license.txt b/discotrains/basic_trains/license.txt deleted file mode 100644 index 83596b3..0000000 --- a/discotrains/basic_trains/license.txt +++ /dev/null @@ -1,198 +0,0 @@ -Copyright (C) 2016-2020 Moritz Blei (orwell96) and contributors - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License as - published by the Free Software Foundation, either version 3 of the - License, or (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Affero General Public License for more details. - -================================= - -GNU AFFERO GENERAL PUBLIC LICENSE - -Version 3, 19 November 2007 - -Copyright © 2007 Free Software Foundation, Inc. -Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. -Preamble - -The GNU Affero General Public License is a free, copyleft license for software and other kinds of works, specifically designed to ensure cooperation with the community in the case of network server software. - -The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, our General Public Licenses are intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. - -When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. - -Developers that use our General Public Licenses protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License which gives you legal permission to copy, distribute and/or modify the software. - -A secondary benefit of defending all users' freedom is that improvements made in alternate versions of the program, if they receive widespread use, become available for other developers to incorporate. Many developers of free software are heartened and encouraged by the resulting cooperation. However, in the case of software used on network servers, this result may fail to come about. The GNU General Public License permits making a modified version and letting the public access it on a server without ever releasing its source code to the public. - -The GNU Affero General Public License is designed specifically to ensure that, in such cases, the modified source code becomes available to the community. It requires the operator of a network server to provide the source code of the modified version running there to the users of that server. Therefore, public use of a modified version, on a publicly accessible server, gives the public access to the source code of the modified version. - -An older license, called the Affero General Public License and published by Affero, was designed to accomplish similar goals. This is a different license, not a version of the Affero GPL, but Affero has released a new version of the Affero GPL which permits relicensing under this license. - -The precise terms and conditions for copying, distribution and modification follow. -TERMS AND CONDITIONS -0. Definitions. - -"This License" refers to version 3 of the GNU Affero General Public License. - -"Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. - -"The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. - -To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. - -A "covered work" means either the unmodified Program or a work based on the Program. - -To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. - -To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. - -An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. -1. Source Code. - -The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. - -A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. - -The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. - -The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. - -The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. - -The Corresponding Source for a work in source code form is that same work. -2. Basic Permissions. - -All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. - -You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. - -Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. -3. Protecting Users' Legal Rights From Anti-Circumvention Law. - -No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. - -When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. -4. Conveying Verbatim Copies. - -You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. - -You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. -5. Conveying Modified Source Versions. - -You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: - - a) The work must carry prominent notices stating that you modified it, and giving a relevant date. - b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". - c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. - d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. - -A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. -6. Conveying Non-Source Forms. - -You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: - - a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. - b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. - c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. - d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. - e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. - -A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. - -A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. - -"Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. - -If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). - -The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. - -Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. -7. Additional Terms. - -"Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. - -When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. - -Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: - - a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or - b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or - c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or - d) Limiting the use for publicity purposes of names of licensors or authors of the material; or - e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or - f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. - -All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. - -If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. - -Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. -8. Termination. - -You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). - -However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. - -Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. - -Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. -9. Acceptance Not Required for Having Copies. - -You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. -10. Automatic Licensing of Downstream Recipients. - -Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. - -An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. - -You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. -11. Patents. - -A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". - -A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. - -Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. - -In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. - -If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. - -If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. - -A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. - -Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. -12. No Surrender of Others' Freedom. - -If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. -13. Remote Network Interaction; Use with the GNU General Public License. - -Notwithstanding any other provision of this License, if you modify the Program, your modified version must prominently offer all users interacting with it remotely through a computer network (if your version supports such interaction) an opportunity to receive the Corresponding Source of your version by providing access to the Corresponding Source from a network server at no charge, through some standard or customary means of facilitating copying of software. This Corresponding Source shall include the Corresponding Source for any work covered by version 3 of the GNU General Public License that is incorporated pursuant to the following paragraph. - -Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the work with which it is combined will remain governed by version 3 of the GNU General Public License. -14. Revised Versions of this License. - -The Free Software Foundation may publish revised and/or new versions of the GNU Affero General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. - -Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU Affero General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU Affero General Public License, you may choose any version ever published by the Free Software Foundation. - -If the Program specifies that a proxy can decide which future versions of the GNU Affero General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. - -Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. -15. Disclaimer of Warranty. - -THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. -16. Limitation of Liability. - -IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. -17. Interpretation of Sections 15 and 16. - -If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. \ No newline at end of file diff --git a/discotrains/basic_trains/license_media.txt b/discotrains/basic_trains/license_media.txt deleted file mode 100644 index 888cf00..0000000 --- a/discotrains/basic_trains/license_media.txt +++ /dev/null @@ -1,68 +0,0 @@ -THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. - -BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. - -1. Definitions - - "Adaptation" means a work based upon the Work, or upon the Work and other pre-existing works, such as a translation, adaptation, derivative work, arrangement of music or other alterations of a literary or artistic work, or phonogram or performance and includes cinematographic adaptations or any other form in which the Work may be recast, transformed, or adapted including in any form recognizably derived from the original, except that a work that constitutes a Collection will not be considered an Adaptation for the purpose of this License. For the avoidance of doubt, where the Work is a musical work, performance or phonogram, the synchronization of the Work in timed-relation with a moving image ("synching") will be considered an Adaptation for the purpose of this License. - "Collection" means a collection of literary or artistic works, such as encyclopedias and anthologies, or performances, phonograms or broadcasts, or other works or subject matter other than works listed in Section 1(f) below, which, by reason of the selection and arrangement of their contents, constitute intellectual creations, in which the Work is included in its entirety in unmodified form along with one or more other contributions, each constituting separate and independent works in themselves, which together are assembled into a collective whole. A work that constitutes a Collection will not be considered an Adaptation (as defined below) for the purposes of this License. - "Creative Commons Compatible License" means a license that is listed at https://creativecommons.org/compatiblelicenses that has been approved by Creative Commons as being essentially equivalent to this License, including, at a minimum, because that license: (i) contains terms that have the same purpose, meaning and effect as the License Elements of this License; and, (ii) explicitly permits the relicensing of adaptations of works made available under that license under this License or a Creative Commons jurisdiction license with the same License Elements as this License. - "Distribute" means to make available to the public the original and copies of the Work or Adaptation, as appropriate, through sale or other transfer of ownership. - "License Elements" means the following high-level license attributes as selected by Licensor and indicated in the title of this License: Attribution, ShareAlike. - "Licensor" means the individual, individuals, entity or entities that offer(s) the Work under the terms of this License. - "Original Author" means, in the case of a literary or artistic work, the individual, individuals, entity or entities who created the Work or if no individual or entity can be identified, the publisher; and in addition (i) in the case of a performance the actors, singers, musicians, dancers, and other persons who act, sing, deliver, declaim, play in, interpret or otherwise perform literary or artistic works or expressions of folklore; (ii) in the case of a phonogram the producer being the person or legal entity who first fixes the sounds of a performance or other sounds; and, (iii) in the case of broadcasts, the organization that transmits the broadcast. - "Work" means the literary and/or artistic work offered under the terms of this License including without limitation any production in the literary, scientific and artistic domain, whatever may be the mode or form of its expression including digital form, such as a book, pamphlet and other writing; a lecture, address, sermon or other work of the same nature; a dramatic or dramatico-musical work; a choreographic work or entertainment in dumb show; a musical composition with or without words; a cinematographic work to which are assimilated works expressed by a process analogous to cinematography; a work of drawing, painting, architecture, sculpture, engraving or lithography; a photographic work to which are assimilated works expressed by a process analogous to photography; a work of applied art; an illustration, map, plan, sketch or three-dimensional work relative to geography, topography, architecture or science; a performance; a broadcast; a phonogram; a compilation of data to the extent it is protected as a copyrightable work; or a work performed by a variety or circus performer to the extent it is not otherwise considered a literary or artistic work. - "You" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation. - "Publicly Perform" means to perform public recitations of the Work and to communicate to the public those public recitations, by any means or process, including by wire or wireless means or public digital performances; to make available to the public Works in such a way that members of the public may access these Works from a place and at a place individually chosen by them; to perform the Work to the public by any means or process and the communication to the public of the performances of the Work, including by public digital performance; to broadcast and rebroadcast the Work by any means including signs, sounds or images. - "Reproduce" means to make copies of the Work by any means including without limitation by sound or visual recordings and the right of fixation and reproducing fixations of the Work, including storage of a protected performance or phonogram in digital form or other electronic medium. - -2. Fair Dealing Rights. Nothing in this License is intended to reduce, limit, or restrict any uses free from copyright or rights arising from limitations or exceptions that are provided for in connection with the copyright protection under copyright law or other applicable laws. - -3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: - - to Reproduce the Work, to incorporate the Work into one or more Collections, and to Reproduce the Work as incorporated in the Collections; - to create and Reproduce Adaptations provided that any such Adaptation, including any translation in any medium, takes reasonable steps to clearly label, demarcate or otherwise identify that changes were made to the original Work. For example, a translation could be marked "The original work was translated from English to Spanish," or a modification could indicate "The original work has been modified."; - to Distribute and Publicly Perform the Work including as incorporated in Collections; and, - to Distribute and Publicly Perform Adaptations. - - For the avoidance of doubt: - Non-waivable Compulsory License Schemes. In those jurisdictions in which the right to collect royalties through any statutory or compulsory licensing scheme cannot be waived, the Licensor reserves the exclusive right to collect such royalties for any exercise by You of the rights granted under this License; - Waivable Compulsory License Schemes. In those jurisdictions in which the right to collect royalties through any statutory or compulsory licensing scheme can be waived, the Licensor waives the exclusive right to collect such royalties for any exercise by You of the rights granted under this License; and, - Voluntary License Schemes. The Licensor waives the right to collect royalties, whether individually or, in the event that the Licensor is a member of a collecting society that administers voluntary licensing schemes, via that society, from any exercise by You of the rights granted under this License. - -The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. Subject to Section 8(f), all rights not expressly granted by Licensor are hereby reserved. - -4. Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: - - You may Distribute or Publicly Perform the Work only under the terms of this License. You must include a copy of, or the Uniform Resource Identifier (URI) for, this License with every copy of the Work You Distribute or Publicly Perform. You may not offer or impose any terms on the Work that restrict the terms of this License or the ability of the recipient of the Work to exercise the rights granted to that recipient under the terms of the License. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties with every copy of the Work You Distribute or Publicly Perform. When You Distribute or Publicly Perform the Work, You may not impose any effective technological measures on the Work that restrict the ability of a recipient of the Work from You to exercise the rights granted to that recipient under the terms of the License. This Section 4(a) applies to the Work as incorporated in a Collection, but this does not require the Collection apart from the Work itself to be made subject to the terms of this License. If You create a Collection, upon notice from any Licensor You must, to the extent practicable, remove from the Collection any credit as required by Section 4(c), as requested. If You create an Adaptation, upon notice from any Licensor You must, to the extent practicable, remove from the Adaptation any credit as required by Section 4(c), as requested. - You may Distribute or Publicly Perform an Adaptation only under the terms of: (i) this License; (ii) a later version of this License with the same License Elements as this License; (iii) a Creative Commons jurisdiction license (either this or a later license version) that contains the same License Elements as this License (e.g., Attribution-ShareAlike 3.0 US)); (iv) a Creative Commons Compatible License. If you license the Adaptation under one of the licenses mentioned in (iv), you must comply with the terms of that license. If you license the Adaptation under the terms of any of the licenses mentioned in (i), (ii) or (iii) (the "Applicable License"), you must comply with the terms of the Applicable License generally and the following provisions: (I) You must include a copy of, or the URI for, the Applicable License with every copy of each Adaptation You Distribute or Publicly Perform; (II) You may not offer or impose any terms on the Adaptation that restrict the terms of the Applicable License or the ability of the recipient of the Adaptation to exercise the rights granted to that recipient under the terms of the Applicable License; (III) You must keep intact all notices that refer to the Applicable License and to the disclaimer of warranties with every copy of the Work as included in the Adaptation You Distribute or Publicly Perform; (IV) when You Distribute or Publicly Perform the Adaptation, You may not impose any effective technological measures on the Adaptation that restrict the ability of a recipient of the Adaptation from You to exercise the rights granted to that recipient under the terms of the Applicable License. This Section 4(b) applies to the Adaptation as incorporated in a Collection, but this does not require the Collection apart from the Adaptation itself to be made subject to the terms of the Applicable License. - If You Distribute, or Publicly Perform the Work or any Adaptations or Collections, You must, unless a request has been made pursuant to Section 4(a), keep intact all copyright notices for the Work and provide, reasonable to the medium or means You are utilizing: (i) the name of the Original Author (or pseudonym, if applicable) if supplied, and/or if the Original Author and/or Licensor designate another party or parties (e.g., a sponsor institute, publishing entity, journal) for attribution ("Attribution Parties") in Licensor's copyright notice, terms of service or by other reasonable means, the name of such party or parties; (ii) the title of the Work if supplied; (iii) to the extent reasonably practicable, the URI, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and (iv) , consistent with Ssection 3(b), in the case of an Adaptation, a credit identifying the use of the Work in the Adaptation (e.g., "French translation of the Work by Original Author," or "Screenplay based on original Work by Original Author"). The credit required by this Section 4(c) may be implemented in any reasonable manner; provided, however, that in the case of a Adaptation or Collection, at a minimum such credit will appear, if a credit for all contributing authors of the Adaptation or Collection appears, then as part of these credits and in a manner at least as prominent as the credits for the other contributing authors. For the avoidance of doubt, You may only use the credit required by this Section for the purpose of attribution in the manner set out above and, by exercising Your rights under this License, You may not implicitly or explicitly assert or imply any connection with, sponsorship or endorsement by the Original Author, Licensor and/or Attribution Parties, as appropriate, of You or Your use of the Work, without the separate, express prior written permission of the Original Author, Licensor and/or Attribution Parties. - Except as otherwise agreed in writing by the Licensor or as may be otherwise permitted by applicable law, if You Reproduce, Distribute or Publicly Perform the Work either by itself or as part of any Adaptations or Collections, You must not distort, mutilate, modify or take other derogatory action in relation to the Work which would be prejudicial to the Original Author's honor or reputation. Licensor agrees that in those jurisdictions (e.g. Japan), in which any exercise of the right granted in Section 3(b) of this License (the right to make Adaptations) would be deemed to be a distortion, mutilation, modification or other derogatory action prejudicial to the Original Author's honor and reputation, the Licensor will waive or not assert, as appropriate, this Section, to the fullest extent permitted by the applicable national law, to enable You to reasonably exercise Your right under Section 3(b) of this License (right to make Adaptations) but not otherwise. - -5. Representations, Warranties and Disclaimer - -UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU. - -6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -7. Termination - - This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Adaptations or Collections from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License. - Subject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. - -8. Miscellaneous - - Each time You Distribute or Publicly Perform the Work or a Collection, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License. - Each time You Distribute or Publicly Perform an Adaptation, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License. - If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. - No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. - This License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You. - The rights granted under, and the subject matter referenced, in this License were drafted utilizing the terminology of the Berne Convention for the Protection of Literary and Artistic Works (as amended on September 28, 1979), the Rome Convention of 1961, the WIPO Copyright Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996 and the Universal Copyright Convention (as revised on July 24, 1971). These rights and subject matter take effect in the relevant jurisdiction in which the License terms are sought to be enforced according to the corresponding provisions of the implementation of those treaty provisions in the applicable national law. If the standard suite of rights granted under applicable copyright law includes additional rights not granted under this License, such additional rights are deemed to be included in the License; this License is not intended to restrict the license of any rights under applicable law. - - Creative Commons Notice - - Creative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor. - - Except for the limited purpose of indicating to the public that the Work is licensed under the CCPL, Creative Commons does not authorize the use by either party of the trademark "Creative Commons" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time. For the avoidance of doubt, this trademark restriction does not form part of the License. - - Creative Commons may be contacted at https://creativecommons.org/. diff --git a/discotrains/basic_trains/modpack.conf b/discotrains/basic_trains/modpack.conf deleted file mode 100644 index 810349d..0000000 --- a/discotrains/basic_trains/modpack.conf +++ /dev/null @@ -1,5 +0,0 @@ -name=basic_trains -title=Advtrains Basic Trains -description=Collection of basic trains for the Advanced Trains mod. Formerly included in Advtrains package. -author = orwell -release = 7737 diff --git a/discotrains/bboe_1080/depends.txt b/discotrains/bboe_1080/depends.txt deleted file mode 100755 index 1fb6665..0000000 --- a/discotrains/bboe_1080/depends.txt +++ /dev/null @@ -1,2 +0,0 @@ -advtrains -intllib? \ No newline at end of file diff --git a/discotrains/bboe_1080/init.lua b/discotrains/bboe_1080/init.lua deleted file mode 100755 index a00075a..0000000 --- a/discotrains/bboe_1080/init.lua +++ /dev/null @@ -1,99 +0,0 @@ -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("engine_BBOE_1080", { - mesh="advtrains_engine_BBOE_1080.b3d", - textures = {"advtrains_engine_BBOE_1080.png"}, - drives_on={default=true}, - max_speed=20, - seats = { - { - name=S("Driver stand"), - attach_offset={x=0, y=8, z=13}, - 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, - }, - pass={ - name = "Engenier's area", - access_to = {"dstand"}, - require_doors_open=true, - }, - }, - assign_to_seat_group = {"dstand"}, - 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}, - visual_size = {x=1, y=1}, - wagon_span=3.0, - is_locomotive=true, - collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0}, - drops={"advtrains_engine_BBÖ_1080"}, -}, S("BBÖ 1080 "), "advtrains_engine_BBOE_1080_inv.png") - -advtrains.register_wagon("wagon_ware", { - mesh="advtrains_wagon_BBOE_ware.b3d", - textures = {"advtrains_wagon_BBOE_ware.png"}, - drives_on={default=true}, - max_speed=10, - seats = {}, - visual_size = {x=1, y=1}, - wagon_span=2.8, - collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0}, - drops={"advtrains:wagon_coal"}, - has_inventory = true, - get_inventory_formspec = function(self) - return "size[8,11]".. - "list[detached:advtrains_wgn_"..self.unique_id..";box;0,0;8,6;]".. - "list[current_player;main;0,7;8,4;]".. - "listring[]" - end, - inventory_list_sizes = { - box=8*2, - }, -}, S("Ware Wagon(BBÖ)"), "advtrains_wagon_BBOE_ware_inv.png") - - diff --git a/discotrains/bboe_1080/locale/de.txt b/discotrains/bboe_1080/locale/de.txt deleted file mode 100755 index 63d7a97..0000000 --- a/discotrains/bboe_1080/locale/de.txt +++ /dev/null @@ -1,4 +0,0 @@ -Driver Stand = Führerstand -Japanese Train Engine = Japanische Personenzug-Lokomotive -Default Seat = Standardsitzplatz -Japanese Train Wagon = Japanischer Personenzug-Passagierwaggon \ No newline at end of file diff --git a/discotrains/bboe_1080/models/advtrains_engine_BBOE_1080.b3d b/discotrains/bboe_1080/models/advtrains_engine_BBOE_1080.b3d deleted file mode 100644 index 2d955b6..0000000 Binary files a/discotrains/bboe_1080/models/advtrains_engine_BBOE_1080.b3d and /dev/null differ diff --git a/discotrains/bboe_1080/models/advtrains_wagon_BBOE_ware.b3d b/discotrains/bboe_1080/models/advtrains_wagon_BBOE_ware.b3d deleted file mode 100644 index fa62f20..0000000 Binary files a/discotrains/bboe_1080/models/advtrains_wagon_BBOE_ware.b3d and /dev/null differ diff --git a/discotrains/bboe_1080/textures/advtrains_engine_BBOE_1080.png b/discotrains/bboe_1080/textures/advtrains_engine_BBOE_1080.png deleted file mode 100644 index f9c30ad..0000000 Binary files a/discotrains/bboe_1080/textures/advtrains_engine_BBOE_1080.png and /dev/null differ diff --git a/discotrains/bboe_1080/textures/advtrains_engine_BBOE_1080_inv.png b/discotrains/bboe_1080/textures/advtrains_engine_BBOE_1080_inv.png deleted file mode 100644 index aa383b8..0000000 Binary files a/discotrains/bboe_1080/textures/advtrains_engine_BBOE_1080_inv.png and /dev/null differ diff --git a/discotrains/bboe_1080/textures/advtrains_wagon_BBOE_ware.png b/discotrains/bboe_1080/textures/advtrains_wagon_BBOE_ware.png deleted file mode 100644 index 054277a..0000000 Binary files a/discotrains/bboe_1080/textures/advtrains_wagon_BBOE_ware.png and /dev/null differ diff --git a/discotrains/bboe_1080/textures/advtrains_wagon_BBOE_ware_inv.png b/discotrains/bboe_1080/textures/advtrains_wagon_BBOE_ware_inv.png deleted file mode 100644 index d9dcb5a..0000000 Binary files a/discotrains/bboe_1080/textures/advtrains_wagon_BBOE_ware_inv.png and /dev/null differ diff --git a/discotrains/crafts.lua b/discotrains/crafts.lua deleted file mode 100644 index 9dafa3c..0000000 --- a/discotrains/crafts.lua +++ /dev/null @@ -1,50 +0,0 @@ -minetest.register_craft({ - output = 'advtrains:subway_wagon_blue', - recipe = { - {'default:steelblock', 'default:steelblock', 'default:steelblock'}, - {'default:steelblock', 'dye:blue', 'default:steelblock'}, - {'default:steelblock', 'default:steelblock', 'default:steelblock'}, - }, -}) - -minetest.register_craft({ - output = 'advtrains:subway_wagon_red', - recipe = { - {'default:steelblock', 'default:steelblock', 'default:steelblock'}, - {'default:steelblock', 'dye:red', 'default:steelblock'}, - {'default:steelblock', 'default:steelblock', 'default:steelblock'}, - }, -}) - -minetest.register_craft({ - output = 'advtrains:subway_wagon_white', - recipe = { - {'default:steelblock', 'default:steelblock', 'default:steelblock'}, - {'default:steelblock', 'dye:white', 'default:steelblock'}, - {'default:steelblock', 'default:steelblock', 'default:steelblock'}, - }, -}) -minetest.register_craft({ - output = 'advtrains:subway_wagon_gray', - recipe = { - {'default:steelblock', 'default:steelblock', 'default:steelblock'}, - {'default:steelblock', 'dye:grey', 'default:steelblock'}, - {'default:steelblock', 'default:steelblock', 'default:steelblock'}, - }, -}) -minetest.register_craft({ - output = 'advtrains:subway_wagon_green', - recipe = { - {'default:steelblock', 'default:steelblock', 'default:steelblock'}, - {'default:steelblock', 'dye:green', 'default:steelblock'}, - {'default:steelblock', 'default:steelblock', 'default:steelblock'}, - }, -}) -minetest.register_craft({ - output = 'advtrains:subway_wagon_black', - recipe = { - {'default:steelblock', 'default:steelblock', 'default:steelblock'}, - {'default:steelblock', 'dye:black', 'default:steelblock'}, - {'default:steelblock', 'default:steelblock', 'default:steelblock'}, - }, -}) diff --git a/discotrains/db_160/depends.txt b/discotrains/db_160/depends.txt deleted file mode 100755 index 1fb6665..0000000 --- a/discotrains/db_160/depends.txt +++ /dev/null @@ -1,2 +0,0 @@ -advtrains -intllib? \ No newline at end of file diff --git a/discotrains/db_160/init.lua b/discotrains/db_160/init.lua deleted file mode 100755 index ab991ba..0000000 --- a/discotrains/db_160/init.lua +++ /dev/null @@ -1,75 +0,0 @@ -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("engine_DB_160", { - mesh="advtrains_DB_160.b3d", - textures = {"advtrains_DB_160.png"}, - drives_on={default=true}, - max_speed=20, - seats = { - { - name=S("Driver stand"), - attach_offset={x=0, y=8, z=13}, - 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, - }, - pass={ - name = "Engenier's area", - access_to = {"dstand"}, - require_doors_open=true, - }, - }, - assign_to_seat_group = {"dstand"}, - 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}, - visual_size = {x=1, y=1}, - wagon_span=3.0, - is_locomotive=true, - collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0}, - drops={"advtrains_engine_DB_160"}, -}, S("DB 160 "), "advtrains_DB_160_inv.png") diff --git a/discotrains/db_160/models/advtrains_DB_160.b3d b/discotrains/db_160/models/advtrains_DB_160.b3d deleted file mode 100644 index 357fcce..0000000 Binary files a/discotrains/db_160/models/advtrains_DB_160.b3d and /dev/null differ diff --git a/discotrains/db_160/textures/advtrains_DB_160.png b/discotrains/db_160/textures/advtrains_DB_160.png deleted file mode 100644 index 60234af..0000000 Binary files a/discotrains/db_160/textures/advtrains_DB_160.png and /dev/null differ diff --git a/discotrains/db_160/textures/advtrains_DB_160_inv.png b/discotrains/db_160/textures/advtrains_DB_160_inv.png deleted file mode 100644 index 6495d58..0000000 Binary files a/discotrains/db_160/textures/advtrains_DB_160_inv.png and /dev/null differ diff --git a/discotrains/depends.txt b/discotrains/depends.txt deleted file mode 100644 index 2bd2b4b..0000000 --- a/discotrains/depends.txt +++ /dev/null @@ -1,4 +0,0 @@ -advtrains -advtrains_train_track -intllib? -advtrains_train_subway diff --git a/discotrains/init.lua b/discotrains/init.lua deleted file mode 100644 index 7310c0e..0000000 --- a/discotrains/init.lua +++ /dev/null @@ -1,738 +0,0 @@ -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 - -dofile(minetest.get_modpath("disco_trains").."/crafts.lua") - ---based on the advtrains_train_subway code by orwell -advtrains.register_wagon("subway_wagon_blue", { - mesh="advtrains_subway_wagon.b3d", - textures = {"advtrains_subway_wagon_blue.png"}, - drives_on={default=true}, - max_speed=15, - seats = { - { - name="Driver stand", - attach_offset={x=0, y=10, z=0}, - view_offset={x=0, y=0, z=0}, - group="dstand", - }, - { - 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="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 = {"pass", "dstand"}, - doors={ - open={ - [-1]={frames={x=0, y=20}, time=1}, - [1]={frames={x=40, y=60}, time=1}, - sound = "advtrains_subway_dopen", - }, - close={ - [-1]={frames={x=20, y=40}, time=1}, - [1]={frames={x=60, y=80}, time=1}, - sound = "advtrains_subway_dclose", - } - }, - door_entry={-1, 1}, - visual_size = {x=1, y=1}, - wagon_span=2, - --collisionbox = {-1.0,-0.5,-1.8, 1.0,2.5,1.8}, - collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0}, - is_locomotive=true, - drops={"default:steelblock 4"}, - horn_sound = "advtrains_subway_horn", - glow = -1, --supposed to disable effect of light to texture color, so that the entity always appears as full-bright - 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 - minetest.sound_play("advtrains_subway_depart", {object = self.object}) - end - if velocity < 2 and (old_velocity >= 2 or old_velocity == velocity) and not self.sound_arrive_handle then - self.sound_arrive_handle = minetest.sound_play("advtrains_subway_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 - if velocity > 0 and (self.sound_loop_tmr or 0)<=0 then - self.sound_loop_handle = minetest.sound_play({name="advtrains_subway_loop", gain=0.3}, {object = self.object}) - self.sound_loop_tmr=3 - elseif velocity>0 then - self.sound_loop_tmr = self.sound_loop_tmr - dtime - elseif velocity==0 then - if self.sound_loop_handle then - minetest.sound_stop(self.sound_loop_handle) - self.sound_loop_handle = nil - end - self.sound_loop_tmr=0 - end - end, - custom_on_step = function(self, dtime, data, train) - --set line number - local line = nil - if train.line then - local lint = string.sub(train.line, 1, 1) - line = tonumber(lint) - if lint=="X" then line="X" end - end - if line and line~=self.line_cache then - local new_line_tex="advtrains_subway_wagon_blue.png^advtrains_subway_wagon_line"..line..".png" - self.object:set_properties({ - textures={new_line_tex}, - }) - self.line_cache=line - elseif self.line_cache~=nil and line==nil then - self.object:set_properties({ - textures=self.textures, - }) - self.line_cache=nil - end - end, -}, S("Blue Subway Passenger Wagon"), "advtrains_subway_wagon_inv_blue.png") - ---w - -advtrains.register_wagon("subway_wagon_red", { - mesh="advtrains_subway_wagon.b3d", - textures = {"advtrains_subway_wagon_red.png"}, - drives_on={default=true}, - max_speed=15, - seats = { - { - name="Driver stand", - attach_offset={x=0, y=10, z=0}, - view_offset={x=0, y=0, z=0}, - group="dstand", - }, - { - 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="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 = {"pass", "dstand"}, - doors={ - open={ - [-1]={frames={x=0, y=20}, time=1}, - [1]={frames={x=40, y=60}, time=1}, - sound = "advtrains_subway_dopen", - }, - close={ - [-1]={frames={x=20, y=40}, time=1}, - [1]={frames={x=60, y=80}, time=1}, - sound = "advtrains_subway_dclose", - } - }, - door_entry={-1, 1}, - visual_size = {x=1, y=1}, - wagon_span=2, - --collisionbox = {-1.0,-0.5,-1.8, 1.0,2.5,1.8}, - collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0}, - is_locomotive=true, - drops={"default:steelblock 4"}, - horn_sound = "advtrains_subway_horn", - glow = -1, --supposed to disable effect of light to texture color, so that the entity always appears as full-bright - 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 - minetest.sound_play("advtrains_subway_depart", {object = self.object}) - end - if velocity < 2 and (old_velocity >= 2 or old_velocity == velocity) and not self.sound_arrive_handle then - self.sound_arrive_handle = minetest.sound_play("advtrains_subway_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 - if velocity > 0 and (self.sound_loop_tmr or 0)<=0 then - self.sound_loop_handle = minetest.sound_play({name="advtrains_subway_loop", gain=0.3}, {object = self.object}) - self.sound_loop_tmr=3 - elseif velocity>0 then - self.sound_loop_tmr = self.sound_loop_tmr - dtime - elseif velocity==0 then - if self.sound_loop_handle then - minetest.sound_stop(self.sound_loop_handle) - self.sound_loop_handle = nil - end - self.sound_loop_tmr=0 - end - end, - custom_on_step = function(self, dtime, data, train) - --set line number - local line = nil - if train.line then - local lint = string.sub(train.line, 1, 1) - line = tonumber(lint) - if lint=="X" then line="X" end - end - if line and line~=self.line_cache then - local new_line_tex="advtrains_subway_wagon_red.png^advtrains_subway_wagon_line"..line..".png" - self.object:set_properties({ - textures={new_line_tex}, - }) - self.line_cache=line - elseif self.line_cache~=nil and line==nil then - self.object:set_properties({ - textures=self.textures, - }) - self.line_cache=nil - end - end, -}, S("Red Subway Passenger Wagon"), "advtrains_subway_wagon_inv_red.png") - ---wagons - - - -advtrains.register_wagon("subway_wagon_green", { - mesh="advtrains_subway_wagon.b3d", - textures = {"advtrains_subway_wagon_green.png"}, - drives_on={default=true}, - max_speed=15, - seats = { - { - name="Driver stand", - attach_offset={x=0, y=10, z=0}, - view_offset={x=0, y=0, z=0}, - group="dstand", - }, - { - 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="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 = {"pass", "dstand"}, - doors={ - open={ - [-1]={frames={x=0, y=20}, time=1}, - [1]={frames={x=40, y=60}, time=1}, - sound = "advtrains_subway_dopen", - }, - close={ - [-1]={frames={x=20, y=40}, time=1}, - [1]={frames={x=60, y=80}, time=1}, - sound = "advtrains_subway_dclose", - } - }, - door_entry={-1, 1}, - visual_size = {x=1, y=1}, - wagon_span=2, - --collisionbox = {-1.0,-0.5,-1.8, 1.0,2.5,1.8}, - collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0}, - is_locomotive=true, - drops={"default:steelblock 4"}, - horn_sound = "advtrains_subway_horn", - glow = -1, --supposed to disable effect of light to texture color, so that the entity always appears as full-bright - 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 - minetest.sound_play("advtrains_subway_depart", {object = self.object}) - end - if velocity < 2 and (old_velocity >= 2 or old_velocity == velocity) and not self.sound_arrive_handle then - self.sound_arrive_handle = minetest.sound_play("advtrains_subway_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 - if velocity > 0 and (self.sound_loop_tmr or 0)<=0 then - self.sound_loop_handle = minetest.sound_play({name="advtrains_subway_loop", gain=0.3}, {object = self.object}) - self.sound_loop_tmr=3 - elseif velocity>0 then - self.sound_loop_tmr = self.sound_loop_tmr - dtime - elseif velocity==0 then - if self.sound_loop_handle then - minetest.sound_stop(self.sound_loop_handle) - self.sound_loop_handle = nil - end - self.sound_loop_tmr=0 - end - end, - custom_on_step = function(self, dtime, data, train) - --set line number - local line = nil - if train.line then - local lint = string.sub(train.line, 1, 1) - line = tonumber(lint) - if lint=="X" then line="X" end - end - if line and line~=self.line_cache then - local new_line_tex="advtrains_subway_wagon_green.png^advtrains_subway_wagon_line"..line..".png" - self.object:set_properties({ - textures={new_line_tex}, - }) - self.line_cache=line - elseif self.line_cache~=nil and line==nil then - self.object:set_properties({ - textures=self.textures, - }) - self.line_cache=nil - end - end, -}, S("Green Subway Passenger Wagon"), "advtrains_subway_wagon_inv_green.png") - ---wagons - -advtrains.register_wagon("subway_wagon_black", { - mesh="advtrains_subway_wagon.b3d", - textures = {"advtrains_subway_wagon_black.png"}, - drives_on={default=true}, - max_speed=15, - seats = { - { - name="Driver stand", - attach_offset={x=0, y=10, z=0}, - view_offset={x=0, y=0, z=0}, - group="dstand", - }, - { - 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="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 = {"pass", "dstand"}, - doors={ - open={ - [-1]={frames={x=0, y=20}, time=1}, - [1]={frames={x=40, y=60}, time=1}, - sound = "advtrains_subway_dopen", - }, - close={ - [-1]={frames={x=20, y=40}, time=1}, - [1]={frames={x=60, y=80}, time=1}, - sound = "advtrains_subway_dclose", - } - }, - door_entry={-1, 1}, - visual_size = {x=1, y=1}, - wagon_span=2, - --collisionbox = {-1.0,-0.5,-1.8, 1.0,2.5,1.8}, - collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0}, - is_locomotive=true, - drops={"default:steelblock 4"}, - horn_sound = "advtrains_subway_horn", - glow = -1, --supposed to disable effect of light to texture color, so that the entity always appears as full-bright - 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 - minetest.sound_play("advtrains_subway_depart", {object = self.object}) - end - if velocity < 2 and (old_velocity >= 2 or old_velocity == velocity) and not self.sound_arrive_handle then - self.sound_arrive_handle = minetest.sound_play("advtrains_subway_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 - if velocity > 0 and (self.sound_loop_tmr or 0)<=0 then - self.sound_loop_handle = minetest.sound_play({name="advtrains_subway_loop", gain=0.3}, {object = self.object}) - self.sound_loop_tmr=3 - elseif velocity>0 then - self.sound_loop_tmr = self.sound_loop_tmr - dtime - elseif velocity==0 then - if self.sound_loop_handle then - minetest.sound_stop(self.sound_loop_handle) - self.sound_loop_handle = nil - end - self.sound_loop_tmr=0 - end - end, - custom_on_step = function(self, dtime, data, train) - --set line number - local line = nil - if train.line then - local lint = string.sub(train.line, 1, 1) - line = tonumber(lint) - if lint=="X" then line="X" end - end - if line and line~=self.line_cache then - local new_line_tex="advtrains_subway_wagon_black.png^advtrains_subway_wagon_line"..line..".png" - self.object:set_properties({ - textures={new_line_tex}, - }) - self.line_cache=line - elseif self.line_cache~=nil and line==nil then - self.object:set_properties({ - textures=self.textures, - }) - self.line_cache=nil - end - end, -}, S("Black Subway Passenger Wagon"), "advtrains_subway_wagon_inv_black.png") - ---wagons - -advtrains.register_wagon("subway_wagon_white", { - mesh="advtrains_subway_wagon.b3d", - textures = {"advtrains_subway_wagon_white.png"}, - drives_on={default=true}, - max_speed=15, - seats = { - { - name="Driver stand", - attach_offset={x=0, y=10, z=0}, - view_offset={x=0, y=0, z=0}, - group="dstand", - }, - { - 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="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 = {"pass", "dstand"}, - doors={ - open={ - [-1]={frames={x=0, y=20}, time=1}, - [1]={frames={x=40, y=60}, time=1}, - sound = "advtrains_subway_dopen", - }, - close={ - [-1]={frames={x=20, y=40}, time=1}, - [1]={frames={x=60, y=80}, time=1}, - sound = "advtrains_subway_dclose", - } - }, - door_entry={-1, 1}, - visual_size = {x=1, y=1}, - wagon_span=2, - --collisionbox = {-1.0,-0.5,-1.8, 1.0,2.5,1.8}, - collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0}, - is_locomotive=true, - drops={"default:steelblock 4"}, - horn_sound = "advtrains_subway_horn", - glow = -1, --supposed to disable effect of light to texture color, so that the entity always appears as full-bright - 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 - minetest.sound_play("advtrains_subway_depart", {object = self.object}) - end - if velocity < 2 and (old_velocity >= 2 or old_velocity == velocity) and not self.sound_arrive_handle then - self.sound_arrive_handle = minetest.sound_play("advtrains_subway_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 - if velocity > 0 and (self.sound_loop_tmr or 0)<=0 then - self.sound_loop_handle = minetest.sound_play({name="advtrains_subway_loop", gain=0.3}, {object = self.object}) - self.sound_loop_tmr=3 - elseif velocity>0 then - self.sound_loop_tmr = self.sound_loop_tmr - dtime - elseif velocity==0 then - if self.sound_loop_handle then - minetest.sound_stop(self.sound_loop_handle) - self.sound_loop_handle = nil - end - self.sound_loop_tmr=0 - end - end, - custom_on_step = function(self, dtime, data, train) - --set line number - local line = nil - if train.line then - local lint = string.sub(train.line, 1, 1) - line = tonumber(lint) - if lint=="X" then line="X" end - end - if line and line~=self.line_cache then - local new_line_tex="advtrains_subway_wagon_white.png^advtrains_subway_wagon_line"..line..".png" - self.object:set_properties({ - textures={new_line_tex}, - }) - self.line_cache=line - elseif self.line_cache~=nil and line==nil then - self.object:set_properties({ - textures=self.textures, - }) - self.line_cache=nil - end - end, -}, S("White Subway Passenger Wagon"), "advtrains_subway_wagon_inv_white.png") - - - -advtrains.register_wagon("subway_wagon_gray", { - mesh="advtrains_subway_wagon.b3d", - textures = {"advtrains_subway_wagon_gray.png"}, - drives_on={default=true}, - max_speed=15, - seats = { - { - name="Driver stand", - attach_offset={x=0, y=10, z=0}, - view_offset={x=0, y=0, z=0}, - group="dstand", - }, - { - 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="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 = {"pass", "dstand"}, - doors={ - open={ - [-1]={frames={x=0, y=20}, time=1}, - [1]={frames={x=40, y=60}, time=1}, - sound = "advtrains_subway_dopen", - }, - close={ - [-1]={frames={x=20, y=40}, time=1}, - [1]={frames={x=60, y=80}, time=1}, - sound = "advtrains_subway_dclose", - } - }, - door_entry={-1, 1}, - visual_size = {x=1, y=1}, - wagon_span=2, - --collisionbox = {-1.0,-0.5,-1.8, 1.0,2.5,1.8}, - collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0}, - is_locomotive=true, - drops={"default:steelblock 4"}, - horn_sound = "advtrains_subway_horn", - glow = -1, --supposed to disable effect of light to texture color, so that the entity always appears as full-bright - 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 - minetest.sound_play("advtrains_subway_depart", {object = self.object}) - end - if velocity < 2 and (old_velocity >= 2 or old_velocity == velocity) and not self.sound_arrive_handle then - self.sound_arrive_handle = minetest.sound_play("advtrains_subway_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 - if velocity > 0 and (self.sound_loop_tmr or 0)<=0 then - self.sound_loop_handle = minetest.sound_play({name="advtrains_subway_loop", gain=0.3}, {object = self.object}) - self.sound_loop_tmr=3 - elseif velocity>0 then - self.sound_loop_tmr = self.sound_loop_tmr - dtime - elseif velocity==0 then - if self.sound_loop_handle then - minetest.sound_stop(self.sound_loop_handle) - self.sound_loop_handle = nil - end - self.sound_loop_tmr=0 - end - end, - custom_on_step = function(self, dtime, data, train) - --set line number - local line = nil - if train.line then - local lint = string.sub(train.line, 1, 1) - line = tonumber(lint) - if lint=="X" then line="X" end - end - if line and line~=self.line_cache then - local new_line_tex="advtrains_subway_wagon_gray.png^advtrains_subway_wagon_line"..line..".png" - self.object:set_properties({ - textures={new_line_tex}, - }) - self.line_cache=line - elseif self.line_cache~=nil and line==nil then - self.object:set_properties({ - textures=self.textures, - }) - self.line_cache=nil - end - end, -}, S("Gray Subway Passenger Wagon"), "advtrains_subway_wagon_inv_gray.png") - - - diff --git a/discotrains/textures/advtrains_subway_wagon_black.png b/discotrains/textures/advtrains_subway_wagon_black.png deleted file mode 100644 index 9e42064..0000000 Binary files a/discotrains/textures/advtrains_subway_wagon_black.png and /dev/null differ diff --git a/discotrains/textures/advtrains_subway_wagon_blue.png b/discotrains/textures/advtrains_subway_wagon_blue.png deleted file mode 100644 index d5a34b0..0000000 Binary files a/discotrains/textures/advtrains_subway_wagon_blue.png and /dev/null differ diff --git a/discotrains/textures/advtrains_subway_wagon_gray.png b/discotrains/textures/advtrains_subway_wagon_gray.png deleted file mode 100644 index df20f21..0000000 Binary files a/discotrains/textures/advtrains_subway_wagon_gray.png and /dev/null differ diff --git a/discotrains/textures/advtrains_subway_wagon_green.png b/discotrains/textures/advtrains_subway_wagon_green.png deleted file mode 100644 index db97e47..0000000 Binary files a/discotrains/textures/advtrains_subway_wagon_green.png and /dev/null differ diff --git a/discotrains/textures/advtrains_subway_wagon_inv_black.png b/discotrains/textures/advtrains_subway_wagon_inv_black.png deleted file mode 100644 index 354e40c..0000000 Binary files a/discotrains/textures/advtrains_subway_wagon_inv_black.png and /dev/null differ diff --git a/discotrains/textures/advtrains_subway_wagon_inv_blue.png b/discotrains/textures/advtrains_subway_wagon_inv_blue.png deleted file mode 100644 index dfb1ef8..0000000 Binary files a/discotrains/textures/advtrains_subway_wagon_inv_blue.png and /dev/null differ diff --git a/discotrains/textures/advtrains_subway_wagon_inv_gray.png b/discotrains/textures/advtrains_subway_wagon_inv_gray.png deleted file mode 100644 index 6c81e65..0000000 Binary files a/discotrains/textures/advtrains_subway_wagon_inv_gray.png and /dev/null differ diff --git a/discotrains/textures/advtrains_subway_wagon_inv_green.png b/discotrains/textures/advtrains_subway_wagon_inv_green.png deleted file mode 100644 index dc2f87b..0000000 Binary files a/discotrains/textures/advtrains_subway_wagon_inv_green.png and /dev/null differ diff --git a/discotrains/textures/advtrains_subway_wagon_inv_red.png b/discotrains/textures/advtrains_subway_wagon_inv_red.png deleted file mode 100644 index dee4f43..0000000 Binary files a/discotrains/textures/advtrains_subway_wagon_inv_red.png and /dev/null differ diff --git a/discotrains/textures/advtrains_subway_wagon_inv_white.png b/discotrains/textures/advtrains_subway_wagon_inv_white.png deleted file mode 100644 index beae3b4..0000000 Binary files a/discotrains/textures/advtrains_subway_wagon_inv_white.png and /dev/null differ diff --git a/discotrains/textures/advtrains_subway_wagon_line0.png b/discotrains/textures/advtrains_subway_wagon_line0.png deleted file mode 100644 index c656d97..0000000 Binary files a/discotrains/textures/advtrains_subway_wagon_line0.png and /dev/null differ diff --git a/discotrains/textures/advtrains_subway_wagon_line1.png b/discotrains/textures/advtrains_subway_wagon_line1.png deleted file mode 100644 index ad596df..0000000 Binary files a/discotrains/textures/advtrains_subway_wagon_line1.png and /dev/null differ diff --git a/discotrains/textures/advtrains_subway_wagon_line2.png b/discotrains/textures/advtrains_subway_wagon_line2.png deleted file mode 100644 index 7dbe679..0000000 Binary files a/discotrains/textures/advtrains_subway_wagon_line2.png and /dev/null differ diff --git a/discotrains/textures/advtrains_subway_wagon_line3.png b/discotrains/textures/advtrains_subway_wagon_line3.png deleted file mode 100644 index 3ccb6fb..0000000 Binary files a/discotrains/textures/advtrains_subway_wagon_line3.png and /dev/null differ diff --git a/discotrains/textures/advtrains_subway_wagon_line4.png b/discotrains/textures/advtrains_subway_wagon_line4.png deleted file mode 100644 index 67d7def..0000000 Binary files a/discotrains/textures/advtrains_subway_wagon_line4.png and /dev/null differ diff --git a/discotrains/textures/advtrains_subway_wagon_line5.png b/discotrains/textures/advtrains_subway_wagon_line5.png deleted file mode 100644 index 1af9e9c..0000000 Binary files a/discotrains/textures/advtrains_subway_wagon_line5.png and /dev/null differ diff --git a/discotrains/textures/advtrains_subway_wagon_line6.png b/discotrains/textures/advtrains_subway_wagon_line6.png deleted file mode 100644 index e48c6ed..0000000 Binary files a/discotrains/textures/advtrains_subway_wagon_line6.png and /dev/null differ diff --git a/discotrains/textures/advtrains_subway_wagon_line7.png b/discotrains/textures/advtrains_subway_wagon_line7.png deleted file mode 100644 index 8ed26e7..0000000 Binary files a/discotrains/textures/advtrains_subway_wagon_line7.png and /dev/null differ diff --git a/discotrains/textures/advtrains_subway_wagon_line8.png b/discotrains/textures/advtrains_subway_wagon_line8.png deleted file mode 100644 index 4e19353..0000000 Binary files a/discotrains/textures/advtrains_subway_wagon_line8.png and /dev/null differ diff --git a/discotrains/textures/advtrains_subway_wagon_line9.png b/discotrains/textures/advtrains_subway_wagon_line9.png deleted file mode 100644 index a79d7a7..0000000 Binary files a/discotrains/textures/advtrains_subway_wagon_line9.png and /dev/null differ diff --git a/discotrains/textures/advtrains_subway_wagon_lineX.png b/discotrains/textures/advtrains_subway_wagon_lineX.png deleted file mode 100644 index 6f74877..0000000 Binary files a/discotrains/textures/advtrains_subway_wagon_lineX.png and /dev/null differ diff --git a/discotrains/textures/advtrains_subway_wagon_red.png b/discotrains/textures/advtrains_subway_wagon_red.png deleted file mode 100644 index fccc512..0000000 Binary files a/discotrains/textures/advtrains_subway_wagon_red.png and /dev/null differ diff --git a/discotrains/textures/advtrains_subway_wagon_white.png b/discotrains/textures/advtrains_subway_wagon_white.png deleted file mode 100644 index ab1e848..0000000 Binary files a/discotrains/textures/advtrains_subway_wagon_white.png and /dev/null differ diff --git a/moretrains/description.txt b/moretrains/description.txt deleted file mode 100644 index 2db103b..0000000 --- a/moretrains/description.txt +++ /dev/null @@ -1 +0,0 @@ -a wip modpack that provides more trains for advtrains \ No newline at end of file diff --git a/moretrains/license.txt b/moretrains/license.txt deleted file mode 100755 index 68a4b60..0000000 --- a/moretrains/license.txt +++ /dev/null @@ -1,142 +0,0 @@ -GNU LESSER GENERAL PUBLIC LICENSE - -Version 2.1, February 1999 - -Copyright (C) 1991, 1999 Free Software Foundation, Inc. -51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA -Everyone is permitted to copy and distribute verbatim copies -of this license document, but changing it is not allowed. - -[This is the first released version of the Lesser GPL. It also counts - as the successor of the GNU Library Public License, version 2, hence - the version number 2.1.] - -Preamble - -The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public Licenses are intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. - -This license, the Lesser General Public License, applies to some specially designated software packages--typically libraries--of the Free Software Foundation and other authors who decide to use it. You can use it too, but we suggest you first think carefully about whether this license or the ordinary General Public License is the better strategy to use in any particular case, based on the explanations below. - -When we speak of free software, we are referring to freedom of use, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish); that you receive source code or can get it if you want it; that you can change the software and use pieces of it in new free programs; and that you are informed that you can do these things. - -To protect your rights, we need to make restrictions that forbid distributors to deny you these rights or to ask you to surrender these rights. These restrictions translate to certain responsibilities for you if you distribute copies of the library or if you modify it. - -For example, if you distribute copies of the library, whether gratis or for a fee, you must give the recipients all the rights that we gave you. You must make sure that they, too, receive or can get the source code. If you link other code with the library, you must provide complete object files to the recipients, so that they can relink them with the library after making changes to the library and recompiling it. And you must show them these terms so they know their rights. - -We protect your rights with a two-step method: (1) we copyright the library, and (2) we offer you this license, which gives you legal permission to copy, distribute and/or modify the library. - -To protect each distributor, we want to make it very clear that there is no warranty for the free library. Also, if the library is modified by someone else and passed on, the recipients should know that what they have is not the original version, so that the original author's reputation will not be affected by problems that might be introduced by others. - -Finally, software patents pose a constant threat to the existence of any free program. We wish to make sure that a company cannot effectively restrict the users of a free program by obtaining a restrictive license from a patent holder. Therefore, we insist that any patent license obtained for a version of the library must be consistent with the full freedom of use specified in this license. - -Most GNU software, including some libraries, is covered by the ordinary GNU General Public License. This license, the GNU Lesser General Public License, applies to certain designated libraries, and is quite different from the ordinary General Public License. We use this license for certain libraries in order to permit linking those libraries into non-free programs. - -When a program is linked with a library, whether statically or using a shared library, the combination of the two is legally speaking a combined work, a derivative of the original library. The ordinary General Public License therefore permits such linking only if the entire combination fits its criteria of freedom. The Lesser General Public License permits more lax criteria for linking other code with the library. - -We call this license the "Lesser" General Public License because it does Less to protect the user's freedom than the ordinary General Public License. It also provides other free software developers Less of an advantage over competing non-free programs. These disadvantages are the reason we use the ordinary General Public License for many libraries. However, the Lesser license provides advantages in certain special circumstances. - -For example, on rare occasions, there may be a special need to encourage the widest possible use of a certain library, so that it becomes a de-facto standard. To achieve this, non-free programs must be allowed to use the library. A more frequent case is that a free library does the same job as widely used non-free libraries. In this case, there is little to gain by limiting the free library to free software only, so we use the Lesser General Public License. - -In other cases, permission to use a particular library in non-free programs enables a greater number of people to use a large body of free software. For example, permission to use the GNU C Library in non-free programs enables many more people to use the whole GNU operating system, as well as its variant, the GNU/Linux operating system. - -Although the Lesser General Public License is Less protective of the users' freedom, it does ensure that the user of a program that is linked with the Library has the freedom and the wherewithal to run that program using a modified version of the Library. - -The precise terms and conditions for copying, distribution and modification follow. Pay close attention to the difference between a "work based on the library" and a "work that uses the library". The former contains code derived from the library, whereas the latter must be combined with the library in order to run. -TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - -0. This License Agreement applies to any software library or other program which contains a notice placed by the copyright holder or other authorized party saying it may be distributed under the terms of this Lesser General Public License (also called "this License"). Each licensee is addressed as "you". - -A "library" means a collection of software functions and/or data prepared so as to be conveniently linked with application programs (which use some of those functions and data) to form executables. - -The "Library", below, refers to any such software library or work which has been distributed under these terms. A "work based on the Library" means either the Library or any derivative work under copyright law: that is to say, a work containing the Library or a portion of it, either verbatim or with modifications and/or translated straightforwardly into another language. (Hereinafter, translation is included without limitation in the term "modification".) - -"Source code" for a work means the preferred form of the work for making modifications to it. For a library, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the library. - -Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running a program using the Library is not restricted, and output from such a program is covered only if its contents constitute a work based on the Library (independent of the use of the Library in a tool for writing it). Whether that is true depends on what the Library does and what the program that uses the Library does. - -1. You may copy and distribute verbatim copies of the Library's complete source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and distribute a copy of this License along with the Library. - -You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. - -2. You may modify your copy or copies of the Library or any portion of it, thus forming a work based on the Library, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: - - a) The modified work must itself be a software library. - b) You must cause the files modified to carry prominent notices stating that you changed the files and the date of any change. - c) You must cause the whole of the work to be licensed at no charge to all third parties under the terms of this License. - d) If a facility in the modified Library refers to a function or a table of data to be supplied by an application program that uses the facility, other than as an argument passed when the facility is invoked, then you must make a good faith effort to ensure that, in the event an application does not supply such function or table, the facility still operates, and performs whatever part of its purpose remains meaningful. - - (For example, a function in a library to compute square roots has a purpose that is entirely well-defined independent of the application. Therefore, Subsection 2d requires that any application-supplied function or table used by this function must be optional: if the application does not supply it, the square root function must still compute square roots.) - -These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Library, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Library, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. - -Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Library. - -In addition, mere aggregation of another work not based on the Library with the Library (or with a work based on the Library) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. - -3. You may opt to apply the terms of the ordinary GNU General Public License instead of this License to a given copy of the Library. To do this, you must alter all the notices that refer to this License, so that they refer to the ordinary GNU General Public License, version 2, instead of to this License. (If a newer version than version 2 of the ordinary GNU General Public License has appeared, then you can specify that version instead if you wish.) Do not make any other change in these notices. - -Once this change is made in a given copy, it is irreversible for that copy, so the ordinary GNU General Public License applies to all subsequent copies and derivative works made from that copy. - -This option is useful when you wish to copy part of the code of the Library into a program that is not a library. - -4. You may copy and distribute the Library (or a portion or derivative of it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange. - -If distribution of object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place satisfies the requirement to distribute the source code, even though third parties are not compelled to copy the source along with the object code. - -5. A program that contains no derivative of any portion of the Library, but is designed to work with the Library by being compiled or linked with it, is called a "work that uses the Library". Such a work, in isolation, is not a derivative work of the Library, and therefore falls outside the scope of this License. - -However, linking a "work that uses the Library" with the Library creates an executable that is a derivative of the Library (because it contains portions of the Library), rather than a "work that uses the library". The executable is therefore covered by this License. Section 6 states terms for distribution of such executables. - -When a "work that uses the Library" uses material from a header file that is part of the Library, the object code for the work may be a derivative work of the Library even though the source code is not. Whether this is true is especially significant if the work can be linked without the Library, or if the work is itself a library. The threshold for this to be true is not precisely defined by law. - -If such an object file uses only numerical parameters, data structure layouts and accessors, and small macros and small inline functions (ten lines or less in length), then the use of the object file is unrestricted, regardless of whether it is legally a derivative work. (Executables containing this object code plus portions of the Library will still fall under Section 6.) - -Otherwise, if the work is a derivative of the Library, you may distribute the object code for the work under the terms of Section 6. Any executables containing that work also fall under Section 6, whether or not they are linked directly with the Library itself. - -6. As an exception to the Sections above, you may also combine or link a "work that uses the Library" with the Library to produce a work containing portions of the Library, and distribute that work under terms of your choice, provided that the terms permit modification of the work for the customer's own use and reverse engineering for debugging such modifications. - -You must give prominent notice with each copy of the work that the Library is used in it and that the Library and its use are covered by this License. You must supply a copy of this License. If the work during execution displays copyright notices, you must include the copyright notice for the Library among them, as well as a reference directing the user to the copy of this License. Also, you must do one of these things: - - a) Accompany the work with the complete corresponding machine-readable source code for the Library including whatever changes were used in the work (which must be distributed under Sections 1 and 2 above); and, if the work is an executable linked with the Library, with the complete machine-readable "work that uses the Library", as object code and/or source code, so that the user can modify the Library and then relink to produce a modified executable containing the modified Library. (It is understood that the user who changes the contents of definitions files in the Library will not necessarily be able to recompile the application to use the modified definitions.) - b) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (1) uses at run time a copy of the library already present on the user's computer system, rather than copying library functions into the executable, and (2) will operate properly with a modified version of the library, if the user installs one, as long as the modified version is interface-compatible with the version that the work was made with. - c) Accompany the work with a written offer, valid for at least three years, to give the same user the materials specified in Subsection 6a, above, for a charge no more than the cost of performing this distribution. - d) If distribution of the work is made by offering access to copy from a designated place, offer equivalent access to copy the above specified materials from the same place. - e) Verify that the user has already received a copy of these materials or that you have already sent this user a copy. - -For an executable, the required form of the "work that uses the Library" must include any data and utility programs needed for reproducing the executable from it. However, as a special exception, the materials to be distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. - -It may happen that this requirement contradicts the license restrictions of other proprietary libraries that do not normally accompany the operating system. Such a contradiction means you cannot use both them and the Library together in an executable that you distribute. - -7. You may place library facilities that are a work based on the Library side-by-side in a single library together with other library facilities not covered by this License, and distribute such a combined library, provided that the separate distribution of the work based on the Library and of the other library facilities is otherwise permitted, and provided that you do these two things: - - a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities. This must be distributed under the terms of the Sections above. - b) Give prominent notice with the combined library of the fact that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work. - -8. You may not copy, modify, sublicense, link with, or distribute the Library except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense, link with, or distribute the Library is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. - -9. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Library or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Library (or any work based on the Library), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Library or works based on it. - -10. Each time you redistribute the Library (or any work based on the Library), the recipient automatically receives a license from the original licensor to copy, distribute, link with or modify the Library subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties with this License. - -11. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Library at all. For example, if a patent license would not permit royalty-free redistribution of the Library by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Library. - -If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply, and the section as a whole is intended to apply in other circumstances. - -It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. - -This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. - -12. If the distribution and/or use of the Library is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Library under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. - -13. The Free Software Foundation may publish revised and/or new versions of the Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. - -Each version is given a distinguishing version number. If the Library specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Library does not specify a license version number, you may choose any version ever published by the Free Software Foundation. - -14. If you wish to incorporate parts of the Library into other free programs whose distribution conditions are incompatible with these, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. - -NO WARRANTY - -15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - -16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. -END OF TERMS AND CONDITIONS diff --git a/moretrains/modpack.txt b/moretrains/modpack.txt deleted file mode 100755 index e69de29..0000000 diff --git a/moretrains/moretrains_basic/blend/german_diesel.blend b/moretrains/moretrains_basic/blend/german_diesel.blend deleted file mode 100644 index 8ffd2b4..0000000 Binary files a/moretrains/moretrains_basic/blend/german_diesel.blend and /dev/null differ diff --git a/moretrains/moretrains_basic/blend/legacy/moretrains_basic_railroad_car.blend b/moretrains/moretrains_basic/blend/legacy/moretrains_basic_railroad_car.blend deleted file mode 100644 index 27e477b..0000000 Binary files a/moretrains/moretrains_basic/blend/legacy/moretrains_basic_railroad_car.blend and /dev/null differ diff --git a/moretrains/moretrains_basic/blend/legacy/moretrains_basic_silberling.blend b/moretrains/moretrains_basic/blend/legacy/moretrains_basic_silberling.blend deleted file mode 100644 index bb708d5..0000000 Binary files a/moretrains/moretrains_basic/blend/legacy/moretrains_basic_silberling.blend and /dev/null differ diff --git a/moretrains/moretrains_basic/blend/legacy/moretrains_basic_silberling_train.blend b/moretrains/moretrains_basic/blend/legacy/moretrains_basic_silberling_train.blend deleted file mode 100644 index 31bf184..0000000 Binary files a/moretrains/moretrains_basic/blend/legacy/moretrains_basic_silberling_train.blend and /dev/null differ diff --git a/moretrains/moretrains_basic/blend/moretrains_basic_railroad_car_anim.blend b/moretrains/moretrains_basic/blend/moretrains_basic_railroad_car_anim.blend deleted file mode 100644 index 38cca78..0000000 Binary files a/moretrains/moretrains_basic/blend/moretrains_basic_railroad_car_anim.blend and /dev/null differ diff --git a/moretrains/moretrains_basic/blend/moretrains_basic_silberling_anim.blend b/moretrains/moretrains_basic/blend/moretrains_basic_silberling_anim.blend deleted file mode 100644 index c4c3856..0000000 Binary files a/moretrains/moretrains_basic/blend/moretrains_basic_silberling_anim.blend and /dev/null differ diff --git a/moretrains/moretrains_basic/blend/moretrains_basic_silberling_train_anim.blend b/moretrains/moretrains_basic/blend/moretrains_basic_silberling_train_anim.blend deleted file mode 100644 index c188de8..0000000 Binary files a/moretrains/moretrains_basic/blend/moretrains_basic_silberling_train_anim.blend and /dev/null differ diff --git a/moretrains/moretrains_basic/depends.txt b/moretrains/moretrains_basic/depends.txt deleted file mode 100755 index 733ed78..0000000 --- a/moretrains/moretrains_basic/depends.txt +++ /dev/null @@ -1,4 +0,0 @@ -advtrains -advtrains_train_track -intllib? -moreores? diff --git a/moretrains/moretrains_basic/init.lua b/moretrains/moretrains_basic/init.lua deleted file mode 100644 index aebae4d..0000000 --- a/moretrains/moretrains_basic/init.lua +++ /dev/null @@ -1,300 +0,0 @@ -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("moretrains_railroad_car", { - mesh="moretrains_railroad_car.b3d", - textures = {"moretrains_railroad_car.png"}, - drives_on={default=true}, - max_speed=20, - seats = { - { - name="1", - attach_offset={x=-4, y=-2, z=8}, - view_offset={x=0, y=-2, z=0}, - group="pass", - }, - { - name="2", - attach_offset={x=4, y=-2, z=8}, - view_offset={x=0, y=-2, z=0}, - group="pass", - }, - { - name="1a", - attach_offset={x=-4, y=-2, z=0}, - view_offset={x=0, y=-2, z=0}, - group="pass", - }, - { - name="2a", - attach_offset={x=4, y=-2, z=0}, - view_offset={x=0, y=-2, z=0}, - group="pass", - }, - { - name="3", - attach_offset={x=-4, y=-2, z=-8}, - view_offset={x=0, y=-2, z=0}, - group="pass", - }, - { - name="4", - attach_offset={x=4, y=8, z=-8}, - view_offset={x=0, y=-2, z=0}, - group="pass", - }, - }, - seat_groups = { - pass={ - name = "Passenger area", - access_to = {}, - require_doors_open=true, - }, - }, - doors={ - open={ - [-1]={frames={x=0, y=10}, time=1}, - [1]={frames={x=20, y=30}, time=1} - }, - close={ - [-1]={frames={x=10, y=20}, time=1}, - [1]={frames={x=30, y=40}, time=1} - } - }, - door_entry={-1.7}, - assign_to_seat_group = {"pass"}, - visual_size = {x=1, y=1}, - wagon_span=2.94, - collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0}, - drops={"default:steelblock"}, -}, S("Railroad Car"), "moretrains_railroad_car_inv.png") - -advtrains.register_wagon("moretrains_silberling", { - mesh="moretrains_silberling.b3d", - textures = {"moretrains_silberling.png"}, - drives_on={default=true}, - max_speed=20, - seats = { - { - name="1", - attach_offset={x=-4, y=-2, z=8}, - view_offset={x=0, y=-2, z=0}, - group="pass", - }, - { - name="2", - attach_offset={x=4, y=-2, z=8}, - view_offset={x=0, y=-2, z=0}, - group="pass", - }, - { - name="1a", - attach_offset={x=-4, y=-2, z=0}, - view_offset={x=0, y=-2, z=0}, - group="pass", - }, - { - name="2a", - attach_offset={x=4, y=-2, z=0}, - view_offset={x=0, y=-2, z=0}, - group="pass", - }, - { - name="3", - attach_offset={x=-4, y=-2, z=-8}, - view_offset={x=0, y=-2, z=0}, - group="pass", - }, - { - name="4", - attach_offset={x=4, y=8, z=-8}, - view_offset={x=0, y=-2, z=0}, - group="pass", - }, - }, - seat_groups = { - pass={ - name = "Passenger area", - access_to = {}, - require_doors_open=true, - }, - }, - doors={ - open={ - [-1]={frames={x=20, y=30}, time=1}, - [1]={frames={x=0, y=10}, time=1} - }, - close={ - [-1]={frames={x=30, y=40}, time=1}, - [1]={frames={x=10, y=20}, time=1} - } - }, - door_entry={-1.7}, - assign_to_seat_group = {"pass"}, - visual_size = {x=1, y=1}, - wagon_span=3, - collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0}, - drops={"default:steelblock"}, -}, S("MT Silberling Wagon"), "moretrains_silberling_inv.png") - -advtrains.register_wagon("moretrains_diesel_german", { - mesh="moretrains_diesel_german.b3d", - textures = {"moretrains_diesel_german.png"}, - drives_on={default=true}, - max_speed=20, - seats = { - { - name=S("Driver Stand (right)"), - attach_offset={x=1, y=1.4, z=-7.2}, - view_offset={x=2, y=3.1, z=-8}, - driving_ctrl_access=true, - group = "dstand", - }, - - }, - seat_groups = { - dstand={ - name = "Driver Stand", - access_to = {}, - driving_ctrl_access = true, - }, - }, - assign_to_seat_group = {"dstand"}, - visual_size = {x=1, y=1}, - wagon_span=2.8, - is_locomotive=true, - collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0}, - drops={"default:steelblock 4"}, - horn_sound = "advtrains_industrial_horn", -}, S("Old German Diesel"), "moretrains_diesel_german_inv.png") - -advtrains.register_wagon("moretrains_silberling_train", { - mesh="moretrains_silberling_train.b3d", - textures = {"moretrains_silberling_train.png"}, - drives_on={default=true}, - max_speed=20, - seats = { - { - name=S("Driver stand"), - attach_offset={x=0, y=-0.4, z=21}, - view_offset={x=10.4, y=9, z=0}, - group="dstand", - }, - { - name="1", - attach_offset={x=-4, y=-2, z=8}, - view_offset={x=0, y=-2, z=0}, - group="pass", - }, - { - name="2", - attach_offset={x=4, y=-2, z=8}, - view_offset={x=0, y=-2, z=0}, - group="pass", - }, - { - name="1a", - attach_offset={x=-4, y=-2, z=0}, - view_offset={x=0, y=-2, z=0}, - group="pass", - }, - { - name="2a", - attach_offset={x=4, y=-2, z=0}, - view_offset={x=0, y=-2, z=0}, - group="pass", - }, - { - name="3", - attach_offset={x=-4, y=-2, z=-8}, - view_offset={x=0, y=-2, z=0}, - group="pass", - }, - { - name="4", - attach_offset={x=4, y=8, z=-8}, - view_offset={x=0, y=-2, z=0}, - group="pass", - }, - }, - seat_groups = { - dstand={ - name = "Driver Stand", - access_to = {"pass"}, - 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=10}, time=1}, - [1]={frames={x=20, y=30}, time=1} - }, - close={ - [-1]={frames={x=10, y=20}, time=1}, - [1]={frames={x=30, y=40}, time=1} - } - }, - assign_to_seat_group = {"dstand"}, - visual_size = {x=1, y=1}, - wagon_span=3, - is_locomotive=false, - collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0}, - drops={"default:steelblock 4"}, - horn_sound = "advtrains_industrial_horn", -}, S("MT Silberling Cab Car"), "moretrains_silberling_train_inv.png") - - -minetest.register_craft({ - output = 'advtrains:moretrains_diesel_german', - recipe = { - {'default:glass', 'dye:red', ''}, - {'default:steelblock', 'advtrains:driver_cab', 'default:steelblock'}, - {'advtrains:wheel', 'advtrains:wheel', 'advtrains:wheel'}, - }, -}) - -local block = 'default:steelblock' -local ingot = 'default:steel_ingot' -if minetest.get_modpath("moreores") then - block = 'moreores:silver_block' - ingot = 'moreores:silver_ingot' - -end - -minetest.register_craft({ - output = 'advtrains:moretrains_silberling', - recipe = { - {'default:steelblock', block, 'default:steelblock'}, - {ingot, 'default:glass', ingot}, - {'advtrains:wheel', '', 'advtrains:wheel'}, - }, -}) - -minetest.register_craft({ - output = 'advtrains:moretrains_silberling_train', - recipe = { - {'default:steelblock', block, 'default:steelblock'}, - {block, 'default:glass', ingot}, - {'advtrains:wheel', 'advtrains:wheel', 'advtrains:wheel'}, - }, -}) - -minetest.register_craft({ - output = 'advtrains:moretrains_railroad_car', - recipe = { - {'default:steelblock', 'default:tin_ingot', 'default:steelblock'}, - {'default:steelblock', 'default:glass', 'default:steelblock'}, - {'advtrains:wheel', '', 'advtrains:wheel'}, - }, -}) diff --git a/moretrains/moretrains_basic/models/moretrains_diesel_german.b3d b/moretrains/moretrains_basic/models/moretrains_diesel_german.b3d deleted file mode 100644 index d079c4b..0000000 Binary files a/moretrains/moretrains_basic/models/moretrains_diesel_german.b3d and /dev/null differ diff --git a/moretrains/moretrains_basic/models/moretrains_railroad_car.b3d b/moretrains/moretrains_basic/models/moretrains_railroad_car.b3d deleted file mode 100644 index dce32c0..0000000 Binary files a/moretrains/moretrains_basic/models/moretrains_railroad_car.b3d and /dev/null differ diff --git a/moretrains/moretrains_basic/models/moretrains_silberling.b3d b/moretrains/moretrains_basic/models/moretrains_silberling.b3d deleted file mode 100644 index 57a8406..0000000 Binary files a/moretrains/moretrains_basic/models/moretrains_silberling.b3d and /dev/null differ diff --git a/moretrains/moretrains_basic/models/moretrains_silberling_train.b3d b/moretrains/moretrains_basic/models/moretrains_silberling_train.b3d deleted file mode 100644 index 5724b7e..0000000 Binary files a/moretrains/moretrains_basic/models/moretrains_silberling_train.b3d and /dev/null differ diff --git a/moretrains/moretrains_basic/textures/dev/moretrains_railroad_car.xcf b/moretrains/moretrains_basic/textures/dev/moretrains_railroad_car.xcf deleted file mode 100644 index 0469df2..0000000 Binary files a/moretrains/moretrains_basic/textures/dev/moretrains_railroad_car.xcf and /dev/null differ diff --git a/moretrains/moretrains_basic/textures/dev/moretrains_silberling.xcf b/moretrains/moretrains_basic/textures/dev/moretrains_silberling.xcf deleted file mode 100644 index cf8fd2b..0000000 Binary files a/moretrains/moretrains_basic/textures/dev/moretrains_silberling.xcf and /dev/null differ diff --git a/moretrains/moretrains_basic/textures/dev/moretrains_silberling_train.xcf b/moretrains/moretrains_basic/textures/dev/moretrains_silberling_train.xcf deleted file mode 100644 index f5a4e3b..0000000 Binary files a/moretrains/moretrains_basic/textures/dev/moretrains_silberling_train.xcf and /dev/null differ diff --git a/moretrains/moretrains_basic/textures/moretrains_diesel_german.png b/moretrains/moretrains_basic/textures/moretrains_diesel_german.png deleted file mode 100644 index dc1de6e..0000000 Binary files a/moretrains/moretrains_basic/textures/moretrains_diesel_german.png and /dev/null differ diff --git a/moretrains/moretrains_basic/textures/moretrains_diesel_german_inv.png b/moretrains/moretrains_basic/textures/moretrains_diesel_german_inv.png deleted file mode 100644 index 97c29b4..0000000 Binary files a/moretrains/moretrains_basic/textures/moretrains_diesel_german_inv.png and /dev/null differ diff --git a/moretrains/moretrains_basic/textures/moretrains_railroad_car.png b/moretrains/moretrains_basic/textures/moretrains_railroad_car.png deleted file mode 100644 index 39e4b3f..0000000 Binary files a/moretrains/moretrains_basic/textures/moretrains_railroad_car.png and /dev/null differ diff --git a/moretrains/moretrains_basic/textures/moretrains_railroad_car_inv.png b/moretrains/moretrains_basic/textures/moretrains_railroad_car_inv.png deleted file mode 100644 index d0d2f63..0000000 Binary files a/moretrains/moretrains_basic/textures/moretrains_railroad_car_inv.png and /dev/null differ diff --git a/moretrains/moretrains_basic/textures/moretrains_silberling.png b/moretrains/moretrains_basic/textures/moretrains_silberling.png deleted file mode 100644 index f5d216f..0000000 Binary files a/moretrains/moretrains_basic/textures/moretrains_silberling.png and /dev/null differ diff --git a/moretrains/moretrains_basic/textures/moretrains_silberling_inv.png b/moretrains/moretrains_basic/textures/moretrains_silberling_inv.png deleted file mode 100644 index 6b1510a..0000000 Binary files a/moretrains/moretrains_basic/textures/moretrains_silberling_inv.png and /dev/null differ diff --git a/moretrains/moretrains_basic/textures/moretrains_silberling_train.png b/moretrains/moretrains_basic/textures/moretrains_silberling_train.png deleted file mode 100644 index 0374841..0000000 Binary files a/moretrains/moretrains_basic/textures/moretrains_silberling_train.png and /dev/null differ diff --git a/moretrains/moretrains_basic/textures/moretrains_silberling_train_inv.png b/moretrains/moretrains_basic/textures/moretrains_silberling_train_inv.png deleted file mode 100644 index 131c71a..0000000 Binary files a/moretrains/moretrains_basic/textures/moretrains_silberling_train_inv.png and /dev/null differ diff --git a/moretrains/moretrains_basic/textures/moretrains_unknown_engine_inv.png b/moretrains/moretrains_basic/textures/moretrains_unknown_engine_inv.png deleted file mode 100644 index a308957..0000000 Binary files a/moretrains/moretrains_basic/textures/moretrains_unknown_engine_inv.png and /dev/null differ diff --git a/moretrains/moretrains_basic/textures/moretrains_unknown_wagon_inv.png b/moretrains/moretrains_basic/textures/moretrains_unknown_wagon_inv.png deleted file mode 100644 index 8196d8b..0000000 Binary files a/moretrains/moretrains_basic/textures/moretrains_unknown_wagon_inv.png and /dev/null differ diff --git a/moretrains/moretrains_gondola/blend/moretrains_wagon_gondola.blend b/moretrains/moretrains_gondola/blend/moretrains_wagon_gondola.blend deleted file mode 100644 index 4342003..0000000 Binary files a/moretrains/moretrains_gondola/blend/moretrains_wagon_gondola.blend and /dev/null differ diff --git a/moretrains/moretrains_gondola/blend/moretrains_wagon_gondola_mese.blend b/moretrains/moretrains_gondola/blend/moretrains_wagon_gondola_mese.blend deleted file mode 100644 index cc113b9..0000000 Binary files a/moretrains/moretrains_gondola/blend/moretrains_wagon_gondola_mese.blend and /dev/null differ diff --git a/moretrains/moretrains_gondola/blend/moretrains_wagon_gondola_rails.blend b/moretrains/moretrains_gondola/blend/moretrains_wagon_gondola_rails.blend deleted file mode 100644 index dcd1d9f..0000000 Binary files a/moretrains/moretrains_gondola/blend/moretrains_wagon_gondola_rails.blend and /dev/null differ diff --git a/moretrains/moretrains_gondola/blend/moretrains_wagon_gondola_toiletpaper.blend b/moretrains/moretrains_gondola/blend/moretrains_wagon_gondola_toiletpaper.blend deleted file mode 100644 index 3cea1a3..0000000 Binary files a/moretrains/moretrains_gondola/blend/moretrains_wagon_gondola_toiletpaper.blend and /dev/null differ diff --git a/moretrains/moretrains_gondola/depends.txt b/moretrains/moretrains_gondola/depends.txt deleted file mode 100755 index f3443eb..0000000 --- a/moretrains/moretrains_gondola/depends.txt +++ /dev/null @@ -1,2 +0,0 @@ -advtrains -intllib? diff --git a/moretrains/moretrains_gondola/init.lua b/moretrains/moretrains_gondola/init.lua deleted file mode 100644 index 91c9522..0000000 --- a/moretrains/moretrains_gondola/init.lua +++ /dev/null @@ -1,154 +0,0 @@ -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("moretrains_wagon_gondola", { - mesh="moretrains_gondola.b3d", - textures = {"moretrains_wagon_gondola.png"}, - seats = {}, - drives_on={default=true}, - max_speed=20, - visual_size = {x=1, y=1}, - wagon_span=2.784, - collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0}, - drops={"default:steelblock"}, - has_inventory = true, - get_inventory_formspec = function(self, pname, invname) - return "size[8,11]".. - "list["..invname..";box;0,0;8,3;]".. - "list[current_player;main;0,5;8,4;]".. - "listring[]" - end, - inventory_list_sizes = { - box=8*3, - }, -}, S("Gondola wagon (empty)"), "moretrains_wagon_gondola_inv.png") - - -advtrains.register_wagon("moretrains_wagon_gondola_mese", { - mesh="moretrains_gondola_mese.b3d", - textures = {"moretrains_wagon_gondola.png"}, - seats = {}, - drives_on={default=true}, - max_speed=20, - visual_size = {x=1, y=1}, - wagon_span=2.784, - collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0}, - drops={"default:steelblock"}, - has_inventory = true, - get_inventory_formspec = function(self, pname, invname) - return "size[8,11]".. - "list["..invname..";box;0,0;8,3;]".. - "list[current_player;main;0,5;8,4;]".. - "listring[]" - end, - inventory_list_sizes = { - box=8*3, - }, -}, S("Gondola wagon with mese"), "moretrains_wagon_gondola_mese_inv.png") - -advtrains.register_wagon("moretrains_wagon_gondola_cobble", { - mesh="moretrains_gondola_mese.b3d", - textures = {"moretrains_wagon_gondola_cobble.png"}, - seats = {}, - drives_on={default=true}, - max_speed=20, - visual_size = {x=1, y=1}, - wagon_span=2.784, - collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0}, - drops={"default:steelblock"}, - has_inventory = true, - get_inventory_formspec = function(self, pname, invname) - return "size[8,11]".. - "list["..invname..";box;0,0;8,3;]".. - "list[current_player;main;0,5;8,4;]".. - "listring[]" - end, - inventory_list_sizes = { - box=8*3, - }, -}, S("Gondola wagon with cobble stone"), "moretrains_wagon_gondola_cobble_inv.png") - -advtrains.register_wagon("moretrains_wagon_gondola_toiletpaper", { - mesh="moretrains_gondola_toiletpaper.b3d", - textures = {"moretrains_wagon_gondola.png"}, - seats = {}, - drives_on={default=true}, - max_speed=20, - visual_size = {x=1, y=1}, - wagon_span=2.784, - collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0}, - drops={"default:steelblock"}, - has_inventory = true, - get_inventory_formspec = function(self, pname, invname) - return "size[8,11]".. - "list["..invname..";box;0,0;8,3;]".. - "list[current_player;main;0,5;8,4;]".. - "listring[]" - end, - inventory_list_sizes = { - box=8*3, - }, -}, S("Gondola wagon with toilet paper"), "moretrains_wagon_gondola_toiletpaper_inv.png") - -advtrains.register_wagon("moretrains_wagon_gondola_rails", { - mesh="moretrains_gondola_rails.b3d", - textures = {"moretrains_wagon_gondola.png"}, - seats = {}, - drives_on={default=true}, - max_speed=20, - visual_size = {x=1, y=1}, - wagon_span=2.784, - collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0}, - drops={"default:steelblock"}, - has_inventory = true, - get_inventory_formspec = function(self, pname, invname) - return "size[8,11]".. - "list["..invname..";box;0,0;8,3;]".. - "list[current_player;main;0,5;8,4;]".. - "listring[]" - end, - inventory_list_sizes = { - box=8*3, - }, -}, S("Gondola wagon with rails"), "moretrains_wagon_gondola_rails_inv.png") - - -minetest.register_craft({ - output = 'advtrains:moretrains_wagon_gondola', - recipe = { - {'group:wood', 'default:chest', 'group:wood'}, - {'advtrains:wheel', '', 'advtrains:wheel'}, - }, -}) - -minetest.register_craft({ - output = "advtrains:moretrains_wagon_gondola_mese", - type = "shapeless", - recipe = {"advtrains:moretrains_wagon_gondola", "default:mese", "default:mese"}, -}) - -minetest.register_craft({ - output = 'advtrains:moretrains_wagon_gondola_toiletpaper', - recipe = { - {'default:paper', 'default:paper', 'default:paper'}, - {'default:paper', 'advtrains:moretrains_wagon_gondola', 'default:paper'}, - {'default:paper', 'default:paper', 'default:paper'}, - }, -}) - -minetest.register_craft({ - output = "advtrains:moretrains_wagon_gondola_cobble", - type = "shapeless", - recipe = {"advtrains:moretrains_wagon_gondola", "default:cobble", "default:cobble"}, -}) - -minetest.register_craft({ - output = "advtrains:moretrains_wagon_gondola_rails", - type = "shapeless", - recipe = {"advtrains:moretrains_wagon_gondola", "advtrains:dtrack_placer", "advtrains:dtrack_placer"}, -}) \ No newline at end of file diff --git a/moretrains/moretrains_gondola/models/moretrains_gondola.b3d b/moretrains/moretrains_gondola/models/moretrains_gondola.b3d deleted file mode 100644 index 027fb6e..0000000 Binary files a/moretrains/moretrains_gondola/models/moretrains_gondola.b3d and /dev/null differ diff --git a/moretrains/moretrains_gondola/models/moretrains_gondola_mese.b3d b/moretrains/moretrains_gondola/models/moretrains_gondola_mese.b3d deleted file mode 100644 index c549832..0000000 Binary files a/moretrains/moretrains_gondola/models/moretrains_gondola_mese.b3d and /dev/null differ diff --git a/moretrains/moretrains_gondola/models/moretrains_gondola_rails.b3d b/moretrains/moretrains_gondola/models/moretrains_gondola_rails.b3d deleted file mode 100644 index 586a079..0000000 Binary files a/moretrains/moretrains_gondola/models/moretrains_gondola_rails.b3d and /dev/null differ diff --git a/moretrains/moretrains_gondola/models/moretrains_gondola_toiletpaper.b3d b/moretrains/moretrains_gondola/models/moretrains_gondola_toiletpaper.b3d deleted file mode 100644 index 1844b59..0000000 Binary files a/moretrains/moretrains_gondola/models/moretrains_gondola_toiletpaper.b3d and /dev/null differ diff --git a/moretrains/moretrains_gondola/textures/dev/moretrains_wagon_gondola.xcf b/moretrains/moretrains_gondola/textures/dev/moretrains_wagon_gondola.xcf deleted file mode 100644 index 5242f4d..0000000 Binary files a/moretrains/moretrains_gondola/textures/dev/moretrains_wagon_gondola.xcf and /dev/null differ diff --git a/moretrains/moretrains_gondola/textures/moretrains_wagon_gondola.png b/moretrains/moretrains_gondola/textures/moretrains_wagon_gondola.png deleted file mode 100644 index c70b66c..0000000 Binary files a/moretrains/moretrains_gondola/textures/moretrains_wagon_gondola.png and /dev/null differ diff --git a/moretrains/moretrains_gondola/textures/moretrains_wagon_gondola_cobble.png b/moretrains/moretrains_gondola/textures/moretrains_wagon_gondola_cobble.png deleted file mode 100644 index 766a27e..0000000 Binary files a/moretrains/moretrains_gondola/textures/moretrains_wagon_gondola_cobble.png and /dev/null differ diff --git a/moretrains/moretrains_gondola/textures/moretrains_wagon_gondola_cobble_inv.png b/moretrains/moretrains_gondola/textures/moretrains_wagon_gondola_cobble_inv.png deleted file mode 100644 index f0e1132..0000000 Binary files a/moretrains/moretrains_gondola/textures/moretrains_wagon_gondola_cobble_inv.png and /dev/null differ diff --git a/moretrains/moretrains_gondola/textures/moretrains_wagon_gondola_inv.png b/moretrains/moretrains_gondola/textures/moretrains_wagon_gondola_inv.png deleted file mode 100644 index 6e6a98d..0000000 Binary files a/moretrains/moretrains_gondola/textures/moretrains_wagon_gondola_inv.png and /dev/null differ diff --git a/moretrains/moretrains_gondola/textures/moretrains_wagon_gondola_mese_inv.png b/moretrains/moretrains_gondola/textures/moretrains_wagon_gondola_mese_inv.png deleted file mode 100644 index d64cdab..0000000 Binary files a/moretrains/moretrains_gondola/textures/moretrains_wagon_gondola_mese_inv.png and /dev/null differ diff --git a/moretrains/moretrains_gondola/textures/moretrains_wagon_gondola_rails_inv.png b/moretrains/moretrains_gondola/textures/moretrains_wagon_gondola_rails_inv.png deleted file mode 100644 index 07b8df6..0000000 Binary files a/moretrains/moretrains_gondola/textures/moretrains_wagon_gondola_rails_inv.png and /dev/null differ diff --git a/moretrains/moretrains_gondola/textures/moretrains_wagon_gondola_toiletpaper_inv.png b/moretrains/moretrains_gondola/textures/moretrains_wagon_gondola_toiletpaper_inv.png deleted file mode 100644 index a0093c9..0000000 Binary files a/moretrains/moretrains_gondola/textures/moretrains_wagon_gondola_toiletpaper_inv.png and /dev/null differ diff --git a/moretrains/moretrains_industrial/blend/legacy/industrial_wagons_dev.blend b/moretrains/moretrains_industrial/blend/legacy/industrial_wagons_dev.blend deleted file mode 100644 index 1685983..0000000 Binary files a/moretrains/moretrains_industrial/blend/legacy/industrial_wagons_dev.blend and /dev/null differ diff --git a/moretrains/moretrains_industrial/blend/moretrains_wagon_box.blend b/moretrains/moretrains_industrial/blend/moretrains_wagon_box.blend deleted file mode 100644 index 13e1cf8..0000000 Binary files a/moretrains/moretrains_industrial/blend/moretrains_wagon_box.blend and /dev/null differ diff --git a/moretrains/moretrains_industrial/blend/moretrains_wagon_tank.blend b/moretrains/moretrains_industrial/blend/moretrains_wagon_tank.blend deleted file mode 100644 index 524b9af..0000000 Binary files a/moretrains/moretrains_industrial/blend/moretrains_wagon_tank.blend and /dev/null differ diff --git a/moretrains/moretrains_industrial/blend/moretrains_wagon_wood.blend b/moretrains/moretrains_industrial/blend/moretrains_wagon_wood.blend deleted file mode 100644 index 40e0b44..0000000 Binary files a/moretrains/moretrains_industrial/blend/moretrains_wagon_wood.blend and /dev/null differ diff --git a/moretrains/moretrains_industrial/blend/moretrains_wagon_wood_loaded.blend b/moretrains/moretrains_industrial/blend/moretrains_wagon_wood_loaded.blend deleted file mode 100644 index 476d4ff..0000000 Binary files a/moretrains/moretrains_industrial/blend/moretrains_wagon_wood_loaded.blend and /dev/null differ diff --git a/moretrains/moretrains_industrial/depends.txt b/moretrains/moretrains_industrial/depends.txt deleted file mode 100755 index f3443eb..0000000 --- a/moretrains/moretrains_industrial/depends.txt +++ /dev/null @@ -1,2 +0,0 @@ -advtrains -intllib? diff --git a/moretrains/moretrains_industrial/init.lua b/moretrains/moretrains_industrial/init.lua deleted file mode 100644 index 9fdd8ea..0000000 --- a/moretrains/moretrains_industrial/init.lua +++ /dev/null @@ -1,290 +0,0 @@ -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("moretrains_wagon_tank", { - mesh="moretrains_wagon_tank.b3d", - textures = {"moretrains_wagon_tank.png"}, - seats = {}, - drives_on={default=true}, - max_speed=20, - visual_size = {x=1, y=1}, - wagon_span=2.719, - collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0}, - drops={"default:steelblock 2"}, - has_inventory = true, - get_inventory_formspec = function(self, pname, invname) - return "size[8,11]".. - "list["..invname..";box;0,0;8,3;]".. - "list[current_player;main;0,5;8,4;]".. - "listring[]" - end, - inventory_list_sizes = { - box=8*3, - }, -}, S("Industrial tank wagon (silver)"), "moretrains_wagon_tank_inv.png") - -advtrains.register_wagon("moretrains_wagon_tank2", { - mesh="moretrains_wagon_tank.b3d", - textures = {"moretrains_wagon_tank2.png"}, - seats = {}, - drives_on={default=true}, - max_speed=20, - visual_size = {x=1, y=1}, - wagon_span=2.719, - collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0}, - drops={"default:steelblock 2"}, - has_inventory = true, - get_inventory_formspec = function(self, pname, invname) - return "size[8,11]".. - "list["..invname..";box;0,0;8,3;]".. - "list[current_player;main;0,5;8,4;]".. - "listring[]" - end, - inventory_list_sizes = { - box=8*3, - }, -}, S("Industrial tank wagon (blue)"), "moretrains_wagon_tank2_inv.png") - - -advtrains.register_wagon("moretrains_wagon_wood", { - mesh="moretrains_wagon_wood.b3d", - textures = {"moretrains_wagon_wood.png"}, - seats = {}, - drives_on={default=true}, - max_speed=20, - visual_size = {x=1, y=1}, - wagon_span=2.784, - collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0}, - drops={"default:steelblock"}, - has_inventory = true, - get_inventory_formspec = function(self, pname, invname) - return "size[8,11]".. - "list["..invname..";box;0,0;8,3;]".. - "list[current_player;main;0,5;8,4;]".. - "listring[]" - end, - inventory_list_sizes = { - box=8*3, - }, -}, S("Industrial wood wagon (empty)"), "moretrains_wagon_wood_inv.png") - -advtrains.register_wagon("moretrains_wagon_wood_loaded", { - mesh="moretrains_wagon_wood_loaded.b3d", - textures = {"moretrains_wagon_wood.png"}, - seats = {}, - drives_on={default=true}, - max_speed=20, - visual_size = {x=1, y=1}, - wagon_span=2.784, - collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0}, - drops={"default:steelblock"}, - has_inventory = true, - get_inventory_formspec = function(self, pname, invname) - return "size[8,11]".. - "list["..invname..";box;0,0;8,3;]".. - "list[current_player;main;0,5;8,4;]".. - "listring[]" - end, - inventory_list_sizes = { - box=8*3, - }, -}, S("Industrial wood wagon (default tree)"), "moretrains_wagon_wood_loaded_inv.png") - -advtrains.register_wagon("moretrains_wagon_wood_acacia", { - mesh="moretrains_wagon_wood_loaded.b3d", - textures = {"moretrains_wagon_wood_acacia.png"}, - seats = {}, - drives_on={default=true}, - max_speed=20, - visual_size = {x=1, y=1}, - wagon_span=2.784, - collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0}, - drops={"default:steelblock"}, - has_inventory = true, - get_inventory_formspec = function(self, pname, invname) - return "size[8,11]".. - "list["..invname..";box;0,0;8,3;]".. - "list[current_player;main;0,5;8,4;]".. - "listring[]" - end, - inventory_list_sizes = { - box=8*3, - }, -}, S("Industrial wood wagon (acacia)"), "moretrains_wagon_wood_acacia_inv.png") - -advtrains.register_wagon("moretrains_wagon_wood_jungle", { - mesh="moretrains_wagon_wood_loaded.b3d", - textures = {"moretrains_wagon_wood_jungle.png"}, - seats = {}, - drives_on={default=true}, - max_speed=20, - visual_size = {x=1, y=1}, - wagon_span=2.784, - collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0}, - drops={"default:steelblock"}, - has_inventory = true, - get_inventory_formspec = function(self, pname, invname) - return "size[8,11]".. - "list["..invname..";box;0,0;8,3;]".. - "list[current_player;main;0,5;8,4;]".. - "listring[]" - end, - inventory_list_sizes = { - box=8*3, - }, -}, S("Industrial wood wagon (jungle)"), "moretrains_wagon_wood_jungle_inv.png") - -advtrains.register_wagon("moretrains_wagon_wood_pine", { - mesh="moretrains_wagon_wood_loaded.b3d", - textures = {"moretrains_wagon_wood_pine.png"}, - seats = {}, - drives_on={default=true}, - max_speed=20, - visual_size = {x=1, y=1}, - wagon_span=2.784, - collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0}, - drops={"default:steelblock"}, - has_inventory = true, - get_inventory_formspec = function(self, pname, invname) - return "size[8,11]".. - "list["..invname..";box;0,0;8,3;]".. - "list[current_player;main;0,5;8,4;]".. - "listring[]" - end, - inventory_list_sizes = { - box=8*3, - }, -}, S("Industrial wood wagon (pine)"), "moretrains_wagon_wood_pine_inv.png") - -advtrains.register_wagon("moretrains_wagon_wood_aspen", { - mesh="moretrains_wagon_wood_loaded.b3d", - textures = {"moretrains_wagon_wood_aspen.png"}, - seats = {}, - drives_on={default=true}, - max_speed=20, - visual_size = {x=1, y=1}, - wagon_span=2.784, - collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0}, - drops={"default:steelblock"}, - has_inventory = true, - get_inventory_formspec = function(self, pname, invname) - return "size[8,11]".. - "list["..invname..";box;0,0;8,3;]".. - "list[current_player;main;0,5;8,4;]".. - "listring[]" - end, - inventory_list_sizes = { - box=8*3, - }, -}, S("Industrial wood wagon (aspen)"), "moretrains_wagon_wood_aspen_inv.png") - - - -advtrains.register_wagon("moretrains_wagon_box", { - mesh="moretrains_wagon_box.b3d", - textures = {"moretrains_wagon_box.png"}, - seats = {}, - drives_on={default=true}, - max_speed=20, - visual_size = {x=1, y=1}, - wagon_span=2.672, - collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0}, - drops={"default:steelblock"}, - has_inventory = true, - get_inventory_formspec = function(self, pname, invname) - return "size[8,11]".. - "list["..invname..";box;0,0;8,3;]".. - "list[current_player;main;0,5;8,4;]".. - "listring[]" - end, - inventory_list_sizes = { - box=8*3, - }, -}, S("Box wagon"), "moretrains_wagon_box_inv.png") - -minetest.register_craft({ - output = 'advtrains:moretrains_wagon_wood', - recipe = { - {'default:stick', 'default:stick', 'default:stick'}, - {'group:wood', 'default:chest', 'group:wood'}, - {'advtrains:wheel', '', 'advtrains:wheel'}, - }, -}) - -minetest.register_craft({ - output = "advtrains:moretrains_wagon_wood_loaded", - type = "shapeless", - recipe = {"advtrains:moretrains_wagon_wood", "default:tree", "default:tree"}, -}) - -minetest.register_craft({ - output = "advtrains:moretrains_wagon_wood_aspen", - type = "shapeless", - recipe = {"advtrains:moretrains_wagon_wood", "default:aspen_tree", "default:aspen_tree"}, -}) - -minetest.register_craft({ - output = "advtrains:moretrains_wagon_wood_jungle", - type = "shapeless", - recipe = {"advtrains:moretrains_wagon_wood", "default:jungletree", "default:jungletree"}, -}) - -minetest.register_craft({ - output = "advtrains:moretrains_wagon_wood_pine", - type = "shapeless", - recipe = {"advtrains:moretrains_wagon_wood", "default:pine_tree", "default:pine_tree"}, -}) - -minetest.register_craft({ - output = "advtrains:moretrains_wagon_wood_acacia", - type = "shapeless", - recipe = {"advtrains:moretrains_wagon_wood", "default:acacia_tree", "default:acacia_tree"}, -}) - -minetest.register_craftitem("moretrains_industrial:item_tank", { - description = S("tank (for tankwagon)"), - inventory_image = "moretrains_item_tank.png" -}) - -minetest.register_craft({ - output = "moretrains_industrial:item_tank", - recipe = { - {"default:steel_ingot", "default:steel_ingot", "default:steel_ingot"}, - {"default:steel_ingot", "bucket:bucket_empty", "default:steel_ingot"}, - {"default:steel_ingot", "default:steel_ingot", "default:steel_ingot"}, - }, -}) - -minetest.register_craft({ - output = 'advtrains:moretrains_wagon_tank', - recipe = { - {'', '', ''}, - {'default:steel_ingot', 'moretrains_industrial:item_tank', 'default:steel_ingot'}, - {'advtrains:wheel', '', 'advtrains:wheel'}, - }, -}) - -minetest.register_craft({ - output = 'advtrains:moretrains_wagon_tank2', - recipe = { - {'', 'dye:blue', ''}, - {'default:steel_ingot', 'moretrains_industrial:item_tank', 'default:steel_ingot'}, - {'advtrains:wheel', '', 'advtrains:wheel'}, - }, -}) - -minetest.register_craft({ - output = 'advtrains:moretrains_wagon_box', - recipe = { - {'default:copper_ingot', 'default:copper_ingot', 'default:copper_ingot'}, - {'default:junglewood', 'default:chest', 'default:junglewood'}, - {'advtrains:wheel', '', 'advtrains:wheel'}, - }, -}) - - - diff --git a/moretrains/moretrains_industrial/models/moretrains_wagon_box.b3d b/moretrains/moretrains_industrial/models/moretrains_wagon_box.b3d deleted file mode 100644 index f66ccbf..0000000 Binary files a/moretrains/moretrains_industrial/models/moretrains_wagon_box.b3d and /dev/null differ diff --git a/moretrains/moretrains_industrial/models/moretrains_wagon_tank.b3d b/moretrains/moretrains_industrial/models/moretrains_wagon_tank.b3d deleted file mode 100644 index 2923674..0000000 Binary files a/moretrains/moretrains_industrial/models/moretrains_wagon_tank.b3d and /dev/null differ diff --git a/moretrains/moretrains_industrial/models/moretrains_wagon_wood.b3d b/moretrains/moretrains_industrial/models/moretrains_wagon_wood.b3d deleted file mode 100644 index 2e4e9ea..0000000 Binary files a/moretrains/moretrains_industrial/models/moretrains_wagon_wood.b3d and /dev/null differ diff --git a/moretrains/moretrains_industrial/models/moretrains_wagon_wood_loaded.b3d b/moretrains/moretrains_industrial/models/moretrains_wagon_wood_loaded.b3d deleted file mode 100644 index 5d665a5..0000000 Binary files a/moretrains/moretrains_industrial/models/moretrains_wagon_wood_loaded.b3d and /dev/null differ diff --git a/moretrains/moretrains_industrial/textures/dev/moretrains_wagon_box.xcf b/moretrains/moretrains_industrial/textures/dev/moretrains_wagon_box.xcf deleted file mode 100644 index 0f6242d..0000000 Binary files a/moretrains/moretrains_industrial/textures/dev/moretrains_wagon_box.xcf and /dev/null differ diff --git a/moretrains/moretrains_industrial/textures/dev/moretrains_wagon_box_v2.xcf b/moretrains/moretrains_industrial/textures/dev/moretrains_wagon_box_v2.xcf deleted file mode 100644 index fa0087a..0000000 Binary files a/moretrains/moretrains_industrial/textures/dev/moretrains_wagon_box_v2.xcf and /dev/null differ diff --git a/moretrains/moretrains_industrial/textures/dev/moretrains_wagon_tank.xcf b/moretrains/moretrains_industrial/textures/dev/moretrains_wagon_tank.xcf deleted file mode 100644 index 44decb1..0000000 Binary files a/moretrains/moretrains_industrial/textures/dev/moretrains_wagon_tank.xcf and /dev/null differ diff --git a/moretrains/moretrains_industrial/textures/dev/moretrains_wagon_tank2.xcf b/moretrains/moretrains_industrial/textures/dev/moretrains_wagon_tank2.xcf deleted file mode 100644 index 701793b..0000000 Binary files a/moretrains/moretrains_industrial/textures/dev/moretrains_wagon_tank2.xcf and /dev/null differ diff --git a/moretrains/moretrains_industrial/textures/moretrains_item_tank.png b/moretrains/moretrains_industrial/textures/moretrains_item_tank.png deleted file mode 100644 index 0ea4e09..0000000 Binary files a/moretrains/moretrains_industrial/textures/moretrains_item_tank.png and /dev/null differ diff --git a/moretrains/moretrains_industrial/textures/moretrains_wagon_box.png b/moretrains/moretrains_industrial/textures/moretrains_wagon_box.png deleted file mode 100644 index ecc890c..0000000 Binary files a/moretrains/moretrains_industrial/textures/moretrains_wagon_box.png and /dev/null differ diff --git a/moretrains/moretrains_industrial/textures/moretrains_wagon_box_inv.png b/moretrains/moretrains_industrial/textures/moretrains_wagon_box_inv.png deleted file mode 100644 index 33eaf7e..0000000 Binary files a/moretrains/moretrains_industrial/textures/moretrains_wagon_box_inv.png and /dev/null differ diff --git a/moretrains/moretrains_industrial/textures/moretrains_wagon_tank.png b/moretrains/moretrains_industrial/textures/moretrains_wagon_tank.png deleted file mode 100644 index aab6131..0000000 Binary files a/moretrains/moretrains_industrial/textures/moretrains_wagon_tank.png and /dev/null differ diff --git a/moretrains/moretrains_industrial/textures/moretrains_wagon_tank2.png b/moretrains/moretrains_industrial/textures/moretrains_wagon_tank2.png deleted file mode 100644 index aa8a0f4..0000000 Binary files a/moretrains/moretrains_industrial/textures/moretrains_wagon_tank2.png and /dev/null differ diff --git a/moretrains/moretrains_industrial/textures/moretrains_wagon_tank2_inv.png b/moretrains/moretrains_industrial/textures/moretrains_wagon_tank2_inv.png deleted file mode 100644 index 34561ef..0000000 Binary files a/moretrains/moretrains_industrial/textures/moretrains_wagon_tank2_inv.png and /dev/null differ diff --git a/moretrains/moretrains_industrial/textures/moretrains_wagon_tank_inv.png b/moretrains/moretrains_industrial/textures/moretrains_wagon_tank_inv.png deleted file mode 100644 index e23e221..0000000 Binary files a/moretrains/moretrains_industrial/textures/moretrains_wagon_tank_inv.png and /dev/null differ diff --git a/moretrains/moretrains_industrial/textures/moretrains_wagon_wood.png b/moretrains/moretrains_industrial/textures/moretrains_wagon_wood.png deleted file mode 100644 index 99ef3be..0000000 Binary files a/moretrains/moretrains_industrial/textures/moretrains_wagon_wood.png and /dev/null differ diff --git a/moretrains/moretrains_industrial/textures/moretrains_wagon_wood_acacia.png b/moretrains/moretrains_industrial/textures/moretrains_wagon_wood_acacia.png deleted file mode 100644 index 1454c89..0000000 Binary files a/moretrains/moretrains_industrial/textures/moretrains_wagon_wood_acacia.png and /dev/null differ diff --git a/moretrains/moretrains_industrial/textures/moretrains_wagon_wood_acacia_inv.png b/moretrains/moretrains_industrial/textures/moretrains_wagon_wood_acacia_inv.png deleted file mode 100644 index bc6f375..0000000 Binary files a/moretrains/moretrains_industrial/textures/moretrains_wagon_wood_acacia_inv.png and /dev/null differ diff --git a/moretrains/moretrains_industrial/textures/moretrains_wagon_wood_aspen.png b/moretrains/moretrains_industrial/textures/moretrains_wagon_wood_aspen.png deleted file mode 100644 index 5b57f7c..0000000 Binary files a/moretrains/moretrains_industrial/textures/moretrains_wagon_wood_aspen.png and /dev/null differ diff --git a/moretrains/moretrains_industrial/textures/moretrains_wagon_wood_aspen_inv.png b/moretrains/moretrains_industrial/textures/moretrains_wagon_wood_aspen_inv.png deleted file mode 100644 index 8acb80d..0000000 Binary files a/moretrains/moretrains_industrial/textures/moretrains_wagon_wood_aspen_inv.png and /dev/null differ diff --git a/moretrains/moretrains_industrial/textures/moretrains_wagon_wood_inv.png b/moretrains/moretrains_industrial/textures/moretrains_wagon_wood_inv.png deleted file mode 100644 index 4138505..0000000 Binary files a/moretrains/moretrains_industrial/textures/moretrains_wagon_wood_inv.png and /dev/null differ diff --git a/moretrains/moretrains_industrial/textures/moretrains_wagon_wood_jungle.png b/moretrains/moretrains_industrial/textures/moretrains_wagon_wood_jungle.png deleted file mode 100644 index 3367502..0000000 Binary files a/moretrains/moretrains_industrial/textures/moretrains_wagon_wood_jungle.png and /dev/null differ diff --git a/moretrains/moretrains_industrial/textures/moretrains_wagon_wood_jungle_inv.png b/moretrains/moretrains_industrial/textures/moretrains_wagon_wood_jungle_inv.png deleted file mode 100644 index 36ff60e..0000000 Binary files a/moretrains/moretrains_industrial/textures/moretrains_wagon_wood_jungle_inv.png and /dev/null differ diff --git a/moretrains/moretrains_industrial/textures/moretrains_wagon_wood_loaded_inv.png b/moretrains/moretrains_industrial/textures/moretrains_wagon_wood_loaded_inv.png deleted file mode 100644 index c34d611..0000000 Binary files a/moretrains/moretrains_industrial/textures/moretrains_wagon_wood_loaded_inv.png and /dev/null differ diff --git a/moretrains/moretrains_industrial/textures/moretrains_wagon_wood_pine.png b/moretrains/moretrains_industrial/textures/moretrains_wagon_wood_pine.png deleted file mode 100644 index 5d49aa7..0000000 Binary files a/moretrains/moretrains_industrial/textures/moretrains_wagon_wood_pine.png and /dev/null differ diff --git a/moretrains/moretrains_industrial/textures/moretrains_wagon_wood_pine_inv.png b/moretrains/moretrains_industrial/textures/moretrains_wagon_wood_pine_inv.png deleted file mode 100644 index 379b19b..0000000 Binary files a/moretrains/moretrains_industrial/textures/moretrains_wagon_wood_pine_inv.png and /dev/null differ diff --git a/moretrains/moretrains_japan/blend/legacy/moretrains_japan_bullet_train.blend b/moretrains/moretrains_japan/blend/legacy/moretrains_japan_bullet_train.blend deleted file mode 100644 index a91142e..0000000 Binary files a/moretrains/moretrains_japan/blend/legacy/moretrains_japan_bullet_train.blend and /dev/null differ diff --git a/moretrains/moretrains_japan/blend/moretrains_japan_bullet_engine.blend b/moretrains/moretrains_japan/blend/moretrains_japan_bullet_engine.blend deleted file mode 100644 index 19049f1..0000000 Binary files a/moretrains/moretrains_japan/blend/moretrains_japan_bullet_engine.blend and /dev/null differ diff --git a/moretrains/moretrains_japan/blend/moretrains_japan_bullet_wagon.blend b/moretrains/moretrains_japan/blend/moretrains_japan_bullet_wagon.blend deleted file mode 100644 index e3ee2bd..0000000 Binary files a/moretrains/moretrains_japan/blend/moretrains_japan_bullet_wagon.blend and /dev/null differ diff --git a/moretrains/moretrains_japan/depends.txt b/moretrains/moretrains_japan/depends.txt deleted file mode 100755 index 0492ba2..0000000 --- a/moretrains/moretrains_japan/depends.txt +++ /dev/null @@ -1,3 +0,0 @@ -advtrains -advtrains_train_track -intllib? diff --git a/moretrains/moretrains_japan/init.lua b/moretrains/moretrains_japan/init.lua deleted file mode 100644 index a661c63..0000000 --- a/moretrains/moretrains_japan/init.lua +++ /dev/null @@ -1,163 +0,0 @@ -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("moretrains_engine_japan", { - mesh="moretrains_japan_bullet_engine.b3d", - textures = {"moretrains_engine_japan.png"}, - drives_on={default=true}, - max_speed=20, - seats = { - { - name=S("Driver stand"), - attach_offset={x=1, y=1, z=0}, - view_offset={x=0, y=1.5, z=0}, - group="dstand", - }, - { - name="1", - attach_offset={x=-4, y=-2, z=-16}, - view_offset={x=0, y=1.5, z=0}, - group="pass", - }, - { - name="2", - attach_offset={x=4, y=-2, z=-16}, - view_offset={x=0, y=1.5, z=0}, - group="pass", - }, - { - name="3", - attach_offset={x=-4, y=-2, z=-8}, - view_offset={x=0, y=1.5, z=0}, - group="pass", - }, - { - name="4", - attach_offset={x=4, y=-2, z=-8}, - view_offset={x=0, y=1.5, 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=10}, time=1}, - [1]={frames={x=20, y=30}, time=1} - }, - close={ - [-1]={frames={x=10, y=20}, time=1}, - [1]={frames={x=30, y=40}, time=1} - } - }, - door_entry={-1.7}, - visual_size = {x=1, y=1}, - wagon_span=3.1, - is_locomotive=true, - collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0}, - drops={"default:steelblock"}, - horn_sound = "moretrains_japan_horn", -}, S("Japanese Train Engine (moretrains)"), "moretrains_engine_japan_inv.png") - -advtrains.register_wagon("moretrains_wagon_japan", { - mesh="moretrains_japan_bullet_wagon.b3d", - textures = {"moretrains_wagon_japan.png"}, - drives_on={default=true}, - max_speed=20, - seats = { - { - name="1", - attach_offset={x=-4, y=-2, z=8}, - view_offset={x=0, y=-2, z=0}, - group="pass", - }, - { - name="2", - attach_offset={x=4, y=-2, z=8}, - view_offset={x=0, y=-2, z=0}, - group="pass", - }, - { - name="1a", - attach_offset={x=-4, y=-2, z=0}, - view_offset={x=0, y=-2, z=0}, - group="pass", - }, - { - name="2a", - attach_offset={x=4, y=-2, z=0}, - view_offset={x=0, y=-2, z=0}, - group="pass", - }, - { - name="3", - attach_offset={x=-4, y=-2, z=-8}, - view_offset={x=0, y=-2, z=0}, - group="pass", - }, - { - name="4", - attach_offset={x=4, y=8, z=-8}, - view_offset={x=0, y=-2, 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=10}, time=1}, - [1]={frames={x=20, y=30}, time=1} - }, - close={ - [-1]={frames={x=10, y=20}, time=1}, - [1]={frames={x=30, y=40}, time=1} - } - }, - door_entry={-1.7, 1.7}, - visual_size = {x=1, y=1}, - wagon_span=2.96, - collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0}, - drops={"default:steelblock"}, -}, S("Japanese Train Wagon (moretrains)"), "moretrains_wagon_japan_inv.png") - -minetest.register_craft({ - output = 'advtrains:moretrains_wagon_japan', - recipe = { - {'default:steelblock', 'default:steel_ingot', 'default:steelblock'}, - {'default:glass', 'dye:green', 'default:glass'}, - {'advtrains:wheel', '', 'advtrains:wheel'}, - }, -}) - -minetest.register_craft({ - output = 'advtrains:moretrains_engine_japan', - recipe = { - {'default:steelblock', 'default:steelblock', ''}, - {'default:glass', 'dye:green', 'default:glass'}, - {'advtrains:wheel', 'advtrains:wheel', 'advtrains:wheel'}, - }, -}) - diff --git a/moretrains/moretrains_japan/models/moretrains_japan_bullet_engine.b3d b/moretrains/moretrains_japan/models/moretrains_japan_bullet_engine.b3d deleted file mode 100644 index 33f4ca3..0000000 Binary files a/moretrains/moretrains_japan/models/moretrains_japan_bullet_engine.b3d and /dev/null differ diff --git a/moretrains/moretrains_japan/models/moretrains_japan_bullet_wagon.b3d b/moretrains/moretrains_japan/models/moretrains_japan_bullet_wagon.b3d deleted file mode 100644 index ea14c5d..0000000 Binary files a/moretrains/moretrains_japan/models/moretrains_japan_bullet_wagon.b3d and /dev/null differ diff --git a/moretrains/moretrains_japan/sounds/moretrains_japan_horn.ogg b/moretrains/moretrains_japan/sounds/moretrains_japan_horn.ogg deleted file mode 100755 index f7ddb14..0000000 Binary files a/moretrains/moretrains_japan/sounds/moretrains_japan_horn.ogg and /dev/null differ diff --git a/moretrains/moretrains_japan/textures/dev/engine_mask_.png b/moretrains/moretrains_japan/textures/dev/engine_mask_.png deleted file mode 100644 index a67393f..0000000 Binary files a/moretrains/moretrains_japan/textures/dev/engine_mask_.png and /dev/null differ diff --git a/moretrains/moretrains_japan/textures/dev/moretrains_engine_japan.xcf b/moretrains/moretrains_japan/textures/dev/moretrains_engine_japan.xcf deleted file mode 100644 index 66324e9..0000000 Binary files a/moretrains/moretrains_japan/textures/dev/moretrains_engine_japan.xcf and /dev/null differ diff --git a/moretrains/moretrains_japan/textures/dev/moretrains_engine_japan_in_.png b/moretrains/moretrains_japan/textures/dev/moretrains_engine_japan_in_.png deleted file mode 100644 index a4433ae..0000000 Binary files a/moretrains/moretrains_japan/textures/dev/moretrains_engine_japan_in_.png and /dev/null differ diff --git a/moretrains/moretrains_japan/textures/dev/moretrains_engine_japan_out_.png b/moretrains/moretrains_japan/textures/dev/moretrains_engine_japan_out_.png deleted file mode 100644 index da6bf5b..0000000 Binary files a/moretrains/moretrains_japan/textures/dev/moretrains_engine_japan_out_.png and /dev/null differ diff --git a/moretrains/moretrains_japan/textures/dev/moretrains_wagon_japan.xcf b/moretrains/moretrains_japan/textures/dev/moretrains_wagon_japan.xcf deleted file mode 100644 index 10934fb..0000000 Binary files a/moretrains/moretrains_japan/textures/dev/moretrains_wagon_japan.xcf and /dev/null differ diff --git a/moretrains/moretrains_japan/textures/dev/moretrains_wagon_japan_in_.png b/moretrains/moretrains_japan/textures/dev/moretrains_wagon_japan_in_.png deleted file mode 100644 index e31cd76..0000000 Binary files a/moretrains/moretrains_japan/textures/dev/moretrains_wagon_japan_in_.png and /dev/null differ diff --git a/moretrains/moretrains_japan/textures/dev/moretrains_wagon_japan_out_.png b/moretrains/moretrains_japan/textures/dev/moretrains_wagon_japan_out_.png deleted file mode 100644 index f7dfa94..0000000 Binary files a/moretrains/moretrains_japan/textures/dev/moretrains_wagon_japan_out_.png and /dev/null differ diff --git a/moretrains/moretrains_japan/textures/dev/wagon_mask_.png b/moretrains/moretrains_japan/textures/dev/wagon_mask_.png deleted file mode 100644 index 2485d9c..0000000 Binary files a/moretrains/moretrains_japan/textures/dev/wagon_mask_.png and /dev/null differ diff --git a/moretrains/moretrains_japan/textures/moretrains_engine_japan.png b/moretrains/moretrains_japan/textures/moretrains_engine_japan.png deleted file mode 100755 index 68d42bd..0000000 Binary files a/moretrains/moretrains_japan/textures/moretrains_engine_japan.png and /dev/null differ diff --git a/moretrains/moretrains_japan/textures/moretrains_engine_japan_inv.png b/moretrains/moretrains_japan/textures/moretrains_engine_japan_inv.png deleted file mode 100755 index e39ad5d..0000000 Binary files a/moretrains/moretrains_japan/textures/moretrains_engine_japan_inv.png and /dev/null differ diff --git a/moretrains/moretrains_japan/textures/moretrains_wagon_japan.png b/moretrains/moretrains_japan/textures/moretrains_wagon_japan.png deleted file mode 100755 index fd4c86b..0000000 Binary files a/moretrains/moretrains_japan/textures/moretrains_wagon_japan.png and /dev/null differ diff --git a/moretrains/moretrains_japan/textures/moretrains_wagon_japan_inv.png b/moretrains/moretrains_japan/textures/moretrains_wagon_japan_inv.png deleted file mode 100755 index 635272e..0000000 Binary files a/moretrains/moretrains_japan/textures/moretrains_wagon_japan_inv.png and /dev/null differ diff --git a/moretrains/moretrains_steam/blend/legacy/steam_train.blend b/moretrains/moretrains_steam/blend/legacy/steam_train.blend deleted file mode 100644 index 9b49955..0000000 Binary files a/moretrains/moretrains_steam/blend/legacy/steam_train.blend and /dev/null differ diff --git a/moretrains/moretrains_steam/blend/steam_train_anim.blend b/moretrains/moretrains_steam/blend/steam_train_anim.blend deleted file mode 100644 index 1cf9ac8..0000000 Binary files a/moretrains/moretrains_steam/blend/steam_train_anim.blend and /dev/null differ diff --git a/moretrains/moretrains_steam/blend/steam_train_tender.blend b/moretrains/moretrains_steam/blend/steam_train_tender.blend deleted file mode 100644 index c9acf3e..0000000 Binary files a/moretrains/moretrains_steam/blend/steam_train_tender.blend and /dev/null differ diff --git a/moretrains/moretrains_steam/depends.txt b/moretrains/moretrains_steam/depends.txt deleted file mode 100755 index 1fb6665..0000000 --- a/moretrains/moretrains_steam/depends.txt +++ /dev/null @@ -1,2 +0,0 @@ -advtrains -intllib? \ No newline at end of file diff --git a/moretrains/moretrains_steam/init.lua b/moretrains/moretrains_steam/init.lua deleted file mode 100644 index 91a8e76..0000000 --- a/moretrains/moretrains_steam/init.lua +++ /dev/null @@ -1,135 +0,0 @@ -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 - --- length of the steam engine loop sound -local SND_LOOP_LEN = 5 - -advtrains.register_wagon("moretrains_steam_train", { - mesh="moretrains_steam_train.b3d", - textures = {"moretrains_steam_train.png"}, - is_locomotive=true, - drives_on={default=true}, - max_speed=11, - seats = { - { - name=S("Driver Stand (left)"), - attach_offset={x=-5, y=3, z=-16}, - view_offset={x=0, y=7, z=0}, - group = "dstand", - }, - { - name=S("Driver Stand (right)"), - attach_offset={x=5, y=3, z=-16}, - view_offset={x=0, y=7, z=0}, - group = "dstand", - }, - }, - seat_groups = { - dstand={ - name = "Driver Stand", - driving_ctrl_access=true, - access_to = {}, - }, - }, - assign_to_seat_group = {"dstand"}, - visual_size = {x=1, y=1}, - wagon_span=2.587, - collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0}, - custom_on_velocity_change=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)*22, 0, true) - self.old_anim_velocity=advtrains.abs_ceil(velocity) - end - end, - custom_on_step=function(self, dtime) - if self:train().velocity > 0 then -- First make sure that the train isn't standing - if not self.sound_loop_tmr or self.sound_loop_tmr <= 0 then - -- start the sound if it was never started or has expired - self.sound_loop_handle = minetest.sound_play({name="advtrains_steam_loop", gain=2}, {object=self.object}) - self.sound_loop_tmr = SND_LOOP_LEN - end - --decrease the sound timer - self.sound_loop_tmr = self.sound_loop_tmr - dtime - else - -- If the train is standing, the sound will be stopped in some time. We do not need to interfere with it. - self.sound_loop_tmr = nil - 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.32, z=2.08}, - maxpos = {x=0, y=2.4, z=2.03}, - 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 = 5, - -- ^ 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={"default:steelblock 1"}, - horn_sound = "advtrains_steam_whistle", -}, S("Steam Train #1"), "moretrains_steam_train_inv.png") - -advtrains.register_wagon("moretrains_tender", { - mesh="moretrains_steam_tender.b3d", - textures = {"moretrains_steam_tender.png"}, - drives_on={default=true}, - max_speed=30, - seats = {}, - visual_size = {x=1, y=1}, - wagon_span=1.667, - collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0}, - drops={"default:steelblock 1"}, - has_inventory = true, - get_inventory_formspec = function(self, pname, invname) - return "size[8,11]".. - "list["..invname..";box;0,0;8,3;]".. - "list[current_player;main;0,5;8,4;]".. - "listring[]" - end, - inventory_list_sizes = { - box=1*8, - }, -}, S("Tender #1"), "moretrains_steam_tender_inv.png") - - - -minetest.register_craft({ - output = 'advtrains:moretrains_steam_train', - recipe = { - {'', '', 'advtrains:chimney'}, - {'advtrains:driver_cab', 'dye:blue', 'advtrains:boiler'}, - {'advtrains:wheel', 'advtrains:wheel', 'advtrains:wheel'}, - }, -}) - -minetest.register_craft({ - output = 'advtrains:moretrains_tender', - recipe = { - {'default:steel_ingot', 'default:coalblock', 'default:steel_ingot'}, - {'default:steel_ingot', 'default:steel_ingot', 'default:steel_ingot'}, - {'advtrains:wheel', '', 'advtrains:wheel'}, - }, -}) - - diff --git a/moretrains/moretrains_steam/models/moretrains_steam_tender.b3d b/moretrains/moretrains_steam/models/moretrains_steam_tender.b3d deleted file mode 100644 index 9a61f3e..0000000 Binary files a/moretrains/moretrains_steam/models/moretrains_steam_tender.b3d and /dev/null differ diff --git a/moretrains/moretrains_steam/models/moretrains_steam_train.b3d b/moretrains/moretrains_steam/models/moretrains_steam_train.b3d deleted file mode 100644 index c7d249b..0000000 Binary files a/moretrains/moretrains_steam/models/moretrains_steam_train.b3d and /dev/null differ diff --git a/moretrains/moretrains_steam/textures/dev/moretrains_steam_tender.xcf b/moretrains/moretrains_steam/textures/dev/moretrains_steam_tender.xcf deleted file mode 100644 index b81521b..0000000 Binary files a/moretrains/moretrains_steam/textures/dev/moretrains_steam_tender.xcf and /dev/null differ diff --git a/moretrains/moretrains_steam/textures/dev/moretrains_steam_train.xcf b/moretrains/moretrains_steam/textures/dev/moretrains_steam_train.xcf deleted file mode 100644 index 4e521d3..0000000 Binary files a/moretrains/moretrains_steam/textures/dev/moretrains_steam_train.xcf and /dev/null differ diff --git a/moretrains/moretrains_steam/textures/moretrains_steam_tender.png b/moretrains/moretrains_steam/textures/moretrains_steam_tender.png deleted file mode 100644 index 6f83120..0000000 Binary files a/moretrains/moretrains_steam/textures/moretrains_steam_tender.png and /dev/null differ diff --git a/moretrains/moretrains_steam/textures/moretrains_steam_tender_inv.png b/moretrains/moretrains_steam/textures/moretrains_steam_tender_inv.png deleted file mode 100644 index 90bb83b..0000000 Binary files a/moretrains/moretrains_steam/textures/moretrains_steam_tender_inv.png and /dev/null differ diff --git a/moretrains/moretrains_steam/textures/moretrains_steam_train.png b/moretrains/moretrains_steam/textures/moretrains_steam_train.png deleted file mode 100644 index d626762..0000000 Binary files a/moretrains/moretrains_steam/textures/moretrains_steam_train.png and /dev/null differ diff --git a/moretrains/moretrains_steam/textures/moretrains_steam_train_inv.png b/moretrains/moretrains_steam/textures/moretrains_steam_train_inv.png deleted file mode 100644 index 1150591..0000000 Binary files a/moretrains/moretrains_steam/textures/moretrains_steam_train_inv.png and /dev/null differ diff --git a/moretrains/moretrains_vintage/blend/dev/moretrains_draisine.blend b/moretrains/moretrains_vintage/blend/dev/moretrains_draisine.blend deleted file mode 100644 index 8b25acc..0000000 Binary files a/moretrains/moretrains_vintage/blend/dev/moretrains_draisine.blend and /dev/null differ diff --git a/moretrains/moretrains_vintage/blend/moretrains_draisine_anim.blend b/moretrains/moretrains_vintage/blend/moretrains_draisine_anim.blend deleted file mode 100644 index d43173b..0000000 Binary files a/moretrains/moretrains_vintage/blend/moretrains_draisine_anim.blend and /dev/null differ diff --git a/moretrains/moretrains_vintage/blend/moretrains_minecart.blend b/moretrains/moretrains_vintage/blend/moretrains_minecart.blend deleted file mode 100644 index 72c5cac..0000000 Binary files a/moretrains/moretrains_vintage/blend/moretrains_minecart.blend and /dev/null differ diff --git a/moretrains/moretrains_vintage/blend/moretrains_minecart_engine.blend b/moretrains/moretrains_vintage/blend/moretrains_minecart_engine.blend deleted file mode 100644 index c3318dc..0000000 Binary files a/moretrains/moretrains_vintage/blend/moretrains_minecart_engine.blend and /dev/null differ diff --git a/moretrains/moretrains_vintage/blend/moretrains_minecart_loaded.blend b/moretrains/moretrains_vintage/blend/moretrains_minecart_loaded.blend deleted file mode 100644 index a7c312f..0000000 Binary files a/moretrains/moretrains_vintage/blend/moretrains_minecart_loaded.blend and /dev/null differ diff --git a/moretrains/moretrains_vintage/depends.txt b/moretrains/moretrains_vintage/depends.txt deleted file mode 100755 index f3443eb..0000000 --- a/moretrains/moretrains_vintage/depends.txt +++ /dev/null @@ -1,2 +0,0 @@ -advtrains -intllib? diff --git a/moretrains/moretrains_vintage/init.lua b/moretrains/moretrains_vintage/init.lua deleted file mode 100644 index 7f981f5..0000000 --- a/moretrains/moretrains_vintage/init.lua +++ /dev/null @@ -1,207 +0,0 @@ -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("moretrains_draisine", { - mesh="moretrains_draisine.b3d", - textures = {"moretrains_vintage.png"}, - drives_on={default=true}, - max_speed=3, - seats = { - { - name=S("Driver stand"), - attach_offset={x=0, y=1, z=-8.7}, - view_offset={x=0, y=1.5, z=-1}, - group="dstand", - }, - { - name="1", - attach_offset={x=0, y=1, z=8.7}, - view_offset={x=0, y=1.5, z=1}, - 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"}, - visual_size = {x=1, y=1}, - wagon_span=1.12, - is_locomotive=true, - collisionbox = {-0.8,-0.5,-0.7, 0.8,2,0.7}, - custom_on_velocity_change=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)*14, 0, true) - self.old_anim_velocity=advtrains.abs_ceil(velocity) - end - end, - drops={"default:wood"}, -}, S("Draisine"), "moretrains_draisine_inv.png") - - -advtrains.register_wagon("moretrains_minecart", { - mesh="moretrains_minecart.b3d", - textures = {"moretrains_vintage.png"}, - drives_on={default=true}, - max_speed=6, - seats = {}, - visual_size = {x=1, y=1}, - wagon_span=1.06, - collisionbox = {-0.8,-0.5,-0.7, 0.8,2,0.7}, - drops={"default:wood"}, - has_inventory = true, - get_inventory_formspec = function(self, pname, invname) - return "size[8,11]".. - "list["..invname..";box;0,0;8,3;]".. - "list[current_player;main;0,5;8,4;]".. - "listring[]" - end, - inventory_list_sizes = { - box=1*4, - }, -}, S("Minecart"), "moretrains_minecart_inv.png") - -advtrains.register_wagon("moretrains_minecart_loaded", { - mesh="moretrains_minecart_loaded.b3d", - textures = {"moretrains_vintage.png"}, - drives_on={default=true}, - max_speed=6, - seats = {}, - visual_size = {x=1, y=1}, - wagon_span=1.06, - collisionbox = {-0.8,-0.5,-0.7, 0.8,2,0.7}, - drops={"default:wood"}, - has_inventory = true, - get_inventory_formspec = function(self, pname, invname) - return "size[8,11]".. - "list["..invname..";box;0,0;8,3;]".. - "list[current_player;main;0,5;8,4;]".. - "listring[]" - end, - inventory_list_sizes = { - box=1*4, - }, - -}, S("Minecart (loaded)"), "moretrains_minecart_loaded_inv.png") - - -advtrains.register_wagon("moretrains_minecart_engine", { - mesh="moretrains_minecart_engine.b3d", - textures = {"moretrains_vintage.png"}, - drives_on={default=true}, - max_speed=6, - seats = { - { - name=S("Driver stand"), - attach_offset={x=0, y=2, z=5.5}, - view_offset={x=0, y=1.5, z=-1}, - group="dstand", - }, - { - name="1", - attach_offset={x=0, y=2, z=0.5}, - view_offset={x=0, y=1.5, z=1}, - 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"}, - - visual_size = {x=1, y=1}, - wagon_span=1.06, - is_locomotive=true, - collisionbox = {-0.8,-0.5,-0.7, 0.8,2,0.7}, - drops={"default:wood"}, - -}, S("Minecart with Engine"), "moretrains_minecart_engine_inv.png") - -minetest.register_craftitem("moretrains_vintage:item_draisine_lever", { - description = S("lever for draisine"), - inventory_image = "moretrains_item_lever.png" -}) - -minetest.register_craft({ - output = "moretrains_vintage:item_draisine_lever", - recipe = { - {"default:steel_ingot", "default:stick", "default:steel_ingot"}, - {"", "default:stick", ""}, - {"", "default:steel_ingot", ""}, - }, -}) - -minetest.register_craft({ - output = 'advtrains:moretrains_draisine', - recipe = { - {'', 'moretrains_vintage:item_draisine_lever', ''}, - {'group:wood', 'group:wood', 'group:wood'}, - {'advtrains:wheel', '', 'advtrains:wheel'}, - }, -}) - -minetest.register_craft({ - output = 'advtrains:moretrains_minecart', - recipe = { - {'group:wood', '', 'group:wood'}, - {'default:steel_ingot', 'group:wood', 'default:steel_ingot'}, - {'advtrains:wheel', '', 'advtrains:wheel'}, - }, -}) - -minetest.register_craft({ - output = 'advtrains:moretrains_minecart_loaded', - recipe = { - {'group:wood', 'default:coalblock', 'group:wood'}, - {'default:steel_ingot', 'group:wood', 'default:steel_ingot'}, - {'advtrains:wheel', '', 'advtrains:wheel'}, - }, -}) - -minetest.register_craft({ - output = 'advtrains:moretrains_minecart_engine', - recipe = { - {'group:wood', '', 'group:wood'}, - {'default:steel_ingot', 'group:wood', 'default:steel_ingot'}, - {'advtrains:wheel', 'default:steelblock', 'advtrains:wheel'}, - }, -}) - -minetest.register_craft({ - output = "advtrains:moretrains_minecart_loaded", - type = "shapeless", - recipe = {"advtrains:moretrains_minecart", "default:coalblock"}, -}) - -minetest.register_craft({ - output = "advtrains:moretrains_minecart_engine", - type = "shapeless", - recipe = {"advtrains:moretrains_minecart", "default:steelblock"}, -}) - - diff --git a/moretrains/moretrains_vintage/models/moretrains_draisine.b3d b/moretrains/moretrains_vintage/models/moretrains_draisine.b3d deleted file mode 100644 index b2de474..0000000 Binary files a/moretrains/moretrains_vintage/models/moretrains_draisine.b3d and /dev/null differ diff --git a/moretrains/moretrains_vintage/models/moretrains_minecart.b3d b/moretrains/moretrains_vintage/models/moretrains_minecart.b3d deleted file mode 100644 index 1621a2f..0000000 Binary files a/moretrains/moretrains_vintage/models/moretrains_minecart.b3d and /dev/null differ diff --git a/moretrains/moretrains_vintage/models/moretrains_minecart_engine.b3d b/moretrains/moretrains_vintage/models/moretrains_minecart_engine.b3d deleted file mode 100644 index 966c75f..0000000 Binary files a/moretrains/moretrains_vintage/models/moretrains_minecart_engine.b3d and /dev/null differ diff --git a/moretrains/moretrains_vintage/models/moretrains_minecart_loaded.b3d b/moretrains/moretrains_vintage/models/moretrains_minecart_loaded.b3d deleted file mode 100644 index ef2b5d1..0000000 Binary files a/moretrains/moretrains_vintage/models/moretrains_minecart_loaded.b3d and /dev/null differ diff --git a/moretrains/moretrains_vintage/textures/moretrains_draisine_inv.png b/moretrains/moretrains_vintage/textures/moretrains_draisine_inv.png deleted file mode 100755 index 7a5b201..0000000 Binary files a/moretrains/moretrains_vintage/textures/moretrains_draisine_inv.png and /dev/null differ diff --git a/moretrains/moretrains_vintage/textures/moretrains_item_lever.png b/moretrains/moretrains_vintage/textures/moretrains_item_lever.png deleted file mode 100644 index 8b7b40d..0000000 Binary files a/moretrains/moretrains_vintage/textures/moretrains_item_lever.png and /dev/null differ diff --git a/moretrains/moretrains_vintage/textures/moretrains_minecart_engine_inv.png b/moretrains/moretrains_vintage/textures/moretrains_minecart_engine_inv.png deleted file mode 100644 index 12654fd..0000000 Binary files a/moretrains/moretrains_vintage/textures/moretrains_minecart_engine_inv.png and /dev/null differ diff --git a/moretrains/moretrains_vintage/textures/moretrains_minecart_inv.png b/moretrains/moretrains_vintage/textures/moretrains_minecart_inv.png deleted file mode 100755 index 189e973..0000000 Binary files a/moretrains/moretrains_vintage/textures/moretrains_minecart_inv.png and /dev/null differ diff --git a/moretrains/moretrains_vintage/textures/moretrains_minecart_loaded_inv.png b/moretrains/moretrains_vintage/textures/moretrains_minecart_loaded_inv.png deleted file mode 100644 index d9c041e..0000000 Binary files a/moretrains/moretrains_vintage/textures/moretrains_minecart_loaded_inv.png and /dev/null differ diff --git a/moretrains/moretrains_vintage/textures/moretrains_vintage.png b/moretrains/moretrains_vintage/textures/moretrains_vintage.png deleted file mode 100755 index f88fce0..0000000 Binary files a/moretrains/moretrains_vintage/textures/moretrains_vintage.png and /dev/null differ diff --git a/moretrains/moretrains_vintage/textures/moretrains_vintage.xcf b/moretrains/moretrains_vintage/textures/moretrains_vintage.xcf deleted file mode 100644 index f8909e8..0000000 Binary files a/moretrains/moretrains_vintage/textures/moretrains_vintage.xcf and /dev/null differ diff --git a/moretrains/readme.txt b/moretrains/readme.txt deleted file mode 100644 index a1cae0b..0000000 --- a/moretrains/readme.txt +++ /dev/null @@ -1,76 +0,0 @@ -a wip modpack that provides more trains for advtrains - -License of media: CC-BY-SA 3.0 -License of code: LGPL 2.1 - -mod - moretrains_steam: - - moretrains_steam - model: based on https://archive.org/download/dampflock_better/dampflock_better.blend / mbb - texture: own - icon: based on advtrains_engine_steam_inv.png from advtrains / mbb - - - moretrains_steam_tender - model: own - texture: own, uses default_coal_block.png from minetest game (Zeg9) - icon: based on advtrains_engine_steam_inv.png from advtrains / mbb - -mod - moretrains_industrial: - - moretrains_wagon_* - models: own - textures: own - wood wagon loaded variants: - default tree + top, jungle tree texture (Cisoun) - acaciatree + top, pinetree + top, jungletree top (paramat) - aspen + top (sofar) - - icons: based on icons from advtrains - -mod - moretrains_japan: - - models and textures: own - icons: based on icons from advtrains - -mod - moretrains_vintage: - - models: own - texture: own, uses default_coal_block.png from minetest game (Zeg9) - icons: own - -mod - moretrains_basic: - - railroad_car, silberling - - model: own - texture: own - icon: own - - diesel train - model: own - texture: own - icon: based on advtrains_engine_industrial_inv from advtrains / mbb - -mod - moretrains_gondola: - - models and textures: own, except - mese block texture (paramat, CC BY-SA 3.0) - cobble stone texture (Neuromancer, CC BY-SA 3.0) - rail model and texture (from advtrains, CC BY-SA 3.0) - - icons based on box_wagon icon (moretrains_industrial) - - -planned wagons / trains: -hopper car (industrial) -more steam engine types -MOAR diesel trains - ---- -BR 628 -silberling (train part) -BR 143 -BR 218 -etr 521 -etr 1000 \ No newline at end of file diff --git a/some_more_trains/README.md b/some_more_trains/README.md deleted file mode 100644 index 25cc946..0000000 --- a/some_more_trains/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# some_more_trains - -Modpack to add more trains to advtrains diff --git a/some_more_trains/license.txt b/some_more_trains/license.txt deleted file mode 100644 index 88b164d..0000000 --- a/some_more_trains/license.txt +++ /dev/null @@ -1,198 +0,0 @@ -Copyright (C) 2021 Alexsandro Percy (APercy) and contributors - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License as - published by the Free Software Foundation, either version 3 of the - License, or (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Affero General Public License for more details. - -================================= - -GNU AFFERO GENERAL PUBLIC LICENSE - -Version 3, 19 November 2007 - -Copyright © 2007 Free Software Foundation, Inc. -Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. -Preamble - -The GNU Affero General Public License is a free, copyleft license for software and other kinds of works, specifically designed to ensure cooperation with the community in the case of network server software. - -The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, our General Public Licenses are intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. - -When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. - -Developers that use our General Public Licenses protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License which gives you legal permission to copy, distribute and/or modify the software. - -A secondary benefit of defending all users' freedom is that improvements made in alternate versions of the program, if they receive widespread use, become available for other developers to incorporate. Many developers of free software are heartened and encouraged by the resulting cooperation. However, in the case of software used on network servers, this result may fail to come about. The GNU General Public License permits making a modified version and letting the public access it on a server without ever releasing its source code to the public. - -The GNU Affero General Public License is designed specifically to ensure that, in such cases, the modified source code becomes available to the community. It requires the operator of a network server to provide the source code of the modified version running there to the users of that server. Therefore, public use of a modified version, on a publicly accessible server, gives the public access to the source code of the modified version. - -An older license, called the Affero General Public License and published by Affero, was designed to accomplish similar goals. This is a different license, not a version of the Affero GPL, but Affero has released a new version of the Affero GPL which permits relicensing under this license. - -The precise terms and conditions for copying, distribution and modification follow. -TERMS AND CONDITIONS -0. Definitions. - -"This License" refers to version 3 of the GNU Affero General Public License. - -"Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. - -"The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. - -To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. - -A "covered work" means either the unmodified Program or a work based on the Program. - -To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. - -To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. - -An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. -1. Source Code. - -The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. - -A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. - -The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. - -The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. - -The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. - -The Corresponding Source for a work in source code form is that same work. -2. Basic Permissions. - -All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. - -You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. - -Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. -3. Protecting Users' Legal Rights From Anti-Circumvention Law. - -No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. - -When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. -4. Conveying Verbatim Copies. - -You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. - -You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. -5. Conveying Modified Source Versions. - -You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: - - a) The work must carry prominent notices stating that you modified it, and giving a relevant date. - b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". - c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. - d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. - -A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. -6. Conveying Non-Source Forms. - -You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: - - a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. - b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. - c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. - d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. - e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. - -A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. - -A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. - -"Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. - -If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). - -The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. - -Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. -7. Additional Terms. - -"Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. - -When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. - -Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: - - a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or - b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or - c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or - d) Limiting the use for publicity purposes of names of licensors or authors of the material; or - e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or - f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. - -All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. - -If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. - -Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. -8. Termination. - -You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). - -However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. - -Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. - -Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. -9. Acceptance Not Required for Having Copies. - -You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. -10. Automatic Licensing of Downstream Recipients. - -Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. - -An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. - -You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. -11. Patents. - -A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". - -A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. - -Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. - -In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. - -If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. - -If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. - -A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. - -Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. -12. No Surrender of Others' Freedom. - -If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. -13. Remote Network Interaction; Use with the GNU General Public License. - -Notwithstanding any other provision of this License, if you modify the Program, your modified version must prominently offer all users interacting with it remotely through a computer network (if your version supports such interaction) an opportunity to receive the Corresponding Source of your version by providing access to the Corresponding Source from a network server at no charge, through some standard or customary means of facilitating copying of software. This Corresponding Source shall include the Corresponding Source for any work covered by version 3 of the GNU General Public License that is incorporated pursuant to the following paragraph. - -Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the work with which it is combined will remain governed by version 3 of the GNU General Public License. -14. Revised Versions of this License. - -The Free Software Foundation may publish revised and/or new versions of the GNU Affero General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. - -Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU Affero General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU Affero General Public License, you may choose any version ever published by the Free Software Foundation. - -If the Program specifies that a proxy can decide which future versions of the GNU Affero General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. - -Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. -15. Disclaimer of Warranty. - -THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. -16. Limitation of Liability. - -IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. -17. Interpretation of Sections 15 and 16. - -If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. diff --git a/some_more_trains/license_media.txt b/some_more_trains/license_media.txt deleted file mode 100644 index 888cf00..0000000 --- a/some_more_trains/license_media.txt +++ /dev/null @@ -1,68 +0,0 @@ -THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. - -BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. - -1. Definitions - - "Adaptation" means a work based upon the Work, or upon the Work and other pre-existing works, such as a translation, adaptation, derivative work, arrangement of music or other alterations of a literary or artistic work, or phonogram or performance and includes cinematographic adaptations or any other form in which the Work may be recast, transformed, or adapted including in any form recognizably derived from the original, except that a work that constitutes a Collection will not be considered an Adaptation for the purpose of this License. For the avoidance of doubt, where the Work is a musical work, performance or phonogram, the synchronization of the Work in timed-relation with a moving image ("synching") will be considered an Adaptation for the purpose of this License. - "Collection" means a collection of literary or artistic works, such as encyclopedias and anthologies, or performances, phonograms or broadcasts, or other works or subject matter other than works listed in Section 1(f) below, which, by reason of the selection and arrangement of their contents, constitute intellectual creations, in which the Work is included in its entirety in unmodified form along with one or more other contributions, each constituting separate and independent works in themselves, which together are assembled into a collective whole. A work that constitutes a Collection will not be considered an Adaptation (as defined below) for the purposes of this License. - "Creative Commons Compatible License" means a license that is listed at https://creativecommons.org/compatiblelicenses that has been approved by Creative Commons as being essentially equivalent to this License, including, at a minimum, because that license: (i) contains terms that have the same purpose, meaning and effect as the License Elements of this License; and, (ii) explicitly permits the relicensing of adaptations of works made available under that license under this License or a Creative Commons jurisdiction license with the same License Elements as this License. - "Distribute" means to make available to the public the original and copies of the Work or Adaptation, as appropriate, through sale or other transfer of ownership. - "License Elements" means the following high-level license attributes as selected by Licensor and indicated in the title of this License: Attribution, ShareAlike. - "Licensor" means the individual, individuals, entity or entities that offer(s) the Work under the terms of this License. - "Original Author" means, in the case of a literary or artistic work, the individual, individuals, entity or entities who created the Work or if no individual or entity can be identified, the publisher; and in addition (i) in the case of a performance the actors, singers, musicians, dancers, and other persons who act, sing, deliver, declaim, play in, interpret or otherwise perform literary or artistic works or expressions of folklore; (ii) in the case of a phonogram the producer being the person or legal entity who first fixes the sounds of a performance or other sounds; and, (iii) in the case of broadcasts, the organization that transmits the broadcast. - "Work" means the literary and/or artistic work offered under the terms of this License including without limitation any production in the literary, scientific and artistic domain, whatever may be the mode or form of its expression including digital form, such as a book, pamphlet and other writing; a lecture, address, sermon or other work of the same nature; a dramatic or dramatico-musical work; a choreographic work or entertainment in dumb show; a musical composition with or without words; a cinematographic work to which are assimilated works expressed by a process analogous to cinematography; a work of drawing, painting, architecture, sculpture, engraving or lithography; a photographic work to which are assimilated works expressed by a process analogous to photography; a work of applied art; an illustration, map, plan, sketch or three-dimensional work relative to geography, topography, architecture or science; a performance; a broadcast; a phonogram; a compilation of data to the extent it is protected as a copyrightable work; or a work performed by a variety or circus performer to the extent it is not otherwise considered a literary or artistic work. - "You" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation. - "Publicly Perform" means to perform public recitations of the Work and to communicate to the public those public recitations, by any means or process, including by wire or wireless means or public digital performances; to make available to the public Works in such a way that members of the public may access these Works from a place and at a place individually chosen by them; to perform the Work to the public by any means or process and the communication to the public of the performances of the Work, including by public digital performance; to broadcast and rebroadcast the Work by any means including signs, sounds or images. - "Reproduce" means to make copies of the Work by any means including without limitation by sound or visual recordings and the right of fixation and reproducing fixations of the Work, including storage of a protected performance or phonogram in digital form or other electronic medium. - -2. Fair Dealing Rights. Nothing in this License is intended to reduce, limit, or restrict any uses free from copyright or rights arising from limitations or exceptions that are provided for in connection with the copyright protection under copyright law or other applicable laws. - -3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: - - to Reproduce the Work, to incorporate the Work into one or more Collections, and to Reproduce the Work as incorporated in the Collections; - to create and Reproduce Adaptations provided that any such Adaptation, including any translation in any medium, takes reasonable steps to clearly label, demarcate or otherwise identify that changes were made to the original Work. For example, a translation could be marked "The original work was translated from English to Spanish," or a modification could indicate "The original work has been modified."; - to Distribute and Publicly Perform the Work including as incorporated in Collections; and, - to Distribute and Publicly Perform Adaptations. - - For the avoidance of doubt: - Non-waivable Compulsory License Schemes. In those jurisdictions in which the right to collect royalties through any statutory or compulsory licensing scheme cannot be waived, the Licensor reserves the exclusive right to collect such royalties for any exercise by You of the rights granted under this License; - Waivable Compulsory License Schemes. In those jurisdictions in which the right to collect royalties through any statutory or compulsory licensing scheme can be waived, the Licensor waives the exclusive right to collect such royalties for any exercise by You of the rights granted under this License; and, - Voluntary License Schemes. The Licensor waives the right to collect royalties, whether individually or, in the event that the Licensor is a member of a collecting society that administers voluntary licensing schemes, via that society, from any exercise by You of the rights granted under this License. - -The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. Subject to Section 8(f), all rights not expressly granted by Licensor are hereby reserved. - -4. Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: - - You may Distribute or Publicly Perform the Work only under the terms of this License. You must include a copy of, or the Uniform Resource Identifier (URI) for, this License with every copy of the Work You Distribute or Publicly Perform. You may not offer or impose any terms on the Work that restrict the terms of this License or the ability of the recipient of the Work to exercise the rights granted to that recipient under the terms of the License. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties with every copy of the Work You Distribute or Publicly Perform. When You Distribute or Publicly Perform the Work, You may not impose any effective technological measures on the Work that restrict the ability of a recipient of the Work from You to exercise the rights granted to that recipient under the terms of the License. This Section 4(a) applies to the Work as incorporated in a Collection, but this does not require the Collection apart from the Work itself to be made subject to the terms of this License. If You create a Collection, upon notice from any Licensor You must, to the extent practicable, remove from the Collection any credit as required by Section 4(c), as requested. If You create an Adaptation, upon notice from any Licensor You must, to the extent practicable, remove from the Adaptation any credit as required by Section 4(c), as requested. - You may Distribute or Publicly Perform an Adaptation only under the terms of: (i) this License; (ii) a later version of this License with the same License Elements as this License; (iii) a Creative Commons jurisdiction license (either this or a later license version) that contains the same License Elements as this License (e.g., Attribution-ShareAlike 3.0 US)); (iv) a Creative Commons Compatible License. If you license the Adaptation under one of the licenses mentioned in (iv), you must comply with the terms of that license. If you license the Adaptation under the terms of any of the licenses mentioned in (i), (ii) or (iii) (the "Applicable License"), you must comply with the terms of the Applicable License generally and the following provisions: (I) You must include a copy of, or the URI for, the Applicable License with every copy of each Adaptation You Distribute or Publicly Perform; (II) You may not offer or impose any terms on the Adaptation that restrict the terms of the Applicable License or the ability of the recipient of the Adaptation to exercise the rights granted to that recipient under the terms of the Applicable License; (III) You must keep intact all notices that refer to the Applicable License and to the disclaimer of warranties with every copy of the Work as included in the Adaptation You Distribute or Publicly Perform; (IV) when You Distribute or Publicly Perform the Adaptation, You may not impose any effective technological measures on the Adaptation that restrict the ability of a recipient of the Adaptation from You to exercise the rights granted to that recipient under the terms of the Applicable License. This Section 4(b) applies to the Adaptation as incorporated in a Collection, but this does not require the Collection apart from the Adaptation itself to be made subject to the terms of the Applicable License. - If You Distribute, or Publicly Perform the Work or any Adaptations or Collections, You must, unless a request has been made pursuant to Section 4(a), keep intact all copyright notices for the Work and provide, reasonable to the medium or means You are utilizing: (i) the name of the Original Author (or pseudonym, if applicable) if supplied, and/or if the Original Author and/or Licensor designate another party or parties (e.g., a sponsor institute, publishing entity, journal) for attribution ("Attribution Parties") in Licensor's copyright notice, terms of service or by other reasonable means, the name of such party or parties; (ii) the title of the Work if supplied; (iii) to the extent reasonably practicable, the URI, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and (iv) , consistent with Ssection 3(b), in the case of an Adaptation, a credit identifying the use of the Work in the Adaptation (e.g., "French translation of the Work by Original Author," or "Screenplay based on original Work by Original Author"). The credit required by this Section 4(c) may be implemented in any reasonable manner; provided, however, that in the case of a Adaptation or Collection, at a minimum such credit will appear, if a credit for all contributing authors of the Adaptation or Collection appears, then as part of these credits and in a manner at least as prominent as the credits for the other contributing authors. For the avoidance of doubt, You may only use the credit required by this Section for the purpose of attribution in the manner set out above and, by exercising Your rights under this License, You may not implicitly or explicitly assert or imply any connection with, sponsorship or endorsement by the Original Author, Licensor and/or Attribution Parties, as appropriate, of You or Your use of the Work, without the separate, express prior written permission of the Original Author, Licensor and/or Attribution Parties. - Except as otherwise agreed in writing by the Licensor or as may be otherwise permitted by applicable law, if You Reproduce, Distribute or Publicly Perform the Work either by itself or as part of any Adaptations or Collections, You must not distort, mutilate, modify or take other derogatory action in relation to the Work which would be prejudicial to the Original Author's honor or reputation. Licensor agrees that in those jurisdictions (e.g. Japan), in which any exercise of the right granted in Section 3(b) of this License (the right to make Adaptations) would be deemed to be a distortion, mutilation, modification or other derogatory action prejudicial to the Original Author's honor and reputation, the Licensor will waive or not assert, as appropriate, this Section, to the fullest extent permitted by the applicable national law, to enable You to reasonably exercise Your right under Section 3(b) of this License (right to make Adaptations) but not otherwise. - -5. Representations, Warranties and Disclaimer - -UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU. - -6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -7. Termination - - This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Adaptations or Collections from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License. - Subject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. - -8. Miscellaneous - - Each time You Distribute or Publicly Perform the Work or a Collection, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License. - Each time You Distribute or Publicly Perform an Adaptation, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License. - If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. - No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. - This License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You. - The rights granted under, and the subject matter referenced, in this License were drafted utilizing the terminology of the Berne Convention for the Protection of Literary and Artistic Works (as amended on September 28, 1979), the Rome Convention of 1961, the WIPO Copyright Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996 and the Universal Copyright Convention (as revised on July 24, 1971). These rights and subject matter take effect in the relevant jurisdiction in which the License terms are sought to be enforced according to the corresponding provisions of the implementation of those treaty provisions in the applicable national law. If the standard suite of rights granted under applicable copyright law includes additional rights not granted under this License, such additional rights are deemed to be included in the License; this License is not intended to restrict the license of any rights under applicable law. - - Creative Commons Notice - - Creative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor. - - Except for the limited purpose of indicating to the public that the Work is licensed under the CCPL, Creative Commons does not authorize the use by either party of the trademark "Creative Commons" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time. For the avoidance of doubt, this trademark restriction does not form part of the License. - - Creative Commons may be contacted at https://creativecommons.org/. diff --git a/some_more_trains/modpack.conf b/some_more_trains/modpack.conf deleted file mode 100644 index 061a2f9..0000000 --- a/some_more_trains/modpack.conf +++ /dev/null @@ -1,5 +0,0 @@ -name=some_more_trains -title=Advtrains Some More Trains -description=Collection of basic trains for the Advanced Trains mod. -author = apercy -release = 0 diff --git a/some_more_trains/somemoretrains_tram/README.md b/some_more_trains/somemoretrains_tram/README.md deleted file mode 100644 index 7febb57..0000000 --- a/some_more_trains/somemoretrains_tram/README.md +++ /dev/null @@ -1,16 +0,0 @@ -Tram - -This mod adds a tram to advtrains, using the sounds and some code adapted from subway - -To set the line number, it's the same way as subway. You have to access the "Driver Stand" position and then -the Onboard Computer. There you set a line number and it will show the number sign at front and back of the tram. - -It have 4 liveries. to set it you have to use "biker paint" from bike mod -To use the blue livery, set biker paint to color #0000FF -to use red, #FF0000 -yellow #FFFF00 -and the default green, #00FF00 - -Its max speed is 8. - -licence see the files diff --git a/some_more_trains/somemoretrains_tram/init.lua b/some_more_trains/somemoretrains_tram/init.lua deleted file mode 100644 index 6591bff..0000000 --- a/some_more_trains/somemoretrains_tram/init.lua +++ /dev/null @@ -1,202 +0,0 @@ -local S = attrans - --- Gets called when an entity is made - will set the right livery that was painted -local function tram_set_textures(self, data) - local new_textures = self.textures - if data.livery then - new_textures[2] = data.livery.painting - new_textures[3] = data.livery.line - end - self.object:set_properties({textures=new_textures}) -end - -local function tram_set_line(self, data, train) - local line = nil - local new_line_tex="somemoretrains_tram_line.png" - self.line_cache=train.line - local lint = train.line - if string.sub(train.line, 1, 1) == "S" then - lint = string.sub(train.line,2) - end - if string.len(lint) == 1 then - if lint=="X" then line="X" end - line = tonumber(lint) - elseif string.len(lint) == 2 then - if tonumber(lint) then - line = lint - end - end - if line then - if type(line)=="number" or line == "X" then - new_line_tex = new_line_tex.."^somemoretrains_tram_line"..line..".png" - else - local num = tonumber(line) - local red = math.fmod(line*67+101, 255) - local green = math.fmod(line*97+109, 255) - local blue = math.fmod(line*73+127, 255) - new_line_tex = new_line_tex..string.format("^(somemoretrains_tram_line.png^[colorize:#%X%X%X%X%X%X)^(somemoretrains_tram_line%s_.png^somemoretrains_tram_line_%s.png", math.floor(red/16), math.fmod(red,16), math.floor(green/16), math.fmod(green,16), math.floor(blue/16), math.fmod(blue,16), string.sub(line, 1, 1), string.sub(line, 2, 2)) - if red + green + blue > 512 then - new_line_tex = new_line_tex .. "^[colorize:#000)" - else - new_line_tex = new_line_tex .. ")" - end - end - elseif self.line_cache~=nil and line==nil then - self.line_cache=nil - end - data.livery.line = new_line_tex - tram_set_textures(self, data) -end - --- Gets called one, currently when punched with bike painter -local function tram_set_livery(self, puncher, itemstack, data) - local itmstck=puncher:get_wielded_item() - local item_name = "" - if itmstck then item_name = itmstck:get_name() end - - if item_name == "bike:painter" then - local meta = itemstack:get_meta() - local newliv = "somemoretrains_tram_painting.png" - local color = meta:get_string("paint_color") - --minetest.chat_send_all('color: '.. color) - if color == "#0000FF" then - newliv = "somemoretrains_tram_painting_blue.png" - end - if color == "#FF0000" then - newliv = "somemoretrains_tram_painting_red.png" - end - if color == "#00FF00" then - newliv = "somemoretrains_tram_painting.png" - end - if color == "#FFFF00" then - newliv = "somemoretrains_tram_painting_yellow.png" - end - data.livery.painting = newliv - tram_set_textures(self, data) - --self:set_textures(data) - end -end - -advtrains.register_wagon("tram", { - mesh="somemoretrains_tram.b3d", - textures = { - "somemoretrains_tram_cyan.png", --chassis - "somemoretrains_tram_painting.png", --painting - "somemoretrains_tram_line.png", --line sign - "somemoretrains_tram_glass.png", --glass - "somemoretrains_tram_glass.png", --glass - "somemoretrains_tram_wood2.png", --interior - "somemoretrains_tram_grey.png", --lente farol - "somemoretrains_tram_black.png", --roof - "somemoretrains_tram_black.png", --roof2 - "somemoretrains_tram_black2.png", --sapata - "somemoretrains_tram_wood.png", --seat - "somemoretrains_tram_black.png", --wheels - }, - drives_on={default=true}, - max_speed=8, - seats = { - { - name="Driver stand", - attach_offset={x=0, y=0, z=12}, - view_offset={x=0, y=0, z=0}, - group="dstand", - }, - { - name="1", - attach_offset={x=-3, y=-1, z=5}, - view_offset={x=0, y=0, z=0}, - group="pass", - }, - { - name="2", - attach_offset={x=3, y=-1, z=5}, - view_offset={x=0, y=0, z=0}, - group="pass", - }, - { - name="3", - attach_offset={x=-3, y=-1, z=-5}, - view_offset={x=0, y=0, z=0}, - group="pass", - }, - { - name="4", - attach_offset={x=3, y=-1, z=-5}, - view_offset={x=0, y=0, z=0}, - group="pass", - }, - }, - seat_groups = { - dstand={ - name = "Driver Stand", - access_to = {"pass"}, - require_doors_open=false, - driving_ctrl_access=true, - }, - pass={ - name = "Passenger area", - access_to = {"dstand"}, - require_doors_open=false, - }, - }, - assign_to_seat_group = {"pass", "dstand"}, - visual_size = {x=1, y=1}, - wagon_span=2, - --collisionbox = {-1.0,-0.5,-1.8, 1.0,2.5,1.8}, - collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0}, - is_locomotive=true, - drops={"default:steelblock 4"}, - horn_sound = "somemoretrains_tram_horn", - 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 - minetest.sound_play("somemoretrains_tram_depart", {object = self.object}) - end - if velocity < 2 and (old_velocity >= 2 or old_velocity == velocity) and not self.sound_arrive_handle then - self.sound_arrive_handle = minetest.sound_play("somemoretrains_tram_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 - if velocity > 0 and (self.sound_loop_tmr or 0)<=0 then - self.sound_loop_handle = minetest.sound_play({name="somemoretrains_tram_loop", gain=0.3}, {object = self.object}) - self.sound_loop_tmr=3 - elseif velocity>0 then - self.sound_loop_tmr = self.sound_loop_tmr - dtime - elseif velocity==0 then - if self.sound_loop_handle then - minetest.sound_stop(self.sound_loop_handle) - self.sound_loop_handle = nil - end - self.sound_loop_tmr=0 - end - end, - custom_on_step = function(self, dtime, data, train) - if data.livery == nil then - data.livery = {painting="somemoretrains_tram_painting.png",line="somemoretrains_tram_line.png"} - tram_set_textures(self, data) - end - --[[if data.livery ~= self.textures[2] then - minetest.chat_send_all('data.livery: '.. data.livery .. ' - texture: ' .. self.textures[2]) - tram_set_textures(self, data) - end]]-- - --set line number - local line = nil - if train.line and self.line_cache ~= train.line then - tram_set_line(self, data, train) - end - end, - set_textures = tram_set_textures, - set_livery = tram_set_livery, -}, S("Tram"), "somemoretrains_tram_inv.png") - ---wagons -minetest.register_craft({ - output = 'advtrains:tram', - recipe = { - {'default:steelblock', 'group:wood', 'default:steelblock'}, - {'group:wood', 'default:glass', 'group:wood'}, - {'default:steelblock', 'default:steelblock', 'default:steelblock'}, - }, -}) diff --git a/some_more_trains/somemoretrains_tram/mod.conf b/some_more_trains/somemoretrains_tram/mod.conf deleted file mode 100644 index 551f566..0000000 --- a/some_more_trains/somemoretrains_tram/mod.conf +++ /dev/null @@ -1,6 +0,0 @@ -name=somemoretrains_tram -title=Tram -description=Tram for Advanced Trains -author=apercy - -depends=advtrains,advtrains_train_track diff --git a/some_more_trains/somemoretrains_tram/models/somemoretrains_tram.b3d b/some_more_trains/somemoretrains_tram/models/somemoretrains_tram.b3d deleted file mode 100644 index 36f4a68..0000000 Binary files a/some_more_trains/somemoretrains_tram/models/somemoretrains_tram.b3d and /dev/null differ diff --git a/some_more_trains/somemoretrains_tram/screenshot.png b/some_more_trains/somemoretrains_tram/screenshot.png deleted file mode 100644 index 5cfc7ff..0000000 Binary files a/some_more_trains/somemoretrains_tram/screenshot.png and /dev/null differ diff --git a/some_more_trains/somemoretrains_tram/sounds/somemoretrains_tram_arrive.ogg b/some_more_trains/somemoretrains_tram/sounds/somemoretrains_tram_arrive.ogg deleted file mode 100644 index 71bb90e..0000000 Binary files a/some_more_trains/somemoretrains_tram/sounds/somemoretrains_tram_arrive.ogg and /dev/null differ diff --git a/some_more_trains/somemoretrains_tram/sounds/somemoretrains_tram_dclose.ogg b/some_more_trains/somemoretrains_tram/sounds/somemoretrains_tram_dclose.ogg deleted file mode 100644 index ffbc6ed..0000000 Binary files a/some_more_trains/somemoretrains_tram/sounds/somemoretrains_tram_dclose.ogg and /dev/null differ diff --git a/some_more_trains/somemoretrains_tram/sounds/somemoretrains_tram_depart.ogg b/some_more_trains/somemoretrains_tram/sounds/somemoretrains_tram_depart.ogg deleted file mode 100644 index aca8cbc..0000000 Binary files a/some_more_trains/somemoretrains_tram/sounds/somemoretrains_tram_depart.ogg and /dev/null differ diff --git a/some_more_trains/somemoretrains_tram/sounds/somemoretrains_tram_dopen.ogg b/some_more_trains/somemoretrains_tram/sounds/somemoretrains_tram_dopen.ogg deleted file mode 100644 index f1322df..0000000 Binary files a/some_more_trains/somemoretrains_tram/sounds/somemoretrains_tram_dopen.ogg and /dev/null differ diff --git a/some_more_trains/somemoretrains_tram/sounds/somemoretrains_tram_horn.ogg b/some_more_trains/somemoretrains_tram/sounds/somemoretrains_tram_horn.ogg deleted file mode 100644 index f4519a3..0000000 Binary files a/some_more_trains/somemoretrains_tram/sounds/somemoretrains_tram_horn.ogg and /dev/null differ diff --git a/some_more_trains/somemoretrains_tram/sounds/somemoretrains_tram_loop.ogg b/some_more_trains/somemoretrains_tram/sounds/somemoretrains_tram_loop.ogg deleted file mode 100644 index 2543cc2..0000000 Binary files a/some_more_trains/somemoretrains_tram/sounds/somemoretrains_tram_loop.ogg and /dev/null differ diff --git a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_black.png b/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_black.png deleted file mode 100644 index 5d3d38c..0000000 Binary files a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_black.png and /dev/null differ diff --git a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_black2.png b/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_black2.png deleted file mode 100644 index 9e40678..0000000 Binary files a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_black2.png and /dev/null differ diff --git a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_cyan.png b/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_cyan.png deleted file mode 100644 index 4873a4d..0000000 Binary files a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_cyan.png and /dev/null differ diff --git a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_glass.png b/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_glass.png deleted file mode 100644 index 9e249ce..0000000 Binary files a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_glass.png and /dev/null differ diff --git a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_green.png b/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_green.png deleted file mode 100644 index 03a8a08..0000000 Binary files a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_green.png and /dev/null differ diff --git a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_grey.png b/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_grey.png deleted file mode 100644 index af9db27..0000000 Binary files a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_grey.png and /dev/null differ diff --git a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_inv.png b/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_inv.png deleted file mode 100644 index d1e6ff0..0000000 Binary files a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_inv.png and /dev/null differ diff --git a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line.png b/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line.png deleted file mode 100644 index 457cc6e..0000000 Binary files a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line.png and /dev/null differ diff --git a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line0.png b/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line0.png deleted file mode 100644 index 08789da..0000000 Binary files a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line0.png and /dev/null differ diff --git a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line0_.png b/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line0_.png deleted file mode 100644 index 4fbdf01..0000000 Binary files a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line0_.png and /dev/null differ diff --git a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line1.png b/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line1.png deleted file mode 100644 index 31614bb..0000000 Binary files a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line1.png and /dev/null differ diff --git a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line1_.png b/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line1_.png deleted file mode 100644 index 46843a9..0000000 Binary files a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line1_.png and /dev/null differ diff --git a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line2.png b/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line2.png deleted file mode 100644 index 5a1cf52..0000000 Binary files a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line2.png and /dev/null differ diff --git a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line2_.png b/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line2_.png deleted file mode 100644 index 71fe31e..0000000 Binary files a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line2_.png and /dev/null differ diff --git a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line3.png b/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line3.png deleted file mode 100644 index e9dee80..0000000 Binary files a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line3.png and /dev/null differ diff --git a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line3_.png b/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line3_.png deleted file mode 100644 index 6e5bb8e..0000000 Binary files a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line3_.png and /dev/null differ diff --git a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line4.png b/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line4.png deleted file mode 100644 index c56a48c..0000000 Binary files a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line4.png and /dev/null differ diff --git a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line4_.png b/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line4_.png deleted file mode 100644 index 17957bc..0000000 Binary files a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line4_.png and /dev/null differ diff --git a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line5.png b/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line5.png deleted file mode 100644 index a4c9a54..0000000 Binary files a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line5.png and /dev/null differ diff --git a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line5_.png b/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line5_.png deleted file mode 100644 index f22c2de..0000000 Binary files a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line5_.png and /dev/null differ diff --git a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line6.png b/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line6.png deleted file mode 100644 index 56404a5..0000000 Binary files a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line6.png and /dev/null differ diff --git a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line6_.png b/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line6_.png deleted file mode 100644 index 5458805..0000000 Binary files a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line6_.png and /dev/null differ diff --git a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line7.png b/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line7.png deleted file mode 100644 index 7802174..0000000 Binary files a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line7.png and /dev/null differ diff --git a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line7_.png b/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line7_.png deleted file mode 100644 index 08b6575..0000000 Binary files a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line7_.png and /dev/null differ diff --git a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line8.png b/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line8.png deleted file mode 100644 index 2c85519..0000000 Binary files a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line8.png and /dev/null differ diff --git a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line8_.png b/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line8_.png deleted file mode 100644 index 2942cad..0000000 Binary files a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line8_.png and /dev/null differ diff --git a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line9.png b/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line9.png deleted file mode 100644 index 8e79636..0000000 Binary files a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line9.png and /dev/null differ diff --git a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line9_.png b/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line9_.png deleted file mode 100644 index 76dfc0e..0000000 Binary files a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line9_.png and /dev/null differ diff --git a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_lineX.png b/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_lineX.png deleted file mode 100644 index 418f41b..0000000 Binary files a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_lineX.png and /dev/null differ diff --git a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line_0.png b/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line_0.png deleted file mode 100644 index aa22f28..0000000 Binary files a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line_0.png and /dev/null differ diff --git a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line_1.png b/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line_1.png deleted file mode 100644 index fc133d7..0000000 Binary files a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line_1.png and /dev/null differ diff --git a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line_2.png b/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line_2.png deleted file mode 100644 index b04b7f8..0000000 Binary files a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line_2.png and /dev/null differ diff --git a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line_3.png b/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line_3.png deleted file mode 100644 index f7a25e2..0000000 Binary files a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line_3.png and /dev/null differ diff --git a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line_4.png b/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line_4.png deleted file mode 100644 index 3c67e00..0000000 Binary files a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line_4.png and /dev/null differ diff --git a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line_5.png b/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line_5.png deleted file mode 100644 index 14d7c8d..0000000 Binary files a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line_5.png and /dev/null differ diff --git a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line_6.png b/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line_6.png deleted file mode 100644 index 8fc0ee3..0000000 Binary files a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line_6.png and /dev/null differ diff --git a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line_7.png b/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line_7.png deleted file mode 100644 index 3a49e0a..0000000 Binary files a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line_7.png and /dev/null differ diff --git a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line_8.png b/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line_8.png deleted file mode 100644 index 508f694..0000000 Binary files a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line_8.png and /dev/null differ diff --git a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line_9.png b/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line_9.png deleted file mode 100644 index 164ab2d..0000000 Binary files a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_line_9.png and /dev/null differ diff --git a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_painting.png b/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_painting.png deleted file mode 100644 index e5c852e..0000000 Binary files a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_painting.png and /dev/null differ diff --git a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_painting_blue.png b/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_painting_blue.png deleted file mode 100644 index 10c9a2e..0000000 Binary files a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_painting_blue.png and /dev/null differ diff --git a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_painting_red.png b/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_painting_red.png deleted file mode 100644 index d5ea1bf..0000000 Binary files a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_painting_red.png and /dev/null differ diff --git a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_painting_yellow.png b/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_painting_yellow.png deleted file mode 100644 index 57611f1..0000000 Binary files a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_painting_yellow.png and /dev/null differ diff --git a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_wood.png b/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_wood.png deleted file mode 100644 index 1b1ebcb..0000000 Binary files a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_wood.png and /dev/null differ diff --git a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_wood2.png b/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_wood2.png deleted file mode 100644 index f7cc961..0000000 Binary files a/some_more_trains/somemoretrains_tram/textures/somemoretrains_tram_wood2.png and /dev/null differ