From c2f45e7008d39f00e2efe5520ee950c56025bfa1 Mon Sep 17 00:00:00 2001 From: Nicholas Dunnaway Date: Mon, 8 Jan 2024 20:06:41 -0800 Subject: [PATCH] Update for VH 0.217.38 and JvL 2.15.2 --- .gitattributes | 117 +--- .github/workflows/nuget.autoupdate.yml | 19 + .github/workflows/release.yml | 43 +- .gitignore | 14 + LICENSE | 661 ------------------ docs/README.md | 60 +- src/Digitalroot.Valheim.EternalFire.sln | 52 ++ .../.nx/description.bbcode.txt | 38 + .../.ts/icon.png | Bin 0 -> 99771 bytes .../.ts/manifest.json | 12 + .../AssemblyInfo.cs | 39 ++ .../Digitalroot.Valheim.EternalFire.csproj | 81 +++ .../FodyWeavers.xml | 3 + src/Digitalroot.Valheim.EternalFire/Main.cs | 194 +++++ .../MetaData.cs | 13 + src/Digitalroot.Valheim.EternalFire/Patch.cs | 70 ++ .../TemplateOutputs.txt | 18 + .../packages.lock.json | 144 ++++ 18 files changed, 773 insertions(+), 805 deletions(-) create mode 100644 .github/workflows/nuget.autoupdate.yml create mode 100644 src/Digitalroot.Valheim.EternalFire.sln create mode 100644 src/Digitalroot.Valheim.EternalFire/.nx/description.bbcode.txt create mode 100644 src/Digitalroot.Valheim.EternalFire/.ts/icon.png create mode 100644 src/Digitalroot.Valheim.EternalFire/.ts/manifest.json create mode 100644 src/Digitalroot.Valheim.EternalFire/AssemblyInfo.cs create mode 100644 src/Digitalroot.Valheim.EternalFire/Digitalroot.Valheim.EternalFire.csproj create mode 100644 src/Digitalroot.Valheim.EternalFire/FodyWeavers.xml create mode 100644 src/Digitalroot.Valheim.EternalFire/Main.cs create mode 100644 src/Digitalroot.Valheim.EternalFire/MetaData.cs create mode 100644 src/Digitalroot.Valheim.EternalFire/Patch.cs create mode 100644 src/Digitalroot.Valheim.EternalFire/TemplateOutputs.txt create mode 100644 src/Digitalroot.Valheim.EternalFire/packages.lock.json diff --git a/.gitattributes b/.gitattributes index 4b9955f..1ff0c42 100644 --- a/.gitattributes +++ b/.gitattributes @@ -10,7 +10,7 @@ # default for csharp files. # Note: This is only used by command line ############################################################################### -*.cs diff=csharp +#*.cs diff=csharp ############################################################################### # Set the merge driver for project and solution files @@ -22,39 +22,27 @@ # these files as binary and thus will always conflict and require user # intervention with every merge. To do so, just uncomment the entries below ############################################################################### -*.sln merge=binary -*.csproj merge=binary -*.vbproj merge=binary -*.vcxproj merge=binary -*.vcproj merge=binary -*.dbproj merge=binary -*.fsproj merge=binary -*.lsproj merge=binary -*.wixproj merge=binary -*.modelproj merge=binary -*.sqlproj merge=binary -*.wwaproj merge=binary -*.user merge=binary +#*.sln merge=binary +#*.csproj merge=binary +#*.vbproj merge=binary +#*.vcxproj merge=binary +#*.vcproj merge=binary +#*.dbproj merge=binary +#*.fsproj merge=binary +#*.lsproj merge=binary +#*.wixproj merge=binary +#*.modelproj merge=binary +#*.sqlproj merge=binary +#*.wwaproj merge=binary ############################################################################### # behavior for image files # # image files are treated as binary by default. ############################################################################### -*.jpg binary -*.jpeg binary -*.png binary -*.gif binary -*.tif binary -*.tiff binary -*.ico binary -# SVG treated as an asset (binary) by default. -# *.svg text -# If you want to treat it as binary, -# use the following line instead. -*.svg binary -*.eps binary -*.webp binary +#*.jpg binary +#*.png binary +#*.gif binary ############################################################################### # diff behavior for common document formats @@ -63,66 +51,13 @@ # is only available from the command line. Turn it on by uncommenting the # entries below. ############################################################################### -*.doc diff=astextplain -*.DOC diff=astextplain -*.docx diff=astextplain -*.DOCX diff=astextplain -*.dot diff=astextplain -*.DOT diff=astextplain -*.pdf diff=astextplain -*.PDF diff=astextplain -*.rtf diff=astextplain -*.RTF diff=astextplain -*.bibtex text diff=bibtex -*.md text -*.tex text diff=tex -*.adoc text -*.textile text -*.mustache text -*.csv text -*.tab text -*.tsv text -*.txt text -*.sql text -*.ps1 text -*.props text -*.config text -.DotSettings text -LICENSE text - -# Scripts -*.bash text eol=lf -*.fish text eol=lf -*.sh text eol=lf -# These are explicitly windows files and should use crlf -*.bat text eol=crlf -*.cmd text eol=crlf - -# Serialisation -*.json text -*.toml text -*.xml text -*.yaml text -*.yml text - -# Archives -*.7z binary -*.gz binary -*.tar binary -*.tgz binary -*.zip binary -*.rar binary - -# Unity -*.unitypackage binary -*.manifest merge=binary - -# Text files where line endings should be preserved -*.patch -text - -# -# Exclude files from exporting -# -.gitattributes export-ignore -.gitignore export-ignore -.gitkeep export-ignore +#*.doc diff=astextplain +#*.DOC diff=astextplain +#*.docx diff=astextplain +#*.DOCX diff=astextplain +#*.dot diff=astextplain +#*.DOT diff=astextplain +#*.pdf diff=astextplain +#*.PDF diff=astextplain +#*.rtf diff=astextplain +#*.RTF diff=astextplain diff --git a/.github/workflows/nuget.autoupdate.yml b/.github/workflows/nuget.autoupdate.yml new file mode 100644 index 0000000..da202a4 --- /dev/null +++ b/.github/workflows/nuget.autoupdate.yml @@ -0,0 +1,19 @@ +name: Automated NuGet Dependency Updates + +concurrency: ci-${{ github.ref }} + +on: + workflow_dispatch: + + schedule: + - cron: "0/30 16-23,0-9 * * *" + +env: + DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true + DOTNET_CLI_TELEMETRY_OPTOUT: true + +jobs: + call-workflow-nuget-autoupdate: + uses: Digitalroot-Valheim/.github/.github/workflows/nuget.autoupdate.yml@main + secrets: + github-pat: ${{ secrets.AUTOMATED_DEPENDENCY_UPDATES_TOKEN }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ddc8d44..80d0851 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -3,11 +3,14 @@ name: Release concurrency: ci-${{ github.ref }} on: + workflow_dispatch: push: branches: [ main ] # Default release branch - paths: - - 'src/**' - - '.github/workflows/**' + paths-ignore: + - '.github/**' + - 'docs/**' + - '**/.ts/**' + - '**/.nx/**' env: DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true @@ -15,27 +18,23 @@ env: jobs: call-workflow-nuget-release: - if: ${{ false }} # disable for now uses: Digitalroot-Valheim/.github/.github/workflows/nuget.release.yml@main secrets: aws-access-key-id: ${{ secrets.NUGET_S3_REPO_KEY_ID }} aws-secret-access-key: ${{ secrets.NUGET_S3_REPO_KEY_SECRET }} - #nexus-api-key: ${{ secrets.NEXUS_API_KEY }} - #nexus-cookies-header: ${{ secrets.NEXUS_COOKIE_HEADER }} - #nuget-org-key: ${{ secrets.NUGET_ORG_PAT }} - + nexus-api-key: ${{ secrets.NEXUS_API_KEY }} + nexus-cookie-nxid-header: ${{ secrets.NEXUS_COOKIE_HEADER_NEXUSID }} + nexus-cookie-sid-header: ${{ secrets.NEXUS_COOKIE_HEADER_SID_DEVELOP }} + ts-api-key: ${{ secrets.TS_SERVICEACCOUNT }} + with: - sln-file-name: Digitalroot.Valheim.Common.Placeholder - proj-file-name: Digitalroot.Valheim.Common.Placeholder - #src-path: src - #unit-test-path: UnitTests - #skip-unit-tests: true - #force-assembly-version: true - #create-github-release: false - #aws-region: us-west-2 - #is-nuget-package: false - #nuget-gh-upload: true - #nuget-s3-upload: true - #nuget-org-upload: true - #nexus-enable-upload: true - #nexus-mod-id: 000 \ No newline at end of file + sln-file-name: Digitalroot.Valheim.EternalFire + proj-file-name: Digitalroot.Valheim.EternalFire + is-nuget-package: false + nexus-enable-upload: false + nexus-mod-id: 1463 + ts-enable-upload: false + ts-name: Eternal_Fire + ts-description: "Keeps fires burning." + ts-categories: "server-side client-side tweaks" #https://thunderstore.io/api/experimental/community/valheim/category/ + ts-dependencies: denikson-BepInExPack_Valheim@5.4.2105 ValheimModding-Jotunn@2.11.5 diff --git a/.gitignore b/.gitignore index dfcfd56..8ee83e1 100644 --- a/.gitignore +++ b/.gitignore @@ -23,11 +23,13 @@ mono_crash.* [Rr]eleases/ x64/ x86/ +[Ww][Ii][Nn]32/ [Aa][Rr][Mm]/ [Aa][Rr][Mm]64/ bld/ [Bb]in/ [Oo]bj/ +[Oo]ut/ [Ll]og/ [Ll]ogs/ @@ -61,6 +63,9 @@ project.lock.json project.fragment.lock.json artifacts/ +# ASP.NET Scaffolding +ScaffoldingReadMe.txt + # StyleCop StyleCopReport.xml @@ -137,6 +142,11 @@ _TeamCity* .axoCover/* !.axoCover/settings.json +# Coverlet is a free, cross platform Code Coverage Tool +coverage*.json +coverage*.xml +coverage*.info + # Visual Studio code coverage results *.coverage *.coveragexml @@ -348,3 +358,7 @@ MigrationBackup/ # Ionide (cross platform F# VS Code tools) working folder .ionide/ + +# Fody - auto-generated XML schema +FodyWeavers.xsd +/BetterTrader.old diff --git a/LICENSE b/LICENSE index 0ad25db..e69de29 100644 --- a/LICENSE +++ b/LICENSE @@ -1,661 +0,0 @@ - GNU AFFERO GENERAL PUBLIC LICENSE - Version 3, 19 November 2007 - - Copyright (C) 2007 Free Software Foundation, Inc. - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The GNU Affero General Public License is a free, copyleft license for -software and other kinds of works, specifically designed to ensure -cooperation with the community in the case of network server software. - - The licenses for most software and other practical works are designed -to take away your freedom to share and change the works. By contrast, -our General Public Licenses are intended to guarantee your freedom to -share and change all versions of a program--to make sure it remains free -software for all its users. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -them if you wish), that you receive source code or can get it if you -want it, that you can change the software or use pieces of it in new -free programs, and that you know you can do these things. - - Developers that use our General Public Licenses protect your rights -with two steps: (1) assert copyright on the software, and (2) offer -you this License which gives you legal permission to copy, distribute -and/or modify the software. - - A secondary benefit of defending all users' freedom is that -improvements made in alternate versions of the program, if they -receive widespread use, become available for other developers to -incorporate. Many developers of free software are heartened and -encouraged by the resulting cooperation. However, in the case of -software used on network servers, this result may fail to come about. -The GNU General Public License permits making a modified version and -letting the public access it on a server without ever releasing its -source code to the public. - - The GNU Affero General Public License is designed specifically to -ensure that, in such cases, the modified source code becomes available -to the community. It requires the operator of a network server to -provide the source code of the modified version running there to the -users of that server. Therefore, public use of a modified version, on -a publicly accessible server, gives the public access to the source -code of the modified version. - - An older license, called the Affero General Public License and -published by Affero, was designed to accomplish similar goals. This is -a different license, not a version of the Affero GPL, but Affero has -released a new version of the Affero GPL which permits relicensing under -this license. - - The precise terms and conditions for copying, distribution and -modification follow. - - TERMS AND CONDITIONS - - 0. Definitions. - - "This License" refers to version 3 of the GNU Affero General Public License. - - "Copyright" also means copyright-like laws that apply to other kinds of -works, such as semiconductor masks. - - "The Program" refers to any copyrightable work licensed under this -License. Each licensee is addressed as "you". "Licensees" and -"recipients" may be individuals or organizations. - - To "modify" a work means to copy from or adapt all or part of the work -in a fashion requiring copyright permission, other than the making of an -exact copy. The resulting work is called a "modified version" of the -earlier work or a work "based on" the earlier work. - - A "covered work" means either the unmodified Program or a work based -on the Program. - - To "propagate" a work means to do anything with it that, without -permission, would make you directly or secondarily liable for -infringement under applicable copyright law, except executing it on a -computer or modifying a private copy. Propagation includes copying, -distribution (with or without modification), making available to the -public, and in some countries other activities as well. - - To "convey" a work means any kind of propagation that enables other -parties to make or receive copies. Mere interaction with a user through -a computer network, with no transfer of a copy, is not conveying. - - An interactive user interface displays "Appropriate Legal Notices" -to the extent that it includes a convenient and prominently visible -feature that (1) displays an appropriate copyright notice, and (2) -tells the user that there is no warranty for the work (except to the -extent that warranties are provided), that licensees may convey the -work under this License, and how to view a copy of this License. If -the interface presents a list of user commands or options, such as a -menu, a prominent item in the list meets this criterion. - - 1. Source Code. - - The "source code" for a work means the preferred form of the work -for making modifications to it. "Object code" means any non-source -form of a work. - - A "Standard Interface" means an interface that either is an official -standard defined by a recognized standards body, or, in the case of -interfaces specified for a particular programming language, one that -is widely used among developers working in that language. - - The "System Libraries" of an executable work include anything, other -than the work as a whole, that (a) is included in the normal form of -packaging a Major Component, but which is not part of that Major -Component, and (b) serves only to enable use of the work with that -Major Component, or to implement a Standard Interface for which an -implementation is available to the public in source code form. A -"Major Component", in this context, means a major essential component -(kernel, window system, and so on) of the specific operating system -(if any) on which the executable work runs, or a compiler used to -produce the work, or an object code interpreter used to run it. - - The "Corresponding Source" for a work in object code form means all -the source code needed to generate, install, and (for an executable -work) run the object code and to modify the work, including scripts to -control those activities. However, it does not include the work's -System Libraries, or general-purpose tools or generally available free -programs which are used unmodified in performing those activities but -which are not part of the work. For example, Corresponding Source -includes interface definition files associated with source files for -the work, and the source code for shared libraries and dynamically -linked subprograms that the work is specifically designed to require, -such as by intimate data communication or control flow between those -subprograms and other parts of the work. - - The Corresponding Source need not include anything that users -can regenerate automatically from other parts of the Corresponding -Source. - - The Corresponding Source for a work in source code form is that -same work. - - 2. Basic Permissions. - - All rights granted under this License are granted for the term of -copyright on the Program, and are irrevocable provided the stated -conditions are met. This License explicitly affirms your unlimited -permission to run the unmodified Program. The output from running a -covered work is covered by this License only if the output, given its -content, constitutes a covered work. This License acknowledges your -rights of fair use or other equivalent, as provided by copyright law. - - You may make, run and propagate covered works that you do not -convey, without conditions so long as your license otherwise remains -in force. You may convey covered works to others for the sole purpose -of having them make modifications exclusively for you, or provide you -with facilities for running those works, provided that you comply with -the terms of this License in conveying all material for which you do -not control copyright. Those thus making or running the covered works -for you must do so exclusively on your behalf, under your direction -and control, on terms that prohibit them from making any copies of -your copyrighted material outside their relationship with you. - - Conveying under any other circumstances is permitted solely under -the conditions stated below. Sublicensing is not allowed; section 10 -makes it unnecessary. - - 3. Protecting Users' Legal Rights From Anti-Circumvention Law. - - No covered work shall be deemed part of an effective technological -measure under any applicable law fulfilling obligations under article -11 of the WIPO copyright treaty adopted on 20 December 1996, or -similar laws prohibiting or restricting circumvention of such -measures. - - When you convey a covered work, you waive any legal power to forbid -circumvention of technological measures to the extent such circumvention -is effected by exercising rights under this License with respect to -the covered work, and you disclaim any intention to limit operation or -modification of the work as a means of enforcing, against the work's -users, your or third parties' legal rights to forbid circumvention of -technological measures. - - 4. Conveying Verbatim Copies. - - You may convey verbatim copies of the Program's source code as you -receive it, in any medium, provided that you conspicuously and -appropriately publish on each copy an appropriate copyright notice; -keep intact all notices stating that this License and any -non-permissive terms added in accord with section 7 apply to the code; -keep intact all notices of the absence of any warranty; and give all -recipients a copy of this License along with the Program. - - You may charge any price or no price for each copy that you convey, -and you may offer support or warranty protection for a fee. - - 5. Conveying Modified Source Versions. - - You may convey a work based on the Program, or the modifications to -produce it from the Program, in the form of source code under the -terms of section 4, provided that you also meet all of these conditions: - - a) The work must carry prominent notices stating that you modified - it, and giving a relevant date. - - b) The work must carry prominent notices stating that it is - released under this License and any conditions added under section - 7. This requirement modifies the requirement in section 4 to - "keep intact all notices". - - c) You must license the entire work, as a whole, under this - License to anyone who comes into possession of a copy. This - License will therefore apply, along with any applicable section 7 - additional terms, to the whole of the work, and all its parts, - regardless of how they are packaged. This License gives no - permission to license the work in any other way, but it does not - invalidate such permission if you have separately received it. - - d) If the work has interactive user interfaces, each must display - Appropriate Legal Notices; however, if the Program has interactive - interfaces that do not display Appropriate Legal Notices, your - work need not make them do so. - - A compilation of a covered work with other separate and independent -works, which are not by their nature extensions of the covered work, -and which are not combined with it such as to form a larger program, -in or on a volume of a storage or distribution medium, is called an -"aggregate" if the compilation and its resulting copyright are not -used to limit the access or legal rights of the compilation's users -beyond what the individual works permit. Inclusion of a covered work -in an aggregate does not cause this License to apply to the other -parts of the aggregate. - - 6. Conveying Non-Source Forms. - - You may convey a covered work in object code form under the terms -of sections 4 and 5, provided that you also convey the -machine-readable Corresponding Source under the terms of this License, -in one of these ways: - - a) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by the - Corresponding Source fixed on a durable physical medium - customarily used for software interchange. - - b) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by a - written offer, valid for at least three years and valid for as - long as you offer spare parts or customer support for that product - model, to give anyone who possesses the object code either (1) a - copy of the Corresponding Source for all the software in the - product that is covered by this License, on a durable physical - medium customarily used for software interchange, for a price no - more than your reasonable cost of physically performing this - conveying of source, or (2) access to copy the - Corresponding Source from a network server at no charge. - - c) Convey individual copies of the object code with a copy of the - written offer to provide the Corresponding Source. This - alternative is allowed only occasionally and noncommercially, and - only if you received the object code with such an offer, in accord - with subsection 6b. - - d) Convey the object code by offering access from a designated - place (gratis or for a charge), and offer equivalent access to the - Corresponding Source in the same way through the same place at no - further charge. You need not require recipients to copy the - Corresponding Source along with the object code. If the place to - copy the object code is a network server, the Corresponding Source - may be on a different server (operated by you or a third party) - that supports equivalent copying facilities, provided you maintain - clear directions next to the object code saying where to find the - Corresponding Source. Regardless of what server hosts the - Corresponding Source, you remain obligated to ensure that it is - available for as long as needed to satisfy these requirements. - - e) Convey the object code using peer-to-peer transmission, provided - you inform other peers where the object code and Corresponding - Source of the work are being offered to the general public at no - charge under subsection 6d. - - A separable portion of the object code, whose source code is excluded -from the Corresponding Source as a System Library, need not be -included in conveying the object code work. - - A "User Product" is either (1) a "consumer product", which means any -tangible personal property which is normally used for personal, family, -or household purposes, or (2) anything designed or sold for incorporation -into a dwelling. In determining whether a product is a consumer product, -doubtful cases shall be resolved in favor of coverage. For a particular -product received by a particular user, "normally used" refers to a -typical or common use of that class of product, regardless of the status -of the particular user or of the way in which the particular user -actually uses, or expects or is expected to use, the product. A product -is a consumer product regardless of whether the product has substantial -commercial, industrial or non-consumer uses, unless such uses represent -the only significant mode of use of the product. - - "Installation Information" for a User Product means any methods, -procedures, authorization keys, or other information required to install -and execute modified versions of a covered work in that User Product from -a modified version of its Corresponding Source. The information must -suffice to ensure that the continued functioning of the modified object -code is in no case prevented or interfered with solely because -modification has been made. - - If you convey an object code work under this section in, or with, or -specifically for use in, a User Product, and the conveying occurs as -part of a transaction in which the right of possession and use of the -User Product is transferred to the recipient in perpetuity or for a -fixed term (regardless of how the transaction is characterized), the -Corresponding Source conveyed under this section must be accompanied -by the Installation Information. But this requirement does not apply -if neither you nor any third party retains the ability to install -modified object code on the User Product (for example, the work has -been installed in ROM). - - The requirement to provide Installation Information does not include a -requirement to continue to provide support service, warranty, or updates -for a work that has been modified or installed by the recipient, or for -the User Product in which it has been modified or installed. Access to a -network may be denied when the modification itself materially and -adversely affects the operation of the network or violates the rules and -protocols for communication across the network. - - Corresponding Source conveyed, and Installation Information provided, -in accord with this section must be in a format that is publicly -documented (and with an implementation available to the public in -source code form), and must require no special password or key for -unpacking, reading or copying. - - 7. Additional Terms. - - "Additional permissions" are terms that supplement the terms of this -License by making exceptions from one or more of its conditions. -Additional permissions that are applicable to the entire Program shall -be treated as though they were included in this License, to the extent -that they are valid under applicable law. If additional permissions -apply only to part of the Program, that part may be used separately -under those permissions, but the entire Program remains governed by -this License without regard to the additional permissions. - - When you convey a copy of a covered work, you may at your option -remove any additional permissions from that copy, or from any part of -it. (Additional permissions may be written to require their own -removal in certain cases when you modify the work.) You may place -additional permissions on material, added by you to a covered work, -for which you have or can give appropriate copyright permission. - - Notwithstanding any other provision of this License, for material you -add to a covered work, you may (if authorized by the copyright holders of -that material) supplement the terms of this License with terms: - - a) Disclaiming warranty or limiting liability differently from the - terms of sections 15 and 16 of this License; or - - b) Requiring preservation of specified reasonable legal notices or - author attributions in that material or in the Appropriate Legal - Notices displayed by works containing it; or - - c) Prohibiting misrepresentation of the origin of that material, or - requiring that modified versions of such material be marked in - reasonable ways as different from the original version; or - - d) Limiting the use for publicity purposes of names of licensors or - authors of the material; or - - e) Declining to grant rights under trademark law for use of some - trade names, trademarks, or service marks; or - - f) Requiring indemnification of licensors and authors of that - material by anyone who conveys the material (or modified versions of - it) with contractual assumptions of liability to the recipient, for - any liability that these contractual assumptions directly impose on - those licensors and authors. - - All other non-permissive additional terms are considered "further -restrictions" within the meaning of section 10. If the Program as you -received it, or any part of it, contains a notice stating that it is -governed by this License along with a term that is a further -restriction, you may remove that term. If a license document contains -a further restriction but permits relicensing or conveying under this -License, you may add to a covered work material governed by the terms -of that license document, provided that the further restriction does -not survive such relicensing or conveying. - - If you add terms to a covered work in accord with this section, you -must place, in the relevant source files, a statement of the -additional terms that apply to those files, or a notice indicating -where to find the applicable terms. - - Additional terms, permissive or non-permissive, may be stated in the -form of a separately written license, or stated as exceptions; -the above requirements apply either way. - - 8. Termination. - - You may not propagate or modify a covered work except as expressly -provided under this License. Any attempt otherwise to propagate or -modify it is void, and will automatically terminate your rights under -this License (including any patent licenses granted under the third -paragraph of section 11). - - However, if you cease all violation of this License, then your -license from a particular copyright holder is reinstated (a) -provisionally, unless and until the copyright holder explicitly and -finally terminates your license, and (b) permanently, if the copyright -holder fails to notify you of the violation by some reasonable means -prior to 60 days after the cessation. - - Moreover, your license from a particular copyright holder is -reinstated permanently if the copyright holder notifies you of the -violation by some reasonable means, this is the first time you have -received notice of violation of this License (for any work) from that -copyright holder, and you cure the violation prior to 30 days after -your receipt of the notice. - - Termination of your rights under this section does not terminate the -licenses of parties who have received copies or rights from you under -this License. If your rights have been terminated and not permanently -reinstated, you do not qualify to receive new licenses for the same -material under section 10. - - 9. Acceptance Not Required for Having Copies. - - You are not required to accept this License in order to receive or -run a copy of the Program. Ancillary propagation of a covered work -occurring solely as a consequence of using peer-to-peer transmission -to receive a copy likewise does not require acceptance. However, -nothing other than this License grants you permission to propagate or -modify any covered work. These actions infringe copyright if you do -not accept this License. Therefore, by modifying or propagating a -covered work, you indicate your acceptance of this License to do so. - - 10. Automatic Licensing of Downstream Recipients. - - Each time you convey a covered work, the recipient automatically -receives a license from the original licensors, to run, modify and -propagate that work, subject to this License. You are not responsible -for enforcing compliance by third parties with this License. - - An "entity transaction" is a transaction transferring control of an -organization, or substantially all assets of one, or subdividing an -organization, or merging organizations. If propagation of a covered -work results from an entity transaction, each party to that -transaction who receives a copy of the work also receives whatever -licenses to the work the party's predecessor in interest had or could -give under the previous paragraph, plus a right to possession of the -Corresponding Source of the work from the predecessor in interest, if -the predecessor has it or can get it with reasonable efforts. - - You may not impose any further restrictions on the exercise of the -rights granted or affirmed under this License. For example, you may -not impose a license fee, royalty, or other charge for exercise of -rights granted under this License, and you may not initiate litigation -(including a cross-claim or counterclaim in a lawsuit) alleging that -any patent claim is infringed by making, using, selling, offering for -sale, or importing the Program or any portion of it. - - 11. Patents. - - A "contributor" is a copyright holder who authorizes use under this -License of the Program or a work on which the Program is based. The -work thus licensed is called the contributor's "contributor version". - - A contributor's "essential patent claims" are all patent claims -owned or controlled by the contributor, whether already acquired or -hereafter acquired, that would be infringed by some manner, permitted -by this License, of making, using, or selling its contributor version, -but do not include claims that would be infringed only as a -consequence of further modification of the contributor version. For -purposes of this definition, "control" includes the right to grant -patent sublicenses in a manner consistent with the requirements of -this License. - - Each contributor grants you a non-exclusive, worldwide, royalty-free -patent license under the contributor's essential patent claims, to -make, use, sell, offer for sale, import and otherwise run, modify and -propagate the contents of its contributor version. - - In the following three paragraphs, a "patent license" is any express -agreement or commitment, however denominated, not to enforce a patent -(such as an express permission to practice a patent or covenant not to -sue for patent infringement). To "grant" such a patent license to a -party means to make such an agreement or commitment not to enforce a -patent against the party. - - If you convey a covered work, knowingly relying on a patent license, -and the Corresponding Source of the work is not available for anyone -to copy, free of charge and under the terms of this License, through a -publicly available network server or other readily accessible means, -then you must either (1) cause the Corresponding Source to be so -available, or (2) arrange to deprive yourself of the benefit of the -patent license for this particular work, or (3) arrange, in a manner -consistent with the requirements of this License, to extend the patent -license to downstream recipients. "Knowingly relying" means you have -actual knowledge that, but for the patent license, your conveying the -covered work in a country, or your recipient's use of the covered work -in a country, would infringe one or more identifiable patents in that -country that you have reason to believe are valid. - - If, pursuant to or in connection with a single transaction or -arrangement, you convey, or propagate by procuring conveyance of, a -covered work, and grant a patent license to some of the parties -receiving the covered work authorizing them to use, propagate, modify -or convey a specific copy of the covered work, then the patent license -you grant is automatically extended to all recipients of the covered -work and works based on it. - - A patent license is "discriminatory" if it does not include within -the scope of its coverage, prohibits the exercise of, or is -conditioned on the non-exercise of one or more of the rights that are -specifically granted under this License. You may not convey a covered -work if you are a party to an arrangement with a third party that is -in the business of distributing software, under which you make payment -to the third party based on the extent of your activity of conveying -the work, and under which the third party grants, to any of the -parties who would receive the covered work from you, a discriminatory -patent license (a) in connection with copies of the covered work -conveyed by you (or copies made from those copies), or (b) primarily -for and in connection with specific products or compilations that -contain the covered work, unless you entered into that arrangement, -or that patent license was granted, prior to 28 March 2007. - - Nothing in this License shall be construed as excluding or limiting -any implied license or other defenses to infringement that may -otherwise be available to you under applicable patent law. - - 12. No Surrender of Others' Freedom. - - If conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot convey a -covered work so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you may -not convey it at all. For example, if you agree to terms that obligate you -to collect a royalty for further conveying from those to whom you convey -the Program, the only way you could satisfy both those terms and this -License would be to refrain entirely from conveying the Program. - - 13. Remote Network Interaction; Use with the GNU General Public License. - - Notwithstanding any other provision of this License, if you modify the -Program, your modified version must prominently offer all users -interacting with it remotely through a computer network (if your version -supports such interaction) an opportunity to receive the Corresponding -Source of your version by providing access to the Corresponding Source -from a network server at no charge, through some standard or customary -means of facilitating copying of software. This Corresponding Source -shall include the Corresponding Source for any work covered by version 3 -of the GNU General Public License that is incorporated pursuant to the -following paragraph. - - Notwithstanding any other provision of this License, you have -permission to link or combine any covered work with a work licensed -under version 3 of the GNU General Public License into a single -combined work, and to convey the resulting work. The terms of this -License will continue to apply to the part which is the covered work, -but the work with which it is combined will remain governed by version -3 of the GNU General Public License. - - 14. Revised Versions of this License. - - The Free Software Foundation may publish revised and/or new versions of -the GNU Affero General Public License from time to time. Such new versions -will be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - - Each version is given a distinguishing version number. If the -Program specifies that a certain numbered version of the GNU Affero General -Public License "or any later version" applies to it, you have the -option of following the terms and conditions either of that numbered -version or of any later version published by the Free Software -Foundation. If the Program does not specify a version number of the -GNU Affero General Public License, you may choose any version ever published -by the Free Software Foundation. - - If the Program specifies that a proxy can decide which future -versions of the GNU Affero General Public License can be used, that proxy's -public statement of acceptance of a version permanently authorizes you -to choose that version for the Program. - - Later license versions may give you additional or different -permissions. However, no additional obligations are imposed on any -author or copyright holder as a result of your choosing to follow a -later version. - - 15. Disclaimer of Warranty. - - THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY -APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT -HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY -OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, -THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM -IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF -ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. Limitation of Liability. - - IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS -THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY -GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE -USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF -DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD -PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), -EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF -SUCH DAMAGES. - - 17. Interpretation of Sections 15 and 16. - - If the disclaimer of warranty and limitation of liability provided -above cannot be given local legal effect according to their terms, -reviewing courts shall apply local law that most closely approximates -an absolute waiver of all civil liability in connection with the -Program, unless a warranty or assumption of liability accompanies a -copy of the Program in return for a fee. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -state 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 program is free software: you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License as published - by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Affero General Public License for more details. - - You should have received a copy of the GNU Affero General Public License - along with this program. If not, see . - -Also add information on how to contact you by electronic and paper mail. - - If your software can interact with users remotely through a computer -network, you should also make sure that it provides a way for users to -get its source. For example, if your program is a web application, its -interface could display a "Source" link that leads users to an archive -of the code. There are many ways you could offer source, and different -solutions will be better for different programs; see section 13 for the -specific requirements. - - You should also get your employer (if you work as a programmer) or school, -if any, to sign a "copyright disclaimer" for the program, if necessary. -For more information on this, and how to apply and follow the GNU AGPL, see -. diff --git a/docs/README.md b/docs/README.md index 198fb56..c9d40f3 100644 --- a/docs/README.md +++ b/docs/README.md @@ -1,32 +1,14 @@ -Structuring your Thunderstore package -https://github.com/ebkr/r2modmanPlus/wiki/Structuring-your-Thunderstore-package +# Eternal Fire -Manifest V1 (Thunderstore) + author field -https://github.com/ebkr/r2modmanPlus/wiki/Installing-mods-locally#manifest-v1-thunderstore--author-field +## Summary - -Move me to [gitrepo]/doc - -# Summary -This is a port of ModTemplate to JVL -PR: https://github.com/Atokal/AtosArrows/pull/3 -Assets belong to Atokal and are used with permission because of: -- Asset use permission You are allowed to use the assets in this file without permission or crediting me. https://www.nexusmods.com/valheim/mods/969 (June 12, 2021) - -Original Mod: https://www.nexusmods.com/valheim/mods/969 - -**Code is a complete rewrite.** +Keeps fires burning. ## License -Original source has no license. -JVL Version is released under: **GNU Affero General Public License v3.0** - -## ModTemplate -Adds several new arrows into the game. Expands arrow progression for fighting tougher enemies! +**GNU Affero General Public License v3.0** -New Items: -- Stone Arrow -- Blunted Arrow +## Details +Keeps fires lit and burning without needing to fuel them. ### Dependencies - BepInExPack Valheim @@ -37,17 +19,33 @@ New Items: 1. Extract the archive into <Steam Location>\steamapps\common\Valheim\BepInEx\plugins ### Configuration -- No need to configure. + +| Config | Category | Data Type | Desc | +| --- | --- | --- | --- | +| Campfire | Fireplaces | bool | Enable Campfire | +| Bonfire | Fireplaces | bool | Enable Bonfire | +| Sconce | Fireplaces | bool | Enable Sconce | +| StandingWoodTorch | Fireplaces | bool | Enable Standing Wood Torch | +| StandingIronTorch | Fireplaces | bool | Enable Standing Iron Torch | +| StandingGreenBurningIronTorch | Fireplaces | bool | Enable Standing Green Burning Iron Torch | +| StandingBlueBurningIronTorch | Fireplaces | bool | Enable Standing Blue Burning Iron Torch | +| StandingBrazier | Fireplaces | bool | Enable Standing Brazier | +| HangingBrazier | Fireplaces | bool | Enable Hanging Brazier | +| Hearth | Fireplaces | bool | Enable Hearth | +| HotTub | Fireplaces | bool | Enable Hot Tub | +| JackOTurnip | Fireplaces | bool | Enable Jack O' Turnip | +| StoneOven | Cooking Stations | bool | Enable Stone Oven | +| Smelter | Smelters | bool | Enable Smelter | +| BlastFurnace | Smelters | bool | Enable Blast Furnace | +| EitrRefinery | Smelters | bool | Enable Eitr Refinery | +| CustomPrefabs | Custom | string | A comma-separated list of prefab names | ### Issues/Questions/Bugs - Use the repo issues tab above. ### Support Me @ https://www.buymeacoffee.com/digitalroot - -### Thanks to -- Atokal - +

