├── .gitattributes ├── data ├── minecraft │ └── tags │ │ └── functions │ │ ├── tick.json │ │ └── load.json └── ops │ └── functions │ ├── install.mcfunction │ ├── uninstall.mcfunction │ ├── old_version.mcfunction │ ├── loop.mcfunction │ ├── kicked.mcfunction │ └── message.mcfunction ├── pack.mcmeta ├── releases ├── OnePlayerSleepv3.zip ├── OnePlayerSleepV2.1.zip ├── OnePlayerSleepV2.2.zip ├── OnePlayerSleepV2_4.zip ├── OnePlayerSleepV2_5.zip ├── OnePlayerSleepV3_1.zip └── OnePlayerSleepV2_3-clear.zip ├── README.md └── LICENSE /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /data/minecraft/tags/functions/tick.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "ops:loop" 4 | ] 5 | } -------------------------------------------------------------------------------- /data/minecraft/tags/functions/load.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "ops:install" 4 | ] 5 | } -------------------------------------------------------------------------------- /pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "MadCat's One Player Sleep - V3.1", 4 | "pack_format": 4 5 | } 6 | } -------------------------------------------------------------------------------- /releases/OnePlayerSleepv3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadCatHoG/OnePlayerSleepV3-Data-Pack/HEAD/releases/OnePlayerSleepv3.zip -------------------------------------------------------------------------------- /releases/OnePlayerSleepV2.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadCatHoG/OnePlayerSleepV3-Data-Pack/HEAD/releases/OnePlayerSleepV2.1.zip -------------------------------------------------------------------------------- /releases/OnePlayerSleepV2.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadCatHoG/OnePlayerSleepV3-Data-Pack/HEAD/releases/OnePlayerSleepV2.2.zip -------------------------------------------------------------------------------- /releases/OnePlayerSleepV2_4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadCatHoG/OnePlayerSleepV3-Data-Pack/HEAD/releases/OnePlayerSleepV2_4.zip -------------------------------------------------------------------------------- /releases/OnePlayerSleepV2_5.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadCatHoG/OnePlayerSleepV3-Data-Pack/HEAD/releases/OnePlayerSleepV2_5.zip -------------------------------------------------------------------------------- /releases/OnePlayerSleepV3_1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadCatHoG/OnePlayerSleepV3-Data-Pack/HEAD/releases/OnePlayerSleepV3_1.zip -------------------------------------------------------------------------------- /releases/OnePlayerSleepV2_3-clear.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadCatHoG/OnePlayerSleepV3-Data-Pack/HEAD/releases/OnePlayerSleepV2_3-clear.zip -------------------------------------------------------------------------------- /data/ops/functions/install.mcfunction: -------------------------------------------------------------------------------- 1 | ########################################## 2 | # Author: MadCat (youtube.com/MadCatHoG) 3 | # Date: February 6, 2020 4 | # Version: 3.1 5 | # Minecraft Version 1.13 / 1.14 / 1.15 / 1.16 6 | # Description: 7 | # Installs One Player Sleep data pack 8 | ########################################## 9 | 10 | function ops:old_version 11 | 12 | #Creating scoreboards 13 | scoreboard objectives add ops.kickBed trigger 14 | scoreboard objectives add ops.sleep dummy 15 | 16 | #Message limits for sleeping and waking up (n-1) 17 | scoreboard players set #sleep_messages ops.sleep 14 18 | scoreboard players set #kick_messages ops.sleep 8 19 | scoreboard players set #query_time ops.sleep 0 20 | 21 | -------------------------------------------------------------------------------- /data/ops/functions/uninstall.mcfunction: -------------------------------------------------------------------------------- 1 | ########################################## 2 | # Author: MadCat (youtube.com/MadCatHoG) 3 | # Date: April 20, 2019 4 | # Version: 3.1 5 | # Minecraft Version 1.13 / 1.14 / 1.15 / 1.16 6 | # Description: 7 | # Disables One Player Sleep data pack and 8 | # clears all scoreboards 9 | ########################################## 10 | 11 | datapack disable "file/OnePlayerSleepV3_1.zip" 12 | scoreboard objectives remove ops.kickBed 13 | scoreboard objectives remove ops.sleep 14 | 15 | tellraw @a ["",{"text":"One Player Sleep v3.1","bold":true,"color":"dark_aqua"},{"text":" ","bold":true,"color":"green"},{"text":"by ","color":"green"},{"text":"MadCat","bold":true,"color":"green","underlined":true,"hoverEvent":{"action":"show_text","value":{"text":"","extra":[{"text":"Click to check out MadCat on YouTube","color":"aqua"}]}},"clickEvent":{"action":"open_url","value":"https://youtube.com/MadCatHoG"}},{"text":" (Uninstalled/Disabled)","italic":true,"color":"green"}] 16 | tellraw @a ["",{"text":"To install again use the "},{"text":"/datapack enable","italic":true},{"text":" command"}] 17 | -------------------------------------------------------------------------------- /data/ops/functions/old_version.mcfunction: -------------------------------------------------------------------------------- 1 | ########################################## 2 | # Author: MadCat (youtube.com/MadCatHoG) 3 | # Date: February 6, 2020 4 | # Version: 3.1 5 | # Minecraft Version 1.13 / 1.14 / 1.15 / 1.16 6 | # Description: 7 | # Sets Player Head Drop version 8 | ########################################## 9 | 10 | #Removing previous version scoreboards 11 | datapack disable "file/OnePlayerSleepV2_5.zip" 12 | datapack disable "file/OnePlayerSleepV2_4.zip" 13 | datapack disable "file/OnePlayerSleepV2_3-clear.zip" 14 | datapack disable "file/OnePlayerSleepV2_2.zip" 15 | datapack disable "file/OnePlayerSleepV2_1.zip" 16 | datapack disable "file/OnePlayerSleepV3.zip" 17 | 18 | scoreboard objectives remove Mad.Versions 19 | scoreboard objectives remove ops.kickBed 20 | scoreboard objectives remove ops.sleep 21 | 22 | tellraw @a ["",{"text":"One Player Sleep v3.1","bold":true,"color":"dark_aqua"},{"text":" ","bold":true,"color":"green"},{"text":"by ","color":"green"},{"text":"MadCat","bold":true,"color":"green","underlined":true,"hoverEvent":{"action":"show_text","value":{"text":"","extra":[{"text":"Click to check out MadCat on YouTube","color":"aqua"}]}},"clickEvent":{"action":"open_url","value":"https://youtube.com/MadCatHoG"}},{"text":" (Installed)","italic":true,"color":"green"}] 23 | -------------------------------------------------------------------------------- /data/ops/functions/loop.mcfunction: -------------------------------------------------------------------------------- 1 | ########################################## 2 | # Author: MadCat (youtube.com/MadCatHoG) 3 | # Date: February 6, 2020 4 | # Version: 3.1 5 | # Minecraft Version 1.13 / 1.14 / 1.15 / 1.16 6 | # Description: 7 | # One Player Sleep Function loop 8 | ########################################## 9 | 10 | scoreboard players add #sleep_message ops.sleep 1 11 | scoreboard players add #kick_message ops.sleep 1 12 | execute store result score #query_time ops.sleep run time query daytime 13 | execute store result score #wc_status ops.sleep run gamerule doWeatherCycle 14 | 15 | execute as @a store result score @s ops.sleep run data get entity @s SleepTimer 16 | execute as @a[scores={ops.sleep=1}] run scoreboard players enable @a ops.kickBed 17 | execute as @a[scores={ops.sleep=1}] run function ops:message 18 | 19 | # Change the line below to pass the night faster by adding more time after "add" 20 | execute as @a[scores={ops.sleep=100}] run time add 40 21 | 22 | execute if entity @a[scores={ops.sleep=1..},limit=1] if score #wc_status ops.sleep matches 1 if score #query_time ops.sleep matches 23500..23999 run weather thunder 1 23 | execute as @a[scores={ops.kickBed=1}] at @s run function ops:kicked 24 | 25 | execute if score #query_time ops.sleep matches 23500..23600 run scoreboard players reset @a ops.kickBed 26 | 27 | execute as @a[nbt={SleepTimer:0s},scores={ops.sleep=1..}] run scoreboard players set @s ops.sleep 0 28 | execute if score #sleep_message ops.sleep > #sleep_messages ops.sleep run scoreboard players set #sleep_message ops.sleep 1 29 | execute if score #kick_message ops.sleep > #kick_messages ops.sleep run scoreboard players set #kick_message ops.sleep 1 30 | -------------------------------------------------------------------------------- /data/ops/functions/kicked.mcfunction: -------------------------------------------------------------------------------- 1 | ########################################## 2 | # Author: MadCat (youtube.com/MadCatHoG) 3 | # Date: April 20, 2019 4 | # Version: 3.1 5 | # Minecraft Version 1.13 / 1.14 / 1.15 / 1.16 6 | # Description: 7 | # Actions to kick a player out of bed. 8 | # Messages to kicked players. 9 | ########################################## 10 | 11 | scoreboard players set @a ops.kickBed 0 12 | execute as @a[scores={ops.sleep=1..}] at @s run tp @s ~ ~ ~ 13 | execute if score #kick_message ops.sleep matches 1 run tellraw @a[scores={ops.sleep=1..}] ["",{"text":"You have been woken up by ","italic":true,"color":"gray"},{"selector":"@s","italic":true,"color":"gray"}] 14 | execute if score #kick_message ops.sleep matches 2 run tellraw @a[scores={ops.sleep=1..}] {"text":"Rise and.. Oh wait...","italic":true,"color":"gray"} 15 | execute if score #kick_message ops.sleep matches 3 run tellraw @a[scores={ops.sleep=1..}] ["",{"selector":"@s","italic":true,"color":"gray"},{"text":" made you realize it was just a dream...","italic":true,"color":"gray"}] 16 | execute if score #kick_message ops.sleep matches 4 run tellraw @a[scores={ops.sleep=1..}] ["",{"selector":"@s","italic":true,"color":"gray"},{"text":" kicked you out of bed","italic":true,"color":"gray"}] 17 | execute if score #kick_message ops.sleep matches 5 run tellraw @a[scores={ops.sleep=1..}] ["",{"selector":"@s","italic":true,"color":"gray"},{"text":" woke you up with its monster snoring","italic":true,"color":"gray"}] 18 | execute if score #kick_message ops.sleep matches 6 run tellraw @a[scores={ops.sleep=1..}] {"text":"You woke up in a puddle of drool","italic":true,"color":"gray"} 19 | execute if score #kick_message ops.sleep matches 7 run tellraw @a[scores={ops.sleep=1..}] ["",{"text":"You woke up to a paw in the face, I think it was ","italic":true,"color":"gray"},{"selector":"@s","italic":true,"color":"gray"}] 20 | execute if score #kick_message ops.sleep matches 8 run tellraw @a[scores={ops.sleep=1..}] ["",{"selector":"@s","italic":true,"color":"gray"},{"text":" poked you with a stick","italic":true,"color":"gray"}] 21 | execute if score #kick_message ops.sleep matches 9 run tellraw @a[scores={ops.sleep=1..}] {"text":"You woke up on the wrong side of the bed","italic":true,"color":"gray"} -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # One Player Sleep Data Pack for Minecraft 1.13 / 1.14 / 1.15 / 1.16 2 | 3 | This One Player Sleep Data Pack allows a player to skip the night on a Multiplayer Server. 4 | 5 | Some of the features include: 6 | - Plug and Play. Drop the zip file in the datapacks folder and the functions will install automatically 7 | - Weather Control. A common problem in multiplayer servers is that the weather goes crazy after skipping the night too many times, this Data Pack solves it. 8 | - Waking up system. Any player can wake up sleeping players to stop them from skiping the night, just click on the sleeping announcement. 9 | 10 | Version 2.2 Features: 11 | - Random sleeping announcements. A series of messages displayed at random when someone sleeps. 12 | - Random wake up messages. A series of messages when a player is woken up by somebody. 13 | 14 | Version 2.3 Features: 15 | - Weather changes to cycle the weather often. 16 | 17 | Version 2.4 Features: 18 | - Better weather control. 19 | - Players now can stop storms if they go to sleep when is daytime. 20 | - Fix: Time would advance for a long time if it was storming in the morning and players were sleeping. 21 | Now storms end when the sun comes up and the player will naturally get woken up. 22 | - The weather will only be affected in case of thunderstorm during the day (and players taking action). This data pack does not change the weather with regular sleeping at night. 23 | 24 | Version 2.5 Features: 25 | - Support for Minecraft 1.14 snapshots. Mojang removed the "Sleeping" NBT from their data model. 26 | - Added compatibility! Data pack will work in Minecraft 1.13 and 1.14 27 | - Fixed some messages to be gender neutral. 28 | - Commented gamerule sendCommandFeedback, this made some people crazy thinking I broke their Minecraft server. 29 | - Tested in Snapshot 19w09a and Minecraft 1.14 Pre-releases. 30 | - Changed the waking up feature to something more clever than silly snowballs thrown at players 31 | - Tested in Minecraft 1.13.2 Works as expected 32 | 33 | Version 3.0 Features: 34 | - Version checking 35 | - Version control 36 | - Changes to setup/install/uninstall 37 | 38 | 39 | Thank you for choosing my data pack! To better serve the community I've made it compatible with several versions of Minecraft and added some fool-proofing needed for servers with odd settings like having the weather cycle off. Many years of testing this pack in several servers and addressing all the problems has made this a really solid pack. This might be the last version ever needed. 40 | 41 | Version 3.1 Features: 42 | - Removed Version control (it was confusing people and made them think the pack was not working) 43 | - Added checks for weather cycle (if it was off it would set the weather to storm permanently) 44 | 45 | 46 | # More resources 47 | To see this in action you can visit [my website][mcweb]. 48 | Videos from newer to older: 49 | - OPS for Minecraft 1.14 [video][yt3.0] (v3.0) 50 | - Weather changes [video][yt2.4] (v2.4). 51 | - Messaging update [video][yt2.2] (v2.2). 52 | - First data pack version [video][yt2.1]. 53 | 54 | 55 | 56 | [mcweb]: 57 | [yt3.0]: 58 | [yt2.4]: 59 | [yt2.2]: 60 | [yt2.1]: 61 | 62 | -------------------------------------------------------------------------------- /data/ops/functions/message.mcfunction: -------------------------------------------------------------------------------- 1 | ########################################## 2 | # Author: MadCat (youtube.com/MadCatHoG) 3 | # Date: April 20, 2019 4 | # Version: 3.1 5 | # Minecraft Version 1.13 / 1.14 / 1.15 / 1.16 6 | # Description: 7 | # Shows a random message when a Player 8 | # goes to sleep 9 | ########################################## 10 | 11 | execute if score #query_time ops.sleep matches 23500..23999 run scoreboard players set #sleep_message ops.sleep 0 12 | execute if score #query_time ops.sleep matches 0..12500 run scoreboard players set #sleep_message ops.sleep 0 13 | execute if score #sleep_message ops.sleep matches 0 run tellraw @a ["",{"selector":"@s"},{"text":" blew the rain away","color":"aqua"}] 14 | execute if score #sleep_message ops.sleep matches 0 run weather thunder 1 15 | execute if score #sleep_message ops.sleep matches 1 run tellraw @a ["",{"selector":"@s"},{"text":" fell asleep on the job","color":"blue","clickEvent":{"action":"run_command","value":"/trigger ops.kickBed"},"hoverEvent":{"action":"show_text","value":{"text":"","extra":[{"text":"Wake up!","color":"aqua"}]}}}] 16 | execute if score #sleep_message ops.sleep matches 2 run tellraw @a ["",{"selector":"@s"},{"text":" is slacking","color":"blue","clickEvent":{"action":"run_command","value":"/trigger ops.kickBed"},"hoverEvent":{"action":"show_text","value":{"text":"","extra":[{"text":"Wake up!","color":"aqua"}]}}}] 17 | execute if score #sleep_message ops.sleep matches 3 run tellraw @a ["",{"selector":"@s"},{"text":" is asleep at the wheel","color":"blue","clickEvent":{"action":"run_command","value":"/trigger ops.kickBed"},"hoverEvent":{"action":"show_text","value":{"text":"","extra":[{"text":"Wake up!","color":"aqua"}]}}}] 18 | execute if score #sleep_message ops.sleep matches 4 run tellraw @a ["",{"selector":"@s"},{"text":" crashed...hard...","color":"blue","clickEvent":{"action":"run_command","value":"/trigger ops.kickBed"},"hoverEvent":{"action":"show_text","value":{"text":"","extra":[{"text":"Wake up!","color":"aqua"}]}}}] 19 | execute if score #sleep_message ops.sleep matches 5 run tellraw @a ["",{"selector":"@s"},{"text":" is counting sheep","color":"blue","clickEvent":{"action":"run_command","value":"/trigger ops.kickBed"},"hoverEvent":{"action":"show_text","value":{"text":"","extra":[{"text":"Wake up!","color":"aqua"}]}}}] 20 | execute if score #sleep_message ops.sleep matches 6 run tellraw @a ["",{"selector":"@s"},{"text":" is sawing logs","color":"blue","clickEvent":{"action":"run_command","value":"/trigger ops.kickBed"},"hoverEvent":{"action":"show_text","value":{"text":"","extra":[{"text":"Wake up!","color":"aqua"}]}}}] 21 | execute if score #sleep_message ops.sleep matches 7 run tellraw @a ["",{"selector":"@s"},{"text":" is cat napping","color":"blue","clickEvent":{"action":"run_command","value":"/trigger ops.kickBed"},"hoverEvent":{"action":"show_text","value":{"text":"","extra":[{"text":"Wake up!","color":"aqua"}]}}}] 22 | execute if score #sleep_message ops.sleep matches 8 run tellraw @a ["",{"selector":"@s"},{"text":" has hit the hay","color":"blue","clickEvent":{"action":"run_command","value":"/trigger ops.kickBed"},"hoverEvent":{"action":"show_text","value":{"text":"","extra":[{"text":"Wake up!","color":"aqua"}]}}}] 23 | execute if score #sleep_message ops.sleep matches 9 run tellraw @a ["",{"selector":"@s"},{"text":" nodded off","color":"blue","clickEvent":{"action":"run_command","value":"/trigger ops.kickBed"},"hoverEvent":{"action":"show_text","value":{"text":"","extra":[{"text":"Wake up!","color":"aqua"}]}}}] 24 | execute if score #sleep_message ops.sleep matches 10 run tellraw @a ["",{"selector":"@s"},{"text":" needs a beauty rest","color":"blue","clickEvent":{"action":"run_command","value":"/trigger ops.kickBed"},"hoverEvent":{"action":"show_text","value":{"text":"","extra":[{"text":"Wake up!","color":"aqua"}]}}}] 25 | execute if score #sleep_message ops.sleep matches 11 run tellraw @a ["",{"selector":"@s"},{"text":" keeps hitting snooze...","color":"blue","clickEvent":{"action":"run_command","value":"/trigger ops.kickBed"},"hoverEvent":{"action":"show_text","value":{"text":"","extra":[{"text":"Wake up!","color":"aqua"}]}}}] 26 | execute if score #sleep_message ops.sleep matches 12 run tellraw @a ["",{"selector":"@s"},{"text":" is enjoying peaceful slumber","color":"blue","clickEvent":{"action":"run_command","value":"/trigger ops.kickBed"},"hoverEvent":{"action":"show_text","value":{"text":"","extra":[{"text":"Wake up!","color":"aqua"}]}}}] 27 | execute if score #sleep_message ops.sleep matches 13 run tellraw @a ["",{"selector":"@s"},{"text":" is catching Z's","color":"blue","clickEvent":{"action":"run_command","value":"/trigger ops.kickBed"},"hoverEvent":{"action":"show_text","value":{"text":"","extra":[{"text":"Wake up!","color":"aqua"}]}}}] 28 | execute if score #sleep_message ops.sleep matches 14 run tellraw @a ["",{"selector":"@s"},{"text":" dozed off","color":"blue","clickEvent":{"action":"run_command","value":"/trigger ops.kickBed"},"hoverEvent":{"action":"show_text","value":{"text":"","extra":[{"text":"Wake up!","color":"aqua"}]}}}] 29 | execute if score #sleep_message ops.sleep matches 15 run tellraw @a ["",{"selector":"@s"},{"text":" is sleeping","color":"blue","clickEvent":{"action":"run_command","value":"/trigger ops.kickBed"},"hoverEvent":{"action":"show_text","value":{"text":"","extra":[{"text":"Wake up!","color":"aqua"}]}}}] 30 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. --------------------------------------------------------------------------------