From 42521c5f2b2943a2f656d2fdfdcb3be3c76fb8de Mon Sep 17 00:00:00 2001 From: Sokomine Date: Sat, 25 Jul 2015 23:48:07 +0200 Subject: [PATCH] added the files in the same state as they where in on random_buildings/cottages --- README.md | 13 + alias.lua | 40 ++ depends.txt | 5 + init.lua | 38 ++ locale/de.txt | 130 +++++ locale/template.txt | 129 +++++ models/cottages_barrel.obj | 543 ++++++++++++++++++ models/cottages_barrel_closed.obj | 453 +++++++++++++++ models/cottages_barrel_closed_lying.obj | 453 +++++++++++++++ models/cottages_barrel_lying.obj | 543 ++++++++++++++++++ models/cottages_handmill.obj | 376 ++++++++++++ models/cottages_tub.obj | 326 +++++++++++ nodes_anvil.lua | 244 ++++++++ nodes_barrel.lua | 210 +++++++ nodes_chests.lua | 69 +++ nodes_doorlike.lua | 443 ++++++++++++++ nodes_fences.lua | 165 ++++++ nodes_furniture.lua | 378 ++++++++++++ nodes_historic.lua | 272 +++++++++ nodes_roof.lua | 216 +++++++ nodes_straw.lua | 461 +++++++++++++++ textures/cottages_barrel.png | Bin 0 -> 2668 bytes textures/cottages_beds_bed_side.png | Bin 0 -> 536 bytes textures/cottages_beds_bed_side_top_l.png | Bin 0 -> 500 bytes textures/cottages_beds_bed_side_top_r.png | Bin 0 -> 502 bytes textures/cottages_beds_bed_top_bottom.png | Bin 0 -> 633 bytes textures/cottages_beds_bed_top_top.png | Bin 0 -> 605 bytes textures/cottages_darkage_straw.png | Bin 0 -> 852 bytes textures/cottages_darkage_straw_bale.png | Bin 0 -> 827 bytes textures/cottages_feldweg.png | Bin 0 -> 750 bytes textures/cottages_glass_pane.png | Bin 0 -> 975 bytes .../cottages_homedecor_shingles_asphalt.png | Bin 0 -> 671 bytes ...cottages_homedecor_shingles_terracotta.png | Bin 0 -> 386 bytes textures/cottages_homedecor_shingles_wood.png | Bin 0 -> 567 bytes textures/cottages_loam.png | Bin 0 -> 5743 bytes textures/cottages_minimal_wood.png | Bin 0 -> 1400 bytes textures/cottages_reet.png | Bin 0 -> 791 bytes textures/cottages_slate.png | Bin 0 -> 8609 bytes textures/cottages_sleepingmat.png | Bin 0 -> 135 bytes textures/cottages_wagonwheel.png | Bin 0 -> 357 bytes textures/glooptest_tool_steelhammer.png | Bin 0 -> 184 bytes 41 files changed, 5507 insertions(+) create mode 100644 README.md create mode 100644 alias.lua create mode 100644 depends.txt create mode 100644 init.lua create mode 100644 locale/de.txt create mode 100644 locale/template.txt create mode 100644 models/cottages_barrel.obj create mode 100644 models/cottages_barrel_closed.obj create mode 100644 models/cottages_barrel_closed_lying.obj create mode 100644 models/cottages_barrel_lying.obj create mode 100644 models/cottages_handmill.obj create mode 100644 models/cottages_tub.obj create mode 100644 nodes_anvil.lua create mode 100644 nodes_barrel.lua create mode 100644 nodes_chests.lua create mode 100644 nodes_doorlike.lua create mode 100644 nodes_fences.lua create mode 100644 nodes_furniture.lua create mode 100644 nodes_historic.lua create mode 100644 nodes_roof.lua create mode 100644 nodes_straw.lua create mode 100644 textures/cottages_barrel.png create mode 100644 textures/cottages_beds_bed_side.png create mode 100644 textures/cottages_beds_bed_side_top_l.png create mode 100644 textures/cottages_beds_bed_side_top_r.png create mode 100644 textures/cottages_beds_bed_top_bottom.png create mode 100644 textures/cottages_beds_bed_top_top.png create mode 100644 textures/cottages_darkage_straw.png create mode 100644 textures/cottages_darkage_straw_bale.png create mode 100644 textures/cottages_feldweg.png create mode 100644 textures/cottages_glass_pane.png create mode 100644 textures/cottages_homedecor_shingles_asphalt.png create mode 100644 textures/cottages_homedecor_shingles_terracotta.png create mode 100644 textures/cottages_homedecor_shingles_wood.png create mode 100644 textures/cottages_loam.png create mode 100644 textures/cottages_minimal_wood.png create mode 100644 textures/cottages_reet.png create mode 100644 textures/cottages_slate.png create mode 100644 textures/cottages_sleepingmat.png create mode 100644 textures/cottages_wagonwheel.png create mode 100644 textures/glooptest_tool_steelhammer.png diff --git a/README.md b/README.md new file mode 100644 index 0000000..0a3896e --- /dev/null +++ b/README.md @@ -0,0 +1,13 @@ +Contains nodes for building medieval houses. + +This used to be part of my random_buildings modpack, found under + https://github.com/Sokomine/random_buildings +It is now its own mod as all other mods in the modpack have been +superseded by newer versions. + +For more information about this mod, please refer to + https://forum.minetest.net/viewtopic.php?id=5120 + +The texture cottages/textures/cottages_slate.png is derived from Universal schema.jpg by Stefanie Lindener, which can be found here: http://de.wikipedia.org/w/index.php?title=Datei:Universal_schema.jpg&filetimestamp=20060510110309& The texture is CC-by-sa 2.0/de. + +Liscence of this mod: GPLv3 diff --git a/alias.lua b/alias.lua new file mode 100644 index 0000000..8600a92 --- /dev/null +++ b/alias.lua @@ -0,0 +1,40 @@ + +minetest.register_alias("random_buildings:roof", "cottages:roof_wood"); +minetest.register_alias("random_buildings:roof_connector", "cottages:roof_connector_wood"); +minetest.register_alias("random_buildings:roof_flat", "cottages:roof_flat_wood"); +minetest.register_alias("random_buildings:roof_wood", "cottages:roof_wood"); +minetest.register_alias("random_buildings:roof_connector_wood", "cottages:roof_connector_wood"); +minetest.register_alias("random_buildings:roof_flat_wood", "cottages:roof_flat_wood"); +minetest.register_alias("random_buildings:roof_straw", "cottages:roof_straw"); +minetest.register_alias("random_buildings:roof_connector_straw", "cottages:roof_connector_straw"); +minetest.register_alias("random_buildings:roof_flat_straw", "cottages:roof_flat_straw"); +minetest.register_alias("random_buildings:barrel", "cottages:barrel"); +minetest.register_alias("random_buildings:barrel_open", "cottages:barrel_open"); +minetest.register_alias("random_buildings:barrel_lying", "cottages:barrel_lying"); +minetest.register_alias("random_buildings:barrel_lying_open", "cottages:barrel_lying_open"); +minetest.register_alias("random_buildings:tub", "cottages:tub"); +minetest.register_alias("random_buildings:window_shutter_open", "cottages:window_shutter_open"); +minetest.register_alias("random_buildings:window_shutter_closed", "cottages:window_shutter_closed"); +minetest.register_alias("random_buildings:half_door", "cottages:half_door"); +minetest.register_alias("random_buildings:half_door_inverted", "cottages:half_door_inverted"); +minetest.register_alias("random_buildings:gate_closed", "cottages:gate_closed"); +minetest.register_alias("random_buildings:gate_open", "cottages:gate_open"); +minetest.register_alias("random_buildings:bed_foot", "cottages:bed_foot"); +minetest.register_alias("random_buildings:bed_head", "cottages:bed_head"); +minetest.register_alias("random_buildings:sleeping_mat", "cottages:sleeping_mat"); +minetest.register_alias("random_buildings:loam", "cottages:loam"); +minetest.register_alias("random_buildings:bench", "cottages:bench"); +minetest.register_alias("random_buildings:table", "cottages:table"); +minetest.register_alias("random_buildings:shelf", "cottages:shelf"); +minetest.register_alias("random_buildings:stovepipe", "cottages:stovepipe"); +minetest.register_alias("random_buildings:washing", "cottages:washing"); +minetest.register_alias("random_buildings:wagon_wheel", "cottages:wagon_wheel"); +minetest.register_alias("random_buildings:feldweg", "cottages:feldweg"); +minetest.register_alias("random_buildings:straw_ground", "cottages:straw_ground"); +minetest.register_alias("random_buildings:glass_pane", "cottages:glass_pane"); +minetest.register_alias("random_buildings:straw_mat", "cottages:straw_mat"); +minetest.register_alias("random_buildings:straw_bale", "cottages:straw_bale"); +minetest.register_alias("random_buildings:straw", "cottages:straw"); +minetest.register_alias("random_buildings:chest_private", "cottages:chest_private"); +minetest.register_alias("random_buildings:chest_work", "cottages:chest_work"); +minetest.register_alias("random_buildings:chest_storage", "cottages:chest_storage"); diff --git a/depends.txt b/depends.txt new file mode 100644 index 0000000..2ba42a9 --- /dev/null +++ b/depends.txt @@ -0,0 +1,5 @@ +default +farming +stairs? +homedecor? +intllib? diff --git a/init.lua b/init.lua new file mode 100644 index 0000000..2bb4244 --- /dev/null +++ b/init.lua @@ -0,0 +1,38 @@ + +-- Version: 2.0 +-- Autor: Sokomine +-- License: GPLv3 +-- +-- Modified: +-- 23.01.14 Added conversion receipes in case of installed castle-mod (has its own anvil) +-- 23.01.14 Added hammer and anvil as decoration and for repairing tools. +-- Added hatches (wood and steel). +-- Changed the texture of the fence/handrail. +-- 17.01.13 Added alternate receipe for fences in case of interference due to xfences +-- 14.01.13 Added alternate receipes for roof parts in case homedecor is not installed. +-- Added receipe for stove pipe, tub and barrel. +-- Added stairs/slabs for dirt road, loam and clay +-- Added fence_small, fence_corner and fence_end, which are useful as handrails and fences +-- If two or more window shutters are placed above each other, they will now all close/open simultaneously. +-- Added threshing floor. +-- Added hand-driven mill. + +cottages = {} + +--cottages.config_use_mesh_barrel = false; +--cottages.config_use_mesh_handmill = true; + +-- uncomment parts you do not want + +dofile(minetest.get_modpath("cottages").."/nodes_furniture.lua"); +dofile(minetest.get_modpath("cottages").."/nodes_historic.lua"); +dofile(minetest.get_modpath("cottages").."/nodes_straw.lua"); +dofile(minetest.get_modpath("cottages").."/nodes_anvil.lua"); +dofile(minetest.get_modpath("cottages").."/nodes_doorlike.lua"); +dofile(minetest.get_modpath("cottages").."/nodes_fences.lua"); +dofile(minetest.get_modpath("cottages").."/nodes_roof.lua"); +dofile(minetest.get_modpath("cottages").."/nodes_barrel.lua"); +--dofile(minetest.get_modpath("cottages").."/nodes_chests.lua"); + +-- this is only required and useful if you run versions of the random_buildings mod where the nodes where defined inside that mod +dofile(minetest.get_modpath("cottages").."/alias.lua"); diff --git a/locale/de.txt b/locale/de.txt new file mode 100644 index 0000000..9677a3b --- /dev/null +++ b/locale/de.txt @@ -0,0 +1,130 @@ +# Translation by Xanthin + +### alias.lua ### + +### init.lua ### + +### nodes_anvil.lua ### +Steel hammer for repairing tools on the anvil = Stahlhammer um Werkzeuge auf dem Amboss zu reparieren +anvil = Amboss +Anvil = Amboss +The workpiece slot is for damaged tools only. = Das Werkstueckfeld gilt nur fuer beschaedigtes Werkzeug. +Your tool has been repaired successfully. = Dein Werkzeug wurde erfolgreich repariert. +Your workpiece improves. = Dein Werkstueck verbessert sich. +Anvil (owned by %s) = Amboss (gehoert %s) +Workpiece: = Werkstueck +Optional = Moegliche +storage for = Aufbewahrung fuer +your hammer = deinen Hammer +Owner: %s = Besitzer: %s +Punch anvil with hammer to = Schlage mit dem Hammer auf den Amboss um +repair tool in workpiece-slot. = das Werkzeug im Werkstueckfeld zu reparieren. + +### nodes_barrel.lua ### +Pour: = Eingiessen +Fill: = Ausgiessen +barrel (closed) = Fass (geschlossen) +barrel (open) = Fass (offen) +barrel (closed), lying somewhere = Liegendes Fass (geschlossen) +barrel (opened), lying somewhere = Liegendes Fass (offen) +tub = Bottich + +### nodes_chests.lua ### +private NPC chest = Private NSC-Truhe +chest for work utils and kitchens = NSC-Truhe fuer Arbeitsutensilien und Kuechen +storage chest = NSC-Lagertruhe + +### nodes_doorlike.lua ### +opened window shutters = Offene Fensterlaeden +closed window shutters = Geschlossene Fensterlaeden +half door = Kloentuer +half door inverted = Umgekehrte Kloentuer +closed fence gate = Geschlossenes Zauntor +opened fence gate = Offenes Zauntor +wooden hatch = Holzfalltuer +metal hatch = Metallfalltuer + +### nodes_fences.lua ### +small fence = Kleiner Zaun +small fence corner = Kleiner Zaun (Ecke) +small fence end = Kleiner Zaun (Ende) + +### nodes_furniture.lua ### +Bed (foot region) = Bett (Fussende) +Bed (head region) = Bett (Kopfende) +sleeping mat = Schlafmatte +simple wooden bench = Einfache Holzbank +table = Tisch +open storage shelf = Offenes Lagerregal +open storage shelf (in use) = Offenes Lagerregal (in Gebrauch) +open storage shelf (empty) = Offenes Lagerregal (leer) +stovepipe = Ofenrohr +washing place = Waschplatz +Sorry. This washing place is out of water. Please place it above water! = Entschuldige, dieser Waschplatz hat kein Wasser mehr. Bitte platziere ihn ueber Wasser! +You feel much cleaner after some washing. = Nach einer kleinen Waesche fuehlst du dich nun sauberer. + +### nodes_historic.lua ### +wagon wheel = Wagenrad +dirt road = Feldweg +loam = Lehm +Dirt Road Stairs = Feldwegtreppe +Dirt Road, half height = Feldwegstufe +Loam Stairs = Lehmtreppe +Loam Slab = Lehmstufe +Clay Stairs = Tontreppe +Clay Slab = Tonstufe +straw ground for animals = Strohboden fuer Tiere +simple glass pane = Einfache Fensterscheibe + +### nodes_roof.lua ### +Roof straw = Strohdach +Roof wood = Holzdach +Roof black = Schwarzes Dach +Roof red = Rotes Dach +Roof brown = Braunes Dach +Roof reet = Reetdach +Roof slate = Schieferdach +Roof connector straw = Strohdachverbinder +Roof connector wood = Holzdachverbinder +Roof connector black = Schwarzer Dachverbinder +Roof connector red = Roter Dachverbinder +Roof connector brown = Brauner Dachverbinder +Roof connector reet = Reet-Dachverbinder +Roof connector slate = Schiefer-Dachverbinder +Roof (flat) straw = Strohdach (flach) +Roof (flat) wood = Holzdach (flach) +Roof (flat) black = Schwarzes Dach (flach) +Roof (flat) red = Rotes Dach (flach) +Roof (flat) brown = Braunes Dach (flach) +Roof (flat) reet = Reetdach (flach) +Roof (flat) slate = Schieferdach (flach) +Vertical Slate = Vertikaler Schiefer +Reet for thatching = Reet + + +### nodes_straw.lua ### +layer of straw = Strohschicht +straw bale = Strohballen +straw = Stroh +threshing floor = Dreschboden +Threshing floor = Dreschboden +Threshing floor (owned by %s) = Dreschboden (gehoert %s) +Harvested wheat: = Geernteter Weizen +Straw: = Stroh +Seeds: = Koerner +Owner: %s = Besitzer: %s +Punch threshing floor with a stick = Schlage mit einem Stock auf den Dreschboden +to get straw and seeds from wheat. = um Stroh und Koerner vom Weizen zu bekommen. +You have threshed %s wheat (%s are left). = Du hast %s Weizenaehren gedroschen (%s bleiben uebrig). +You have threshed the last %s wheat. = Du hast die letzten %s Weizenaehren gedroschen. +mill, powered by punching = Muehle, durch Schlagen antreiben +Mill, powered by punching = Muehle, durch Schlagen antreiben +Mill, powered by punching (owned by %s) = Muehle, durch Schlagen antreiben (gehoert %s) +Wheat seeds: = Weizenkoerner +Flour: = Mehl +Mill = Muehle +Owner: %s = Besitzer: %s +Punch this hand-driven mill = Schlage auf diese handbetriebene Muehle +to convert wheat seeds into flour. = um Weizenkoerner in Mehl umzuwandeln. +You have grinded %s wheat seeds (%s are left). = Du hast %s Weizenkoerner gemahlen (%s bleiben uebrig). +You have grinded the last %s wheat seeds. = Du hast die letzten %s Weizenkoerner gemahlen. diff --git a/locale/template.txt b/locale/template.txt new file mode 100644 index 0000000..cbc6990 --- /dev/null +++ b/locale/template.txt @@ -0,0 +1,129 @@ +# Template + +### alias.lua ### + +### init.lua ### + +### nodes_anvil.lua ### +Steel hammer for repairing tools on the anvil = +anvil = +Anvil = +The workpiece slot is for damaged tools only. = +Your tool has been repaired successfully. = +Your workpiece improves. = +Anvil (owned by %s) = +Workpiece: = +Optional = +storage for = +your hammer = +Owner: %s = +Punch anvil with hammer to = +repair tool in workpiece-slot. = + +### nodes_barrel.lua ### +Pour: = +Fill: = +barrel (closed) = +barrel (open) = +barrel (closed), lying somewhere = +barrel (opened), lying somewhere = +tub = + +### nodes_chests.lua ### +private NPC chest = +chest for work utils and kitchens = +storage chest = + +### nodes_doorlike.lua ### +opened window shutters = +closed window shutters = +half door = +half door inverted = +closed fence gate = +opened fence gate = +wooden hatch = +metal hatch = + +### nodes_fences.lua ### +small fence = +small fence corner = +small fence end = + +### nodes_furniture.lua ### +Bed (foot region) = +Bed (head region) = +sleeping mat = +simple wooden bench = +table = +open storage shelf = +open storage shelf (in use) = +open storage shelf (empty) = +stovepipe = +washing place = +Sorry. This washing place is out of water. Please place it above water! = +You feel much cleaner after some washing. = + +### nodes_historic.lua ### +wagon wheel = +dirt road = +loam = +Dirt Road Stairs = +Dirt Road, half height = +Loam Stairs = +Loam Slab = +Clay Stairs = +Clay Slab = +straw ground for animals = +simple glass pane = + +### nodes_roof.lua ### +Roof straw = +Roof wood = +Roof black = +Roof red = +Roof brown = +Roof reet = +Roof slate = +Roof connector straw = +Roof connector wood = +Roof connector black = +Roof connector red = +Roof connector brown = +Roof connector reet = +Roof connector slate = +Roof (flat) straw = +Roof (flat) wood = +Roof (flat) black = +Roof (flat) red = +Roof (flat) brown = +Roof (flat) reet = +Roof (flat) slate = +Vertical Slate = +Reet for thatching = + +### nodes_straw.lua ### +layer of straw = +straw bale = +straw = +threshing floor = +Threshing floor = +Threshing floor (owned by %s) = +Harvested wheat: = +Straw: = +Seeds: = +Owner: %s = +Punch threshing floor with a stick = +to get straw and seeds from wheat. = +You have threshed %s wheat (%s are left). = +You have threshed the last %s wheat. = +mill, powered by punching = +Mill, powered by punching = +Mill, powered by punching (owned by %s) = +Wheat seeds: = +Flour: = +Mill = +Owner: %s = +Punch this hand-driven mill = +to convert wheat seeds into flour. = +You have grinded %s wheat seeds (%s are left). = +You have grinded the last %s wheat seeds. = diff --git a/models/cottages_barrel.obj b/models/cottages_barrel.obj new file mode 100644 index 0000000..41258c3 --- /dev/null +++ b/models/cottages_barrel.obj @@ -0,0 +1,543 @@ +# Blender v2.69 (sub 0) OBJ File: 'barrel.blend' +# www.blender.org +o Cylinder +v 0.092835 -0.500001 -0.466712 +v 0.092835 0.500000 -0.466712 +v 0.264371 -0.500001 -0.395660 +v 0.264371 0.500000 -0.395660 +v 0.395660 -0.500001 -0.264371 +v 0.395660 0.500000 -0.264371 +v 0.466712 -0.500001 -0.092835 +v 0.466712 0.500000 -0.092835 +v 0.466712 -0.500001 0.092835 +v 0.466712 0.500000 0.092835 +v 0.395660 -0.500001 0.264371 +v 0.395660 0.500000 0.264371 +v 0.264371 -0.500001 0.395660 +v 0.264371 0.500000 0.395660 +v 0.092835 -0.500001 0.466712 +v 0.092835 0.500000 0.466712 +v -0.092835 -0.500001 0.466712 +v -0.092835 0.500000 0.466712 +v -0.264371 -0.500001 0.395660 +v -0.264371 0.500000 0.395660 +v -0.395660 -0.500001 0.264371 +v -0.395660 0.500000 0.264371 +v -0.466712 -0.500001 0.092835 +v -0.466712 0.500000 0.092835 +v -0.466712 -0.500001 -0.092835 +v -0.466712 0.500000 -0.092835 +v -0.395660 -0.500001 -0.264371 +v -0.395660 0.500000 -0.264371 +v -0.264371 -0.500001 -0.395660 +v -0.264371 0.500000 -0.395660 +v -0.092835 -0.500001 -0.466713 +v -0.092835 0.500000 -0.466713 +v 0.095930 0.413334 -0.482270 +v 0.273184 -0.413334 -0.408849 +v 0.408849 -0.413334 -0.273184 +v 0.482270 -0.413334 -0.095929 +v 0.482270 -0.413334 0.095930 +v 0.408849 -0.413334 0.273184 +v 0.273184 -0.413334 0.408849 +v 0.095929 -0.413334 0.482270 +v -0.095929 -0.413334 0.482270 +v -0.273184 -0.413334 0.408849 +v -0.408849 -0.413334 0.273184 +v -0.482270 -0.413334 0.095929 +v -0.482270 -0.413334 -0.095930 +v -0.408849 -0.413334 -0.273184 +v -0.273184 -0.413334 -0.408849 +v -0.095929 -0.413334 -0.482270 +v 0.095930 -0.413334 -0.482270 +v 0.273184 0.413334 -0.408849 +v 0.408849 0.413334 -0.273184 +v 0.482270 0.413334 -0.095929 +v 0.482270 0.413334 0.095930 +v 0.408849 0.413334 0.273184 +v 0.273184 0.413334 0.408849 +v 0.095929 0.413334 0.482270 +v -0.095929 0.413334 0.482270 +v -0.273184 0.413334 0.408849 +v -0.408849 0.413334 0.273184 +v -0.482270 0.413334 0.095929 +v -0.482270 0.413334 -0.095930 +v -0.408849 0.413334 -0.273184 +v -0.273184 0.413334 -0.408849 +v -0.095929 0.413334 -0.482270 +v 0.099128 0.114830 -0.498352 +v 0.282294 -0.114831 -0.422482 +v 0.422482 -0.114831 -0.282294 +v 0.498352 -0.114831 -0.099128 +v 0.498352 -0.114831 0.099128 +v 0.422482 -0.114831 0.282294 +v 0.282294 -0.114831 0.422482 +v 0.099128 -0.114831 0.498352 +v -0.099128 -0.114831 0.498352 +v -0.282294 -0.114831 0.422482 +v -0.422482 -0.114831 0.282294 +v -0.498352 -0.114831 0.099128 +v -0.498352 -0.114831 -0.099128 +v -0.422482 -0.114831 -0.282294 +v -0.282293 -0.114831 -0.422482 +v -0.099128 -0.114831 -0.498352 +v 0.099128 -0.114831 -0.498352 +v 0.282294 0.114830 -0.422482 +v 0.422482 0.114830 -0.282294 +v 0.498352 0.114830 -0.099128 +v 0.498352 0.114830 0.099128 +v 0.422482 0.114830 0.282294 +v 0.282294 0.114830 0.422482 +v 0.099128 0.114830 0.498352 +v -0.099128 0.114830 0.498352 +v -0.282294 0.114830 0.422482 +v -0.422482 0.114830 0.282294 +v -0.498352 0.114830 0.099128 +v -0.498352 0.114830 -0.099128 +v -0.422482 0.114830 -0.282294 +v -0.282293 0.114830 -0.422482 +v -0.099128 0.114830 -0.498352 +v 0.083551 -0.500001 -0.420041 +v 0.083551 0.500000 -0.420041 +v 0.237934 -0.500001 -0.356094 +v 0.237934 0.500000 -0.356094 +v 0.356094 -0.500001 -0.237934 +v 0.356094 0.500000 -0.237934 +v 0.420041 -0.500001 -0.083551 +v 0.420041 0.500000 -0.083551 +v 0.420041 -0.500001 0.083551 +v 0.420041 0.500000 0.083551 +v 0.356094 -0.500001 0.237934 +v 0.356094 0.500000 0.237934 +v 0.237934 -0.500001 0.356094 +v 0.237934 0.500000 0.356094 +v 0.083551 -0.500001 0.420041 +v 0.083551 0.500000 0.420041 +v -0.083551 -0.500001 0.420041 +v -0.083551 0.500000 0.420041 +v -0.237934 -0.500001 0.356094 +v -0.237934 0.500000 0.356094 +v -0.356094 -0.500001 0.237934 +v -0.356094 0.500000 0.237934 +v -0.420041 -0.500001 0.083551 +v -0.420041 0.500000 0.083551 +v -0.420041 -0.500001 -0.083551 +v -0.420041 0.500000 -0.083551 +v -0.356094 -0.500001 -0.237934 +v -0.356094 0.500000 -0.237934 +v -0.237934 -0.500001 -0.356094 +v -0.237934 0.500000 -0.356094 +v -0.083551 -0.500001 -0.420041 +v -0.083551 0.500000 -0.420041 +v 0.086337 0.413334 -0.434043 +v 0.245866 -0.413335 -0.367964 +v 0.367964 -0.413335 -0.245866 +v 0.434043 -0.413335 -0.086336 +v 0.434043 -0.413335 0.086337 +v 0.367964 -0.413335 0.245866 +v 0.245866 -0.413335 0.367964 +v 0.086337 -0.413335 0.434043 +v -0.086336 -0.413335 0.434043 +v -0.245866 -0.413335 0.367964 +v -0.367964 -0.413335 0.245866 +v -0.434043 -0.413335 0.086337 +v -0.434043 -0.413335 -0.086337 +v -0.367964 -0.413335 -0.245866 +v -0.245865 -0.413335 -0.367964 +v -0.086336 -0.413335 -0.434043 +v 0.086337 -0.413335 -0.434043 +v 0.245866 0.413334 -0.367964 +v 0.367964 0.413334 -0.245866 +v 0.434043 0.413334 -0.086336 +v 0.434043 0.413334 0.086337 +v 0.367964 0.413334 0.245866 +v 0.245866 0.413334 0.367964 +v 0.086337 0.413334 0.434043 +v -0.086336 0.413334 0.434043 +v -0.245866 0.413334 0.367964 +v -0.367964 0.413334 0.245866 +v -0.434043 0.413334 0.086337 +v -0.434043 0.413334 -0.086337 +v -0.367964 0.413334 -0.245866 +v -0.245865 0.413334 -0.367964 +v -0.086336 0.413334 -0.434043 +v 0.089216 0.114830 -0.448517 +v 0.254064 -0.114831 -0.380234 +v 0.380234 -0.114831 -0.254064 +v 0.448517 -0.114831 -0.089215 +v 0.448517 -0.114831 0.089216 +v 0.380234 -0.114831 0.254064 +v 0.254064 -0.114831 0.380234 +v 0.089216 -0.114831 0.448517 +v -0.089215 -0.114831 0.448517 +v -0.254064 -0.114831 0.380234 +v -0.380234 -0.114831 0.254064 +v -0.448517 -0.114831 0.089216 +v -0.448517 -0.114831 -0.089216 +v -0.380234 -0.114831 -0.254064 +v -0.254064 -0.114831 -0.380234 +v -0.089215 -0.114831 -0.448517 +v 0.089216 -0.114831 -0.448517 +v 0.254064 0.114830 -0.380234 +v 0.380234 0.114830 -0.254064 +v 0.448517 0.114830 -0.089215 +v 0.448517 0.114830 0.089216 +v 0.380234 0.114830 0.254064 +v 0.254064 0.114830 0.380234 +v 0.089216 0.114830 0.448517 +v -0.089215 0.114830 0.448517 +v -0.254064 0.114830 0.380234 +v -0.380234 0.114830 0.254064 +v -0.448517 0.114830 0.089216 +v -0.448517 0.114830 -0.089216 +v -0.380234 0.114830 -0.254064 +v -0.254064 0.114830 -0.380234 +v -0.089215 0.114830 -0.448517 +v 0.087776 -0.352645 -0.441280 +v -0.087776 -0.352645 -0.441280 +v -0.249965 -0.352645 -0.374099 +v -0.374099 -0.352645 -0.249965 +v -0.441280 -0.352645 -0.087776 +v -0.441280 -0.352645 0.087776 +v -0.374099 -0.352645 0.249965 +v -0.249965 -0.352645 0.374099 +v -0.087776 -0.352645 0.441280 +v 0.087776 -0.352645 0.441280 +v 0.249965 -0.352645 0.374099 +v 0.374099 -0.352645 0.249965 +v 0.441280 -0.352645 0.087776 +v 0.441280 -0.352645 -0.087776 +v 0.374099 -0.352645 -0.249965 +v 0.249965 -0.352645 -0.374099 +v 0.000000 -0.352645 0.000000 +v -0.000000 -0.413334 0.000000 +vt 0.211538 0.442308 +vt 0.211538 0.467949 +vt 0.108974 0.467949 +vt 0.108974 0.442308 +vt 0.314103 0.442308 +vt 0.314103 0.467949 +vt 0.416667 0.442308 +vt 0.416667 0.467949 +vt 0.006410 0.467949 +vt 0.006410 0.442308 +vt 0.211792 0.993590 +vt 0.117562 0.954728 +vt 0.262789 0.738327 +vt 0.211538 0.006410 +vt 0.108974 0.006410 +vt 0.108974 0.032051 +vt 0.211538 0.032051 +vt 0.314103 0.006410 +vt 0.314103 0.032051 +vt 0.416667 0.006410 +vt 0.416667 0.032051 +vt 0.006410 0.006410 +vt 0.006410 0.032051 +vt 0.211361 0.993526 +vt 0.117394 0.954505 +vt 0.262040 0.737637 +vt 0.045447 0.882467 +vt 0.006475 0.788381 +vt 0.006410 0.686569 +vt 0.045263 0.592532 +vt 0.117118 0.520586 +vt 0.204627 0.488094 +vt 0.312719 0.481748 +vt 0.406687 0.520769 +vt 0.478633 0.592807 +vt 0.517605 0.686893 +vt 0.517670 0.788705 +vt 0.478816 0.882742 +vt 0.406962 0.954687 +vt 0.313044 0.993590 +vt 0.045441 0.882922 +vt 0.006410 0.789102 +vt 0.006410 0.687551 +vt 0.045442 0.593732 +vt 0.117562 0.521925 +vt 0.211793 0.483064 +vt 0.313787 0.483064 +vt 0.408016 0.521926 +vt 0.480136 0.593732 +vt 0.519168 0.687551 +vt 0.519168 0.789103 +vt 0.480136 0.882922 +vt 0.408016 0.954728 +vt 0.313786 0.993590 +vt 0.416667 0.397436 +vt 0.314103 0.397436 +vt 0.211538 0.397436 +vt 0.108974 0.397436 +vt 0.006410 0.397436 +vt 0.314103 0.185897 +vt 0.314103 0.282051 +vt 0.211538 0.282051 +vt 0.211538 0.185897 +vt 0.108974 0.282051 +vt 0.108974 0.185897 +vt 0.006410 0.282051 +vt 0.006410 0.185897 +vt 0.416667 0.185897 +vt 0.416667 0.282051 +vt 0.416667 0.076923 +vt 0.314103 0.076923 +vt 0.211538 0.076923 +vt 0.108974 0.076923 +vt 0.006410 0.076923 +vt 0.429487 0.397436 +vt 0.532051 0.397436 +vt 0.532051 0.442308 +vt 0.429487 0.442308 +vt 0.634615 0.397436 +vt 0.634615 0.442308 +vt 0.737179 0.397436 +vt 0.737179 0.442308 +vt 0.839744 0.397436 +vt 0.839744 0.442308 +vt 0.532051 0.185897 +vt 0.634615 0.185897 +vt 0.634615 0.282051 +vt 0.532051 0.282051 +vt 0.737179 0.185897 +vt 0.737179 0.282051 +vt 0.839744 0.185897 +vt 0.839744 0.282051 +vt 0.429487 0.185897 +vt 0.429487 0.282051 +vt 0.429487 0.032051 +vt 0.532051 0.032051 +vt 0.532051 0.076923 +vt 0.429487 0.076923 +vt 0.634615 0.032051 +vt 0.634615 0.076923 +vt 0.737179 0.032051 +vt 0.737179 0.076923 +vt 0.839744 0.032051 +vt 0.839744 0.076923 +s off +f 14/1 110/2 112/3 16/4 +f 12/5 108/6 110/2 14/1 +f 10/7 106/8 108/6 12/5 +f 8/4 104/3 106/9 10/10 +f 6/1 102/2 104/3 8/4 +f 4/5 100/6 102/2 6/1 +f 2/7 98/8 100/6 4/5 +f 32/4 128/3 98/9 2/10 +f 30/1 126/2 128/3 32/4 +f 28/5 124/6 126/2 30/1 +f 26/7 122/8 124/6 28/5 +f 24/4 120/3 122/9 26/10 +f 22/1 118/2 120/3 24/4 +f 20/5 116/6 118/2 22/1 +f 18/7 114/8 116/6 20/5 +f 16/4 112/3 114/9 18/10 +f 145/11 130/12 210/13 +f 13/14 15/15 111/16 109/17 +f 11/18 13/14 109/17 107/19 +f 9/20 11/18 107/19 105/21 +f 7/15 9/22 105/23 103/16 +f 5/14 7/15 103/16 101/17 +f 3/18 5/14 101/17 99/19 +f 1/20 3/18 99/19 97/21 +f 31/15 1/22 97/23 127/16 +f 29/14 31/15 127/16 125/17 +f 27/18 29/14 125/17 123/19 +f 25/20 27/18 123/19 121/21 +f 23/15 25/22 121/23 119/16 +f 21/14 23/15 119/16 117/17 +f 19/18 21/14 117/17 115/19 +f 17/20 19/18 115/19 113/21 +f 15/15 17/22 113/23 111/16 +f 194/24 195/25 209/26 +f 195/25 196/27 209/26 +f 196/27 197/28 209/26 +f 197/28 198/29 209/26 +f 198/29 199/30 209/26 +f 199/30 200/31 209/26 +f 200/31 201/32 209/26 +f 201/32 202/33 209/26 +f 202/33 203/34 209/26 +f 203/34 204/35 209/26 +f 204/35 205/36 209/26 +f 205/36 206/37 209/26 +f 206/37 207/38 209/26 +f 207/38 208/39 209/26 +f 208/39 193/40 209/26 +f 193/40 194/24 209/26 +f 130/12 131/41 210/13 +f 131/41 132/42 210/13 +f 132/42 133/43 210/13 +f 133/43 134/44 210/13 +f 134/44 135/45 210/13 +f 135/45 136/46 210/13 +f 136/46 137/47 210/13 +f 137/47 138/48 210/13 +f 138/48 139/49 210/13 +f 139/49 140/50 210/13 +f 140/50 141/51 210/13 +f 141/51 142/52 210/13 +f 142/52 143/53 210/13 +f 143/53 144/54 210/13 +f 144/54 145/11 210/13 +s 1 +f 33/55 2/7 4/5 50/56 +f 50/56 4/5 6/1 51/57 +f 51/57 6/1 8/4 52/58 +f 52/58 8/4 10/10 53/59 +f 53/55 10/7 12/5 54/56 +f 54/56 12/5 14/1 55/57 +f 55/57 14/1 16/4 56/58 +f 56/58 16/4 18/10 57/59 +f 57/55 18/7 20/5 58/56 +f 58/56 20/5 22/1 59/57 +f 59/57 22/1 24/4 60/58 +f 60/58 24/4 26/10 61/59 +f 61/55 26/7 28/5 62/56 +f 62/56 28/5 30/1 63/57 +f 64/58 32/4 2/10 33/59 +f 63/57 30/1 32/4 64/58 +f 66/60 82/61 83/62 67/63 +f 67/63 83/62 84/64 68/65 +f 68/65 84/64 85/66 69/67 +f 69/68 85/69 86/61 70/60 +f 70/60 86/61 87/62 71/63 +f 71/63 87/62 88/64 72/65 +f 72/65 88/64 89/66 73/67 +f 73/68 89/69 90/61 74/60 +f 74/60 90/61 91/62 75/63 +f 75/63 91/62 92/64 76/65 +f 76/65 92/64 93/66 77/67 +f 77/68 93/69 94/61 78/60 +f 78/60 94/61 95/62 79/63 +f 80/65 96/64 65/66 81/67 +f 79/63 95/62 96/64 80/65 +f 65/69 33/55 50/56 82/61 +f 82/61 50/56 51/57 83/62 +f 83/62 51/57 52/58 84/64 +f 84/64 52/58 53/59 85/66 +f 85/69 53/55 54/56 86/61 +f 86/61 54/56 55/57 87/62 +f 87/62 55/57 56/58 88/64 +f 88/64 56/58 57/59 89/66 +f 89/69 57/55 58/56 90/61 +f 90/61 58/56 59/57 91/62 +f 91/62 59/57 60/58 92/64 +f 92/64 60/58 61/59 93/66 +f 93/69 61/55 62/56 94/61 +f 94/61 62/56 63/57 95/62 +f 96/64 64/58 33/59 65/66 +f 95/62 63/57 64/58 96/64 +f 1/21 49/70 34/71 3/19 +f 3/19 34/71 35/72 5/17 +f 5/17 35/72 36/73 7/16 +f 7/16 36/73 37/74 9/23 +f 9/21 37/70 38/71 11/19 +f 11/19 38/71 39/72 13/17 +f 13/17 39/72 40/73 15/16 +f 15/16 40/73 41/74 17/23 +f 17/21 41/70 42/71 19/19 +f 19/19 42/71 43/72 21/17 +f 21/17 43/72 44/73 23/16 +f 23/16 44/73 45/74 25/23 +f 25/21 45/70 46/71 27/19 +f 27/19 46/71 47/72 29/17 +f 31/16 48/73 49/74 1/23 +f 29/17 47/72 48/73 31/16 +f 49/70 81/68 66/60 34/71 +f 34/71 66/60 67/63 35/72 +f 35/72 67/63 68/65 36/73 +f 36/73 68/65 69/67 37/74 +f 37/70 69/68 70/60 38/71 +f 38/71 70/60 71/63 39/72 +f 39/72 71/63 72/65 40/73 +f 40/73 72/65 73/67 41/74 +f 41/70 73/68 74/60 42/71 +f 42/71 74/60 75/63 43/72 +f 43/72 75/63 76/65 44/73 +f 44/73 76/65 77/67 45/74 +f 45/70 77/68 78/60 46/71 +f 46/71 78/60 79/63 47/72 +f 48/73 80/65 81/67 49/74 +f 47/72 79/63 80/65 48/73 +f 65/69 82/61 66/60 81/68 +f 129/75 146/76 100/77 98/78 +f 146/76 147/79 102/80 100/77 +f 147/79 148/81 104/82 102/80 +f 148/81 149/83 106/84 104/82 +f 149/75 150/76 108/77 106/78 +f 150/76 151/79 110/80 108/77 +f 151/79 152/81 112/82 110/80 +f 152/81 153/83 114/84 112/82 +f 153/75 154/76 116/77 114/78 +f 154/76 155/79 118/80 116/77 +f 155/79 156/81 120/82 118/80 +f 156/81 157/83 122/84 120/82 +f 157/75 158/76 124/77 122/78 +f 158/76 159/79 126/80 124/77 +f 160/81 129/83 98/84 128/82 +f 159/79 160/81 128/82 126/80 +f 162/85 163/86 179/87 178/88 +f 163/86 164/89 180/90 179/87 +f 164/89 165/91 181/92 180/90 +f 165/93 166/85 182/88 181/94 +f 166/85 167/86 183/87 182/88 +f 167/86 168/89 184/90 183/87 +f 168/89 169/91 185/92 184/90 +f 169/93 170/85 186/88 185/94 +f 170/85 171/86 187/87 186/88 +f 171/86 172/89 188/90 187/87 +f 172/89 173/91 189/92 188/90 +f 173/93 174/85 190/88 189/94 +f 174/85 175/86 191/87 190/88 +f 176/89 177/91 161/92 192/90 +f 175/86 176/89 192/90 191/87 +f 161/94 178/88 146/76 129/75 +f 178/88 179/87 147/79 146/76 +f 179/87 180/90 148/81 147/79 +f 180/90 181/92 149/83 148/81 +f 181/94 182/88 150/76 149/75 +f 182/88 183/87 151/79 150/76 +f 183/87 184/90 152/81 151/79 +f 184/90 185/92 153/83 152/81 +f 185/94 186/88 154/76 153/75 +f 186/88 187/87 155/79 154/76 +f 187/87 188/90 156/81 155/79 +f 188/90 189/92 157/83 156/81 +f 189/94 190/88 158/76 157/75 +f 190/88 191/87 159/79 158/76 +f 192/90 161/92 129/83 160/81 +f 191/87 192/90 160/81 159/79 +f 97/95 99/96 130/97 145/98 +f 99/96 101/99 131/100 130/97 +f 101/99 103/101 132/102 131/100 +f 103/101 105/103 133/104 132/102 +f 105/95 107/96 134/97 133/98 +f 107/96 109/99 135/100 134/97 +f 109/99 111/101 136/102 135/100 +f 111/101 113/103 137/104 136/102 +f 113/95 115/96 138/97 137/98 +f 115/96 117/99 139/100 138/97 +f 117/99 119/101 140/102 139/100 +f 119/101 121/103 141/104 140/102 +f 121/95 123/96 142/97 141/98 +f 123/96 125/99 143/100 142/97 +f 127/101 97/103 145/104 144/102 +f 125/99 127/101 144/102 143/100 +f 193/98 208/97 162/85 177/93 +f 208/97 207/100 163/86 162/85 +f 207/100 206/102 164/89 163/86 +f 206/102 205/104 165/91 164/89 +f 205/98 204/97 166/85 165/93 +f 204/97 203/100 167/86 166/85 +f 203/100 202/102 168/89 167/86 +f 202/102 201/104 169/91 168/89 +f 201/98 200/97 170/85 169/93 +f 200/97 199/100 171/86 170/85 +f 199/100 198/102 172/89 171/86 +f 198/102 197/104 173/91 172/89 +f 197/98 196/97 174/85 173/93 +f 196/97 195/100 175/86 174/85 +f 194/102 193/104 177/91 176/89 +f 195/100 194/102 176/89 175/86 +f 161/94 177/93 162/85 178/88 diff --git a/models/cottages_barrel_closed.obj b/models/cottages_barrel_closed.obj new file mode 100644 index 0000000..f2ab55a --- /dev/null +++ b/models/cottages_barrel_closed.obj @@ -0,0 +1,453 @@ +# Blender v2.69 (sub 0) OBJ File: 'barrel-closed.blend' +# www.blender.org +o Cylinder +v 0.092835 -0.500001 -0.466712 +v 0.092835 0.500000 -0.466712 +v 0.264371 -0.500001 -0.395660 +v 0.264371 0.500000 -0.395660 +v 0.395660 -0.500001 -0.264371 +v 0.395660 0.500000 -0.264371 +v 0.466712 -0.500001 -0.092835 +v 0.466712 0.500000 -0.092835 +v 0.466712 -0.500001 0.092835 +v 0.466712 0.500000 0.092835 +v 0.395660 -0.500001 0.264371 +v 0.395660 0.500000 0.264371 +v 0.264371 -0.500001 0.395660 +v 0.264371 0.500000 0.395660 +v 0.092835 -0.500001 0.466712 +v 0.092835 0.500000 0.466712 +v -0.092835 -0.500001 0.466712 +v -0.092835 0.500000 0.466712 +v -0.264371 -0.500001 0.395660 +v -0.264371 0.500000 0.395660 +v -0.395660 -0.500001 0.264371 +v -0.395660 0.500000 0.264371 +v -0.466712 -0.500001 0.092835 +v -0.466712 0.500000 0.092835 +v -0.466712 -0.500001 -0.092835 +v -0.466712 0.500000 -0.092835 +v -0.395660 -0.500001 -0.264371 +v -0.395660 0.500000 -0.264371 +v -0.264371 -0.500001 -0.395660 +v -0.264371 0.500000 -0.395660 +v -0.092835 -0.500001 -0.466713 +v -0.092835 0.500000 -0.466713 +v 0.095930 0.413334 -0.482270 +v 0.273184 -0.413334 -0.408849 +v 0.408849 -0.413334 -0.273184 +v 0.482270 -0.413334 -0.095929 +v 0.482270 -0.413334 0.095930 +v 0.408849 -0.413334 0.273184 +v 0.273184 -0.413334 0.408849 +v 0.095929 -0.413334 0.482270 +v -0.095929 -0.413334 0.482270 +v -0.273184 -0.413334 0.408849 +v -0.408849 -0.413334 0.273184 +v -0.482270 -0.413334 0.095929 +v -0.482270 -0.413334 -0.095930 +v -0.408849 -0.413334 -0.273184 +v -0.273184 -0.413334 -0.408849 +v -0.095929 -0.413334 -0.482270 +v 0.095930 -0.413334 -0.482270 +v 0.273184 0.413334 -0.408849 +v 0.408849 0.413334 -0.273184 +v 0.482270 0.413334 -0.095929 +v 0.482270 0.413334 0.095930 +v 0.408849 0.413334 0.273184 +v 0.273184 0.413334 0.408849 +v 0.095929 0.413334 0.482270 +v -0.095929 0.413334 0.482270 +v -0.273184 0.413334 0.408849 +v -0.408849 0.413334 0.273184 +v -0.482270 0.413334 0.095929 +v -0.482270 0.413334 -0.095930 +v -0.408849 0.413334 -0.273184 +v -0.273184 0.413334 -0.408849 +v -0.095929 0.413334 -0.482270 +v 0.099128 0.114830 -0.498352 +v 0.282294 -0.114831 -0.422482 +v 0.422482 -0.114831 -0.282294 +v 0.498352 -0.114831 -0.099128 +v 0.498352 -0.114831 0.099128 +v 0.422482 -0.114831 0.282294 +v 0.282294 -0.114831 0.422482 +v 0.099128 -0.114831 0.498352 +v -0.099128 -0.114831 0.498352 +v -0.282294 -0.114831 0.422482 +v -0.422482 -0.114831 0.282294 +v -0.498352 -0.114831 0.099128 +v -0.498352 -0.114831 -0.099128 +v -0.422482 -0.114831 -0.282294 +v -0.282293 -0.114831 -0.422482 +v -0.099128 -0.114831 -0.498352 +v 0.099128 -0.114831 -0.498352 +v 0.282294 0.114830 -0.422482 +v 0.422482 0.114830 -0.282294 +v 0.498352 0.114830 -0.099128 +v 0.498352 0.114830 0.099128 +v 0.422482 0.114830 0.282294 +v 0.282294 0.114830 0.422482 +v 0.099128 0.114830 0.498352 +v -0.099128 0.114830 0.498352 +v -0.282294 0.114830 0.422482 +v -0.422482 0.114830 0.282294 +v -0.498352 0.114830 0.099128 +v -0.498352 0.114830 -0.099128 +v -0.422482 0.114830 -0.282294 +v -0.282293 0.114830 -0.422482 +v -0.099128 0.114830 -0.498352 +v 0.083551 -0.500001 -0.420041 +v 0.083551 0.500000 -0.420041 +v 0.237934 -0.500001 -0.356094 +v 0.237934 0.500000 -0.356094 +v 0.356094 -0.500001 -0.237934 +v 0.356094 0.500000 -0.237934 +v 0.420041 -0.500001 -0.083551 +v 0.420041 0.500000 -0.083551 +v 0.420041 -0.500001 0.083551 +v 0.420041 0.500000 0.083551 +v 0.356094 -0.500001 0.237934 +v 0.356094 0.500000 0.237934 +v 0.237934 -0.500001 0.356094 +v 0.237934 0.500000 0.356094 +v 0.083551 -0.500001 0.420041 +v 0.083551 0.500000 0.420041 +v -0.083551 -0.500001 0.420041 +v -0.083551 0.500000 0.420041 +v -0.237934 -0.500001 0.356094 +v -0.237934 0.500000 0.356094 +v -0.356094 -0.500001 0.237934 +v -0.356094 0.500000 0.237934 +v -0.420041 -0.500001 0.083551 +v -0.420041 0.500000 0.083551 +v -0.420041 -0.500001 -0.083551 +v -0.420041 0.500000 -0.083551 +v -0.356094 -0.500001 -0.237934 +v -0.356094 0.500000 -0.237934 +v -0.237934 -0.500001 -0.356094 +v -0.237934 0.500000 -0.356094 +v -0.083551 -0.500001 -0.420041 +v -0.083551 0.500000 -0.420041 +v 0.086337 0.413334 -0.434043 +v 0.245866 -0.413335 -0.367964 +v 0.367964 -0.413335 -0.245866 +v 0.434043 -0.413335 -0.086336 +v 0.434043 -0.413335 0.086337 +v 0.367964 -0.413335 0.245866 +v 0.245866 -0.413335 0.367964 +v 0.086337 -0.413335 0.434043 +v -0.086336 -0.413335 0.434043 +v -0.245866 -0.413335 0.367964 +v -0.367964 -0.413335 0.245866 +v -0.434043 -0.413335 0.086337 +v -0.434043 -0.413335 -0.086337 +v -0.367964 -0.413335 -0.245866 +v -0.245865 -0.413335 -0.367964 +v -0.086336 -0.413335 -0.434043 +v 0.086337 -0.413335 -0.434043 +v 0.245866 0.413334 -0.367964 +v 0.367964 0.413334 -0.245866 +v 0.434043 0.413334 -0.086336 +v 0.434043 0.413334 0.086337 +v 0.367964 0.413334 0.245866 +v 0.245866 0.413334 0.367964 +v 0.086337 0.413334 0.434043 +v -0.086336 0.413334 0.434043 +v -0.245866 0.413334 0.367964 +v -0.367964 0.413334 0.245866 +v -0.434043 0.413334 0.086337 +v -0.434043 0.413334 -0.086337 +v -0.367964 0.413334 -0.245866 +v -0.245865 0.413334 -0.367964 +v -0.086336 0.413334 -0.434043 +v 0.087776 0.428605 -0.441280 +v -0.087776 0.428605 -0.441280 +v -0.249965 0.428605 -0.374099 +v -0.374099 0.428605 -0.249965 +v -0.441280 0.428605 -0.087776 +v -0.441280 0.428605 0.087776 +v -0.374099 0.428605 0.249965 +v -0.249965 0.428605 0.374099 +v -0.087776 0.428605 0.441280 +v 0.087776 0.428605 0.441280 +v 0.249965 0.428605 0.374099 +v 0.374099 0.428605 0.249965 +v 0.441280 0.428605 0.087776 +v 0.441280 0.428605 -0.087776 +v 0.374099 0.428605 -0.249965 +v 0.249965 0.428605 -0.374099 +v 0.000000 0.428605 0.000000 +v -0.000000 -0.413334 0.000000 +vt 0.211538 0.442308 +vt 0.211538 0.467949 +vt 0.108974 0.467949 +vt 0.108974 0.442308 +vt 0.314103 0.442308 +vt 0.314103 0.467949 +vt 0.416667 0.442308 +vt 0.416667 0.467949 +vt 0.006410 0.467949 +vt 0.006410 0.442308 +vt 0.211792 0.993590 +vt 0.117562 0.954728 +vt 0.262789 0.738327 +vt 0.211538 0.006410 +vt 0.108974 0.006410 +vt 0.108974 0.032051 +vt 0.211538 0.032051 +vt 0.314103 0.006410 +vt 0.314103 0.032051 +vt 0.416667 0.006410 +vt 0.416667 0.032051 +vt 0.006410 0.006410 +vt 0.006410 0.032051 +vt 0.211361 0.993526 +vt 0.117394 0.954505 +vt 0.262040 0.737637 +vt 0.045447 0.882467 +vt 0.006475 0.788381 +vt 0.006410 0.686569 +vt 0.045263 0.592532 +vt 0.117118 0.520586 +vt 0.204627 0.488094 +vt 0.312719 0.481748 +vt 0.406687 0.520769 +vt 0.478633 0.592807 +vt 0.517605 0.686893 +vt 0.517670 0.788705 +vt 0.478816 0.882742 +vt 0.406962 0.954687 +vt 0.313044 0.993590 +vt 0.045441 0.882922 +vt 0.006410 0.789102 +vt 0.006410 0.687551 +vt 0.045442 0.593732 +vt 0.117562 0.521925 +vt 0.211793 0.483064 +vt 0.313787 0.483064 +vt 0.408016 0.521926 +vt 0.480136 0.593732 +vt 0.519168 0.687551 +vt 0.519168 0.789103 +vt 0.480136 0.882922 +vt 0.408016 0.954728 +vt 0.313786 0.993590 +vt 0.416667 0.397436 +vt 0.314103 0.397436 +vt 0.211538 0.397436 +vt 0.108974 0.397436 +vt 0.006410 0.397436 +vt 0.314103 0.185897 +vt 0.314103 0.282051 +vt 0.211538 0.282051 +vt 0.211538 0.185897 +vt 0.108974 0.282051 +vt 0.108974 0.185897 +vt 0.006410 0.282051 +vt 0.006410 0.185897 +vt 0.416667 0.185897 +vt 0.416667 0.282051 +vt 0.416667 0.076923 +vt 0.314103 0.076923 +vt 0.211538 0.076923 +vt 0.108974 0.076923 +vt 0.006410 0.076923 +vt 0.429487 0.397436 +vt 0.532051 0.397436 +vt 0.532051 0.442308 +vt 0.429487 0.442308 +vt 0.634615 0.397436 +vt 0.634615 0.442308 +vt 0.737179 0.397436 +vt 0.737179 0.442308 +vt 0.839744 0.397436 +vt 0.839744 0.442308 +vt 0.429487 0.032051 +vt 0.532051 0.032051 +vt 0.532051 0.076923 +vt 0.429487 0.076923 +vt 0.634615 0.032051 +vt 0.634615 0.076923 +vt 0.737179 0.032051 +vt 0.737179 0.076923 +vt 0.839744 0.032051 +vt 0.839744 0.076923 +s off +f 14/1 110/2 112/3 16/4 +f 12/5 108/6 110/2 14/1 +f 10/7 106/8 108/6 12/5 +f 8/4 104/3 106/9 10/10 +f 6/1 102/2 104/3 8/4 +f 4/5 100/6 102/2 6/1 +f 2/7 98/8 100/6 4/5 +f 32/4 128/3 98/9 2/10 +f 30/1 126/2 128/3 32/4 +f 28/5 124/6 126/2 30/1 +f 26/7 122/8 124/6 28/5 +f 24/4 120/3 122/9 26/10 +f 22/1 118/2 120/3 24/4 +f 20/5 116/6 118/2 22/1 +f 18/7 114/8 116/6 20/5 +f 16/4 112/3 114/9 18/10 +f 145/11 130/12 178/13 +f 13/14 15/15 111/16 109/17 +f 11/18 13/14 109/17 107/19 +f 9/20 11/18 107/19 105/21 +f 7/15 9/22 105/23 103/16 +f 5/14 7/15 103/16 101/17 +f 3/18 5/14 101/17 99/19 +f 1/20 3/18 99/19 97/21 +f 31/15 1/22 97/23 127/16 +f 29/14 31/15 127/16 125/17 +f 27/18 29/14 125/17 123/19 +f 25/20 27/18 123/19 121/21 +f 23/15 25/22 121/23 119/16 +f 21/14 23/15 119/16 117/17 +f 19/18 21/14 117/17 115/19 +f 17/20 19/18 115/19 113/21 +f 15/15 17/22 113/23 111/16 +f 162/24 163/25 177/26 +f 163/25 164/27 177/26 +f 164/27 165/28 177/26 +f 165/28 166/29 177/26 +f 166/29 167/30 177/26 +f 167/30 168/31 177/26 +f 168/31 169/32 177/26 +f 169/32 170/33 177/26 +f 170/33 171/34 177/26 +f 171/34 172/35 177/26 +f 172/35 173/36 177/26 +f 173/36 174/37 177/26 +f 174/37 175/38 177/26 +f 175/38 176/39 177/26 +f 176/39 161/40 177/26 +f 161/40 162/24 177/26 +f 130/12 131/41 178/13 +f 131/41 132/42 178/13 +f 132/42 133/43 178/13 +f 133/43 134/44 178/13 +f 134/44 135/45 178/13 +f 135/45 136/46 178/13 +f 136/46 137/47 178/13 +f 137/47 138/48 178/13 +f 138/48 139/49 178/13 +f 139/49 140/50 178/13 +f 140/50 141/51 178/13 +f 141/51 142/52 178/13 +f 142/52 143/53 178/13 +f 143/53 144/54 178/13 +f 144/54 145/11 178/13 +s 1 +f 33/55 2/7 4/5 50/56 +f 50/56 4/5 6/1 51/57 +f 51/57 6/1 8/4 52/58 +f 52/58 8/4 10/10 53/59 +f 53/55 10/7 12/5 54/56 +f 54/56 12/5 14/1 55/57 +f 55/57 14/1 16/4 56/58 +f 56/58 16/4 18/10 57/59 +f 57/55 18/7 20/5 58/56 +f 58/56 20/5 22/1 59/57 +f 59/57 22/1 24/4 60/58 +f 60/58 24/4 26/10 61/59 +f 61/55 26/7 28/5 62/56 +f 62/56 28/5 30/1 63/57 +f 64/58 32/4 2/10 33/59 +f 63/57 30/1 32/4 64/58 +f 66/60 82/61 83/62 67/63 +f 67/63 83/62 84/64 68/65 +f 68/65 84/64 85/66 69/67 +f 69/68 85/69 86/61 70/60 +f 70/60 86/61 87/62 71/63 +f 71/63 87/62 88/64 72/65 +f 72/65 88/64 89/66 73/67 +f 73/68 89/69 90/61 74/60 +f 74/60 90/61 91/62 75/63 +f 75/63 91/62 92/64 76/65 +f 76/65 92/64 93/66 77/67 +f 77/68 93/69 94/61 78/60 +f 78/60 94/61 95/62 79/63 +f 80/65 96/64 65/66 81/67 +f 79/63 95/62 96/64 80/65 +f 65/69 33/55 50/56 82/61 +f 82/61 50/56 51/57 83/62 +f 83/62 51/57 52/58 84/64 +f 84/64 52/58 53/59 85/66 +f 85/69 53/55 54/56 86/61 +f 86/61 54/56 55/57 87/62 +f 87/62 55/57 56/58 88/64 +f 88/64 56/58 57/59 89/66 +f 89/69 57/55 58/56 90/61 +f 90/61 58/56 59/57 91/62 +f 91/62 59/57 60/58 92/64 +f 92/64 60/58 61/59 93/66 +f 93/69 61/55 62/56 94/61 +f 94/61 62/56 63/57 95/62 +f 96/64 64/58 33/59 65/66 +f 95/62 63/57 64/58 96/64 +f 1/21 49/70 34/71 3/19 +f 3/19 34/71 35/72 5/17 +f 5/17 35/72 36/73 7/16 +f 7/16 36/73 37/74 9/23 +f 9/21 37/70 38/71 11/19 +f 11/19 38/71 39/72 13/17 +f 13/17 39/72 40/73 15/16 +f 15/16 40/73 41/74 17/23 +f 17/21 41/70 42/71 19/19 +f 19/19 42/71 43/72 21/17 +f 21/17 43/72 44/73 23/16 +f 23/16 44/73 45/74 25/23 +f 25/21 45/70 46/71 27/19 +f 27/19 46/71 47/72 29/17 +f 31/16 48/73 49/74 1/23 +f 29/17 47/72 48/73 31/16 +f 49/70 81/68 66/60 34/71 +f 34/71 66/60 67/63 35/72 +f 35/72 67/63 68/65 36/73 +f 36/73 68/65 69/67 37/74 +f 37/70 69/68 70/60 38/71 +f 38/71 70/60 71/63 39/72 +f 39/72 71/63 72/65 40/73 +f 40/73 72/65 73/67 41/74 +f 41/70 73/68 74/60 42/71 +f 42/71 74/60 75/63 43/72 +f 43/72 75/63 76/65 44/73 +f 44/73 76/65 77/67 45/74 +f 45/70 77/68 78/60 46/71 +f 46/71 78/60 79/63 47/72 +f 48/73 80/65 81/67 49/74 +f 47/72 79/63 80/65 48/73 +f 65/69 82/61 66/60 81/68 +f 129/75 146/76 100/77 98/78 +f 146/76 147/79 102/80 100/77 +f 147/79 148/81 104/82 102/80 +f 148/81 149/83 106/84 104/82 +f 149/75 150/76 108/77 106/78 +f 150/76 151/79 110/80 108/77 +f 151/79 152/81 112/82 110/80 +f 152/81 153/83 114/84 112/82 +f 153/75 154/76 116/77 114/78 +f 154/76 155/79 118/80 116/77 +f 155/79 156/81 120/82 118/80 +f 156/81 157/83 122/84 120/82 +f 157/75 158/76 124/77 122/78 +f 158/76 159/79 126/80 124/77 +f 160/81 129/83 98/84 128/82 +f 159/79 160/81 128/82 126/80 +f 97/85 99/86 130/87 145/88 +f 99/86 101/89 131/90 130/87 +f 101/89 103/91 132/92 131/90 +f 103/91 105/93 133/94 132/92 +f 105/85 107/86 134/87 133/88 +f 107/86 109/89 135/90 134/87 +f 109/89 111/91 136/92 135/90 +f 111/91 113/93 137/94 136/92 +f 113/85 115/86 138/87 137/88 +f 115/86 117/89 139/90 138/87 +f 117/89 119/91 140/92 139/90 +f 119/91 121/93 141/94 140/92 +f 121/85 123/86 142/87 141/88 +f 123/86 125/89 143/90 142/87 +f 127/91 97/93 145/94 144/92 +f 125/89 127/91 144/92 143/90 diff --git a/models/cottages_barrel_closed_lying.obj b/models/cottages_barrel_closed_lying.obj new file mode 100644 index 0000000..ae22045 --- /dev/null +++ b/models/cottages_barrel_closed_lying.obj @@ -0,0 +1,453 @@ +# Blender v2.69 (sub 0) OBJ File: 'barrel-closed.blend' +# www.blender.org +o Cylinder +v 0.500001 0.092835 -0.466712 +v -0.500000 0.092835 -0.466712 +v 0.500001 0.264371 -0.395660 +v -0.500000 0.264371 -0.395660 +v 0.500001 0.395660 -0.264371 +v -0.500000 0.395660 -0.264371 +v 0.500001 0.466712 -0.092835 +v -0.500000 0.466713 -0.092835 +v 0.500001 0.466712 0.092835 +v -0.500000 0.466713 0.092835 +v 0.500001 0.395660 0.264371 +v -0.500000 0.395660 0.264371 +v 0.500001 0.264371 0.395660 +v -0.500000 0.264371 0.395660 +v 0.500001 0.092835 0.466712 +v -0.500000 0.092835 0.466712 +v 0.500001 -0.092835 0.466712 +v -0.500000 -0.092835 0.466712 +v 0.500001 -0.264371 0.395660 +v -0.500000 -0.264371 0.395660 +v 0.500001 -0.395660 0.264372 +v -0.500000 -0.395660 0.264371 +v 0.500001 -0.466713 0.092835 +v -0.500000 -0.466712 0.092835 +v 0.500001 -0.466713 -0.092835 +v -0.500000 -0.466712 -0.092835 +v 0.500001 -0.395660 -0.264371 +v -0.500000 -0.395660 -0.264372 +v 0.500001 -0.264371 -0.395660 +v -0.500000 -0.264371 -0.395660 +v 0.500001 -0.092835 -0.466712 +v -0.500000 -0.092835 -0.466713 +v -0.413334 0.095930 -0.482270 +v 0.413335 0.273184 -0.408849 +v 0.413335 0.408849 -0.273184 +v 0.413335 0.482270 -0.095929 +v 0.413335 0.482270 0.095930 +v 0.413335 0.408849 0.273184 +v 0.413334 0.273184 0.408849 +v 0.413334 0.095929 0.482270 +v 0.413334 -0.095930 0.482270 +v 0.413334 -0.273184 0.408849 +v 0.413334 -0.408849 0.273184 +v 0.413334 -0.482270 0.095930 +v 0.413334 -0.482270 -0.095929 +v 0.413334 -0.408849 -0.273184 +v 0.413334 -0.273184 -0.408849 +v 0.413334 -0.095929 -0.482270 +v 0.413335 0.095929 -0.482270 +v -0.413334 0.273184 -0.408849 +v -0.413334 0.408849 -0.273184 +v -0.413334 0.482270 -0.095929 +v -0.413334 0.482270 0.095929 +v -0.413334 0.408849 0.273184 +v -0.413334 0.273184 0.408849 +v -0.413334 0.095930 0.482270 +v -0.413334 -0.095929 0.482270 +v -0.413334 -0.273184 0.408849 +v -0.413334 -0.408849 0.273184 +v -0.413334 -0.482270 0.095929 +v -0.413334 -0.482270 -0.095930 +v -0.413334 -0.408849 -0.273184 +v -0.413334 -0.273184 -0.408849 +v -0.413334 -0.095929 -0.482270 +v -0.114830 0.099128 -0.498352 +v 0.114831 0.282294 -0.422482 +v 0.114831 0.422482 -0.282294 +v 0.114831 0.498352 -0.099128 +v 0.114831 0.498352 0.099128 +v 0.114831 0.422482 0.282294 +v 0.114831 0.282294 0.422482 +v 0.114831 0.099128 0.498352 +v 0.114831 -0.099128 0.498352 +v 0.114831 -0.282294 0.422482 +v 0.114831 -0.422482 0.282294 +v 0.114831 -0.498352 0.099128 +v 0.114831 -0.498352 -0.099128 +v 0.114831 -0.422482 -0.282294 +v 0.114831 -0.282293 -0.422482 +v 0.114831 -0.099128 -0.498352 +v 0.114831 0.099128 -0.498352 +v -0.114830 0.282294 -0.422482 +v -0.114830 0.422482 -0.282294 +v -0.114830 0.498352 -0.099128 +v -0.114830 0.498352 0.099128 +v -0.114830 0.422482 0.282294 +v -0.114830 0.282294 0.422482 +v -0.114830 0.099128 0.498352 +v -0.114830 -0.099128 0.498352 +v -0.114830 -0.282293 0.422482 +v -0.114830 -0.422482 0.282294 +v -0.114830 -0.498352 0.099128 +v -0.114830 -0.498352 -0.099128 +v -0.114830 -0.422482 -0.282294 +v -0.114830 -0.282293 -0.422482 +v -0.114830 -0.099128 -0.498352 +v 0.500001 0.083551 -0.420041 +v -0.500000 0.083552 -0.420041 +v 0.500001 0.237934 -0.356094 +v -0.500000 0.237934 -0.356094 +v 0.500001 0.356094 -0.237934 +v -0.500000 0.356094 -0.237934 +v 0.500001 0.420041 -0.083551 +v -0.500000 0.420041 -0.083551 +v 0.500001 0.420041 0.083552 +v -0.500000 0.420041 0.083551 +v 0.500001 0.356094 0.237934 +v -0.500000 0.356094 0.237934 +v 0.500001 0.237934 0.356094 +v -0.500000 0.237934 0.356094 +v 0.500001 0.083551 0.420041 +v -0.500000 0.083551 0.420041 +v 0.500001 -0.083551 0.420041 +v -0.500000 -0.083551 0.420041 +v 0.500001 -0.237934 0.356094 +v -0.500000 -0.237934 0.356094 +v 0.500001 -0.356094 0.237934 +v -0.500000 -0.356094 0.237934 +v 0.500001 -0.420041 0.083551 +v -0.500000 -0.420041 0.083551 +v 0.500001 -0.420041 -0.083551 +v -0.500000 -0.420041 -0.083552 +v 0.500001 -0.356094 -0.237934 +v -0.500000 -0.356094 -0.237934 +v 0.500001 -0.237934 -0.356094 +v -0.500000 -0.237934 -0.356094 +v 0.500001 -0.083551 -0.420041 +v -0.500000 -0.083551 -0.420041 +v -0.413334 0.086337 -0.434043 +v 0.413335 0.245866 -0.367964 +v 0.413335 0.367964 -0.245866 +v 0.413335 0.434043 -0.086336 +v 0.413335 0.434043 0.086337 +v 0.413335 0.367964 0.245866 +v 0.413335 0.245866 0.367964 +v 0.413334 0.086336 0.434043 +v 0.413334 -0.086337 0.434043 +v 0.413334 -0.245866 0.367964 +v 0.413334 -0.367964 0.245866 +v 0.413334 -0.434043 0.086337 +v 0.413334 -0.434043 -0.086337 +v 0.413334 -0.367964 -0.245866 +v 0.413335 -0.245865 -0.367964 +v 0.413335 -0.086336 -0.434043 +v 0.413335 0.086336 -0.434043 +v -0.413334 0.245866 -0.367964 +v -0.413334 0.367964 -0.245866 +v -0.413334 0.434043 -0.086337 +v -0.413334 0.434043 0.086337 +v -0.413334 0.367964 0.245866 +v -0.413334 0.245866 0.367964 +v -0.413334 0.086337 0.434043 +v -0.413334 -0.086336 0.434043 +v -0.413334 -0.245865 0.367964 +v -0.413334 -0.367964 0.245866 +v -0.413334 -0.434043 0.086337 +v -0.413334 -0.434043 -0.086337 +v -0.413334 -0.367964 -0.245866 +v -0.413334 -0.245865 -0.367964 +v -0.413334 -0.086336 -0.434043 +v -0.428605 0.087776 -0.441280 +v -0.428605 -0.087776 -0.441280 +v -0.428605 -0.249965 -0.374099 +v -0.428605 -0.374099 -0.249965 +v -0.428605 -0.441280 -0.087776 +v -0.428605 -0.441280 0.087776 +v -0.428605 -0.374099 0.249965 +v -0.428605 -0.249965 0.374099 +v -0.428605 -0.087776 0.441280 +v -0.428605 0.087776 0.441280 +v -0.428605 0.249965 0.374099 +v -0.428605 0.374099 0.249965 +v -0.428605 0.441280 0.087776 +v -0.428605 0.441280 -0.087776 +v -0.428605 0.374099 -0.249965 +v -0.428605 0.249965 -0.374099 +v -0.428605 0.000000 -0.000000 +v 0.413334 -0.000000 0.000000 +vt 0.211538 0.442308 +vt 0.211538 0.467949 +vt 0.108974 0.467949 +vt 0.108974 0.442308 +vt 0.314103 0.442308 +vt 0.314103 0.467949 +vt 0.416667 0.442308 +vt 0.416667 0.467949 +vt 0.006410 0.467949 +vt 0.006410 0.442308 +vt 0.211792 0.993590 +vt 0.117562 0.954728 +vt 0.262789 0.738327 +vt 0.211538 0.006410 +vt 0.108974 0.006410 +vt 0.108974 0.032051 +vt 0.211538 0.032051 +vt 0.314103 0.006410 +vt 0.314103 0.032051 +vt 0.416667 0.006410 +vt 0.416667 0.032051 +vt 0.006410 0.006410 +vt 0.006410 0.032051 +vt 0.211361 0.993526 +vt 0.117394 0.954505 +vt 0.262040 0.737637 +vt 0.045447 0.882467 +vt 0.006475 0.788381 +vt 0.006410 0.686569 +vt 0.045263 0.592532 +vt 0.117118 0.520586 +vt 0.204627 0.488094 +vt 0.312719 0.481748 +vt 0.406687 0.520769 +vt 0.478633 0.592807 +vt 0.517605 0.686893 +vt 0.517670 0.788705 +vt 0.478816 0.882742 +vt 0.406962 0.954687 +vt 0.313044 0.993590 +vt 0.045441 0.882922 +vt 0.006410 0.789102 +vt 0.006410 0.687551 +vt 0.045442 0.593732 +vt 0.117562 0.521925 +vt 0.211793 0.483064 +vt 0.313787 0.483064 +vt 0.408016 0.521926 +vt 0.480136 0.593732 +vt 0.519168 0.687551 +vt 0.519168 0.789103 +vt 0.480136 0.882922 +vt 0.408016 0.954728 +vt 0.313786 0.993590 +vt 0.416667 0.397436 +vt 0.314103 0.397436 +vt 0.211538 0.397436 +vt 0.108974 0.397436 +vt 0.006410 0.397436 +vt 0.314103 0.185897 +vt 0.314103 0.282051 +vt 0.211538 0.282051 +vt 0.211538 0.185897 +vt 0.108974 0.282051 +vt 0.108974 0.185897 +vt 0.006410 0.282051 +vt 0.006410 0.185897 +vt 0.416667 0.185897 +vt 0.416667 0.282051 +vt 0.416667 0.076923 +vt 0.314103 0.076923 +vt 0.211538 0.076923 +vt 0.108974 0.076923 +vt 0.006410 0.076923 +vt 0.429487 0.397436 +vt 0.532051 0.397436 +vt 0.532051 0.442308 +vt 0.429487 0.442308 +vt 0.634615 0.397436 +vt 0.634615 0.442308 +vt 0.737179 0.397436 +vt 0.737179 0.442308 +vt 0.839744 0.397436 +vt 0.839744 0.442308 +vt 0.429487 0.032051 +vt 0.532051 0.032051 +vt 0.532051 0.076923 +vt 0.429487 0.076923 +vt 0.634615 0.032051 +vt 0.634615 0.076923 +vt 0.737179 0.032051 +vt 0.737179 0.076923 +vt 0.839744 0.032051 +vt 0.839744 0.076923 +s off +f 14/1 110/2 112/3 16/4 +f 12/5 108/6 110/2 14/1 +f 10/7 106/8 108/6 12/5 +f 8/4 104/3 106/9 10/10 +f 6/1 102/2 104/3 8/4 +f 4/5 100/6 102/2 6/1 +f 2/7 98/8 100/6 4/5 +f 32/4 128/3 98/9 2/10 +f 30/1 126/2 128/3 32/4 +f 28/5 124/6 126/2 30/1 +f 26/7 122/8 124/6 28/5 +f 24/4 120/3 122/9 26/10 +f 22/1 118/2 120/3 24/4 +f 20/5 116/6 118/2 22/1 +f 18/7 114/8 116/6 20/5 +f 16/4 112/3 114/9 18/10 +f 145/11 130/12 178/13 +f 13/14 15/15 111/16 109/17 +f 11/18 13/14 109/17 107/19 +f 9/20 11/18 107/19 105/21 +f 7/15 9/22 105/23 103/16 +f 5/14 7/15 103/16 101/17 +f 3/18 5/14 101/17 99/19 +f 1/20 3/18 99/19 97/21 +f 31/15 1/22 97/23 127/16 +f 29/14 31/15 127/16 125/17 +f 27/18 29/14 125/17 123/19 +f 25/20 27/18 123/19 121/21 +f 23/15 25/22 121/23 119/16 +f 21/14 23/15 119/16 117/17 +f 19/18 21/14 117/17 115/19 +f 17/20 19/18 115/19 113/21 +f 15/15 17/22 113/23 111/16 +f 162/24 163/25 177/26 +f 163/25 164/27 177/26 +f 164/27 165/28 177/26 +f 165/28 166/29 177/26 +f 166/29 167/30 177/26 +f 167/30 168/31 177/26 +f 168/31 169/32 177/26 +f 169/32 170/33 177/26 +f 170/33 171/34 177/26 +f 171/34 172/35 177/26 +f 172/35 173/36 177/26 +f 173/36 174/37 177/26 +f 174/37 175/38 177/26 +f 175/38 176/39 177/26 +f 176/39 161/40 177/26 +f 161/40 162/24 177/26 +f 130/12 131/41 178/13 +f 131/41 132/42 178/13 +f 132/42 133/43 178/13 +f 133/43 134/44 178/13 +f 134/44 135/45 178/13 +f 135/45 136/46 178/13 +f 136/46 137/47 178/13 +f 137/47 138/48 178/13 +f 138/48 139/49 178/13 +f 139/49 140/50 178/13 +f 140/50 141/51 178/13 +f 141/51 142/52 178/13 +f 142/52 143/53 178/13 +f 143/53 144/54 178/13 +f 144/54 145/11 178/13 +s 1 +f 33/55 2/7 4/5 50/56 +f 50/56 4/5 6/1 51/57 +f 51/57 6/1 8/4 52/58 +f 52/58 8/4 10/10 53/59 +f 53/55 10/7 12/5 54/56 +f 54/56 12/5 14/1 55/57 +f 55/57 14/1 16/4 56/58 +f 56/58 16/4 18/10 57/59 +f 57/55 18/7 20/5 58/56 +f 58/56 20/5 22/1 59/57 +f 59/57 22/1 24/4 60/58 +f 60/58 24/4 26/10 61/59 +f 61/55 26/7 28/5 62/56 +f 62/56 28/5 30/1 63/57 +f 64/58 32/4 2/10 33/59 +f 63/57 30/1 32/4 64/58 +f 66/60 82/61 83/62 67/63 +f 67/63 83/62 84/64 68/65 +f 68/65 84/64 85/66 69/67 +f 69/68 85/69 86/61 70/60 +f 70/60 86/61 87/62 71/63 +f 71/63 87/62 88/64 72/65 +f 72/65 88/64 89/66 73/67 +f 73/68 89/69 90/61 74/60 +f 74/60 90/61 91/62 75/63 +f 75/63 91/62 92/64 76/65 +f 76/65 92/64 93/66 77/67 +f 77/68 93/69 94/61 78/60 +f 78/60 94/61 95/62 79/63 +f 80/65 96/64 65/66 81/67 +f 79/63 95/62 96/64 80/65 +f 65/69 33/55 50/56 82/61 +f 82/61 50/56 51/57 83/62 +f 83/62 51/57 52/58 84/64 +f 84/64 52/58 53/59 85/66 +f 85/69 53/55 54/56 86/61 +f 86/61 54/56 55/57 87/62 +f 87/62 55/57 56/58 88/64 +f 88/64 56/58 57/59 89/66 +f 89/69 57/55 58/56 90/61 +f 90/61 58/56 59/57 91/62 +f 91/62 59/57 60/58 92/64 +f 92/64 60/58 61/59 93/66 +f 93/69 61/55 62/56 94/61 +f 94/61 62/56 63/57 95/62 +f 96/64 64/58 33/59 65/66 +f 95/62 63/57 64/58 96/64 +f 1/21 49/70 34/71 3/19 +f 3/19 34/71 35/72 5/17 +f 5/17 35/72 36/73 7/16 +f 7/16 36/73 37/74 9/23 +f 9/21 37/70 38/71 11/19 +f 11/19 38/71 39/72 13/17 +f 13/17 39/72 40/73 15/16 +f 15/16 40/73 41/74 17/23 +f 17/21 41/70 42/71 19/19 +f 19/19 42/71 43/72 21/17 +f 21/17 43/72 44/73 23/16 +f 23/16 44/73 45/74 25/23 +f 25/21 45/70 46/71 27/19 +f 27/19 46/71 47/72 29/17 +f 31/16 48/73 49/74 1/23 +f 29/17 47/72 48/73 31/16 +f 49/70 81/68 66/60 34/71 +f 34/71 66/60 67/63 35/72 +f 35/72 67/63 68/65 36/73 +f 36/73 68/65 69/67 37/74 +f 37/70 69/68 70/60 38/71 +f 38/71 70/60 71/63 39/72 +f 39/72 71/63 72/65 40/73 +f 40/73 72/65 73/67 41/74 +f 41/70 73/68 74/60 42/71 +f 42/71 74/60 75/63 43/72 +f 43/72 75/63 76/65 44/73 +f 44/73 76/65 77/67 45/74 +f 45/70 77/68 78/60 46/71 +f 46/71 78/60 79/63 47/72 +f 48/73 80/65 81/67 49/74 +f 47/72 79/63 80/65 48/73 +f 65/69 82/61 66/60 81/68 +f 129/75 146/76 100/77 98/78 +f 146/76 147/79 102/80 100/77 +f 147/79 148/81 104/82 102/80 +f 148/81 149/83 106/84 104/82 +f 149/75 150/76 108/77 106/78 +f 150/76 151/79 110/80 108/77 +f 151/79 152/81 112/82 110/80 +f 152/81 153/83 114/84 112/82 +f 153/75 154/76 116/77 114/78 +f 154/76 155/79 118/80 116/77 +f 155/79 156/81 120/82 118/80 +f 156/81 157/83 122/84 120/82 +f 157/75 158/76 124/77 122/78 +f 158/76 159/79 126/80 124/77 +f 160/81 129/83 98/84 128/82 +f 159/79 160/81 128/82 126/80 +f 97/85 99/86 130/87 145/88 +f 99/86 101/89 131/90 130/87 +f 101/89 103/91 132/92 131/90 +f 103/91 105/93 133/94 132/92 +f 105/85 107/86 134/87 133/88 +f 107/86 109/89 135/90 134/87 +f 109/89 111/91 136/92 135/90 +f 111/91 113/93 137/94 136/92 +f 113/85 115/86 138/87 137/88 +f 115/86 117/89 139/90 138/87 +f 117/89 119/91 140/92 139/90 +f 119/91 121/93 141/94 140/92 +f 121/85 123/86 142/87 141/88 +f 123/86 125/89 143/90 142/87 +f 127/91 97/93 145/94 144/92 +f 125/89 127/91 144/92 143/90 diff --git a/models/cottages_barrel_lying.obj b/models/cottages_barrel_lying.obj new file mode 100644 index 0000000..dadb7b1 --- /dev/null +++ b/models/cottages_barrel_lying.obj @@ -0,0 +1,543 @@ +# Blender v2.69 (sub 0) OBJ File: 'barrel.blend' +# www.blender.org +o Cylinder +v 0.500001 0.092835 -0.466712 +v -0.500000 0.092835 -0.466712 +v 0.500001 0.264371 -0.395660 +v -0.500000 0.264371 -0.395660 +v 0.500001 0.395660 -0.264371 +v -0.500000 0.395660 -0.264371 +v 0.500001 0.466712 -0.092835 +v -0.500000 0.466713 -0.092835 +v 0.500001 0.466712 0.092835 +v -0.500000 0.466713 0.092835 +v 0.500001 0.395660 0.264371 +v -0.500000 0.395660 0.264371 +v 0.500001 0.264371 0.395660 +v -0.500000 0.264371 0.395660 +v 0.500001 0.092835 0.466712 +v -0.500000 0.092835 0.466712 +v 0.500001 -0.092835 0.466712 +v -0.500000 -0.092835 0.466712 +v 0.500001 -0.264371 0.395660 +v -0.500000 -0.264371 0.395660 +v 0.500001 -0.395660 0.264372 +v -0.500000 -0.395660 0.264371 +v 0.500001 -0.466713 0.092835 +v -0.500000 -0.466712 0.092835 +v 0.500001 -0.466713 -0.092835 +v -0.500000 -0.466712 -0.092835 +v 0.500001 -0.395660 -0.264371 +v -0.500000 -0.395660 -0.264372 +v 0.500001 -0.264371 -0.395660 +v -0.500000 -0.264371 -0.395660 +v 0.500001 -0.092835 -0.466712 +v -0.500000 -0.092835 -0.466713 +v -0.413334 0.095930 -0.482270 +v 0.413335 0.273184 -0.408849 +v 0.413335 0.408849 -0.273184 +v 0.413335 0.482270 -0.095929 +v 0.413335 0.482270 0.095930 +v 0.413334 0.408849 0.273184 +v 0.413334 0.273184 0.408849 +v 0.413334 0.095929 0.482270 +v 0.413334 -0.095930 0.482270 +v 0.413334 -0.273184 0.408849 +v 0.413334 -0.408849 0.273184 +v 0.413334 -0.482270 0.095930 +v 0.413334 -0.482270 -0.095929 +v 0.413334 -0.408849 -0.273184 +v 0.413334 -0.273184 -0.408849 +v 0.413335 -0.095929 -0.482270 +v 0.413335 0.095929 -0.482270 +v -0.413334 0.273184 -0.408849 +v -0.413334 0.408849 -0.273184 +v -0.413334 0.482270 -0.095929 +v -0.413334 0.482270 0.095929 +v -0.413334 0.408849 0.273184 +v -0.413334 0.273184 0.408849 +v -0.413334 0.095930 0.482270 +v -0.413334 -0.095929 0.482270 +v -0.413334 -0.273184 0.408849 +v -0.413334 -0.408849 0.273184 +v -0.413334 -0.482270 0.095929 +v -0.413334 -0.482270 -0.095930 +v -0.413334 -0.408849 -0.273184 +v -0.413334 -0.273184 -0.408849 +v -0.413334 -0.095929 -0.482270 +v -0.114830 0.099128 -0.498352 +v 0.114831 0.282294 -0.422482 +v 0.114831 0.422482 -0.282293 +v 0.114831 0.498352 -0.099128 +v 0.114831 0.498352 0.099128 +v 0.114831 0.422482 0.282294 +v 0.114831 0.282294 0.422482 +v 0.114831 0.099128 0.498352 +v 0.114831 -0.099128 0.498352 +v 0.114831 -0.282294 0.422482 +v 0.114831 -0.422482 0.282294 +v 0.114831 -0.498352 0.099128 +v 0.114831 -0.498352 -0.099128 +v 0.114831 -0.422482 -0.282294 +v 0.114831 -0.282293 -0.422482 +v 0.114831 -0.099128 -0.498352 +v 0.114831 0.099128 -0.498352 +v -0.114830 0.282294 -0.422482 +v -0.114830 0.422482 -0.282294 +v -0.114830 0.498352 -0.099128 +v -0.114830 0.498352 0.099128 +v -0.114830 0.422482 0.282294 +v -0.114830 0.282294 0.422482 +v -0.114830 0.099128 0.498352 +v -0.114830 -0.099128 0.498352 +v -0.114830 -0.282293 0.422482 +v -0.114830 -0.422482 0.282294 +v -0.114830 -0.498352 0.099128 +v -0.114830 -0.498352 -0.099128 +v -0.114830 -0.422482 -0.282294 +v -0.114830 -0.282293 -0.422482 +v -0.114830 -0.099128 -0.498352 +v 0.500001 0.083551 -0.420041 +v -0.500000 0.083552 -0.420041 +v 0.500001 0.237934 -0.356094 +v -0.500000 0.237934 -0.356094 +v 0.500001 0.356094 -0.237934 +v -0.500000 0.356094 -0.237934 +v 0.500001 0.420041 -0.083551 +v -0.500000 0.420041 -0.083551 +v 0.500001 0.420041 0.083552 +v -0.500000 0.420041 0.083551 +v 0.500001 0.356094 0.237934 +v -0.500000 0.356094 0.237934 +v 0.500001 0.237934 0.356094 +v -0.500000 0.237934 0.356094 +v 0.500001 0.083551 0.420041 +v -0.500000 0.083551 0.420041 +v 0.500001 -0.083551 0.420041 +v -0.500000 -0.083551 0.420041 +v 0.500001 -0.237934 0.356094 +v -0.500000 -0.237934 0.356094 +v 0.500001 -0.356094 0.237934 +v -0.500000 -0.356094 0.237934 +v 0.500001 -0.420041 0.083551 +v -0.500000 -0.420041 0.083551 +v 0.500001 -0.420041 -0.083551 +v -0.500000 -0.420041 -0.083552 +v 0.500001 -0.356094 -0.237934 +v -0.500000 -0.356094 -0.237934 +v 0.500001 -0.237934 -0.356094 +v -0.500000 -0.237934 -0.356094 +v 0.500001 -0.083551 -0.420041 +v -0.500000 -0.083551 -0.420041 +v -0.413334 0.086337 -0.434043 +v 0.413335 0.245866 -0.367964 +v 0.413335 0.367964 -0.245865 +v 0.413335 0.434043 -0.086336 +v 0.413335 0.434043 0.086337 +v 0.413335 0.367964 0.245866 +v 0.413335 0.245866 0.367964 +v 0.413334 0.086336 0.434043 +v 0.413334 -0.086337 0.434043 +v 0.413334 -0.245866 0.367964 +v 0.413334 -0.367964 0.245866 +v 0.413334 -0.434043 0.086337 +v 0.413334 -0.434043 -0.086337 +v 0.413334 -0.367964 -0.245866 +v 0.413335 -0.245865 -0.367964 +v 0.413335 -0.086336 -0.434043 +v 0.413335 0.086336 -0.434043 +v -0.413334 0.245866 -0.367964 +v -0.413334 0.367964 -0.245866 +v -0.413334 0.434043 -0.086337 +v -0.413334 0.434043 0.086337 +v -0.413334 0.367964 0.245866 +v -0.413334 0.245866 0.367964 +v -0.413334 0.086337 0.434043 +v -0.413334 -0.086336 0.434043 +v -0.413334 -0.245865 0.367964 +v -0.413334 -0.367964 0.245866 +v -0.413334 -0.434043 0.086337 +v -0.413334 -0.434043 -0.086337 +v -0.413334 -0.367964 -0.245866 +v -0.413334 -0.245865 -0.367964 +v -0.413334 -0.086336 -0.434043 +v -0.114830 0.089216 -0.448517 +v 0.114831 0.254064 -0.380234 +v 0.114831 0.380234 -0.254064 +v 0.114831 0.448517 -0.089215 +v 0.114831 0.448517 0.089216 +v 0.114831 0.380234 0.254064 +v 0.114831 0.254064 0.380234 +v 0.114831 0.089215 0.448517 +v 0.114831 -0.089215 0.448517 +v 0.114831 -0.254064 0.380234 +v 0.114831 -0.380234 0.254064 +v 0.114831 -0.448517 0.089216 +v 0.114831 -0.448517 -0.089216 +v 0.114831 -0.380234 -0.254064 +v 0.114831 -0.254064 -0.380234 +v 0.114831 -0.089215 -0.448517 +v 0.114831 0.089216 -0.448517 +v -0.114830 0.254064 -0.380234 +v -0.114830 0.380234 -0.254064 +v -0.114830 0.448517 -0.089215 +v -0.114830 0.448517 0.089216 +v -0.114830 0.380234 0.254064 +v -0.114830 0.254064 0.380234 +v -0.114830 0.089216 0.448517 +v -0.114830 -0.089215 0.448517 +v -0.114830 -0.254064 0.380234 +v -0.114830 -0.380234 0.254064 +v -0.114830 -0.448517 0.089216 +v -0.114830 -0.448517 -0.089216 +v -0.114830 -0.380234 -0.254064 +v -0.114830 -0.254064 -0.380234 +v -0.114830 -0.089215 -0.448517 +v 0.352645 0.087776 -0.441280 +v 0.352645 -0.087776 -0.441280 +v 0.352645 -0.249965 -0.374099 +v 0.352645 -0.374099 -0.249965 +v 0.352645 -0.441280 -0.087776 +v 0.352645 -0.441280 0.087776 +v 0.352645 -0.374099 0.249965 +v 0.352645 -0.249965 0.374099 +v 0.352645 -0.087776 0.441280 +v 0.352645 0.087776 0.441280 +v 0.352645 0.249965 0.374099 +v 0.352645 0.374099 0.249965 +v 0.352645 0.441280 0.087776 +v 0.352645 0.441280 -0.087776 +v 0.352645 0.374099 -0.249965 +v 0.352645 0.249965 -0.374099 +v 0.352645 -0.000000 0.000000 +v 0.413334 -0.000000 0.000000 +vt 0.211538 0.442308 +vt 0.211538 0.467949 +vt 0.108974 0.467949 +vt 0.108974 0.442308 +vt 0.314103 0.442308 +vt 0.314103 0.467949 +vt 0.416667 0.442308 +vt 0.416667 0.467949 +vt 0.006410 0.467949 +vt 0.006410 0.442308 +vt 0.211792 0.993590 +vt 0.117562 0.954728 +vt 0.262789 0.738327 +vt 0.211538 0.006410 +vt 0.108974 0.006410 +vt 0.108974 0.032051 +vt 0.211538 0.032051 +vt 0.314103 0.006410 +vt 0.314103 0.032051 +vt 0.416667 0.006410 +vt 0.416667 0.032051 +vt 0.006410 0.006410 +vt 0.006410 0.032051 +vt 0.211361 0.993526 +vt 0.117394 0.954505 +vt 0.262040 0.737637 +vt 0.045447 0.882467 +vt 0.006475 0.788381 +vt 0.006410 0.686569 +vt 0.045263 0.592532 +vt 0.117118 0.520586 +vt 0.204627 0.488094 +vt 0.312719 0.481748 +vt 0.406687 0.520769 +vt 0.478633 0.592807 +vt 0.517605 0.686893 +vt 0.517670 0.788705 +vt 0.478816 0.882742 +vt 0.406962 0.954687 +vt 0.313044 0.993590 +vt 0.045441 0.882922 +vt 0.006410 0.789102 +vt 0.006410 0.687551 +vt 0.045442 0.593732 +vt 0.117562 0.521925 +vt 0.211793 0.483064 +vt 0.313787 0.483064 +vt 0.408016 0.521926 +vt 0.480136 0.593732 +vt 0.519168 0.687551 +vt 0.519168 0.789103 +vt 0.480136 0.882922 +vt 0.408016 0.954728 +vt 0.313786 0.993590 +vt 0.416667 0.397436 +vt 0.314103 0.397436 +vt 0.211538 0.397436 +vt 0.108974 0.397436 +vt 0.006410 0.397436 +vt 0.314103 0.185897 +vt 0.314103 0.282051 +vt 0.211538 0.282051 +vt 0.211538 0.185897 +vt 0.108974 0.282051 +vt 0.108974 0.185897 +vt 0.006410 0.282051 +vt 0.006410 0.185897 +vt 0.416667 0.185897 +vt 0.416667 0.282051 +vt 0.416667 0.076923 +vt 0.314103 0.076923 +vt 0.211538 0.076923 +vt 0.108974 0.076923 +vt 0.006410 0.076923 +vt 0.429487 0.397436 +vt 0.532051 0.397436 +vt 0.532051 0.442308 +vt 0.429487 0.442308 +vt 0.634615 0.397436 +vt 0.634615 0.442308 +vt 0.737179 0.397436 +vt 0.737179 0.442308 +vt 0.839744 0.397436 +vt 0.839744 0.442308 +vt 0.532051 0.185897 +vt 0.634615 0.185897 +vt 0.634615 0.282051 +vt 0.532051 0.282051 +vt 0.737179 0.185897 +vt 0.737179 0.282051 +vt 0.839744 0.185897 +vt 0.839744 0.282051 +vt 0.429487 0.185897 +vt 0.429487 0.282051 +vt 0.429487 0.032051 +vt 0.532051 0.032051 +vt 0.532051 0.076923 +vt 0.429487 0.076923 +vt 0.634615 0.032051 +vt 0.634615 0.076923 +vt 0.737179 0.032051 +vt 0.737179 0.076923 +vt 0.839744 0.032051 +vt 0.839744 0.076923 +s off +f 14/1 110/2 112/3 16/4 +f 12/5 108/6 110/2 14/1 +f 10/7 106/8 108/6 12/5 +f 8/4 104/3 106/9 10/10 +f 6/1 102/2 104/3 8/4 +f 4/5 100/6 102/2 6/1 +f 2/7 98/8 100/6 4/5 +f 32/4 128/3 98/9 2/10 +f 30/1 126/2 128/3 32/4 +f 28/5 124/6 126/2 30/1 +f 26/7 122/8 124/6 28/5 +f 24/4 120/3 122/9 26/10 +f 22/1 118/2 120/3 24/4 +f 20/5 116/6 118/2 22/1 +f 18/7 114/8 116/6 20/5 +f 16/4 112/3 114/9 18/10 +f 145/11 130/12 210/13 +f 13/14 15/15 111/16 109/17 +f 11/18 13/14 109/17 107/19 +f 9/20 11/18 107/19 105/21 +f 7/15 9/22 105/23 103/16 +f 5/14 7/15 103/16 101/17 +f 3/18 5/14 101/17 99/19 +f 1/20 3/18 99/19 97/21 +f 31/15 1/22 97/23 127/16 +f 29/14 31/15 127/16 125/17 +f 27/18 29/14 125/17 123/19 +f 25/20 27/18 123/19 121/21 +f 23/15 25/22 121/23 119/16 +f 21/14 23/15 119/16 117/17 +f 19/18 21/14 117/17 115/19 +f 17/20 19/18 115/19 113/21 +f 15/15 17/22 113/23 111/16 +f 194/24 195/25 209/26 +f 195/25 196/27 209/26 +f 196/27 197/28 209/26 +f 197/28 198/29 209/26 +f 198/29 199/30 209/26 +f 199/30 200/31 209/26 +f 200/31 201/32 209/26 +f 201/32 202/33 209/26 +f 202/33 203/34 209/26 +f 203/34 204/35 209/26 +f 204/35 205/36 209/26 +f 205/36 206/37 209/26 +f 206/37 207/38 209/26 +f 207/38 208/39 209/26 +f 208/39 193/40 209/26 +f 193/40 194/24 209/26 +f 130/12 131/41 210/13 +f 131/41 132/42 210/13 +f 132/42 133/43 210/13 +f 133/43 134/44 210/13 +f 134/44 135/45 210/13 +f 135/45 136/46 210/13 +f 136/46 137/47 210/13 +f 137/47 138/48 210/13 +f 138/48 139/49 210/13 +f 139/49 140/50 210/13 +f 140/50 141/51 210/13 +f 141/51 142/52 210/13 +f 142/52 143/53 210/13 +f 143/53 144/54 210/13 +f 144/54 145/11 210/13 +s 1 +f 33/55 2/7 4/5 50/56 +f 50/56 4/5 6/1 51/57 +f 51/57 6/1 8/4 52/58 +f 52/58 8/4 10/10 53/59 +f 53/55 10/7 12/5 54/56 +f 54/56 12/5 14/1 55/57 +f 55/57 14/1 16/4 56/58 +f 56/58 16/4 18/10 57/59 +f 57/55 18/7 20/5 58/56 +f 58/56 20/5 22/1 59/57 +f 59/57 22/1 24/4 60/58 +f 60/58 24/4 26/10 61/59 +f 61/55 26/7 28/5 62/56 +f 62/56 28/5 30/1 63/57 +f 64/58 32/4 2/10 33/59 +f 63/57 30/1 32/4 64/58 +f 66/60 82/61 83/62 67/63 +f 67/63 83/62 84/64 68/65 +f 68/65 84/64 85/66 69/67 +f 69/68 85/69 86/61 70/60 +f 70/60 86/61 87/62 71/63 +f 71/63 87/62 88/64 72/65 +f 72/65 88/64 89/66 73/67 +f 73/68 89/69 90/61 74/60 +f 74/60 90/61 91/62 75/63 +f 75/63 91/62 92/64 76/65 +f 76/65 92/64 93/66 77/67 +f 77/68 93/69 94/61 78/60 +f 78/60 94/61 95/62 79/63 +f 80/65 96/64 65/66 81/67 +f 79/63 95/62 96/64 80/65 +f 65/69 33/55 50/56 82/61 +f 82/61 50/56 51/57 83/62 +f 83/62 51/57 52/58 84/64 +f 84/64 52/58 53/59 85/66 +f 85/69 53/55 54/56 86/61 +f 86/61 54/56 55/57 87/62 +f 87/62 55/57 56/58 88/64 +f 88/64 56/58 57/59 89/66 +f 89/69 57/55 58/56 90/61 +f 90/61 58/56 59/57 91/62 +f 91/62 59/57 60/58 92/64 +f 92/64 60/58 61/59 93/66 +f 93/69 61/55 62/56 94/61 +f 94/61 62/56 63/57 95/62 +f 96/64 64/58 33/59 65/66 +f 95/62 63/57 64/58 96/64 +f 1/21 49/70 34/71 3/19 +f 3/19 34/71 35/72 5/17 +f 5/17 35/72 36/73 7/16 +f 7/16 36/73 37/74 9/23 +f 9/21 37/70 38/71 11/19 +f 11/19 38/71 39/72 13/17 +f 13/17 39/72 40/73 15/16 +f 15/16 40/73 41/74 17/23 +f 17/21 41/70 42/71 19/19 +f 19/19 42/71 43/72 21/17 +f 21/17 43/72 44/73 23/16 +f 23/16 44/73 45/74 25/23 +f 25/21 45/70 46/71 27/19 +f 27/19 46/71 47/72 29/17 +f 31/16 48/73 49/74 1/23 +f 29/17 47/72 48/73 31/16 +f 49/70 81/68 66/60 34/71 +f 34/71 66/60 67/63 35/72 +f 35/72 67/63 68/65 36/73 +f 36/73 68/65 69/67 37/74 +f 37/70 69/68 70/60 38/71 +f 38/71 70/60 71/63 39/72 +f 39/72 71/63 72/65 40/73 +f 40/73 72/65 73/67 41/74 +f 41/70 73/68 74/60 42/71 +f 42/71 74/60 75/63 43/72 +f 43/72 75/63 76/65 44/73 +f 44/73 76/65 77/67 45/74 +f 45/70 77/68 78/60 46/71 +f 46/71 78/60 79/63 47/72 +f 48/73 80/65 81/67 49/74 +f 47/72 79/63 80/65 48/73 +f 65/69 82/61 66/60 81/68 +f 129/75 146/76 100/77 98/78 +f 146/76 147/79 102/80 100/77 +f 147/79 148/81 104/82 102/80 +f 148/81 149/83 106/84 104/82 +f 149/75 150/76 108/77 106/78 +f 150/76 151/79 110/80 108/77 +f 151/79 152/81 112/82 110/80 +f 152/81 153/83 114/84 112/82 +f 153/75 154/76 116/77 114/78 +f 154/76 155/79 118/80 116/77 +f 155/79 156/81 120/82 118/80 +f 156/81 157/83 122/84 120/82 +f 157/75 158/76 124/77 122/78 +f 158/76 159/79 126/80 124/77 +f 160/81 129/83 98/84 128/82 +f 159/79 160/81 128/82 126/80 +f 162/85 163/86 179/87 178/88 +f 163/86 164/89 180/90 179/87 +f 164/89 165/91 181/92 180/90 +f 165/93 166/85 182/88 181/94 +f 166/85 167/86 183/87 182/88 +f 167/86 168/89 184/90 183/87 +f 168/89 169/91 185/92 184/90 +f 169/93 170/85 186/88 185/94 +f 170/85 171/86 187/87 186/88 +f 171/86 172/89 188/90 187/87 +f 172/89 173/91 189/92 188/90 +f 173/93 174/85 190/88 189/94 +f 174/85 175/86 191/87 190/88 +f 176/89 177/91 161/92 192/90 +f 175/86 176/89 192/90 191/87 +f 161/94 178/88 146/76 129/75 +f 178/88 179/87 147/79 146/76 +f 179/87 180/90 148/81 147/79 +f 180/90 181/92 149/83 148/81 +f 181/94 182/88 150/76 149/75 +f 182/88 183/87 151/79 150/76 +f 183/87 184/90 152/81 151/79 +f 184/90 185/92 153/83 152/81 +f 185/94 186/88 154/76 153/75 +f 186/88 187/87 155/79 154/76 +f 187/87 188/90 156/81 155/79 +f 188/90 189/92 157/83 156/81 +f 189/94 190/88 158/76 157/75 +f 190/88 191/87 159/79 158/76 +f 192/90 161/92 129/83 160/81 +f 191/87 192/90 160/81 159/79 +f 97/95 99/96 130/97 145/98 +f 99/96 101/99 131/100 130/97 +f 101/99 103/101 132/102 131/100 +f 103/101 105/103 133/104 132/102 +f 105/95 107/96 134/97 133/98 +f 107/96 109/99 135/100 134/97 +f 109/99 111/101 136/102 135/100 +f 111/101 113/103 137/104 136/102 +f 113/95 115/96 138/97 137/98 +f 115/96 117/99 139/100 138/97 +f 117/99 119/101 140/102 139/100 +f 119/101 121/103 141/104 140/102 +f 121/95 123/96 142/97 141/98 +f 123/96 125/99 143/100 142/97 +f 127/101 97/103 145/104 144/102 +f 125/99 127/101 144/102 143/100 +f 193/98 208/97 162/85 177/93 +f 208/97 207/100 163/86 162/85 +f 207/100 206/102 164/89 163/86 +f 206/102 205/104 165/91 164/89 +f 205/98 204/97 166/85 165/93 +f 204/97 203/100 167/86 166/85 +f 203/100 202/102 168/89 167/86 +f 202/102 201/104 169/91 168/89 +f 201/98 200/97 170/85 169/93 +f 200/97 199/100 171/86 170/85 +f 199/100 198/102 172/89 171/86 +f 198/102 197/104 173/91 172/89 +f 197/98 196/97 174/85 173/93 +f 196/97 195/100 175/86 174/85 +f 194/102 193/104 177/91 176/89 +f 195/100 194/102 176/89 175/86 +f 161/94 177/93 162/85 178/88 diff --git a/models/cottages_handmill.obj b/models/cottages_handmill.obj new file mode 100644 index 0000000..d7ba999 --- /dev/null +++ b/models/cottages_handmill.obj @@ -0,0 +1,376 @@ +# Blender v2.69 (sub 0) OBJ File: 'handmill.blend' +# www.blender.org +o Cylinder.002 +v -0.047835 -0.281250 0.115485 +v -0.047835 -0.250000 0.115485 +v -0.115485 -0.281250 0.047835 +v -0.115485 -0.250000 0.047835 +v -0.115485 -0.281250 -0.047835 +v -0.115485 -0.250000 -0.047835 +v -0.047835 -0.281250 -0.115485 +v -0.047835 -0.250000 -0.115485 +v 0.047835 -0.281250 -0.115485 +v 0.047835 -0.250000 -0.115485 +v 0.115485 -0.281250 -0.047835 +v 0.115485 -0.250000 -0.047835 +v 0.115485 -0.281250 0.047835 +v 0.115485 -0.250000 0.047835 +v 0.047835 -0.281250 0.115485 +v 0.047835 -0.250000 0.115485 +v -0.047835 -0.062500 0.115485 +v -0.047835 0.000000 0.115485 +v -0.115485 -0.062500 0.047835 +v -0.115485 0.000000 0.047835 +v -0.115485 -0.062500 -0.047835 +v -0.115485 0.000000 -0.047835 +v -0.047835 -0.062500 -0.115485 +v -0.047835 0.000000 -0.115485 +v 0.047835 -0.062500 -0.115485 +v 0.047835 0.000000 -0.115485 +v 0.115485 -0.062500 -0.047835 +v 0.115485 0.000000 -0.047835 +v 0.115485 -0.062500 0.047835 +v 0.115485 0.000000 0.047835 +v 0.047835 -0.062500 0.115485 +v 0.047835 0.000000 0.115485 +v 0.272957 -0.062500 -0.239132 +v 0.272957 0.187500 -0.239132 +v 0.239133 -0.062500 -0.272957 +v 0.239133 0.187500 -0.272957 +v 0.239133 -0.062500 -0.320793 +v 0.239133 0.187500 -0.320793 +v 0.272957 -0.062500 -0.354617 +v 0.272957 0.187500 -0.354617 +v 0.320793 -0.062500 -0.354617 +v 0.320793 0.187500 -0.354617 +v 0.354618 -0.062500 -0.320793 +v 0.354618 0.187500 -0.320793 +v 0.354618 -0.062500 -0.272957 +v 0.354618 0.187500 -0.272957 +v 0.320793 -0.062500 -0.239132 +v 0.320793 0.187500 -0.239132 +v 0.272957 0.187500 -0.239132 +v 0.239133 0.187500 -0.272957 +v 0.239133 0.187500 -0.320793 +v 0.272957 0.187500 -0.354617 +v 0.320793 0.187500 -0.354617 +v 0.354618 0.187500 -0.320793 +v 0.354618 0.187500 -0.272957 +v 0.320793 0.187500 -0.239132 +v -0.097545 -0.062500 0.490393 +v -0.097545 -0.250000 0.490393 +v -0.097545 -0.500000 0.490393 +v -0.097545 -0.281250 0.490393 +v -0.277785 -0.500000 0.415735 +v -0.277785 -0.281250 0.415735 +v -0.415735 -0.500000 0.277785 +v -0.415735 -0.281250 0.277785 +v -0.490393 -0.500000 0.097545 +v -0.490393 -0.281250 0.097545 +v -0.490393 -0.500000 -0.097545 +v -0.490393 -0.281250 -0.097545 +v -0.415735 -0.500000 -0.277785 +v -0.415735 -0.281250 -0.277785 +v -0.277785 -0.500000 -0.415735 +v -0.277785 -0.281250 -0.415735 +v -0.097545 -0.500000 -0.490393 +v -0.097545 -0.281250 -0.490393 +v 0.097545 -0.500000 -0.490393 +v 0.097545 -0.281250 -0.490393 +v 0.277785 -0.500000 -0.415735 +v 0.277785 -0.281250 -0.415735 +v 0.415735 -0.500000 -0.277785 +v 0.415735 -0.281250 -0.277785 +v 0.490393 -0.500000 -0.097545 +v 0.490393 -0.281250 -0.097545 +v 0.490393 -0.500000 0.097545 +v 0.490393 -0.281250 0.097545 +v 0.415735 -0.500000 0.277785 +v 0.415735 -0.281250 0.277785 +v 0.277785 -0.500000 0.415735 +v 0.277785 -0.281250 0.415735 +v 0.097545 -0.500000 0.490393 +v 0.097545 -0.281250 0.490393 +v -0.277785 -0.250000 0.415735 +v -0.277785 -0.062500 0.415735 +v -0.415735 -0.250000 0.277785 +v -0.415735 -0.062500 0.277785 +v -0.490393 -0.250000 0.097545 +v -0.490393 -0.062500 0.097545 +v -0.490393 -0.250000 -0.097545 +v -0.490393 -0.062500 -0.097545 +v -0.415735 -0.250000 -0.277785 +v -0.415735 -0.062500 -0.277785 +v -0.277785 -0.250000 -0.415735 +v -0.277785 -0.062500 -0.415735 +v -0.097545 -0.250000 -0.490393 +v -0.097545 -0.062500 -0.490393 +v 0.097545 -0.250000 -0.490393 +v 0.097545 -0.062500 -0.490393 +v 0.277785 -0.250000 -0.415735 +v 0.277785 -0.062500 -0.415735 +v 0.415735 -0.250000 -0.277785 +v 0.415735 -0.062500 -0.277785 +v 0.490393 -0.250000 -0.097545 +v 0.490393 -0.062500 -0.097545 +v 0.490393 -0.250000 0.097545 +v 0.490393 -0.062500 0.097545 +v 0.415735 -0.250000 0.277785 +v 0.415735 -0.062500 0.277785 +v 0.277785 -0.250000 0.415735 +v 0.277785 -0.062500 0.415735 +v 0.097545 -0.250000 0.490393 +v 0.097545 -0.062500 0.490393 +v 0.296875 0.187500 -0.296875 +v -0.000000 -0.250000 0.000000 +v 0.000000 -0.281250 0.000000 +v 0.000000 -0.062500 0.000000 +v -0.000000 -0.500000 0.000000 +v -0.047835 0.000000 0.115485 +v -0.115485 0.000000 0.047835 +v -0.115485 0.000000 -0.047835 +v -0.047835 0.000000 -0.115485 +v 0.047835 0.000000 -0.115485 +v 0.115485 0.000000 -0.047835 +v 0.115485 0.000000 0.047835 +v 0.047835 0.000000 0.115485 +v 0.000000 0.000000 -0.000000 +vt 0.500000 0.812500 +vt 0.500000 0.875000 +vt 0.375000 0.875000 +vt 0.375000 0.812500 +vt 0.250000 0.875000 +vt 0.250000 0.812500 +vt 0.125000 0.875000 +vt 0.125000 0.812500 +vt 0.000000 0.875000 +vt 0.000000 0.812500 +vt 1.000000 0.812500 +vt 1.000000 0.875000 +vt 0.875000 0.875000 +vt 0.875000 0.812500 +vt 0.750000 0.875000 +vt 0.750000 0.812500 +vt 0.625000 0.812500 +vt 0.625000 0.875000 +vt 0.500000 0.937500 +vt 0.500000 1.000000 +vt 0.375000 1.000000 +vt 0.375000 0.937500 +vt 0.250000 1.000000 +vt 0.250000 0.937500 +vt 0.125000 1.000000 +vt 0.125000 0.937500 +vt 0.000000 1.000000 +vt 0.000000 0.937500 +vt 1.000000 0.937500 +vt 1.000000 1.000000 +vt 0.875000 1.000000 +vt 0.875000 0.937500 +vt 0.750000 1.000000 +vt 0.750000 0.937500 +vt 0.625000 0.937500 +vt 0.625000 1.000000 +vt 0.125000 0.963388 +vt 0.088388 1.000000 +vt 0.062500 0.937500 +vt 0.250000 0.437500 +vt 0.250000 0.750000 +vt 0.187500 0.750000 +vt 0.187500 0.437500 +vt 0.125000 0.750000 +vt 0.125000 0.437500 +vt 0.062500 0.750000 +vt 0.062500 0.437500 +vt 0.000000 0.750000 +vt 0.000000 0.437500 +vt 0.500000 0.437500 +vt 0.500000 0.750000 +vt 0.437500 0.750000 +vt 0.437500 0.437500 +vt 0.375000 0.750000 +vt 0.375000 0.437500 +vt 0.312500 0.437500 +vt 0.312500 0.750000 +vt 0.599456 1.000000 +vt 0.783227 0.923879 +vt 0.500000 0.500000 +vt 0.750000 0.250000 +vt 0.750000 0.437500 +vt 0.500000 0.250000 +vt 0.000000 0.250000 +vt 0.000000 0.000000 +vt 0.250000 0.000000 +vt 0.250000 0.250000 +vt 1.000000 0.250000 +vt 1.000000 0.437500 +vt 0.500000 0.000000 +vt 0.750000 0.000000 +vt 1.000000 0.000000 +vt 0.036612 1.000000 +vt 0.000000 0.963388 +vt 0.000000 0.911612 +vt 0.036612 0.875000 +vt 0.088388 0.875000 +vt 0.125000 0.911612 +vt 0.923880 0.783227 +vt 1.000000 0.599456 +vt 1.000000 0.400544 +vt 0.923880 0.216773 +vt 0.783227 0.076120 +vt 0.599456 -0.000000 +vt 0.400544 -0.000000 +vt 0.216773 0.076120 +vt 0.076121 0.216773 +vt 0.000000 0.400544 +vt 0.000000 0.599456 +vt 0.076121 0.783227 +vt 0.216773 0.923880 +vt 0.400544 1.000000 +vt 0.076120 0.783227 +vt 0.076120 0.216773 +vt 0.551777 0.375000 +vt 0.625000 0.448223 +vt 0.625000 0.551777 +vt 0.551777 0.625000 +vt 0.448223 0.625000 +vt 0.375000 0.551777 +vt 0.375000 0.448223 +vt 0.448223 0.375000 +s off +f 1/1 2/2 4/3 3/4 +f 3/4 4/3 6/5 5/6 +f 5/6 6/5 8/7 7/8 +f 7/8 8/7 10/9 9/10 +f 9/11 10/12 12/13 11/14 +f 11/14 12/13 14/15 13/16 +f 15/17 16/18 2/2 1/1 +f 13/16 14/15 16/18 15/17 +f 17/19 18/20 20/21 19/22 +f 19/22 20/21 22/23 21/24 +f 21/24 22/23 24/25 23/26 +f 23/26 24/25 26/27 25/28 +f 25/29 26/30 28/31 27/32 +f 27/32 28/31 30/33 29/34 +f 31/35 32/36 18/20 17/19 +f 29/34 30/33 32/36 31/35 +f 50/37 49/38 121/39 +f 33/40 34/41 36/42 35/43 +f 35/43 36/42 38/44 37/45 +f 37/45 38/44 40/46 39/47 +f 39/47 40/46 42/48 41/49 +f 41/50 42/51 44/52 43/53 +f 43/53 44/52 46/54 45/55 +f 47/56 48/57 34/41 33/40 +f 45/55 46/54 48/57 47/56 +f 58/58 91/59 122/60 +f 115/61 116/62 118/50 117/63 +f 59/64 60/65 62/66 61/67 +f 113/68 114/69 116/62 115/61 +f 61/67 62/66 64/70 63/63 +f 111/67 112/40 114/49 113/64 +f 63/63 64/70 66/71 65/61 +f 109/63 110/50 112/40 111/67 +f 65/61 66/71 68/72 67/68 +f 107/61 108/62 110/50 109/63 +f 67/64 68/65 70/66 69/67 +f 105/68 106/69 108/62 107/61 +f 69/67 70/66 72/70 71/63 +f 103/67 104/40 106/49 105/64 +f 71/63 72/70 74/71 73/61 +f 101/63 102/50 104/40 103/67 +f 73/61 74/71 76/72 75/68 +f 99/61 100/62 102/50 101/63 +f 75/64 76/65 78/66 77/67 +f 97/68 98/69 100/62 99/61 +f 77/67 78/66 80/70 79/63 +f 95/67 96/40 98/49 97/64 +f 79/63 80/70 82/71 81/61 +f 62/59 60/58 123/60 +f 93/63 94/50 96/40 95/67 +f 81/61 82/71 84/72 83/68 +f 117/63 118/50 120/40 119/67 +f 91/61 92/62 94/50 93/63 +f 83/64 84/65 86/66 85/67 +f 119/67 120/40 57/49 58/64 +f 58/68 57/69 92/62 91/61 +f 85/67 86/66 88/70 87/63 +f 92/59 57/58 124/60 +f 89/61 90/71 60/72 59/68 +f 87/63 88/70 90/71 89/61 +f 59/58 61/59 125/60 +f 49/38 56/73 121/39 +f 56/73 55/74 121/39 +f 55/74 54/75 121/39 +f 54/75 53/76 121/39 +f 53/76 52/77 121/39 +f 52/77 51/78 121/39 +f 51/78 50/37 121/39 +f 91/59 93/79 122/60 +f 93/79 95/80 122/60 +f 95/80 97/81 122/60 +f 97/81 99/82 122/60 +f 99/82 101/83 122/60 +f 101/83 103/84 122/60 +f 103/84 105/85 122/60 +f 105/85 107/86 122/60 +f 107/86 109/87 122/60 +f 109/87 111/88 122/60 +f 111/88 113/89 122/60 +f 113/89 115/90 122/60 +f 115/90 117/91 122/60 +f 117/91 119/92 122/60 +f 119/92 58/58 122/60 +f 60/58 90/92 123/60 +f 90/92 88/91 123/60 +f 88/91 86/90 123/60 +f 86/90 84/89 123/60 +f 84/89 82/88 123/60 +f 82/88 80/87 123/60 +f 80/87 78/86 123/60 +f 78/86 76/85 123/60 +f 76/85 74/84 123/60 +f 74/84 72/83 123/60 +f 72/83 70/82 123/60 +f 70/82 68/81 123/60 +f 68/81 66/80 123/60 +f 66/80 64/79 123/60 +f 64/79 62/59 123/60 +f 57/58 120/92 124/60 +f 120/92 118/91 124/60 +f 118/91 116/93 124/60 +f 116/93 114/89 124/60 +f 114/89 112/88 124/60 +f 112/88 110/94 124/60 +f 110/94 108/86 124/60 +f 108/86 106/85 124/60 +f 106/85 104/84 124/60 +f 104/84 102/83 124/60 +f 102/83 100/82 124/60 +f 100/82 98/81 124/60 +f 98/81 96/80 124/60 +f 96/80 94/79 124/60 +f 94/79 92/59 124/60 +f 61/59 63/79 125/60 +f 63/79 65/80 125/60 +f 65/80 67/81 125/60 +f 67/81 69/82 125/60 +f 69/82 71/83 125/60 +f 71/83 73/84 125/60 +f 73/84 75/85 125/60 +f 75/85 77/86 125/60 +f 77/86 79/94 125/60 +f 79/94 81/88 125/60 +f 81/88 83/89 125/60 +f 83/89 85/93 125/60 +f 85/93 87/91 125/60 +f 87/91 89/92 125/60 +f 89/92 59/58 125/60 +f 127/95 126/96 134/60 +f 126/96 133/97 134/60 +f 133/97 132/98 134/60 +f 132/98 131/99 134/60 +f 131/99 130/100 134/60 +f 130/100 129/101 134/60 +f 129/101 128/102 134/60 +f 134/60 128/102 127/95 diff --git a/models/cottages_tub.obj b/models/cottages_tub.obj new file mode 100644 index 0000000..6e3b04b --- /dev/null +++ b/models/cottages_tub.obj @@ -0,0 +1,326 @@ +# Blender v2.69 (sub 0) OBJ File: 'cottages-tub.blend' +# www.blender.org +o Cylinder +v 0.092835 -0.500001 -0.466712 +v 0.264371 -0.500001 -0.395660 +v 0.395660 -0.500001 -0.264371 +v 0.466712 -0.500001 -0.092835 +v 0.466712 -0.500001 0.092835 +v 0.395660 -0.500001 0.264371 +v 0.264371 -0.500001 0.395660 +v 0.092835 -0.500001 0.466712 +v -0.092835 -0.500001 0.466712 +v -0.264371 -0.500001 0.395660 +v -0.395660 -0.500001 0.264371 +v -0.466712 -0.500001 0.092835 +v -0.466712 -0.500001 -0.092835 +v -0.395660 -0.500001 -0.264371 +v -0.264371 -0.500001 -0.395660 +v -0.092835 -0.500001 -0.466713 +v 0.273184 -0.413334 -0.408849 +v 0.408849 -0.413334 -0.273184 +v 0.482270 -0.413334 -0.095929 +v 0.482270 -0.413334 0.095930 +v 0.408849 -0.413334 0.273184 +v 0.273184 -0.413334 0.408849 +v 0.095929 -0.413334 0.482270 +v -0.095929 -0.413334 0.482270 +v -0.273184 -0.413334 0.408849 +v -0.408849 -0.413334 0.273184 +v -0.482270 -0.413334 0.095929 +v -0.482270 -0.413334 -0.095930 +v -0.408849 -0.413334 -0.273184 +v -0.273184 -0.413334 -0.408849 +v -0.095929 -0.413334 -0.482270 +v 0.095930 -0.413334 -0.482270 +v 0.282294 -0.114831 -0.422482 +v 0.422482 -0.114831 -0.282294 +v 0.498352 -0.114831 -0.099128 +v 0.498352 -0.114831 0.099128 +v 0.422482 -0.114831 0.282294 +v 0.282294 -0.114831 0.422482 +v 0.099128 -0.114831 0.498352 +v -0.099128 -0.114831 0.498352 +v -0.282294 -0.114831 0.422482 +v -0.422482 -0.114831 0.282294 +v -0.498352 -0.114831 0.099128 +v -0.498352 -0.114831 -0.099128 +v -0.422482 -0.114831 -0.282294 +v -0.282293 -0.114831 -0.422482 +v -0.099128 -0.114831 -0.498352 +v 0.099128 -0.114831 -0.498352 +v 0.083551 -0.500001 -0.420041 +v 0.237934 -0.500001 -0.356094 +v 0.356094 -0.500001 -0.237934 +v 0.420041 -0.500001 -0.083551 +v 0.420041 -0.500001 0.083551 +v 0.356094 -0.500001 0.237934 +v 0.237934 -0.500001 0.356094 +v 0.083551 -0.500001 0.420041 +v -0.083551 -0.500001 0.420041 +v -0.237934 -0.500001 0.356094 +v -0.356094 -0.500001 0.237934 +v -0.420041 -0.500001 0.083551 +v -0.420041 -0.500001 -0.083551 +v -0.356094 -0.500001 -0.237934 +v -0.237934 -0.500001 -0.356094 +v -0.083551 -0.500001 -0.420041 +v 0.245866 -0.413335 -0.367964 +v 0.367964 -0.413335 -0.245866 +v 0.434043 -0.413335 -0.086336 +v 0.434043 -0.413335 0.086337 +v 0.367964 -0.413335 0.245866 +v 0.245866 -0.413335 0.367964 +v 0.086337 -0.413335 0.434043 +v -0.086336 -0.413335 0.434043 +v -0.245866 -0.413335 0.367964 +v -0.367964 -0.413335 0.245866 +v -0.434043 -0.413335 0.086337 +v -0.434043 -0.413335 -0.086337 +v -0.367964 -0.413335 -0.245866 +v -0.245865 -0.413335 -0.367964 +v -0.086336 -0.413335 -0.434043 +v 0.086337 -0.413335 -0.434043 +v 0.254064 -0.114831 -0.380234 +v 0.380234 -0.114831 -0.254064 +v 0.448517 -0.114831 -0.089215 +v 0.448517 -0.114831 0.089216 +v 0.380234 -0.114831 0.254064 +v 0.254064 -0.114831 0.380234 +v 0.089216 -0.114831 0.448517 +v -0.089215 -0.114831 0.448517 +v -0.254064 -0.114831 0.380234 +v -0.380234 -0.114831 0.254064 +v -0.448517 -0.114831 0.089216 +v -0.448517 -0.114831 -0.089216 +v -0.380234 -0.114831 -0.254064 +v -0.254064 -0.114831 -0.380234 +v -0.089215 -0.114831 -0.448517 +v 0.089216 -0.114831 -0.448517 +v 0.087776 -0.352645 -0.441280 +v -0.087776 -0.352645 -0.441280 +v -0.249965 -0.352645 -0.374099 +v -0.374099 -0.352645 -0.249965 +v -0.441280 -0.352645 -0.087776 +v -0.441280 -0.352645 0.087776 +v -0.374099 -0.352645 0.249965 +v -0.249965 -0.352645 0.374099 +v -0.087776 -0.352645 0.441280 +v 0.087776 -0.352645 0.441280 +v 0.249965 -0.352645 0.374099 +v 0.374099 -0.352645 0.249965 +v 0.441280 -0.352645 0.087776 +v 0.441280 -0.352645 -0.087776 +v 0.374099 -0.352645 -0.249965 +v 0.249965 -0.352645 -0.374099 +v 0.000000 -0.352645 0.000000 +v -0.000000 -0.413334 0.000000 +vt 0.211792 0.993590 +vt 0.117562 0.954728 +vt 0.262789 0.738327 +vt 0.211538 0.006410 +vt 0.108974 0.006410 +vt 0.108974 0.032051 +vt 0.211538 0.032051 +vt 0.314103 0.006410 +vt 0.314103 0.032051 +vt 0.416667 0.006410 +vt 0.416667 0.032051 +vt 0.006410 0.006410 +vt 0.006410 0.032051 +vt 0.211361 0.993526 +vt 0.117394 0.954505 +vt 0.262040 0.737637 +vt 0.045447 0.882467 +vt 0.006475 0.788381 +vt 0.006410 0.686569 +vt 0.045263 0.592532 +vt 0.117118 0.520586 +vt 0.204627 0.488094 +vt 0.312719 0.481748 +vt 0.406687 0.520769 +vt 0.478633 0.592807 +vt 0.517605 0.686893 +vt 0.517670 0.788705 +vt 0.478816 0.882742 +vt 0.406962 0.954687 +vt 0.313044 0.993590 +vt 0.045441 0.882922 +vt 0.006410 0.789102 +vt 0.006410 0.687551 +vt 0.045442 0.593732 +vt 0.117562 0.521925 +vt 0.211793 0.483064 +vt 0.313787 0.483064 +vt 0.408016 0.521926 +vt 0.480136 0.593732 +vt 0.519168 0.687551 +vt 0.519168 0.789103 +vt 0.480136 0.882922 +vt 0.408016 0.954728 +vt 0.313786 0.993590 +vt 0.211538 0.442308 +vt 0.211538 0.467949 +vt 0.108974 0.467949 +vt 0.108974 0.442308 +vt 0.314103 0.442308 +vt 0.314103 0.467949 +vt 0.416667 0.442308 +vt 0.416667 0.467949 +vt 0.006410 0.467949 +vt 0.006410 0.442308 +vt 0.416667 0.076923 +vt 0.314103 0.076923 +vt 0.211538 0.076923 +vt 0.108974 0.076923 +vt 0.006410 0.076923 +vt 0.416667 0.185897 +vt 0.314103 0.185897 +vt 0.211538 0.185897 +vt 0.108974 0.185897 +vt 0.006410 0.185897 +vt 0.429487 0.032051 +vt 0.532051 0.032051 +vt 0.532051 0.076923 +vt 0.429487 0.076923 +vt 0.634615 0.032051 +vt 0.634615 0.076923 +vt 0.737179 0.032051 +vt 0.737179 0.076923 +vt 0.839744 0.032051 +vt 0.839744 0.076923 +vt 0.532051 0.185897 +vt 0.429487 0.185897 +vt 0.634615 0.185897 +vt 0.737179 0.185897 +vt 0.839744 0.185897 +s off +f 80/1 65/2 114/3 +f 7/4 8/5 56/6 55/7 +f 6/8 7/4 55/7 54/9 +f 5/10 6/8 54/9 53/11 +f 4/5 5/12 53/13 52/6 +f 3/4 4/5 52/6 51/7 +f 2/8 3/4 51/7 50/9 +f 1/10 2/8 50/9 49/11 +f 16/5 1/12 49/13 64/6 +f 15/4 16/5 64/6 63/7 +f 14/8 15/4 63/7 62/9 +f 13/10 14/8 62/9 61/11 +f 12/5 13/12 61/13 60/6 +f 11/4 12/5 60/6 59/7 +f 10/8 11/4 59/7 58/9 +f 9/10 10/8 58/9 57/11 +f 8/5 9/12 57/13 56/6 +f 98/14 99/15 113/16 +f 99/15 100/17 113/16 +f 100/17 101/18 113/16 +f 101/18 102/19 113/16 +f 102/19 103/20 113/16 +f 103/20 104/21 113/16 +f 104/21 105/22 113/16 +f 105/22 106/23 113/16 +f 106/23 107/24 113/16 +f 107/24 108/25 113/16 +f 108/25 109/26 113/16 +f 109/26 110/27 113/16 +f 110/27 111/28 113/16 +f 111/28 112/29 113/16 +f 112/29 97/30 113/16 +f 97/30 98/14 113/16 +f 65/2 66/31 114/3 +f 66/31 67/32 114/3 +f 67/32 68/33 114/3 +f 68/33 69/34 114/3 +f 69/34 70/35 114/3 +f 70/35 71/36 114/3 +f 71/36 72/37 114/3 +f 72/37 73/38 114/3 +f 73/38 74/39 114/3 +f 74/39 75/40 114/3 +f 75/40 76/41 114/3 +f 76/41 77/42 114/3 +f 77/42 78/43 114/3 +f 78/43 79/44 114/3 +f 79/44 80/1 114/3 +f 38/45 86/46 87/47 39/48 +f 37/49 85/50 86/46 38/45 +f 36/51 84/52 85/50 37/49 +f 35/48 83/47 84/53 36/54 +f 34/45 82/46 83/47 35/48 +f 33/49 81/50 82/46 34/45 +f 48/51 96/52 81/50 33/49 +f 47/48 95/47 96/53 48/54 +f 46/45 94/46 95/47 47/48 +f 45/49 93/50 94/46 46/45 +f 44/51 92/52 93/50 45/49 +f 43/48 91/47 92/53 44/54 +f 42/45 90/46 91/47 43/48 +f 41/49 89/50 90/46 42/45 +f 40/51 88/52 89/50 41/49 +f 39/48 87/47 88/53 40/54 +s 1 +f 1/11 32/55 17/56 2/9 +f 2/9 17/56 18/57 3/7 +f 3/7 18/57 19/58 4/6 +f 4/6 19/58 20/59 5/13 +f 5/11 20/55 21/56 6/9 +f 6/9 21/56 22/57 7/7 +f 7/7 22/57 23/58 8/6 +f 8/6 23/58 24/59 9/13 +f 9/11 24/55 25/56 10/9 +f 10/9 25/56 26/57 11/7 +f 11/7 26/57 27/58 12/6 +f 12/6 27/58 28/59 13/13 +f 13/11 28/55 29/56 14/9 +f 14/9 29/56 30/57 15/7 +f 16/6 31/58 32/59 1/13 +f 15/7 30/57 31/58 16/6 +f 32/55 48/60 33/61 17/56 +f 17/56 33/61 34/62 18/57 +f 18/57 34/62 35/63 19/58 +f 19/58 35/63 36/64 20/59 +f 20/55 36/60 37/61 21/56 +f 21/56 37/61 38/62 22/57 +f 22/57 38/62 39/63 23/58 +f 23/58 39/63 40/64 24/59 +f 24/55 40/60 41/61 25/56 +f 25/56 41/61 42/62 26/57 +f 26/57 42/62 43/63 27/58 +f 27/58 43/63 44/64 28/59 +f 28/55 44/60 45/61 29/56 +f 29/56 45/61 46/62 30/57 +f 31/58 47/63 48/64 32/59 +f 30/57 46/62 47/63 31/58 +f 49/65 50/66 65/67 80/68 +f 50/66 51/69 66/70 65/67 +f 51/69 52/71 67/72 66/70 +f 52/71 53/73 68/74 67/72 +f 53/65 54/66 69/67 68/68 +f 54/66 55/69 70/70 69/67 +f 55/69 56/71 71/72 70/70 +f 56/71 57/73 72/74 71/72 +f 57/65 58/66 73/67 72/68 +f 58/66 59/69 74/70 73/67 +f 59/69 60/71 75/72 74/70 +f 60/71 61/73 76/74 75/72 +f 61/65 62/66 77/67 76/68 +f 62/66 63/69 78/70 77/67 +f 64/71 49/73 80/74 79/72 +f 63/69 64/71 79/72 78/70 +f 97/68 112/67 81/75 96/76 +f 112/67 111/70 82/77 81/75 +f 111/70 110/72 83/78 82/77 +f 110/72 109/74 84/79 83/78 +f 109/68 108/67 85/75 84/76 +f 108/67 107/70 86/77 85/75 +f 107/70 106/72 87/78 86/77 +f 106/72 105/74 88/79 87/78 +f 105/68 104/67 89/75 88/76 +f 104/67 103/70 90/77 89/75 +f 103/70 102/72 91/78 90/77 +f 102/72 101/74 92/79 91/78 +f 101/68 100/67 93/75 92/76 +f 100/67 99/70 94/77 93/75 +f 98/72 97/74 96/79 95/78 +f 99/70 98/72 95/78 94/77 diff --git a/nodes_anvil.lua b/nodes_anvil.lua new file mode 100644 index 0000000..12a57ef --- /dev/null +++ b/nodes_anvil.lua @@ -0,0 +1,244 @@ +--------------------------------------------------------------------------------------- +-- simple anvil that can be used to repair tools +--------------------------------------------------------------------------------------- +-- * can be used to repair tools +-- * the hammer gets dammaged a bit at each repair step +--------------------------------------------------------------------------------------- +-- License of the hammer picture: CC-by-SA; done by GloopMaster; source: +-- https://github.com/GloopMaster/glooptest/blob/master/glooptest/textures/glooptest_tool_steelhammer.png + +-- Boilerplate to support localized strings if intllib mod is installed. +local S +if intllib then + S = intllib.Getter() +else + S = function(s) return s end +end + +-- the hammer for the anvil +minetest.register_tool("cottages:hammer", { + description = S("Steel hammer for repairing tools on the anvil"), + image = "glooptest_tool_steelhammer.png", + inventory_image = "glooptest_tool_steelhammer.png", + + tool_capabilities = { + full_punch_interval = 0.8, + max_drop_level=1, + groupcaps={ + -- about equal to a stone pick (it's not intended as a tool) + cracky={times={[2]=2.00, [3]=1.20}, uses=30, maxlevel=1}, + }, + damage_groups = {fleshy=6}, + } +}) + + + +minetest.register_node("cottages:anvil", { + drawtype = "nodebox", + description = S("anvil"), + tiles = {"default_stone.png"}, -- TODO default_steel_block.png, default_obsidian.png are also nice + paramtype = "light", + paramtype2 = "facedir", + groups = {cracky=2}, + -- the nodebox model comes from realtest + node_box = { + type = "fixed", + fixed = { + {-0.5,-0.5,-0.3,0.5,-0.4,0.3}, + {-0.35,-0.4,-0.25,0.35,-0.3,0.25}, + {-0.3,-0.3,-0.15,0.3,-0.1,0.15}, + {-0.35,-0.1,-0.2,0.35,0.1,0.2}, + }, + }, + selection_box = { + type = "fixed", + fixed = { + {-0.5,-0.5,-0.3,0.5,-0.4,0.3}, + {-0.35,-0.4,-0.25,0.35,-0.3,0.25}, + {-0.3,-0.3,-0.15,0.3,-0.1,0.15}, + {-0.35,-0.1,-0.2,0.35,0.1,0.2}, + } + }, + on_construct = function(pos) + + local meta = minetest.env:get_meta(pos); + meta:set_string("infotext", S("Anvil")); + local inv = meta:get_inventory(); + inv:set_size("input", 1); +-- inv:set_size("material", 9); +-- inv:set_size("sample", 1); + inv:set_size("hammer", 1); + end, + + after_place_node = function(pos, placer) + local meta = minetest.get_meta(pos); + meta:set_string("owner", placer:get_player_name() or ""); + meta:set_string("infotext", S("Anvil (owned by %s)"):format((meta:get_string("owner") or ""))); + meta:set_string("formspec", + "size[8,8]".. + "image[7,3;1,1;glooptest_tool_steelhammer.png]".. +-- "list[current_name;sample;0,0.5;1,1;]".. + "list[current_name;input;2.5,1.5;1,1;]".. +-- "list[current_name;material;5,0;3,3;]".. + "list[current_name;hammer;5,3;1,1;]".. +-- "label[0.0,0.0;Sample:]".. +-- "label[0.0,1.0;(Receipe)]".. + "label[2.5,1.0;"..S("Workpiece:").."]".. +-- "label[6.0,-0.5;Materials:]".. + "label[6.0,2.7;"..S("Optional").."]".. + "label[6.0,3.0;"..S("storage for").."]".. + "label[6.0,3.3;"..S("your hammer").."]".. + + "label[0,-0.5;"..S("Anvil").."]".. + "label[2.5,-0.5;"..S("Owner: %s"):format(meta:get_string('owner') or "").."]".. + "label[0,3.0;"..S("Punch anvil with hammer to").."]".. + "label[0,3.3;"..S("repair tool in workpiece-slot.").."]".. + "list[current_player;main;0,4;8,4;]"); + end, + + can_dig = function(pos,player) + + local meta = minetest.get_meta(pos); + local inv = meta:get_inventory(); + local owner = meta:get_string('owner'); + + if( not( inv:is_empty("input")) +-- or not( inv:is_empty("material")) +-- or not( inv:is_empty("sample")) + or not( inv:is_empty("hammer")) + or not( player ) + or ( owner and owner ~= '' and player:get_player_name() ~= owner )) then + + return false; + end + return true; + end, + + allow_metadata_inventory_move = function(pos, from_list, from_index, to_list, to_index, count, player) + local meta = minetest.get_meta(pos) + if( player and player:get_player_name() ~= meta:get_string('owner' )) then + return 0 + end + return count; + end, + + allow_metadata_inventory_put = function(pos, listname, index, stack, player) + local meta = minetest.get_meta(pos) + if( player and player:get_player_name() ~= meta:get_string('owner' )) then + return 0; + end + if( listname=='hammer' and stack and stack:get_name() ~= 'cottages:hammer') then + return 0; + end + if( listname=='input' + and( stack:get_wear() == 0 + or stack:get_name() == "technic:water_can" + or stack:get_name() == "technic:lava_can" )) then + + minetest.chat_send_player( player:get_player_name(), + S('The workpiece slot is for damaged tools only.')); + return 0; + end + return stack:get_count() + end, + + allow_metadata_inventory_take = function(pos, listname, index, stack, player) + local meta = minetest.get_meta(pos) + if( player and player:get_player_name() ~= meta:get_string('owner' )) then + return 0 + end + return stack:get_count() + end, + + + on_punch = function(pos, node, puncher) + if( not( pos ) or not( node ) or not( puncher )) then + return; + end + -- only punching with the hammer is supposed to work + local wielded = puncher:get_wielded_item(); + if( not( wielded ) or not( wielded:get_name() ) or wielded:get_name() ~= 'cottages:hammer') then + return; + end + local name = puncher:get_player_name(); + + local meta = minetest.env:get_meta(pos); + local inv = meta:get_inventory(); + + local input = inv:get_stack('input',1); + + -- only tools can be repaired + if( not( input ) + or input:is_empty() + or input:get_name() == "technic:water_can" + or input:get_name() == "technic:lava_can" ) then + return; + end + + -- tell the player when the job is done + if( input:get_wear() == 0 ) then + minetest.chat_send_player( puncher:get_player_name(), + S('Your tool has been repaired successfully.')); + return; + end + + -- do the actual repair + input:add_wear( -5000 ); -- equals to what technic toolshop does in 5 seconds + inv:set_stack("input", 1, input) + + -- damage the hammer slightly + wielded:add_wear( 100 ); + puncher:set_wielded_item( wielded ); + + -- do not spam too much + if( math.random( 1,5 )==1 ) then + minetest.chat_send_player( puncher:get_player_name(), + S('Your workpiece improves.')); + end + end, + is_ground_content = false, +}) + + + +--------------------------------------------------------------------------------------- +-- crafting receipes +--------------------------------------------------------------------------------------- +minetest.register_craft({ + output = "cottages:anvil", + recipe = { + {'default:steel_ingot','default:steel_ingot','default:steel_ingot'}, + {'', 'default:steel_ingot','' }, + {'default:steel_ingot','default:steel_ingot','default:steel_ingot'} }, +}) + + +-- the castle-mod has an anvil as well - with the same receipe. convert the two into each other +if ( minetest.get_modpath("castle") ~= nil ) then + + minetest.register_craft({ + output = "cottages:anvil", + recipe = { + {'castle:anvil'}, + }, + }) + + minetest.register_craft({ + output = "castle:anvil", + recipe = { + {'cottages:anvil'}, + }, + }) +end + + + +minetest.register_craft({ + output = "cottages:hammer", + recipe = { + {'default:steel_ingot','default:steel_ingot','default:steel_ingot'}, + {'default:steel_ingot','default:steel_ingot','default:steel_ingot'}, + {'', 'default:stick', '' } } +}) + diff --git a/nodes_barrel.lua b/nodes_barrel.lua new file mode 100644 index 0000000..dbee3ed --- /dev/null +++ b/nodes_barrel.lua @@ -0,0 +1,210 @@ + +--------------------------------------------------------------------- +-- a barrel and a tub - plus a function that makes 'round' objects +--------------------------------------------------------------------- +-- IMPORTANT NOTE: The barrel requires a lot of nodeboxes. That may be +-- too much for weak hardware! +--------------------------------------------------------------------- +-- Functionality: right-click to open/close a barrel; +-- punch a barrel to change between vertical/horizontal +--------------------------------------------------------------------- +-- Changelog: +-- 24.03.13 Can no longer be opended/closed on rightclick because that is now used for a formspec; +-- instead, it can be filled with liquids. +-- Filled barrels will always be closed, while empty barrels will always be open. + +-- pipes: table with the following entries for each pipe-part: +-- f: radius factor; if 1, it will have a radius of half a nodebox and fill the entire nodebox +-- h1, h2: height at witch the nodebox shall start and end; usually -0.5 and 0.5 for a full nodebox +-- b: make a horizontal part/shelf +-- horizontal: if 1, then x and y coordinates will be swapped + +-- TODO: option so that it works without nodeboxes + +-- Boilerplate to support localized strings if intllib mod is installed. +local S +if intllib then + S = intllib.Getter() +else + S = function(s) return s end +end + +barrel = {}; + +-- prepare formspec +barrel.on_construct = function( pos ) + + local meta = minetest.get_meta(pos); + local percent = math.random( 1, 100 ); -- TODO: show real filling + + meta:set_string( 'formspec', + "size[8,9]".. + "image[2.6,2;2,3;default_sandstone.png^[lowpart:".. + (100-percent)..":default_desert_stone.png]".. -- TODO: better images + "label[2.2,0;"..S("Pour:").."]".. + "list[current_name;input;3,0.5;1,1;]".. + "label[5,3.3;"..S("Fill:").."]".. + "list[current_name;output;5,3.8;1,1;]".. + "list[current_player;main;0,5;8,4;]"); + + + meta:set_string( 'liquid_type', '' ); -- which liquid is in the barrel? + meta:set_int( 'liquid_level', 0 ); -- how much of the liquid is in there? + + local inv = meta:get_inventory() + inv:set_size("input", 1); -- to fill in new liquid + inv:set_size("output", 1); -- to extract liquid +end + + +-- can only be digged if there are no more vessels/buckets in any of the slots +-- TODO: allow digging of a filled barrel? this would disallow stacking of them +barrel.can_dig = function( pos, player ) + local meta = minetest.get_meta(pos); + local inv = meta:get_inventory() + + return ( inv:is_empty('input') + and inv:is_empty('output')); +end + + +-- the barrel received input; either a new liquid that is to be poured in or a vessel that is to be filled +barrel.on_metadata_inventory_put = function( pos, listname, index, stack, player ) +end + + +-- right-click to open/close barrel; punch to switch between horizontal/vertical position + minetest.register_node("cottages:barrel", { + description = S("barrel (closed)"), + paramtype = "light", + drawtype = "mesh", + mesh = "cottages_barrel_closed.obj", + tiles = {"cottages_barrel.png" }, + groups = { tree = 1, snappy = 1, choppy = 2, oddly_breakable_by_hand = 1, flammable = 2 + }, + drop = "cottages:barrel", +-- on_rightclick = function(pos, node, puncher) +-- minetest.add_node(pos, {name = "cottages:barrel_open", param2 = node.param2}) +-- end, +-- TODO: on_rightclick is no longer available - maybe open if empty and closed if full? + on_punch = function(pos, node, puncher) + minetest.add_node(pos, {name = "cottages:barrel_lying", param2 = node.param2}) + end, + + on_construct = function( pos ) + return barrel.on_construct( pos ); + end, + can_dig = function(pos,player) + return barrel.can_dig( pos, player ); + end, + on_metadata_inventory_put = function(pos, listname, index, stack, player) + return barrel.on_metadata_inventory_put( pos, listname, index, stack, player ); + end, + is_ground_content = false, + + }) + + -- this barrel is opened at the top + minetest.register_node("cottages:barrel_open", { + description = S("barrel (open)"), + paramtype = "light", + drawtype = "mesh", + mesh = "cottages_barrel.obj", + tiles = {"cottages_barrel.png" }, + groups = { tree = 1, snappy = 1, choppy = 2, oddly_breakable_by_hand = 1, flammable = 2 + }, + drop = "cottages:barrel", +-- on_rightclick = function(pos, node, puncher) +-- minetest.add_node(pos, {name = "cottages:barrel", param2 = node.param2}) +-- end, + on_punch = function(pos, node, puncher) + minetest.add_node(pos, {name = "cottages:barrel_lying_open", param2 = node.param2}) + end, + is_ground_content = false, + }) + + -- horizontal barrel + minetest.register_node("cottages:barrel_lying", { + description = S("barrel (closed), lying somewhere"), + paramtype = "light", + paramtype2 = "facedir", + drawtype = "mesh", + mesh = "cottages_barrel_closed_lying.obj", + tiles = {"cottages_barrel.png" }, + groups = { tree = 1, snappy = 1, choppy = 2, oddly_breakable_by_hand = 1, flammable = 2 + }, + drop = "cottages:barrel", + on_rightclick = function(pos, node, puncher) + minetest.add_node(pos, {name = "cottages:barrel_lying_open", param2 = node.param2}) + end, + on_punch = function(pos, node, puncher) + if( node.param2 < 4 ) then + minetest.add_node(pos, {name = "cottages:barrel_lying", param2 = (node.param2+1)}) + else + minetest.add_node(pos, {name = "cottages:barrel", param2 = 0}) + end + end, + is_ground_content = false, + }) + + -- horizontal barrel, open + minetest.register_node("cottages:barrel_lying_open", { + description = S("barrel (opened), lying somewhere"), + paramtype = "light", + paramtype2 = "facedir", + drawtype = "mesh", + mesh = "cottages_barrel_lying.obj", + tiles = {"cottages_barrel.png" }, + groups = { tree = 1, snappy = 1, choppy = 2, oddly_breakable_by_hand = 1, flammable = 2 + }, + drop = "cottages:barrel", + on_rightclick = function(pos, node, puncher) + minetest.add_node(pos, {name = "cottages:barrel_lying", param2 = node.param2}) + end, + on_punch = function(pos, node, puncher) + if( node.param2 < 4 ) then + minetest.add_node(pos, {name = "cottages:barrel_lying_open", param2 = (node.param2+1)}) + else + minetest.add_node(pos, {name = "cottages:barrel_open", param2 = 0}) + end + end, + is_ground_content = false, + + }) + + -- let's hope "tub" is the correct english word for "bottich" + minetest.register_node("cottages:tub", { + description = S("tub"), + paramtype = "light", + drawtype = "mesh", + mesh = "cottages_tub.obj", + tiles = {"cottages_barrel.png" }, + groups = { tree = 1, snappy = 1, choppy = 2, oddly_breakable_by_hand = 1, flammable = 2 + }, + is_ground_content = false, + }) + + +minetest.register_craft({ + output = "cottages:barrel", + recipe = { + {"group:wood", "", "group:wood" }, + {"default:steel_ingot", "", "default:steel_ingot"}, + {"group:wood", "group:wood", "group:wood" }, + }, +}) + +minetest.register_craft({ + output = "cottages:tub 2", + recipe = { + {"cottages:barrel"}, + }, +}) + +minetest.register_craft({ + output = "cottages:barrel", + recipe = { + {"cottages:tub"}, + {"cottages:tub"}, + }, +}) diff --git a/nodes_chests.lua b/nodes_chests.lua new file mode 100644 index 0000000..7a6db1c --- /dev/null +++ b/nodes_chests.lua @@ -0,0 +1,69 @@ + +-- TODO: make these chests as chests and indicate that they are owned by npc +-- TODO: add bags (not for carrying around but for decoration) + +-- Boilerplate to support localized strings if intllib mod is installed. +local S +if intllib then + S = intllib.Getter() +else + S = function(s) return s end +end + +cottages_chests = {} +-- uses default.chest_formspec for now +cottages_chests.on_construct = function(pos) + local meta = minetest.get_meta(pos) + meta:set_string("formspec",default.chest_formspec) +-- meta:set_string("infotext", "Chest") + local inv = meta:get_inventory() + inv:set_size("main", 8*4) + end + +cottages_chests.can_dig = function(pos,player) + local meta = minetest.get_meta(pos); + local inv = meta:get_inventory() + return inv:is_empty("main") + end + +-- the chests do not need receipes since they are only placeholders and not intended to be built by players +-- (they are later on supposed to be filled with diffrent items by fill_chest.lua) +minetest.register_node("cottages:chest_private", { + description = S("private NPC chest"), + infotext = "chest containing the possesions of one of the inhabitants", + tiles = {"default_chest_top.png", "default_chest_top.png", "default_chest_side.png", + "default_chest_side.png", "default_chest_side.png", "default_chest_front.png"}, + paramtype2 = "facedir", + groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2}, + legacy_facedir_simple = true, + on_construct = cottages_chests.on_construct, + can_dig = cottages_chests.can_dig, + is_ground_content = false, +}) + +minetest.register_node("cottages:chest_work", { + description = S("chest for work utils and kitchens"), + infotext = "everything the inhabitant needs for his work", + tiles = {"default_chest_top.png", "default_chest_top.png", "default_chest_side.png", + "default_chest_side.png", "default_chest_side.png", "default_chest_front.png"}, + paramtype2 = "facedir", + groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2}, + legacy_facedir_simple = true, + on_construct = cottages_chests.on_construct, + can_dig = cottages_chests.can_dig, + is_ground_content = false, +}) + +minetest.register_node("cottages:chest_storage", { + description = S("storage chest"), + infotext = "stored food reserves", + tiles = {"default_chest_top.png", "default_chest_top.png", "default_chest_side.png", + "default_chest_side.png", "default_chest_side.png", "default_chest_front.png"}, + paramtype2 = "facedir", + groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2}, + legacy_facedir_simple = true, + on_construct = cottages_chests.on_construct, + can_dig = cottages_chests.can_dig, + is_ground_content = false, +}) + diff --git a/nodes_doorlike.lua b/nodes_doorlike.lua new file mode 100644 index 0000000..78f27e4 --- /dev/null +++ b/nodes_doorlike.lua @@ -0,0 +1,443 @@ + +----------------------------------------------------------------------------------------------------------- +-- These nodes are all like doors in a way: +-- * window shutters (they open on right-click and when it turns day; they close at night) +-- * a half-door where the top part can be opened seperately from the bottom part +-- * a gate that drops to the floor when opened +-- +----------------------------------------------------------------------------------------------------------- +-- IMPORTANT NOTICE: If you have a very slow computer, it might be wise to increase the rate at which the +-- abm that opens/closes the window shutters is called. Anything less than 10 minutes +-- (600 seconds) ought to be ok. +----------------------------------------------------------------------------------------------------------- +-- Boilerplate to support localized strings if intllib mod is installed. +local S +if intllib then + S = intllib.Getter() +else + S = function(s) return s end +end + +----------------------------------------------------------------------------------------------------------- +-- small window shutters for single-node-windows; they open at day and close at night if the abm is working +----------------------------------------------------------------------------------------------------------- + +-- propagate shutting/closing of window shutters to window shutters below/above this one +cottages_window_sutter_operate = function( pos, old_node_state_name, new_node_state_name ) + + local offsets = {-1,1,-2,2,-3,3}; + local stop_up = 0; + local stop_down = 0; + + for i,v in ipairs(offsets) do + + local node = minetest.env:get_node_or_nil( {x=pos.x, y=(pos.y+v), z=pos.z } ); + if( node and node.name and node.name==old_node_state_name + and ( (v > 0 and stop_up == 0 ) + or (v < 0 and stop_down == 0 ))) then + + minetest.env:add_node({x=pos.x, y=(pos.y+v), z=pos.z }, {name = new_node_state_name, param2 = node.param2}) + + -- found a diffrent node - no need to search further up + elseif( v > 0 and stop_up == 0 ) then + stop_up = 1; + + elseif( v < 0 and stop_down == 0 ) then + stop_down = 1; + end + end +end + +-- window shutters - they cover half a node to each side +minetest.register_node("cottages:window_shutter_open", { + description = S("opened window shutters"), + drawtype = "nodebox", + -- top, bottom, side1, side2, inner, outer + tiles = {"cottages_minimal_wood.png"}, + paramtype = "light", + paramtype2 = "facedir", + groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2}, + -- larger than one node but slightly smaller than a half node so that wallmounted torches pose no problem + node_box = { + type = "fixed", + fixed = { + {-0.90, -0.5, 0.4, -0.45, 0.5, 0.5}, + { 0.45, -0.5, 0.4, 0.9, 0.5, 0.5}, + }, + }, + selection_box = { + type = "fixed", + fixed = { + {-0.9, -0.5, 0.4, 0.9, 0.5, 0.5}, + }, + }, + on_rightclick = function(pos, node, puncher) + minetest.env:add_node(pos, {name = "cottages:window_shutter_closed", param2 = node.param2}) + cottages_window_sutter_operate( pos, "cottages:window_shutter_open", "cottages:window_shutter_closed" ); + end, + is_ground_content = false, +}) + +minetest.register_node("cottages:window_shutter_closed", { + description = S("closed window shutters"), + drawtype = "nodebox", + -- top, bottom, side1, side2, inner, outer + tiles = {"cottages_minimal_wood.png"}, + paramtype = "light", + paramtype2 = "facedir", + groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2,not_in_creative_inventory=1}, + node_box = { + type = "fixed", + fixed = { + {-0.5, -0.5, 0.4, -0.05, 0.5, 0.5}, + { 0.05, -0.5, 0.4, 0.5, 0.5, 0.5}, + }, + }, + selection_box = { + type = "fixed", + fixed = { + {-0.5, -0.5, 0.4, 0.5, 0.5, 0.5}, + }, + }, + on_rightclick = function(pos, node, puncher) + minetest.env:add_node(pos, {name = "cottages:window_shutter_open", param2 = node.param2}) + cottages_window_sutter_operate( pos, "cottages:window_shutter_closed", "cottages:window_shutter_open" ); + end, + is_ground_content = false, + drop = "cottages:window_shutter_open", +}) + + +-- open shutters in the morning +minetest.register_abm({ + nodenames = {"cottages:window_shutter_closed"}, + interval = 20, -- change this to 600 if your machine is too slow + chance = 3, -- not all people wake up at the same time! + action = function(pos) + + -- at this time, sleeping in a bed is not possible + if( not(minetest.env:get_timeofday() < 0.2 or minetest.env:get_timeofday() > 0.805)) then + local old_node = minetest.env:get_node( pos ); + minetest.env:add_node(pos, {name = "cottages:window_shutter_open", param2 = old_node.param2}) + cottages_window_sutter_operate( pos, "cottages:window_shutter_closed", "cottages:window_shutter_open" ); + end + end +}) + + +-- close them at night +minetest.register_abm({ + nodenames = {"cottages:window_shutter_open"}, + interval = 20, -- change this to 600 if your machine is too slow + chance = 2, + action = function(pos) + + -- same time at which sleeping is allowed in beds + if( minetest.env:get_timeofday() < 0.2 or minetest.env:get_timeofday() > 0.805) then + local old_node = minetest.env:get_node( pos ); + minetest.env:add_node(pos, {name = "cottages:window_shutter_closed", param2 = old_node.param2}) + cottages_window_sutter_operate( pos, "cottages:window_shutter_open", "cottages:window_shutter_closed" ); + end + end +}) + + +------------------------------------------------------------------------------------------------------------------------------ +-- a half door; can be combined to a full door where the upper part can be operated seperately; usually found in barns/stables +------------------------------------------------------------------------------------------------------------------------------ +minetest.register_node("cottages:half_door", { + description = S("half door"), + drawtype = "nodebox", + -- top, bottom, side1, side2, inner, outer + tiles = {"cottages_minimal_wood.png"}, + paramtype = "light", + paramtype2 = "facedir", + groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2}, + node_box = { + type = "fixed", + fixed = { + {-0.5, -0.5, 0.4, 0.48, 0.5, 0.5}, + }, + }, + selection_box = { + type = "fixed", + fixed = { + {-0.5, -0.5, 0.4, 0.48, 0.5, 0.5}, + }, + }, + on_rightclick = function(pos, node, puncher) + local node2 = minetest.env:get_node( {x=pos.x,y=(pos.y+1),z=pos.z}); + + local param2 = node.param2; + if( param2%4 == 1) then param2 = param2+1; --2; + elseif( param2%4 == 2) then param2 = param2-1; --1; + elseif( param2%4 == 3) then param2 = param2-3; --0; + elseif( param2%4 == 0) then param2 = param2+3; --3; + end; + minetest.env:add_node(pos, {name = "cottages:half_door", param2 = param2}) + -- if the node above consists of a door of the same type, open it as well + -- Note: doors beneath this one are not opened! It is a special feature of these doors that they can be opend partly + if( node2 ~= nil and node2.name == node.name and node2.param2==node.param2) then + minetest.env:add_node( {x=pos.x,y=(pos.y+1),z=pos.z}, {name = "cottages:half_door", param2 = param2}) + end + end, + is_ground_content = false, +}) + + + +minetest.register_node("cottages:half_door_inverted", { + description = S("half door inverted"), + drawtype = "nodebox", + -- top, bottom, side1, side2, inner, outer + tiles = {"cottages_minimal_wood.png"}, + paramtype = "light", + paramtype2 = "facedir", + groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2}, + node_box = { + type = "fixed", + fixed = { + {-0.5, -0.5, -0.5, 0.48, 0.5, -0.4}, + }, + }, + selection_box = { + type = "fixed", + fixed = { + {-0.5, -0.5, -0.5, 0.48, 0.5, -0.4}, + }, + }, + on_rightclick = function(pos, node, puncher) + local node2 = minetest.env:get_node( {x=pos.x,y=(pos.y+1),z=pos.z}); + + local param2 = node.param2; + if( param2%4 == 1) then param2 = param2-1; --0; + elseif( param2%4 == 0) then param2 = param2+1; --1; + elseif( param2%4 == 2) then param2 = param2+1; --3; + elseif( param2%4 == 3) then param2 = param2-1; --2; + end; + minetest.env:add_node(pos, {name = "cottages:half_door_inverted", param2 = param2}) + -- open upper parts of this door (if there are any) + if( node2 ~= nil and node2.name == node.name and node2.param2==node.param2) then + minetest.env:add_node( {x=pos.x,y=(pos.y+1),z=pos.z}, {name = "cottages:half_door_inverted", param2 = param2}) + end + end, + is_ground_content = false, +}) + + + + +------------------------------------------------------------------------------------------------------------------------------ +-- this gate for fences solves the "where to store the opened gate" problem by dropping it to the floor in optened state +------------------------------------------------------------------------------------------------------------------------------ +minetest.register_node("cottages:gate_closed", { + description = S("closed fence gate"), + drawtype = "nodebox", + -- top, bottom, side1, side2, inner, outer + tiles = {"default_wood.png"}, + paramtype = "light", + paramtype2 = "facedir", + groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2}, + node_box = { + type = "fixed", + fixed = { + { -0.85, -0.25, -0.02, 0.85, -0.05, 0.02}, + { -0.85, 0.15, -0.02, 0.85, 0.35, 0.02}, + + { -0.80, -0.05, -0.02, -0.60, 0.15, 0.02}, + { 0.60, -0.05, -0.02, 0.80, 0.15, 0.02}, + { -0.15, -0.05, -0.02, 0.15, 0.15, 0.02}, + }, + }, + selection_box = { + type = "fixed", + fixed = { + { -0.85, -0.25, -0.1, 0.85, 0.35, 0.1}, + }, + }, + on_rightclick = function(pos, node, puncher) + minetest.env:add_node(pos, {name = "cottages:gate_open", param2 = node.param2}) + end, + is_ground_content = false, +}) + + +minetest.register_node("cottages:gate_open", { + description = S("opened fence gate"), + drawtype = "nodebox", + -- top, bottom, side1, side2, inner, outer + tiles = {"default_wood.png"}, + paramtype = "light", + paramtype2 = "facedir", + drop = "cottages:gate_closed", + groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2,not_in_creative_inventory=1}, + node_box = { + type = "fixed", + fixed = { + { -0.85, -0.5, -0.25, 0.85, -0.46, -0.05}, + { -0.85, -0.5, 0.15, 0.85, -0.46, 0.35}, + + { -0.80, -0.5, -0.05, -0.60, -0.46, 0.15}, + { 0.60, -0.5, -0.05, 0.80, -0.46, 0.15}, + { -0.15, -0.5, -0.05, 0.15, -0.46, 0.15}, + + }, + }, + selection_box = { + type = "fixed", + fixed = { + { -0.85, -0.5, -0.25, 0.85, -0.3, 0.35}, + }, + }, + on_rightclick = function(pos, node, puncher) + minetest.env:add_node(pos, {name = "cottages:gate_closed", param2 = node.param2}) + end, + is_ground_content = false, + drop = "cottages:gate_closed", +}) + + + +----------------------------------------------------------------------------------------------------------- +-- a hatch; nodebox definition taken from realtest +----------------------------------------------------------------------------------------------------------- + +-- hatches rotate around their axis +-- old facedir: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 +new_facedirs = { 10,19, 4,13, 2,18,22,14,20,16, 0,12,11, 3, 7,21, 9,23, 5, 1, 8,15, 6,17}; + + +cottages.register_hatch = function( nodename, description, texture, receipe_item ) + + minetest.register_node( nodename, { + description = S(description), -- not that there are any other... + drawtype = "nodebox", + -- top, bottom, side1, side2, inner, outer + tiles = { texture }, + paramtype = "light", + paramtype2 = "facedir", + groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2}, + + node_box = { + type = "fixed", + fixed = { + {-0.49, -0.55, -0.49, -0.3, -0.45, 0.45}, +-- {-0.5, -0.55, 0.3, 0.3, -0.45, 0.5}, + {0.3, -0.55, -0.3, 0.49, -0.45, 0.45}, + {0.49, -0.55, -0.49, -0.3, -0.45, -0.3}, + {-0.075, -0.55, -0.3, 0.075, -0.45, 0.3}, + {-0.3, -0.55, -0.075, -0.075, -0.45, 0.075}, + {0.075, -0.55, -0.075, 0.3, -0.45, 0.075}, + + {-0.3, -0.55, 0.3, 0.3, -0.45, 0.45}, + + -- hinges + {-0.45,-0.530, 0.45, -0.15,-0.470, 0.525}, + { 0.15,-0.530, 0.45, 0.45,-0.470, 0.525}, + + -- handle + {-0.05,-0.60,-0.35, 0.05,-0.40,-0.45}, + }, + }, + selection_box = { + type = "fixed", + fixed = {-0.5, -0.55, -0.5, 0.5, -0.45, 0.5}, + }, + on_rightclick = function(pos, node, puncher) + + minetest.env:add_node(pos, {name = node.name, param2 = new_facedirs[ node.param2+1 ]}) + end, + is_ground_content = false, + on_place = minetest.rotate_node, + }) + + minetest.register_craft({ + output = nodename, + recipe = { + { '', '', receipe_item }, + { receipe_item, 'default:stick', '' }, + { '', '', '' }, + } + }) +end + + +-- further alternate hatch materials: wood, tree, copper_block +cottages.register_hatch( 'cottages:hatch_wood', 'wooden hatch', 'cottages_minimal_wood.png', 'stairs:slab_wood' ); +cottages.register_hatch( 'cottages:hatch_steel', 'metal hatch', 'default_steel_block.png', 'default:steel_ingot' ); + + + + +----------------------------------------------------------------------------------------------------------- +-- and now the crafting receipes: +----------------------------------------------------------------------------------------------------------- + +-- transform opend and closed shutters into each other for convenience +minetest.register_craft({ + output = "cottages:window_shutter_open", + recipe = { + {"cottages:window_shutter_closed" }, + } +}) + +minetest.register_craft({ + output = "cottages:window_shutter_closed", + recipe = { + {"cottages:window_shutter_open" }, + } +}) + +minetest.register_craft({ + output = "cottages:window_shutter_open", + recipe = { + {"default:wood", "", "default:wood" }, + } +}) + +-- transform one half door into another +minetest.register_craft({ + output = "cottages:half_door", + recipe = { + {"cottages:half_door_inverted" }, + } +}) + +minetest.register_craft({ + output = "cottages:half_door_inverted", + recipe = { + {"cottages:half_door" }, + } +}) + +minetest.register_craft({ + output = "cottages:half_door 2", + recipe = { + {"", "default:wood", "" }, + {"", "doors:door_wood", "" }, + } +}) + + +-- transform open and closed versions into into another for convenience +minetest.register_craft({ + output = "cottages:gate_closed", + recipe = { + {"cottages:gate_open" }, + } +}) + +minetest.register_craft({ + output = "cottages:gate_open", + recipe = { + {"cottages:gate_closed"}, + } +}) + +minetest.register_craft({ + output = "cottages:gate_closed", + recipe = { + {"default:stick", "default:stick", "default:wood" }, + } +}) + diff --git a/nodes_fences.lua b/nodes_fences.lua new file mode 100644 index 0000000..998073f --- /dev/null +++ b/nodes_fences.lua @@ -0,0 +1,165 @@ +-- 22.01.13 Changed texture to that of the wood from the minimal development game + +-- Boilerplate to support localized strings if intllib mod is installed. +local S +if intllib then + S = intllib.Getter() +else + S = function(s) return s end +end + +minetest.register_node("cottages:fence_small", { + description = S("small fence"), + drawtype = "nodebox", + -- top, bottom, side1, side2, inner, outer + tiles = {"cottages_minimal_wood.png"}, + paramtype = "light", + paramtype2 = "facedir", + groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2}, + node_box = { + type = "fixed", + fixed = { + { -0.45, -0.35, 0.46, 0.45, -0.20, 0.50}, + { -0.45, 0.00, 0.46, 0.45, 0.15, 0.50}, + { -0.45, 0.35, 0.46, 0.45, 0.50, 0.50}, + + { -0.50, -0.50, 0.46, -0.45, 0.50, 0.50}, + { 0.45, -0.50, 0.46, 0.50, 0.50, 0.50}, + }, + }, + selection_box = { + type = "fixed", + fixed = { + { -0.50, -0.50, 0.4, 0.50, 0.50, 0.5}, + }, + }, + is_ground_content = false, +}) + + +minetest.register_node("cottages:fence_corner", { + description = S("small fence corner"), + drawtype = "nodebox", + -- top, bottom, side1, side2, inner, outer + tiles = {"cottages_minimal_wood.png"}, + paramtype = "light", + paramtype2 = "facedir", + groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2}, + node_box = { + type = "fixed", + fixed = { + { -0.45, -0.35, 0.46, 0.45, -0.20, 0.50}, + { -0.45, 0.00, 0.46, 0.45, 0.15, 0.50}, + { -0.45, 0.35, 0.46, 0.45, 0.50, 0.50}, + + { -0.50, -0.50, 0.46, -0.45, 0.50, 0.50}, + { 0.45, -0.50, 0.46, 0.50, 0.50, 0.50}, + + { 0.46, -0.35, -0.45, 0.50, -0.20, 0.45}, + { 0.46, 0.00, -0.45, 0.50, 0.15, 0.45}, + { 0.46, 0.35, -0.45, 0.50, 0.50, 0.45}, + + { 0.46, -0.50, -0.50, 0.50, 0.50, -0.45}, + { 0.46, -0.50, 0.45, 0.50, 0.50, 0.50}, + }, + }, + selection_box = { + type = "fixed", + fixed = { + { -0.50, -0.50,-0.5, 0.50, 0.50, 0.5}, + }, + }, + is_ground_content = false, +}) + + +minetest.register_node("cottages:fence_end", { + description = S("small fence end"), + drawtype = "nodebox", + -- top, bottom, side1, side2, inner, outer + tiles = {"cottages_minimal_wood.png"}, + paramtype = "light", + paramtype2 = "facedir", + groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2}, + node_box = { + type = "fixed", + fixed = { + { -0.45, -0.35, 0.46, 0.45, -0.20, 0.50}, + { -0.45, 0.00, 0.46, 0.45, 0.15, 0.50}, + { -0.45, 0.35, 0.46, 0.45, 0.50, 0.50}, + + { -0.50, -0.50, 0.46, -0.45, 0.50, 0.50}, + { 0.45, -0.50, 0.46, 0.50, 0.50, 0.50}, + + { 0.46, -0.35, -0.45, 0.50, -0.20, 0.45}, + { 0.46, 0.00, -0.45, 0.50, 0.15, 0.45}, + { 0.46, 0.35, -0.45, 0.50, 0.50, 0.45}, + + { 0.46, -0.50, -0.50, 0.50, 0.50, -0.45}, + { 0.46, -0.50, 0.45, 0.50, 0.50, 0.50}, + + { -0.50, -0.35, -0.45, -0.46, -0.20, 0.45}, + { -0.50, 0.00, -0.45, -0.46, 0.15, 0.45}, + { -0.50, 0.35, -0.45, -0.46, 0.50, 0.45}, + + { -0.50, -0.50, -0.50, -0.46, 0.50, -0.45}, + { -0.50, -0.50, 0.45, -0.46, 0.50, 0.50}, + }, + }, + selection_box = { + type = "fixed", + fixed = { + { -0.50, -0.50,-0.5, 0.50, 0.50, 0.5}, + }, + }, + is_ground_content = false, +}) + +minetest.register_craft({ + output = "cottages:fence_small 3", + recipe = { + {"default:fence_wood","default:fence_wood" }, + } +}) + +-- xfences can be configured to replace normal fences - which makes them uncraftable +if ( minetest.get_modpath("xfences") ~= nil ) then + minetest.register_craft({ + output = "cottages:fence_small 3", + recipe = { + {"xfences:fence","xfences:fence" }, + } + }) +end + +minetest.register_craft({ + output = "cottages:fence_corner", + recipe = { + {"cottages:fence_small","cottages:fence_small" }, + } +}) + +minetest.register_craft({ + output = "cottages:fence_small 2", + recipe = { + {"cottages:fence_corner" }, + } +}) + +minetest.register_craft({ + output = "cottages:fence_end", + recipe = { + {"cottages:fence_small","cottages:fence_small", "cottages:fence_small" }, + } +}) + +minetest.register_craft({ + output = "cottages:fence_small 3", + recipe = { + {"cottages:fence_end" }, + } +}) + + + + diff --git a/nodes_furniture.lua b/nodes_furniture.lua new file mode 100644 index 0000000..5d11675 --- /dev/null +++ b/nodes_furniture.lua @@ -0,0 +1,378 @@ +--------------------------------------------------------------------------------------- +-- furniture +--------------------------------------------------------------------------------------- +-- contains: +-- * a bed seperated into foot and head reagion so that it can be placed manually; it has +-- no other functionality than decoration! +-- * a sleeping mat - mostly for NPC that cannot afford a bet yet +-- * bench - if you don't have 3dforniture:chair, then this is the next best thing +-- * table - very simple one +-- * shelf - for stroring things; this one is 3d +-- * stovepipe - so that the smoke from the furnace can get away +-- * washing place - put it over a water source and you can 'wash' yourshelf +--------------------------------------------------------------------------------------- +-- TODO: change the textures of the bed (make the clothing white, foot path not entirely covered with cloth) + +-- Boilerplate to support localized strings if intllib mod is installed. +local S +if intllib then + S = intllib.Getter() +else + S = function(s) return s end +end + +-- a bed without functionality - just decoration +minetest.register_node("cottages:bed_foot", { + description = S("Bed (foot region)"), + drawtype = "nodebox", + tiles = {"cottages_beds_bed_top_bottom.png", "default_wood.png", "cottages_beds_bed_side.png", "cottages_beds_bed_side.png", "cottages_beds_bed_side.png", "cottages_beds_bed_side.png"}, + paramtype = "light", + paramtype2 = "facedir", + groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=3}, + sounds = default.node_sound_wood_defaults(), + node_box = { + type = "fixed", + fixed = { + -- bed + {-0.5, 0.0, -0.5, 0.5, 0.3, 0.5}, + + -- stützen + {-0.5, -0.5, -0.5, -0.4, 0.5, -0.4}, + { 0.4,-0.5, -0.5, 0.5, 0.5, -0.4}, + + -- Querstrebe + {-0.4, 0.3, -0.5, 0.4, 0.5, -0.4} + } + }, + selection_box = { + type = "fixed", + fixed = { + {-0.5, -0.5, -0.5, 0.5, 0.3, 0.5}, + } + }, + is_ground_content = false, +}) + +-- the bed is split up in two parts to avoid destruction of blocks on placement +minetest.register_node("cottages:bed_head", { + description = S("Bed (head region)"), + drawtype = "nodebox", + tiles = {"cottages_beds_bed_top_top.png", "default_wood.png", "cottages_beds_bed_side_top_r.png", "cottages_beds_bed_side_top_l.png", "default_wood.png", "cottages_beds_bed_side.png"}, + paramtype = "light", + paramtype2 = "facedir", + groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=3}, + sounds = default.node_sound_wood_defaults(), + node_box = { + type = "fixed", + fixed = { + -- bed + {-0.5, 0.0, -0.5, 0.5, 0.3, 0.5}, + + -- stützen + {-0.5,-0.5, 0.4, -0.4, 0.5, 0.5}, + { 0.4,-0.5, 0.4, 0.5, 0.5, 0.5}, + + -- Querstrebe + {-0.4, 0.3, 0.4, 0.4, 0.5, 0.5} + } + }, + selection_box = { + type = "fixed", + fixed = { + {-0.5, -0.5, -0.5, 0.5, 0.3, 0.5}, + } + }, + is_ground_content = false, +}) + + +-- the basic version of a bed - a sleeping mat +-- to facilitate upgrade path straw mat -> sleeping mat -> bed, this uses a nodebox +minetest.register_node("cottages:sleeping_mat", { + description = S("sleeping mat"), + drawtype = 'nodebox', + tiles = { 'cottages_sleepingmat.png' }, -- done by VanessaE + wield_image = 'cottages_sleepingmat.png', + inventory_image = 'cottages_sleepingmat.png', + sunlight_propagates = true, + paramtype = 'light', + paramtype2 = "facedir", + walkable = false, + groups = { snappy = 3 }, + sounds = default.node_sound_leaves_defaults(), + selection_box = { + type = "wallmounted", + }, + node_box = { + type = "fixed", + fixed = { + {-0.48, -0.5,-0.48, 0.48, -0.45, 0.48}, + } + }, + selection_box = { + type = "fixed", + fixed = { + {-0.48, -0.5,-0.48, 0.48, -0.25, 0.48}, + } + }, + is_ground_content = false, +}) + + + +-- furniture; possible replacement: 3dforniture:chair +minetest.register_node("cottages:bench", { + drawtype = "nodebox", + description = S("simple wooden bench"), + tiles = {"cottages_minimal_wood.png", "cottages_minimal_wood.png", "cottages_minimal_wood.png", "cottages_minimal_wood.png", "cottages_minimal_wood.png", "cottages_minimal_wood.png"}, + paramtype = "light", + paramtype2 = "facedir", + groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=3}, + sounds = default.node_sound_wood_defaults(), + node_box = { + type = "fixed", + fixed = { + -- sitting area + {-0.5, -0.15, 0.1, 0.5, -0.05, 0.5}, + + -- stützen + {-0.4, -0.5, 0.2, -0.3, -0.15, 0.4}, + { 0.3, -0.5, 0.2, 0.4, -0.15, 0.4}, + } + }, + selection_box = { + type = "fixed", + fixed = { + {-0.5, -0.5, 0, 0.5, 0, 0.5}, + } + }, + is_ground_content = false, +}) + + +-- a simple table; possible replacement: 3dforniture:table +minetest.register_node("cottages:table", { + description = S("table"), + drawtype = "nodebox", + -- top, bottom, side1, side2, inner, outer + tiles = {"cottages_minimal_wood.png"}, + paramtype = "light", + paramtype2 = "facedir", + groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2}, + node_box = { + type = "fixed", + fixed = { + { -0.1, -0.5, -0.1, 0.1, 0.3, 0.1}, + { -0.5, 0.3, -0.5, 0.5, 0.4, 0.5}, + }, + }, + selection_box = { + type = "fixed", + fixed = { + { -0.5, -0.5, -0.5, 0.5, 0.4, 0.5}, + }, + }, + is_ground_content = false, +}) + + +-- looks better than two slabs impersonating a shelf; also more 3d than a bookshelf +-- the infotext shows if it's empty or not +minetest.register_node("cottages:shelf", { + description = S("open storage shelf"), + drawtype = "nodebox", + -- top, bottom, side1, side2, inner, outer + tiles = {"cottages_minimal_wood.png"}, + paramtype = "light", + paramtype2 = "facedir", + groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2}, + node_box = { + type = "fixed", + fixed = { + + { -0.5, -0.5, -0.3, -0.4, 0.5, 0.5}, + { 0.4, -0.5, -0.3, 0.5, 0.5, 0.5}, + + { -0.5, -0.2, -0.3, 0.5, -0.1, 0.5}, + { -0.5, 0.3, -0.3, 0.5, 0.4, 0.5}, + }, + }, + selection_box = { + type = "fixed", + fixed = { + { -0.5, -0.5, -0.5, 0.5, 0.5, 0.5}, + }, + }, + + on_construct = function(pos) + + local meta = minetest.env:get_meta(pos); + + meta:set_string("formspec", + "size[8,8]".. + "list[current_name;main;0,0;8,3;]".. + "list[current_player;main;0,4;8,4;]") + meta:set_string("infotext", S("open storage shelf")) + local inv = meta:get_inventory(); + inv:set_size("main", 24); + end, + + can_dig = function( pos,player ) + local meta = minetest.env:get_meta( pos ); + local inv = meta:get_inventory(); + return inv:is_empty("main"); + end, + + on_metadata_inventory_put = function(pos, listname, index, stack, player) + local meta = minetest.env:get_meta( pos ); + meta:set_string('infotext', S('open storage shelf (in use)')); + end, + on_metadata_inventory_take = function(pos, listname, index, stack, player) + local meta = minetest.env:get_meta( pos ); + local inv = meta:get_inventory(); + if( inv:is_empty("main")) then + meta:set_string('infotext', S('open storage shelf (empty)')); + end + end, + is_ground_content = false, + + +}) + +-- so that the smoke from a furnace can get out of a building +minetest.register_node("cottages:stovepipe", { + description = S("stovepipe"), + drawtype = "nodebox", + tiles = {"default_steel_block.png"}, + paramtype = "light", + paramtype2 = "facedir", + groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2}, + node_box = { + type = "fixed", + fixed = { + { 0.20, -0.5, 0.20, 0.45, 0.5, 0.45}, + }, + }, + selection_box = { + type = "fixed", + fixed = { + { 0.20, -0.5, 0.20, 0.45, 0.5, 0.45}, + }, + }, + is_ground_content = false, +}) + + +-- this washing place can be put over a water source (it is open at the bottom) +minetest.register_node("cottages:washing", { + description = S("washing place"), + drawtype = "nodebox", + -- top, bottom, side1, side2, inner, outer + tiles = {"default_clay.png"}, + paramtype = "light", + paramtype2 = "facedir", + groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2}, + node_box = { + type = "fixed", + fixed = { + { -0.5, -0.5, -0.5, 0.5, -0.2, -0.2}, + + { -0.5, -0.5, -0.2, -0.4, 0.2, 0.5}, + { 0.4, -0.5, -0.2, 0.5, 0.2, 0.5}, + + { -0.4, -0.5, 0.4, 0.4, 0.2, 0.5}, + { -0.4, -0.5, -0.2, 0.4, 0.2, -0.1}, + + }, + }, + selection_box = { + type = "fixed", + fixed = { + { -0.5, -0.5, -0.5, 0.5, 0.2, 0.5}, + }, + }, + on_rightclick = function(pos, node, player) + -- works only with water beneath + local node_under = minetest.env:get_node( {x=pos.x, y=(pos.y-1), z=pos.z} ); + if( not( node_under ) or node_under.name == "ignore" or (node_under.name ~= 'default:water_source' and node_under.name ~= 'default:water_flowing')) then + minetest.chat_send_player( player:get_player_name(), S("Sorry. This washing place is out of water. Please place it above water!")); + else + minetest.chat_send_player( player:get_player_name(), S("You feel much cleaner after some washing.")); + end + end, + is_ground_content = false, + +}) + + + +--------------------------------------------------------------------------------------- +-- crafting receipes +--------------------------------------------------------------------------------------- +minetest.register_craft({ + output = "cottages:bed_foot", + recipe = { + {"wool:white", "", "", }, + {"default:wood", "", "", }, + {"default:stick", "", "", } + } +}) + +minetest.register_craft({ + output = "cottages:bed_head", + recipe = { + {"", "", "wool:white", }, + {"", "default:stick", "default:wood", }, + {"", "", "default:stick", } + } +}) + +minetest.register_craft({ + output = "cottages:sleeping_mat", + recipe = { + {"wool:white", "cottages:straw_mat","cottages:straw_mat" } + } +}) + + +minetest.register_craft({ + output = "cottages:table", + recipe = { + {"", "stairs:slab_wood", "", }, + {"", "default:stick", "" } + } +}) + +minetest.register_craft({ + output = "cottages:bench", + recipe = { + {"", "default:wood", "", }, + {"default:stick", "", "default:stick", } + } +}) + + +minetest.register_craft({ + output = "cottages:shelf", + recipe = { + {"default:stick", "default:wood", "default:stick", }, + {"default:stick", "default:wood", "default:stick", }, + {"default:stick", "", "default:stick"} + } +}) + +minetest.register_craft({ + output = "cottages:washing 2", + recipe = { + {"default:stick", }, + {"default:clay", }, + } +}) + +minetest.register_craft({ + output = "cottages:stovepipe 2", + recipe = { + {'default:steel_ingot', '', 'default:steel_ingot'}, + } +}) + diff --git a/nodes_historic.lua b/nodes_historic.lua new file mode 100644 index 0000000..4b2a3fe --- /dev/null +++ b/nodes_historic.lua @@ -0,0 +1,272 @@ +--------------------------------------------------------------------------------------- +-- decoration and building material +--------------------------------------------------------------------------------------- +-- * includes a wagon wheel that can be used as decoration on walls or to build (stationary) wagons +-- * dirt road - those are more natural in small old villages than cobble roads +-- * loam - no, old buildings are usually not built out of clay; loam was used +-- * straw - useful material for roofs +-- * glass pane - an improvement compared to fence posts as windows :-) +--------------------------------------------------------------------------------------- + +-- Boilerplate to support localized strings if intllib mod is installed. +local S +if intllib then + S = intllib.Getter() +else + S = function(s) return s end +end + +-- can be used to buid real stationary wagons or attached to walls as decoration +minetest.register_node("cottages:wagon_wheel", { + description = S("wagon wheel"), + drawtype = "signlike", + tiles = {"cottages_wagonwheel.png"}, -- done by VanessaE! + inventory_image = "cottages_wagonwheel.png", + wield_image = "cottages_wagonwheel.png", + paramtype = "light", + paramtype2 = "wallmounted", + + sunlight_propagates = true, + walkable = false, + selection_box = { + type = "wallmounted", + }, + groups = {choppy=2,dig_immediate=2,attached_node=1}, + legacy_wallmounted = true, + sounds = default.node_sound_defaults(), + is_ground_content = false, +}) + + +-- a nice dirt road for small villages or paths to fields +minetest.register_node("cottages:feldweg", { + description = S("dirt road"), + tiles = {"cottages_feldweg.png","default_dirt.png", "default_dirt.png^default_grass_side.png"}, + paramtype2 = "facedir", + groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2}, + legacy_facedir_simple = true, + groups = {crumbly=3}, + sounds = default.node_sound_dirt_defaults, + is_ground_content = false, +}) + + +-- people didn't use clay for houses; they did build with loam +minetest.register_node("cottages:loam", { + description = S("loam"), + tiles = {"cottages_loam.png"}, + groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2}, + groups = {crumbly=3}, + sounds = default.node_sound_dirt_defaults, + is_ground_content = false, +}) + +-- create stairs if possible +if( stairs and stairs.register_stair_and_slab) then + stairs.register_stair_and_slab("feldweg", "cottages:feldweg", + {snappy=2,choppy=2,oddly_breakable_by_hand=2}, + {"cottages_feldweg.png","default_dirt.png", "default_grass.png","default_grass.png","cottages_feldweg.png","cottages_feldweg.png"}, + S("Dirt Road Stairs"), + S("Dirt Road, half height"), + default.node_sound_dirt_defaults()) + + stairs.register_stair_and_slab("loam", "cottages:loam", + {snappy=2,choppy=2,oddly_breakable_by_hand=2}, + {"cottages_loam.png"}, + S("Loam Stairs"), + S("Loam Slab"), + default.node_sound_dirt_defaults()) + + stairs.register_stair_and_slab("clay", "default:clay", + {crumbly=3}, + {"default_clay.png"}, + S("Clay Stairs"), + S("Clay Slab"), + default.node_sound_dirt_defaults()) +end + + +-- straw is a common material for places where animals are kept indoors +-- right now, this block mostly serves as a placeholder +minetest.register_node("cottages:straw_ground", { + description = S("straw ground for animals"), + tiles = {"cottages_darkage_straw.png","cottages_loam.png","cottages_loam.png","cottages_loam.png","cottages_loam.png","cottages_loam.png"}, + groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2}, + groups = {crumbly=3}, + sounds = default.node_sound_dirt_defaults, + is_ground_content = false, +}) + + +-- note: these houses look good with a single fence pile as window! the glass pane is the version for 'richer' inhabitants +minetest.register_node("cottages:glass_pane", { + description = S("simple glass pane (centered)"), + drawtype = "nodebox", + -- top, bottom, side1, side2, inner, outer + tiles = {"cottages_glass_pane.png"}, + paramtype = "light", + paramtype2 = "facedir", + groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2}, + node_box = { + type = "fixed", + fixed = { + { -0.5, -0.5, -0.05, 0.5, 0.5, 0.05}, + }, + }, + selection_box = { + type = "fixed", + fixed = { + { -0.5, -0.5, -0.05, 0.5, 0.5, 0.05}, + }, + }, + is_ground_content = false, +}) + + +minetest.register_node("cottages:glass_pane_side", { + description = S("simple glass pane"), + drawtype = "nodebox", + -- top, bottom, side1, side2, inner, outer + tiles = {"cottages_glass_pane.png"}, + paramtype = "light", + paramtype2 = "facedir", + groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2}, + node_box = { + type = "fixed", + fixed = { + { -0.5, -0.5, -0.40, 0.5, 0.5, -0.50}, + }, + }, + selection_box = { + type = "fixed", + fixed = { + { -0.5, -0.5, -0.40, 0.5, 0.5, -0.50}, + }, + }, + is_ground_content = false, +}) + + +--------------------------------------------------------------------------------------- +-- a very small wooden slab +--------------------------------------------------------------------------------------- +minetest.register_node("cottages:wood_flat", { + description = S("flat wooden planks"), + drawtype = "nodebox", + -- top, bottom, side1, side2, inner, outer + tiles = {"cottages_minimal_wood.png"}, + paramtype = "light", + paramtype2 = "facedir", + groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2}, + node_box = { + type = "fixed", + fixed = { + { -0.5, -0.5, -0.50, 0.5, -0.5+1/16, 0.50}, + }, + }, + selection_box = { + type = "fixed", + fixed = { + { -0.5, -0.5, -0.50, 0.5, -0.5+1/16, 0.50}, + }, + }, + is_ground_content = false, + on_place = minetest.rotate_node, +}) + +--------------------------------------------------------------------------------------- +-- useful for building tents +--------------------------------------------------------------------------------------- +minetest.register_node("cottages:wool_tent", { + description = S("wool for tents"), + drawtype = "nodebox", + -- top, bottom, side1, side2, inner, outer + tiles = {"wool_white.png"}, + paramtype = "light", + paramtype2 = "facedir", + groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2}, + node_box = { + type = "fixed", + fixed = { + { -0.5, -0.5, -0.50, 0.5, -0.5+1/16, 0.50}, + }, + }, + selection_box = { + type = "fixed", + fixed = { + { -0.5, -0.5, -0.50, 0.5, -0.5+1/16, 0.50}, + }, + }, + is_ground_content = false, + on_place = minetest.rotate_node, +}) + + +--------------------------------------------------------------------------------------- +-- crafting receipes +--------------------------------------------------------------------------------------- +minetest.register_craft({ + output = "cottages:wagon_wheel 3", + recipe = { + {"default:iron_lump", "default:stick", "default:iron_lump" }, + {"default:stick", "default:steel_ingot", "default:stick" }, + {"default:iron_lump", "default:stick", "default:iron_lump" } + } +}) + +-- run a wagon wheel over dirt :-) +minetest.register_craft({ + output = "cottages:feldweg 4", + recipe = { + {"", "cottages:wagon_wheel", "" }, + {"default:dirt","default:dirt","default:dirt" } + }, + replacements = { {'cottages:wagon_wheel', 'cottages:wagon_wheel'}, } +}) + +minetest.register_craft({ + output = "cottages:loam 4", + recipe = { + {"default:sand" }, + {"default:clay"} + } +}) + +minetest.register_craft({ + output = "cottages:straw_ground 2", + recipe = { + {"cottages:straw_mat" }, + {"cottages:loam"} + } +}) + +minetest.register_craft({ + output = "cottages:glass_pane 4", + recipe = { + {"default:stick", "default:stick", "default:stick" }, + {"default:stick", "default:glass", "default:stick" }, + {"default:stick", "default:stick", "default:stick" } + } +}) + +minetest.register_craft({ + output = "cottages:glass_pane_side", + recipe = { + {"cottages:glass_pane"}, + } +}) + +minetest.register_craft({ + output = "cottages:glass_pane", + recipe = { + {"cottages:glass_pane_side"}, + } +}) + +minetest.register_craft({ + output = "cottages:wood_flat 16", + recipe = { + {"default:stick", "farming:string","default:stick" }, + {"default:stick", "", "default:stick" }, + } +}) diff --git a/nodes_roof.lua b/nodes_roof.lua new file mode 100644 index 0000000..7cecda5 --- /dev/null +++ b/nodes_roof.lua @@ -0,0 +1,216 @@ +-- Boilerplate to support localized strings if intllib mod is installed. +local S +if intllib then + S = intllib.Getter() +else + S = function(s) return s end +end + +--------------------------------------------------------------------------------------- +-- roof parts +--------------------------------------------------------------------------------------- +-- a better roof than the normal stairs; can be replaced by stairs:stair_wood + + +-- create the three basic roof parts plus receipes for them; +cottages.register_roof = function( name, tiles, basic_material, homedecor_alternative ) + + minetest.register_node("cottages:roof_"..name, { + description = S("Roof "..name), + drawtype = "nodebox", + --tiles = {"default_tree.png","default_wood.png","default_wood.png","default_wood.png","default_wood.png","default_tree.png"}, + tiles = tiles, + paramtype = "light", + paramtype2 = "facedir", + groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2}, + node_box = { + type = "fixed", + fixed = { + {-0.5, -0.5, -0.5, 0.5, 0, 0}, + {-0.5, 0, 0, 0.5, 0.5, 0.5}, + }, + }, + selection_box = { + type = "fixed", + fixed = { + {-0.5, -0.5, -0.5, 0.5, 0, 0}, + {-0.5, 0, 0, 0.5, 0.5, 0.5}, + }, + }, + is_ground_content = false, + }) + + -- a better roof than the normal stairs; this one is for usage directly on top of walls (it has the form of a stair) + minetest.register_node("cottages:roof_connector_"..name, { + description = S("Roof connector "..name), + drawtype = "nodebox", + -- top, bottom, side1, side2, inner, outer + --tiles = {"default_tree.png","default_wood.png","default_tree.png","default_tree.png","default_wood.png","default_tree.png"}, + --tiles = {"darkage_straw.png","default_wood.png","darkage_straw.png","darkage_straw.png","darkage_straw.png","darkage_straw.png"}, + tiles = tiles, + paramtype = "light", + paramtype2 = "facedir", + groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2}, + node_box = { + type = "fixed", + fixed = { + {-0.5, -0.5, -0.5, 0.5, 0, 0.5}, + {-0.5, 0, 0, 0.5, 0.5, 0.5}, + }, + }, + selection_box = { + type = "fixed", + fixed = { + {-0.5, -0.5, -0.5, 0.5, 0, 0.5}, + {-0.5, 0, 0, 0.5, 0.5, 0.5}, + }, + }, + is_ground_content = false, + }) + + -- this one is the slab version of the above roof + minetest.register_node("cottages:roof_flat_"..name, { + description = S("Roof (flat) "..name), + drawtype = "nodebox", + -- top, bottom, side1, side2, inner, outer + --tiles = {"default_tree.png","default_wood.png","default_tree.png","default_tree.png","default_wood.png","default_tree.png"}, + -- this one is from all sides - except from the underside - of the given material + tiles = { tiles[1], tiles[2], tiles[1], tiles[1], tiles[1], tiles[1] }; + paramtype = "light", + paramtype2 = "facedir", + groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2}, + node_box = { + type = "fixed", + fixed = { + {-0.5, -0.5, -0.5, 0.5, 0, 0.5}, + }, + }, + selection_box = { + type = "fixed", + fixed = { + {-0.5, -0.5, -0.5, 0.5, 0, 0.5}, + }, + }, + is_ground_content = false, + }) + + + if( not( homedecor_alternative ) + or ( minetest.get_modpath("homedecor") ~= nil )) then + + minetest.register_craft({ + output = "cottages:roof_"..name.." 6", + recipe = { + {'', '', basic_material }, + {'', basic_material, '' }, + {basic_material, '', '' } + } + }) + end + + -- make those roof parts that use homedecor craftable without that mod + if( homedecor_alternative ) then + basic_material = 'cottages:roof_wood'; + + minetest.register_craft({ + output = "cottages:roof_"..name.." 3", + recipe = { + {homedecor_alternative, '', basic_material }, + {'', basic_material, '' }, + {basic_material, '', '' } + } + }) + end + + + minetest.register_craft({ + output = "cottages:roof_connector_"..name, + recipe = { + {'cottages:roof_'..name }, + {'default:wood' }, + } + }) + + minetest.register_craft({ + output = "cottages:roof_flat_"..name..' 2', + recipe = { + {'cottages:roof_'..name, 'cottages:roof_'..name }, + } + }) + + -- convert flat roofs back to normal roofs + minetest.register_craft({ + output = "cottages:roof_"..name, + recipe = { + {"cottages:roof_flat_"..name, "cottages:roof_flat_"..name } + } + }) + +end -- of cottages.register_roof( name, tiles, basic_material ) + + + + +--------------------------------------------------------------------------------------- +-- add the diffrent roof types +--------------------------------------------------------------------------------------- +cottages.register_roof( 'straw', + {"cottages_darkage_straw.png","cottages_darkage_straw.png","cottages_darkage_straw.png","cottages_darkage_straw.png","cottages_darkage_straw.png","cottages_darkage_straw.png"}, + 'cottages:straw_mat', nil ); +cottages.register_roof( 'reet', + {"cottages_reet.png","cottages_reet.png","cottages_reet.png","cottages_reet.png","cottages_reet.png","cottages_reet.png"}, + 'default:papyrus', nil ); +cottages.register_roof( 'wood', + {"default_tree.png","default_wood.png","default_wood.png","default_wood.png","default_wood.png","default_tree.png"}, + 'default:wood', nil); +cottages.register_roof( 'black', + {"cottages_homedecor_shingles_asphalt.png","default_wood.png","default_wood.png","default_wood.png","default_wood.png","cottages_homedecor_shingles_asphalt.png"}, + 'homedecor:shingles_asphalt', 'default:coal_lump'); +cottages.register_roof( 'red', + {"cottages_homedecor_shingles_terracotta.png","default_wood.png","default_wood.png","default_wood.png","default_wood.png","cottages_homedecor_shingles_terracotta.png"}, + 'homedecor:shingles_terracotta', 'default:clay_brick'); +cottages.register_roof( 'brown', + {"cottages_homedecor_shingles_wood.png","default_wood.png","default_wood.png","default_wood.png","default_wood.png","cottages_homedecor_shingles_wood.png"}, + 'homedecor:shingles_wood', 'default:dirt'); +cottages.register_roof( 'slate', + {"cottages_slate.png","default_wood.png","cottages_slate.png","cottages_slate.png","default_wood.png","cottages_slate.png"}, + 'default:stone', nil); + + +--------------------------------------------------------------------------------------- +-- slate roofs are sometimes on vertical fronts of houses +--------------------------------------------------------------------------------------- +minetest.register_node("cottages:slate_vertical", { + description = S("Vertical Slate"), + tiles = {"cottages_slate.png","default_wood.png","cottages_slate.png","cottages_slate.png","default_wood.png","cottages_slate.png"}, + paramtype2 = "facedir", + groups = {cracky=2, stone=1}, + sounds = default.node_sound_stone_defaults(), + is_ground_content = false, +}) + + +minetest.register_craft({ + output = "cottages:slate_vertical", + recipe = { {'default:stone', 'default:wood', '' } + } +}); + +--------------------------------------------------------------------------------------- +-- Reed might also be needed as a full block +--------------------------------------------------------------------------------------- +minetest.register_node("cottages:reet", { + description = S("Reet for thatching"), + tiles = {"cottages_reet.png"}, + groups = {snappy=3,choppy=3,oddly_breakable_by_hand=3,flammable=3}, + sounds = default.node_sound_wood_defaults(), + is_ground_content = false, +}) + + +minetest.register_craft({ + output = "cottages:reet", + recipe = { {'default:papyrus','default:papyrus'}, + {'default:papyrus','default:papyrus'}, + }, +}) diff --git a/nodes_straw.lua b/nodes_straw.lua new file mode 100644 index 0000000..745b40b --- /dev/null +++ b/nodes_straw.lua @@ -0,0 +1,461 @@ +--------------------------------------------------------------------------------------- +-- straw - a very basic material +--------------------------------------------------------------------------------------- +-- * straw mat - for animals and very poor NPC; also basis for other straw things +-- * straw bale - well, just a good source for building and decoration + +-- Boilerplate to support localized strings if intllib mod is installed. +local S +if intllib then + S = intllib.Getter() +else + S = function(s) return s end +end + +-- an even simpler from of bed - usually for animals +-- it is a nodebox and not wallmounted because that makes it easier to replace beds with straw mats +minetest.register_node("cottages:straw_mat", { + description = S("layer of straw"), + drawtype = 'nodebox', + tiles = { 'cottages_darkage_straw.png' }, -- done by VanessaE + wield_image = 'cottages_darkage_straw.png', + inventory_image = 'cottages_darkage_straw.png', + sunlight_propagates = true, + paramtype = 'light', + paramtype2 = "facedir", + walkable = false, + groups = { snappy = 3 }, + sounds = default.node_sound_leaves_defaults(), + node_box = { + type = "fixed", + fixed = { + {-0.48, -0.5,-0.48, 0.48, -0.45, 0.48}, + } + }, + selection_box = { + type = "fixed", + fixed = { + {-0.48, -0.5,-0.48, 0.48, -0.25, 0.48}, + } + }, + is_ground_content = false, +}) + +-- straw bales are a must for farming environments; if you for some reason do not have the darkage mod installed, this here gets you a straw bale +minetest.register_node("cottages:straw_bale", { + drawtype = "nodebox", + description = S("straw bale"), + tiles = {"cottages_darkage_straw_bale.png"}, + paramtype = "light", + groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=3}, + sounds = default.node_sound_wood_defaults(), + -- the bale is slightly smaller than a full node + node_box = { + type = "fixed", + fixed = { + {-0.45, -0.5,-0.45, 0.45, 0.45, 0.45}, + } + }, + selection_box = { + type = "fixed", + fixed = { + {-0.45, -0.5,-0.45, 0.45, 0.45, 0.45}, + } + }, + is_ground_content = false, +}) + +-- just straw +minetest.register_node("cottages:straw", { + drawtype = "normal", + description = S("straw"), + tiles = {"cottages_darkage_straw.png"}, + groups = {snappy=3,choppy=3,oddly_breakable_by_hand=3,flammable=3}, + sounds = default.node_sound_wood_defaults(), + -- the bale is slightly smaller than a full node + is_ground_content = false, +}) + + +minetest.register_node("cottages:threshing_floor", { + drawtype = "nodebox", + description = S("threshing floor"), +-- TODO: stone also looks pretty well for this + tiles = {"default_junglewood.png^farming_wheat.png","default_junglewood.png","default_junglewood.png^default_stick.png"}, + paramtype = "light", + paramtype2 = "facedir", + groups = {cracky=2}, + is_ground_content = false, + node_box = { + type = "fixed", + fixed = { + {-0.50, -0.5,-0.50, 0.50, -0.40, 0.50}, + + {-0.50, -0.4,-0.50,-0.45, -0.20, 0.50}, + { 0.45, -0.4,-0.50, 0.50, -0.20, 0.50}, + + {-0.45, -0.4,-0.50, 0.45, -0.20,-0.45}, + {-0.45, -0.4, 0.45, 0.45, -0.20, 0.50}, + } + }, + selection_box = { + type = "fixed", + fixed = { + {-0.50, -0.5,-0.50, 0.50, -0.20, 0.50}, + } + }, + on_construct = function(pos) + + local meta = minetest.get_meta(pos); + meta:set_string("infotext", S("Threshing floor")); + local inv = meta:get_inventory(); + inv:set_size("harvest", 2); + inv:set_size("straw", 4); + inv:set_size("seeds", 4); + end, + + after_place_node = function(pos, placer) + local meta = minetest.get_meta(pos); + meta:set_string("owner", placer:get_player_name() or ""); + meta:set_string("infotext", S("Threshing floor (owned by %s)"):format(meta:get_string("owner") or "")); + meta:set_string("formspec", + "size[8,8]".. + "image[1.5,0;1,1;default_stick.png]".. + "image[0,1;1,1;farming_wheat.png]".. + "list[current_name;harvest;1,1;2,1;]".. + "list[current_name;straw;5,0;2,2;]".. + "list[current_name;seeds;5,2;2,2;]".. + "label[1,0.5;"..S("Harvested wheat:").."]".. + "label[4,0.0;"..S("Straw:").."]".. + "label[4,2.0;"..S("Seeds:").."]".. + "label[0,-0.5;"..S("Threshing floor").."]".. + "label[2.5,-0.5;"..S("Owner: %s"):format(meta:get_string("owner") or "").."]".. + "label[0,2.5;"..S("Punch threshing floor with a stick").."]".. + "label[0,3.0;"..S("to get straw and seeds from wheat.").."]".. + "list[current_player;main;0,4;8,4;]"); + end, + + can_dig = function(pos,player) + + local meta = minetest.get_meta(pos); + local inv = meta:get_inventory(); + local owner = meta:get_string('owner'); + + if( not( inv:is_empty("harvest")) + or not( inv:is_empty("straw")) + or not( inv:is_empty("seeds")) + or not( player ) + or ( owner and owner ~= '' and player:get_player_name() ~= owner )) then + + return false; + end + return true; + end, + + allow_metadata_inventory_move = function(pos, from_list, from_index, to_list, to_index, count, player) + local meta = minetest.get_meta(pos) + if( player and player:get_player_name() ~= meta:get_string('owner' )) then + return 0 + end + return count; + end, + + allow_metadata_inventory_put = function(pos, listname, index, stack, player) + local meta = minetest.get_meta(pos) + -- only accept input the threshing floor can use/process + if( listname=='straw' + or listname=='seeds' + or (listname=='harvest' and stack and stack:get_name() ~= 'farming:wheat' )) then + return 0; + end + + if( player and player:get_player_name() ~= meta:get_string('owner' )) then + return 0 + end + return stack:get_count() + end, + + allow_metadata_inventory_take = function(pos, listname, index, stack, player) + local meta = minetest.get_meta(pos) + if( player and player:get_player_name() ~= meta:get_string('owner' )) then + return 0 + end + return stack:get_count() + end, + + + on_punch = function(pos, node, puncher) + if( not( pos ) or not( node ) or not( puncher )) then + return; + end + -- only punching with a normal stick is supposed to work + local wielded = puncher:get_wielded_item(); + if( not( wielded ) or not( wielded:get_name() ) or wielded:get_name() ~= 'default:stick') then + return; + end + local name = puncher:get_player_name(); + + local meta = minetest.get_meta(pos); + local inv = meta:get_inventory(); + + local input = inv:get_list('harvest'); + -- we have two input slots + local stack1 = inv:get_stack( 'harvest', 1); + local stack2 = inv:get_stack( 'harvest', 2); + + if( ( stack1:is_empty() and stack2:is_empty()) + or( not( stack1:is_empty()) and stack1:get_name() ~= 'farming:wheat') + or( not( stack2:is_empty()) and stack2:get_name() ~= 'farming:wheat')) then + +-- minetest.chat_send_player( name, 'One of the input slots contains something else than wheat, or there is no wheat at all.'); + return; + end + + -- on average, process 25 wheat at each punch (10..40 are possible) + local anz_wheat = 10 + math.random( 0, 30 ); + -- we already made sure there is only wheat inside + local found_wheat = stack1:get_count() + stack2:get_count(); + + -- do not process more wheat than present in the input slots + if( found_wheat < anz_wheat ) then + anz_wheat = found_wheat; + end + + -- this can be enlarged by a multiplicator if desired + local anz_straw = anz_wheat; + local anz_seeds = anz_wheat; + + if( inv:room_for_item('straw','cottages:straw_mat '..tostring( anz_straw )) + and inv:room_for_item('seeds','farming:seed_wheat '..tostring( anz_seeds ))) then + + -- the player gets two kind of output + inv:add_item("straw",'cottages:straw_mat '..tostring( anz_straw )); + inv:add_item("seeds",'farming:seed_wheat '..tostring( anz_seeds )); + -- consume the wheat + inv:remove_item("harvest", 'farming:wheat '..tostring( anz_wheat )); + + local anz_left = found_wheat - anz_wheat; + if( anz_left > 0 ) then + minetest.chat_send_player( name, S('You have threshed %s wheat (%s are left).'):format(anz_wheat,anz_left)); + else + minetest.chat_send_player( name, S('You have threshed the last %s wheat.'):format(anz_wheat)); + end + end + end, +}) + + + +minetest.register_node("cottages:handmill", { + description = S("mill, powered by punching"), + drawtype = "mesh", + mesh = "cottages_handmill.obj", + tiles = {"default_stone.png"}, + paramtype = "light", + paramtype2 = "facedir", + groups = {cracky=2}, + is_ground_content = false, + selection_box = { + type = "fixed", + fixed = { + {-0.50, -0.5,-0.50, 0.50, 0.25, 0.50}, + } + }, + collision_box = { + type = "fixed", + fixed = { + {-0.50, -0.5,-0.50, 0.50, 0.25, 0.50}, + } + }, + on_construct = function(pos) + local meta = minetest.get_meta(pos); + meta:set_string("infotext", S("Mill, powered by punching")); + local inv = meta:get_inventory(); + inv:set_size("seeds", 1); + inv:set_size("flour", 4); + end, + + after_place_node = function(pos, placer) + local meta = minetest.get_meta(pos); + meta:set_string("owner", placer:get_player_name() or ""); + meta:set_string("infotext", S("Mill, powered by punching (owned by %s)"):format(meta:get_string("owner") or "")); + meta:set_string("formspec", + "size[8,8]".. + "image[0,1;1,1;farming_wheat_seed.png]".. + "list[current_name;seeds;1,1;1,1;]".. + "list[current_name;flour;5,1;2,2;]".. + "label[0,0.5;"..S("Wheat seeds:").."]".. + "label[4,0.5;"..S("Flour:").."]".. + "label[0,-0.5;"..S("Mill").."]".. + "label[2.5,-0.5;"..S("Owner: %s"):format(meta:get_string('owner') or "").."]".. + "label[0,2.5;"..S("Punch this hand-driven mill").."]".. + "label[0,3.0;"..S("to convert wheat seeds into flour.").."]".. + "list[current_player;main;0,4;8,4;]"); + end, + + can_dig = function(pos,player) + + local meta = minetest.get_meta(pos); + local inv = meta:get_inventory(); + local owner = meta:get_string('owner'); + + if( not( inv:is_empty("flour")) + or not( inv:is_empty("seeds")) + or not( player ) + or ( owner and owner ~= '' and player:get_player_name() ~= owner )) then + + return false; + end + return true; + end, + + allow_metadata_inventory_move = function(pos, from_list, from_index, to_list, to_index, count, player) + local meta = minetest.get_meta(pos) + if( player and player:get_player_name() ~= meta:get_string('owner' )) then + return 0 + end + return count; + end, + + allow_metadata_inventory_put = function(pos, listname, index, stack, player) + local meta = minetest.get_meta(pos) + -- only accept input the threshing floor can use/process + if( listname=='flour' + or (listname=='seeds' and stack and stack:get_name() ~= 'farming:seed_wheat' )) then + return 0; + end + + if( player and player:get_player_name() ~= meta:get_string('owner' )) then + return 0 + end + return stack:get_count() + end, + + allow_metadata_inventory_take = function(pos, listname, index, stack, player) + local meta = minetest.get_meta(pos) + if( player and player:get_player_name() ~= meta:get_string('owner' )) then + return 0 + end + return stack:get_count() + end, + + -- this code is very similar to the threshing floor; except that it has only one input- and output-slot + -- and does not require the usage of a stick + on_punch = function(pos, node, puncher) + if( not( pos ) or not( node ) or not( puncher )) then + return; + end + local name = puncher:get_player_name(); + + local meta = minetest.get_meta(pos); + local inv = meta:get_inventory(); + + local input = inv:get_list('seeds'); + local stack1 = inv:get_stack( 'seeds', 1); + + if( ( stack1:is_empty()) + or( not( stack1:is_empty()) and stack1:get_name() ~= 'farming:seed_wheat')) then + + return; + end + + -- turning the mill is a slow process; 1-21 flour are generated per turn + local anz = 1 + math.random( 0, 20 ); + -- we already made sure there is only wheat inside + local found = stack1:get_count(); + + -- do not process more wheat than present in the input slots + if( found < anz ) then + anz = found; + end + + + if( inv:room_for_item('flour','farming:flour '..tostring( anz ))) then + + inv:add_item("flour",'farming:flour '..tostring( anz )); + inv:remove_item("seeds", 'farming:seed_wheat '..tostring( anz )); + + local anz_left = found - anz; + if( anz_left > 0 ) then + minetest.chat_send_player( name, S('You have grinded %s wheat seeds (%s are left).'):format(anz,anz_left)); + else + minetest.chat_send_player( name, S('You have grinded the last %s wheat seeds.'):format(anz)); + end + + -- if the version of MT is recent enough, rotate the mill a bit + if( minetest.swap_node ) then + node.param2 = node.param2 + 1; + if( node.param2 > 3 ) then + node.param2 = 0; + end + minetest.swap_node( pos, node ); + end + end + end, +}) + + + + +--------------------------------------------------------------------------------------- +-- crafting receipes +--------------------------------------------------------------------------------------- +-- this returns corn as well +-- the replacements work only if the replaced slot gets empty... +minetest.register_craft({ + output = "cottages:straw_mat 6", + recipe = { + {'default:cobble','',''}, + {"farming:wheat_harvested", "farming:wheat_harvested", "farming:wheat_harvested", }, + }, + replacements = {{ 'default:cobble', "farming:seed_wheat 3" }}, +}) + +-- this is a better way to get straw mats +minetest.register_craft({ + output = "cottages:threshing_floor", + recipe = { + {"default:junglewood", "default:chest_locked", "default:junglewood", }, + {"default:junglewood", "default:stone", "default:junglewood", }, + }, +}) + +-- and a way to turn wheat seeds into flour +minetest.register_craft({ + output = "cottages:handmill", + recipe = { + {"default:stick", "default:stone", "", }, + {"", "default:steel_ingot", "", }, + {"", "default:stone", "", }, + }, +}) + +minetest.register_craft({ + output = "cottages:straw_bale", + recipe = { + {"cottages:straw_mat"}, + {"cottages:straw_mat"}, + {"cottages:straw_mat"}, + }, +}) + +minetest.register_craft({ + output = "cottages:straw", + recipe = { + {"cottages:straw_bale"}, + }, +}) + +minetest.register_craft({ + output = "cottages:straw_bale", + recipe = { + {"cottages:straw"}, + }, +}) + +minetest.register_craft({ + output = "cottages:straw_mat 3", + recipe = { + {"cottages:straw_bale"}, + }, +}) diff --git a/textures/cottages_barrel.png b/textures/cottages_barrel.png new file mode 100644 index 0000000000000000000000000000000000000000..174c5d7750dada0503dec354b8aa14a3b1f9c938 GIT binary patch literal 2668 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 Ay#N3J literal 0 HcmV?d00001 diff --git a/textures/cottages_beds_bed_side.png b/textures/cottages_beds_bed_side.png new file mode 100644 index 0000000000000000000000000000000000000000..c9e79e2aba80e916d9acab04fea5b673accedf4f GIT binary patch literal 536 zcmV+z0_XjSP)Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L01FcU01FcV0GgZ_00007bV*G`2iylA z4JQIGVXZd+000?uMObu0Z*6U5Zgc=ca%Ew3Wn>_CX>@2HM@dakSAh-}0004VNklL_348I2k#!Ajo5RV|)wYn?byS zcM@v26i%ba{{@?|tR$jz<03mj@)i}9XHV{pn_0tFs|`+77yMh->owCVZDtKH`OZ=k zGf1~u?L)4^LGM_BgZ=62RuN|_>qI&?14DmbU@fa1!GHc@+xlw#SefCVC!J(Eh_$|2 z|L@}Vt5yn3TVUQPrd}fN6eU43YaD8vcEY?Dz0_|2@L^7!GM@vP_jy}Ng0 a(SHD}p>TO4Fg`l~0000Px#32;bRa{vGf6951U69E94oEQKA00(qQO+^RX2OkYG18>uNwEzGB8FWQhbVF}# zZDnqB07G(RVRU6=Aa`kWXdp*PO;A^X4i^9b0bxl*K~y-)h10!?6JZ#|@n6_+VIzqk z7GdKDo5r|gi-4^CvYi(ocDCM$H+d7Pjd=$thB#1p@%+)OEGTo(sN2NyFI-*T)hrH!;4B;!PF<9`jr{k)AdInUeo^Rl zCM$!ZR(&o0t2ZBY+l~L)Ow&ZLxKln>x82xU+=_Z;u&KcOQk4y(ahxSMY&AD*Ur`v1 qV{hM&JUM+(*q2KAId7x<)ZrgZaE2ob)R?pY0000Px#32;bRa{vGf6951U69E94oEQKA00(qQO+^RX2OkYG5u9oY{Qv*}8FWQhbVF}# zZDnqB07G(RVRU6=Aa`kWXdp*PO;A^X4i^9b0b@x-K~y-)jnltt6LB2I@z>caw2?$D zmPP|Y57Zdip&)kc;MUE>wX6S$tAB6zW8|N37@>&cR#@<7gP{J*I!(H6QFVA)!c>V5+ z=T9Gjqh`yb!oGPCG1^$eUzEg2>d8iJXlz8aqJUFu;wC=e8ai09Uabta_18E_ivk{F zf52d6U|z+KDMPo@2Fs=L@Hyl=9^wS|@d*p)`Fxy=LCgT2U!?g40geaN|KJ9GBT~P2 z-EygHo`RPzwtJ0e1ggj|Vlk~SBU?mxmh#sb9yMEIU(MjmQ+|JV&`goeoU~${jsiBL z%2fTg@4worSFeoecG|-1O!-<{_3B)3BUSnVvjFA?X)-WQ(td+RR4W|ONn@O(J|4D) sKUTNX)`)6?z1@x8|6X4Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L01FcU01FcV0GgZ_00007bV*G`2i*b- z5d$H$75nM{000?uMObu0Z*6U5Zgc=ca%Ew3Wn>_CX>@2HM@dakSAh-}0005hNkl{*5R_6-N@1-+6eB3Q{RWO6hooec$7~C&qXzS?-p5=QK^nZ=0rxx~`9R_r$8IkluS< zUtb9!V67#DfY$oNS=W`W>-b+Yl@Nk)9LYJ8bEd9qlu{?ox~`N`2q6$-JT)V=)>v!l zx($EC&qXL_SlTvm+}4m&9W>QW9a+-#Bt6Y?LRhCT`m{Kab(*zo}ZuDw(VHb z&hg$KlRY*ghhaEw*|v?ku4&u$#QCTHyJlq5G=vZ+rC^L<7zR>GC(dL4_s#qPlX-3$ Tta9{h00000NkvXXu0mjf$`2nO literal 0 HcmV?d00001 diff --git a/textures/cottages_beds_bed_top_top.png b/textures/cottages_beds_bed_top_top.png new file mode 100644 index 0000000000000000000000000000000000000000..fc46ee198c1334a71802cb876976f24355a205e5 GIT binary patch literal 605 zcmV-j0;2tiP)Px#32;bRa{vGf6951U69E94oEQKA00(qQO+^RX2OkXyGj+J6ApigX8FWQhbVF}# zZDnqB07G(RVRU6=Aa`kWXdp*PO;A^X4i^9b0m?~4K~y-)mD0g)OkorS@Zb05O|>bi zREdewBB&-d(%9M9iH(h|zr7|+RT4R2$RjZetymR;FW${g;KRl)xSjL!0GnNAO1>8y3iJ|+f}K$& za|*PYEXQ|A)@jQ+ZSNBXT}H8iL4%_syh%s`qdk5H%A5?tcj?ONu4dY>mNQ*)y1@iq z1&W-h!10_cVJl@cBYBfQ+xX_Yy+AcQe_DKU91=9sP3Fis~#sa5%d`xIzaiKbP znswUd=UOHPd`UQ4(hrO!%obz=G*}6A6Rwr4C(NEaTul&#p9!en$TqwCYypV_DRUE>luIEZn) z#;GWL9^Eo^O`S_=<3}XMu^Df16@%#b7&p*WefB*rz%4` r>A&}!#HZ>5xE?3G5)=3q4Jz&rGK{nD#xDFT00000NkvXXu0mjfqc#b` literal 0 HcmV?d00001 diff --git a/textures/cottages_darkage_straw.png b/textures/cottages_darkage_straw.png new file mode 100644 index 0000000000000000000000000000000000000000..9817316a37bb59866e4b904a6cf0617d2b85a3b8 GIT binary patch literal 852 zcmV-a1FQUrP)Px#32;bRa{vGf6951U69E94oEQKA00(qQO+^RX3Jwk}5ko^xaR2}U=1D|BR5;58 z!P#ybRRDnD|C~8zRxjh&<4Ga7O%(~E3Kc52EQIawxDnicO)!?r!{d&!ERjk`wwr?U z&zJPWfYx|OB+6}Y1Dky1;R|^EQ$(KhDfShkFd$8A;%JEc?!-b?HizSo!1WmTE=R`- zSG%12(4*}}B)f+3RP*Xhz;+{<#EN7G+iin1#^CiFaHmXSShA8S7PXvKiV>z19q{9+9 zwr%t3M~w`JlD;o67?dM<^UF7cfkOC#Jnd*&@IA@>O~E+w2yD&qaYr<*$XJUvCXEekRziZH`YpF2A%qTy{jU!0|ONPeb-Q!})(L zMOKkK*_c|fTp8j+O`3w7J_9KlCL_h-I%oOV5RV0cXE7WG1ffN}Z_%RVaAuS31i}({ zp2v%0g?#t6Af5^=OHfxiN6%f}{ZmlZf~INs^=HlUu_4VG;zP}c_a)nVgAfAOH>kF1 z8H9??ve+zZd=Hums=T4e4F|CzOH;C)#MB1cS16rQl!hV$`IHJkQKWnJh0QiG6lufF zRYBf#RE>)pzEW>J@Ju7X)RclEz7Hfbm!7rmDm=PdCOvv;rB}FswC)@q=~|b94y^& ecbm}Px#32;bRa{vGf6951U69E94oEQKA00(qQO+^RX3Jwl25v4Q}EC2uk%}GQ-R5;6> z(aUZdWdOzT|2N+^;~9@H#KWu zUdh9=8R6}QuBQmY9MzyW|D;RMw@6Of+^q`+{tBlL%p3rsU5P(7`QVYuc4IJ{D54$2afMMg4Nj*8_L%XBjb)eA zb8(L6{Da_5(|vCk-+Vn+}#v-?V3&>Hc>+q!oP10fIk$t zPJwKh42BI-WLTEP>6yalxPoq5P*bB?29M6Cc&k)n>l}aN;94f9rwyZ_ zWHMGLog4i6B4V>naEC2S)8g{^o(F-T)02?Eavif=CJg5qUDVjOu)5hYno7hsPd+`= z{LiT1eaYD@V0v6qX^B!0CmN^Y@W;zFzyFkT{zZ@Ophb~3OoD>Ti#?CObolnW5M$tj zAxee=#d47mu1hAqz;z^U=Wt_@R+yq9m{}w{fsg{naR?qrj2F)|ld(WbL7_8F9@_l! zG-qE3s;UAYT$jX2$s{njyx6n7tr0?CwHj1i)bu<>BPE-#pzT1ZL1!h^UIUQC1FKKK zs>GNx(u|DI7a>3Y@}0%b0m4t;{J@Xjf6M##e>09fhr__*Td4R z$XmlHhzNb(p{jWANvWVBIOiB#2WE%}{^7U-Cpc9Ma0==iAqY8F091t#Jhe5t=y_Ss z9PS6^=M{}(B<035^gJB)hzecwc<*seFl%gE!+Rx_Osa{uZ|-p-T-S^~eR#&&#=I=# zRCu_*BgR|gd0r8@wQ+kKFhH6xKd*RI6cfahv}R7{GxH^52J^h4DlE%Nt(De{X7GHO z$)zw~6Kg8ye!oM#@aC|;!Ssr%u-^|j?^)ME2p($&?dJaYbmH{ij5W}CUKqN8*L=kV zhpHfQBj3fq;W(jstFV-fzU#P~CZ=7_KObJv+MrfriX$a&)YjN)B?P6liXhZx$Zezy zT}K}~)GNc-<5SM$oH<_?f<|(#HCf) gCu%dA8R=U2AIY##4DDRQ761SM07*qoM6N<$f=~xq{r~^~ literal 0 HcmV?d00001 diff --git a/textures/cottages_glass_pane.png b/textures/cottages_glass_pane.png new file mode 100644 index 0000000000000000000000000000000000000000..f07912ee6f6c18246b97d0d66abed26742f781dd GIT binary patch literal 975 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJV{wqX6T`Z5GA|hznEnR%gt#tS za&p;{b1RpfT(RuTsugD!FTS#9(bXl3udH2rYwOm#J9gaLwd?+Y1CNg!d3@~H(=%sY zT)g<|`t>(=?!3Ey|HH$FAD=$`^!oMJj~{=2{rda+_g_DL{Q33k@1H;a{{8z8v~CoP zhQMGB0md&g=L6lxSQ6wH%;50sMjD8d?NMQuIzW2`NU;p^h9JrfkJkkE{-7*my;8mn0b7RG#FG4G_WWzISKS}#56RrD;;7M zPk7MY!D0NspqYoUMb$ubkHj^u!!8?UH@>qpVPII^#&$D#wpBIIBnD4cKbLh*2~7Y+ CZ-03J literal 0 HcmV?d00001 diff --git a/textures/cottages_homedecor_shingles_asphalt.png b/textures/cottages_homedecor_shingles_asphalt.png new file mode 100644 index 0000000000000000000000000000000000000000..057546ce64b9ff2eed10ce93c84f33c555be8874 GIT binary patch literal 671 zcmV;Q0$}}#P)(sp_4Ne+tJSI~3Tv&kcE8_~?RM+EPm<*C@6TFW*R|IAa5xY`7-K=#T4z~S z6vfZa4|dKu=aMAZY&HPU_kC4W%d!wcj4=Q}2=U%e(?key&P8z?E2V~Epp=$n>73)7 zJLdpknkFFxV+;U<5by8r7~?3!g!nj)jWO2REXx4k{QUg)_m?rIlwyoYDZTf&uIng@ zf{%0F_x;Jqi7_T9#u%j(#u#H<*EIm3-EP;m?KqAA&@|2K>uZ{(FE1}z>rfFwXti1` z%OZrB=NaXBKF>2kNJy^#1;yTwh;PO2=`$yu9qX zt}M&#c3V{yLP%>p3`3shTI=KSxL&Wju8TP5jIk(+thL|Y-)-BbX__Pn=Nteir2ycZ zJ3T#>QgY65k|d#Q004k-9G!DQh~SQ*C>RchLs^ypfR$3?I8M_P03pQ3$H#wODW#OE z>zXkZ_QB4%v$L}-%i6YWnx?8MN@*O&0WON7X_}xo=jyt~N-1mYJkOkSV@z3=aU4(6 z)HF>T$69M4#4rqf-)}Y>?|oDh#q;wsLg?}FG0$^C$nkhwmIY&+Wto&xN*Tuf{QRVp zq9jQurPDOs+}tRo!ujdx>EhyIp67>$2aK`zK8)zS{|8pDV`XLw_iLbk?7;+OuK!QjR0@cq4 z+#pH-MM%KuZgI$6|5kQvqtIBy;OjX>V#r-ygR+4~OtKM2DA zQdiw>mb!4eS?a>=W~mEzSy6XYdk;bk0id#?f`gjt?mqHELf^9cD!QNG--}%w8?8}S g_FlGO*K}w91*XOU?b8E%E&u=k07*qoM6N<$g2*+W#Q*>R literal 0 HcmV?d00001 diff --git a/textures/cottages_homedecor_shingles_wood.png b/textures/cottages_homedecor_shingles_wood.png new file mode 100644 index 0000000000000000000000000000000000000000..b982747a960bbe19b176fbd0d2eb17ba92a7b4f1 GIT binary patch literal 567 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 literal 0 HcmV?d00001 diff --git a/textures/cottages_minimal_wood.png b/textures/cottages_minimal_wood.png new file mode 100644 index 0000000000000000000000000000000000000000..57c1d7c124971fd9fef4f8dc90b86ac7cc45a742 GIT binary patch literal 1400 zcmZuv3ryBk6h9#1H_)L;MFhg|9}5;VqR@hrh)=tG_{jiY@#wL!p>S0YT0k?X4T;=< zgAfiaO9^NQk$Q=u;U|GPOjyXvV`joK#S(!qp11qq=6H0sd+#}S=iJ}#{Lc9(%(!ux zjiU_!EMu<)hpT(JdFw3InO_j^2e1gjLL>Fcl`~t;TvB<`yog8$fry-Q#+asQ1Rwwq zfCDf9O=T^3A_5@*5jY3NK>NQS0umq)kOODHH1*Shw1x0e2tpK`BV%0CBqDJx7(-=q zPK*gnR&g;SEBuAxNhyd>2$jeM@ zI10v5V;nS^r!^>|v*ZRYXkG?GAvqG`ss{)fpIfeZMo&cyE2=e}yZ)>QMxs+u*uhSkSI!@fz+bK7oj z%-YiLeRz|rbwXmE=j2HD63Zmro%+OHw~AX&t^UwyiD&1D9y^cx_0wNB>PgdZOzgyP!H+a=F>Ok(dIuP%ifpObbIC!15Sz+1; znGw$=l${+se_>I|^z>gY?#1uLykz?#{Mz;LsPXFzzheQ;cxvgLh}^`N%llZ-p()db zkqGbR&36MAe_rVKc3(lSuWxb8&_69H|L$|JJASpetZLvsJ^Bgg~F}OPD%@6(q D@ROia literal 0 HcmV?d00001 diff --git a/textures/cottages_reet.png b/textures/cottages_reet.png new file mode 100644 index 0000000000000000000000000000000000000000..67a4bddf8ae0e4b23e7c66829b4d38c72b97ab6a GIT binary patch literal 791 zcmV+y1L*vTP)b<{*jN{H=3s8 za6BV9E6URFwDtH9nWg|r5P|LP#Gik^P*oajEnV-~9S4-L98Yg}?-8Sg>viCte|OZg z8k9kcLP^FsLkdEn6<>dKOUB|S&vI7agJQXuBdfMRlwrMGP`HA+ENPb|&N}YzTf~%f zeWaZWo5z-Zh%D!tVGQ(x$HbH=3X7|17Be`WAm_~8(sJ&=hk|~J%<78uA`oNb(=o7E zGz|TK>4%6b9GA<)rZqS#T*rXZ!u~YT)DB~XLPv}h%F>Wi#9B)`H%MI?N@qwZVXfka zZ(1s6QAXi?BxR_aVs}W~EHtx1^Ux|5wPCXoBm_u6j1i+@S!ZI(GzHX^17LF_OcACb zFe??#KnQ_|LPX$hRWP3ww2dGRv?x**=8dJhj-309bHdvdQ1J9AQ&+SQuA}hf zgXQT}@w(TvjZhVecN@z%MxI|I;}jXZpio?{6L(9+FeYTR$dD7a4ZQ3F$1bs+L0!PA z(G;a6goFUMD`6NxiDF(V9@iTA@Rw)ZfR>E+p3RN$;n_1qA;iSDo06^@>4wPt5}sZ< z`l|=P+Ki->nAZwK==+hvWMa&WQ)U_y>jjLHXBYx8WVF#}of(5-oD?!n5iN?#HQ}S; z)GLAyZ1|>pgFiFr^c6{z?Th>qGB*h>!3_8zPsmV8&X}*C@Hn?yiY~$m>#WZ!7Ty5NnB=x9CWwA zHiHxA#*ZTq*VYcEX4YBq@f&{jA`or>8U?G3cS3P|aP0weC4fGD{%qlrhXB$IAl!i; zDm@7>6@UUhi2jx`;9BzZDL;h9eA6hgtc(XC{@WBs|3D8@aD*^yvzum$v^1hiO!46p zxFv9PToeJu?TVh=(v*RpK%nMGofj^_3|JVflvWmqE%v=kjB382M8>dkEy6 zUx)sDkR34-B6+0&~7s zE=tx(ETOr~?C&qT6zPoUP9!QR;JI1Fp>!}=Y(}s>N78sA%T5kq7V-7LC+|Kki;KTm z-}8h1ahSpGXM8Uaf0zk>pz2phb3KLs(2jzwhfGF(ci&sEU%wkX3a5dRwoN$F;Ne&+ zSZ#Wl>8`ZquL%!&D+mF+0J|Uev)N*T*djoH>pweq@Q(9k#O4tem?)%9zVnxO_+k9p z%3_qyBdc6}7RJ%p?=5A0TrJ`7_%1eT_$1ET#nsQJ{z)iBw_ZEHg)g=15$F&D$`G0Cyoe*=;4tl2XZwKi=%a2CBF z{d-ss#WM-|c-JssBoF>TG{Nuf?|_!qvtj7&nUJX9;6&%#f2I>9+b5QqiT`CtYF(+u zUS71zL* zB1v%6S7u3Ep>5@|NsKd8m)ZipES}E^wlx!}vHDBRf{#l*beA#R-<~)c@z5Tcn9!s1 zso)3<*IM1Bmq?MBZ(n}nUNjcEUyoTGF45=GX8a;HFaX(z1R~S{i#ghgk3U-byOF#- z9=|dR0dOxLW8wjy%=ygaq2ycv9tDH;Hd5RXQ)qmjS4hrARdnI}0}i^2f_3mDX`QA{ zo-dmwQe)!I6x-nlS#syulk)Wx0th#!gIS|srgcraqIQ#;=Fw(Wi7?)BVoGLmOzNUB;kDQ+Vt)^ivc!yQHA!y3F5zkAGHP1Z7T-?54XYw!_@l#H@8Ctf+_<)?oAoZ(LF^#k zGwxeJ4g|^FPD@iWugBX_Y=3`04BLKhvnpVuPDAI#t=fPQ16JX#r(yB?xPN<_3xo2p z8~uw$(T}>k-nc5Z@)1$=VmKaDs|&S-72Cd|_x1H%r^;kn%EuqT4+i3Q`@CHYS)K&? zFEI1-=g%2T=577M-^oH-TgwXBXF6cy@n{sFyd+eUOhm-&ZM=lvtfT76oDfD{8-R!^ z;`MRDI306YSy`-`n;=i}*cg^Jbh{Ce`f(9|D$C(ZLQ}y0{LfQ}uSU!7be`DML@-=& z1P75EzDXs0Apm`7x^r%B?zYLq&=dc_z*FR%{(j-yix7Ohg#6IZuQqD4y@8Q|K?hLU zdTrdV7RE7sWnq@|^{(OO_{6WVG`OZj22zA)swp5RU&10WIt?y?_)VI48?oF`p5pBi zj+I1!v%UacJ8R%U{k(Vy)XTj2>1k#1Wz5gWIz9qQJt86^qf9}pjnbKl6+5Q<5zHjk z{t*DA8W|bwM`JL>B_-=eTc(F4#&9YcmOS_ zF;myo4=Vw&cquN5063sBL%;rpk~4my#0y2HihzVxkQ*>Z88h3pa%C`VeMUr&DsUa> z$avhW*#btJ=XH{y3#i-T=sFq*1>eZ`?gF^t8W?l~O_eapy5{q*-1cU_C{C#Rpwv)+ zgP6tH3f+qOyiiS|2;O-)AG@INvdY8JW%&uHLHFkHS%^w^6mWIzc6gL-bxL`KAK!g$ z{CC}dIZ~!8p^4ql(_h1@7O-1rkO4qG&KUc4(9R^d$&j}(( z2trX=b#xpBBT17Rs?Vy)D$9+%3egY9SoE71+2m(qJ1>T4U~n7g}T(gqN8mT zpZb&Pe1hOq-zOd3i5b^~za&17k@a8;N1dFo)pta<9EppTUiO-?bu#Kt^X|+}Tny`W zV=g*`7Iee0rpEU;;&jMXg>PZSg}ush!d>c z6xtL%Y+{r(SWITE@naQ?fMgA@AAS+1;!k_Ruz?5zMPz-33BEKp|ddxL z@hz9aXNmeOhU@gjukt|$xBhM3?C5j$E0L9zmzQ(ojIzCBBVwBH#t|6IKH}o8iygD$ zYgT-yz&aD;62!qStrY{XUy4GK5hqL@@_amIqf6mWQK>^!?v{H^aJqL<(AYXVx_>94iIF9JI!zk}D=x_J^89ubiV zw;k|mHjnR#O!gRQTI}jdL*EVz6bgi@*geM3dR2u&aVs0bI_(M8vh6z)3`cY zLRv@7Ew}IPFJ!DQc6mknsL{aaY4qI=I9)LffeiGw3DyR))yHFFi$?_OJTyia_*JdOwV&0Gt5QKpHZczB9DT6LPd zx7MRo(jK!~G;weVZo(-m!kU47aBQcf>r9| z2G`oSgF{~05c|2hvYRj!&12mbF?nvwk3M?_-@S_$j$#`aeVKd9Zz(-*@71b_bVRne z*1q2z83brQu~`~#*ONJ+WDUV1k-$WeBv>nDfuAg#Cy{^E{;6>={N2&vzEN|;)#}Fr zac8Awyi;obz5T!Bj_q#)AtscIq#shp*sBR=0 z14QccucA;XN>x>b?{#A%mv5}($(5zCw_#X&mJR?~^`AjX1_?a{BWGk}FdzA(zGE0= zCg}^qRA_)7k&=><feSy|sL$p#P*k-Oo(| zAyU;h3@_L*(q8S}b{X6pKP>L@%1zKH!l2R|((g(l%&qTxRzcG%d`0dT8%47f41;l5 z<|!{F<~n3Uw4J$(juF^Joz7Y__LF-hnu z-HK<#O9t*52%xu12#iZ02jmlreDeY&$r<+;{@~TM3{}=^?$;HG@($5%?e1!1E3iGGVk=D6?fF@-8i?E!R@|L(#FU~VXz1nZpTA{=W zycsGxchRud0-~(;4E(A`1U+BKgGNDe3lxN1p;T9m$Jx088)0ss%MX%P#S~SwUbk3z ze$1IXrSB~WRlSNpm3=Rc(6q3(hQF{~iQ3d|c{P}czAy3wAx(X8Dc_S5X@*XH0fytj zxZ-sSjK%U}v`rARCKJN(3A|7@UvnI0fgps|!trQT?vMM0jTe^7sMYowIk$267^k*5 zSQbg+666f6u;Ph(Z-}@`AAb%HS?{KxJ_{tu*AHe=B@rGn7d?lxcol}8T|uKb65y&% z6r1gJx97xJpt1B0?Q!xo30`3G&ZL{aIV4G12!6V!$E3F}ZCkI6XO6>LmHgTBf~R_V znQn!9?{PT50q=KR>`p7*{M~j()HioL=$3uJcJ<{akoB7Pcd}j28jKUsXw(hm56A+a zA+4u3y1Ccu!?0PFOh)nc6~SaZ)YNdZlJ)v7$;l8bsHvsZcl~_>!&6wqn!u2v z3Y_QcvL!fPdWm{Y2q`$NYQ7tns#d^RCqd+|Q_#N)K+r*eBg3b$Fm zoEV^1n;EKBI;V>1n)NraKb#)pDG=^uP9Dl<|HJhxQ(=DackSav5tq-EF%0nz;uZsE zt*or@*<)0yo3`b83JA^5W(mNK2!@yi2kdTT1ZU%x&kPK{sWdGwM~J#8jr zcWQdq{~l&=lSbpI=o(agd*z1yMX^KTe**&pj~+c*jePgEIsehwe*%M|_h+RwsQseZ z>jJg|#_Tk_vjeWzNUa`r3|$f|KVn;c`NNfz_4W0Me@hYUVw#eYf(MBOx_rc~^Py0H z$hGONo_sBN=Dgfj>rLwQB&I8Q!{)%Wzg5+g^RR%Ik6EorIfX;ji=V61C8NzOlPYH}1w{Kqpz}XJgxEQAo z-3GjA&xt_5`sDCre~d{xJG2Gqo1Y-)8W0q#zQaCI7Kosv)#<-krUyYGAs=}y(&!0| zM!6!DmxETv2IJi|B$Ub5n(qXh&_g37m|5H2E{aDYg3u2=0|V@Y(XM~5sXk)AJj+Dt z4uKSE21qL)iX{A3aHU#Yxh&liPA%-c>7!-On|v=Y(4Oxk;Q}}jzKxG?L<%2OW(rJF;5XK+e_t(i;HFIgNX&4 zO~TyF?WGdo&Dh3 z$tT?MR74kQ?qaWu4}Hm!kDgL{)Wu*(m`1J2bhdf80UeL?wy9gEx>^6#S%H`<%sius z2>mBjaYGw?);2UO43jsrw6xUG8KE89O*RAh5X3RZAZ2&VUAzb{A0)HKHnJb#NnjY& zoP7Wi$!?=q+q5cii9qnA;$mIfP?iT9P&5Vz|0!QT(K-AkI=n8j!#T(au&>j`Vxu za8f~5MyAH8hJ@qp9=lY5)yoDU6v$wv{vNi`3fc%4)cc~}6{d-Ea6)CmbCm6KGZS-> z`j3;>7`51Mbs?CVm#Pru=g-OJz2nXogLTmeD@2SMQ5eOQ4T@pOJ}#3x4kH($mZ_U^ zrfGV5wn~j_aPyLyh+L2u)Wi}iMk~nnyeol|e56SG%AElq)Zpp_#_ySeGb2k8z=!6l zk-!f9OHk)!DEY%J6g-;<)usg>>QnW?j?oQnie_6!E(=fwN7Z+#pzz|qR6V*YBB8$x zy5gSjMyx#I#6+@vsZH0+aR8KPsYkOApp!w!GPl$!=wL%mzn%aPkXDm+3;4+yFiSWo z$fK-^vvJI;9~Q)cF9`$mzyE&cdu`;TD)%2JsB+R{Z4n%QqR2;>xYzRqMe6H>4@S1QS}0PV5iBhbV=7Lbk%gs zhMbE0CA^cR=NhB2T2o<=jiP|Yy6Kg`t#9B3In$wxcTYJ0V(-L2|&%oH}iLYT>?nqd;+C9X) z-9o(+T-3)J`ij4yu>IHj&XdGmFw?M{=xO%Gg&7c)(C0a(h))Q#Y@xe|1AZ6iWI?_3 zzkEv(Fu7mw8CjD0=Yg)58oE0&AU~{aE`RJPRP42rgs-xvf5|7MpWOmWnWCtvir({e ztF^zJO3FjKjaOTIGvUYu;i0)g=2h`B&RjzqdZ`UPHW(}ir+db0s)l{HY~4TC2T~(k zyi4O|apO>_qu+`KYvWC)v~R+}4qgR;>P~~YBpY+bXO%>xP0N@*YpCT7Lt@7gHsgP8 zebCuGPlev(ezU7hK$dGDuHbIVBw4Sj8m0nM;WBJ5ocuRDv)2=1%M!);|8qszYJHl> zHfhbRKL>~0N4Gq1nRozV%x@hW91Pd{pkOw~pIOxggw`&-+nzmV;pl*R^BE0H#3-M& z+M53ca`;GWTVYW3qsDau?9lJ9$S?eVV@$LfDd|(}yRTlo+Bx}p!f3BTXnrppUIF64 z^d`ueMBTf0FI}ZOEKJ-ytsLsxBH51zH_5y+|%VfmHnJ)aQta*pv;>?;rlQvi?zO6Y!vajv!3Et^FSIG!l`GZ9!@feTH_w!*E@IaO7&0EzmN~! z&5YZyJ~~~_G|p{s^YAck9@D>nersn0T;JL{95!~d{ z@bE2me3TR9DT!I@V$-*Z4lr($W+`~X$A?$?H5vuyMp`4qtrY=;&;>V}msNhBhlL?&GC~>H`oa!NsK>awHu$0xp!0?F&?$?J<_LU zh9JtHrp(EGLs@IgL7e6D>iy1C2Jyd?_QMx4f`v^#U5jR6K8er8l)N=6rjymuZqXVq zTcuc;9v!S7Qj;U(jGaTjE!2ZZ=(hHDQ@N}+kEE$^8WQF}=Yx`ISEG`L(ha z+TPx7Zfdd_d5Jg$aRZVy6S8Ni&3Ts))}Cf%5sdx#fB)J=5$vE9vAr}#6!ED6XM!kj zF;N8w?E=OTLsEV~hOtHUmR2oq8F}h;$aDwIT z*6YJ&sz%M>%97Ag1r@V@_tD;l#bvo>?PbJ0dKuQ>J7s}VF|ZqBQq(&hee^FnVi`^& zM1XP^zj?j^3-SUe+sj+e7XII9YDv}zF=!{1kpvz4VHL$pCN@_V_3?g zQI++(o^SNoS<)bG>vulm9($(q~yR{?oXp-`4W1v{=*No}hEv|;bI{gQeT zK~puy67IAr6GLbhfz9FDG$vfiPJF>q1}g!q`ubUw*~@0mJ@q;*noSZ zuf#fHE^H%o!IDN1m5p=m)-Hl``Az>Zia_ws0T5=L6fG>wb*8Tc? z)$=sLl#71G-8n#ITI%IeUn$L#;7>PJHp zGNI)i-wi4opW3Jv6&2w@rO(k-?(QqfH$ucaJoRP5ZQs5zP=yEh`zwe$-nZllVf(<{ znD~X1kf9m`2wd z6vjP!sK*a-+7*kmGq(9NySq`?!687>hxd8&#M>}Fh+u+%wRiwf1L#qG2YBOW(^pb| zC1Ww|MS@f6knntMId{WlPpUCt^>RXS!Pty`WzmxBf?KPx9nC z{7eG(_b}NC9jkK31^*+W{mo0e1yYM)JctF9 zY17_#<-OH&Y#P^>h)#wos+QjR5HW+x-x(h*8q{*6;F^U{NX#s~P}=9)-nNg>$E4t= z;qI6*eLE}QB%U+7aRJ1imYwa1%yCL@J12kNye<1udu%@v7BC{=6t=!AGc3R5xLsUn z>Zz*F^{b)Q<6XeD0}0fSH0yBB8UR4TXK>B`6j>vDIqrY^4w~PeyKq2lYdb?@?_;^~ z{`eb9O_mmMRE~^~ih2^=y0Wg{B3%igZu8Ab%`CRLc2h)wdN&KM>GnU%72qB@M2>4J zQ>YE`xhoGsolx%WahbMnfd*gafCXp1vXooLG5o52^ag!Y08_g4O z3#5_pae7dG=xx1RB;wTBCHD5Fot+)S=VA1*x%igF^*1|gBsT1yH==rnl-&0Zga_TO zO=CkGKx(5Z`Kv+3xV&l9-cE}A^0GX^s+{7hE&s+OqywzYPk1nW->b7tx!*MYU}xPl z&hSMyTc;)G;)5P?EvPB%nILdbvOZhB`{MUD^hypSx}Kz50RTA8{{LTq0UZrtJJ^FW z2U=UA7f?h{U;sop%L`83J1lBnUS7sg6#7nY2YXa_#@Z;C7~C*hs9PIvH;E35i#q{{ zTj}84j}T&5+d&fGfEC7ko%tPW^a}00etTs2-I$$q_SPAD5AQvQ)Baj8y$I8z9KSzn zV7E3sT(5O_kRQFh6tz4NyEFdz^D!=dvk8+Mf&lE`@s!Tbp8a8C?nirrY&Gx?#cJjU z2L3t>Je=PUjOH*}wjHsn9AMK9;P6v_i(K{;vN;29GRGfRS6o>bQRiEHg&0M%(x5!X5xtB0oPrP;ZPS3f*Zxl22aT5k$}bC}#g&0kF2PGp8UtlKuz1 CC@%>B literal 0 HcmV?d00001 diff --git a/textures/cottages_sleepingmat.png b/textures/cottages_sleepingmat.png new file mode 100644 index 0000000000000000000000000000000000000000..5721a5b6e1f814ddd87f3c7d71fa8f5b5c4155e5 GIT binary patch literal 135 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61SBU+%rFB|oCO|{#S9GG!XV7ZFl&wkP>{XE z)7O>#E;AbopRwB06iJ|vnx~6nh{pNk7+dSNpO@$Fsflr!1 c@kmNDtdUY&|0p>122clsr>mdKI;Vst07w2J=Kufz literal 0 HcmV?d00001 diff --git a/textures/cottages_wagonwheel.png b/textures/cottages_wagonwheel.png new file mode 100644 index 0000000000000000000000000000000000000000..6175bba02167dbd01056181f7f034d1c33c1d6e3 GIT binary patch literal 357 zcmeAS@N?(olHy`uVBq!ia0vp^f*{Pn1|+R>-G2co&H|6fVg?3oVGw3ym^DWND9B#o z>FdgVmzj-4Udp`hekub4Ba5etV~EA+{;r02#0neun1`kY{!6Jgr;@NaWFk8$6c%4(3x%n0ZrjBb(B$ z>jf*@+4Z(L965GwLzt7Nw#GfdkO}E05)yv&>(5Pz(Eck9@)9$yMDhH{G2eUFTq(4|(vySCJ4={)rJYD@<);T3K0RV@= BjRyb# literal 0 HcmV?d00001 diff --git a/textures/glooptest_tool_steelhammer.png b/textures/glooptest_tool_steelhammer.png new file mode 100644 index 0000000000000000000000000000000000000000..b662a71c11fe0ff35ff7440ca7c292393311e4a0 GIT binary patch literal 184 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`^`0({Ar*6y6BL;CRDOPDZ}_Sp zOYJtpgk#3(=Nb$<-lnhOIJR+{Rtqmn=8X-B%y$?B*fQBVtu+gU-Yd;eR5+_3wPdCW zv%`UauE+K~hxa&dNt;mbXr|R&w5Wppnd>5x#ntRBp4WPEIBw2LWSg*drosXbW1U%T iGtMeFY&#pkz;H8T%Ev`_-xL6y!r