From 5b721c62e3fdc70610828ee6d74b848062163b30 Mon Sep 17 00:00:00 2001 From: Joachim Stolberg Date: Sat, 27 Apr 2019 17:42:27 +0200 Subject: [PATCH] IronAge adapted Construction plan added power bugfix formspec power_image added --- COPYING.txt | 28 ++ LICENSE.txt | 502 +++++++++++++++++++++++ basic_machines/gravelsieve.lua | 1 + basic_machines/grinder.lua | 11 +- basis/command.lua | 2 +- basis/consumer.lua | 2 + basis/guide.lua | 575 ++++----------------------- basis/node_states.lua | 12 + basis/power.lua | 12 +- coal_power_station/gearbox.lua | 101 +++++ coal_power_station/generator.lua | 239 +++++++++++ init.lua | 9 +- iron_age/charcoalpile.lua | 2 +- iron_age/coalburner.lua | 8 +- iron_age/gravelsieve.lua | 8 +- iron_age/help.lua | 71 ++++ iron_age/meltingpot.lua | 27 +- iron_age/recipes.lua | 105 +++++ iron_age/tools.lua | 103 +++++ mod.conf | 2 +- settingtypes.txt | 16 +- sounds/techage_gasflare.ogg | Bin 14939 -> 15113 bytes textures/techage_appl_sieve.png | Bin 261 -> 246 bytes textures/techage_constr_plan.png | Bin 0 -> 2144 bytes textures/techage_constr_plan_inv.png | Bin 0 -> 2063 bytes textures/techage_inv_powerT2.png | Bin 0 -> 1309 bytes textures/techage_inv_powerT3.png | Bin 0 -> 291 bytes textures/techage_iron_ingot.png | Bin 0 -> 1335 bytes 28 files changed, 1286 insertions(+), 550 deletions(-) create mode 100644 COPYING.txt create mode 100644 LICENSE.txt create mode 100644 coal_power_station/gearbox.lua create mode 100644 coal_power_station/generator.lua create mode 100644 iron_age/help.lua create mode 100644 iron_age/recipes.lua create mode 100644 iron_age/tools.lua create mode 100644 textures/techage_constr_plan.png create mode 100644 textures/techage_constr_plan_inv.png create mode 100644 textures/techage_inv_powerT2.png create mode 100644 textures/techage_inv_powerT3.png create mode 100644 textures/techage_iron_ingot.png diff --git a/COPYING.txt b/COPYING.txt new file mode 100644 index 0000000..9551e9b --- /dev/null +++ b/COPYING.txt @@ -0,0 +1,28 @@ +The Techage mod for Minetest is + +Copyright (C) 2019 Joachim Stolberg + +License of source code +---------------------- + +This program is free software; you can redistribute and/or +modify it under the terms of the GNU Lesser General Public License version 2.1 or later +published by the Free Software Foundation. + +This library is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +Library General Public License for more details. + +You should have received a copy of the GNU Library General Public +License along with this library; if not, write to the +Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, +Boston, MA 02110-1301, USA. + + +License of media (textures, sounds and documentation) +----------------------------------------------------- + +All textures, sounds and documentation files are licensed under the +Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0) +http://creativecommons.org/licenses/by-sa/3.0/ diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..4362b49 --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,502 @@ + GNU LESSER GENERAL PUBLIC LICENSE + Version 2.1, February 1999 + + Copyright (C) 1991, 1999 Free Software Foundation, Inc. + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +[This is the first released version of the Lesser GPL. It also counts + as the successor of the GNU Library Public License, version 2, hence + the version number 2.1.] + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +Licenses are intended to guarantee your freedom to share and change +free software--to make sure the software is free for all its users. + + This license, the Lesser General Public License, applies to some +specially designated software packages--typically libraries--of the +Free Software Foundation and other authors who decide to use it. You +can use it too, but we suggest you first think carefully about whether +this license or the ordinary General Public License is the better +strategy to use in any particular case, based on the explanations below. + + When we speak of free software, we are referring to freedom of use, +not price. Our General Public Licenses are designed to make sure that +you have the freedom to distribute copies of free software (and charge +for this service if you wish); that you receive source code or can get +it if you want it; that you can change the software and use pieces of +it in new free programs; and that you are informed that you can do +these things. + + To protect your rights, we need to make restrictions that forbid +distributors to deny you these rights or to ask you to surrender these +rights. These restrictions translate to certain responsibilities for +you if you distribute copies of the library or if you modify it. + + For example, if you distribute copies of the library, whether gratis +or for a fee, you must give the recipients all the rights that we gave +you. You must make sure that they, too, receive or can get the source +code. If you link other code with the library, you must provide +complete object files to the recipients, so that they can relink them +with the library after making changes to the library and recompiling +it. And you must show them these terms so they know their rights. + + We protect your rights with a two-step method: (1) we copyright the +library, and (2) we offer you this license, which gives you legal +permission to copy, distribute and/or modify the library. + + To protect each distributor, we want to make it very clear that +there is no warranty for the free library. Also, if the library is +modified by someone else and passed on, the recipients should know +that what they have is not the original version, so that the original +author's reputation will not be affected by problems that might be +introduced by others. + + Finally, software patents pose a constant threat to the existence of +any free program. We wish to make sure that a company cannot +effectively restrict the users of a free program by obtaining a +restrictive license from a patent holder. Therefore, we insist that +any patent license obtained for a version of the library must be +consistent with the full freedom of use specified in this license. + + Most GNU software, including some libraries, is covered by the +ordinary GNU General Public License. This license, the GNU Lesser +General Public License, applies to certain designated libraries, and +is quite different from the ordinary General Public License. We use +this license for certain libraries in order to permit linking those +libraries into non-free programs. + + When a program is linked with a library, whether statically or using +a shared library, the combination of the two is legally speaking a +combined work, a derivative of the original library. The ordinary +General Public License therefore permits such linking only if the +entire combination fits its criteria of freedom. The Lesser General +Public License permits more lax criteria for linking other code with +the library. + + We call this license the "Lesser" General Public License because it +does Less to protect the user's freedom than the ordinary General +Public License. It also provides other free software developers Less +of an advantage over competing non-free programs. These disadvantages +are the reason we use the ordinary General Public License for many +libraries. However, the Lesser license provides advantages in certain +special circumstances. + + For example, on rare occasions, there may be a special need to +encourage the widest possible use of a certain library, so that it becomes +a de-facto standard. To achieve this, non-free programs must be +allowed to use the library. A more frequent case is that a free +library does the same job as widely used non-free libraries. In this +case, there is little to gain by limiting the free library to free +software only, so we use the Lesser General Public License. + + In other cases, permission to use a particular library in non-free +programs enables a greater number of people to use a large body of +free software. For example, permission to use the GNU C Library in +non-free programs enables many more people to use the whole GNU +operating system, as well as its variant, the GNU/Linux operating +system. + + Although the Lesser General Public License is Less protective of the +users' freedom, it does ensure that the user of a program that is +linked with the Library has the freedom and the wherewithal to run +that program using a modified version of the Library. + + The precise terms and conditions for copying, distribution and +modification follow. Pay close attention to the difference between a +"work based on the library" and a "work that uses the library". The +former contains code derived from the library, whereas the latter must +be combined with the library in order to run. + + GNU LESSER GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library or other +program which contains a notice placed by the copyright holder or +other authorized party saying it may be distributed under the terms of +this Lesser General Public License (also called "this License"). +Each licensee is addressed as "you". + + A "library" means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work +which has been distributed under these terms. A "work based on the +Library" means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for +making modifications to it. For a library, complete source code means +all the source code for all modules it contains, plus any associated +interface definition files, plus the scripts used to control compilation +and installation of the library. + + Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's +complete source code as you receive it, in any medium, provided that +you conspicuously and appropriately publish on each copy an +appropriate copyright notice and disclaimer of warranty; keep intact +all the notices that refer to this License and to the absence of any +warranty; and distribute a copy of this License along with the +Library. + + You may charge a fee for the physical act of transferring a copy, +and you may at your option offer warranty protection in exchange for a +fee. + + 2. You may modify your copy or copies of the Library or any portion +of it, thus forming a work based on the Library, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Library, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Library, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote +it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library +with the Library (or with a work based on the Library) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. + + Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you accompany +it with the complete corresponding machine-readable source code, which +must be distributed under the terms of Sections 1 and 2 above on a +medium customarily used for software interchange. + + If distribution of object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the +source code from the same place satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. + + 5. A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a "work that uses the Library". Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. + + However, linking a "work that uses the Library" with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a "work that uses the +library". The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also combine or +link a "work that uses the Library" with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. + + You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (1) uses at run time a + copy of the library already present on the user's computer system, + rather than copying library functions into the executable, and (2) + will operate properly with a modified version of the library, if + the user installs one, as long as the modified version is + interface-compatible with the version that the work was made with. + + c) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + d) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + e) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the +Library" must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the materials to be distributed need not include anything that is +normally distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies +the executable. + + It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. + + 7. You may place library facilities that are a work based on the +Library side-by-side in a single library together with other library +facilities not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library is void, and will automatically terminate your +rights under this License. However, parties who have received copies, +or rights, from you under this License will not have their licenses +terminated so long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Library or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +subject to these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties with +this License. + + 11. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply, +and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Library under this License may add +an explicit geographical distribution limitation excluding those countries, +so that distribution is permitted only in or among countries not thus +excluded. In such case, this License incorporates the limitation as if +written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new +versions of the Lesser General Public License from time to time. +Such new versions will be similar in spirit to the present version, +but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Library +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +write to the author to ask for permission. For software which is +copyrighted by the Free Software Foundation, write to the Free +Software Foundation; we sometimes make exceptions for this. Our +decision will be guided by the two goals of preserving the free status +of all derivatives of our free software and of promoting the sharing +and reuse of software generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY +KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE +LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Libraries + + If you develop a new library, and you want it to be of the greatest +possible use to the public, we recommend making it free software that +everyone can redistribute and change. You can do so by permitting +redistribution under these terms (or, alternatively, under the terms of the +ordinary General Public License). + + To apply these terms, attach the following notices to the library. It is +safest to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least the +"copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + +Also add information on how to contact you by electronic and paper mail. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the library, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the + library `Frob' (a library for tweaking knobs) written by James Random Hacker. + + , 1 April 1990 + Ty Coon, President of Vice + +That's all there is to it! diff --git a/basic_machines/gravelsieve.lua b/basic_machines/gravelsieve.lua index 867cedf..f151634 100644 --- a/basic_machines/gravelsieve.lua +++ b/basic_machines/gravelsieve.lua @@ -35,6 +35,7 @@ local function formspec(self, pos, mem) "list[context;src;0,0;3,3;]".. "item_image[0,0;1,1;default:gravel]".. "image[0,0;1,1;techage_form_mask.png]".. + "image[3.5,0;1,1;"..techage.get_power_image(pos, mem).."]".. "image[3.5,1;1,1;techage_form_arrow.png]".. "image_button[3.5,2;1,1;".. self:get_state_button_image(mem) ..";state_button;]".. "list[context;dst;5,0;3,3;]".. diff --git a/basic_machines/grinder.lua b/basic_machines/grinder.lua index 9a6c161..a670980 100644 --- a/basic_machines/grinder.lua +++ b/basic_machines/grinder.lua @@ -39,8 +39,9 @@ local function formspec(self, pos, mem) "list[context;src;0,0;3,3;]".. "item_image[0,0;1,1;default:cobble]".. "image[0,0;1,1;techage_form_mask.png]".. + "image[3.5,0;1,1;"..techage.get_power_image(pos, mem).."]".. "image[3.5,1;1,1;techage_form_arrow.png]".. - "image_button[3.5,2;1,1;".. self:get_state_button_image(mem) ..";state_button;]".. + "image_button[3.5,2;1,1;"..self:get_state_button_image(mem)..";state_button;]".. "list[context;dst;5,0;3,3;]".. "item_image[5,0;1,1;default:gravel]".. "image[5,0;1,1;techage_form_mask.png]".. @@ -159,8 +160,8 @@ tiles.act = { "techage_filling_ta#.png^techage_frame_ta#.png", "techage_filling_ta#.png^techage_frame_ta#.png^techage_appl_outp.png", "techage_filling_ta#.png^techage_frame_ta#.png^techage_appl_inp.png", - "techage_filling_ta#.png^techage_frame_ta#.png", - "techage_filling_ta#.png^techage_frame_ta#.png", + "techage_filling_ta#.png^techage_appl_grinder2.png^techage_frame_ta#.png", + "techage_filling_ta#.png^techage_appl_grinder2.png^techage_frame_ta#.png", } tiles.def = { -- up, down, right, left, back, front @@ -168,8 +169,8 @@ tiles.def = { "techage_filling_ta#.png^techage_frame_ta#.png", "techage_filling_ta#.png^techage_frame_ta#.png^techage_appl_outp.png^techage_appl_defect.png", "techage_filling_ta#.png^techage_frame_ta#.png^techage_appl_inp.png^techage_appl_defect.png", - "techage_filling_ta#.png^techage_frame_ta#.png^techage_appl_defect.png", - "techage_filling_ta#.png^techage_frame_ta#.png^techage_appl_defect.png", + "techage_filling_ta#.png^techage_appl_grinder2.png^techage_frame_ta#.png^techage_appl_defect.png", + "techage_filling_ta#.png^techage_appl_grinder2.png^techage_frame_ta#.png^techage_appl_defect.png", } local tubing = { diff --git a/basis/command.lua b/basis/command.lua index 8963909..fc488b3 100644 --- a/basis/command.lua +++ b/basis/command.lua @@ -353,7 +353,7 @@ end -- Server side helper functions ------------------------------------------------------------------- --- Get the given number of items from the inve. The position within the list +-- Get the given number of items from the inv. The position within the list -- is random so that different item stacks will be considered. -- Returns nil if ItemList is empty. function techage.get_items(inv, listname, num) diff --git a/basis/consumer.lua b/basis/consumer.lua index 36e4eab..d7888ab 100644 --- a/basis/consumer.lua +++ b/basis/consumer.lua @@ -89,6 +89,7 @@ function techage.register_consumer(base_name, inv_name, tiles, tNode) power_png = 'techage_appl_hole_electric.png' else power_network = techage.Axle + power_png = 'techage_axle_clutch.png' end power_network:add_secondary_node_names({name_pas, name_act}) end @@ -115,6 +116,7 @@ function techage.register_consumer(base_name, inv_name, tiles, tNode) power_side = "F", valid_power_dir = power_used and valid_power_dir or nil, power_consumption = power_used and tNode.power_consumption[stage] or {0,0,0,0}, + -- animated_power_network = true, TODO } tNode.groups.not_in_creative_inventory = 0 diff --git a/basis/guide.lua b/basis/guide.lua index cd9e3a4..2250859 100644 --- a/basis/guide.lua +++ b/basis/guide.lua @@ -18,540 +18,117 @@ local MP = minetest.get_modpath("techage") local S, NS = dofile(MP.."/intllib.lua") -local SMELTING_TIME = 2 - -local Tabs = S("Manufacture,Construction") - -local Recipes = {} -- registered recipes -local KeyList = {} -- index to Recipes key translation -local NumRecipes = 0 +local Recipes = {} +local RecipeList = {} +local PlanImages = {} +local NamesAsStr = "" -- formspec images local function plan(images) local tbl = {} - for y=0,9 do - for x=0,9 do - local img = images[y+1][x+1] or false + if images == "none" then return "label[1,3;No plan available" end + for y=1,#images do + for x=1,#images[1] do + local img = images[y][x] or false if img ~= false then - tbl[#tbl+1] = "item_image["..(x*0.8)..","..(y*0.8)..";0.8,0.8;"..img..".png]" + local x_offs, y_offs = (x-1) * 1, (y-1) * 1 + 0.8 + tbl[#tbl+1] = "image["..x_offs..","..y_offs..";1,1;"..img..".png]" end end end return table.concat(tbl) end -local function formspec_manufacture(idx) - idx = math.min(idx, #KeyList) - local key = KeyList[idx] - local input1 = Recipes[key].input[1] or "" - local input2 = Recipes[key].input[2] or "" - local input3 = Recipes[key].input[3] or "" - local input4 = Recipes[key].input[4] or "" - local num = Recipes[key].number - local output = Recipes[key].output - if num > 1 then - output = output.." "..num - end - return "size[11,8]".. +local function formspec_help(idx) + return "size[9,9]".. default.gui_bg.. default.gui_bg_img.. default.gui_slots.. - "tabheader[0,0;tab;"..Tabs..";2;;true]".. - "label[1,0.2;"..S("Manufacture Manual").."]".. - - "container[1,1]".. - "item_image_button[0,0;1,1;"..input1..";b1;]".. - "item_image_button[1,0;1,1;"..input2..";b2;]".. - "item_image_button[0,1;1,1;"..input3..";b3;]".. - "item_image_button[1,1;1,1;"..input4..";b4;]".. - "item_image[2.6,0;0.8,0.8;"..Recipes[key].icon.."]".. - "image[2.3,0.6;1.6,1;gui_furnace_arrow_bg.png^[transformR270]".. - "item_image_button[4,0.5;1,1;"..output..";b5;]".. - "label[2,2.2;"..Recipes[key].hints.."]".. - "label[2,4;Recipe "..idx.." of "..NumRecipes.."]".. - "button[2,5.5;0.8,0.8;priv;<<]".. - "button[3,5.5;0.8,0.8;next;>>]".. - "container_end[]" + "tabheader[0,0;tab;"..S("Help,Plan")..";1;;true]".. + "table[0.1,0;8.6,3;page;"..NamesAsStr..";"..idx.."]".. + "textarea[0.3,3.7;9,6.2;help;Help:;"..Recipes[idx].."]" end -local function formspec_construction(recipe) - return "size[11,8]".. +local function formspec_plan(idx) + return "size[9,9]".. default.gui_bg.. default.gui_bg_img.. default.gui_slots.. - "tabheader[0,0;tab;"..Tabs..";3;;true]".. - "label[0,0;"..BurnerHelp.."]".. - "label[1,5;"..S("Cross-section")..":]".. - "container[4,4]".. - draw(BurnerImages).. - "container_end[]" + "tabheader[0,0;tab;"..S("Help,Plan")..";2;;true]".. + "label[0,0;"..RecipeList[idx]..":]".. + plan(PlanImages[idx]) end -local function on_receive_fields(pos, formname, fields, sender) - local meta = minetest.get_meta(pos) - local recipe_idx = meta:get_int("recipe_idx") - if recipe_idx == 0 then recipe_idx = 1 end - if fields.tab == "1" then - meta:set_string("formspec", formspec1) - elseif fields.tab == "2" then - meta:set_string("formspec", formspec2(recipe_idx)) - elseif fields.next == ">>" then - recipe_idx = math.min(recipe_idx + 1, NumRecipes) - meta:set_int("recipe_idx", recipe_idx) - meta:set_string("formspec", formspec2(recipe_idx)) - elseif fields.priv == "<<" then - recipe_idx = math.max(recipe_idx - 1, 1) - meta:set_int("recipe_idx", recipe_idx) - meta:set_string("formspec", formspec2(recipe_idx)) - end -end +local board_box = { + type = "wallmounted", + --wall_top = {-8/16, 15/32, -6/16, 8/16, 8/16, 6/16}, + --wall_bottom = {-8/16, 15/32, -6/16, 8/16, 8/16, 6/16}, + wall_side = {-16/32, -11/32, -16/32, -15/32, 6/16, 8/16}, +} -local function can_dig(pos, player) - local meta = minetest.get_meta(pos); - local inv = meta:get_inventory() - return inv:is_empty("dst") and inv:is_empty("src") -end - -local function allow_metadata_inventory_put(pos, listname, index, stack, player) - if minetest.is_protected(pos, player:get_player_name()) then - return 0 - end - if listname == "src" then - return stack:get_count() - elseif listname == "dst" then - return 0 - end -end - -local function allow_metadata_inventory_move(pos, from_list, from_index, to_list, to_index, count, player) - local meta = minetest.get_meta(pos) - local inv = meta:get_inventory() - local stack = inv:get_stack(from_list, from_index) - return allow_metadata_inventory_put(pos, to_list, to_index, stack, player) -end - -local function allow_metadata_inventory_take(pos, listname, index, stack, player) - if minetest.is_protected(pos, player:get_player_name()) then - return 0 - end - return stack:get_count() -end - --- generate an unique key based on the unsorted and --- variable number of inventory items -local function recipe_key(items) - local tbl = {} - -- remove items which exist more than once - for _,item in ipairs(items) do - tbl[item] = true - end - local names = {} - for key,_ in pairs(tbl) do - names[#names + 1] = key - end - -- bring in a sorted order - table.sort(names) - return table.concat(names, "-") -end - --- determine recipe based on inventory items -local function get_recipe(inv) - -- collect items - local stacks = {} - local names = {} - for _,stack in ipairs(inv:get_list("src")) do - if not stack:is_empty() then - table.insert(names, stack:get_name()) - table.insert(stacks, stack) - else - table.insert(stacks, ItemStack("")) +minetest.register_node("techage:constr_board", { + description = S("TA Construction Board"), + inventory_image = 'techage_constr_plan_inv.png', + tiles = {"techage_constr_plan.png"}, + drawtype = "nodebox", + node_box = board_box, + selection_box = board_box, + + after_place_node = function(pos, placer, itemstack) + local meta = minetest.get_meta(pos) + meta:set_string("formspec", formspec_help(1)) + end, + + on_receive_fields = function(pos, formname, fields, player) + if minetest.is_protected(pos, player:get_player_name()) then + return end - end - local key = recipe_key(names) - local recipe = Recipes[key] - - if recipe then - return { - input = recipe.input, - stacks = stacks, - output = ItemStack(recipe.output.." "..recipe.number), - heat = recipe.heat, - time = recipe.time, - } - end - return nil -end - --- prepare recipe and store in cache table for faster access -local function store_recipe_in_cache(pos) - local hash = minetest.hash_node_position(pos) - local meta = minetest.get_meta(pos) - local inv = meta:get_inventory() - local recipe = get_recipe(inv) - Cache[hash] = recipe - return recipe -end - --- read value from the node below -local function get_heat(pos) - local heat = 0 - pos.y = pos.y - 1 - local node = minetest.get_node(pos) - local meta = minetest.get_meta(pos) - pos.y = pos.y + 1 - if minetest.get_item_group(node.name, "techage_flame") > 0 then - heat = meta:get_int("heat") - end - return heat -end - --- Start melting if heat is ok AND source items available -function techage.switch_to_active(pos) - local meta = minetest.get_meta(pos) - local heat = get_heat(pos) - local recipe = store_recipe_in_cache(pos) - - if recipe and heat >= recipe.heat then - minetest.swap_node(pos, {name = "techage:meltingpot_active"}) - minetest.registered_nodes["techage:meltingpot_active"].on_construct(pos) - meta:set_string("infotext", S("Melting Pot active (heat=")..heat..")") - minetest.get_node_timer(pos):start(2) - return true - end - meta:set_string("infotext", S("Melting Pot inactive (heat=")..heat..")") - return false -end - -function techage.update_heat(pos) - local meta = minetest.get_meta(pos) - local heat = get_heat(pos) - meta:set_string("infotext", S("Melting Pot inactive (heat=")..heat..")") -end - -local function set_inactive(meta, pos, heat) - minetest.get_node_timer(pos):stop() - minetest.swap_node(pos, {name = "techage:meltingpot"}) - minetest.registered_nodes["techage:meltingpot"].on_construct(pos) - meta:set_string("infotext", S("Melting Pot inactive (heat=")..heat..")") -end - --- Stop melting if heat to low OR no source items available -local function switch_to_inactive(pos) - local meta = minetest.get_meta(pos) - local heat = get_heat(pos) - local hash = minetest.hash_node_position(pos) - local recipe = Cache[hash] or store_recipe_in_cache(pos) - - if not recipe or heat < recipe.heat then - set_inactive(meta, pos, heat) - return true - end - meta:set_string("infotext", S("Melting Pot active (heat=")..heat..")") - return false -end - - -local function index(list, x) - for idx, v in pairs(list) do - if v == x then return idx end - end - return nil -end - --- move recipe src items to output inventory -local function process(inv, recipe, heat) - if heat < recipe.heat then - return false - end - local res = false - if inv:room_for_item("dst", recipe.output) then - for _,item in ipairs(recipe.input) do - res = false - for _, stack in ipairs(recipe.stacks) do - if stack:get_count() > 0 and stack:get_name() == item then - stack:take_item(1) - res = true - break - end - end - if res == false then - return false + local meta = minetest.get_meta(pos) + local idx = meta:get_int("help_idx") + idx = techage.range(idx, 1, #Recipes) + if fields.tab == "1" then + meta:set_string("formspec", formspec_help(idx)) + elseif fields.tab == "2" then + meta:set_string("formspec", formspec_plan(idx)) + elseif fields.page then + local evt = minetest.explode_table_event(fields.page) + if evt.type == "CHG" then + local idx = tonumber(evt.row) + idx = techage.range(idx, 1, #Recipes) + meta:set_int("help_idx", idx) + meta:set_string("formspec", formspec_help(idx)) end end - inv:add_item("dst", recipe.output) - inv:set_list("src", recipe.stacks) - return true - end - return false -end - -local function smelting(pos, recipe, heat, elapsed) - local meta = minetest.get_meta(pos) - local inv = meta:get_inventory() - elapsed = elapsed + meta:get_int("leftover") - - while elapsed >= recipe.time do - if process(inv, recipe, heat) == false then - meta:set_int("leftover", 0) - set_inactive(meta, pos, heat) - return false - end - elapsed = elapsed - recipe.time - end - meta:set_int("leftover", elapsed) - return true -end - -local function pot_node_timer(pos, elapsed) - if switch_to_inactive(pos) == false then - local hash = minetest.hash_node_position(pos) - local heat = get_heat(pos) - local recipe = Cache[hash] or store_recipe_in_cache(pos) - if recipe then - return smelting(pos, recipe, heat, elapsed) - end - end - return false -end - -minetest.register_node("techage:meltingpot_active", { - description = S("Melting Pot"), - tiles = { - { - image = "techage_meltingpot_top_active.png", - backface_culling = false, - animation = { - type = "vertical_frames", - aspect_w = 16, - aspect_h = 16, - length = 1, - }, - }, - "default_cobble.png^techage_meltingpot.png", - }, - drawtype = "nodebox", - node_box = { - type = "fixed", - fixed = { - {-10/16, -8/16, -10/16, 10/16, 9/16, -6/16}, - {-10/16, -8/16, 6/16, 10/16, 9/16, 10/16}, - {-10/16, -8/16, -10/16, -6/16, 9/16, 10/16}, - { 6/16, -8/16, -10/16, 10/16, 9/16, 10/16}, - { -6/16, -8/16, -6/16, 6/16, 5/16, 6/16}, - }, - }, - selection_box = { - type = "fixed", - fixed = {-10/16, -8/16, -10/16, 10/16, 9/16, 10/16}, - }, - - on_construct = function(pos) - local meta = minetest.get_meta(pos) - meta:set_string("formspec", formspec1) - local inv = meta:get_inventory() - inv:set_size('src', 4) - inv:set_size('dst', 4) end, - on_timer = function(pos, elapsed) - return pot_node_timer(pos, elapsed) - end, - - on_receive_fields = function(pos, formname, fields, sender) - on_receive_fields(pos, formname, fields, sender) - end, - - on_metadata_inventory_move = function(pos) - store_recipe_in_cache(pos) - switch_to_inactive(pos) - end, - - on_metadata_inventory_put = function(pos) - store_recipe_in_cache(pos) - switch_to_inactive(pos) - end, - - on_metadata_inventory_take = function(pos) - store_recipe_in_cache(pos) - switch_to_inactive(pos) - end, - - can_dig = can_dig, - - drop = "techage:meltingpot", + paramtype2 = "wallmounted", + paramtype = "light", + sunlight_propagates = true, is_ground_content = false, - groups = {cracky = 3, not_in_creative_inventory=1}, - sounds = default.node_sound_metal_defaults(), - - allow_metadata_inventory_put = allow_metadata_inventory_put, - allow_metadata_inventory_move = allow_metadata_inventory_move, - allow_metadata_inventory_take = allow_metadata_inventory_take, -}) - -minetest.register_node("techage:meltingpot", { - description = S("Melting Pot"), - tiles = { - "default_cobble.png", - "default_cobble.png^techage_meltingpot.png", - }, - drawtype = "nodebox", - node_box = { - type = "fixed", - fixed = { - {-10/16, -8/16, -10/16, 10/16, 9/16, -6/16}, - {-10/16, -8/16, 6/16, 10/16, 9/16, 10/16}, - {-10/16, -8/16, -10/16, -6/16, 9/16, 10/16}, - { 6/16, -8/16, -10/16, 10/16, 9/16, 10/16}, - { -6/16, -8/16, -6/16, 6/16, -4/16, 6/16}, - }, - }, - selection_box = { - type = "fixed", - fixed = {-10/16, -8/16, -10/16, 10/16, 9/16, 10/16}, - }, - - on_construct = function(pos) - local meta = minetest.get_meta(pos) - meta:set_string("formspec", formspec1) - meta:set_string("infotext", S("Melting Pot inactive (heat=0)")) - local inv = meta:get_inventory() - inv:set_size('src', 4) - inv:set_size('dst', 4) - end, - - on_metadata_inventory_move = function(pos) - store_recipe_in_cache(pos) - techage.switch_to_active(pos) - end, - - on_metadata_inventory_put = function(pos) - store_recipe_in_cache(pos) - techage.switch_to_active(pos) - end, - - on_metadata_inventory_take = function(pos) - store_recipe_in_cache(pos) - techage.switch_to_active(pos) - end, - - on_receive_fields = function(pos, formname, fields, sender) - on_receive_fields(pos, formname, fields, sender) - end, - - can_dig = can_dig, - - is_ground_content = false, - groups = {cracky = 3}, - sounds = default.node_sound_metal_defaults(), - - allow_metadata_inventory_put = allow_metadata_inventory_put, - allow_metadata_inventory_move = allow_metadata_inventory_move, - allow_metadata_inventory_take = allow_metadata_inventory_take, + groups = {choppy = 2, oddly_breakable_by_hand = 2, flammable = 2}, + sounds = default.node_sound_wood_defaults(), }) minetest.register_craft({ - output = "techage:meltingpot", + output = "techage:constr_board", recipe = { - {"default:cobble", "default:copper_ingot", "default:cobble"}, - {"default:cobble", "", "default:cobble"}, - {"default:cobble", "default:cobble", "default:cobble"}, + {"default:sticks", "default:sticks", "default:sticks"}, + {"default:paper", "default:paper", "default:paper"}, + {"", "", ""}, }, }) -if minetest.global_exists("unified_inventory") then - unified_inventory.register_craft_type("melting", { - description = S("Melting"), - icon = "default_cobble.png^techage_meltingpot.png", - width = 2, - height = 2, - }) - unified_inventory.register_craft_type("burning", { - description = S("Burning"), - icon = "techage_smoke.png", - width = 1, - height = 1, - }) - unified_inventory.register_craft({ - output = "techage:charcoal", - items = {"group:wood"}, - type = "burning", - }) + +function techage.register_help_page(name, text, images) + RecipeList[#RecipeList+1] = name + NamesAsStr = table.concat(RecipeList, ", ") or "" + Recipes[#Recipes+1] = text + PlanImages[#PlanImages+1] = images or "none" end -function techage.ironage_register_recipe(recipe) - local key = recipe_key(recipe.recipe) - local output = string.split(recipe.output, " ") - local number = tonumber(output[2] or 1) - table.insert(KeyList, key) - Recipes[key] = { - input = recipe.recipe, - output = output[1], - number = number, - heat = math.max(recipe.heat or 3, 2), - time = math.max(recipe.time or 2, 2*number), - } - NumRecipes = NumRecipes + 1 - - if minetest.global_exists("unified_inventory") then - recipe.items = recipe.recipe - recipe.type = "melting" - unified_inventory.register_craft(recipe) - end +function techage.register_chap_page(name, text) + RecipeList[#RecipeList+1] = name + NamesAsStr = table.concat(RecipeList, ",") or "" + Recipes[#Recipes+1] = text + PlanImages[#PlanImages+1] = "none" end - - -techage.ironage_register_recipe({ - output = "default:obsidian", - recipe = {"default:cobble"}, - heat = 5, - time = 4, -}) - -techage.ironage_register_recipe({ - output = "default:coral_skeleton", - recipe = {"gravelsieve:compressed_gravel"}, - heat = 4, - time = 4, -}) - -techage.ironage_register_recipe({ - output = "default:bronze_ingot 4", - recipe = {"default:copper_ingot", "default:copper_ingot", "default:copper_ingot", "default:tin_ingot"}, - heat = 4, - time = 8, -}) - -local PileHelp = S([[Coal Pile to produce charcoal: -- build a 5x5 block dirt base -- place a lighter in the centre -- build a 3x3x3 wood cube around -- cover all with dirt to a 5x5x5 cube -- keep a hole to the lighter -- ignite the lighter and immediately -- close the pile with one wood and one dirt -- open the pile after the smoke disappeared]]) - -local BurnerHelp = S([[Coal Burner to heat the melting pot: -- build a 3x3xN cobble tower -- more height means more flame heat -- keep a hole open on one side -- put a lighter in -- fill the tower from the top with charcoal -- ignite the lighter -- place the pot in the flame]]) - -local PileImages = { - {"default_dirt", "default_dirt", "default_dirt", "default_dirt", "default_dirt"}, - {"default_dirt", "default_wood", "default_wood", "default_wood", "default_dirt"}, - {"default_dirt", "default_wood", "default_wood", "default_wood", "default_dirt"}, - {"default_dirt", "default_wood", "techage_lighter", "default_wood", "default_dirt"}, - {"default_dirt", "default_dirt", "default_dirt", "default_dirt", "default_dirt"}, -} - -local BurnerImages = { - false, false, "default_cobble", "techage_charcoal", "default_cobble", - false, false, "default_cobble", "techage_charcoal", "default_cobble", - false, false, "default_cobble", "techage_charcoal", "default_cobble", - false, false, false, "techage_lighter", "default_cobble", - false, false, "default_cobble", "default_cobble", "default_cobble", -} diff --git a/basis/node_states.lua b/basis/node_states.lua index 76af1a8..f30fb34 100644 --- a/basis/node_states.lua +++ b/basis/node_states.lua @@ -52,6 +52,9 @@ Node mem data: local S = function(pos) if pos then return minetest.pos_to_string(pos) end end local P = minetest.string_to_pos local M = minetest.get_meta +-- Techage Related Data +local TRD = function(pos) return (minetest.registered_nodes[minetest.get_node(pos).name] or {}).techage end +local TRDN = function(node) return (minetest.registered_nodes[node.name] or {}).techage end -- @@ -83,6 +86,15 @@ function techage.state_button(state) return "techage_inv_button_off.png" end +function techage.get_power_image(pos, mem) + local node = minetest.get_node(pos) + local s = "3" -- electrical power + if string.find(node.name, "techage:ta2") then + s = "2" -- axles power + end + return "techage_inv_powerT"..s..".png" +end + -- State string based on button states techage.StateStrings = {"stopped", "running", "standby", "fault", "blocked", "defect"} diff --git a/basis/power.lua b/basis/power.lua index 850562d..bdc28fb 100644 --- a/basis/power.lua +++ b/basis/power.lua @@ -87,8 +87,7 @@ power_consumption = function(pos, in_dir) end -- Switch active/passive tube nodes -local function turn_tube_on(pos, in_dir, network, on) - local out_dir = tubelib2.Turn180Deg[in_dir] +local function turn_tube_on(pos, out_dir, network, on) if on then network:switch_tube_line(pos, out_dir, "on") else @@ -107,9 +106,6 @@ local function call_turn_on(pos, in_dir, sum) trd.turn_on(pos, in_dir, sum) end end - if trd and trd.animated_power_network then - turn_tube_on(pos, in_dir, trd.power_network, sum > 0) - end -- Needed for junctions which could have a local "turn_on" in addition turn_on(pos, in_dir, sum) end @@ -118,9 +114,13 @@ end -- turn nodes on if sum > 0 turn_on = function(pos, in_dir, sum) call_turn_on(pos, in_dir, sum) + local trd = TRD(pos) local mem = tubelib2.get_mem(pos) local conn = mem.connections or {} - for _,item in pairs(conn) do + for out_dir,item in pairs(conn) do + if trd and trd.animated_power_network then + turn_tube_on(pos, out_dir, trd.power_network, sum > 0) + end if item.pos then call_turn_on(item.pos, item.in_dir, sum) end diff --git a/coal_power_station/gearbox.lua b/coal_power_station/gearbox.lua new file mode 100644 index 0000000..027c660 --- /dev/null +++ b/coal_power_station/gearbox.lua @@ -0,0 +1,101 @@ +--[[ + + TechAge + ======= + + Copyright (C) 2019 Joachim Stolberg + + LGPLv2.1+ + See LICENSE.txt for more information + + TA2 Gearbox + +]]-- + +-- for lazy programmers +local S = function(pos) if pos then return minetest.pos_to_string(pos) end end +local P = minetest.string_to_pos +local M = minetest.get_meta + +-- Load support for intllib. +local MP = minetest.get_modpath("techage") +local I,_ = dofile(MP.."/intllib.lua") + +local POWER_CONSUMPTION = 1 + +local Axle = techage.Axle +local distributor = techage.distributor + +local function swap_node(pos, name) + local node = minetest.get_node(pos) + if node.name == name then + return + end + node.name = name + minetest.swap_node(pos, node) +end + +local function turn_on(pos, dir, sum) + if sum > 0 then + swap_node(pos, "techage:gearbox_on") + else + swap_node(pos, "techage:gearbox") + end +end + +minetest.register_node("techage:gearbox", { + description = I("TA2 Gearbox"), + tiles = {"techage_filling_ta2.png^techage_axle_gearbox.png^techage_frame_ta2.png"}, + techage = { + turn_on = turn_on, + read_power_consumption = distributor.read_power_consumption, + power_network = Axle, + power_consumption = POWER_CONSUMPTION, + animated_power_network = true, + }, + + after_place_node = distributor.after_place_node, + after_tube_update = distributor.after_tube_update, + after_dig_node = distributor.after_dig_node, + + paramtype2 = "facedir", + groups = {cracky=2, crumbly=2, choppy=2}, + on_rotate = screwdriver.disallow, + is_ground_content = false, + sounds = default.node_sound_wood_defaults(), +}) + + +minetest.register_node("techage:gearbox_on", { + tiles = { + -- up, down, right, left, back, front + { + image = "techage_filling4_ta2.png^techage_axle_gearbox4.png^techage_frame4_ta2.png", + backface_culling = false, + animation = { + type = "vertical_frames", + aspect_w = 32, + aspect_h = 32, + length = 0.6, + }, + }, + }, + techage = { + turn_on = turn_on, + read_power_consumption = distributor.read_power_consumption, + power_network = Axle, + power_consumption = POWER_CONSUMPTION, + animated_power_network = true, + }, + + after_tube_update = distributor.after_tube_update, + after_dig_node = distributor.after_dig_node, + + paramtype2 = "facedir", + groups = {not_in_creative_inventory=1}, + diggable = false, + on_rotate = screwdriver.disallow, + is_ground_content = false, + sounds = default.node_sound_wood_defaults(), +}) + diff --git a/coal_power_station/generator.lua b/coal_power_station/generator.lua new file mode 100644 index 0000000..74bf475 --- /dev/null +++ b/coal_power_station/generator.lua @@ -0,0 +1,239 @@ +--[[ + + TechAge + ======= + + Copyright (C) 2019 Joachim Stolberg + + LGPLv2.1+ + See LICENSE.txt for more information + + TA2 Steam Engine Flywheel + +]]-- + +-- for lazy programmers +local S = function(pos) if pos then return minetest.pos_to_string(pos) end end +local P = minetest.string_to_pos +local M = minetest.get_meta +-- Techage Related Data +local TRD = function(pos) return (minetest.registered_nodes[minetest.get_node(pos).name] or {}).techage end + +-- Load support for intllib. +local MP = minetest.get_modpath("techage") +local I,_ = dofile(MP.."/intllib.lua") + +local STANDBY_TICKS = 4 +local COUNTDOWN_TICKS = 4 +local CYCLE_TIME = 8 +local POWER_CAPACITY = 8 + +local Axle = techage.Axle +local generator = techage.generator + +local function formspec(self, pos, mem) + return "size[8,7]".. + default.gui_bg.. + default.gui_bg_img.. + default.gui_slots.. + "image[6,0.5;1,2;"..generator.formspec_level(mem, mem.power_result).. + "image_button[5,1;1,1;".. self:get_state_button_image(mem) ..";state_button;]".. + "button[2,1.5;2,1;update;"..I("Update").."]".. + "list[current_player;main;0,3;8,4;]".. + default.get_hotbar_bg(0, 3) +end + +local function start_cylinder(pos, on) + local pos2 = techage.get_pos(pos, 'L') + local trd = TRD(pos2) + if trd and trd.start_cylinder then + return trd.start_cylinder(pos2, on) + end + return false +end + +local function can_start(pos, mem, state) + return start_cylinder(pos, true) +end + +local function start_node(pos, mem, state) + generator.turn_power_on(pos, POWER_CAPACITY) +end + +local function stop_node(pos, mem, state) + start_cylinder(pos, false) + generator.turn_power_on(pos, 0) +end + +local State = techage.NodeStates:new({ + node_name_passive = "techage:flywheel", + node_name_active = "techage:flywheel_on", + cycle_time = CYCLE_TIME, + standby_ticks = STANDBY_TICKS, + formspec_func = formspec, + can_start = can_start, + start_node = start_node, + stop_node = stop_node, +}) + +local function distibuting(pos, mem) + if mem.power_result > 0 then + State:keep_running(pos, mem, COUNTDOWN_TICKS) + else + State:fault(pos, mem) + start_cylinder(pos, false) + generator.turn_power_on(pos, 0) + end +end + +local function node_timer(pos, elapsed) + local mem = tubelib2.get_mem(pos) + print("flywheel node_timer") + local pos2 = techage.get_pos(pos, 'L') + if minetest.get_node(pos2).name == "techage:cylinder_on" and tubelib2.get_mem(pos2).running then + distibuting(pos, mem) + else + State:fault(pos, mem) + start_cylinder(pos, false) + generator.turn_power_on(pos, 0) + end + return State:is_active(mem) +end + +local function valid_power_dir(pos, power_dir, in_dir) + return power_dir == in_dir +end + +local function turn_power_on(pos, in_dir, sum) + local mem = tubelib2.get_mem(pos) + -- store result for formspec + mem.power_result = sum + if State:is_active(mem) and sum <= 0 then + State:fault(pos, mem) + start_cylinder(pos, false) + -- No automatic turn on + mem.power_capacity = 0 + end + M(pos):set_string("formspec", formspec(State, pos, mem)) +end + +local function on_receive_fields(pos, formname, fields, player) + if minetest.is_protected(pos, player:get_player_name()) then + return + end + local mem = tubelib2.get_mem(pos) + State:state_button_event(pos, mem, fields) + + if fields.update then + M(pos):set_string("formspec", formspec(State, pos, mem)) + end +end + +local function on_rightclick(pos) + local mem = tubelib2.get_mem(pos) + M(pos):set_string("formspec", formspec(State, pos, mem)) +end + +minetest.register_node("techage:flywheel", { + description = I("TA2 Flywheel"), + tiles = { + -- up, down, right, left, back, front + "techage_filling_ta2.png^techage_frame_ta2.png", + "techage_filling_ta2.png^techage_frame_ta2.png", + "techage_filling_ta2.png^techage_axle_clutch.png^techage_frame_ta2.png", + "techage_filling_ta2.png^techage_appl_open.png^techage_frame_ta2.png", + "techage_filling_ta2.png^techage_frame_ta2.png^techage_flywheel.png", + "techage_filling_ta2.png^techage_frame_ta2.png^techage_flywheel.png^[transformFX]", + }, + techage = { + turn_on = turn_power_on, + read_power_consumption = generator.read_power_consumption, + power_network = Axle, + animated_power_network = true, + }, + + after_place_node = function(pos, placer) + local mem = generator.after_place_node(pos) + State:node_init(pos, mem, "") + on_rightclick(pos) + end, + + after_dig_node = function(pos, oldnode, oldmetadata, digger) + State:after_dig_node(pos, oldnode, oldmetadata, digger) + generator.after_dig_node(pos, oldnode) + end, + + after_tube_update = generator.after_tube_update, + on_receive_fields = on_receive_fields, + on_rightclick = on_rightclick, + on_timer = node_timer, + + paramtype2 = "facedir", + groups = {cracky=2, crumbly=2, choppy=2}, + on_rotate = screwdriver.disallow, + is_ground_content = false, + sounds = default.node_sound_wood_defaults(), +}) + +minetest.register_node("techage:flywheel_on", { + description = I("TA2 Flywheel"), + tiles = { + -- up, down, right, left, back, front + "techage_filling_ta2.png^techage_frame_ta2.png", + "techage_filling_ta2.png^techage_frame_ta2.png", + { + image = "techage_filling4_ta2.png^techage_axle_clutch4.png^techage_frame4_ta2.png", + backface_culling = false, + animation = { + type = "vertical_frames", + aspect_w = 32, + aspect_h = 32, + length = 0.6, + }, + }, + "techage_filling_ta2.png^techage_appl_open.png^techage_frame_ta2.png", + { + image = "techage_filling8_ta2.png^techage_frame8_ta2.png^techage_flywheel8.png", + backface_culling = false, + animation = { + type = "vertical_frames", + aspect_w = 32, + aspect_h = 32, + length = 1.2, + }, + }, + { + image = "techage_filling8_ta2.png^techage_frame8_ta2.png^techage_flywheel8.png^[transformFX]", + backface_culling = false, + animation = { + type = "vertical_frames", + aspect_w = 32, + aspect_h = 32, + length = 1.2, + }, + }, + }, + techage = { + turn_on = turn_power_on, + read_power_consumption = generator.read_power_consumption, + power_network = Axle, + animated_power_network = true, + }, + + after_dig_node = function(pos, oldnode, oldmetadata, digger) + State:after_dig_node(pos, oldnode, oldmetadata, digger) + generator.after_dig_node(pos, oldnode) + end, + + after_tube_update = generator.after_tube_update, + on_receive_fields = on_receive_fields, + on_rightclick = on_rightclick, + on_timer = node_timer, + + paramtype2 = "facedir", + groups = {not_in_creative_inventory=1}, + diggable = false, + on_rotate = screwdriver.disallow, + is_ground_content = false, + sounds = default.node_sound_wood_defaults(), +}) diff --git a/init.lua b/init.lua index baaaa62..95674f3 100644 --- a/init.lua +++ b/init.lua @@ -7,7 +7,7 @@ techage.max_num_forceload_blocks = tonumber(minetest.setting_get("techage_max_nu techage.basalt_stone_enabled = minetest.setting_get("techage_basalt_stone_enabled") == "true" techage.machine_aging_value = tonumber(minetest.setting_get("techage_machine_aging_value")) or 100 techage.ore_rarity = tonumber(minetest.setting_get("techage_ore_rarity")) or 1 - +techage.modified_recipes_enabled = minetest.setting_get("techage_modified_recipes_enabled") == "true" local MP = minetest.get_modpath("techage") @@ -15,6 +15,8 @@ local MP = minetest.get_modpath("techage") dofile(MP.."/basis/intllib.lua") -- Basis features +dofile(MP.."/basis/lib.lua") -- helper functions +dofile(MP.."/basis/guide.lua") -- construction guide dofile(MP.."/basis/power.lua") -- power distribution dofile(MP.."/basis/node_states.lua") dofile(MP.."/basis/trowel.lua") -- hidden networks @@ -33,6 +35,11 @@ dofile(MP.."/iron_age/lighter.lua") dofile(MP.."/iron_age/charcoalpile.lua") dofile(MP.."/iron_age/coalburner.lua") dofile(MP.."/iron_age/meltingpot.lua") +if techage.modified_recipes_enabled then + dofile(MP.."/iron_age/tools.lua") +end +dofile(MP.."/iron_age/recipes.lua") +dofile(MP.."/iron_age/help.lua") if minetest.global_exists("wielded_light") then dofile(MP.."/iron_age/meridium.lua") end diff --git a/iron_age/charcoalpile.lua b/iron_age/charcoalpile.lua index a9ca33b..890e0f1 100644 --- a/iron_age/charcoalpile.lua +++ b/iron_age/charcoalpile.lua @@ -181,7 +181,7 @@ minetest.register_node("techage:charcoal_burn", { }) minetest.register_node("techage:charcoal", { - description = S("Charcoal"), + description = S("TA1 Charcoal"), tiles = {"techage_charcoal.png"}, on_ignite = function(pos, igniter) minetest.after(2, minetest.swap_node, pos, {name = "techage:charcoal_burn"}) diff --git a/iron_age/coalburner.lua b/iron_age/coalburner.lua index 9b3974f..b3c6ec1 100644 --- a/iron_age/coalburner.lua +++ b/iron_age/coalburner.lua @@ -144,10 +144,10 @@ function techage.start_burner(pos, playername) meta:set_int("height", height) start_burner(pos, height) flame(pos, height, height, true) - local handle = minetest.sound_play("techage", { + local handle = minetest.sound_play("techage_gasflare", { pos = {x=pos.x, y=pos.y+height, z=pos.z}, max_hear_distance = 20, - gain = height/32.0, + gain = height/12.0, loop = true}) meta:set_int("handle", handle) minetest.get_node_timer(pos):start(5) @@ -167,10 +167,10 @@ function techage.keep_running_burner(pos) local new_height = num_coal(pos) if new_height > 0 then flame(pos, height, new_height, false) - handle = minetest.sound_play("techage", { + handle = minetest.sound_play("techage_gasflare", { pos = {x=pos.x, y=pos.y+height, z=pos.z}, max_hear_distance = 32, - gain = new_height/32.0, + gain = new_height/12.0, loop = true}) meta:set_int("handle", handle) else diff --git a/iron_age/gravelsieve.lua b/iron_age/gravelsieve.lua index 325dbef..c8a82f2 100644 --- a/iron_age/gravelsieve.lua +++ b/iron_age/gravelsieve.lua @@ -206,7 +206,7 @@ for idx = 0,4 do local tube_info local not_in_creative_inventory node_name = "techage:sieve" - description = "Gravel Sieve" + description = I("TA1 Gravel Sieve") tiles_data = { -- up, down, right, left, back, front "techage_handsieve_gravel.png", @@ -330,9 +330,9 @@ minetest.register_node("techage:compressed_gravel", { minetest.register_craft({ output = "techage:sieve", recipe = { - {"group:wood", "", "group:wood"}, - {"group:wood", "default:steel_ingot", "group:wood"}, - {"group:wood", "", "group:wood"}, + {"group:wood", "", "group:wood"}, + {"group:wood", "techage:iron_ingot", "group:wood"}, + {"group:wood", "", "group:wood"}, }, }) diff --git a/iron_age/help.lua b/iron_age/help.lua new file mode 100644 index 0000000..01507dd --- /dev/null +++ b/iron_age/help.lua @@ -0,0 +1,71 @@ +--[[ + + TechAge + ======= + + Copyright (C) 2019 Joachim Stolberg + + LGPLv2.1+ + See LICENSE.txt for more information + + Help pages + +]]-- + +-- Load support for intllib. +local MP = minetest.get_modpath("techage") +local S, NS = dofile(MP.."/intllib.lua") + +local IronAgeHelp = S([[Iron Age is the first level of the available technic stages. +The goal of TA1 is to collect and craft enough XYZ Ingots +to be able to build machines for stage 2 (TA2). +1. You have to collect dirt and wood to build a Coal Pile. + (The Coal Pile is needed to produce charcoal) +2. Build a Coal Burner to melt iron to steel ingots. +3. Craft a Gravel Sieve and collect gravel. + (A Hammer can be used to smash cobble to gravel) +4. Sieve the gravel to get the necessary ores +]]) + +local PileHelp = S([[Coal Pile to produce charcoal: +- build a 5x5 block dirt base +- place a lighter in the centre +- build a 3x3x3 wood cube around +- cover all with dirt to a 5x5x5 cube +- keep a hole to the lighter +- ignite the lighter and immediately +- close the pile with one wood and one dirt +- open the pile after the smoke disappeared]]) + +local BurnerHelp = S([[Coal Burner to heat the melting pot: +- build a 3x3xN cobble tower +- more height means more flame heat +- keep a hole open on one side +- put a lighter in +- fill the tower from the top with charcoal +- ignite the lighter +- place the pot in the flame, (one block above the tower)]]) + +local PileImages = { + {"default_dirt", "default_dirt", "default_dirt", "default_dirt", "default_dirt"}, + {"default_dirt", "default_wood", "default_wood", "default_wood", "default_dirt"}, + {"default_dirt", "default_wood", "default_wood", "default_wood", "default_dirt"}, + {"default_dirt", "default_wood", "techage_lighter", "default_wood", "default_dirt"}, + {"default_dirt", "default_dirt", "default_dirt", "default_dirt", "default_dirt"}, +} + +local BurnerImages = { + + {false, false, false, "default_cobble.png^techage_meltingpot", false}, + {false, false, false, false, false}, + {false, false, "default_cobble", "techage_charcoal", "default_cobble"}, + {false, false, "default_cobble", "techage_charcoal", "default_cobble"}, + {false, false, "default_cobble", "techage_charcoal", "default_cobble"}, + {false, false, "default_cobble", "techage_charcoal", "default_cobble"}, + {false, false, false, "techage_lighter", "default_cobble"}, + {false, false, "default_cobble", "default_cobble", "default_cobble"}, +} + +techage.register_chap_page("Iron Age (TA1)", IronAgeHelp) +techage.register_help_page("Coal Pile", PileHelp, PileImages) +techage.register_help_page("Coal Burner", BurnerHelp, BurnerImages) \ No newline at end of file diff --git a/iron_age/meltingpot.lua b/iron_age/meltingpot.lua index 629473e..1d22502 100644 --- a/iron_age/meltingpot.lua +++ b/iron_age/meltingpot.lua @@ -326,7 +326,7 @@ local function pot_node_timer(pos, elapsed) end minetest.register_node("techage:meltingpot_active", { - description = S("Melting Pot"), + description = S("TA1 Melting Pot"), tiles = { { image = "techage_meltingpot_top_active.png", @@ -400,7 +400,7 @@ minetest.register_node("techage:meltingpot_active", { }) minetest.register_node("techage:meltingpot", { - description = S("Melting Pot"), + description = S("TA1 Melting Pot"), tiles = { "default_cobble.png", "default_cobble.png^techage_meltingpot.png", @@ -509,26 +509,3 @@ function techage.ironage_register_recipe(recipe) unified_inventory.register_craft(recipe) end end - - -techage.ironage_register_recipe({ - output = "default:obsidian", - recipe = {"default:cobble"}, - heat = 5, - time = 4, -}) - -techage.ironage_register_recipe({ - output = "default:coral_skeleton", - recipe = {"gravelsieve:compressed_gravel"}, - heat = 4, - time = 4, -}) - -techage.ironage_register_recipe({ - output = "default:bronze_ingot 4", - recipe = {"default:copper_ingot", "default:copper_ingot", "default:copper_ingot", "default:tin_ingot"}, - heat = 4, - time = 8, -}) - diff --git a/iron_age/recipes.lua b/iron_age/recipes.lua new file mode 100644 index 0000000..4bf4416 --- /dev/null +++ b/iron_age/recipes.lua @@ -0,0 +1,105 @@ +--[[ + + TechAge + ======= + + Copyright (C) 2019 Joachim Stolberg + + LGPLv2.1+ + See LICENSE.txt for more information + + Meltingpot recipes + +]]-- + +-- Load support for intllib. +local MP = minetest.get_modpath("techage") +local S, NS = dofile(MP.."/intllib.lua") + +-- +-- New burner recipes +-- +techage.ironage_register_recipe({ + output = "default:obsidian", + recipe = {"default:cobble"}, + heat = 10, + time = 8, +}) + +techage.ironage_register_recipe({ + output = "default:clay", + recipe = {"techage:sieved_gravel"}, + heat = 3, + time = 3, +}) + +techage.ironage_register_recipe({ + output = "techage:iron_ingot", + recipe = {"default:iron_lump"}, + heat = 5, + time = 3, +}) + +minetest.register_craftitem("techage:iron_ingot", { + description = S("TA1 Iron Ingot"), + inventory_image = "techage_iron_ingot.png", + use_texture_alpha = true, +}) + + +-- +-- Changed default recipes +-- +if techage.modified_recipes_enabled then + minetest.clear_craft({output = "default:bronze_ingot"}) + minetest.clear_craft({output = "default:steel_ingot"}) + minetest.clear_craft({output = "fire:flint_and_steel"}) + minetest.clear_craft({output = "bucket:bucket_empty"}) + + techage.ironage_register_recipe({ + output = "default:bronze_ingot 4", + recipe = {"default:copper_ingot", "default:copper_ingot", "default:copper_ingot", "default:tin_ingot"}, + heat = 4, + time = 8, + }) + + techage.ironage_register_recipe({ + output = "default:steel_ingot 4", + recipe = {"default:coal_lump", "default:iron_lump", "default:iron_lump", "default:iron_lump"}, + heat = 7, + time = 8, + }) + + minetest.register_craft({ + output = "fire:flint_and_steel", + recipe = { + {"default:flint", "default:iron_lump"} + } + }) + + minetest.override_item("fire:flint_and_steel", { + description = S("Flint and Iron"), + inventory_image = "fire_flint_steel.png^[colorize:#c7643d:60", + }) + + minetest.override_item("bucket:bucket_empty", { + inventory_image = "bucket.png^[colorize:#c7643d:40" + }) + minetest.override_item("bucket:bucket_lava", { + inventory_image = "bucket_lava.png^[colorize:#c7643d:30" + }) + minetest.override_item("bucket:bucket_river_water", { + inventory_image = "bucket_river_water.png^[colorize:#c7643d:30" + }) + minetest.override_item("bucket:bucket_water", { + inventory_image = "bucket_water.png^[colorize:#c7643d:30" + }) + + minetest.register_craft({ + output = 'bucket:bucket_empty 1', + recipe = { + {'techage:iron_ingot', '', 'techage:iron_ingot'}, + {'', 'techage:iron_ingot', ''}, + } +}) +end diff --git a/iron_age/tools.lua b/iron_age/tools.lua new file mode 100644 index 0000000..d6e6b82 --- /dev/null +++ b/iron_age/tools.lua @@ -0,0 +1,103 @@ +--[[ + + Iron Age + ======== + + Copyright (C) 2018 Joachim Stolberg + Based on mods/default/tools.lua + + LGPLv2.1+ + See LICENSE.txt for more information + +]]-- + + + +local function tools() + minetest.override_item("default:pick_bronze", { + tool_capabilities = { + full_punch_interval = 1.0, + max_drop_level=1, + groupcaps={ + cracky = {times={[1]=4.00, [2]=1.60, [3]=0.80}, uses=20, maxlevel=2}, + }, + damage_groups = {fleshy=4}, + }, + }) + minetest.override_item("default:pick_steel", { + tool_capabilities = { + full_punch_interval = 1.0, + max_drop_level=1, + groupcaps={ + cracky = {times={[1]=4.00, [2]=1.60, [3]=0.80}, uses=30, maxlevel=2}, + }, + damage_groups = {fleshy=4}, + }, + }) + + minetest.override_item("default:shovel_bronze", { + tool_capabilities = { + full_punch_interval = 1.1, + max_drop_level=1, + groupcaps={ + crumbly = {times={[1]=1.50, [2]=0.90, [3]=0.40}, uses=30, maxlevel=2}, + }, + damage_groups = {fleshy=3}, + }, + }) + minetest.override_item("default:shovel_steel", { + tool_capabilities = { + full_punch_interval = 1.1, + max_drop_level=1, + groupcaps={ + crumbly = {times={[1]=1.50, [2]=0.90, [3]=0.40}, uses=40, maxlevel=2}, + }, + damage_groups = {fleshy=3}, + }, + }) + + minetest.override_item("default:axe_bronze", { + tool_capabilities = { + full_punch_interval = 1.0, + max_drop_level=1, + groupcaps={ + choppy={times={[1]=2.50, [2]=1.40, [3]=1.00}, uses=20, maxlevel=2}, + }, + damage_groups = {fleshy=4}, + }, + }) + minetest.override_item("default:axe_steel", { + tool_capabilities = { + full_punch_interval = 1.0, + max_drop_level=1, + groupcaps={ + choppy={times={[1]=2.50, [2]=1.40, [3]=1.00}, uses=30, maxlevel=2}, + }, + damage_groups = {fleshy=4}, + }, + }) + + minetest.override_item("default:sword_bronze", { + tool_capabilities = { + full_punch_interval = 0.8, + max_drop_level=1, + groupcaps={ + snappy={times={[1]=2.5, [2]=1.20, [3]=0.35}, uses=30, maxlevel=2}, + }, + damage_groups = {fleshy=6}, + }, + }) + minetest.override_item("default:sword_steel", { + tool_capabilities = { + full_punch_interval = 0.8, + max_drop_level=1, + groupcaps={ + snappy={times={[1]=2.5, [2]=1.20, [3]=0.35}, uses=40, maxlevel=2}, + }, + damage_groups = {fleshy=6}, + }, + }) +end + +minetest.after(1, tools) + diff --git a/mod.conf b/mod.conf index 53d7069..f85cd5e 100644 --- a/mod.conf +++ b/mod.conf @@ -1,4 +1,4 @@ name = techage -depends = default,tubelib2,basic_materials +depends = default,tubelib2,basic_materials,bucket optional_depends = unified_inventory,wielded_light description = Hello World! \ No newline at end of file diff --git a/settingtypes.txt b/settingtypes.txt index b44b4c1..27ac5b7 100644 --- a/settingtypes.txt +++ b/settingtypes.txt @@ -1,10 +1,20 @@ # Maximim number of Forceload Blocks per player (default 12) -tubelib_max_num_forceload_blocks (max number of Forceload Blocks) int 12 +techage_max_num_forceload_blocks (Max. number of Forceload Blocks) int 12 # Enable Basalt Stone (and disable ore generation via cobble generator) -tubelib_basalt_stone_enabled (Basalt Stone enabled) bool true +techage_basalt_stone_enabled (Basalt Stone enabled) bool false # This aging value is used to calculate the lifetime of machines before # they go defect . The value 200 (default) results in a lifetime # for standard machines of about 2000 - 8000 item processing cycles. -tubelib_machine_aging_value (machine aging value) int 200 \ No newline at end of file +techage_machine_aging_value (MKachine aging value) int 200 + +# Rarity factor to find ores when sieving with the Gravel Sieve +# 1.0 is according to the mapgen generator +# 2.0 means half as many ores as result +# 0.5 means twice as many ores as result +techage_ore_rarity (Rarity factor to find ores) float 1.0 + +# Enable alternative recipes for steel and bronze. +# Instead of the furnace the player has to use the Coal Burner. +techage_modified_recipes_enabled (Enable alternative recipes for steel and bronze) bool false \ No newline at end of file diff --git a/sounds/techage_gasflare.ogg b/sounds/techage_gasflare.ogg index a1cd9d7f4a400db20c5cdceccdb93eb6e3e8e31f..1338c886841ce45abce1c3cb66fbd094f0b0e1b9 100644 GIT binary patch delta 10880 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 delta 10717 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 Ny98rTQR2J?{tsLipt1k} diff --git a/textures/techage_appl_sieve.png b/textures/techage_appl_sieve.png index 109d8631c175ae92f7661a55a257ee14e2e6ae2f..6cdfee62a3e4eb6cdd4d2a596afe898447c2d7f7 100644 GIT binary patch delta 218 zcmZo=`o=gxrJg6iC&V>XH{Hp}iGhJ3F)?wE>P1Z;i?JlgFPOpM*^M+1C&}C0g`tC0 z)&t1lEbxddW?J~9Ejt*oRJdh~cXnmfH2PbFMxSQYpPh=Uq-Z)|k2XJoiPS1zLB4_hYCJ_b)$ KKbLh*2~7Y6u|^{R delta 233 zcmeyy*vd3PrJg0-(btiIVPik{pF~y$1_s9BAa^H*b?0PW0y#VZJ|V6?nT1YHPC#B_ zVq)o>)lDEpB|(0{3=Yq3qyagc1s;*b3=G`DAk4@xYmNj^u+-DVF+}2Was(?YPY+MR zgNB3_Cq^;NH9QLx6WFe=3gte)vo>^fSVNLz0(S$Cn!sYl69TL=rJK$?`2XMD#Dw8Q z0-K?X!!8G&4Q0RoF9hll7G}S)uCI@cW3e~$p@c_44MsCe7GzDa0Ai5`ez^*lnl~gc ZGVEtEO;N1<(gSn>gQu&X%Q~loCIGy#OJx86 diff --git a/textures/techage_constr_plan.png b/textures/techage_constr_plan.png new file mode 100644 index 0000000000000000000000000000000000000000..e9b142956c5c1adb8c8ca8aaa82cfd377147bd44 GIT binary patch literal 2144 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 literal 0 HcmV?d00001 diff --git a/textures/techage_inv_powerT2.png b/textures/techage_inv_powerT2.png new file mode 100644 index 0000000000000000000000000000000000000000..4a0f0d025578ef6cd1566f6a88b0034b766d2a86 GIT binary patch literal 1309 zcmV+&1>*XNP)WFU8GbZ8()Nlj2>E@cM*00eX`_OWLL5M8F18cf zan`$D@0>oAq$!uS4i&s`-gY#X-_E(r|4_YNXM9Ez_{{d%0o2itbLY-|l0)nD`WF|x z-vuAAJpgvfwzZu~b@RDgGJWF2NGW9rArt@+2El&c_vKcz8SeFZDhxv#fc(Dz(sOfj zID7VNoU&~*7z`|}HA^Wa05CI{*^c9wrlzL!&dyG}vAKy>tHl85qX7zq0=~O=5tT|s zkq~OF(Gag+zlPTO=rpO6!c;bEpGc)**LCTIVPIopg8}eAx%yuL2!Lf-$mjDSiXv32 zRcNiTzP|o81cVU6vMiBECRs@d9mm*iHi?;g0Gwk5VXNK7?c2BU{P}YzrI1di;dvfr zXJ;YAyUU3PN=nLPGANhJv6D`Z0Hnsw0x4yXNF;O=Mfi1j8P~60$I8kIlu~dU2cG9) zW@ZLN^r7`MnaSvEHro|KgkuBba=AgZQeoS+5sgOpWqBF%^Yd6;U4>E#uIs|{JQNCr z_d*a6Ow&|_Lcy>ti^m4YIF2rtN?fZ}VcRyMD8kQAo?!mQ4XmxLK`Diai3!wdHB3)W zzZXIXAzatB9M>I<4UkAC6Q*TRu~J^ky$Ye6`JP-MN z{v8M+LNbw%PC7k)8VV^DGm~kWD3?lLW~{t;fglL5w6p{%1TI{-fZ5quOioV1^E@y! zn$0Gd|GIG!LL^Po9veVw9fO&f83zzrYpgaJ2!a4VJ$wj%Fu?bhE@5tN4o8X-TCLV0 z1Obpj$gu&!FdS;F&4Z0C%R;4G1~X%|(Lfl6SbFpb*=!cyo<9$FVggfBQ($Ijt+BJS za|jg2@d!X-tQgqq_hl4C`ruEP8MbYsTB)E^EFzKkbH97{@8inVt7tZxP)Z?}%b`}Q zA(P2~h``J|91h11!fv;#I^AxdkCeLu2(Ma2saS+z7zly@i;Ig`SXe;2-G)*M`F#Em zB97y@-|vqP;QKypZEX#MAQ&ADDrQD1mBLrG8a&Sf5y2k}aPPqbT)lP;olXa)X<~YM z8l_T+!{IR4?R50m09xy0tKD{Xc6UV_$A2p%%nZkIaO&hq%oGYxO2PMi{CMXM?%cf# z-}fPXd%=>>2&Ou|dpCKU}$jH(G!`bohS-0D!R7YFT@Gd%|_yD4)xPwrvkB%SvdiB{Q>* zV?U8hCWR129LL5HIq}hw3;?V*#VNhLy^S~5YP~fl`K2@ZXjy)=WBJmYek%I|UAGIy T!VYk400000NkvXXu0mjfb|Xi1 literal 0 HcmV?d00001 diff --git a/textures/techage_inv_powerT3.png b/textures/techage_inv_powerT3.png new file mode 100644 index 0000000000000000000000000000000000000000..c7867093c0853d31b5ef9251fd2339193b1804c7 GIT binary patch literal 291 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v_d#0*}aI z1_o|n5N2eUHAey{$X?><>&pI^MVeP#KRjUNUZ9X{W=KSdbAE1aYF-JD%fR4Vl$uzQ znxasiS(2gP?&%wlqL<1J6mR!*aSVw#oSY!R%FH7%(eh`i=>M0AFORI_+p*V&S(b_U z9fMemP-Y=x$kvQ&i+G!jS=jPL6q+wDKR+>b$I6u#4LBJkUhFdwb(_6|XL42$#+?;c`2; aftkUgPCPAf$C6->TRmO z07=i~`E~#R010qNS#tmY3ljhU3ljkVnw%H_000McNliru;{+QD5-x`+O&91 zK~z}7?UqY#8&w#FpEENaJH93HEl%R57kYuDv<1^NjWh#A}7X1WNXi{ zFONJhS5_=EF*YKrm9h*gO<^}0*tSJ8pOsD^B=lHM7hid;`9J|C#ztgk zIKpx!jlWUFwrzw^u*@3GU=)8KNMY_TZUtF0fRs`QA>`GmpJm6E0SZPAMOCSm%hVRG z64r|^1q~jo^gAfXK`kHh)V#3NKdEt$>1VApE5us>It_DEs?oCJlE0d&# zh874jH93wyzlgqdH+`EQ0SWos5{~20ux*-43wRS-@dbihF9wCz<-(MbiLnuBWs-!V zu~j=FPM#QvI+BcHWMumKqUehEUFJky(luJdn_dkvh3h7i5 zy<(v2I<`NAWtq4$v*a7xk&)Ar6JqbPgLk;1Tu&`jaz7kKbGbw)9C6CJk8-I$UY>Ps{z-N|FRgJ3KkJsy?R4Q_7M(#R>En=lJMm2dwo|{hzzhhFX)@aMlQS*mM z8Wj>fak~4T;K{vDlh5U_EfasR9jDpEH0uO{?KsORl!`$uvJrRHpro|{+;%ko8kW)F zA*sg_0Gyecl#Qj7*ru8kN+kk5A2az19bIv3+oogZJ|5e-i+a6|$J0h5J&!Bihtq5# z0cU9eS3XT`;{anv4w1_neE-|o{@!?O`krZRfy`dMNafE{nru*t8v8*U{Y`5*s$s=JivnRhXZ>iqGfg+mDB^%sPsq67r~I zN;SsMUDKKVJ+K_S0PI=e)~ERrl#h`3eW8TwpAf?lLr1Yj|Fjbg!|xs<{(a?ECPw^_fcFWLQS>g2dOxc`6{+