Advertisement
Crisenpuer

Crisenpuer Info Panel

Mar 17th, 2024 (edited)
794
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // !runscript 9umWS0cJ
  2.  
  3. CIPtoggle on.
  4.  
  5. if not (defined CIPpaneloffset) {set CIPpaneloffset to 0.}
  6.  
  7. set terminal:width to 45.
  8.  
  9. declare function recalc_cap {
  10.     set CIPlfcap to -1.
  11.     set CIPoxcap to -1.
  12.     set CIPeccap to -1.
  13.     set CIPmpcap to -1.
  14.     set CIPxgcap to -1.
  15.     set CIPorcap to -1.
  16.  
  17.     set CIPresoff to 0.
  18.  
  19.     print "Recalculating resources capacity..".
  20.     for rr in ship:resources if rr:name = "LiquidFuel" set CIPlfcap to rr:capacity.
  21.     for rr in ship:resources if rr:name = "Oxidizer" set CIPoxcap to rr:capacity.
  22.     for rr in ship:resources if rr:name = "ElectricCharge" set CIPeccap to rr:capacity.
  23.     for rr in ship:resources if rr:name = "MonoPropellant" set CIPmpcap to rr:capacity.
  24.     for rr in ship:resources if rr:name = "XenonGas" set CIPeccap to rr:capacity.
  25.     for rr in ship:resources if rr:name = "Ore" set CIPorcap to rr:capacity.
  26.  
  27.     if not (CIPlfcap = -1) {set CIPlffnd to True. set CIPlfoff to 0.} else {set CIPlffnd to false. set CIPresoff to CIPresoff-1. set CIPlfoff to -1.}.
  28.     if not (CIPoxcap = -1) {set CIPoxfnd to True. set CIPoxoff to 0.} else {set CIPoxfnd to false. set CIPresoff to CIPresoff-1. set CIPoxoff to -1.}.
  29.     if not (CIPeccap = -1) {set CIPecfnd to True. set CIPecoff to 0.} else {set CIPoxfnd to false. set CIPresoff to CIPresoff-1. set CIPecoff to -1.}.
  30.     if not (CIPmpcap = -1) {set CIPmpfnd to True. set CIPmpoff to 0.} else {set CIPmpfnd to false. set CIPresoff to CIPresoff-1. set CIPmpoff to -1.}.
  31.     if not (CIPxgcap = -1) {set CIPxgfnd to True. set CIPxgoff to 0.} else {set CIPxgfnd to false. set CIPresoff to CIPresoff-1. set CIPxgoff to -1.}.
  32.     if not (CIPxgcap = -1) {set CIPorfnd to True. set CIPoroff to 0.} else {set CIPorfnd to false. set CIPresoff to CIPresoff-1. set CIPoroff to -1.}.
  33.  
  34.     set terminaldiff to terminal:height - (CIPpaneloffset+17+CIPresoff+5).
  35.     if terminaldiff < 0 set terminal:height to terminal:height-terminaldiff.
  36. }
  37.  
  38. declare function get_perc {
  39.     parameter capacity, amount.
  40.     set rat to amount/capacity.
  41.     if rat=1 {
  42.         set CIPpercent to "FULL".
  43.     } else if rat=0 {
  44.         set CIPpercent to "NONE".
  45.     } else {
  46.         set CIPpercent to round(100*rat,1) + "%".
  47.     }
  48.     return CIPpercent.
  49. }
  50.  
  51. declare function calc_alt_units {
  52.     parameter alt, unt.
  53.  
  54.     if unt = "m" {
  55.         return round(alt, 1) + " m".
  56.     } else if unt = "km" {
  57.         return round(alt/1000, 1) + " km".
  58.     } else if unt = "Mm" {
  59.         return round(alt/1000^2, 1) + " Mm".
  60.     } else if unt = "Gm" {
  61.         return round(alt/1000^3, 1) + " Gm".
  62.     } else if unt = "Tm" {
  63.         return round(alt/1000^4, 1) + " Tm".
  64.     } else if unt = "Pm" {
  65.         return round(alt/1000^5, 1) + " Pm".
  66.     } else if unt = "Em"{
  67.         return round(alt/1000^6, 1) + " Em".
  68.     } else {
  69.         return "INVALID_UNIT [m/km/Mm/Gm/Tm/Pm/Em]".
  70.     }
  71. }
  72.  
  73. set lightspeed to 299792458.
  74.  
  75. declare function calc_spd_units {
  76.     parameter spd, unt.
  77.  
  78.     if unt = "m" {
  79.         return round(spd, 1) + " m/s".
  80.     } else if unt = "km" {
  81.         return round(spd/1000, 1) + " km/s".
  82.     } else if unt = "Mm" {
  83.         return round(spd/1000^2, 1) + " Mm/s".
  84.     } else if unt = "Gm" {
  85.         return round(spd/1000^3, 1) + " Gm/s".
  86.     } else if unt = "Tm" {
  87.         return round(spd/1000^4, 1) + " Tm/s".
  88.     } else if unt = "Pm" {
  89.         return round(spd/1000^5, 1) + " Pm/s".
  90.     } else if unt = "Em"{
  91.         return round(spd/1000^6, 1) + " Em/s".
  92.     } else if unt = "c" {
  93.         return round(spd/lightspeed, 3) + " c".
  94.     } else {
  95.         return "INVALID_UNIT [m/km/Mm/Gm/Tm/Pm/Em/c]".
  96.     }
  97. }
  98.  
  99. declare global CIPrecalc to false.
  100. declare global CIPaltunit to "m".
  101. declare global CIPspdunit to "m".
  102. recalc_cap().
  103.  
  104. when CIPrecalc then {
  105.     set CIPrecalc to false.
  106.     recalc_cap().
  107. }
  108.  
  109. on round(kuniverse:realtime * 12) {
  110.     print("============================================="):padright(terminal:width) at(0,CIPpaneloffset).
  111.     print("            CRISENPUER INFO PANEL            "):padright(terminal:width) at(0,CIPpaneloffset+1).
  112.     print("============================================="):padright(terminal:width) at(0,CIPpaneloffset+2).
  113.     print("------------------RESOURCES------------------"):padright(terminal:width) at(0,CIPpaneloffset+3).
  114.     if not (CIPlfcap = -1) {print("    LiquidFuel: [ " + get_perc(CIPlfcap, ship:liquidfuel) + " ]  " + round(ship:liquidfuel) + " / " + round(CIPlfcap)):padright(terminal:width) at(0,CIPpaneloffset+4+CIPlfoff).}.
  115.     if not (CIPoxcap = -1) {print("      Oxidizer: [ " + get_perc(CIPoxcap, ship:oxidizer) + " ]  " + round(ship:oxidizer) + " / " + round(CIPoxcap)):padright(terminal:width) at(0,CIPpaneloffset+5+CIPoxoff).}.
  116.     if not (CIPeccap = -1) {print("ElectricCharge: [ " + get_perc(CIPeccap, ship:electriccharge) + " ]  " + round(ship:electriccharge) + " / " + round(CIPeccap)):padright(terminal:width) at(0,CIPpaneloffset+6+CIPecoff).}.
  117.     if not (CIPmpcap = -1) {print("MonoPropellant: [ " + get_perc(CIPmpcap, ship:monopropellant) + " ]  " + round(ship:monopropellant) + " / " + round(CIPmpcap)):padright(terminal:width) at(0,CIPpaneloffset+7+CIPmpoff).}.
  118.     if not (CIPxgcap = -1) {print("      XenonGas: [ " + get_perc(CIPxgcap, ship:xenongas) + " ]  " + round(ship:xenongas) + " / " + round(CIPxgcap)):padright(terminal:width) at(0,CIPpaneloffset+8+CIPxgoff).}.
  119.     if not (CIPorcap = -1) {print("           Ore: [ " + get_perc(CIPorcap, ship:ore) + " ]  " + round(ship:ore) + " / " + round(CIPorcap)):padright(terminal:width) at(0,CIPpaneloffset+9+CIPoroff).}.
  120.     print("-----------------FLIGHT-INFO-----------------"):padright(terminal:width) at(0,CIPpaneloffset+10+CIPresoff).
  121.     print("   GroundSpeed:   " + calc_spd_units(ship:groundspeed, CIPspdunit)):padright(terminal:width+11) at(0,CIPpaneloffset+11+CIPresoff).
  122.     print("      AirSpeed:   " + calc_spd_units(ship:airspeed, CIPspdunit)):padright(terminal:width) at(0,CIPpaneloffset+12+CIPresoff).
  123.     print("    OrbitSpeed:   " + calc_spd_units(ship:velocity:orbit:mag, CIPspdunit)):padright(terminal:width) at(0,CIPpaneloffset+13+CIPresoff).
  124.     print("      Altitude:   " + calc_alt_units(ship:altitude, CIPaltunit)):padright(terminal:width) at(0,CIPpaneloffset+14+CIPresoff).
  125.     print("      Apoapsis:   " + calc_alt_units(ship:apoapsis, CIPaltunit)):padright(terminal:width) at(0,CIPpaneloffset+15+CIPresoff).
  126.     print("     Periapsis:   " + calc_alt_units(ship:periapsis, CIPaltunit)):padright(terminal:width) at(0,CIPpaneloffset+16+CIPresoff).
  127.     print("============================================="):padright(terminal:width) at(0,CIPpaneloffset+17+CIPresoff).
  128.  
  129.     return CIPtoggle.
  130. }
  131.  
  132. set CIPpanelsize to CIPpaneloffset+18.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement