├── .clang-format ├── .clangd ├── .github └── workflows │ ├── build.yml │ └── release.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── manifest.json ├── scripts └── after_build.lua ├── src ├── Config.h ├── Features │ ├── Clean.cpp │ ├── CleanTask.cpp │ ├── Cleaner.cpp │ ├── Cleaner.h │ ├── Events.cpp │ ├── Helper.cpp │ ├── UnloadActorClean.cpp │ └── VoteClean.cpp ├── Global.h ├── Language.h ├── MemoryOperators.cpp ├── Mod.cpp ├── Mod.h └── RegisterCommand.cpp ├── tooth.json └── xmake.lua /.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | AccessModifierOffset: -4 3 | AlignAfterOpenBracket: BlockIndent 4 | AlignArrayOfStructures: Left 5 | AlignConsecutiveDeclarations: 6 | Enabled: true 7 | AcrossEmptyLines: false 8 | AcrossComments: false 9 | AlignConsecutiveAssignments: 10 | Enabled: true 11 | AcrossEmptyLines: false 12 | AcrossComments: false 13 | AlignCompound: true 14 | PadOperators: true 15 | AlignConsecutiveMacros: 16 | Enabled: true 17 | AcrossEmptyLines: false 18 | AcrossComments: false 19 | AllowAllParametersOfDeclarationOnNextLine: false 20 | AllowAllArgumentsOnNextLine: false 21 | AlignOperands: AlignAfterOperator 22 | AlignConsecutiveBitFields: 23 | Enabled: true 24 | AcrossEmptyLines: false 25 | AcrossComments: false 26 | AllowShortLambdasOnASingleLine: All 27 | AllowShortBlocksOnASingleLine: Empty 28 | AllowShortIfStatementsOnASingleLine: AllIfsAndElse 29 | AllowShortLoopsOnASingleLine: true 30 | AlwaysBreakAfterDefinitionReturnType: None 31 | AlwaysBreakTemplateDeclarations: 'Yes' 32 | BinPackArguments: false 33 | BinPackParameters: false 34 | BreakBeforeBraces: Custom 35 | BreakBeforeBinaryOperators: NonAssignment 36 | ColumnLimit: 120 37 | CommentPragmas: '^ IWYU pragma:' 38 | ConstructorInitializerIndentWidth: 0 39 | IndentWidth: 4 40 | Language: Cpp 41 | MaxEmptyLinesToKeep: 2 42 | PackConstructorInitializers: CurrentLine 43 | PointerAlignment: Left 44 | TabWidth: 4 45 | UseTab: Never 46 | SortIncludes: CaseSensitive 47 | -------------------------------------------------------------------------------- /.clangd: -------------------------------------------------------------------------------- 1 | Diagnostics: 2 | Suppress: 3 | - "-Wmicrosoft-enum-forward-reference" 4 | - "-Wc++11-narrowing" 5 | - "-Wc++2b-extensions" 6 | - "-Wmicrosoft-cast" 7 | - "-Wcxx20_deducing_this" 8 | - "-Wundefined_internal_type" 9 | - "-Wincomplete_member_access" 10 | - "-Wsizeof_alignof_incomplete_or_sizeless_type" 11 | - "-Wexplicit_spec_non_template" 12 | - "-Wovl_no_viable_function_in_init" 13 | CompileFlags: 14 | Add: 15 | - "-Xclang" 16 | - "-triple=x86_64-windows-msvc" 17 | - "-ferror-limit=0" 18 | - '-D__FUNCTION__="dummy"' 19 | - "-Dnsel_CONFIG_SELECT_EXPECTED=nsel_EXPECTED_NONSTD" 20 | - "-Xclang" 21 | - "-std=c++23" 22 | Remove: 23 | - "-std" -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- 1 | on: 2 | pull_request: 3 | push: 4 | workflow_dispatch: 5 | 6 | jobs: 7 | build: 8 | runs-on: windows-latest 9 | steps: 10 | - name: Checkout repository 11 | uses: actions/checkout@v2 12 | with: 13 | submodules: recursive 14 | 15 | - uses: actions/checkout@v4 16 | 17 | - uses: xmake-io/github-action-setup-xmake@v1 18 | with: 19 | xmake-version: 3.0.0 20 | 21 | - run: | 22 | xmake repo -u 23 | 24 | - run: | 25 | xmake f -a x64 -m release -p windows -v -y 26 | 27 | - run: | 28 | xmake -w -y 29 | 30 | - uses: actions/upload-artifact@v4 31 | with: 32 | name: ${{ github.event.repository.name }}-windows-x64-${{ github.sha }} 33 | path: | 34 | bin/ 35 | -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- 1 | on: 2 | release: 3 | types: 4 | - published 5 | 6 | jobs: 7 | build: 8 | runs-on: windows-latest 9 | steps: 10 | - name: Checkout repository 11 | uses: actions/checkout@v2 12 | with: 13 | submodules: recursive 14 | 15 | - uses: actions/checkout@v4 16 | 17 | - uses: xmake-io/github-action-setup-xmake@v1 18 | with: 19 | xmake-version: 3.0.0 20 | 21 | - run: | 22 | xmake repo -u 23 | 24 | - run: | 25 | xmake f -a x64 -m release -p windows -v -y 26 | 27 | - run: | 28 | xmake -w -y 29 | 30 | - uses: actions/upload-artifact@v4 31 | with: 32 | name: ${{ github.event.repository.name }}-windows-x64-${{ github.sha }} 33 | path: | 34 | bin/ 35 | 36 | upload-to-release: 37 | needs: 38 | - build 39 | permissions: 40 | contents: write 41 | runs-on: ubuntu-latest 42 | steps: 43 | - uses: actions/checkout@v4 44 | 45 | - uses: actions/download-artifact@v4 46 | with: 47 | name: ${{ github.event.repository.name }}-windows-x64-${{ github.sha }} 48 | path: release/ 49 | 50 | - run: | 51 | cp LICENSE README.md release/ 52 | 53 | - name: Archive release 54 | run: | 55 | cd release 56 | zip -r ../${{ github.event.repository.name }}-windows-x64.zip * 57 | cd .. 58 | 59 | - uses: softprops/action-gh-release@v1 60 | with: 61 | append_body: true 62 | files: | 63 | ${{ github.event.repository.name }}-windows-x64.zip 64 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.vscode 2 | /.xmake 3 | /.cache 4 | /bin 5 | /build 6 | /compile_commands.json 7 | /CMakeLists.txt 8 | /.vscode -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "SDK-GMLIB"] 2 | path = SDK-GMLIB 3 | url = https://github.com/GroupMountain/SDK-GMLIB.git 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Cleaner 2 | 服务器实体清理插件 3 | 4 | ## 配置文件 5 | ```jsonc 6 | { 7 | "version": 2, // 配置文件版本(勿动) 8 | "language": "zh_CN", // 语言(目前支持zh_CN和en_US) 9 | "Basic": { // 基础配置 10 | "Command": "cleaner", // 清理命令 11 | "Notice1": 20, // 提示1发送时间(剩余时间) (单位:秒) 12 | "Notice2": 5, // 提示2发送时间(剩余时间) (单位:秒) 13 | "ConsoleLog": true, // 是否在控制台输出清理日志 14 | "SendBroadcast": true, // 是否发送广播 15 | "SendToast": true // 是否发送Toast(屏幕上方) 16 | }, 17 | "IgnoreTags": [ // 忽略的实体标签 18 | "ignore", 19 | "不清理" 20 | ], 21 | "AutoCleanCount": { // 自动清理数量配置 22 | "Enabled": true, // 是否启用 23 | "TriggerCount": 900 // 触发清理最低数量 24 | }, 25 | "AutoCleanTPS": { // 自动清理TPS配置 26 | "Enabled": true, // 是否启用 27 | "TriggerTPS": 15 // 触发清理最低TPS 28 | }, 29 | "ItemDespawn": { // 掉落物自然刷新配置 30 | "Enabled": true, // 是否启用 31 | "DespawnTime": 6000, // 刷新时间(单位:tick) 32 | "WhiteList": [ // 白名单 33 | "minecraft:elytra" 34 | ] 35 | }, 36 | "CleanInanimate": { // 非生物实体清理配置 37 | "Enabled": true, // 是否启用 38 | "Blacklist": [ // 黑名单 39 | "minecraft:xp_orb", 40 | "minecraft:arrow", 41 | "minecraft:fireball", 42 | "minecraft:small_fireball", 43 | "minecraft:wither_skull", 44 | "minecraft:wither_skull_dangerous", 45 | "minecraft:dragon_fireball" 46 | ] 47 | }, 48 | "CleanItem": { // 掉落物清理配置 49 | "Enabled": true, // 是否启用 50 | "ExistTicks": 0, // 安全时间(掉落物存在时间小于这个时间则不会清理) 单位:tick 51 | "Whitelist": [ // 白名单 52 | "minecraft:netherite_helmet", 53 | "minecraft:netherite_sword", 54 | "minecraft:netherite_chestplate", 55 | "minecraft:diamond_helmet", 56 | "minecraft:netherite_leggings", 57 | "minecraft:undyed_shulker_box", 58 | "minecraft:netherite_boots", 59 | "minecraft:shulker_box", 60 | "minecraft:elytra", 61 | "minecraft:dragon_egg", 62 | "minecraft:nether_star", 63 | "minecraft:diamond_sword", 64 | "minecraft:diamond_chestplate", 65 | "minecraft:diamond_boots", 66 | "minecraft:diamond_leggings", 67 | "minecraft:diamond_hoe", 68 | "minecraft:netherite_hoe", 69 | "minecraft:diamond_axe", 70 | "minecraft:netherite_axe", 71 | "minecraft:netherite_pickaxe", 72 | "minecraft:diamond_pickaxe" 73 | ] 74 | }, 75 | "CleanMobs": { // 生物实体清理配置 76 | "Enabled": true, // 是否启用 77 | "CleanMonstors": true, // 是否清理怪物 78 | "CleanPeacefulMobs": false, // 是否清理和平生物 79 | "EnableAutoExclude": true, // 无用 80 | "BlackList": [ // 黑名单 81 | "minecraft:guardian", 82 | "minecraft:zombie_pigman" 83 | ], 84 | "Whitelist": [ // 白名单 85 | "minecraft:ender_dragon", 86 | "minecraft:shulker", 87 | "minecraft:wither", 88 | "minecraft:elder_guardian", 89 | "minecraft:piglin_brute", 90 | "minecraft:ender_pearl", 91 | "minecraft:phantom" 92 | ] 93 | }, 94 | "ScheduleClean": { // 定时清理配置 95 | "Enabled": true, // 是否启用 96 | "CleanInterval": 3600 // 清理间隔 单位:秒 97 | }, 98 | "VoteClean": { // 投票清理配置 99 | "Enabled": true, // 是否启用 100 | "VoteCleanCommand": "voteclean", // 投票清理指令 101 | "Cooldown": 120, // 投票冷却时间 单位:秒 102 | "CheckDelay": 30, // 投票时长 单位:秒 103 | "Percentage": 50 // 投票百分比(大于此值则清理) 104 | }, 105 | "UnloadActorClean": { // 离线实体清理 106 | "Enabled": false, // 是否启用 107 | "CleanList": [ // 清理实体列表 108 | "minecraft:iron_golem", // 铁傀儡 109 | "minecraft:zombie_pigman" // 僵尸猪灵 110 | ] 111 | } 112 | } 113 | ``` 114 | 115 | # 开源许可 116 | ## 源代码可用性 117 | - 您可以自由地获取、使用和修改本插件的源代码,无论是个人使用还是商业目的。 118 | ## 修改发布 119 | - 如果您对本插件进行了修改或衍生创作,并打算分发、发布该修改或衍生作品,您必须开源并且以GPL3.0协议下相同的许可证条件进行分发。 120 | ## 版权声明 121 | - 在您分发或发布基于GPL3.0协议的软件时(包括但不限于本插件以及本插件的衍生作品),您必须保留原始版权声明、许可证说明和免责声明。 122 | ## 引用链接 123 | - 如果您在一个作品中使用了本插件或者本插件的源码,您需要提供一个明确的引用链接,指向软件的许可证和源代码。 124 | ## 对整体的影响 125 | - 如果您将基于本插件与其他插件结合使用,或整合成一个单一的插件,那么整个插件都需要遵守GPL3.0协议进行开源。 126 | -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "${modName}", 3 | "entry": "${modFile}", 4 | "type": "native", 5 | "version": "0.15.1", 6 | "author": "GroupMountain", 7 | "description": "Clean Entities", 8 | "dependencies": [ 9 | { 10 | "name": "GMLIB" 11 | }, 12 | { 13 | "name": "iListenAttentively" 14 | } 15 | ], 16 | "optionalDependencies": [ 17 | { 18 | "name": "ModAPI" 19 | } 20 | ] 21 | } -------------------------------------------------------------------------------- /scripts/after_build.lua: -------------------------------------------------------------------------------- 1 | function beautify_json(value, indent) 2 | import("core.base.json") 3 | local json_text = "" 4 | local stack = {} 5 | 6 | local function escape_str(s) 7 | return string.gsub(s, '[%c\\"]', function(c) 8 | local replacements = {['\b'] = '\\b', ['\f'] = '\\f', ['\n'] = '\\n', ['\r'] = '\\r', ['\t'] = '\\t', ['"'] = '\\"', ['\\'] = '\\\\'} 9 | return replacements[c] or string.format('\\u%04x', c:byte()) 10 | end) 11 | end 12 | 13 | local function is_null(v) 14 | return v == json.null 15 | end 16 | 17 | local function is_empty_table(t) 18 | if type(t) ~= 'table' then return false end 19 | for _ in pairs(t) do 20 | return false 21 | end 22 | return true 23 | end 24 | 25 | local function is_array(t) 26 | return type(t) == 'table' and json.is_marked_as_array(t) or #t > 0 27 | end 28 | 29 | local function serialize(val, level) 30 | local spaces = string.rep(" ", level * indent) 31 | 32 | if type(val) == "table" and not stack[val] then 33 | if is_empty_table(val) then 34 | json_text = json_text .. (is_array(val) and "[]" or "{}") 35 | return 36 | end 37 | 38 | stack[val] = true 39 | local isArray = is_array(val) 40 | json_text = json_text .. (isArray and "[\n" or "{\n") 41 | 42 | local keys = isArray and {} or {} 43 | for k in pairs(val) do 44 | table.insert(keys, k) 45 | end 46 | if not isArray then 47 | table.sort(keys) 48 | end 49 | 50 | for _, k in ipairs(keys) do 51 | local v = val[k] 52 | json_text = json_text .. spaces .. (isArray and "" or '"' .. escape_str(tostring(k)) .. '": ') 53 | serialize(v, level + 1) 54 | json_text = json_text .. ",\n" 55 | end 56 | 57 | json_text = string.sub(json_text, 1, -3) .. "\n" .. string.rep(" ", (level - 1) * indent) .. (isArray and "]" or "}") 58 | stack[val] = nil 59 | elseif type(val) == "string" then 60 | json_text = json_text .. '"' .. escape_str(val) .. '"' 61 | elseif type(val) == "number" then 62 | if val % 1 == 0 then 63 | json_text = json_text .. tostring(math.floor(val)) 64 | else 65 | json_text = json_text .. tostring(val) 66 | end 67 | elseif type(val) == "boolean" then 68 | json_text = json_text .. tostring(val) 69 | elseif is_null(val) then 70 | json_text = json_text .. "null" 71 | else 72 | error("Invalid value type: " .. type(val)) 73 | end 74 | end 75 | serialize(value, 1) 76 | return json_text 77 | end 78 | 79 | function string_formatter(str, variables) 80 | return str:gsub("%${(.-)}", function(var) 81 | return variables[var] or "${" .. var .. "}" 82 | end) 83 | end 84 | 85 | function pack_mod(target,mod_define) 86 | import("lib.detect.find_file") 87 | 88 | local manifest_path = find_file("manifest.json", os.projectdir()) 89 | if manifest_path then 90 | local manifest = io.readfile(manifest_path) 91 | local bindir = path.join(os.projectdir(), "bin") 92 | local outputdir = path.join(bindir, mod_define.modName) 93 | local targetfile = path.join(outputdir, mod_define.modFile) 94 | local pdbfile = path.join(outputdir, path.basename(mod_define.modFile) .. ".pdb") 95 | local manifestfile = path.join(outputdir, "manifest.json") 96 | local oritargetfile = target:targetfile() 97 | local oripdbfile = path.join(path.directory(oritargetfile), path.basename(oritargetfile) .. ".pdb") 98 | 99 | os.mkdir(outputdir) 100 | os.cp(oritargetfile, targetfile) 101 | if os.isfile(oripdbfile) then 102 | os.cp(oripdbfile, pdbfile) 103 | end 104 | 105 | formattedmanifest = string_formatter(manifest, mod_define) 106 | io.writefile(manifestfile,formattedmanifest) 107 | cprint("${bright green}[Mod Packer]: ${reset}mod already generated to " .. outputdir) 108 | else 109 | cprint("${bright yellow}warn: ${reset}not found manifest.json in root dir!") 110 | end 111 | end 112 | 113 | 114 | return { 115 | pack_mod = pack_mod, 116 | beautify_json = beautify_json, 117 | string_formatter = string_formatter 118 | } 119 | -------------------------------------------------------------------------------- /src/Config.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | #include 4 | 5 | namespace Cleaner { 6 | struct Config { 7 | int version = 2; 8 | 9 | std::string language = "zh_CN"; 10 | 11 | struct basic { 12 | std::string Command = "cleaner"; 13 | int Notice1 = 20; 14 | int Notice2 = 5; 15 | bool ConsoleLog = true; 16 | bool SendBroadcast = true; 17 | bool SendToast = true; 18 | } Basic; 19 | 20 | std::vector IgnoreTags = {"ignore", "不清理"}; 21 | 22 | struct auto_clean_count { 23 | bool Enabled = true; 24 | int TriggerCount = 900; 25 | } AutoCleanCount; 26 | 27 | struct auto_clean_tps { 28 | bool Enabled = true; 29 | int TriggerTPS = 15; 30 | } AutoCleanTPS; 31 | 32 | struct item_despawn { 33 | bool Enabled = true; 34 | int DespawnTime = 6000; 35 | std::vector WhiteList = {"minecraft:elytra"}; 36 | } ItemDespawn; 37 | 38 | struct Clean_Inanimate { 39 | bool Enabled = true; 40 | std::vector Blacklist = { 41 | "minecraft:xp_orb", 42 | "minecraft:arrow", 43 | "minecraft:fireball", 44 | "minecraft:small_fireball", 45 | "minecraft:wither_skull", 46 | "minecraft:wither_skull_dangerous", 47 | "minecraft:dragon_fireball" 48 | }; 49 | } CleanInanimate; 50 | 51 | struct Clean_Item { 52 | bool Enabled = true; 53 | int ExistTicks = 0; 54 | std::vector Whitelist = { 55 | "minecraft:netherite_helmet", "minecraft:netherite_sword", "minecraft:netherite_chestplate", 56 | "minecraft:diamond_helmet", "minecraft:netherite_leggings", "minecraft:undyed_shulker_box", 57 | "minecraft:netherite_boots", "minecraft:shulker_box", "minecraft:elytra", 58 | "minecraft:dragon_egg", "minecraft:nether_star", "minecraft:diamond_sword", 59 | "minecraft:diamond_chestplate", "minecraft:diamond_boots", "minecraft:diamond_leggings", 60 | "minecraft:diamond_hoe", "minecraft:netherite_hoe", "minecraft:diamond_axe", 61 | "minecraft:netherite_axe", "minecraft:netherite_pickaxe", "minecraft:diamond_pickaxe" 62 | }; 63 | } CleanItem; 64 | 65 | struct Clean_Mobs { 66 | bool Enabled = true; 67 | bool CleanMonstors = true; 68 | bool CleanPeacefulMobs = false; 69 | bool EnableAutoExclude = true; 70 | std::vector BlackList = {"minecraft:guardian", "minecraft:zombie_pigman"}; 71 | std::vector Whitelist = { 72 | "minecraft:ender_dragon", 73 | "minecraft:shulker", 74 | "minecraft:wither", 75 | "minecraft:elder_guardian", 76 | "minecraft:piglin_brute", 77 | "minecraft:ender_pearl", 78 | "minecraft:phantom" 79 | }; 80 | } CleanMobs; 81 | 82 | struct Schedule_Clean { 83 | bool Enabled = true; 84 | int CleanInterval = 3600; 85 | } ScheduleClean; 86 | 87 | struct Vote_Clean { 88 | bool Enabled = true; 89 | std::string VoteCleanCommand = "voteclean"; 90 | int Cooldown = 120; 91 | int CheckDelay = 30; 92 | int Percentage = 50; 93 | } VoteClean; 94 | 95 | struct Unload_Actor_Clean { 96 | bool Enabled = false; 97 | std::vector CleanList = {"minecraft:iron_golem", "minecraft:zombie_pigman"}; 98 | } UnloadActorClean; 99 | }; 100 | } // namespace Cleaner -------------------------------------------------------------------------------- /src/Features/Clean.cpp: -------------------------------------------------------------------------------- 1 | #include "Cleaner.h" 2 | #include "mc/world/actor/provider/SynchedActorDataAccess.h" 3 | #include "gmlib/mc/world/actor/Actor.h" 4 | namespace Cleaner { 5 | 6 | bool isMatch(std::string& A, std::string& B) { 7 | // 如果B是正则表达式 8 | if (B.find_first_of(".*+?()[]{}|^$") != std::string::npos) { 9 | try { 10 | std::regex regex(B); 11 | return std::regex_match(A, regex); 12 | } catch (...) { 13 | return false; 14 | } 15 | } 16 | return (A == B); 17 | } 18 | 19 | bool isTrust(Actor* ac) { return SynchedActorDataAccess::getActorFlag(ac->getEntityContext(), ::ActorFlags::Trusting); } 20 | 21 | bool shouldIgnore(gmlib::GMActor* ac) { 22 | if (ac->hasCategory(::ActorCategory::Mob) || ac->hasCategory(::ActorCategory::Item)) { 23 | if (ac->isTame() || isTrust(ac) || ac->getNameTag() != "" || ac->hasTag("cleaner:ignore")) { 24 | return true; 25 | } 26 | } 27 | return false; 28 | } 29 | 30 | bool ShouldClean(Actor* actor) { 31 | // Players 32 | auto& config = Cleaner::Entry::getInstance().getConfig(); 33 | auto en = (gmlib::GMActor*)actor; 34 | if (en->isPlayer() || shouldIgnore(en)) { 35 | return false; 36 | } 37 | auto type = en->getTypeName(); 38 | for (auto& tag : config.IgnoreTags) { 39 | if (en->hasTag(tag)) { 40 | return false; 41 | } 42 | } 43 | // Items 44 | if (en->hasCategory(::ActorCategory::Item)) { 45 | if (config.CleanItem.Enabled) { 46 | auto itac = (ItemActor*)en; 47 | if (itac->age() <= config.CleanItem.ExistTicks) { 48 | return false; 49 | } 50 | auto itemType = itac->item().getTypeName(); 51 | auto whitelist = config.CleanItem.Whitelist; 52 | for (auto& key : whitelist) { 53 | if (isMatch(itemType, key)) { 54 | return false; 55 | } 56 | } 57 | return true; 58 | } 59 | return false; 60 | } 61 | // Mobs 62 | else if (en->hasCategory(::ActorCategory::Mob)) { 63 | if (config.CleanMobs.Enabled) { 64 | auto blacklist = config.CleanMobs.BlackList; 65 | for (auto& key : blacklist) { 66 | if (isMatch(type, key)) { 67 | return true; 68 | } 69 | } 70 | auto whitelist = config.CleanMobs.Whitelist; 71 | for (auto& key : whitelist) { 72 | if (isMatch(type, key)) { 73 | return false; 74 | } 75 | } 76 | if (config.CleanMobs.CleanMonstors && en->hasCategory(ActorCategory::Monster)) { 77 | return true; 78 | } 79 | if (config.CleanMobs.CleanPeacefulMobs) { 80 | return true; 81 | } 82 | } 83 | return false; 84 | } 85 | // Others 86 | else { 87 | if (config.CleanInanimate.Enabled) { 88 | auto blacklist = config.CleanInanimate.Blacklist; 89 | for (auto& key : blacklist) { 90 | if (isMatch(type, key)) { 91 | return true; 92 | } 93 | } 94 | } 95 | return false; 96 | } 97 | } 98 | 99 | int ExecuteClean() { 100 | auto level = ll::service::getLevel(); 101 | int clean_count = 0; 102 | auto all_entities = level->getRuntimeActorList(); 103 | for (auto entity : all_entities) { 104 | if (ShouldClean(entity)) { 105 | entity->despawn(); 106 | clean_count++; 107 | } 108 | } 109 | return clean_count; 110 | } 111 | 112 | int CountEntities() { 113 | auto level = ll::service::getLevel(); 114 | int clean_count = 0; 115 | auto all_entities = level->getRuntimeActorList(); 116 | for (auto* entity : all_entities) { 117 | if (ShouldClean(entity)) { 118 | clean_count++; 119 | } 120 | } 121 | return clean_count; 122 | } 123 | 124 | } // namespace Cleaner 125 | -------------------------------------------------------------------------------- /src/Features/CleanTask.cpp: -------------------------------------------------------------------------------- 1 | #include "Cleaner.h" 2 | #include 3 | #include "gmlib/mc/world/Level.h" 4 | #include "gmlib/gm/data/TpsStatus.h" 5 | namespace Cleaner { 6 | 7 | static std::shared_ptr mAutoCleanTask = std::make_shared(false); 8 | static std::shared_ptr mCleanTaskCount = std::make_shared(false); 9 | static std::shared_ptr mCleanTaskTPS = std::make_shared(false); 10 | 11 | bool auto_clean_triggerred = false; 12 | 13 | void CleanTask() { 14 | auto& config = Cleaner::Entry::getInstance().getConfig(); 15 | auto time = config.Basic.Notice1; 16 | auto announce_time = config.Basic.Notice2; 17 | std::chrono::seconds time_1(time); 18 | std::chrono::seconds time_2(time - announce_time); 19 | if (config.Basic.ConsoleLog) { 20 | ll::io::LoggerRegistry::getInstance().getOrCreate("Cleaner")->info( 21 | tr("cleaner.output.count1", {S(time_1.count())}) 22 | ); 23 | } 24 | if (config.Basic.SendBroadcast) { 25 | Helper::broadcastMessage(tr("cleaner.output.count1", {S(time_1.count())})); 26 | } 27 | if (config.Basic.SendToast) { 28 | Helper::broadcastToast(tr("cleaner.output.count2", {S(announce_time)})); 29 | } 30 | ll::coro::keepThis([announce_time, &config, time_2]() -> ll::coro::CoroTask<> { 31 | co_await time_2; 32 | if (config.Basic.ConsoleLog) { 33 | ll::io::LoggerRegistry::getInstance().getOrCreate("Cleaner")->info( 34 | tr("cleaner.output.count2", {S(announce_time)}) 35 | ); 36 | } 37 | if (config.Basic.SendBroadcast) { 38 | Helper::broadcastMessage(tr("cleaner.output.count2", {S(announce_time)})); 39 | } 40 | if (config.Basic.SendToast) { 41 | Helper::broadcastToast(tr("cleaner.output.count2", {S(announce_time)})); 42 | } 43 | co_return; 44 | }).launch(ll::thread::ServerThreadExecutor::getDefault()); 45 | ll::coro::keepThis([announce_time, &config, time_1]() -> ll::coro::CoroTask<> { 46 | co_await time_1; 47 | auto count = ExecuteClean(); 48 | if (config.Basic.ConsoleLog) { 49 | ll::io::LoggerRegistry::getInstance().getOrCreate("Cleaner")->info(tr("cleaner.output.finish", {S(count)})); 50 | } 51 | if (config.Basic.SendBroadcast) { 52 | Helper::broadcastMessage(tr("cleaner.output.finish", {S(count)})); 53 | } 54 | if (config.Basic.SendToast) { 55 | Helper::broadcastToast(tr("cleaner.output.finish", {S(count)})); 56 | } 57 | auto_clean_triggerred = false; 58 | co_return; 59 | }).launch(ll::thread::ServerThreadExecutor::getDefault()); 60 | } 61 | 62 | void AutoCleanTask(int seconds) { 63 | std::chrono::seconds time(seconds); 64 | *mAutoCleanTask = true; 65 | ll::coro::keepThis([time]() -> ll::coro::CoroTask<> { 66 | while (true) { 67 | co_await time; 68 | if (*mAutoCleanTask == false) co_return; 69 | CleanTask(); 70 | } 71 | co_return; 72 | }).launch(ll::thread::ServerThreadExecutor::getDefault()); 73 | } 74 | 75 | void CleanTaskCount(int max_entities) { 76 | auto& config = Cleaner::Entry::getInstance().getConfig(); 77 | *mCleanTaskCount = true; 78 | ll::coro::keepThis([max_entities, &config]() -> ll::coro::CoroTask<> { 79 | while (true) { 80 | co_await 10s; 81 | if (*mCleanTaskCount == false) co_return; 82 | auto count = CountEntities(); 83 | if (auto_clean_triggerred == false) { 84 | if (count >= max_entities) { 85 | auto_clean_triggerred = true; 86 | if (config.Basic.ConsoleLog) { 87 | ll::io::LoggerRegistry::getInstance().getOrCreate("Cleaner")->warn( 88 | tr("cleaner.output.triggerAutoCleanCount", {S(count)}) 89 | ); 90 | } 91 | if (config.Basic.SendBroadcast) { 92 | Helper::broadcastMessage(tr("cleaner.output.triggerAutoCleanCount", {S(count)})); 93 | } 94 | if (config.Basic.SendToast) { 95 | Helper::broadcastToast(tr("cleaner.output.triggerAutoCleanCount", {S(count)})); 96 | } 97 | CleanTask(); 98 | } 99 | } 100 | } 101 | co_return; 102 | }).launch(ll::thread::ServerThreadExecutor::getDefault()); 103 | } 104 | 105 | void CleanTaskTPS(float min_tps) { 106 | auto& config = Cleaner::Entry::getInstance().getConfig(); 107 | *mCleanTaskTPS = true; 108 | ll::coro::keepThis([min_tps, &config]() -> ll::coro::CoroTask<> { 109 | while (true) { 110 | co_await 10s; 111 | if (*mCleanTaskTPS == false) co_return; 112 | if (auto_clean_triggerred == false) { 113 | if (gmlib::TpsStatus::getInstance().getLevelAverageTps() <= min_tps) { 114 | auto_clean_triggerred = true; 115 | auto mspt = S(gmlib::TpsStatus::getInstance().getLevelAverageTps()); 116 | if (config.Basic.ConsoleLog) { 117 | ll::io::LoggerRegistry::getInstance().getOrCreate("Cleaner")->warn( 118 | tr("cleaner.output.triggerAutoCleanTps", {mspt}) 119 | ); 120 | } 121 | if (config.Basic.SendBroadcast) { 122 | Helper::broadcastMessage(tr("cleaner.output.triggerAutoCleanTps", {mspt})); 123 | } 124 | if (config.Basic.SendToast) { 125 | Helper::broadcastToast(tr("cleaner.output.triggerAutoCleanTps", {mspt})); 126 | } 127 | CleanTask(); 128 | } 129 | } 130 | } 131 | co_return; 132 | }).launch(ll::thread::ServerThreadExecutor::getDefault()); 133 | } 134 | 135 | void stopAllTasks() { 136 | if (!mCleanTaskCount) { 137 | *mCleanTaskTPS = false; 138 | } 139 | if (mCleanTaskCount) { 140 | *mCleanTaskCount = false; 141 | } 142 | if (mAutoCleanTask) { 143 | *mAutoCleanTask = false; 144 | } 145 | } 146 | } // namespace Cleaner 147 | -------------------------------------------------------------------------------- /src/Features/Cleaner.cpp: -------------------------------------------------------------------------------- 1 | #include "Cleaner.h" 2 | 3 | namespace Cleaner { 4 | 5 | void loadCleaner() { 6 | auto& config = Cleaner::Entry::getInstance().getConfig(); 7 | if(config.UnloadActorClean.Enabled){ 8 | UnloadActorClean::cleanUnloadActor(); 9 | } 10 | if (config.ScheduleClean.Enabled) { 11 | Cleaner::AutoCleanTask(config.ScheduleClean.CleanInterval); 12 | } 13 | if (config.AutoCleanCount.Enabled) { 14 | Cleaner::CleanTaskCount(config.AutoCleanCount.TriggerCount); 15 | } 16 | if (config.AutoCleanTPS.Enabled) { 17 | Cleaner::CleanTaskTPS(config.AutoCleanTPS.TriggerTPS); 18 | } 19 | } 20 | 21 | void unloadCleaner() { stopAllTasks(); } 22 | 23 | void reloadCleaner() { 24 | Cleaner::Entry::getInstance().disable(); 25 | Cleaner::Entry::getInstance().enable(); 26 | } 27 | 28 | } // namespace Cleaner -------------------------------------------------------------------------------- /src/Features/Cleaner.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "Global.h" 3 | 4 | using namespace ll::chrono_literals; 5 | 6 | namespace Cleaner { 7 | 8 | extern int ExecuteClean(); 9 | extern int CountEntities(); 10 | 11 | extern void AutoCleanTask(int seconds); 12 | extern void CleanTaskCount(int max_entities); 13 | extern void CleanTaskTPS(float min_tps); 14 | extern void ListenEvents(); 15 | extern void stopAllTasks(); 16 | extern void CleanTask(); 17 | extern void reloadCleaner(); 18 | extern void loadCleaner(); 19 | extern void unloadCleaner(); 20 | 21 | extern bool isMatch(std::string& A, std::string& B); 22 | 23 | } // namespace Cleaner 24 | 25 | namespace VoteClean { 26 | 27 | extern void voteCommandExecute(Player* pl); 28 | 29 | } 30 | 31 | namespace UnloadActorClean { 32 | 33 | extern void cleanUnloadActor(); 34 | 35 | } -------------------------------------------------------------------------------- /src/Features/Events.cpp: -------------------------------------------------------------------------------- 1 | #include "Cleaner.h" 2 | #include "gmlib/mc/world/Level.h" 3 | #include "gmlib/mc/world/actor/Player.h" 4 | namespace Cleaner { 5 | void setShouldIgnore(gmlib::GMActor* ac) { ac->addTag("cleaner:ignore"); } 6 | 7 | void ListenEvents() { 8 | auto& eventBus = ll::event::EventBus::getInstance(); 9 | auto& config = Cleaner::Entry::getInstance().getConfig(); 10 | // ItemSpawnEvent 11 | eventBus.emplaceListener([&config](ila::mc::SpawnItemActorAfterEvent& event) { 12 | auto& item = event.itemActor(); 13 | if (event.spawner()) { 14 | auto pl = (gmlib::GMPlayer*)event.spawner(); 15 | if (pl->isPlayer() && !pl->isAlive()) { // Death Drop 16 | auto ac = (gmlib::GMActor*)&item; 17 | setShouldIgnore(ac); 18 | return; 19 | } 20 | } 21 | if (config.ItemDespawn.Enabled) { 22 | // item.lifeTime() = config.ItemDespawn.DespawnTime; 23 | auto list = config.ItemDespawn.WhiteList; 24 | auto type = item.item().getTypeName(); 25 | for (auto& key : list) { 26 | if (isMatch(type, key)) { 27 | return; 28 | } 29 | } 30 | item.lifeTime() = config.ItemDespawn.DespawnTime; 31 | } 32 | }); 33 | // MobTakeItemEvent 34 | eventBus.emplaceListener([](ila::mc::ActorPickupItemAfterEvent& event) { 35 | auto mob = (gmlib::GMActor*)&event.self(); 36 | setShouldIgnore(mob); 37 | }); 38 | } 39 | 40 | } // namespace Cleaner -------------------------------------------------------------------------------- /src/Features/Helper.cpp: -------------------------------------------------------------------------------- 1 | #include "Global.h" 2 | #include "gmlib/mc/world/Level.h" 3 | namespace Helper { 4 | 5 | void broadcastMessage(std::string_view msg) { 6 | gmlib::GMLevel::getInstance()->broadcast(tr("cleaner.info.prefix") + std::string(msg)); 7 | } 8 | 9 | void broadcastToast(std::string_view msg) { 10 | gmlib::GMLevel::getInstance()->broadcastToast(tr("cleaner.info.prefix"), msg); 11 | } 12 | 13 | } // namespace Helper -------------------------------------------------------------------------------- /src/Features/UnloadActorClean.cpp: -------------------------------------------------------------------------------- 1 | #include "Cleaner.h" 2 | #include "Global.h" 3 | #include "gmlib/mc/world/actor/UnloadedActor.h" 4 | 5 | namespace UnloadActorClean { 6 | void cleanUnloadActor() { 7 | auto& config = Cleaner::Entry::getInstance().getConfig(); 8 | gmlib::UnloadedActor::foreachUnloadedActor( 9 | [config](gmlib::UnloadedActor& actor) -> bool { 10 | for (auto& actorname : config.UnloadActorClean.CleanList) { 11 | if (actor.getTypeName() == actorname) { 12 | actor.remove(); 13 | } 14 | } 15 | return true; 16 | } 17 | ); 18 | } 19 | } // namespace UnloadActorClean -------------------------------------------------------------------------------- /src/Features/VoteClean.cpp: -------------------------------------------------------------------------------- 1 | #include "Cleaner.h" 2 | #include "Global.h" 3 | 4 | namespace VoteClean { 5 | 6 | bool hasVote = false; 7 | bool canVote = true; 8 | int playerCount = 0; 9 | 10 | std::unordered_map voteList; 11 | 12 | int getPlayerCount() { 13 | int result = 0; 14 | ll::service::getLevel()->forEachPlayer([&](Player& pl) -> bool { 15 | if (!pl.isSimulatedPlayer()) { 16 | result++; 17 | } 18 | return true; 19 | }); 20 | return result; 21 | } 22 | 23 | void sendVoteForm(Player* pl) { 24 | auto fm = ll::form::ModalForm( 25 | tr("cleaner.vote.title"), 26 | tr("cleaner.vote.subtitle", {pl->getRealName()}), 27 | tr("cleaner.vote.ok"), 28 | tr("cleaner.vote.no") 29 | ); 30 | ll::service::getLevel()->forEachPlayer([&](Player& pl) -> bool { 31 | fm.sendTo(pl, [](Player& player, ll::form::ModalFormResult result, ll::form::FormCancelReason reason) { 32 | if (result.has_value()) { 33 | switch (result.value()) { 34 | case ll::form::ModalFormSelectedButton::Upper: { 35 | voteList[player.getUuid()] = true; 36 | player.sendMessage(tr("cleaner.vote.accept")); 37 | return; 38 | } 39 | case ll::form::ModalFormSelectedButton::Lower: { 40 | voteList[player.getUuid()] = false; 41 | player.sendMessage(tr("cleaner.vote.deny")); 42 | return; 43 | } 44 | default: 45 | return; 46 | } 47 | } 48 | }); 49 | return true; 50 | }); 51 | } 52 | 53 | void checkVote() { 54 | auto& config = Cleaner::Entry::getInstance().getConfig(); 55 | float percentage = config.VoteClean.Percentage / 100.0f; 56 | int voteCount = 0; 57 | for (auto& key : voteList) { 58 | if (key.second == true) { 59 | voteCount++; 60 | } 61 | } 62 | float result = ((float)voteCount) / ((float)playerCount); 63 | if (result >= percentage) { 64 | if (config.Basic.SendBroadcast) { 65 | Helper::broadcastMessage(tr("cleaner.vote.succeed")); 66 | } 67 | if (config.Basic.SendToast) { 68 | Helper::broadcastToast(tr("cleaner.vote.succeed")); 69 | } 70 | Cleaner::CleanTask(); 71 | } else { 72 | if (config.Basic.SendBroadcast) { 73 | Helper::broadcastMessage(tr("cleaner.vote.failed")); 74 | } 75 | if (config.Basic.SendToast) { 76 | Helper::broadcastToast(tr("cleaner.vote.failed")); 77 | } 78 | } 79 | hasVote = false; 80 | playerCount = 0; 81 | } 82 | 83 | void voteClean(Player* pl) { 84 | auto& config = Cleaner::Entry::getInstance().getConfig(); 85 | voteList.clear(); 86 | canVote = false; 87 | hasVote = true; 88 | playerCount = getPlayerCount(); 89 | if (config.Basic.SendBroadcast) { 90 | Helper::broadcastMessage(tr("cleaner.vote.voteMessage", {pl->getRealName()})); 91 | } 92 | if (config.Basic.SendToast) { 93 | Helper::broadcastToast(tr("cleaner.vote.voteMessage", {pl->getRealName()})); 94 | } 95 | sendVoteForm(pl); 96 | ll::coro::keepThis([&config]() -> ll::coro::CoroTask<> { 97 | co_await std::chrono::seconds(config.VoteClean.Cooldown); 98 | canVote = true; 99 | co_return; 100 | }).launch(ll::thread::ServerThreadExecutor::getDefault()); 101 | ll::coro::keepThis([&config]() -> ll::coro::CoroTask<> { 102 | co_await std::chrono::seconds(config.VoteClean.CheckDelay); 103 | checkVote(); 104 | co_return; 105 | }).launch(ll::thread::ServerThreadExecutor::getDefault()); 106 | } 107 | 108 | void confirmForm(Player* pl) { 109 | auto fm = ll::form::ModalForm( 110 | tr("cleaner.vote.title"), 111 | tr("cleaner.vote.confirmTubtitle"), 112 | tr("cleaner.vote.confirmOk"), 113 | tr("cleaner.vote.confirmNo") 114 | ); 115 | fm.sendTo(*pl, [](Player& player, ll::form::ModalFormResult result, ll::form::FormCancelReason reason) { 116 | if (result.has_value()) { 117 | switch (result.value()) { 118 | case ll::form::ModalFormSelectedButton::Upper: { 119 | return voteClean(&player); 120 | } 121 | case ll::form::ModalFormSelectedButton::Lower: { 122 | return player.sendMessage(tr("cleaner.vote.cancel")); 123 | } 124 | default: 125 | return; 126 | } 127 | } 128 | }); 129 | } 130 | 131 | void voteCommandExecute(Player* pl) { 132 | if (!hasVote) { 133 | if (canVote) { 134 | confirmForm(pl); 135 | } else { 136 | pl->sendMessage(tr("cleaner.vote.cooldown")); 137 | } 138 | } else { 139 | if (voteList.count(pl->getUuid())) { 140 | pl->sendMessage(tr("cleaner.vote.voted")); 141 | } else { 142 | voteList[pl->getUuid()] = true; 143 | pl->sendMessage(tr("cleaner.vote.accept")); 144 | } 145 | } 146 | } 147 | 148 | } // namespace VoteClean -------------------------------------------------------------------------------- /src/Global.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | // IWYU pragma: begin_exports 3 | #include "Mod.h" 4 | 5 | #include "gmlib/include_ll.h" 6 | #include "ila/include_all.h" 7 | #include 8 | // IWYU pragma: end_exports 9 | 10 | #define S(x) std::to_string(x) 11 | 12 | extern void RegisterCommands(); 13 | 14 | namespace Helper { 15 | extern void broadcastMessage(std::string_view msg); 16 | extern void broadcastToast(std::string_view msg); 17 | } // namespace Helper 18 | 19 | extern std::string tr(std::string const& key, std::vector const& params = {}); -------------------------------------------------------------------------------- /src/Language.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "Global.h" 3 | 4 | std::string en_US = R"( 5 | cleaner.info.prefix=§e§l[Cleaner] §r 6 | cleaner.command.cleaner=Cleaner admin command. 7 | cleaner.command.despawnSuccess=Successfully despawned %1$s entities. 8 | cleaner.command.error.noTarget=No targets matched the selector. 9 | cleaner.command.error.playerOnly=This command can only be executed by players! 10 | cleaner.command.tps.output=Current server real-time TPS %1$s §r, average TPS %2$s. 11 | cleaner.command.mspt.output=Current server MSPT %1$s. 12 | cleaner.command.clean.output=Clean task successfully initiated! 13 | cleaner.command.voteclean=Initiate entity clean vote. 14 | cleaner.command.despawntime=Despawn time for items set to %1$s game ticks. 15 | cleaner.output.count1=The system will automatically clean server entities in %1$s seconds! 16 | cleaner.output.count2=Attention! The system will automatically clean server entities in %1$s seconds! 17 | cleaner.output.finish=Cleaning complete! A total of %1$s entities have been cleaned this time. 18 | cleaner.output.opClean=Admin has enabled server entity cleaning. 19 | cleaner.output.reload=Cleaner mod reloaded. Some configurations may require a server restart to take effect. 20 | cleaner.output.triggerAutoCleanCount=Too many server entities detected! There are %1$s cleanable entities currently on the server. Auto-clean program has been activated. 21 | cleaner.output.triggerAutoCleanTps=Low TPS detected! Server average TPS %1$s\nClean program has been initiated. 22 | cleaner.vote.cooldown=Vote cleaning cooldown... 23 | cleaner.vote.cancel=Vote canceled! 24 | cleaner.vote.confirmNo=Think again 25 | cleaner.vote.confirmOk=Initiate vote 26 | cleaner.vote.confirmTubtitle=Do you want to initiate a clean vote? 27 | cleaner.vote.accept=You have agreed to entity cleaning. 28 | cleaner.vote.deny=You have declined entity cleaning. 29 | cleaner.vote.no=Deny 30 | cleaner.vote.ok=Agree 31 | cleaner.vote.subtitle=%1$s lunched a clean vote.\n\n Do you agree to clean server entities now? 32 | cleaner.vote.timeout=Vote has expired! 33 | cleaner.vote.succeed=Vote cleaning successful! 34 | cleaner.vote.failed=Vote cleaning did not passed! 35 | cleaner.vote.title=Vote Cleaning 36 | cleaner.vote.voted=You have been voted! 37 | cleaner.vote.voteMessage=%1$s lunched a clean vote. If you agree cleaning entities but did not received a form, please type command /voteclean to vote. 38 | )"; 39 | 40 | std::string zh_CN = R"( 41 | cleaner.info.prefix=§e§l[Cleaner] §r 42 | cleaner.command.cleaner=Cleaner管理员命令。 43 | cleaner.command.despawnSuccess=已成功清除了 %1$s 个实体 44 | cleaner.command.error.noTarget=没有与选择器匹配的目标 45 | cleaner.command.error.playerOnly=该命令只能由玩家执行! 46 | cleaner.command.tps.output=当前服务器实时TPS %1$s §r,平均TPS %2$s 47 | cleaner.command.mspt.output=当前服务器实MSPT %1$s 48 | cleaner.command.clean.output=已成功启动清理任务! 49 | cleaner.command.voteclean=发起实体清理投票。 50 | cleaner.command.despawntime=已成功将物品消失时间设置为 %1$s 游戏刻 51 | cleaner.output.count1=系统将在 %1$s 秒后自动清理服务器实体! 52 | cleaner.output.count2=请注意!系统将在 %1$s 秒后自动清理服务器实体! 53 | cleaner.output.finish=清理完成!本次总共清理了 %1$s 个实体。 54 | cleaner.output.opClean=管理员启用了服务器实体清理。 55 | cleaner.output.reload=已重载Cleaner插件,部分配置可能需要重启服务器才能生效。 56 | cleaner.output.triggerAutoCleanCount=检测到服务器实体过多!!当前服务器存在 %1$s 个可清理实体,已启动自动清理程序。 57 | cleaner.output.triggerAutoCleanTps=当前服务器TPS过低!!服务器平均TPS %1$s\n系统已启动清理程序。 58 | cleaner.vote.cooldown=投票清理正在冷却... 59 | cleaner.vote.cancel=投票已取消! 60 | cleaner.vote.confirmNo=我再想想 61 | cleaner.vote.confirmOk=发起投票 62 | cleaner.vote.confirmTubtitle=你是否要发起投票清理? 63 | cleaner.vote.accept=你已同意实体清理。 64 | cleaner.vote.deny=你已拒绝实体清理。 65 | cleaner.vote.no=拒绝 66 | cleaner.vote.ok=同意 67 | cleaner.vote.subtitle=%1$s 发起了服务器实体清理投票!\n\n你是否同意现在清理服务器实体? 68 | cleaner.vote.timeout=投票已过期! 69 | cleaner.vote.succeed=投票清理成功! 70 | cleaner.vote.failed=投票清理未通过。 71 | cleaner.vote.title=投票清理 72 | cleaner.vote.voted=你已经投过票了! 73 | cleaner.vote.voteMessage=%1$s 发起了服务器实体清理投票!如果同意清理但是未收到表单,请输入命令 /voteclean 投票。拒绝清理请忽略此信息。 74 | )"; -------------------------------------------------------------------------------- /src/MemoryOperators.cpp: -------------------------------------------------------------------------------- 1 | // This file will make your mod use LeviLamina's memory operators by default. 2 | // This improves the memory management of your mod and is recommended to use. 3 | // You should not modify anything in this file. 4 | 5 | #define LL_MEMORY_OPERATORS 6 | 7 | #include 8 | -------------------------------------------------------------------------------- /src/Mod.cpp: -------------------------------------------------------------------------------- 1 | #include "Mod.h" 2 | #include "Features/Cleaner.h" 3 | #include "Global.h" 4 | #include "Language.h" 5 | #include "ll/api/utils/ErrorUtils.h" 6 | #include "gmlib/mc/locale/I18nAPI.h" 7 | #include "gmlib/gm/data/TpsStatus.h" 8 | 9 | namespace Cleaner { 10 | 11 | Entry& Entry::getInstance() { 12 | static Entry instance; 13 | return instance; 14 | } 15 | 16 | bool Entry::load() { return true; } 17 | 18 | bool Entry::enable() { 19 | (void)gmlib::TpsStatus::getInstance(); 20 | mConfig.emplace(); 21 | try { 22 | ll::config::loadConfig(*mConfig, getSelf().getConfigDir() / "config.json"); 23 | } catch (...) { 24 | ll::error_utils::printCurrentException(getSelf().getLogger()); 25 | } 26 | saveConfig(); 27 | gmlib::I18nAPI::updateOrCreateLanguageFile(getSelf().getLangDir(), "en_US", en_US); 28 | gmlib::I18nAPI::updateOrCreateLanguageFile(getSelf().getLangDir(), "zh_CN", zh_CN); 29 | gmlib::I18nAPI::loadLanguagesFromDirectory(getSelf().getLangDir()); 30 | Cleaner::ListenEvents(); 31 | RegisterCommands(); 32 | Cleaner::loadCleaner(); 33 | getSelf().getLogger().info("Cleaner Loaded!"); 34 | getSelf().getLogger().info("Author: GroupMountain"); 35 | getSelf().getLogger().info("Repository: https://github.com/GroupMountain/Cleaner"); 36 | return true; 37 | } 38 | 39 | bool Entry::disable() { 40 | mConfig.reset(); 41 | Cleaner::unloadCleaner(); 42 | return true; 43 | } 44 | 45 | Config& Entry::getConfig() { return mConfig.value(); } 46 | 47 | void Entry::saveConfig() { ll::config::saveConfig(*mConfig, getSelf().getConfigDir() / "config.json"); } 48 | 49 | } // namespace Cleaner 50 | 51 | LL_REGISTER_MOD(Cleaner::Entry, Cleaner::Entry::getInstance()); 52 | 53 | std::string tr(std::string const& key, std::vector const& params) { 54 | return gmlib::I18nAPI::get(key, params); 55 | } 56 | -------------------------------------------------------------------------------- /src/Mod.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "Config.h" 4 | #include 5 | 6 | namespace Cleaner { 7 | 8 | class Entry { 9 | 10 | public: 11 | static Entry& getInstance(); 12 | 13 | Entry() : mSelf(*ll::mod::NativeMod::current()) {} 14 | 15 | [[nodiscard]] ll::mod::NativeMod& getSelf() const { return mSelf; } 16 | 17 | /// @return True if the mod is loaded successfully. 18 | bool load(); 19 | 20 | /// @return True if the mod is enabled successfully. 21 | bool enable(); 22 | 23 | /// @return True if the mod is disabled successfully. 24 | bool disable(); 25 | 26 | // TODO: Implement this method if you need to unload the mod. 27 | // /// @return True if the mod is unloaded successfully. 28 | // bool unload(); 29 | 30 | Config& getConfig(); 31 | 32 | void saveConfig(); 33 | 34 | private: 35 | ll::mod::NativeMod& mSelf; 36 | std::optional mConfig; 37 | }; 38 | 39 | } // namespace Cleaner 40 | -------------------------------------------------------------------------------- /src/RegisterCommand.cpp: -------------------------------------------------------------------------------- 1 | #include "Features/Cleaner.h" 2 | #include "gmlib/mc/world/Level.h" 3 | #include "gmlib/gm/data/TpsStatus.h" 4 | struct CleanerParam { 5 | enum class Despawn { despawn } despawn; 6 | enum class Action { tps, clean, reload, mspt } action; 7 | enum class DespawnTime { despawntime } despawntime; 8 | int ticks; 9 | CommandSelector entity; 10 | }; 11 | 12 | void RegCleanerCommand() { 13 | auto& config = Cleaner::Entry::getInstance().getConfig(); 14 | auto& cmd = ll::command::CommandRegistrar::getInstance().getOrCreateCommand( 15 | config.Basic.Command, 16 | tr("cleaner.command.cleaner"), 17 | CommandPermissionLevel::GameDirectors 18 | ); 19 | cmd.overload().required("despawn").required("entity").execute( 20 | [&](CommandOrigin const& origin, CommandOutput& output, CleanerParam const& param) { 21 | auto ens = param.entity.results(origin); 22 | if (ens.empty()) { 23 | return output.error(tr("cleaner.command.error.noTarget")); 24 | } 25 | for (auto en : ens) { 26 | en->despawn(); 27 | } 28 | return output.success(tr("cleaner.command.despawnSuccess", {S(ens.size())})); 29 | } 30 | ); 31 | cmd.overload().required("action").execute( 32 | [&](CommandOrigin const& origin, CommandOutput& output, CleanerParam const& param) { 33 | switch (param.action) { 34 | case CleanerParam::Action::clean: { 35 | Cleaner::CleanTask(); 36 | if (Cleaner::Entry::getInstance().getConfig().Basic.ConsoleLog) { 37 | ll::io::LoggerRegistry::getInstance().getOrCreate("Cleaner")->info(tr("cleaner.output.opClean")); 38 | } 39 | if (Cleaner::Entry::getInstance().getConfig().Basic.SendBroadcast) { 40 | Helper::broadcastMessage(tr("cleaner.output.opClean")); 41 | } 42 | if (Cleaner::Entry::getInstance().getConfig().Basic.SendToast) { 43 | Helper::broadcastToast(tr("cleaner.output.opClean")); 44 | } 45 | return output.success(tr("cleaner.command.clean.output")); 46 | } 47 | case CleanerParam::Action::tps: { 48 | return output.success( 49 | tr("cleaner.command.tps.output", 50 | {S(gmlib::GMLevel::getInstance()->getServerCurrentTps()), 51 | S(gmlib::TpsStatus::getInstance().getLevelAverageTps())}) 52 | ); 53 | } 54 | case CleanerParam::Action::mspt: { 55 | return output.success( 56 | tr("cleaner.command.mspt.output", {S(gmlib::GMLevel::getInstance()->getServerMspt())}) 57 | ); 58 | } 59 | case CleanerParam::Action::reload: { 60 | Cleaner::reloadCleaner(); 61 | return output.success(tr("cleaner.output.reload")); 62 | } 63 | } 64 | } 65 | ); 66 | cmd.overload() 67 | .required("despawntime") 68 | .required("ticks") 69 | .execute([&](CommandOrigin const& origin, CommandOutput& output, CleanerParam const& param) { 70 | Cleaner::Entry::getInstance().getConfig().ItemDespawn.DespawnTime = param.ticks; 71 | Cleaner::Entry::getInstance().saveConfig(); 72 | return output.success(tr("cleaner.command.despawntime", {S(param.ticks)})); 73 | }); 74 | }; 75 | 76 | void RegVoteCommand() { 77 | auto& cmd = ll::command::CommandRegistrar::getInstance().getOrCreateCommand( 78 | Cleaner::Entry::getInstance().getConfig().VoteClean.VoteCleanCommand, 79 | tr("cleaner.command.voteclean"), 80 | CommandPermissionLevel::Any 81 | ); 82 | cmd.overload().execute([&](CommandOrigin const& origin, CommandOutput& output) { 83 | if (origin.getOriginType() == CommandOriginType::Player) { 84 | auto pl = (Player*)origin.getEntity(); 85 | return VoteClean::voteCommandExecute(pl); 86 | } 87 | return output.error(tr("cleaner.command.error.playerOnly")); 88 | }); 89 | } 90 | 91 | void RegisterCommands() { 92 | RegCleanerCommand(); 93 | if (Cleaner::Entry::getInstance().getConfig().VoteClean.Enabled) { 94 | RegVoteCommand(); 95 | } 96 | } -------------------------------------------------------------------------------- /tooth.json: -------------------------------------------------------------------------------- 1 | { 2 | "format_version": 3, 3 | "format_uuid": "289f771f-2c9a-4d73-9f3f-8492495a924d", 4 | "tooth": "github.com/GroupMountain/Cleaner", 5 | "version": "0.15.1", 6 | "info": { 7 | "name": "Cleaner", 8 | "description": "A Powerful Entities Cleaning up Mod for BDS", 9 | "tags": [ 10 | "levilamina", 11 | "cleaner", 12 | "gmlib" 13 | ], 14 | "avatar_url": "" 15 | }, 16 | "variants": [ 17 | { 18 | "label": "", 19 | "platform": "win-x64", 20 | "dependencies": { 21 | "github.com/GroupMountain/GMLIB-Release": ">=1.6.0", 22 | "github.com/GroupMountain/ModAPI-Release": ">=0.2.0", 23 | "github.com/MiracleForest/iListenAttentively-Release": ">=0.9.0" 24 | }, 25 | "assets": [ 26 | { 27 | "type": "zip", 28 | "urls": [ 29 | "https://github.com/GroupMountain/Cleaner/releases/download/v{{version}}/Cleaner-windows-x64.zip" 30 | ], 31 | "placements": [ 32 | { 33 | "type": "dir", 34 | "src": "Cleaner/", 35 | "dest": "plugins/Cleaner" 36 | } 37 | ] 38 | } 39 | ], 40 | "preserve_files": [], 41 | "remove_files": [], 42 | "scripts": { 43 | "pre_install": [], 44 | "install": [], 45 | "post_install": [], 46 | "pre_pack": [], 47 | "post_pack": [], 48 | "pre_uninstall": [], 49 | "uninstall": [], 50 | "post_uninstall": [] 51 | } 52 | } 53 | ] 54 | } -------------------------------------------------------------------------------- /xmake.lua: -------------------------------------------------------------------------------- 1 | add_rules("mode.debug", "mode.release", "mode.releasedbg") 2 | 3 | add_repositories("liteldev-repo https://github.com/LiteLDev/xmake-repo.git") 4 | add_repositories("groupmountain-repo https://github.com/GroupMountain/xmake-repo.git") 5 | add_repositories("miracleforest https://github.com/MiracleForest/xmake-repo") 6 | 7 | if not has_config("vs_runtime") then 8 | set_runtimes("MD") 9 | end 10 | 11 | -- Option 1: Use the latest version of LeviLamina released on GitHub. 12 | add_requires("levilamina 1.6.1") 13 | add_requires("levibuildscript 0.5.2") 14 | add_requires("gmlib 1.6.0") 15 | add_requires("ilistenattentively 0.9.0") 16 | 17 | target("Cleaner") -- Change this to your mod name. 18 | add_cxflags( 19 | "/EHa", 20 | "/utf-8" 21 | ) 22 | add_files( 23 | "src/**.cpp" 24 | ) 25 | add_includedirs( 26 | "src" 27 | ) 28 | add_packages( 29 | "levilamina", 30 | "gmlib", 31 | "ilistenattentively" 32 | ) 33 | add_defines( 34 | "NOMINMAX", 35 | "UNICODE", 36 | "_HAS_CXX23=1" 37 | ) 38 | add_rules("@levibuildscript/linkrule") 39 | set_exceptions("none") 40 | set_kind("shared") 41 | set_languages("cxx20") 42 | set_symbols("debug") 43 | 44 | after_build(function (target) 45 | local mod_packer = import("scripts.after_build") 46 | 47 | local mod_define = { 48 | modName = target:name(), 49 | modFile = path.filename(target:targetfile()), 50 | } 51 | 52 | mod_packer.pack_mod(target,mod_define) 53 | end) 54 | --------------------------------------------------------------------------------