Skip to content

Commit

Permalink
0.0.90.1
Browse files Browse the repository at this point in the history
First release.  Built from 64k_1.0.90.5

Follow included instructions for installation
  • Loading branch information
Paul-kingtiger committed Feb 18, 2015
1 parent a04cb85 commit 55433a0
Show file tree
Hide file tree
Showing 16 changed files with 1,483 additions and 0 deletions.
26 changes: 26 additions & 0 deletions DDSLoader/DDSLoader.cfg
Original file line number Diff line number Diff line change
@@ -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/.*
//}

}
Binary file added DDSLoader/DDSLoader.dll
Binary file not shown.
20 changes: 20 additions & 0 deletions DDSLoader/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -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.
Binary file added K2 Installation.pdf
Binary file not shown.
Binary file added K2 License.pdf
Binary file not shown.
92 changes: 92 additions & 0 deletions K2/Compatability/DeadlyReentry_64k.cfg
Original file line number Diff line number Diff line change
@@ -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
}
}
}
10 changes: 10 additions & 0 deletions K2/Compatability/RemoteTech_64k.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
@PART[*]:HAS[@MODULE[ModuleRTAntenna],!MODULE[ModuleCommand]]:NEEDS[RemoteTech]:Final
{
@MODULE[ModuleRTAntenna]
{
@Mode0DishRange *= 2
@Mode1DishRange *= 2
@Mode0OmniRange *= 2
@Mode1OmniRange *= 2
}
}
25 changes: 25 additions & 0 deletions K2/K2.version
Original file line number Diff line number Diff line change
@@ -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
}
}
Loading

0 comments on commit 55433a0

Please sign in to comment.