-Digitalroot can be found in the Odin Plus Team Discord
- +Digitalroot can be found in the Valhalla Legends Discord

+

diff --git a/src/Digitalroot.Valheim.EternalFire.sln b/src/Digitalroot.Valheim.EternalFire.sln new file mode 100644 index 0000000..8f0834f --- /dev/null +++ b/src/Digitalroot.Valheim.EternalFire.sln @@ -0,0 +1,52 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.4.33122.133 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Digitalroot.Valheim.EternalFire", "Digitalroot.Valheim.EternalFire\Digitalroot.Valheim.EternalFire.csproj", "{73CF24C1-0509-43B3-A72B-90720901BF76}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".github", ".github", "{53F5499F-33B0-438A-B383-08CA50F1537E}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "worklfows", "worklfows", "{1A2C7529-FAA6-4705-9AD2-363DD17D6268}" + ProjectSection(SolutionItems) = preProject + ..\.github\workflows\discord.yml = ..\.github\workflows\discord.yml + ..\.github\workflows\nuget.autoupdate.yml = ..\.github\workflows\nuget.autoupdate.yml + ..\.github\workflows\release.yml = ..\.github\workflows\release.yml + EndProjectSection +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "docs", "docs", "{1EE29341-01DD-4652-AA4D-611DE75CB106}" + ProjectSection(SolutionItems) = preProject + ..\docs\README.md = ..\docs\README.md + EndProjectSection +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{F1DB36F5-73E7-4ED2-94FF-F19B28284A0D}" + ProjectSection(SolutionItems) = preProject + ..\.gitattributes = ..\.gitattributes + ..\.gitignore = ..\.gitignore + ..\LICENSE = ..\LICENSE + EndProjectSection +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + DebugNoDeploy|Any CPU = DebugNoDeploy|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {73CF24C1-0509-43B3-A72B-90720901BF76}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {73CF24C1-0509-43B3-A72B-90720901BF76}.Debug|Any CPU.Build.0 = Debug|Any CPU + {73CF24C1-0509-43B3-A72B-90720901BF76}.DebugNoDeploy|Any CPU.ActiveCfg = DebugNoDeploy|Any CPU + {73CF24C1-0509-43B3-A72B-90720901BF76}.DebugNoDeploy|Any CPU.Build.0 = DebugNoDeploy|Any CPU + {73CF24C1-0509-43B3-A72B-90720901BF76}.Release|Any CPU.ActiveCfg = Release|Any CPU + {73CF24C1-0509-43B3-A72B-90720901BF76}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(NestedProjects) = preSolution + {1A2C7529-FAA6-4705-9AD2-363DD17D6268} = {53F5499F-33B0-438A-B383-08CA50F1537E} + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {F8F84D08-DEB1-44D1-819E-5195C3DC4FA7} + EndGlobalSection +EndGlobal diff --git a/src/Digitalroot.Valheim.EternalFire/.nx/description.bbcode.txt b/src/Digitalroot.Valheim.EternalFire/.nx/description.bbcode.txt new file mode 100644 index 0000000..6e23073 --- /dev/null +++ b/src/Digitalroot.Valheim.EternalFire/.nx/description.bbcode.txt @@ -0,0 +1,38 @@ +[size=3]Valheim mod to mute Misophonia triggering sounds. +[/size][b][size=4] +License +[/size][/b][size=3][url=https://github.com/Digitalroot-Valheim/Digitalroot.Valheim.MisophoniaFriendly/blob/main/LICENSE]GNU Affero General Public License v3.0[/url][/size][size=3] +[/size][size=3]Closed-source license is available for commercial use.[/size] + +[b][size=4]Source[/size][/b] +[size=3][url=https://github.com/Digitalroot-Valheim/Digitalroot.Valheim.MisophoniaFriendly]GitHub[/url][/size] + +[b][size=4]Digitalroot's Max Dungeon Rooms[/size][/b] +[size=3]Mutes Misophonia triggering sounds. [/size] +[list] +[*][size=3]Puke[/size] +[*][size=3]Eat[/size] +[/list] +[b][size=4]Installation (manual)[/size][/b] +[list=1] +[*][size=3]Download the latest release archive (zip) file.[/size] +[*][size=3]Extract the archive into \steamapps\common\Valheim\BepInEx\plugins[/size] +[/list] +[b][size=4]Configuration[/size][/b][size=3] +[/size][list] +[*][size=3]No need to configure.[/size] +[/list] +[b][size=4]Issues/Bugs[/size][/b] +[size=3]Open an issue or bug on the [url=https://github.com/Digitalroot-Valheim/Digitalroot.Valheim.MisophoniaFriendly/issues]issue board[/url].[/size] + +[b][size=4]Questions[/size][/b] +[size=3]Ask a question on the [url=https://github.com/Digitalroot-Valheim/Digitalroot.Valheim.MisophoniaFriendly/discussions]discussions board[/url].[/size] + +[b][size=4]Support Me[/size][/b] @ [url=https://www.buymeacoffee.com/digitalroot]https://www.buymeacoffee.com/digitalroot[/url] + + +[center][size=3][b][color=#00ffff]Digitalroot can be found in the following Discords[/color][/b][/size] +[url=https://discord.gg/Xh3UHcDC][img]https://digitalroot.net/img/jvldisc.png[/img][/url] +[url=https://discord.gg/randyknappmods][img]https://digitalroot.net/img/epiclootdisc.png[/img][/url] +[url=https://discord.gg/mbkPcvu9ax][img]https://digitalroot.net/img/odinplusdisc.png[/img][/url] +[/center] diff --git a/src/Digitalroot.Valheim.EternalFire/.ts/icon.png b/src/Digitalroot.Valheim.EternalFire/.ts/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..eb14a926b3e0ceb87a2999b0bf19f1d6fbde7b59 GIT binary patch literal 99771 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
t3 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 literal 0 HcmV?d00001 diff --git a/src/Digitalroot.Valheim.EternalFire/.ts/manifest.json b/src/Digitalroot.Valheim.EternalFire/.ts/manifest.json new file mode 100644 index 0000000..4b90e73 --- /dev/null +++ b/src/Digitalroot.Valheim.EternalFire/.ts/manifest.json @@ -0,0 +1,12 @@ +{ + "$schema": "https://raw.githubusercontent.com/Digitalroot-Valheim/Digitalroot.Valheim.Common.Interfaces/main/src/json/tsio-manifest.json", + "name": "Eternal_Fire", + "author": "Digitalroot", + "description": "Keeps fires lit and burning without needing to fuel them.", + "version_number": "%VERSION_NUMBER%", + "dependencies": [ + "denikson-BepInExPack_Valheim-5.4.2105", + "ValheimModding-Jotunn-2.11.5" + ], + "website_url": "https://github.com/Digitalroot-Valheim/Digitalroot.Valheim.EternalFire" +} diff --git a/src/Digitalroot.Valheim.EternalFire/AssemblyInfo.cs b/src/Digitalroot.Valheim.EternalFire/AssemblyInfo.cs new file mode 100644 index 0000000..81ac32f --- /dev/null +++ b/src/Digitalroot.Valheim.EternalFire/AssemblyInfo.cs @@ -0,0 +1,39 @@ +using Digitalroot.Valheim.EternalFire; +using Digitalroot.Valheim.Common; + + +using System.Reflection; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle(Main.Namespace)] +[assembly: AssemblyDescription(Main.Name)] +[assembly: AssemblyConfiguration(AssemblyInfo.Configuration)] +[assembly: AssemblyCompany(AssemblyInfo.Company)] +[assembly: AssemblyProduct(AssemblyInfo.Product)] +[assembly: AssemblyCopyright(AssemblyInfo.Copyright)] +[assembly: AssemblyTrademark(AssemblyInfo.Trademark)] +[assembly: AssemblyCulture(AssemblyInfo.Culture)] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("3ccc4dc1-5b17-47c1-b996-ca03b8639a61")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion(Main.Version)] +[assembly: AssemblyFileVersion(Main.Version)] diff --git a/src/Digitalroot.Valheim.EternalFire/Digitalroot.Valheim.EternalFire.csproj b/src/Digitalroot.Valheim.EternalFire/Digitalroot.Valheim.EternalFire.csproj new file mode 100644 index 0000000..387a6d3 --- /dev/null +++ b/src/Digitalroot.Valheim.EternalFire/Digitalroot.Valheim.EternalFire.csproj @@ -0,0 +1,81 @@ + + + + Digitalroot.Valheim.EternalFire + net48 + 10 + Digitalroot.Valheim.EternalFire + False + True + embedded + false + false + true + AGPL-3.0-or-later + Copyright © Digitalroot Technologies 2021 - 2024 + https://github.com/Digitalroot-Valheim/Digitalroot.Valheim.EternalFire + https://github.com/Digitalroot-Valheim/Digitalroot.Valheim.EternalFire + git + Digitalroot + Digitalroot Technologies + Digitalroot Valheim Digitalroot.Valheim.EternalFire + Digitalroot.Valheim.EternalFire for Valheim + en-US + true + README.md + + https://nuget.bepinex.dev/v3/index.json; + https://digitalroot-valheim-nuget.s3.us-west-2.amazonaws.com/index.json + + 0.0.1 + Debug;Release;DebugNoDeploy + + + + + + + + + + + + + + + all + runtime + + + all + + + all + runtime + compile; build; native; contentfiles; analyzers; buildtransitive + + + + + + + all + runtime + compile; build; native; contentfiles; analyzers; buildtransitive + + + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + + all + + + + diff --git a/src/Digitalroot.Valheim.EternalFire/FodyWeavers.xml b/src/Digitalroot.Valheim.EternalFire/FodyWeavers.xml new file mode 100644 index 0000000..4717580 --- /dev/null +++ b/src/Digitalroot.Valheim.EternalFire/FodyWeavers.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/src/Digitalroot.Valheim.EternalFire/Main.cs b/src/Digitalroot.Valheim.EternalFire/Main.cs new file mode 100644 index 0000000..ec8231f --- /dev/null +++ b/src/Digitalroot.Valheim.EternalFire/Main.cs @@ -0,0 +1,194 @@ +using BepInEx; +using BepInEx.Configuration; +using Digitalroot.Valheim.Common; +using HarmonyLib; +using JetBrains.Annotations; +using Jotunn.Utils; +using System; +using System.Diagnostics.CodeAnalysis; +using System.Linq; +using System.Reflection; +using System.Threading.Tasks; + +namespace Digitalroot.Valheim.EternalFire +{ + [BepInPlugin(Guid, Name, Version)] + [BepInDependency(Jotunn.Main.ModGuid, "2.11.5")] + [NetworkCompatibility(CompatibilityLevel.EveryoneMustHaveMod, VersionStrictness.Minor)] + [SuppressMessage("ReSharper", "MemberCanBePrivate.Global")] + public partial class Main : BaseUnityPlugin, ITraceableLogging + { + private Harmony _harmony; + public static Main Instance; + + // [UsedImplicitly] public static ConfigEntry NexusId; + private readonly Harmony harmony = new Harmony(Guid); + public static ConfigEntry NexusId { get; private set; } + private static ConfigEntry config_fire_pit; + private static ConfigEntry config_bonfire; + private static ConfigEntry config_hearth; + private static ConfigEntry config_piece_walltorch; + private static ConfigEntry config_piece_groundtorch; + private static ConfigEntry config_piece_groundtorch_wood; + private static ConfigEntry config_piece_groundtorch_green; + private static ConfigEntry config_piece_groundtorch_blue; + private static ConfigEntry config_piece_brazierfloor01; + private static ConfigEntry config_piece_brazierceiling01; + private static ConfigEntry config_piece_jackoturnip; + private static ConfigEntry config_piece_oven; + private static ConfigEntry config_smelter; + private static ConfigEntry config_blastfurnace; + private static ConfigEntry config_eitrrefinery; + private static ConfigEntry config_piece_bathtub; + private static ConfigEntry config_custom_instance; + + public Main() + { + Instance = this; + #if DEBUG + EnableTrace = true; + Log.RegisterSource(Instance); + #else + EnableTrace = false; + #endif + Log.Trace(Instance, $"{Namespace}.{MethodBase.GetCurrentMethod()?.DeclaringType?.Name}.{MethodBase.GetCurrentMethod()?.Name}"); + } + + [UsedImplicitly] + private void Awake() + { + try + { + Log.Trace(Instance, $"{Namespace}.{MethodBase.GetCurrentMethod()?.DeclaringType?.Name}.{MethodBase.GetCurrentMethod()?.Name}"); + NexusId = Config.Bind("General", "NexusID", 0000, new ConfigDescription("Nexus mod ID for updates", null, new ConfigurationManagerAttributes { Browsable = false, ReadOnly = true })); + config_fire_pit = Config.Bind("Fireplaces", "CampFire", true, "Enable Campfire"); + config_bonfire = Config.Bind("Fireplaces", "Bonfire", true, "Enable Bonfire"); + config_piece_walltorch = Config.Bind("Fireplaces", "Sconce", true, "Enable Sconce"); + config_piece_groundtorch = Config.Bind("Fireplaces", "StandingIronTorch", true, "Enable Standing Iron Torch"); + config_piece_groundtorch_wood = Config.Bind("Fireplaces", "StandingWoodTorch", true, "Enable Standing Wood Torch"); + config_piece_groundtorch_green = Config.Bind("Fireplaces", "StandingGreenBurningIronTorch", true, "Enable Standing Green Burning Iron Torch"); + config_piece_groundtorch_blue = Config.Bind("Fireplaces", "StandingBlueBurningIronTorch", true, "Enable Standing Blue Burning Iron Torch"); + config_piece_brazierfloor01 = Config.Bind("Fireplaces", "StandingBrazier", true, "Enable Standing Brazier"); + config_piece_brazierceiling01 = Config.Bind("Fireplaces", "HangingBrazier", true, "Enable Hanging Brazier"); + config_piece_jackoturnip = Config.Bind("Fireplaces", "JackOTurnip", true, "Enable Jack-o-turnip"); + config_hearth = Config.Bind("Fireplaces", "Hearth", true, "Enable Hearth"); + config_piece_bathtub = Config.Bind("Fireplaces", "HotTub", true, "Enable Hot tub"); + config_piece_oven = Config.Bind("CookingStations", "StoneOven", true, "Enable Stone oven"); + config_smelter = Config.Bind("Smelters", "Smelter", false, "Enable Smelter"); + config_blastfurnace = Config.Bind("Smelters", "BlastFurnace", false, "Enable Blast furnace"); + config_eitrrefinery = Config.Bind("Smelters", "EitrRefinery", false, "Enable Eitr refinery"); + config_custom_instance = Config.Bind("Custom", "CustomPrefabs", "", "A comma-separated list of prefab names"); + + _harmony = Harmony.CreateAndPatchAll(typeof(Main).Assembly, Guid); + } + catch (Exception e) + { + Log.Error(Instance, e); + } + } + + [UsedImplicitly] + private void OnDestroy() + { + try + { + Log.Trace(Instance, $"{Namespace}.{MethodBase.GetCurrentMethod()?.DeclaringType?.Name}.{MethodBase.GetCurrentMethod()?.Name}"); + _harmony?.UnpatchSelf(); + } + catch (Exception e) + { + Log.Error(Instance, e); + } + } + + public static async void Refuel(ZNetView znview) + { + await Task.Delay(33); + znview.InvokeRPC("AddFuel"); + } + + public static bool ConfigCheck(string instanceName) + { + bool EternalFuel = false; + switch (instanceName) + { + case "fire_pit(Clone)": + EternalFuel = config_fire_pit.Value; + break; + + case "bonfire(Clone)": + EternalFuel = config_bonfire.Value; + break; + + case "hearth(Clone)": + EternalFuel = config_hearth.Value; + break; + + case "piece_walltorch(Clone)": + EternalFuel = config_piece_walltorch.Value; + break; + + case "piece_groundtorch(Clone)": + EternalFuel = config_piece_groundtorch.Value; + break; + + case "piece_groundtorch_wood(Clone)": + EternalFuel = config_piece_groundtorch_wood.Value; + break; + + case "piece_groundtorch_green(Clone)": + EternalFuel = config_piece_groundtorch_green.Value; + break; + + case "piece_groundtorch_blue(Clone)": + EternalFuel = config_piece_groundtorch_blue.Value; + break; + + case "piece_brazierfloor01(Clone)": + EternalFuel = config_piece_brazierfloor01.Value; + break; + + case "piece_brazierceiling01(Clone)": + EternalFuel = config_piece_brazierceiling01.Value; + break; + + case "piece_jackoturnip(Clone)": + EternalFuel = config_piece_jackoturnip.Value; + break; + + case "piece_oven(Clone)": + EternalFuel = config_piece_oven.Value; + break; + + case "smelter(Clone)": + EternalFuel = config_smelter.Value; + break; + + case "blastfurnace(Clone)": + EternalFuel = config_blastfurnace.Value; + break; + + case "eitrrefinery(Clone)": + EternalFuel = config_eitrrefinery.Value; + break; + + case "piece_bathtub(Clone)": + EternalFuel = config_piece_bathtub.Value; + break; + } + + if (config_custom_instance.Value.Split(',').Contains(instanceName.Remove(instanceName.Length - 7))) EternalFuel = true; + return EternalFuel; + } + + #region Implementation of ITraceableLogging + + /// + public string Source => Namespace; + + /// + public bool EnableTrace { get; } + + #endregion + } +} diff --git a/src/Digitalroot.Valheim.EternalFire/MetaData.cs b/src/Digitalroot.Valheim.EternalFire/MetaData.cs new file mode 100644 index 0000000..dbdd9a1 --- /dev/null +++ b/src/Digitalroot.Valheim.EternalFire/MetaData.cs @@ -0,0 +1,13 @@ +using System.Diagnostics.CodeAnalysis; + +namespace Digitalroot.Valheim.EternalFire +{ + [SuppressMessage("ReSharper", "MemberCanBePrivate.Global")] + public partial class Main + { + public const string Version = "0.0.1"; + public const string Name = "Eternal Fire"; + public const string Guid = "digitalroot.mods.eternalFire"; + public const string Namespace = "Digitalroot.Valheim" + nameof(Digitalroot.Valheim.EternalFire); + } +} diff --git a/src/Digitalroot.Valheim.EternalFire/Patch.cs b/src/Digitalroot.Valheim.EternalFire/Patch.cs new file mode 100644 index 0000000..14eccd3 --- /dev/null +++ b/src/Digitalroot.Valheim.EternalFire/Patch.cs @@ -0,0 +1,70 @@ +using HarmonyLib; +using JetBrains.Annotations; + +namespace Digitalroot.Valheim.EternalFire +{ + [UsedImplicitly] + public class Patch + { + [HarmonyPatch] + public class PatchFireplaceUpdateFireplace + { + [HarmonyPrefix, HarmonyPatch(typeof(Fireplace), nameof(Fireplace.UpdateFireplace))] + static void Prefix(ref Fireplace __instance, ref ZNetView ___m_nview) + { + if (Main.ConfigCheck(__instance.name)) ___m_nview.GetZDO().Set("fuel", __instance.m_maxFuel); + } + } + + #region CookingStation + + [HarmonyPatch] + public class PatchCookingStationSetFuel + { + [HarmonyPrefix, HarmonyPatch(typeof(CookingStation), nameof(CookingStation.SetFuel))] + static void Prefix(ref CookingStation __instance, ref float fuel) + { + if (Main.ConfigCheck(__instance.name)) fuel = __instance.m_maxFuel; + } + } + + [HarmonyPatch] + public class PatchCookingStationAwake + { + [HarmonyPostfix, HarmonyPatch(typeof(CookingStation), nameof(CookingStation.Awake))] + static void Postfix(ref CookingStation __instance, ref ZNetView ___m_nview) + { + if (!___m_nview.isActiveAndEnabled || Player.m_localPlayer == null || Player.m_localPlayer.IsTeleporting()) return; + if (Main.ConfigCheck(__instance.name)) Main.Refuel(___m_nview); + } + } + + #endregion + + #region Smelter + + [HarmonyPatch] + public class PatchSmelterSetFuel + { + [HarmonyPrefix, HarmonyPatch(typeof(Smelter), nameof(Smelter.SetFuel))] + static void Prefix(ref Smelter __instance, ref float fuel) + { + if (Main.ConfigCheck(__instance.name)) fuel = __instance.m_maxFuel; + } + } + + [HarmonyPatch] + public class PatchSmelterAwake + { + [HarmonyPostfix, HarmonyPatch(typeof(Smelter), nameof(Smelter.Awake))] + static void Postfix(ref Smelter __instance, ref ZNetView ___m_nview) + { + if (!___m_nview.isActiveAndEnabled || Player.m_localPlayer == null || Player.m_localPlayer.IsTeleporting()) return; + + if (Main.ConfigCheck(__instance.name)) Main.Refuel(___m_nview); + } + } + + #endregion + } +} diff --git a/src/Digitalroot.Valheim.EternalFire/TemplateOutputs.txt b/src/Digitalroot.Valheim.EternalFire/TemplateOutputs.txt new file mode 100644 index 0000000..b8ef946 --- /dev/null +++ b/src/Digitalroot.Valheim.EternalFire/TemplateOutputs.txt @@ -0,0 +1,18 @@ +rootnamespace=$rootnamespace$ +clrversion=4.0.30319.42000 +guid[1-10]=4725d2f5-fbb1-4caa-bec4-72022495c1a6 +itemname=TemplateOutputs +machinename=FIRESTORM +projectname=Digitalroot.Valheim.EternalFire +registeredorganization= +defaultnamespace=$defaultnamespace$ +safeitemname=TemplateOutputs +safeitemrootname=TemplateOutputs +safeprojectname=Digitalroot.Valheim.EternalFire +targetframeworkversion=4.7.2 +time=12/12/2022 6:38:13 PM +specifiedsolutionname= +userdomain=FIRESTORM +username=nkd +webnamespace=$webnamespace$ +year=2022 \ No newline at end of file diff --git a/src/Digitalroot.Valheim.EternalFire/packages.lock.json b/src/Digitalroot.Valheim.EternalFire/packages.lock.json new file mode 100644 index 0000000..ed5d88c --- /dev/null +++ b/src/Digitalroot.Valheim.EternalFire/packages.lock.json @@ -0,0 +1,144 @@ +{ + "version": 1, + "dependencies": { + ".NETFramework,Version=v4.8": { + "BepInEx.Core": { + "type": "Direct", + "requested": "[5.4.21, 5.4.21]", + "resolved": "5.4.21", + "contentHash": "NMUPlbHTTfJ+qIQCI90uIvjuUQ4wnwt4cpRsK3ItBh1DhsWFzAHXNiZjBxZkPysljEKQ2iu89sxMTga4bxBXVQ==", + "dependencies": { + "BepInEx.BaseLib": "5.4.20", + "HarmonyX": "2.7.0" + } + }, + "Digitalroot.Valheim.Build.Targets": { + "type": "Direct", + "requested": "[1.0.21, )", + "resolved": "1.0.21", + "contentHash": "8mErk3UFjy80d9IlTjXNsofT7YfKLz897YE10ieB/SHNbBorzwVCPYRGsmuaNH8HyqjKQH3KnK4gDwDMBEC+DQ==" + }, + "Digitalroot.Valheim.Common.AssemblyInfo": { + "type": "Direct", + "requested": "[1.0.16, )", + "resolved": "1.0.16", + "contentHash": "+QeepsgH/cRv93h1NrhKLnjARUYNplFWVrFX4MBYLV2K2MQ9hGWV/bhR4As/2IOeNVKX42x5wJqw4YFbZLky/w==" + }, + "Digitalroot.Valheim.Common.Log": { + "type": "Direct", + "requested": "[1.1.46, )", + "resolved": "1.1.46", + "contentHash": "WgwWYfcJJae4pQI0oRxkLj/NvFvYILo4p2P3nQkLX0i9fPpVB+eDlgAGUEsyG76PmsM/N7eZpGeiFvbnSDEEJQ==", + "dependencies": { + "Digitalroot.Valheim.Common.Json": "1.0.34" + } + }, + "Digitalroot.Valheim.Common.Names": { + "type": "Direct", + "requested": "[1.4.18, )", + "resolved": "1.4.18", + "contentHash": "FqjWNLeVXk6J14c7GWftZ8aIpsqPJ3uXKy+HXgS66SjED/h6j5EEirUZnDMGe7A/6GboNUA06/JDp3R8qfR2kg==", + "dependencies": { + "Digitalroot.Valheim.Common.Utils": "1.0.55" + } + }, + "Digitalroot.Valheim.Common.References": { + "type": "Direct", + "requested": "[0.217.38, )", + "resolved": "0.217.38", + "contentHash": "y8KIE7aSMeFytv1ks7CJIoDLWUPN4vzaSkWN2r4kDhkoq65rmmxB1UsjI+VZvfs9LZ5COfZwdQlz628/2Nclgg==" + }, + "Digitalroot.Valheim.Common.Utils": { + "type": "Direct", + "requested": "[1.0.55, )", + "resolved": "1.0.55", + "contentHash": "J9VWU0c+GLXvUYKlBx0zeN5t49iCEnYWC27O2/CSC6IitOe3tR3YhSCanFvAQPNuR0UOpjmbUgHegA3t6NS6AQ==", + "dependencies": { + "Digitalroot.Valheim.Common.Log": "1.1.46" + } + }, + "Digitalroot.Valheim.References.JvL": { + "type": "Direct", + "requested": "[2.15.2, )", + "resolved": "2.15.2", + "contentHash": "+GcLrGLT7mqaniFbBthYMNgRClTbDP0VSEBN+Leo56rDm4YFHbZVUanXOzJK+dWIEtttIeDINKtAJt4iljjdiw==" + }, + "ErrorProne.NET.CoreAnalyzers": { + "type": "Direct", + "requested": "[0.1.2, )", + "resolved": "0.1.2", + "contentHash": "RQdzUtFVhwLwisP2Du7Ugm7ldwAzc+QJrlZWNIwHXcgq4b5fLwZgdN1203RdYiHS8OOALophC6yWekxu3UgN2g==" + }, + "Fody": { + "type": "Direct", + "requested": "[6.6.0, 6.6.0]", + "resolved": "6.6.0", + "contentHash": "NWWM8KiR9DGiAi47q9px9oI27xYBiM5KXxSnI4R5mz2/rG8LIcXJfw5zDLLH1xOgzqRNJgc8KTPQPoiQCidYUw==" + }, + "ILMerge.Fody": { + "type": "Direct", + "requested": "[1.22.0, 1.22.0]", + "resolved": "1.22.0", + "contentHash": "VCWQM8q7wZwHMgksBsFfbImRUmlgn7E6EKkrnUV86/keqBvMTjhlA7mBYtz6Dace8XsJYufYJvRP25uur5W5WA==", + "dependencies": { + "Fody": "6.3.0" + } + }, + "BepInEx.BaseLib": { + "type": "Transitive", + "resolved": "5.4.20", + "contentHash": "0bXgYxbCEN2Ixp3kiFEhyw+RASeFQeg/ww+lbMt7if6XMeVS60eg6epNsMA8Jbx57dmNOzNevkKKw8mP8SUMqw==" + }, + "Digitalroot.References.Unity": { + "type": "Transitive", + "resolved": "2022.3.12", + "contentHash": "QgMwg+WAnbvmjxSuL+PKjr+35B0FhO0Thw9ddoSBrfBkYsMSCYAqJ0APsN2AQfXn3zVdJgP7Rw2S41DJfuBxRQ==" + }, + "Digitalroot.Valheim.Common.Json": { + "type": "Transitive", + "resolved": "1.0.34", + "contentHash": "L7xiFHkundjUriPdJeqpy+V65EjaJpIrQu925VV1E1JbvL16jcVDY32Hj5HoREUEe1Tn8VJSYJBU6SJTqha2kw==", + "dependencies": { + "Digitalroot.References.Unity": "2022.3.12", + "Digitalroot.Valheim.Common.References": "0.217.30", + "fastJSON": "2.4.0.4" + } + }, + "fastJSON": { + "type": "Transitive", + "resolved": "2.4.0.4", + "contentHash": "lbxY+miTOvCNbNfOk8HcbmBD9F6wv2dRKZlMjtJBm6rjA5vFKXBYtR6eoIe96HnCHOE1nCJbMsaZDKGNPg5mIA==" + }, + "HarmonyX": { + "type": "Transitive", + "resolved": "2.7.0", + "contentHash": "lec/SkduQspMa3Pi/nM/NSvA84Za8HCCWA8ybdToKiTqnBZa+JC5g6rxoFQCg/1vNuYcvjy77edePZzIEsRmvw==", + "dependencies": { + "MonoMod.RuntimeDetour": "21.12.13.1" + } + }, + "Mono.Cecil": { + "type": "Transitive", + "resolved": "0.11.4", + "contentHash": "IC1h5g0NeJGHIUgzM1P82ld57knhP0IcQfrYITDPXlNpMYGUrsG5TxuaWTjaeqDNQMBDNZkB8L0rBnwsY6JHuQ==" + }, + "MonoMod.RuntimeDetour": { + "type": "Transitive", + "resolved": "21.12.13.1", + "contentHash": "65mB+bHjT6UCGCgO+/pYhpuGPf96rQ1Whwkut/x7cqVIW0DTndDFyWc/3bngzhnY/Y6IYtBMlXsU2ATq+CxpHg==", + "dependencies": { + "Mono.Cecil": "0.11.4", + "MonoMod.Utils": "21.12.13.1" + } + }, + "MonoMod.Utils": { + "type": "Transitive", + "resolved": "21.12.13.1", + "contentHash": "/H+0RMWqx/D1/fSuY5jhY6GFvqhdYdlnI7J3IfL8P6y4nJkoZDxqts6+RxWWOz4pbnJdWnxSjS8XG+Lq6rUi7w==", + "dependencies": { + "Mono.Cecil": "0.11.4" + } + } + } + } +} \ No newline at end of file