diff --git a/DDSLoader/DDSLoader.cfg b/DDSLoader/DDSLoader.cfg new file mode 100644 index 0000000..836cff5 --- /dev/null +++ b/DDSLoader/DDSLoader.cfg @@ -0,0 +1,26 @@ +DDSLoader +{ +// Maximum number of mipmap to keep for a texture +// 0 keep them all. 1 keep only the texture, 2 keep 1 mipmap, 3 keep 2, ... +mipmapBias = 0 + +// Maximum number of mipmap to keep for a normal texture +normalMipmapBias = 0 + +// Those section define exception. You can have more than one cfg file +// with a DDSLoader node and those subnodes. + +//NORMAL_LIST +//{ +// // Regex of textures to force as Normal +// texture = Squad/Spaces/mk1CockpitInternal/model002 +// texture = Squad/Spaces/.* +//} + +//READABLE_LIST +//{ +// // Regex of textures to keep readable for mods +// texture = BoulderCo/Clouds/.* +//} + +} \ No newline at end of file diff --git a/DDSLoader/DDSLoader.dll b/DDSLoader/DDSLoader.dll new file mode 100644 index 0000000..11e3928 Binary files /dev/null and b/DDSLoader/DDSLoader.dll differ diff --git a/DDSLoader/LICENSE.txt b/DDSLoader/LICENSE.txt new file mode 100644 index 0000000..6af27bf --- /dev/null +++ b/DDSLoader/LICENSE.txt @@ -0,0 +1,20 @@ +The MIT License (MIT) + +Copyright (c) 2014 sarbian + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/K2 Installation.pdf b/K2 Installation.pdf new file mode 100644 index 0000000..d5235f0 Binary files /dev/null and b/K2 Installation.pdf differ diff --git a/K2 License.pdf b/K2 License.pdf new file mode 100644 index 0000000..c7d90a0 Binary files /dev/null and b/K2 License.pdf differ diff --git a/K2/Compatability/DeadlyReentry_64k.cfg b/K2/Compatability/DeadlyReentry_64k.cfg new file mode 100644 index 0000000..ac08c2b --- /dev/null +++ b/K2/Compatability/DeadlyReentry_64k.cfg @@ -0,0 +1,92 @@ +// Wildcard patches -- NathanKell +// These will: +// 1. Increase the temperatures in the Loss curve to 2500/7500 instead of 1000/3000. +// 2. Increase the loss rates by 1.5x at now-2500 shockwave temp, and 3x at 7500 +// (so shielding loss rate will be a fair bit higher). +// 3. Max dissipation once shield is at/above 400C, no sense having the temperature loss +// be lesser for the same kg of ablative ablated just because the shield is cool. +// 4. Double reflectivity of non-ablative shielding (i.e. nosecones / spaceplane parts). + +@PART[*]:HAS[@MODULE[ModuleHeatShield]]:FINAL +{ + @maxTemp = 1800 + @MODULE[ModuleHeatShield] + { + @loss + { + @key,1 ^= :^1000 :: + @key,1 ^= : 0 0:: + @key,1 *= 1.5 + @key,1 ^= :$: 0 0: + @key,1 ^= :^:2500 : + + @key,2 ^= :^3000 :: + @key,2 ^= : 0 0:: + @key,2 *= 3 + @key,2 ^= :$: 0 0: + @key,2 ^= :^:7500 : + } + @dissipation + { + @key,1 ^= :^500:: + @key,1 ^= : 0 0:: + @key,1 *= 1.5 + @key,1 ^= :$: 0 0: + @key,1 ^= :^:400 : + } + } +} +@PART[*]:HAS[@MODULE[ModuleHeatShield]]:FINAL +{ + @MODULE[ModuleHeatShield]:HAS[~ablative[]] + { + @reflective *= 2.0 + } +} + +@PART[SDHI_2.5_Heatshield]:NEEDS[DeadlyReentry]:Final +{ + @mass = 0.061 + @title = Heatshield (2.5M) + @MODULE[ModuleHeatShield] + { + + @direction = 0, -1, 0 // bottom of pod + @reflective = 0.05 // 5% of heat is ignored at correct angle + @ablative = AblativeShielding + @loss + { // loss is based on the shockwave temperature (also based on density) + @key,0 = 650 0 0 0 // start ablating at 650 degrees C + @key,1 = 2000 568 0 0 // peak ablation at 2000 degrees C + @key,2 = 6000 710 0 0 // max ablation at 6000 degrees C + } + @dissipation + { // dissipation is based on the part's current temperature + @key,0 = 300 0 0 0 // begin ablating at 300 degrees C + @key,1 = 800 140 0 0 // maximum dissipation at 800 degrees C + } + } +} + +@PART[TaurusHeatshield]:NEEDS[DeadlyReentry]:Final +{ + @mass = 0.21 + @MODULE[ModuleHeatShield] + { + + @direction = 0, -1, 0 // bottom of pod + @reflective = 0.05 // 5% of heat is ignored at correct angle + @ablative = AblativeShielding + @loss + { // loss is based on the shockwave temperature (also based on density) + @key,0 = 650 0 0 0 // start ablating at 650 degrees C + @key,1 = 2000 1500 0 0 // peak ablation at 2000 degrees C + @key,2 = 6000 2000 0 0 // max ablation at 6000 degrees C + } + @dissipation + { // dissipation is based on the part's current temperature + @key,0 = 300 0 0 0 // begin ablating at 300 degrees C + @key,1 = 800 50 0 0 // maximum dissipation at 800 degrees C + } + } +} diff --git a/K2/Compatability/RemoteTech_64k.cfg b/K2/Compatability/RemoteTech_64k.cfg new file mode 100644 index 0000000..65f4e08 --- /dev/null +++ b/K2/Compatability/RemoteTech_64k.cfg @@ -0,0 +1,10 @@ +@PART[*]:HAS[@MODULE[ModuleRTAntenna],!MODULE[ModuleCommand]]:NEEDS[RemoteTech]:Final +{ + @MODULE[ModuleRTAntenna] + { + @Mode0DishRange *= 2 + @Mode1DishRange *= 2 + @Mode0OmniRange *= 2 + @Mode1OmniRange *= 2 + } +} \ No newline at end of file diff --git a/K2/K2.version b/K2/K2.version new file mode 100644 index 0000000..5f8cf3f --- /dev/null +++ b/K2/K2.version @@ -0,0 +1,25 @@ +{ +"NAME":"K2", +"URL":"http://ksp-avc.cybutek.net/version.php?id=120", +"DOWNLOAD":"https://github.com/Paul-kingtiger/K2/releases", +"CHANGE_LOG_URL":"http://forum.kerbalspaceprogram.com/threads/110896-K2-like-64k-but-smaller%21", +"VERSION": + { + "MAJOR":0, + "MINOR":0, + "PATCH":90, + "BUILD":1 + }, +"KSP_VERSION": + { + "MAJOR":0, + "MINOR":90, + "PATCH":0 + }, +"KSP_VERSION_MIN": + { + "MAJOR":0, + "MINOR":25, + "PATCH":0 + } +} \ No newline at end of file diff --git a/K2/MiniAVC Licence.txt b/K2/MiniAVC Licence.txt new file mode 100644 index 0000000..94a9ed0 --- /dev/null +++ b/K2/MiniAVC Licence.txt @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. diff --git a/K2/MiniAVC.dll b/K2/MiniAVC.dll new file mode 100644 index 0000000..e148909 Binary files /dev/null and b/K2/MiniAVC.dll differ diff --git a/K2/Textures/Kerbin_2k.dds b/K2/Textures/Kerbin_2k.dds new file mode 100644 index 0000000..533013b Binary files /dev/null and b/K2/Textures/Kerbin_2k.dds differ diff --git a/K2/Textures/Kerbin_2k_NRM.dds b/K2/Textures/Kerbin_2k_NRM.dds new file mode 100644 index 0000000..014f7f5 Binary files /dev/null and b/K2/Textures/Kerbin_2k_NRM.dds differ diff --git a/ModuleManager.2.5.9.dll b/ModuleManager.2.5.9.dll new file mode 100644 index 0000000..d00bab5 Binary files /dev/null and b/ModuleManager.2.5.9.dll differ diff --git a/RealSolarSystem/Plugins/RealSolarSystem.dll b/RealSolarSystem/Plugins/RealSolarSystem.dll new file mode 100644 index 0000000..e037c43 Binary files /dev/null and b/RealSolarSystem/Plugins/RealSolarSystem.dll differ diff --git a/RealSolarSystem/RealSolarSystem.cfg b/RealSolarSystem/RealSolarSystem.cfg new file mode 100644 index 0000000..a649293 --- /dev/null +++ b/RealSolarSystem/RealSolarSystem.cfg @@ -0,0 +1,203 @@ +REALSOLARSYSTEM +{ + wrap = false + spheresOnly = false + compressNormals = true + + Sun + { + Radius = 523200000 + } + + Moho + { + Radius = 500000 + Orbit + { + semiMajorAxis = 10526276608 + } + } + + Eve + { + Radius = 1400000 + Orbit + { + semiMajorAxis = 19665369088 + } + } + + Gilly + { + Radius = 26000 + Orbit + { + semiMajorAxis = 63000000 + } + } + + Kerbin + { + Radius = 1200000 + Orbit + { + semiMajorAxis = 27199680512 + } + SSFStart = 78000 + SSFEnd = 80000 + PQSfadeStart = 80000 + PQSfadeEnd = 120000 + PQSSecfadeStart = 80000 + PQSSecfadeEnd = 120000 + PQSdeactivateAltitude = 125000 + SSColor = 2k/Textures/Kerbin_2k + SSBump = 2k/Textures/Kerbin_2k_NRM + + PQS + { + Kerbin + { + PQSCity + { + KEYname = KSC + latitude = 0 //-0.076 + longitude = -74.7 //-74.425 + repositionToSphereSurface = false + repositionRadiusOffset = 38 //35 + lodvisibleRangeMult = 6 + } + PQSCity + { + KEYname = IslandAirfield + latitude = -1.624 + longitude = -71.950 + repositionToSphereSurface = false + repositionRadiusOffset = 322 + lodvisibleRangeMult = 6 + } + PQSMod_MapDecalTangent + { + radius = 8500 + heightMapDeformity = 65 + absoluteOffset = 0 + absolute = true + latitude = -0.076//-0.076 + longitude = -74.65//-74.425 + } + } + KerbinOcean {} + } + } + + Mun + { + Radius = 400000 + tidallyLocked = true + Orbit + { + semiMajorAxis = 24000000 + } + } + + Minmus + { + Radius = 120000 + Orbit + { + semiMajorAxis = 94000000 + } + } + + Duna + { + Radius = 640000 + Orbit + { + semiMajorAxis = 41452310528 + } + } + + Ike + { + Radius = 260000 + Orbit + { + semiMajorAxis = 6400000 + } + } + + Dres + { + Radius = 276000 + Orbit + { + semiMajorAxis = 81678696406 + } + } + + Jool + { + Radius = 12000000 + Orbit + { + semiMajorAxis = 1.37547E+11 + } + } + + Laythe + { + Orbit + { + semiMajorAxis = 54368000 + } + } + + Vall + { + Radius = 600000 + tidallyLocked = true + Orbit + { + semiMajorAxis = 86304000 + } + } + + Tylo + { + Radius = 1200000 + tidallyLocked = true + Orbit + { + semiMajorAxis = 137000000 + } + } + + Bop + { + Radius = 130000 + tidallyLocked = true + Orbit + { + semiMajorAxis = 257000000 + } + } + + Pol + { + Radius = 88000 + tidallyLocked = true + Orbit + { + semiMajorAxis = 359780000 + } + } + + Eeloo + { + Radius = 420000 + Orbit + { + semiMajorAxis = 1.80238E+11 + } + } +} \ No newline at end of file diff --git a/RealSolarSystem/RealSolarSystemSettings.cfg b/RealSolarSystem/RealSolarSystemSettings.cfg new file mode 100644 index 0000000..96e26fa --- /dev/null +++ b/RealSolarSystem/RealSolarSystemSettings.cfg @@ -0,0 +1,433 @@ +REALSOLARSYSTEMSETTINGS +{ + powerCurve + { + // 400-interval (401-point) piecewise cubic, with polynomials computed as + // best approximation (minimising the uniform norm of the relative error) + // under the constraint of exactness at the endpoints (to preserve + // continuity; note that the minimax is thus done on two parametres rather + // than four). + // The units are m, 1.3608 kW / m² (irradiance from the Sun at 1 ua), 1.3608 kW / m³ , 1.3608 kW / m³. + // The relative error is at most 1.5e-7. + key = 126734244 46153.60651 -0.00013256 -0.000132559 + key = 130662884.7 43419.92969 -0.00012096 -0.000120958 + key = 134713309.5 40848.16847 -0.000110374 -0.000110372 + key = 138889293.7 38428.73259 -0.000100715 -0.000100713 + key = 143194729.4 36152.59984 -9.19005E-05 -9.18989E-05 + key = 147633629.4 34011.28236 -8.38577E-05 -8.38562E-05 + key = 152210131.2 31996.79506 -7.65188E-05 -7.65175E-05 + key = 156928500.1 30101.62579 -6.98222E-05 -6.98209E-05 + key = 161793133.9 28318.70734 -6.37116E-05 -6.37105E-05 + key = 166808566.8 26641.3911 -5.81358E-05 -5.81348E-05 + key = 171979473.3 25063.42225 -5.3048E-05 -5.30471E-05 + key = 177310673 23578.91645 -4.84055E-05 -4.84046E-05 + key = 182807134.8 22182.33789 -4.41692E-05 -4.41684E-05 + key = 188473981.7 20868.47864 -4.03037E-05 -4.0303E-05 + key = 194316495.4 19632.43923 -3.67765E-05 -3.67758E-05 + key = 200340121.4 18469.61041 -3.35579E-05 -3.35573E-05 + key = 206550474.2 17375.6559 -3.06211E-05 -3.06205E-05 + key = 212953341.9 16346.49629 -2.79412E-05 -2.79407E-05 + key = 219554692.5 15378.29377 -2.54959E-05 -2.54955E-05 + key = 226360678.6 14467.43786 -2.32646E-05 -2.32642E-05 + key = 233377643.8 13610.53192 -2.12286E-05 -2.12282E-05 + key = 240612128.2 12804.3805 -1.93707E-05 -1.93704E-05 + key = 248070874.7 12045.9774 -1.76755E-05 -1.76752E-05 + key = 255760835.3 11332.4945 -1.61286E-05 -1.61283E-05 + key = 263689177.3 10661.27117 -1.47171E-05 -1.47168E-05 + key = 271863290.3 10029.80437 -1.34291E-05 -1.34289E-05 + key = 280290793.1 9435.739342 -1.22538E-05 -1.22536E-05 + key = 288979540.4 8876.860765 -1.11814E-05 -1.11812E-05 + key = 297937630.6 8351.084551 -1.02029E-05 -1.02027E-05 + key = 307173413.1 7856.450047 -9.30997E-06 -9.3098E-06 + key = 316695496 7391.112731 -8.49519E-06 -8.49504E-06 + key = 326512754.4 6953.337331 -7.75173E-06 -7.75159E-06 + key = 336634338.4 6541.491356 -7.07333E-06 -7.0732E-06 + key = 347069681.9 6154.039006 -6.4543E-06 -6.45418E-06 + key = 357828511.1 5789.535448 -5.88944E-06 -5.88934E-06 + key = 368920853.7 5446.621426 -5.37402E-06 -5.37393E-06 + key = 380357048.4 5124.018191 -4.90371E-06 -4.90362E-06 + key = 392147754.2 4820.522738 -4.47455E-06 -4.47447E-06 + key = 404303960.6 4535.003311 -4.08296E-06 -4.08289E-06 + key = 416836997.9 4266.395192 -3.72563E-06 -3.72557E-06 + key = 429758547.4 4013.696724 -3.39958E-06 -3.39952E-06 + key = 443080652.5 3775.96558 -3.10206E-06 -3.10201E-06 + key = 456815730.3 3552.315244 -2.83058E-06 -2.83053E-06 + key = 470976582.3 3341.911712 -2.58286E-06 -2.58281E-06 + key = 485576407.3 3143.970375 -2.35682E-06 -2.35678E-06 + key = 500628812.9 2957.753098 -2.15056E-06 -2.15052E-06 + key = 516147828.7 2782.565465 -1.96235E-06 -1.96232E-06 + key = 532147919.2 2617.75419 -1.79061E-06 -1.79058E-06 + key = 548643997.3 2462.704683 -1.63391E-06 -1.63388E-06 + key = 565651438 2316.838754 -1.49091E-06 -1.49089E-06 + key = 583186093.2 2179.612459 -1.36043E-06 -1.36041E-06 + key = 601264306 2050.514074 -1.24137E-06 -1.24135E-06 + key = 619902926.2 1929.062183 -1.13273E-06 -1.13271E-06 + key = 639119325.8 1814.803884 -1.0336E-06 -1.03358E-06 + key = 658931415.4 1707.313101 -9.43145E-07 -9.43128E-07 + key = 679357661 1606.188994 -8.60604E-07 -8.60589E-07 + key = 700417100.7 1511.054465 -7.85288E-07 -7.85274E-07 + key = 722129362.9 1421.554751 -7.16562E-07 -7.1655E-07 + key = 744514684.6 1337.356103 -6.53852E-07 -6.5384E-07 + key = 767593929.8 1258.144539 -5.96629E-07 -5.96618E-07 + key = 791388609.7 1183.624673 -5.44414E-07 -5.44405E-07 + key = 815920902 1113.518617 -4.96769E-07 -4.9676E-07 + key = 841213671.9 1047.56494 -4.53294E-07 -4.53286E-07 + key = 867290493.6 985.5176981 -4.13623E-07 -4.13616E-07 + key = 894175671.9 927.1455125 -3.77425E-07 -3.77418E-07 + key = 921894265.1 872.2307098 -3.44394E-07 -3.44388E-07 + key = 950472108.3 820.5685093 -3.14254E-07 -3.14248E-07 + key = 979935837.3 771.9662595 -2.86752E-07 -2.86747E-07 + key = 1010312914 726.2427196 -2.61656E-07 -2.61652E-07 + key = 1041631651 683.2273836 -2.38757E-07 -2.38753E-07 + key = 1073921239 642.7598448 -2.17862E-07 -2.17858E-07 + key = 1107211773 604.6891973 -1.98796E-07 -1.98792E-07 + key = 1141534282 568.873473 -1.81398E-07 -1.81395E-07 + key = 1176920756 535.1791132 -1.65523E-07 -1.6552E-07 + key = 1213404178 503.4804693 -1.51037E-07 -1.51034E-07 + key = 1251018550 473.6593352 -1.37819E-07 -1.37816E-07 + key = 1289798932 445.6045061 -1.25757E-07 -1.25755E-07 + key = 1329781469 419.2113637 -1.14751E-07 -1.14749E-07 + key = 1371003427 394.3814863 -1.04709E-07 -1.04707E-07 + key = 1413503226 371.022282 -9.55451E-08 -9.55434E-08 + key = 1457320478 349.0466426 -8.71834E-08 -8.71818E-08 + key = 1502496023 328.3726197 -7.95534E-08 -7.9552E-08 + key = 1549071967 308.9231187 -7.25912E-08 -7.25899E-08 + key = 1597091721 290.625611 -6.62383E-08 -6.62372E-08 + key = 1646600041 273.4118642 -6.04414E-08 -6.04403E-08 + key = 1697643073 257.2176872 -5.51518E-08 -5.51508E-08 + key = 1750268389 241.9826908 -5.03251E-08 -5.03242E-08 + key = 1804525040 227.6500628 -4.59209E-08 -4.59201E-08 + key = 1860463596 214.1663559 -4.19021E-08 -4.19013E-08 + key = 1918136193 201.4812887 -3.8235E-08 -3.82343E-08 + key = 1977596586 189.5475576 -3.48888E-08 -3.48882E-08 + key = 2038900194 178.3206611 -3.18355E-08 -3.18349E-08 + key = 2102104156 167.7587333 -2.90493E-08 -2.90488E-08 + key = 2167267381 157.8223882 -2.65071E-08 -2.65066E-08 + key = 2234450603 148.4745726 -2.41873E-08 -2.41868E-08 + key = 2303716441 139.6804278 -2.20705E-08 -2.20701E-08 + key = 2375129454 131.40716 -2.0139E-08 -2.01386E-08 + key = 2448756202 123.6239176 -1.83765E-08 -1.83762E-08 + key = 2524665309 116.3016764 -1.67682E-08 -1.67679E-08 + key = 2602927526 109.4131314 -1.53007E-08 -1.53005E-08 + key = 2683615798 102.9325947 -1.39617E-08 -1.39614E-08 + key = 2766805329 96.83589999 -1.27398E-08 -1.27396E-08 + key = 2852573655 91.10031235 -1.16249E-08 -1.16247E-08 + key = 2941000719 85.7044434 -1.06075E-08 -1.06073E-08 + key = 3032168937 80.62817162 -9.67918E-09 -9.67901E-09 + key = 3126163282 75.85256728 -8.8321E-09 -8.83194E-09 + key = 3223071363 71.35982184 -8.05915E-09 -8.05901E-09 + key = 3322983502 67.1331816 -7.35384E-09 -7.35371E-09 + key = 3425992822 63.15688513 -6.71026E-09 -6.71014E-09 + key = 3532195332 59.4161046 -6.12301E-09 -6.1229E-09 + key = 3641690020 55.89689039 -5.58715E-09 -5.58705E-09 + key = 3754578938 52.58611914 -5.09818E-09 -5.09809E-09 + key = 3870967305 49.47144477 -4.65201E-09 -4.65193E-09 + key = 3990963600 46.54125249 -4.24488E-09 -4.24481E-09 + key = 4114679666 43.78461541 -3.87339E-09 -3.87332E-09 + key = 4242230812 41.19125386 -3.5344E-09 -3.53434E-09 + key = 4373735922 38.75149705 -3.22509E-09 -3.22503E-09 + key = 4509317565 36.45624697 -2.94284E-09 -2.94279E-09 + key = 4649102110 34.29694448 -2.68529E-09 -2.68525E-09 + key = 4793219842 32.26553742 -2.45029E-09 -2.45024E-09 + key = 4941805086 30.35445054 -2.23585E-09 -2.23581E-09 + key = 5094996332 28.55655729 -2.04017E-09 -2.04014E-09 + key = 5252936360 26.8651532 -1.86163E-09 -1.86159E-09 + key = 5415772378 25.27393093 -1.6987E-09 -1.69867E-09 + key = 5583656157 23.77695671 -1.55004E-09 -1.55001E-09 + key = 5756744174 22.36864823 -1.41439E-09 -1.41436E-09 + key = 5935197754 21.04375382 -1.29061E-09 -1.29058E-09 + key = 6119183225 19.79733287 -1.17766E-09 -1.17764E-09 + key = 6308872070 18.6247374 -1.07459E-09 -1.07457E-09 + key = 6504441088 17.52159473 -9.80548E-10 -9.80531E-10 + key = 6706072560 16.48379116 -8.94735E-10 -8.94719E-10 + key = 6913954414 15.50745667 -8.16431E-10 -8.16416E-10 + key = 7128280408 14.58895045 -7.4498E-10 -7.44967E-10 + key = 7349250304 13.72484732 -6.79782E-10 -6.7977E-10 + key = 7577070055 12.911925 -6.2029E-10 -6.20279E-10 + key = 7811952002 12.14715205 -5.66005E-10 -5.65995E-10 + key = 8054115065 11.42767657 -5.1647E-10 -5.16461E-10 + key = 8303784952 10.75081561 -4.71271E-10 -4.71263E-10 + key = 8561194367 10.1140451 -4.30027E-10 -4.30019E-10 + key = 8826583229 9.514990492 -3.92393E-10 -3.92386E-10 + key = 9100198893 8.951417872 -3.58052E-10 -3.58046E-10 + key = 9382296381 8.421225643 -3.26717E-10 -3.26711E-10 + key = 9673138622 7.922436684 -2.98124E-10 -2.98119E-10 + key = 9972996696 7.453190981 -2.72033E-10 -2.72028E-10 + key = 10282150084 7.011738688 -2.48226E-10 -2.48222E-10 + key = 10600886932 6.596433602 -2.26502E-10 -2.26498E-10 + key = 10929504318 6.205727025 -2.0668E-10 -2.06676E-10 + key = 11268308530 5.838161987 -1.88592E-10 -1.88588E-10 + key = 11617615349 5.492367816 -1.72087E-10 -1.72084E-10 + key = 11977750347 5.167055024 -1.57027E-10 -1.57024E-10 + key = 12349049187 4.8610105 -1.43284E-10 -1.43282E-10 + key = 12731857936 4.573092984 -1.30745E-10 -1.30742E-10 + key = 13126533392 4.302228815 -1.19302E-10 -1.193E-10 + key = 13533443410 4.047407923 -1.08861E-10 -1.08859E-10 + key = 13952967251 3.807680065 -9.93343E-11 -9.93325E-11 + key = 14385495931 3.582151282 -9.06409E-11 -9.06393E-11 + key = 14831432587 3.369980562 -8.27084E-11 -8.27069E-11 + key = 15291192855 3.170376707 -7.54701E-11 -7.54687E-11 + key = 15765205252 2.982595384 -6.88652E-11 -6.8864E-11 + key = 16253911582 2.805936343 -6.28384E-11 -6.28373E-11 + key = 16757767342 2.639740812 -5.7339E-11 -5.7338E-11 + key = 17277242151 2.483389038 -5.2321E-11 -5.232E-11 + key = 17812820182 2.336297975 -4.7742E-11 -4.77412E-11 + key = 18365000623 2.197919111 -4.35638E-11 -4.35631E-11 + key = 18934298130 2.067736424 -3.97513E-11 -3.97506E-11 + key = 19521243317 1.945264453 -3.62724E-11 -3.62718E-11 + key = 20126383246 1.830046494 -3.3098E-11 -3.30974E-11 + key = 20750281935 1.721652892 -3.02014E-11 -3.02009E-11 + key = 21393520888 1.619679439 -2.75583E-11 -2.75578E-11 + key = 22056699636 1.523745871 -2.51465E-11 -2.5146E-11 + key = 22740436292 1.433494446 -2.29458E-11 -2.29454E-11 + key = 23445368133 1.34858861 -2.09376E-11 -2.09373E-11 + key = 24172152189 1.268711745 -1.91053E-11 -1.91049E-11 + key = 24921465857 1.193565984 -1.74332E-11 -1.74329E-11 + key = 25694007535 1.122871104 -1.59076E-11 -1.59073E-11 + key = 26490497268 1.05636348 -1.45154E-11 -1.45151E-11 + key = 27311677423 0.993795101 -1.32451E-11 -1.32448E-11 + key = 28158313380 0.934932645 -1.20859E-11 -1.20857E-11 + key = 29031194245 0.87955661 -1.10282E-11 -1.1028E-11 + key = 29931133584 0.827460497 -1.0063E-11 -1.00629E-11 + key = 30858970184 0.778450035 -9.18237E-12 -9.1822E-12 + key = 31815568834 0.732342461 -8.37876E-12 -8.37861E-12 + key = 32801821130 0.688965838 -7.64549E-12 -7.64535E-12 + key = 33818646307 0.64815841 -6.97638E-12 -6.97626E-12 + key = 34866992095 0.609768006 -6.36584E-12 -6.36572E-12 + key = 35947835602 0.573651464 -5.80872E-12 -5.80862E-12 + key = 37062184227 0.539674104 -5.30037E-12 -5.30027E-12 + key = 38211076598 0.507709222 -4.8365E-12 -4.83641E-12 + key = 39395583536 0.477637619 -4.41323E-12 -4.41315E-12 + key = 40616809060 0.449347156 -4.027E-12 -4.02693E-12 + key = 41875891411 0.422732337 -3.67457E-12 -3.67451E-12 + key = 43174004114 0.397693912 -3.35299E-12 -3.35293E-12 + key = 44512357072 0.374138513 -3.05955E-12 -3.05949E-12 + key = 45892197697 0.351978299 -2.79179E-12 -2.79174E-12 + key = 47314812065 0.331130634 -2.54746E-12 -2.54742E-12 + key = 48781526122 0.311517776 -2.32452E-12 -2.32448E-12 + key = 50293706916 0.293066587 -2.12108E-12 -2.12105E-12 + key = 51852763873 0.275708261 -1.93546E-12 -1.93542E-12 + key = 53460150108 0.259378069 -1.76607E-12 -1.76604E-12 + key = 55117363785 0.244015113 -1.61151E-12 -1.61148E-12 + key = 56825949505 0.229562105 -1.47048E-12 -1.47045E-12 + key = 58587499753 0.215965148 -1.34179E-12 -1.34176E-12 + key = 60403656379 0.203173538 -1.22436E-12 -1.22434E-12 + key = 62276112129 0.191139575 -1.11721E-12 -1.11719E-12 + key = 64206612221 0.179818383 -1.01944E-12 -1.01942E-12 + key = 66196955976 0.169167746 -9.30218E-13 -9.30202E-13 + key = 68248998489 0.159147945 -8.48809E-13 -8.48794E-13 + key = 70364652363 0.149721616 -7.74525E-13 -7.74511E-13 + key = 72545889490 0.140853609 -7.06741E-13 -7.06729E-13 + key = 74794742888 0.132510854 -6.4489E-13 -6.44879E-13 + key = 77113308597 0.12466224 -5.88452E-13 -5.88441E-13 + key = 79503747632 0.117278499 -5.36953E-13 -5.36943E-13 + key = 81968287998 0.110332097 -4.89961E-13 -4.89952E-13 + key = 84509226764 0.10379713 -4.47081E-13 -4.47073E-13 + key = 87128932210 0.097649229 -4.07955E-13 -4.07947E-13 + key = 89829846027 0.091865468 -3.72252E-13 -3.72245E-13 + key = 92614485596 0.086424278 -3.39674E-13 -3.39668E-13 + key = 95485446337 0.081305371 -3.09947E-13 -3.09941E-13 + key = 98445404123 0.076489656 -2.82822E-13 -2.82817E-13 + key = 1.01497E+11 0.071959176 -2.5807E-13 -2.58066E-13 + key = 1.04643E+11 0.067697036 -2.35485E-13 -2.35481E-13 + key = 1.07887E+11 0.063687342 -2.14876E-13 -2.14872E-13 + key = 1.11232E+11 0.059915143 -1.96071E-13 -1.96068E-13 + key = 1.1468E+11 0.056366371 -1.78912E-13 -1.78908E-13 + key = 1.18235E+11 0.053027792 -1.63254E-13 -1.63251E-13 + key = 1.219E+11 0.049886957 -1.48967E-13 -1.48964E-13 + key = 1.25679E+11 0.046932154 -1.3593E-13 -1.35927E-13 + key = 1.29575E+11 0.044152364 -1.24034E-13 -1.24031E-13 + key = 1.33591E+11 0.041537221 -1.13179E-13 -1.13177E-13 + key = 1.37732E+11 0.039076972 -1.03274E-13 -1.03272E-13 + key = 1.42002E+11 0.036762444 -9.42356E-14 -9.42339E-14 + key = 1.46404E+11 0.034585006 -8.59885E-14 -8.5987E-14 + key = 1.50942E+11 0.032536537 -7.84631E-14 -7.84617E-14 + key = 1.55621E+11 0.030609399 -7.15963E-14 -7.15951E-14 + key = 1.60446E+11 0.028796405 -6.53305E-14 -6.53293E-14 + key = 1.65419E+11 0.027090795 -5.9613E-14 -5.9612E-14 + key = 1.70547E+11 0.025486208 -5.43959E-14 -5.4395E-14 + key = 1.75834E+11 0.02397666 -4.96354E-14 -4.96345E-14 + key = 1.81285E+11 0.022556523 -4.52915E-14 -4.52907E-14 + key = 1.86904E+11 0.021220501 -4.13278E-14 -4.1327E-14 + key = 1.92698E+11 0.019963611 -3.77109E-14 -3.77103E-14 + key = 1.98671E+11 0.018781167 -3.44106E-14 -3.441E-14 + key = 2.0483E+11 0.017668759 -3.13991E-14 -3.13986E-14 + key = 2.1118E+11 0.016622239 -2.86512E-14 -2.86507E-14 + key = 2.17726E+11 0.015637704 -2.61438E-14 -2.61433E-14 + key = 2.24475E+11 0.014711484 -2.38558E-14 -2.38553E-14 + key = 2.31434E+11 0.013840123 -2.1768E-14 -2.17676E-14 + key = 2.38608E+11 0.013020373 -1.98629E-14 -1.98626E-14 + key = 2.46005E+11 0.012249176 -1.81246E-14 -1.81243E-14 + key = 2.53631E+11 0.011523658 -1.65384E-14 -1.65381E-14 + key = 2.61493E+11 0.010841112 -1.5091E-14 -1.50908E-14 + key = 2.69599E+11 0.010198993 -1.37703E-14 -1.37701E-14 + key = 2.77956E+11 0.009594907 -1.25652E-14 -1.2565E-14 + key = 2.86573E+11 0.009026601 -1.14656E-14 -1.14653E-14 + key = 2.95456E+11 0.008491956 -1.04621E-14 -1.04619E-14 + key = 3.04615E+11 0.007988978 -9.54653E-15 -9.54636E-15 + key = 3.14058E+11 0.007515791 -8.71105E-15 -8.7109E-15 + key = 3.23793E+11 0.007070631 -7.94869E-15 -7.94855E-15 + key = 3.3383E+11 0.006651837 -7.25306E-15 -7.25293E-15 + key = 3.44179E+11 0.006257849 -6.6183E-15 -6.61818E-15 + key = 3.54848E+11 0.005887197 -6.03909E-15 -6.03898E-15 + key = 3.65848E+11 0.005538498 -5.51057E-15 -5.51047E-15 + key = 3.77189E+11 0.005210453 -5.02831E-15 -5.02822E-15 + key = 3.88882E+11 0.004901838 -4.58825E-15 -4.58817E-15 + key = 4.00936E+11 0.004611503 -4.1867E-15 -4.18663E-15 + key = 4.13365E+11 0.004338363 -3.8203E-15 -3.82023E-15 + key = 4.26179E+11 0.004081402 -3.48596E-15 -3.4859E-15 + key = 4.3939E+11 0.003839661 -3.18088E-15 -3.18083E-15 + key = 4.53011E+11 0.003612238 -2.90251E-15 -2.90245E-15 + key = 4.67054E+11 0.003398285 -2.64849E-15 -2.64844E-15 + key = 4.81532E+11 0.003197005 -2.4167E-15 -2.41666E-15 + key = 4.96459E+11 0.003007646 -2.2052E-15 -2.20516E-15 + key = 5.11849E+11 0.002829504 -2.01221E-15 -2.01218E-15 + key = 5.27716E+11 0.002661912 -1.83611E-15 -1.83608E-15 + key = 5.44074E+11 0.002504247 -1.67542E-15 -1.67539E-15 + key = 5.6094E+11 0.002355921 -1.5288E-15 -1.52877E-15 + key = 5.78329E+11 0.00221638 -1.395E-15 -1.39498E-15 + key = 5.96256E+11 0.002085103 -1.27292E-15 -1.27289E-15 + key = 6.1474E+11 0.001961603 -1.16152E-15 -1.1615E-15 + key = 6.33796E+11 0.001845417 -1.05986E-15 -1.05985E-15 + key = 6.53443E+11 0.001736113 -9.67109E-16 -9.67092E-16 + key = 6.73699E+11 0.001633283 -8.82472E-16 -8.82456E-16 + key = 6.94583E+11 0.001536544 -8.05241E-16 -8.05227E-16 + key = 7.16115E+11 0.001445534 -7.3477E-16 -7.34757E-16 + key = 7.38314E+11 0.001359915 -6.70465E-16 -6.70454E-16 + key = 7.61201E+11 0.001279368 -6.11789E-16 -6.11778E-16 + key = 7.84797E+11 0.001203591 -5.58248E-16 -5.58238E-16 + key = 8.09125E+11 0.001132302 -5.09392E-16 -5.09383E-16 + key = 8.34207E+11 0.001065236 -4.64812E-16 -4.64804E-16 + key = 8.60067E+11 0.001002142 -4.24133E-16 -4.24126E-16 + key = 8.86728E+11 0.000942785 -3.87015E-16 -3.87008E-16 + key = 9.14216E+11 0.000886944 -3.53145E-16 -3.53139E-16 + key = 9.42556E+11 0.00083441 -3.22239E-16 -3.22233E-16 + key = 9.71774E+11 0.000784988 -2.94038E-16 -2.94033E-16 + key = 1.0019E+12 0.000738493 -2.68305E-16 -2.683E-16 + key = 1.03296E+12 0.000694752 -2.44824E-16 -2.44819E-16 + key = 1.06498E+12 0.000653602 -2.23398E-16 -2.23394E-16 + key = 1.09799E+12 0.000614889 -2.03847E-16 -2.03843E-16 + key = 1.13203E+12 0.00057847 -1.86007E-16 -1.86004E-16 + key = 1.16712E+12 0.000544207 -1.69728E-16 -1.69725E-16 + key = 1.2033E+12 0.000511973 -1.54874E-16 -1.54872E-16 + key = 1.2406E+12 0.000481649 -1.4132E-16 -1.41318E-16 + key = 1.27906E+12 0.000453121 -1.28953E-16 -1.2895E-16 + key = 1.31871E+12 0.000426283 -1.17667E-16 -1.17665E-16 + key = 1.35958E+12 0.000401034 -1.07369E-16 -1.07368E-16 + key = 1.40173E+12 0.000377281 -9.79729E-17 -9.79711E-17 + key = 1.44518E+12 0.000354935 -8.93987E-17 -8.93971E-17 + key = 1.48998E+12 0.000333912 -8.15748E-17 -8.15734E-17 + key = 1.53617E+12 0.000314134 -7.44357E-17 -7.44344E-17 + key = 1.58379E+12 0.000295528 -6.79214E-17 -6.79202E-17 + key = 1.63289E+12 0.000278024 -6.19772E-17 -6.19761E-17 + key = 1.6835E+12 0.000261557 -5.65532E-17 -5.65522E-17 + key = 1.73569E+12 0.000246065 -5.16039E-17 -5.1603E-17 + key = 1.7895E+12 0.00023149 -4.70877E-17 -4.70869E-17 + key = 1.84497E+12 0.000217779 -4.29668E-17 -4.2966E-17 + key = 1.90216E+12 0.00020488 -3.92065E-17 -3.92058E-17 + key = 1.96113E+12 0.000192745 -3.57753E-17 -3.57746E-17 + key = 2.02192E+12 0.000181329 -3.26444E-17 -3.26438E-17 + key = 2.0846E+12 0.000170589 -2.97875E-17 -2.97869E-17 + key = 2.14922E+12 0.000160485 -2.71806E-17 -2.71801E-17 + key = 2.21584E+12 0.000150979 -2.48018E-17 -2.48014E-17 + key = 2.28453E+12 0.000142037 -2.26313E-17 -2.26309E-17 + key = 2.35535E+12 0.000133624 -2.06507E-17 -2.06503E-17 + key = 2.42836E+12 0.000125709 -1.88434E-17 -1.88431E-17 + key = 2.50364E+12 0.000118264 -1.71943E-17 -1.7194E-17 + key = 2.58125E+12 0.000111259 -1.56895E-17 -1.56893E-17 + key = 2.66126E+12 0.000104669 -1.43164E-17 -1.43162E-17 + key = 2.74376E+12 9.84694E-05 -1.30635E-17 -1.30633E-17 + key = 2.82881E+12 9.2637E-05 -1.19203E-17 -1.192E-17 + key = 2.9165E+12 8.71502E-05 -1.0877E-17 -1.08768E-17 + key = 3.00691E+12 8.19883E-05 -9.92513E-18 -9.92495E-18 + key = 3.10013E+12 7.71321E-05 -9.05652E-18 -9.05636E-18 + key = 3.19623E+12 7.25636E-05 -8.26393E-18 -8.26378E-18 + key = 3.29531E+12 6.82656E-05 -7.5407E-18 -7.54057E-18 + key = 3.39746E+12 6.42223E-05 -6.88077E-18 -6.88064E-18 + key = 3.50278E+12 6.04184E-05 -6.27859E-18 -6.27848E-18 + key = 3.61136E+12 5.68398E-05 -5.72911E-18 -5.72901E-18 + key = 3.72331E+12 5.34732E-05 -5.22772E-18 -5.22763E-18 + key = 3.83873E+12 5.0306E-05 -4.77021E-18 -4.77013E-18 + key = 3.95772E+12 4.73263E-05 -4.35274E-18 -4.35266E-18 + key = 4.08041E+12 4.45232E-05 -3.97181E-18 -3.97174E-18 + key = 4.2069E+12 4.18861E-05 -3.62421E-18 -3.62415E-18 + key = 4.33731E+12 3.94052E-05 -3.30703E-18 -3.30697E-18 + key = 4.47176E+12 3.70712E-05 -3.01761E-18 -3.01756E-18 + key = 4.61038E+12 3.48755E-05 -2.75352E-18 -2.75348E-18 + key = 4.7533E+12 3.28098E-05 -2.51255E-18 -2.5125E-18 + key = 4.90064E+12 3.08665E-05 -2.29266E-18 -2.29262E-18 + key = 5.05256E+12 2.90383E-05 -2.09201E-18 -2.09198E-18 + key = 5.20918E+12 2.73183E-05 -1.90893E-18 -1.9089E-18 + key = 5.37066E+12 2.57003E-05 -1.74187E-18 -1.74184E-18 + key = 5.53715E+12 2.4178E-05 -1.58943E-18 -1.5894E-18 + key = 5.7088E+12 2.2746E-05 -1.45033E-18 -1.4503E-18 + key = 5.88576E+12 2.13987E-05 -1.3234E-18 -1.32337E-18 + key = 6.06822E+12 2.01313E-05 -1.20758E-18 -1.20756E-18 + key = 6.25632E+12 1.89389E-05 -1.1019E-18 -1.10188E-18 + key = 6.45027E+12 1.78172E-05 -1.00546E-18 -1.00545E-18 + key = 6.65022E+12 1.67619E-05 -9.17469E-19 -9.17453E-19 + key = 6.85637E+12 1.5769E-05 -8.37176E-19 -8.37161E-19 + key = 7.06891E+12 1.4835E-05 -7.63909E-19 -7.63896E-19 + key = 7.28804E+12 1.39564E-05 -6.97055E-19 -6.97043E-19 + key = 7.51396E+12 1.31297E-05 -6.36052E-19 -6.3604E-19 + key = 7.74689E+12 1.23521E-05 -5.80387E-19 -5.80376E-19 + key = 7.98703E+12 1.16204E-05 -5.29594E-19 -5.29584E-19 + key = 8.23462E+12 1.09322E-05 -4.83246E-19 -4.83237E-19 + key = 8.48989E+12 1.02847E-05 -4.40954E-19 -4.40946E-19 + key = 8.75307E+12 9.6755E-06 -4.02363E-19 -4.02356E-19 + key = 9.0244E+12 9.10242E-06 -3.6715E-19 -3.67143E-19 + key = 9.30415E+12 8.56328E-06 -3.35018E-19 -3.35013E-19 + key = 9.59257E+12 8.05608E-06 -3.05699E-19 -3.05694E-19 + key = 9.88993E+12 7.57892E-06 -2.78945E-19 -2.7894E-19 + key = 1.01965E+13 7.13002E-06 -2.54533E-19 -2.54529E-19 + key = 1.05126E+13 6.70771E-06 -2.32257E-19 -2.32253E-19 + key = 1.08385E+13 6.31041E-06 -2.11931E-19 -2.11927E-19 + key = 1.11745E+13 5.93664E-06 -1.93384E-19 -1.9338E-19 + key = 1.15209E+13 5.58502E-06 -1.7646E-19 -1.76456E-19 + key = 1.1878E+13 5.25422E-06 -1.61017E-19 -1.61014E-19 + key = 1.22462E+13 4.94301E-06 -1.46925E-19 -1.46922E-19 + key = 1.26258E+13 4.65023E-06 -1.34067E-19 -1.34064E-19 + key = 1.30172E+13 4.3748E-06 -1.22334E-19 -1.22332E-19 + key = 1.34207E+13 4.11568E-06 -1.11628E-19 -1.11626E-19 + key = 1.38368E+13 3.87191E-06 -1.01858E-19 -1.01857E-19 + key = 1.42657E+13 3.64258E-06 -9.29441E-20 -9.29424E-20 + key = 1.47079E+13 3.42683E-06 -8.481E-20 -8.48085E-20 + key = 1.51638E+13 3.22386E-06 -7.73877E-20 -7.73864E-20 + key = 1.56339E+13 3.03291E-06 -7.06151E-20 -7.06138E-20 + key = 1.61185E+13 2.85327E-06 -6.44351E-20 -6.4434E-20 + key = 1.66182E+13 2.68427E-06 -5.8796E-20 -5.87949E-20 + key = 1.71333E+13 2.52528E-06 -5.36504E-20 -5.36494E-20 + key = 1.76645E+13 2.37571E-06 -4.89551E-20 -4.89543E-20 + key = 1.8212E+13 2.23499E-06 -4.46708E-20 -4.467E-20 + key = 1.87766E+13 2.10262E-06 -4.07614E-20 -4.07606E-20 + key = 1.93586E+13 1.97808E-06 -3.71941E-20 -3.71934E-20 + key = 1.99587E+13 1.86092E-06 -3.3939E-20 -3.39384E-20 + key = 2.05775E+13 1.75069E-06 -3.09688E-20 -3.09682E-20 + key = 2.12153E+13 1.647E-06 -2.82585E-20 -2.8258E-20 + key = 2.1873E+13 1.54945E-06 -2.57854E-20 -2.5785E-20 + key = 2.2551E+13 1.45768E-06 -2.35288E-20 -2.35284E-20 + key = 2.32501E+13 1.37134E-06 -2.14697E-20 -2.14693E-20 + key = 2.39708E+13 1.29011E-06 -1.95907E-20 -1.95904E-20 + key = 2.47139E+13 1.2137E-06 -1.78762E-20 -1.78759E-20 + key = 2.548E+13 0 0 0 + } + + VABmaxHeight = 55 // was 55 + VABmaxDistance = 28 // was 28 + VABminDistance = 0.01 + SPHmaxDistance = 35 // was 35 + SPHminDistance = 0.01 + editorExtentsMult = 10 + max3DlineDrawDist = 20000 // was 1000 + + timeWarpRates + { + rate1 = 10 + rate2 = 100 + rate3 = 1000 + rate4 = 10000 + rate5 = 100000 + rate6 = 1000000 + rate7 = 6000000 + } +}