1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 | /////////////////////////////////////////////////////////////////////////////// // // VOID - Vessel Orbital Information Display for Kerbal Space Program // Copyright (C) 2012 Iannic-ann-od // Copyright (C) 2013 Toadicus // // 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 <http://www.gnu.org/licenses/>. // /////////////////////////////////////////////////////////////////////////////// // // Much, much credit to Younata, Adammada, Nivvydaskrl and to all the authors // behind MechJeb, RemoteTech Relay Network, ISA MapSat, and Protractor for some // invaluable functions and making your nicely written code available to learn from. // /////////////////////////////////////////////////////////////////////////////// // // This software uses VesselSimulator and Engineer.Extensions from Engineer Redux. // Engineer Redux (c) 2013 cybutek // Used by permission. // /////////////////////////////////////////////////////////////////////////////// using System; using System.Collections.Generic; using System.Linq; using UnityEngine; using Engineer.VesselSimulator; namespace VOID { [KSPAddon(KSPAddon.Startup.Flight, false)] public class VOIDFlightMaster : MonoBehaviour { protected VOID_Core Core; public void Awake() { Tools.PostDebugMessage ("VOIDLightMaster: Waking up."); this.Core = (VOID_Core)VOID_Core.Instance; this.Core.StartGUI (); Tools.PostDebugMessage ("VOIDFlightMaster: Awake."); } public void Update() { if (this.Core == null) { return; } this.Core.Update (); } public void FixedUpdate() { if (this.Core == null) { return; } this.Core.FixedUpdate (); } // private bool debugging = false; // // private int window_base_id = -96518722; // // private double G_constant = .0000000000667; // // public Vessel vessel; // private VOIDLabels label_strings = new VOIDLabels(); // // private List<CelestialBody> all_bodies = new List<CelestialBody>(); // private List<VesselType> all_vessel_types = new List<VesselType>(); // // //Windows // protected Rect main_window_pos = new Rect(Screen.width / 2, Screen.height / 2, 10f, 10f); //VOID main // protected Rect void_window_pos = new Rect((Screen.width / 2) - 20, (Screen.height / 2) - 10, 10, 10); //vessel orbital info // protected Rect atmo_window_pos = new Rect((Screen.width / 2) - 40, (Screen.height / 2) - 20, 10, 10); //atmospheric info // protected Rect transfer_window_pos = new Rect((Screen.width / 2) - 60, (Screen.height / 2) - 30, 10, 10); //transfer angle info // protected Rect vessel_register_window_pos = new Rect((Screen.width / 2) - 80, (Screen.height / 2) - 40, 10, 10); //neighboring vessels // protected Rect data_logging_window_pos = new Rect((Screen.width / 2) - 100, (Screen.height / 2) - 50, 10, 10); //data logging & time // protected Rect vessel_info_window_pos = new Rect((Screen.width / 2) - 120, (Screen.height / 2) - 60, 10, 10); //vessel info // protected Rect misc_window_pos = new Rect((Screen.width / 2) - 160, (Screen.height / 2) - 80, 10, 10); //miscellaneous // protected Rect body_op_window_pos = new Rect((Screen.width / 2) - 140, (Screen.height / 2) - 70, 10, 10); //body orbital/physical info // protected Rect rendezvous_info_window_pos = new Rect((Screen.width / 2) - 180, (Screen.height / 2) - 90, 10, 10); //target vessel info // protected Rect lab_window_pos = new Rect(0, 0, 10, 10); //The Lab // // //Icons // // // //GUI // private bool gui_running = false; // private int skin_index = 2; // private bool main_gui_minimized = false; // private bool gui_styles_set = false; // // //GUIStyles // //private GUIStyle label_txt_left; // private GUIStyle label_txt_center; // private GUIStyle label_txt_center_bold; // private GUIStyle label_txt_right; //needed for body OP alignment // //private GUIStyle button_txt_left; // //private GUIStyle button_txt_center; // //private GUIStyle button_txt_right; // // //private GUIStyle gs_tooltip; // // //Window toggles // private bool void_module = false; // private bool extended_orbital_info = false; // private bool tad_module = false; // private bool atmo_module = false; // private bool data_time_module = false; // private bool vessel_info_module = false; // private bool test_module = false; // private bool misc_module = false; // private bool vessel_register_module = false; // public bool toggleHUDModule = false; // private bool celestial_body_info_module = false; // private bool rendezvous_module = false; // // //Celestial body info window // private bool body_op_show_orbital = true; // private bool body_op_show_physical = true; // private int body_OP_body_1_index = 1; // private int body_OP_body_2_index = 2; // private CelestialBody body_OP_selected_body_1 = new CelestialBody(); // private CelestialBody body_OP_selected_body_2 = new CelestialBody(); // // //Data logging/time & cfg update // private bool csv_logging = false; // private List<string> csvList = new List<string>(); // private float csvWriteTimer = 0; // private float csvCollectTimer = 0; // private bool first_write = true; // private float csv_log_interval; // private string csv_log_interval_str = "0.5"; // private float cfg_update_timer = 0; // private double stopwatch1; // private bool stopwatch1_running = false; // // //Vessel Register // private Vector2 vessel_register_scroll_pos = new Vector2(); // private Vessel vesreg_selected_vessel; // private bool target_vessel_extended_orbital_info = false; // private VesselType vessel_register_vessel_type = VesselType.Ship; // private string vessel_register_vessel_situation = "Orbiting"; // private CelestialBody vessel_register_selected_body = null; // private int vessel_register_body_index = 0; // private int vessel_register_vessel_type_index = 0; // private bool hide_vesreg_info = false; //in rendezvous window // // //Miscellaneous window & http // private string version_name = "VOID "; // private string this_version = "0.9.9"; // private int configVersion = 1; // private bool hide_on_pause = false; // private bool changing_icon_pos = false; // private bool show_tooltips = true; // public bool disable_power_usage = true; // // // Power consumption // private float power_request_amount = 0.01f; // public bool power_toggle = true; // public bool power_available = false; // // // VesselSimulator // Stage[] stages = new Stage[0]; // // // Modules // VOID_HUD moduleHUD; // // //Debugging / limbo // private List<CelestialBody> tad_selected_bodies = new List<CelestialBody>(); //Bodies selected in Transfer Angle Info // private bool run_once = true; //for Update() // private string settings_path; // // private enum languages { EN }; // private languages user_lang = languages.EN; // private int user_lang_index; // // public VOIDFlightMaster() : base() // { // Tools.PostDebugMessage ("Constructing VOID."); // } // // ~VOIDFlightMaster() // { // Tools.PostDebugMessage ("Destructing VOID."); // } // // private void Innsewerants_writeData(string[] csvArray) // { // var efile = KSP.IO.File.AppendText<VOIDFlightMaster>(vessel.vesselName + "_data.csv", null); // foreach (string line in csvArray) // { // efile.Write(line); // } // efile.Close(); // } // // private void line_to_csvList() // { // //called if logging is on and interval has passed // //writes one line to the csvList // // string line = ""; // if (first_write && !KSP.IO.File.Exists<VOIDFlightMaster>(vessel.vesselName + "_data.csv", null)) // { // first_write = false; // line += "Mission Elapsed Time (s);Altitude ASL (m);Altitude above terrain (m);Orbital Velocity (m/s);Surface Velocity (m/s);Vertical Speed (m/s);Horizontal Speed (m/s);Gee Force (gees);Temperature (°C);Gravity (m/s²);Atmosphere Density (g/m³);\n"; // } // //Mission time // line += vessel.missionTime.ToString("F3") + ";"; // //Altitude ASL // line += vessel.orbit.altitude.ToString("F3") + ";"; // //Altitude (true) // double alt_true = vessel.orbit.altitude - vessel.terrainAltitude; // if (vessel.terrainAltitude < 0) alt_true = vessel.orbit.altitude; // line += alt_true.ToString("F3") + ";"; // //Orbital velocity // line += vessel.orbit.vel.magnitude.ToString("F3") + ";"; // //surface velocity // line += vessel.srf_velocity.magnitude.ToString("F3") + ";"; // //vertical speed // line += vessel.verticalSpeed.ToString("F3") + ";"; // //horizontal speed // line += vessel.horizontalSrfSpeed.ToString("F3") + ";"; // //gee force // line += vessel.geeForce.ToString("F3") + ";"; // //temperature // line += vessel.flightIntegrator.getExternalTemperature().ToString("F2") + ";"; // //gravity // double r_vessel = vessel.mainBody.Radius + vessel.mainBody.GetAltitude(vessel.findWorldCenterOfMass()); // double g_vessel = (G_constant * vessel.mainBody.Mass) / Math.Pow(r_vessel, 2); // line += g_vessel.ToString("F3") + ";"; // //atm density // line += (vessel.atmDensity * 1000).ToString("F3") + ";"; // line += "\n"; // if (csvList.Contains(line) == false) csvList.Add(line); // csvCollectTimer = 0f; // } // // private void main_csv() // { // // CSV Logging // // from ISA MapSat // if (csv_logging) // { // //data logging is on // //increment timers // csvWriteTimer += Time.deltaTime; // csvCollectTimer += Time.deltaTime; // } // else // { // //data logging is off // //reset any timers and clear anything from csvList // csvWriteTimer = 0f; // csvCollectTimer = 0f; // if (csvList.Count > 0) csvList.Clear(); // } // // if (csv_logging && csvCollectTimer >= csv_log_interval && vessel.situation != Vessel.Situations.PRELAUNCH) // { // //data logging is on, vessel is not prelaunch, and interval has passed // //write a line to the list // line_to_csvList(); //write to the csv // } // // if (csvList.Count != 0 && csvWriteTimer >= 15f && csv_logging) // { // // csvList is not empty and interval between writings to file has elapsed // //write it // string[] csvData; // csvData = (string[])csvList.ToArray(); // Innsewerants_writeData(csvData); // csvList.Clear(); // csvWriteTimer = 0f; // } // } // // private void load_language() // { // ConfigNode lang_node = ConfigNode.Load(settings_path + "lang.dat"); // // if (lang_node != null) // { // if (lang_node.HasNode(user_lang.ToString())) // { // ConfigNode _lang = lang_node.GetNode(user_lang.ToString()); // // if (_lang.HasValue("void_primary")) label_strings.void_primary = _lang.GetValue("void_primary"); // if (_lang.HasValue("void_altitude_asl")) label_strings.void_altitude_asl = _lang.GetValue("void_altitude_asl"); // if (_lang.HasValue("void_velocity")) label_strings.void_velocity = _lang.GetValue("void_velocity"); // if (_lang.HasValue("void_apoapsis")) label_strings.void_apoapsis = _lang.GetValue("void_apoapsis"); // if (_lang.HasValue("void_periapsis")) label_strings.void_periapsis = _lang.GetValue("void_periapsis"); // } // } // else // { // //lang_node == null // // Toadicus edit: added settings_path to the debug message for extra verbosity // Debug.LogError("[VOID] Unable to load file " + settings_path + "lang.dat!"); // } // } // // private void load_icons() // { // // Toadicus edit: changed the directory to VOID instead of RBR, because RBR seemed confusing. // string path_icon_on = "VOID/Textures/void_icon_on"; // string path_icon_off = "VOID/Textures/void_icon_off"; // // if (GameDatabase.Instance.ExistsTexture(path_icon_on) && GameDatabase.Instance.ExistsTexture(path_icon_off)) // { // if (debugging) Debug.Log("icon textures exist, loading..."); // void_icon_on = GameDatabase.Instance.GetTexture(path_icon_on, false); // void_icon_off = GameDatabase.Instance.GetTexture(path_icon_off, false); // if (main_gui_minimized) void_icon = void_icon_off; // else void_icon = void_icon_on; // } // else // { // if (debugging) Debug.LogError("[VOID] icon texture file(s) missing"); // //void_icons_loaded = false; // } // } // // private void load_old_settings() // { // if (KSP.IO.File.Exists<VOIDFlightMaster>("VOID.cfg", null)) // { // string[] data = KSP.IO.File.ReadAllLines<VOIDFlightMaster>("VOID.cfg", null); // string[] name_val; // string[] temp; // string name = ""; // string val = ""; // // foreach (string s in data) // { // name_val = s.Split('='); // name = name_val[0].Trim(); // val = name_val[1].Trim(); // // if (val != "") // { // if (name == "MAIN WINDOW POS") // { // temp = val.Split(','); // //window_0_pos = new Rect(Convert.ToSingle(temp[0].Trim()), Convert.ToSingle(temp[1].Trim()), 10, 10); // main_window_pos.x = Convert.ToSingle(temp[0].Trim()); // main_window_pos.y = Convert.ToSingle(temp[1].Trim()); // } // if (name == "VOID WINDOW POS") // { // temp = val.Split(','); // void_window_pos = new Rect(Convert.ToSingle(temp[0].Trim()), Convert.ToSingle(temp[1].Trim()), 10f, 10f); // } // if (name == "ATMO WINDOW POS") // { // temp = val.Split(','); // atmo_window_pos = new Rect(Convert.ToSingle(temp[0].Trim()), Convert.ToSingle(temp[1].Trim()), 10f, 10f); // } // if (name == "TAD WINDOW POS") // { // temp = val.Split(','); // transfer_window_pos = new Rect(Convert.ToSingle(temp[0].Trim()), Convert.ToSingle(temp[1].Trim()), 10f, 10f); // } // if (name == "VESREG WINDOW POS") // { // temp = val.Split(','); // vessel_register_window_pos = new Rect(Convert.ToSingle(temp[0].Trim()), Convert.ToSingle(temp[1].Trim()), 10f, 10f); // } // if (name == "DATATIME WINDOW POS") // { // temp = val.Split(','); // data_logging_window_pos = new Rect(Convert.ToSingle(temp[0].Trim()), Convert.ToSingle(temp[1].Trim()), 10f, 10f); // } // if (name == "VESINFO WINDOW POS") // { // temp = val.Split(','); // vessel_info_window_pos = new Rect(Convert.ToSingle(temp[0].Trim()), Convert.ToSingle(temp[1].Trim()), 10f, 10f); // } // if (name == "MISC WINDOW POS") // { // temp = val.Split(','); // misc_window_pos = new Rect(Convert.ToSingle(temp[0].Trim()), Convert.ToSingle(temp[1].Trim()), 10f, 10f); // } // if (name == "CELINFO WINDOW POS") // { // temp = val.Split(','); // body_op_window_pos = new Rect(Convert.ToSingle(temp[0].Trim()), Convert.ToSingle(temp[1].Trim()), 10f, 10f); // } // if (name == "RENDEZVOUS WINDOW POS") // { // temp = val.Split(','); // rendezvous_info_window_pos = new Rect(Convert.ToSingle(temp[0].Trim()), Convert.ToSingle(temp[1].Trim()), 10f, 10f); // } // if (name == "ICON POS") // { // temp = val.Split(','); // main_icon_pos = new Rect(Convert.ToSingle(temp[0].Trim()), Convert.ToSingle(temp[1].Trim()), 30f, 30f); // } // if (name == "HUD MODULE") toggleHUDModule = Boolean.Parse(val); // if (name == "VOID MODULE") void_module = Boolean.Parse(val); // if (name == "ATMO MODULE") atmo_module = Boolean.Parse(val); // if (name == "TAD MODULE") tad_module = Boolean.Parse(val); // if (name == "VESREG MODULE") vessel_register_module = Boolean.Parse(val); // if (name == "DATATIME MODULE") data_time_module = Boolean.Parse(val); // if (name == "VESINFO MODULE") vessel_info_module = Boolean.Parse(val); // if (name == "MISC MODULE") misc_module = Boolean.Parse(val); // if (name == "CELINFO MODULE") celestial_body_info_module = Boolean.Parse(val); // if (name == "CELINFO SHOW OBTL") body_op_show_orbital = Boolean.Parse(val); // if (name == "CELINFO SHOW PHYS") body_op_show_physical = Boolean.Parse(val); // if (name == "MAIN GUI MINIMIZED") main_gui_minimized = Boolean.Parse(val); // if (name == "HIDE ON PAUSE") hide_on_pause = Boolean.Parse(val); // if (name == "SKIN INDEX") skin_index = Int32.Parse(val); // if (name == "DISABLE POWER USAGE") disable_power_usage = Boolean.Parse(val); // if (name == "SHOW TOOLTIPS") show_tooltips = Boolean.Parse(val); // if (name == "SHOW RENDEZVOUS INFO") rendezvous_module = Boolean.Parse(val); // if (name == "USE KSP TARGET") hide_vesreg_info = Boolean.Parse(val); // if (name == "USER LANG") user_lang = (languages)Enum.Parse(typeof(languages), val); // } // } // } // } // // private void load_settings() // { // Tools.PostDebugMessage ("VOID: Loading settings."); // var config = KSP.IO.PluginConfiguration.CreateForType<VOIDFlightMaster> (); // config.load (); // // int loadedConfigVersion = config.GetValue ("ConfigVersion", 0); // // if (loadedConfigVersion < 1 || true) // { // this.load_old_settings (); // // this.write_settings (); // // TODO: Enable this when the config update works for sure. // // KSP.IO.File.Delete<VOID> ("VOID.cfg"); // return; // } // // this.main_window_pos = config.GetValue("MAIN_WINDOW_POS", main_window_pos); // this.void_window_pos = config.GetValue("VOID_WINDOW_POS", void_window_pos); // this.atmo_window_pos = config.GetValue("ATMO_WINDOW_POS", atmo_window_pos); // this.transfer_window_pos = config.GetValue("TAD_WINDOW_POS", transfer_window_pos); // this.vessel_register_window_pos = config.GetValue("VESREG_WINDOW_POS", vessel_register_window_pos); // this.data_logging_window_pos = config.GetValue("DATATIME_WINDOW_POS", data_logging_window_pos); // this.vessel_info_window_pos = config.GetValue("VESINFO_WINDOW_POS", vessel_info_window_pos); // this.misc_window_pos = config.GetValue("MISC_WINDOW_POS", misc_window_pos); // this.body_op_window_pos = config.GetValue("CELINFO_WINDOW_POS", body_op_window_pos); // this.rendezvous_info_window_pos = config.GetValue("RENDEZVOUS_WINDOW_POS", rendezvous_info_window_pos); // this.main_icon_pos = config.GetValue("ICON_POS", main_icon_pos); // // this.toggleHUDModule = config.GetValue("HUD_MODULE", false); // this.void_module = config.GetValue("VOID_MODULE", false); // this.atmo_module = config.GetValue("ATMO_MODULE", false); // this.tad_module = config.GetValue("TAD_MODULE", false); // this.vessel_register_module = config.GetValue("VESREG_MODULE", false); // this.data_time_module = config.GetValue("DATATIME_MODULE", false); // this.vessel_info_module = config.GetValue("VESINFO_MODULE", false); // this.misc_module = config.GetValue("MISC_MODULE", false); // this.celestial_body_info_module = config.GetValue("CELINFO_MODULE", false); // this.body_op_show_orbital = config.GetValue("CELINFO_SHOW_OBTL", false); // this.body_op_show_physical = config.GetValue("CELINFO_SHOW_PHYS", false); // this.main_gui_minimized = config.GetValue("MAIN_GUI_MINIMIZED", false); // this.hide_on_pause = config.GetValue("HIDE_ON_PAUSE", false); // this.disable_power_usage = config.GetValue("DISABLE_POWER_USAGE", true); // this.show_tooltips = config.GetValue("SHOW_TOOLTIPS", false); // this.rendezvous_module = config.GetValue("SHOW_RENDEZVOUS_INFO", false); // this.hide_vesreg_info = config.GetValue("USE_KSP_TARGET", false); // // this.skin_index = config.GetValue ("SKIN_INDEX", 0); // // this.user_lang = (languages)Enum.Parse(typeof(languages), config.GetValue ("USER_LANG", "EN")); // } // // private void write_settings() // { // Tools.PostDebugMessage ("VOID: Writing settings."); // try // { // var config = KSP.IO.PluginConfiguration.CreateForType<VOIDFlightMaster> (); // config.load (); // // /* // config.SetValue ("ConfigVersion", this.configVersion); // config.SetValue("MAIN_WINDOW_POS", main_window_pos); // config.SetValue("VOID_WINDOW_POS", void_window_pos); // config.SetValue("ATMO_WINDOW_POS", atmo_window_pos); // config.SetValue("TAD_WINDOW_POS", transfer_window_pos); // config.SetValue("VESREG_WINDOW_POS", vessel_register_window_pos); // config.SetValue("DATATIME_WINDOW_POS", data_logging_window_pos); // config.SetValue("VESINFO_WINDOW_POS", vessel_info_window_pos); // config.SetValue("MISC_WINDOW_POS", misc_window_pos); // config.SetValue("CELINFO_WINDOW_POS", body_op_window_pos); // config.SetValue("RENDEZVOUS_WINDOW_POS", rendezvous_info_window_pos); // config.SetValue("ICON_POS", main_icon_pos); // config.SetValue("HUD_MODULE", toggleHUDModule); // config.SetValue("VOID_MODULE", void_module); // config.SetValue("ATMO_MODULE", atmo_module); // config.SetValue("TAD_MODULE", tad_module); // config.SetValue("VESREG_MODULE", vessel_register_module); // config.SetValue("DATATIME_MODULE", data_time_module); // config.SetValue("VESINFO_MODULE", vessel_info_module); // config.SetValue("MISC_MODULE", misc_module); // config.SetValue("CELINFO_MODULE", celestial_body_info_module); // config.SetValue("CELINFO_SHOW_OBTL", body_op_show_orbital); // config.SetValue("CELINFO_SHOW_PHYS", body_op_show_physical); // config.SetValue("MAIN_GUI_MINIMIZED", main_gui_minimized); // config.SetValue("HIDE_ON_PAUSE", hide_on_pause); // config.SetValue("SKIN_INDEX", skin_index); // config.SetValue("DISABLE_POWER_USAGE", disable_power_usage); // config.SetValue("SHOW_TOOLTIPS", show_tooltips); // config.SetValue("SHOW_RENDEZVOUS_INFO", rendezvous_module); // config.SetValue("USE_KSP_TARGET", hide_vesreg_info); // config.SetValue("USER_LANG", user_lang); // */ // // try // { // config.SetValue ("ConfigVersion", this.configVersion); // } // catch (NullReferenceException) // { // UnityEngine.Debug.LogError("config.SetValue (\"ConfigVersion\", this.configVersion);"); // } // try // { // config.SetValue("MAIN_WINDOW_POS", main_window_pos); // } // catch (NullReferenceException) // { // UnityEngine.Debug.LogError("config.SetValue(\"MAIN_WINDOW_POS\", main_window_pos);"); // } // try // { // config.SetValue("VOID_WINDOW_POS", void_window_pos); // } // catch (NullReferenceException) // { // UnityEngine.Debug.LogError("config.SetValue(\"VOID_WINDOW_POS\", void_window_pos);"); // } // try // { // config.SetValue("ATMO_WINDOW_POS", atmo_window_pos); // } // catch (NullReferenceException) // { // UnityEngine.Debug.LogError("config.SetValue(\"ATMO_WINDOW_POS\", atmo_window_pos);"); // } // try // { // config.SetValue("TAD_WINDOW_POS", transfer_window_pos); // } // catch (NullReferenceException) // { // UnityEngine.Debug.LogError("config.SetValue(\"TAD_WINDOW_POS\", transfer_window_pos);"); // } // try // { // config.SetValue("VESREG_WINDOW_POS", vessel_register_window_pos); // } // catch (NullReferenceException) // { // UnityEngine.Debug.LogError("config.SetValue(\"VESREG_WINDOW_POS\", vessel_register_window_pos);"); // } // try // { // config.SetValue("DATATIME_WINDOW_POS", data_logging_window_pos); // } // catch (NullReferenceException) // { // UnityEngine.Debug.LogError("config.SetValue(\"DATATIME_WINDOW_POS\", data_logging_window_pos);"); // } // try // { // config.SetValue("VESINFO_WINDOW_POS", vessel_info_window_pos); // } // catch (NullReferenceException) // { // UnityEngine.Debug.LogError("config.SetValue(\"VESINFO_WINDOW_POS\", vessel_info_window_pos);"); // } // try // { // config.SetValue("MISC_WINDOW_POS", misc_window_pos); // } // catch (NullReferenceException) // { // UnityEngine.Debug.LogError("config.SetValue(\"MISC_WINDOW_POS\", misc_window_pos);"); // } // try // { // config.SetValue("CELINFO_WINDOW_POS", body_op_window_pos); // } // catch (NullReferenceException) // { // UnityEngine.Debug.LogError("config.SetValue(\"CELINFO_WINDOW_POS\", body_op_window_pos);"); // } // try // { // config.SetValue("RENDEZVOUS_WINDOW_POS", rendezvous_info_window_pos); // } // catch (NullReferenceException) // { // UnityEngine.Debug.LogError("config.SetValue(\"RENDEZVOUS_WINDOW_POS\", rendezvous_info_window_pos);"); // } // try // { // config.SetValue("ICON_POS", main_icon_pos); // } // catch (NullReferenceException) // { // UnityEngine.Debug.LogError("config.SetValue(\"ICON_POS\", main_icon_pos);"); // } // try // { // config.SetValue("HUD_MODULE", toggleHUDModule); // } // catch (NullReferenceException) // { // UnityEngine.Debug.LogError("config.SetValue(\"HUD_MODULE\", toggleHUDModule);"); // } // try // { // config.SetValue("VOID_MODULE", void_module); // } // catch (NullReferenceException) // { // UnityEngine.Debug.LogError("config.SetValue(\"VOID_MODULE\", void_module);"); // } // try // { // config.SetValue("ATMO_MODULE", atmo_module); // } // catch (NullReferenceException) // { // UnityEngine.Debug.LogError("config.SetValue(\"ATMO_MODULE\", atmo_module);"); // } // try // { // config.SetValue("TAD_MODULE", tad_module); // } // catch (NullReferenceException) // { // UnityEngine.Debug.LogError("config.SetValue(\"TAD_MODULE\", tad_module);"); // } // try // { // config.SetValue("VESREG_MODULE", vessel_register_module); // } // catch (NullReferenceException) // { // UnityEngine.Debug.LogError("config.SetValue(\"VESREG_MODULE\", vessel_register_module);"); // } // try // { // config.SetValue("DATATIME_MODULE", data_time_module); // } // catch (NullReferenceException) // { // UnityEngine.Debug.LogError("config.SetValue(\"DATATIME_MODULE\", data_time_module);"); // } // try // { // config.SetValue("VESINFO_MODULE", vessel_info_module); // } // catch (NullReferenceException) // { // UnityEngine.Debug.LogError("config.SetValue(\"VESINFO_MODULE\", vessel_info_module);"); // } // try // { // config.SetValue("MISC_MODULE", misc_module); // } // catch (NullReferenceException) // { // UnityEngine.Debug.LogError("config.SetValue(\"MISC_MODULE\", misc_module);"); // } // try // { // config.SetValue("CELINFO_MODULE", celestial_body_info_module); // } // catch (NullReferenceException) // { // UnityEngine.Debug.LogError("config.SetValue(\"CELINFO_MODULE\", celestial_body_info_module);"); // } // try // { // config.SetValue("CELINFO_SHOW_OBTL", body_op_show_orbital); // } // catch (NullReferenceException) // { // UnityEngine.Debug.LogError("config.SetValue(\"CELINFO_SHOW_OBTL\", body_op_show_orbital);"); // } // try // { // config.SetValue("CELINFO_SHOW_PHYS", body_op_show_physical); // } // catch (NullReferenceException) // { // UnityEngine.Debug.LogError("config.SetValue(\"CELINFO_SHOW_PHYS\", body_op_show_physical);"); // } // try // { // config.SetValue("MAIN_GUI_MINIMIZED", main_gui_minimized); // } // catch (NullReferenceException) // { // UnityEngine.Debug.LogError("config.SetValue(\"MAIN_GUI_MINIMIZED\", main_gui_minimized);"); // } // try // { // config.SetValue("HIDE_ON_PAUSE", hide_on_pause); // } // catch (NullReferenceException) // { // UnityEngine.Debug.LogError("config.SetValue(\"HIDE_ON_PAUSE\", hide_on_pause);"); // } // try // { // config.SetValue("SKIN_INDEX", skin_index); // } // catch (NullReferenceException) // { // UnityEngine.Debug.LogError("config.SetValue(\"SKIN_INDEX\", skin_index);"); // } // try // { // config.SetValue("DISABLE_POWER_USAGE", disable_power_usage); // } // catch (NullReferenceException) // { // UnityEngine.Debug.LogError("config.SetValue(\"DISABLE_POWER_USAGE\", disable_power_usage);"); // } // try // { // config.SetValue("SHOW_TOOLTIPS", show_tooltips); // } // catch (NullReferenceException) // { // UnityEngine.Debug.LogError("config.SetValue(\"SHOW_TOOLTIPS\", show_tooltips);"); // } // try // { // config.SetValue("SHOW_RENDEZVOUS_INFO", rendezvous_module); // } // catch (NullReferenceException) // { // UnityEngine.Debug.LogError("config.SetValue(\"SHOW_RENDEZVOUS_INFO\", rendezvous_module);"); // } // try // { // config.SetValue("USE_KSP_TARGET", hide_vesreg_info); // } // catch (NullReferenceException) // { // UnityEngine.Debug.LogError("config.SetValue(\"USE_KSP_TARGET\", hide_vesreg_info);"); // } // try // { // config.SetValue("USER_LANG", user_lang); // } // catch (NullReferenceException) // { // UnityEngine.Debug.LogError("config.SetValue(\"USER_LANG\", user_lang);"); // } // config.save (); // } // catch (NullReferenceException) // { // return; // } // // /* // string settings = ""; // settings += "MAIN WINDOW POS = " + main_window_pos.x + " , " + main_window_pos.y + "\n"; // settings += "VOID WINDOW POS = " + void_window_pos.x + " , " + void_window_pos.y + "\n"; // settings += "ATMO WINDOW POS = " + atmo_window_pos.x + " , " + atmo_window_pos.y + "\n"; // settings += "TAD WINDOW POS = " + transfer_window_pos.x + " , " + transfer_window_pos.y + "\n"; // settings += "VESREG WINDOW POS = " + vessel_register_window_pos.x + " , " + vessel_register_window_pos.y + "\n"; // settings += "DATATIME WINDOW POS = " + data_logging_window_pos.x + " , " + data_logging_window_pos.y + "\n"; // settings += "VESINFO WINDOW POS = " + vessel_info_window_pos.x + " , " + vessel_info_window_pos.y + "\n"; // settings += "MISC WINDOW POS = " + misc_window_pos.x + " , " + misc_window_pos.y + "\n"; // settings += "CELINFO WINDOW POS = " + body_op_window_pos.x + " , " + body_op_window_pos.y + "\n"; // settings += "RENDEZVOUS WINDOW POS = " + rendezvous_info_window_pos.x + " , " + rendezvous_info_window_pos.y + "\n"; // settings += "ICON POS = " + main_icon_pos.x + " , " + main_icon_pos.y + "\n"; // settings += "HUD MODULE = " + toggleHUDModule + "\n"; // settings += "VOID MODULE = " + void_module + "\n"; // settings += "ATMO MODULE = " + atmo_module + "\n"; // settings += "TAD MODULE = " + tad_module + "\n"; // settings += "VESREG MODULE = " + vessel_register_module + "\n"; // settings += "DATATIME MODULE = " + data_time_module + "\n"; // settings += "VESINFO MODULE = " + vessel_info_module + "\n"; // settings += "MISC MODULE = " + misc_module + "\n"; // settings += "CELINFO MODULE = " + celestial_body_info_module + "\n"; // settings += "CELINFO SHOW OBTL = " + body_op_show_orbital + "\n"; // settings += "CELINFO SHOW PHYS = " + body_op_show_physical + "\n"; // settings += "MAIN GUI MINIMIZED = " + main_gui_minimized + "\n"; // settings += "HIDE ON PAUSE = " + hide_on_pause + "\n"; // settings += "HUD COLOR = " + moduleHUD.ColorIndex + "\n"; // settings += "SKIN INDEX = " + skin_index + "\n"; // settings += "DISABLE POWER USAGE = " + disable_power_usage + "\n"; // settings += "SHOW TOOLTIPS = " + show_tooltips + "\n"; // settings += "SHOW RENDEZVOUS INFO = " + rendezvous_module + "\n"; // settings += "USE KSP TARGET = " + hide_vesreg_info + "\n"; // settings += "USER LANG = " + user_lang + "\n"; // KSP.IO.File.WriteAllText<VOID>(settings, "VOID.cfg", null); // */ // } // // private void start_GUI() // { // RenderingManager.AddToPostDrawQueue(3, new Callback(draw_GUI)); //start the GUI // if (this.moduleHUD != null && !this.moduleHUD.guiRunning) // { // this.moduleHUD.StopGUI(); // } // gui_running = true; // } // // private void stop_GUI() // { // RenderingManager.RemoveFromPostDrawQueue(3, new Callback(draw_GUI)); //stop the GUI // if (this.moduleHUD != null && this.moduleHUD.guiRunning) // { // this.moduleHUD.StopGUI(); // } // gui_running = false; // } // // private void consume_resources() // { // if (TimeWarp.deltaTime == 0) return; //do nothing if paused // if (vessel.vesselType == VesselType.EVA || disable_power_usage) power_available = true; //power always available when EVA // else // { // float recvd_amount = vessel.rootPart.RequestResource("ElectricCharge", power_request_amount * TimeWarp.fixedDeltaTime); // if (recvd_amount > 0) power_available = true; // doesn't always send 100% of demand so as long as it sends something // else power_available = false; // } // } // // private void set_gui_styles() // { // //label_txt_left = new GUIStyle(GUI.skin.label); // //label_txt_left.normal.textColor = Color.white; // //label_txt_left.alignment = TextAnchor.UpperLeft; // // label_txt_center = new GUIStyle(GUI.skin.label); // label_txt_center.normal.textColor = Color.white; // label_txt_center.alignment = TextAnchor.UpperCenter; // // label_txt_center_bold = new GUIStyle(GUI.skin.label); // label_txt_center_bold.normal.textColor = Color.white; // label_txt_center_bold.alignment = TextAnchor.UpperCenter; // label_txt_center_bold.fontStyle = FontStyle.Bold; // // label_txt_right = new GUIStyle(GUI.skin.label); // label_txt_right.normal.textColor = Color.white; // label_txt_right.alignment = TextAnchor.UpperRight; // // gui_styles_set = true; // } // // private void body_OP_show_orbital_info(CelestialBody body) // { // //GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // if (body.bodyName == "Sun") GUILayout.Label("N/A", label_txt_right, GUILayout.ExpandWidth(true)); // else GUILayout.Label((body.orbit.ApA / 1000).ToString("##,#") + "km", label_txt_right, GUILayout.ExpandWidth(true)); // //GUILayout.EndHorizontal(); // // //GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // if (body.bodyName == "Sun") GUILayout.Label("N/A", label_txt_right, GUILayout.ExpandWidth(true)); // else GUILayout.Label(Tools.ConvertInterval(body.orbit.timeToAp), label_txt_right, GUILayout.ExpandWidth(true)); // //GUILayout.EndHorizontal(); // // //GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // if (body.bodyName == "Sun") GUILayout.Label("N/A", label_txt_right, GUILayout.ExpandWidth(true)); // else GUILayout.Label((body.orbit.PeA / 1000).ToString("##,#") + "km", label_txt_right, GUILayout.ExpandWidth(true)); // //GUILayout.EndHorizontal(); // // //GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // if (body.bodyName == "Sun") GUILayout.Label("N/A", label_txt_right, GUILayout.ExpandWidth(true)); // else GUILayout.Label(Tools.ConvertInterval(body.orbit.timeToPe), label_txt_right, GUILayout.ExpandWidth(true)); // //GUILayout.EndHorizontal(); // // //GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // if (body.bodyName == "Sun") GUILayout.Label("N/A", label_txt_right, GUILayout.ExpandWidth(true)); // else GUILayout.Label((body.orbit.semiMajorAxis / 1000).ToString("##,#") + "km", label_txt_right, GUILayout.ExpandWidth(true)); // //GUILayout.EndHorizontal(); // // //GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // if (body.bodyName == "Sun") GUILayout.Label("N/A", label_txt_right, GUILayout.ExpandWidth(true)); // else GUILayout.Label(body.orbit.eccentricity.ToString("F4") + "", label_txt_right, GUILayout.ExpandWidth(true)); // //GUILayout.EndHorizontal(); // // //GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // if (body.bodyName == "Sun") GUILayout.Label("N/A", label_txt_right, GUILayout.ExpandWidth(true)); // else GUILayout.Label(Tools.ConvertInterval(body.orbit.period), label_txt_right, GUILayout.ExpandWidth(true)); // //GUILayout.EndHorizontal(); // // //GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // if (body.bodyName == "Sun") GUILayout.Label("N/A", label_txt_right, GUILayout.ExpandWidth(true)); // else GUILayout.Label(Tools.ConvertInterval(body.rotationPeriod), label_txt_right, GUILayout.ExpandWidth(true)); // //GUILayout.EndHorizontal(); // // //GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // if (body.bodyName == "Sun") GUILayout.Label("N/A", label_txt_right, GUILayout.ExpandWidth(true)); // else GUILayout.Label((body.orbit.orbitalSpeed / 1000).ToString("F2") + "km/s", label_txt_right, GUILayout.ExpandWidth(true)); // //GUILayout.EndHorizontal(); // // //GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // // Toadicus edit: convert mean anomaly into degrees. // if (body.bodyName == "Sun") GUILayout.Label("N/A", label_txt_right, GUILayout.ExpandWidth(true)); // else GUILayout.Label((body.orbit.meanAnomaly * 180d / Math.PI).ToString("F3") + "°", label_txt_right, GUILayout.ExpandWidth(true)); // //GUILayout.EndHorizontal(); // // //GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // if (body.bodyName == "Sun") GUILayout.Label("N/A", label_txt_right, GUILayout.ExpandWidth(true)); // else GUILayout.Label(body.orbit.trueAnomaly.ToString("F3") + "°", label_txt_right, GUILayout.ExpandWidth(true)); // //GUILayout.EndHorizontal(); // // //GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // // Toadicus edit: convert eccentric anomaly into degrees. // if (body.bodyName == "Sun") GUILayout.Label("N/A", label_txt_right, GUILayout.ExpandWidth(true)); // else GUILayout.Label((body.orbit.eccentricAnomaly * 180d / Math.PI).ToString("F3") + "°", label_txt_right, GUILayout.ExpandWidth(true)); // //GUILayout.EndHorizontal(); // // //GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // if (body.bodyName == "Sun") GUILayout.Label("N/A", label_txt_right, GUILayout.ExpandWidth(true)); // else GUILayout.Label(body.orbit.inclination.ToString("F3") + "°", label_txt_right, GUILayout.ExpandWidth(true)); // //GUILayout.EndHorizontal(); // // //GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // if (body.bodyName == "Sun") GUILayout.Label("N/A", label_txt_right, GUILayout.ExpandWidth(true)); // else GUILayout.Label(body.orbit.LAN.ToString("F3") + "°", label_txt_right, GUILayout.ExpandWidth(true)); // //GUILayout.EndHorizontal(); // // //GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // if (body.bodyName == "Sun") GUILayout.Label("N/A", label_txt_right, GUILayout.ExpandWidth(true)); // else GUILayout.Label(body.orbit.argumentOfPeriapsis.ToString("F3") + "°", label_txt_right, GUILayout.ExpandWidth(true)); // //GUILayout.EndHorizontal(); // // //GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // if (body.bodyName == "Sun") GUILayout.Label("N/A", label_txt_right, GUILayout.ExpandWidth(true)); // else // { // string body_tidally_locked = "No"; // if (body.tidallyLocked) body_tidally_locked = "Yes"; // GUILayout.Label(body_tidally_locked, label_txt_right, GUILayout.ExpandWidth(true)); // } // //GUILayout.EndHorizontal(); // } // // private void body_OP_show_physical_info(CelestialBody body) // { // //GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label((body.Radius / 1000).ToString("##,#") + "km", label_txt_right, GUILayout.ExpandWidth(true)); // //GUILayout.EndHorizontal(); // // //GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label(((Math.Pow((body.Radius), 2) * 4 * Math.PI) / 1000).ToString("0.00e+00") + "km²", label_txt_right, GUILayout.ExpandWidth(true)); // //GUILayout.EndHorizontal(); // // //GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // // divide by 1000 to convert m to km // GUILayout.Label((((4d / 3) * Math.PI * Math.Pow(body.Radius, 3)) / 1000).ToString("0.00e+00") + "km³", label_txt_right, GUILayout.ExpandWidth(true)); // //GUILayout.Label(((4 / 3) * Math.PI * Math.Pow((vessel.mainBody.Radius / 1000), 3)).ToString(), txt_right, GUILayout.ExpandWidth(true)); // //GUILayout.EndHorizontal(); // // //GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label(body.Mass.ToString("0.00e+00") + "kg", label_txt_right, GUILayout.ExpandWidth(true)); // //GUILayout.EndHorizontal(); // // double p = body.Mass / (Math.Pow(body.Radius, 3) * (4d / 3) * Math.PI); // //GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label(p.ToString("##,#") + "kg/m³", label_txt_right, GUILayout.ExpandWidth(true)); // //GUILayout.EndHorizontal(); // // //GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // if (name == "Sun") GUILayout.Label(body.sphereOfInfluence.ToString(), label_txt_right, GUILayout.ExpandWidth(true)); // else GUILayout.Label((body.sphereOfInfluence / 1000).ToString("##,#") + "km", label_txt_right, GUILayout.ExpandWidth(true)); // //GUILayout.EndHorizontal(); // // //GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label(body.orbitingBodies.Count.ToString(), label_txt_right, GUILayout.ExpandWidth(true)); // //GUILayout.EndHorizontal(); // // //show # artificial satellites // int num_art_sats = 0; // foreach (Vessel v in FlightGlobals.Vessels) // { // if (v.mainBody == body && v.situation.ToString() == "ORBITING") num_art_sats++; // } // // //GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label(num_art_sats.ToString(), label_txt_right, GUILayout.ExpandWidth(true)); // //GUILayout.EndHorizontal(); // // double g_ASL = (G_constant * body.Mass) / Math.Pow(body.Radius, 2); // //GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label(Tools.MuMech_ToSI(g_ASL) + "m/s²", label_txt_right, GUILayout.ExpandWidth(true)); // //GUILayout.EndHorizontal(); // // //GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("≈ " + Tools.MuMech_ToSI(body.maxAtmosphereAltitude) + "m", label_txt_right, GUILayout.ExpandWidth(true)); // //GUILayout.EndHorizontal(); // // //GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // string O2 = "No"; // if (body.atmosphereContainsOxygen == true) O2 = "Yes"; // GUILayout.Label(O2, label_txt_right, GUILayout.ExpandWidth(true)); // //GUILayout.EndHorizontal(); // // //GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // string ocean = "No"; // if (body.ocean == true) ocean = "Yes"; // GUILayout.Label(ocean, label_txt_right, GUILayout.ExpandWidth(true)); // //GUILayout.EndHorizontal(); // } // // private void tad_targeting(CelestialBody body) // { // //Target Set/Unset buttons // if (FlightGlobals.fetch.VesselTarget == null || (FlightGlobals.fetch.VesselTarget != null && FlightGlobals.fetch.VesselTarget.GetVessel() == null)) // { // //No TGT set or TGT is a Body // if ((CelestialBody)FlightGlobals.fetch.VesselTarget != body) // { // if (GUILayout.Button("Set Target", GUILayout.ExpandWidth(false))) // { // FlightGlobals.fetch.SetVesselTarget(body); // if (debugging) Debug.Log("[VOID] KSP Target set to CelestialBody " + body.bodyName); // } // } // else if ((CelestialBody)FlightGlobals.fetch.VesselTarget == body) // { // if (GUILayout.Button("Unset Target", GUILayout.ExpandWidth(false))) // { // FlightGlobals.fetch.SetVesselTarget(null); // if (debugging) Debug.Log("[VOID] KSP Target set to null"); // } // } // } // else if (FlightGlobals.fetch.VesselTarget == null || (FlightGlobals.fetch.VesselTarget != null && FlightGlobals.fetch.VesselTarget.GetVessel() != null)) // { // //No TGT or TGT is a vessel // if (GUILayout.Button("Set Target", GUILayout.ExpandWidth(false))) // { // FlightGlobals.fetch.SetVesselTarget(body); // if (debugging) Debug.Log("[VOID] KSP Target set to CelestialBody " + body.bodyName); // } // } // } // // private void display_transfer_angles_SUN2PLANET(CelestialBody body) // { // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Phase angle (curr/trans):"); // GUILayout.Label(Tools.mrenigma03_calcphase(vessel, body).ToString("F3") + "° / " + Tools.Nivvy_CalcTransferPhaseAngle(vessel.orbit.semiMajorAxis, body.orbit.semiMajorAxis, vessel.mainBody.gravParameter).ToString("F3") + "°", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Transfer velocity:"); // GUILayout.Label((Tools.Younata_DeltaVToGetToOtherBody((vessel.mainBody.gravParameter / 1000000000), (vessel.orbit.semiMajorAxis / 1000), (body.orbit.semiMajorAxis / 1000)) * 1000).ToString("F2") + "m/s", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // } // // private void display_transfer_angles_PLANET2PLANET(CelestialBody body) // { // double dv1 = Tools.Younata_DeltaVToGetToOtherBody((vessel.mainBody.referenceBody.gravParameter / 1000000000), (vessel.mainBody.orbit.semiMajorAxis / 1000), (body.orbit.semiMajorAxis / 1000)); // double dv2 = Tools.Younata_DeltaVToExitSOI((vessel.mainBody.gravParameter / 1000000000), (vessel.orbit.semiMajorAxis / 1000), (vessel.mainBody.sphereOfInfluence / 1000), Math.Abs(dv1)); // // double trans_ejection_angle = Tools.Younata_TransferBurnPoint((vessel.orbit.semiMajorAxis / 1000), dv2, (Math.PI / 2.0), (vessel.mainBody.gravParameter / 1000000000)); // double curr_ejection_angle = Tools.Adammada_CurrentEjectionAngle(FlightGlobals.ActiveVessel.longitude, FlightGlobals.ActiveVessel.orbit.referenceBody.rotationAngle, FlightGlobals.ActiveVessel.orbit.referenceBody.orbit.LAN, FlightGlobals.ActiveVessel.orbit.referenceBody.orbit.orbitPercent); // // double trans_phase_angle = Tools.Nivvy_CalcTransferPhaseAngle(vessel.mainBody.orbit.semiMajorAxis, body.orbit.semiMajorAxis, vessel.mainBody.referenceBody.gravParameter) % 360; // double curr_phase_angle = Tools.Adammada_CurrrentPhaseAngle(body.orbit.LAN, body.orbit.orbitPercent, FlightGlobals.ActiveVessel.orbit.referenceBody.orbit.LAN, FlightGlobals.ActiveVessel.orbit.referenceBody.orbit.orbitPercent); // // double adj_phase_angle = Tools.adjustCurrPhaseAngle(trans_phase_angle, curr_phase_angle); // double adj_trans_ejection_angle = Tools.adjust_transfer_ejection_angle(trans_ejection_angle, trans_phase_angle); // double adj_curr_ejection_angle = Tools.adjust_current_ejection_angle(curr_ejection_angle); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Phase angle (curr/trans):"); // GUILayout.Label(adj_phase_angle.ToString("F3") + "° / " + trans_phase_angle.ToString("F3") + "°", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Ejection angle (curr/trans):"); // GUILayout.Label(adj_curr_ejection_angle.ToString("F3") + "° / " + adj_trans_ejection_angle.ToString("F3") + "°", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Transfer velocity:"); // GUILayout.Label((dv2 * 1000).ToString("F2") + "m/s", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // } // // private void display_transfer_angles_PLANET2MOON(CelestialBody body) // { // double dv1 = Tools.Younata_DeltaVToGetToOtherBody((vessel.mainBody.gravParameter / 1000000000), (vessel.orbit.semiMajorAxis / 1000), (body.orbit.semiMajorAxis / 1000)); //// double curr_phase_angle = Adammada_CurrrentPhaseAngle(body.orbit.LAN, body.orbit.orbitPercent, vessel.orbit.LAN, vessel.orbit.orbitPercent); // double trans_phase_angle = Tools.Nivvy_CalcTransferPhaseAngle(vessel.orbit.semiMajorAxis, body.orbit.semiMajorAxis, vessel.mainBody.gravParameter); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Phase angle (curr/trans):"); // GUILayout.Label(Tools.mrenigma03_calcphase(vessel, body).ToString("F3") + "° / " + trans_phase_angle.ToString("F3") + "°", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Transfer velocity:"); // GUILayout.Label((dv1 * 1000).ToString("F2") + "m/s", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // } // // private void display_transfer_angles_MOON2MOON(CelestialBody body) // { // double dv1 = Tools.Younata_DeltaVToGetToOtherBody((vessel.mainBody.referenceBody.gravParameter / 1000000000), (vessel.mainBody.orbit.semiMajorAxis / 1000), (body.orbit.semiMajorAxis / 1000)); // double dv2 = Tools.Younata_DeltaVToExitSOI((vessel.mainBody.gravParameter / 1000000000), (vessel.orbit.semiMajorAxis / 1000), (vessel.mainBody.sphereOfInfluence / 1000), Math.Abs(dv1)); // double trans_ejection_angle = Tools.Younata_TransferBurnPoint((vessel.orbit.semiMajorAxis / 1000), dv2, (Math.PI / 2.0), (vessel.mainBody.gravParameter / 1000000000)); // // double curr_phase_angle = Tools.Adammada_CurrrentPhaseAngle(body.orbit.LAN, body.orbit.orbitPercent, FlightGlobals.ActiveVessel.orbit.referenceBody.orbit.LAN, FlightGlobals.ActiveVessel.orbit.referenceBody.orbit.orbitPercent); // double curr_ejection_angle = Tools.Adammada_CurrentEjectionAngle(FlightGlobals.ActiveVessel.longitude, FlightGlobals.ActiveVessel.orbit.referenceBody.rotationAngle, FlightGlobals.ActiveVessel.orbit.referenceBody.orbit.LAN, FlightGlobals.ActiveVessel.orbit.referenceBody.orbit.orbitPercent); // // double trans_phase_angle = Tools.Nivvy_CalcTransferPhaseAngle(vessel.mainBody.orbit.semiMajorAxis, body.orbit.semiMajorAxis, vessel.mainBody.referenceBody.gravParameter) % 360; // // double adj_phase_angle = Tools.adjustCurrPhaseAngle(trans_phase_angle, curr_phase_angle); // //double adj_ejection_angle = adjustCurrEjectionAngle(trans_phase_angle, curr_ejection_angle); // // //new stuff // // // double adj_trans_ejection_angle = Tools.adjust_transfer_ejection_angle(trans_ejection_angle, trans_phase_angle); // double adj_curr_ejection_angle = Tools.adjust_current_ejection_angle(curr_ejection_angle); // // // // // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Phase angle (curr/trans):"); // GUILayout.Label(adj_phase_angle.ToString("F3") + "° / " + trans_phase_angle.ToString("F3") + "°", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Ejection angle (curr/trans):"); // GUILayout.Label(adj_curr_ejection_angle.ToString("F3") + "° / " + adj_trans_ejection_angle.ToString("F3") + "°", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Transfer velocity:"); // GUILayout.Label((dv2 * 1000).ToString("F2") + "m/s", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // } // // // GUI // // Toadicus edit: added colons for each label_string. // private void void_gui(int window_id) // { // // Toadicus edit: added local sidereal longitude. // double LSL = vessel.longitude + vessel.orbit.referenceBody.rotationAngle; // LSL = Tools.FixDegreeDomain (LSL); // // GUILayout.BeginVertical(); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label(label_strings.void_primary + ":"); // GUILayout.Label(vessel.mainBody.bodyName, GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label(label_strings.void_altitude_asl + ":"); // GUILayout.Label(Tools.MuMech_ToSI(vessel.orbit.altitude) + "m", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label(label_strings.void_velocity + ":"); // GUILayout.Label(Tools.MuMech_ToSI(vessel.orbit.vel.magnitude) + "m/s", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label(label_strings.void_apoapsis + ":"); // GUILayout.Label(Tools.MuMech_ToSI(vessel.orbit.ApA) + "m", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Time to Ap:"); // GUILayout.Label(Tools.ConvertInterval(vessel.orbit.timeToAp), GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label(label_strings.void_periapsis + ":"); // GUILayout.Label(Tools.MuMech_ToSI(vessel.orbit.PeA) + "m", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Time to Pe:"); // GUILayout.Label(Tools.ConvertInterval(vessel.orbit.timeToPe), GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Inclination:"); // GUILayout.Label(vessel.orbit.inclination.ToString("F3") + "°", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // double r_vessel = vessel.mainBody.Radius + vessel.mainBody.GetAltitude(vessel.findWorldCenterOfMass()); // double g_vessel = (G_constant * vessel.mainBody.Mass) / Math.Pow(r_vessel, 2); // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Gravity:"); // GUILayout.Label(Tools.MuMech_ToSI(g_vessel) + "m/s²", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // extended_orbital_info = GUILayout.Toggle(extended_orbital_info, "Extended info"); // // if (extended_orbital_info) // { // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Period:"); // GUILayout.Label(Tools.ConvertInterval(vessel.orbit.period), GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Semi-major axis:"); // GUILayout.Label((vessel.orbit.semiMajorAxis / 1000).ToString("##,#") + "km", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Eccentricity:"); // GUILayout.Label(vessel.orbit.eccentricity.ToString("F4"), GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // // Toadicus edit: convert mean anomaly into degrees. // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Mean anomaly:"); // GUILayout.Label((vessel.orbit.meanAnomaly * 180d / Math.PI).ToString("F3") + "°", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("True anomaly:"); // GUILayout.Label(vessel.orbit.trueAnomaly.ToString("F3") + "°", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // // Toadicus edit: convert eccentric anomaly into degrees. // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Eccentric anomaly:"); // GUILayout.Label((vessel.orbit.eccentricAnomaly * 180d / Math.PI).ToString("F3") + "°", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Long. ascending node:"); // GUILayout.Label(vessel.orbit.LAN.ToString("F3") + "°", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Arg. of periapsis:"); // GUILayout.Label(vessel.orbit.argumentOfPeriapsis.ToString("F3") + "°", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // // Toadicus edit: added local sidereal longitude. // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Local Sidereal Longitude:"); // GUILayout.Label(LSL.ToString("F3") + "°", label_txt_right); // GUILayout.EndHorizontal(); // } // // GUILayout.EndVertical(); // GUI.DragWindow(); // } // // private void atmo_gui(int window_id) // { // GUILayout.BeginVertical(); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Altitude (true):"); // double alt_true = vessel.orbit.altitude - vessel.terrainAltitude; // // HACK: This assumes that on worlds with oceans, all water is fixed at 0 m, and water covers the whole surface at 0 m. // if (vessel.terrainAltitude < 0 && vessel.mainBody.ocean ) alt_true = vessel.orbit.altitude; // GUILayout.Label(Tools.MuMech_ToSI(alt_true) + "m", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal (); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Latitude:"); // GUILayout.Label(Tools.GetLatitudeString(vessel), GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Longitude:"); // GUILayout.Label(Tools.GetLongitudeString(vessel), GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Heading:"); // GUILayout.Label(Tools.MuMech_get_heading(vessel).ToString("F2") + "° " + Tools.get_heading_text(Tools.MuMech_get_heading(vessel)), GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Terrain elevation:"); // GUILayout.Label(Tools.MuMech_ToSI(vessel.terrainAltitude) + "m", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Surface velocity:"); // GUILayout.Label(Tools.MuMech_ToSI(vessel.srf_velocity.magnitude) + "m/s", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Vertical speed:"); // GUILayout.Label(Tools.MuMech_ToSI(vessel.verticalSpeed) + "m/s", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Horizontal speed:"); // GUILayout.Label(Tools.MuMech_ToSI(vessel.horizontalSrfSpeed) + "m/s", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Temperature:"); // GUILayout.Label(vessel.flightIntegrator.getExternalTemperature().ToString("F2") + "° C", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Atmosphere density:"); // GUILayout.Label(Tools.MuMech_ToSI(vessel.atmDensity * 1000) + "g/m³", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Pressure:"); // GUILayout.Label(vessel.staticPressure.ToString("F2") + " atms", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Atmosphere limit:"); // GUILayout.Label("≈ " + Tools.MuMech_ToSI(vessel.mainBody.maxAtmosphereAltitude) + "m", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // // Toadicus edit: added Biome // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Biome:"); // GUILayout.Label(Tools.Toadicus_GetAtt(vessel).name, label_txt_right); // GUILayout.EndHorizontal(); // // GUILayout.EndVertical(); // GUI.DragWindow(); // } // // private void tad_gui(int window_id) // { // GUILayout.BeginVertical(); // // if (vessel.mainBody.name == "Sun") //Vessel is orbiting the Sun // { // foreach (CelestialBody body in vessel.mainBody.orbitingBodies) // { // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // if (GUILayout.Button(body.bodyName)) // { // //add or remove this body to this list of bodies to display more info on // if (tad_selected_bodies.Contains(body)) tad_selected_bodies.Remove(body); // else tad_selected_bodies.Add(body); // } // GUILayout.Label("Inclined " + body.orbit.inclination.ToString("F3") + "°", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // if (tad_selected_bodies.Contains(body)) // { // display_transfer_angles_SUN2PLANET(body); //show phase angles for each selected body // tad_targeting(body); //display Set/Unset Target button for each selected body // } // } // } // else if (vessel.mainBody.referenceBody.name == "Sun") //Vessel is orbiting a planet // { // foreach (CelestialBody body in vessel.mainBody.referenceBody.orbitingBodies) // { // if (body.name != vessel.mainBody.name) // show other planets // { // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // if (GUILayout.Button(body.bodyName)) // { // //add or remove this body to this list of bodies to display more info on // if (tad_selected_bodies.Contains(body)) tad_selected_bodies.Remove(body); // else tad_selected_bodies.Add(body); // } // GUILayout.Label("Inclined " + body.orbit.inclination.ToString("F3") + "°", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // if (tad_selected_bodies.Contains(body)) // { // display_transfer_angles_PLANET2PLANET(body); // tad_targeting(body); //display Set/Unset Target button // } // } // } // foreach (CelestialBody body in vessel.mainBody.orbitingBodies) // show moons // { // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // if (GUILayout.Button(body.bodyName)) // { // //add or remove this body to this list of bodies to display more info on // if (tad_selected_bodies.Contains(body)) tad_selected_bodies.Remove(body); // else tad_selected_bodies.Add(body); // } // GUILayout.Label("Inclined " + body.orbit.inclination.ToString("F3") + "°", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // if (tad_selected_bodies.Contains(body)) // { // display_transfer_angles_PLANET2MOON(body); // tad_targeting(body); //display Set/Unset Target button // } // } // } // else if (vessel.mainBody.referenceBody.referenceBody.name == "Sun") // Vessel is orbiting a moon // { // foreach (CelestialBody body in vessel.mainBody.referenceBody.orbitingBodies) // { // if (body.name != vessel.mainBody.name) // show other moons // { // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // if (GUILayout.Button(body.bodyName)) // { // //add or remove this body to this list of bodies to display more info on // if (tad_selected_bodies.Contains(body)) tad_selected_bodies.Remove(body); // else tad_selected_bodies.Add(body); // } // GUILayout.Label("Inclined " + body.orbit.inclination.ToString("F3") + "°", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // if (tad_selected_bodies.Contains(body)) // { // display_transfer_angles_MOON2MOON(body); // tad_targeting(body); //display Set/Unset Target button // } // } // } // } // GUILayout.EndVertical(); // GUI.DragWindow(); // } // // private void test_gui(int window_id) // { // GUILayout.BeginVertical(); // // GUILayout.Label("FlightGlobals.fetch.vesselTargetMode = " + FlightGlobals.fetch.vesselTargetMode.ToString()); // //if (debugging) Debug.Log("[VOID] vesselTargetMode OK"); // if (FlightGlobals.fetch.VesselTarget != null) // { // GUILayout.Label("VesselTarget == " + FlightGlobals.fetch.VesselTarget.ToString()); // //if (debugging) Debug.Log("[VOID] VesselTarget OK"); // GUILayout.Label("vesselTargetTransform == " + FlightGlobals.fetch.vesselTargetTransform.ToString()); // //if (debugging) Debug.Log("[VOID] vesselTargetTransform OK"); // GUILayout.Label("vesselTargetDirection == " + FlightGlobals.fetch.vesselTargetDirection.ToString()); // //if (debugging) Debug.Log("[VOID] vesselTargetDirection OK"); // GUILayout.Label("vesselTargetDelta == " + FlightGlobals.fetch.vesselTargetDelta.ToString()); // //if (debugging) Debug.Log("[VOID] vesselTargetDelta OK"); // } // else GUILayout.Label("VesselTarget == null"); // // // //check whats in here // //GUI.skin.font.fontNames // //foreach (String f in GUI.skin.font.fontNames) // //{ // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // // GUILayout.Label(f); // // GUILayout.EndHorizontal(); // //} // // // // // //fail // //if (Event.current.keyCode == KeyCode.Z) // //{ // // FlightCtrlState s = new FlightCtrlState(); // // vessel.FeedInputFeed(); // // s.mainThrottle = 1; // //} // // // // //MapView.MapIsEnabled = false; // //fail // // // // //GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // //GUILayout.Label(DateTime.Now.ToString("d MMMM")); // //GUILayout.EndHorizontal(); // // //GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // //GUILayout.Label("situation:", GUILayout.ExpandWidth(true)); // //GUILayout.Label(vessel.situation.ToString(), label_txt_right); // //GUILayout.EndHorizontal(); // // //GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // //GUILayout.Label("vessel.missionTime:", GUILayout.ExpandWidth(true)); // //GUILayout.Label(vessel.missionTime.ToString(), label_txt_right); // //GUILayout.EndHorizontal(); // // //Orbit target_orbit = new Orbit(); // //target_orbit = FlightGlobals.fetch.VesselTarget.GetOrbit(); // // // //GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // //GUILayout.Label("target_orbit.altitude", GUILayout.ExpandWidth(true)); // //GUILayout.Label(target_orbit.altitude.ToString("F2"), label_txt_right); // //GUILayout.EndHorizontal(); // // // //GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // //GUILayout.Label("vessel.packed", GUILayout.ExpandWidth(true)); // //GUILayout.Label(vessel.packed.ToString(), label_txt_right); // //GUILayout.EndHorizontal(); // // // //q = 1/2 p v^2 // //p = local air density // //v = velocity // //part.dynamicPressureAtm // double q = .5 * vessel.atmDensity * Math.Pow(vessel.orbit.vel.magnitude, 2); // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("dynamic pressure q:", GUILayout.ExpandWidth(true)); // GUILayout.Label(q.ToString("F4"), label_txt_right); // GUILayout.EndHorizontal(); // // //GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // //GUILayout.Label("part.dynamicPressureAtm:", GUILayout.ExpandWidth(true)); // //GUILayout.Label(part.dynamicPressureAtm.ToString("F3"), label_txt_right); // //GUILayout.EndHorizontal(); // // //GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // //GUILayout.Label("part.staticPressureAtm:", GUILayout.ExpandWidth(true)); // //GUILayout.Label(part.staticPressureAtm.ToString("F3"), label_txt_right); // //GUILayout.EndHorizontal(); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("vessel.staticPressure:", GUILayout.ExpandWidth(true)); // GUILayout.Label(vessel.staticPressure.ToString("F3"), label_txt_right); // GUILayout.EndHorizontal(); // // // // // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("FlightLogger.getMissionStats():", GUILayout.ExpandWidth(true)); // GUILayout.Label(FlightLogger.getMissionStats(), label_txt_right); // GUILayout.EndHorizontal(); // // //parse this out // //"Total Distance Traveled: 552m" // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // // string temp = FlightLogger.getMissionStats(); // temp = temp.Substring(temp.IndexOf("Total Distance Traveled:")); // //GUILayout.Label(temp, GUILayout.ExpandWidth(true)); // //int colon_pos = temp.IndexOf(":"); // temp = temp.Substring(temp.IndexOf(":") + 1); // //GUILayout.Label(temp, GUILayout.ExpandWidth(true)); // int m_pos = temp.IndexOf("m"); // temp = temp.Substring(0, m_pos + 1); // temp = temp.Trim(); // // GUILayout.Label("Distance traveled:", GUILayout.ExpandWidth(true)); // GUILayout.Label(temp, label_txt_right); // // GUILayout.EndHorizontal(); // // //GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // //GUILayout.Label("power_request_interval:", GUILayout.ExpandWidth(true)); // //GUILayout.Label(power_request_interval.ToString(), label_txt_right); // //GUILayout.EndHorizontal(); // // //GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // //GUILayout.Label("power_request_amount:", GUILayout.ExpandWidth(true)); // //GUILayout.Label(power_request_amount.ToString(), label_txt_right); // //GUILayout.EndHorizontal(); // // //GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // //GUILayout.Label("Tools.MuMech_get_heading():", GUILayout.ExpandWidth(true)); // //GUILayout.Label(Tools.MuMech_get_heading().ToString("F2"), label_txt_right); // //GUILayout.EndHorizontal(); // // //GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // //GUILayout.Label("num_fixedupdate_calls:", GUILayout.ExpandWidth(true)); // //GUILayout.Label(num_fixedupdate_calls.ToString(), label_txt_right); // //GUILayout.EndHorizontal(); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("vessel.flightIntegrator.currentDragForce:", GUILayout.ExpandWidth(true)); // GUILayout.Label(vessel.flightIntegrator.currentDragForce.ToString(), label_txt_right); // GUILayout.EndHorizontal(); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("vessel.flightIntegrator.drag:", GUILayout.ExpandWidth(true)); // GUILayout.Label(vessel.flightIntegrator.drag.ToString(), label_txt_right); // GUILayout.EndHorizontal(); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("vessel.flightIntegrator.dragArea:", GUILayout.ExpandWidth(true)); // GUILayout.Label(vessel.flightIntegrator.dragArea.ToString(), label_txt_right); // GUILayout.EndHorizontal(); // // // // // GUILayout.EndVertical(); // GUI.DragWindow(); // } // // private void celestial_body_info_gui(int window_id) // { // //print("starting celestial_body_info_gui()..."); // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // // GUILayout.BeginVertical(GUILayout.Width(150)); // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("", GUILayout.ExpandWidth(true)); // GUILayout.EndHorizontal(); // // GUILayout.EndVertical(); // // GUILayout.BeginVertical(GUILayout.Width(150)); // // body_OP_selected_body_1 = all_bodies[body_OP_body_1_index]; // body_OP_selected_body_2 = all_bodies[body_OP_body_2_index]; // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // if (GUILayout.Button("<", GUILayout.ExpandWidth(false))) // { // body_OP_body_1_index--; // if (body_OP_body_1_index < 0) body_OP_body_1_index = all_bodies.Count - 1; // } // GUILayout.Label(all_bodies[body_OP_body_1_index].bodyName, label_txt_center_bold, GUILayout.ExpandWidth(true)); // if (GUILayout.Button(">", GUILayout.ExpandWidth(false))) // { // body_OP_body_1_index++; // if (body_OP_body_1_index > all_bodies.Count - 1) body_OP_body_1_index = 0; // } // GUILayout.EndHorizontal(); // GUILayout.EndVertical(); // // GUILayout.BeginVertical(GUILayout.Width(150)); // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // if (GUILayout.Button("<", GUILayout.ExpandWidth(false))) // { // body_OP_body_2_index--; // if (body_OP_body_2_index < 0) body_OP_body_2_index = all_bodies.Count - 1; // } // GUILayout.Label(all_bodies[body_OP_body_2_index].bodyName, label_txt_center_bold, GUILayout.ExpandWidth(true)); // if (GUILayout.Button(">", GUILayout.ExpandWidth(false))) // { // body_OP_body_2_index++; // if (body_OP_body_2_index > all_bodies.Count - 1) body_OP_body_2_index = 0; // } // GUILayout.EndHorizontal(); // GUILayout.EndVertical(); // // GUILayout.EndHorizontal(); // // //} // // //toggle for orbital info chunk // if (GUILayout.Button("Orbital Characteristics", GUILayout.ExpandWidth(true))) body_op_show_orbital = !body_op_show_orbital; // // if (body_op_show_orbital) // { // //begin orbital into horizontal chunk // //print("begin orbital info section..."); // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // // //begin orbital value labels column // GUILayout.BeginVertical(GUILayout.Width(150)); // // //print("printing row labels..."); // // GUILayout.Label("Apoapsis:"); // GUILayout.Label("Time to Ap:"); // GUILayout.Label("Periapsis:"); // GUILayout.Label("Time to Pe:"); // GUILayout.Label("Semi-major axis:"); // GUILayout.Label("Eccentricity:"); // GUILayout.Label("Orbital period:"); // GUILayout.Label("Rotational period:"); // GUILayout.Label("Velocity:"); // GUILayout.Label("Mean anomaly:"); // GUILayout.Label("True anomaly:"); // GUILayout.Label("Eccentric anomaly:"); // GUILayout.Label("Inclination:"); // GUILayout.Label("Long. ascending node:"); // GUILayout.Label("Arg. of periapsis:"); // GUILayout.Label("Tidally locked:"); // // //end orbital value labels column // GUILayout.EndVertical(); // // //begin primary orbital values column // GUILayout.BeginVertical(GUILayout.Width(150)); // // body_OP_show_orbital_info(body_OP_selected_body_1); // // //end primary orbital values column // GUILayout.EndVertical(); // // //begin secondary orbital values column // GUILayout.BeginVertical(GUILayout.Width(150)); // // body_OP_show_orbital_info(body_OP_selected_body_2); // // //end secondary orbital values column // GUILayout.EndVertical(); // // //end orbital info horizontal chunk // GUILayout.EndHorizontal(); // } // // //toggle for physical info chunk // if (GUILayout.Button("Physical Characteristics", GUILayout.ExpandWidth(true))) body_op_show_physical = !body_op_show_physical; // // if (body_op_show_physical) // { // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // // //begin physical info value label column // GUILayout.BeginVertical(GUILayout.Width(150)); // // GUILayout.Label("Radius:"); // GUILayout.Label("Surface area:"); // GUILayout.Label("Volume:"); // GUILayout.Label("Mass:"); // GUILayout.Label("Density:"); // GUILayout.Label("Sphere of influence:"); // GUILayout.Label("Natural satellites:"); // GUILayout.Label("Artificial satellites:"); // GUILayout.Label("Surface gravity:"); // GUILayout.Label("Atmosphere altitude:"); // GUILayout.Label("Atmospheric O\u2082:"); // GUILayout.Label("Has ocean:"); // // //end physical info value label column // GUILayout.EndVertical(); // // //begin primary physical values column // GUILayout.BeginVertical(GUILayout.Width(150)); // // body_OP_show_physical_info(body_OP_selected_body_1); // // //end primary physical column // GUILayout.EndVertical(); // // //begin secondary physical values column // GUILayout.BeginVertical(GUILayout.Width(150)); // // body_OP_show_physical_info(body_OP_selected_body_2); // // //end target physical values column // GUILayout.EndVertical(); // // //end physical value horizontal chunk // GUILayout.EndHorizontal(); // } // // GUI.DragWindow(); // } // // private void rendezvous_info_gui(int window_id) // { // Vessel rendezvessel = new Vessel(); // CelestialBody rendezbody = new CelestialBody(); // // GUILayout.BeginVertical(); // // //display both // //Show Target Info // GUILayout.Label("Target:", label_txt_center_bold); // if (FlightGlobals.fetch.VesselTarget != null) // { // //a KSP Target (body or vessel) is selected // if (FlightGlobals.fetch.vesselTargetMode == FlightGlobals.VesselTargetModes.Direction) // { // //a Body is selected // rendezbody = vessel.patchedConicSolver.targetBody; // display_rendezvous_info(null, rendezbody); // } // else if (FlightGlobals.fetch.vesselTargetMode == FlightGlobals.VesselTargetModes.DirectionAndVelocity) // { // //a Vessel is selected // rendezvessel = FlightGlobals.fetch.VesselTarget.GetVessel(); // display_rendezvous_info(rendezvessel, null); // } // //Show Unset button for both options above // if (GUILayout.Button("Unset Target", GUILayout.ExpandWidth(false))) // { // FlightGlobals.fetch.SetVesselTarget(null); // if (debugging) Debug.Log("[VOID] KSP Target set to null"); // } // // } // else // { // //no KSP Target selected // GUILayout.Label("No Target Selected", label_txt_center_bold); // } // // //Show Vessel Register vessel info // if (hide_vesreg_info == false) // { // GUILayout.Label("Vessel Register:", label_txt_center_bold); // if (vesreg_selected_vessel != null) // { // rendezvessel = vesreg_selected_vessel; // display_rendezvous_info(rendezvessel, null); // // //show set/unset buttons // if (FlightGlobals.fetch.VesselTarget == null || (FlightGlobals.fetch.VesselTarget != null && FlightGlobals.fetch.VesselTarget.GetVessel() != vesreg_selected_vessel)) // { // //no Tgt set or Tgt is not this vessel // //show a Set button // if (GUILayout.Button("Set Target", GUILayout.ExpandWidth(false))) // { // FlightGlobals.fetch.SetVesselTarget(rendezvessel); // if (debugging) Debug.Log("[VOID] KSP Target set to " + rendezvessel.vesselName); // } // } // else if (FlightGlobals.fetch.VesselTarget != null && FlightGlobals.fetch.VesselTarget.GetVessel() == vesreg_selected_vessel) // { // //this VRegister Tgt is also set as KSP tgt // //show Unset button // //if (GUILayout.Button("Unset Target", GUILayout.ExpandWidth(false))) // //{ // // FlightGlobals.fetch.SetVesselTarget(null); // // if (debugging) Debug.Log("[VOID] KSP Target set to null"); // // } // } // } // else // { // //vesreg Vessel is null // //targ = null; // GUILayout.Label("No Vessel Selected", label_txt_center_bold); // } // } // // hide_vesreg_info = GUILayout.Toggle(hide_vesreg_info, "Hide Vessel Register Info"); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label(" ", GUILayout.ExpandWidth(true)); // if (GUILayout.Button("Close", GUILayout.ExpandWidth(false))) rendezvous_module = false; // GUILayout.EndHorizontal(); // // GUILayout.EndVertical(); // GUI.DragWindow(); // } // // private void display_rendezvous_info(Vessel v, CelestialBody cb) // { // if (cb == null && v != null) // { // //Display vessel rendezvous info // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label(v.vesselName, label_txt_center_bold, GUILayout.ExpandWidth(true)); // GUILayout.EndHorizontal(); // // if (v.situation == Vessel.Situations.ESCAPING || v.situation == Vessel.Situations.FLYING || v.situation == Vessel.Situations.ORBITING || v.situation == Vessel.Situations.SUB_ORBITAL) // { // // Toadicus edit: added local sidereal longitude. // // Toadicus edit: added local sidereal longitude. // double LSL = vessel.longitude + vessel.orbit.referenceBody.rotationAngle; // LSL = Tools.FixDegreeDomain (LSL); // // //display orbital info for orbiting/flying/suborbital/escaping vessels only // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Ap/Pe:"); // GUILayout.Label(Tools.MuMech_ToSI(v.orbit.ApA) + "m / " + Tools.MuMech_ToSI(v.orbit.PeA) + "m", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Altitude:"); // GUILayout.Label(Tools.MuMech_ToSI(v.orbit.altitude) + "m", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Inclination:"); // GUILayout.Label(v.orbit.inclination.ToString("F3") + "°", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // if (vessel.mainBody == v.mainBody) // { // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Relative inclination:"); // GUILayout.Label(Vector3d.Angle(vessel.orbit.GetOrbitNormal(), v.orbit.GetOrbitNormal()).ToString("F3") + "°", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // } // //if (debugging) Debug.Log("[CHATR] v -> v relative incl OK"); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Velocity:"); // GUILayout.Label(Tools.MuMech_ToSI(v.orbit.vel.magnitude) + "m/s", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Relative velocity:"); // GUILayout.Label(Tools.MuMech_ToSI(v.orbit.vel.magnitude - vessel.orbit.vel.magnitude) + "m/s", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Distance:"); // GUILayout.Label(Tools.MuMech_ToSI((vessel.findWorldCenterOfMass() - v.findWorldCenterOfMass()).magnitude) + "m", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // //target_vessel_extended_orbital_info = GUILayout.Toggle(target_vessel_extended_orbital_info, "Extended info"); // // if (target_vessel_extended_orbital_info) // { // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Period:"); // GUILayout.Label(Tools.ConvertInterval(v.orbit.period), GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Semi-major axis:"); // GUILayout.Label((v.orbit.semiMajorAxis / 1000).ToString("##,#") + "km", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Eccentricity:"); // GUILayout.Label(v.orbit.eccentricity.ToString("F4"), GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // // Toadicus edit: convert mean anomaly into degrees. // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Mean anomaly:"); // GUILayout.Label((v.orbit.meanAnomaly * 180d / Math.PI).ToString("F3") + "°", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("True anomaly:"); // GUILayout.Label(v.orbit.trueAnomaly.ToString("F3") + "°", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // // Toadicus edit: convert eccentric anomaly into degrees. // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Eccentric anomaly:"); // GUILayout.Label((v.orbit.eccentricAnomaly * 180d / Math.PI).ToString("F3") + "°", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Long. ascending node:"); // GUILayout.Label(v.orbit.LAN.ToString("F3") + "°", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Arg. of periapsis:"); // GUILayout.Label(v.orbit.argumentOfPeriapsis.ToString("F3") + "°", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // // Toadicus edit: added local sidereal longitude. // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Local Sidereal Longitude:"); // GUILayout.Label(LSL.ToString("F3") + "°", label_txt_right); // GUILayout.EndHorizontal(); // } // } // else // { // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Latitude:"); // GUILayout.Label(Tools.GetLatitudeString(vessel), GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Longitude:"); // GUILayout.Label(Tools.GetLongitudeString(vessel), GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Distance:"); // GUILayout.Label(Tools.MuMech_ToSI((vessel.findWorldCenterOfMass() - v.findWorldCenterOfMass()).magnitude) + "m", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // } // } // else if (cb != null && v == null) // { // //Display CelstialBody rendezvous info // GUILayout.Label(cb.bodyName, label_txt_center_bold); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Ap/Pe:"); // GUILayout.Label(Tools.MuMech_ToSI(cb.orbit.ApA) + "m / " + Tools.MuMech_ToSI(cb.orbit.PeA) + "m", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // //if (debugging) Debug.Log("[VOID] Ap/Pe OK"); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Inclination:"); // GUILayout.Label(cb.orbit.inclination.ToString("F3") + "°", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // //if (debugging) Debug.Log("[VOID] Inclination OK"); // // if (cb.referenceBody == vessel.mainBody) // { // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Relative inclination:"); // GUILayout.Label(Vector3d.Angle(vessel.orbit.GetOrbitNormal(), cb.orbit.GetOrbitNormal()).ToString("F3") + "°", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // //if (debugging) Debug.Log("[VOID] cb Relative inclination OK"); // } // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Distance:"); // GUILayout.Label(Tools.MuMech_ToSI((vessel.mainBody.position - cb.position).magnitude) + "m", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // //if (debugging) Debug.Log("[VOID] Distance OK"); // // //SUN2PLANET: // if (vessel.mainBody.bodyName == "Sun" && cb.referenceBody == vessel.mainBody) // { // display_transfer_angles_SUN2PLANET(cb); // //if (debugging) Debug.Log("[VOID] SUN2PLANET OK"); // } // // //PLANET2PLANET // else if (vessel.mainBody.referenceBody.bodyName == "Sun" && cb.referenceBody == vessel.mainBody.referenceBody) // { // display_transfer_angles_PLANET2PLANET(cb); // //if (debugging) Debug.Log("[VOID] PLANET2PLANET OK"); // } // // //PLANET2MOON // else if (vessel.mainBody.referenceBody.bodyName == "Sun" && cb.referenceBody == vessel.mainBody) // { // display_transfer_angles_PLANET2MOON(cb); // //if (debugging) Debug.Log("[VOID] PLANET2MOON OK"); // } // // //MOON2MOON // else if (vessel.mainBody.referenceBody.referenceBody.bodyName == "Sun" && cb.referenceBody == vessel.mainBody.referenceBody) // { // display_transfer_angles_MOON2MOON(cb); // //if (debugging) Debug.Log("[VOID] MOON2MOON OK"); // } // // //else GUILayout.Label("Transfer angle information\nunavailable for this target"); // // } // } // // private void data_time_gui(int window_id) // { // GUIStyle txt_white = new GUIStyle(GUI.skin.label); // txt_white.normal.textColor = txt_white.focused.textColor = Color.white; // GUIStyle txt_green = new GUIStyle(GUI.skin.label); // txt_green.normal.textColor = txt_green.focused.textColor = Color.green; // GUIStyle txt_yellow = new GUIStyle(GUI.skin.label); // txt_yellow.normal.textColor = txt_yellow.focused.textColor = Color.yellow; // // GUILayout.BeginVertical(); // // GUILayout.Label("System time: " + DateTime.Now.ToString("HH:mm:ss")); // GUILayout.Label(Tools.ConvertInterval(stopwatch1)); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // if (GUILayout.Button("Start")) // { // if (stopwatch1_running == false) stopwatch1_running = true; // } // if (GUILayout.Button("Stop")) // { // if (stopwatch1_running == true) stopwatch1_running = false; // } // if (GUILayout.Button("Reset")) // { // if (stopwatch1_running == true) stopwatch1_running = false; // stopwatch1 = 0; // } // GUILayout.EndHorizontal(); // // GUIStyle label_style = txt_white; // string log_label = "Inactive"; // if (csv_logging && vessel.situation.ToString() == "PRELAUNCH") // { // log_label = "Awaiting launch"; // label_style = txt_yellow; // } // if (csv_logging && vessel.situation.ToString() != "PRELAUNCH") // { // log_label = "Active"; // label_style = txt_green; // } // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // csv_logging = GUILayout.Toggle(csv_logging, "Data logging: ", GUILayout.ExpandWidth(false)); // GUILayout.Label(log_label, label_style, GUILayout.ExpandWidth(true)); // GUILayout.EndHorizontal(); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Interval: ", GUILayout.ExpandWidth(false)); // csv_log_interval_str = GUILayout.TextField(csv_log_interval_str, GUILayout.ExpandWidth(true)); // GUILayout.Label("s", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // float new_log_interval; // if (Single.TryParse(csv_log_interval_str, out new_log_interval)) csv_log_interval = new_log_interval; // // GUILayout.EndVertical(); // GUI.DragWindow(); // } // // private void vessel_info_gui(int window_id) // { // GUILayout.BeginVertical(); // // GUILayout.Label(vessel.vesselName, label_txt_center_bold, GUILayout.ExpandWidth(true)); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("G-force:"); // GUILayout.Label(vessel.geeForce.ToString("F2") + " gees", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // int num_parts = 0; // double total_mass = vessel.GetTotalMass(); // double resource_mass = 0; // double max_thrust = 0; // double final_thrust = 0; // // foreach (Part p in vessel.parts) // { // num_parts++; // resource_mass += p.GetResourceMass(); // // foreach (PartModule pm in p.Modules) // { // if ((pm.moduleName == "ModuleEngines") && ((p.State == PartStates.ACTIVE) || ((Staging.CurrentStage > Staging.lastStage) && (p.inverseStage == Staging.lastStage)))) // { // max_thrust += ((ModuleEngines)pm).maxThrust; // final_thrust += ((ModuleEngines)pm).finalThrust; // } // } // } // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Parts:"); // GUILayout.Label(num_parts.ToString("F0"), GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Total mass:"); // GUILayout.Label(total_mass.ToString("F1") + " tons", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Resource mass:"); // GUILayout.Label(resource_mass.ToString("F1") + " tons", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // if (stages.Length > Staging.lastStage) // { // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("DeltaV (Current Stage):"); // GUILayout.Label(Tools.MuMech_ToSI(stages[Staging.lastStage].deltaV).ToString() + "m/s", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // } // // if (stages.Length > 0) // { // double totalDeltaV = 0d; // // for (int i = 0; i < stages.Length; ++i) // { // totalDeltaV += stages [i].deltaV; // } // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("DeltaV (Total):"); // GUILayout.Label(Tools.MuMech_ToSI(totalDeltaV).ToString() + "m/s", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // } // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Throttle:"); // GUILayout.Label((vessel.ctrlState.mainThrottle * 100f).ToString("F0") + "%", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Thrust (curr/max):"); // GUILayout.Label(final_thrust.ToString("F1") + " / " + max_thrust.ToString("F1") + " kN", GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // double gravity = vessel.mainBody.gravParameter / Math.Pow(vessel.mainBody.Radius + vessel.altitude, 2); // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("T:W (curr/max):"); // GUILayout.Label((final_thrust / (total_mass * gravity)).ToString("F2") + " / " + (max_thrust / (total_mass * gravity)).ToString("F2"), GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // double g_ASL = (G_constant * vessel.mainBody.Mass) / Math.Pow(vessel.mainBody.Radius, 2); // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label("Max T:W @ surface:"); // GUILayout.Label((max_thrust / (total_mass * g_ASL)).ToString("F2"), GUILayout.ExpandWidth(false)); // GUILayout.EndHorizontal(); // // GUILayout.EndVertical(); // GUI.DragWindow(); // } // // private void misc_info_gui(int window_id) // { // GUIContent _content = new GUIContent(); // GUILayout.BeginVertical(); // // //show_tooltips = GUILayout.Toggle(show_tooltips, "Show tooltips", GUILayout.ExpandWidth(true)); // disable_power_usage = GUILayout.Toggle(disable_power_usage, "Disable power usage"); // hide_on_pause = GUILayout.Toggle(hide_on_pause, "Hide windows on pause"); // data_time_module = GUILayout.Toggle(data_time_module, "Data Logging & Time"); // // //Language // languages[] languages_array = Enum.GetValues(typeof(languages)) as languages[]; // List<languages> languages_list = new List<languages>(); // // foreach (var val in languages_array) // { // languages_list.Add(val); // } // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // // if (GUILayout.Button("◄")) // { // //need separate preset indices for chatter and each beep // user_lang_index--; // if (user_lang_index < 0) user_lang_index = languages_list.Count - 1; // if (debugging) Debug.Log("[VOID] user_lang_index = " + user_lang_index); // //user_lang = languages_list[user_lang_index]; // //load_language(); // } // // if (GUILayout.Button("[WIP]" + languages_list[user_lang_index].ToString())) // { // user_lang = languages_list[user_lang_index]; // load_language(); // } // // if (GUILayout.Button("►")) // { // user_lang_index++; // if (user_lang_index >= languages_list.Count) user_lang_index = 0; // if (debugging) Debug.Log("[VOID] user_lang_index = " + user_lang_index); // //user_lang = languages_list[user_lang_index]; // //load_language(); // } // // GUILayout.EndHorizontal(); // // //Skin picker // GUISkin[] skin_array = AssetBase.FindObjectsOfTypeIncludingAssets(typeof(GUISkin)) as GUISkin[]; // List<GUISkin> skin_list = new List<GUISkin>(); // // foreach (GUISkin _skin in skin_array) // { // if (_skin.name != "PlaqueDialogSkin" && _skin.name != "FlagBrowserSkin" && _skin.name != "SSUITextAreaDefault") skin_list.Add(_skin); // } // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // // GUILayout.Label("Skin:", GUILayout.ExpandWidth(false)); // // _content.text = "◄"; // _content.tooltip = "Select previous skin"; // if (GUILayout.Button(_content, GUILayout.ExpandWidth(true))) // { // skin_index--; // if (skin_index < 0) skin_index = skin_list.Count; // if (debugging) Debug.Log("[VOID] new skin_index = " + skin_index + " :: skin_list.Count = " + skin_list.Count); // } // // string skin_name = ""; // if (skin_index == 0) skin_name = "None"; // else skin_name = skin_list[skin_index - 1].name; // _content.text = skin_name; // _content.tooltip = "Current skin"; // GUILayout.Label(_content, label_txt_center, GUILayout.ExpandWidth(true)); // // _content.text = "►"; // _content.tooltip = "Select next skin"; // if (GUILayout.Button(_content, GUILayout.ExpandWidth(true))) // { // skin_index++; // if (skin_index > skin_list.Count) skin_index = 0; // if (debugging) Debug.Log("[VOID] new skin_index = " + skin_index + " :: skin_list.Count = " + skin_list.Count); // } // // GUILayout.EndHorizontal(); // // //Change icon position // if (changing_icon_pos == false) // { // _content.text = "Change icon position"; // _content.tooltip = "Move icon anywhere on the screen"; // if (GUILayout.Button(_content, GUILayout.ExpandWidth(false))) changing_icon_pos = true; // } // else GUILayout.Label("Click anywhere to set new icon position"); // // //HUD color // if (GUILayout.Button("Change HUD color", GUILayout.ExpandWidth(false)) && this.moduleHUD != null) // { // Tools.PostDebugMessage ("VOID: Incrementing VOID_HUD ColorIndex."); // this.moduleHUD.ColorIndex++; // // } // // //if (show_tooltips && GUI.tooltip != "") tooltips(misc_window_pos); // // GUILayout.EndVertical(); // GUI.DragWindow(); // } // // private void vessel_register_gui(int window_id) // { // GUILayout.BeginVertical(); // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // if (GUILayout.Button("<")) // { // vessel_register_body_index--; // if (vessel_register_body_index < 0) vessel_register_body_index = all_bodies.Count - 1; // } // GUILayout.Label(all_bodies[vessel_register_body_index].bodyName, label_txt_center_bold, GUILayout.ExpandWidth(true)); // if (GUILayout.Button(">")) // { // vessel_register_body_index++; // if (vessel_register_body_index > all_bodies.Count - 1) vessel_register_body_index = 0; // } // GUILayout.EndHorizontal(); // // vessel_register_selected_body = all_bodies[vessel_register_body_index]; // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // if (GUILayout.Button("<")) // { // vessel_register_vessel_type_index--; // if (vessel_register_vessel_type_index < 0) vessel_register_vessel_type_index = all_vessel_types.Count - 1; // } // GUILayout.Label(all_vessel_types[vessel_register_vessel_type_index].ToString(), label_txt_center_bold, GUILayout.ExpandWidth(true)); // if (GUILayout.Button(">")) // { // vessel_register_vessel_type_index++; // if (vessel_register_vessel_type_index > all_vessel_types.Count - 1) vessel_register_vessel_type_index = 0; // } // GUILayout.EndHorizontal(); // // vessel_register_vessel_type = all_vessel_types[vessel_register_vessel_type_index]; // // GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // if (GUILayout.Button("Landed", GUILayout.ExpandWidth(true))) vessel_register_vessel_situation = "Landed"; // if (GUILayout.Button("Orbiting", GUILayout.ExpandWidth(true))) vessel_register_vessel_situation = "Orbiting"; // GUILayout.EndHorizontal(); // // //GUILayout.BeginHorizontal(GUILayout.ExpandWidth(true)); // GUILayout.Label(Tools.UppercaseFirst(vessel_register_vessel_situation) + " " + vessel_register_vessel_type.ToString() + "s @ " + vessel_register_selected_body.bodyName, label_txt_center, GUILayout.ExpandWidth(true)); // //GUILayout.EndHorizontal(); // // GUILayout.EndVertical(); // // vessel_register_scroll_pos = GUILayout.BeginScrollView(vessel_register_scroll_pos, false, false); // // foreach (Vessel v in FlightGlobals.Vessels) // { // if (v != vessel && v.vesselType == vessel_register_vessel_type && v.mainBody == vessel_register_selected_body) // { // if ((vessel_register_vessel_situation == "Landed" && (v.situation == Vessel.Situations.LANDED || v.situation == Vessel.Situations.PRELAUNCH || v.situation == Vessel.Situations.SPLASHED)) || (vessel_register_vessel_situation == "Orbiting" && (v.situation == Vessel.Situations.ESCAPING || v.situation == Vessel.Situations.FLYING || v.situation == Vessel.Situations.ORBITING || v.situation == Vessel.Situations.SUB_ORBITAL))) // { // if (GUILayout.Button(v.vesselName, GUILayout.ExpandWidth(true))) // { // if (vesreg_selected_vessel != v) // { // vesreg_selected_vessel = v; //set clicked vessel as selected_vessel // rendezvous_module = true; //turn bool on to open the window if closed // } // else // { // vesreg_selected_vessel = null; // } // } // } // } // } // // GUILayout.EndScrollView(); // GUI.DragWindow(); // } // // //private void tooltips(Rect pos) // //{ // // if (show_tooltips && GUI.tooltip != "") // // { // // float w = 5.5f * GUI.tooltip.Length; // // float x = (Event.current.mousePosition.x < pos.width / 2) ? Event.current.mousePosition.x + 10 : Event.current.mousePosition.x - 10 - w; // // GUI.Box(new Rect(x, Event.current.mousePosition.y, w, 25f), GUI.tooltip, gs_tooltip); // // } // //} // // private void main_gui(int window_id) // { // GUILayout.BeginVertical(); // // if (power_available) // { // if (power_toggle) // { // //Show menu toggles only when power is turned on and available // vessel_info_module = GUILayout.Toggle(vessel_info_module, "Vessel Infomation"); // void_module = GUILayout.Toggle(void_module, "Orbital Information"); // atmo_module = GUILayout.Toggle(atmo_module, "Surface & Atmospheric Information"); // tad_module = GUILayout.Toggle(tad_module, "Transfer Angle Information"); // rendezvous_module = GUILayout.Toggle(rendezvous_module, "Rendezvous Information"); // celestial_body_info_module = GUILayout.Toggle(celestial_body_info_module, "Celestial Body Information"); // vessel_register_module = GUILayout.Toggle(vessel_register_module, "Vessel Register"); // misc_module = GUILayout.Toggle(misc_module, "Miscellaneous"); // toggleHUDModule = GUILayout.Toggle(toggleHUDModule, "Show HUD"); // //test_module = GUILayout.Toggle(test_module, "The Lab"); // } // // string str = "ON"; // if (power_toggle) str = "OFF"; // if (GUILayout.Button("Power " + str)) power_toggle = !power_toggle; // } // else // { // GUIStyle label_txt_red = new GUIStyle(GUI.skin.label); // label_txt_red.normal.textColor = Color.red; // label_txt_red.alignment = TextAnchor.MiddleCenter; // GUILayout.Label("-- POWER LOST --", label_txt_red); // } // // GUILayout.EndVertical(); // GUI.DragWindow(); // } // // protected void draw_GUI() // { // if (hide_on_pause == false || (hide_on_pause && PauseMenu.isOpen == false)) // { // //Apply a skin if selected // if (skin_index == 0) GUI.skin = null; // else if (skin_index == 1) GUI.skin = AssetBase.GetGUISkin("KSP window 1"); // else if (skin_index == 2) GUI.skin = AssetBase.GetGUISkin("KSP window 2"); // else if (skin_index == 3) GUI.skin = AssetBase.GetGUISkin("KSP window 3"); // else if (skin_index == 4) GUI.skin = AssetBase.GetGUISkin("KSP window 4"); // else if (skin_index == 5) GUI.skin = AssetBase.GetGUISkin("KSP window 5"); // else if (skin_index == 6) GUI.skin = AssetBase.GetGUISkin("KSP window 6"); // else if (skin_index == 7) GUI.skin = AssetBase.GetGUISkin("KSP window 7"); // else if (skin_index == 8) GUI.skin = AssetBase.GetGUISkin("OrbitMapSkin"); // // if (gui_styles_set == false) set_gui_styles(); //set GUI styles once AFTER setting skin // // void_icon = void_icon_off; //icon off default // if (power_toggle) void_icon = void_icon_on; //or on if power_toggle==true // if (GUI.Button(new Rect(main_icon_pos), void_icon, new GUIStyle())) main_gui_minimized = !main_gui_minimized; // // int window_id = window_base_id; // // if (main_gui_minimized == false) main_window_pos = GUILayout.Window(window_id, main_window_pos, main_gui, version_name + this_version, GUILayout.Width(250), GUILayout.Height(50)); // if (power_toggle && power_available) // { // //hide these windows if power is turned off or unavailable // if (void_module) void_window_pos = GUILayout.Window(++window_id, void_window_pos, void_gui, "Orbital Information", GUILayout.Width(250), GUILayout.Height(50)); // if (atmo_module) atmo_window_pos = GUILayout.Window(++window_id, atmo_window_pos, atmo_gui, "Surface & Atmospheric Information", GUILayout.Width(250), GUILayout.Height(50)); // if (tad_module) transfer_window_pos = GUILayout.Window(++window_id, transfer_window_pos, tad_gui, "Transfer Angle Information", GUILayout.Width(315), GUILayout.Height(50)); // if (vessel_register_module) vessel_register_window_pos = GUILayout.Window(++window_id, vessel_register_window_pos, vessel_register_gui, "Vessel Register", GUILayout.Width(250), GUILayout.Height(375)); // if (data_time_module) data_logging_window_pos = GUILayout.Window(++window_id, data_logging_window_pos, data_time_gui, "Data Logging & Time", GUILayout.Width(250), GUILayout.Height(50)); // if (vessel_info_module) // { // if ((TimeWarp.WarpMode == TimeWarp.Modes.LOW) || (TimeWarp.CurrentRate <= TimeWarp.MaxPhysicsRate)) // { // SimManager.Instance.RequestSimulation(); // } // // vessel_info_window_pos = GUILayout.Window(++window_id, vessel_info_window_pos, vessel_info_gui, "Vessel Information", GUILayout.Width(250), GUILayout.Height(50)); // } // if (misc_module) misc_window_pos = GUILayout.Window(++window_id, misc_window_pos, misc_info_gui, "Miscellaneous", GUILayout.Width(275), GUILayout.Height(50)); // if (test_module) lab_window_pos = GUILayout.Window(++window_id, lab_window_pos, test_gui, "The Lab", GUILayout.Width(350), GUILayout.Height(50)); // if (rendezvous_module) rendezvous_info_window_pos = GUILayout.Window(++window_id, rendezvous_info_window_pos, rendezvous_info_gui, "Rendezvous Information", GUILayout.Width(315), GUILayout.Height(50)); // if (celestial_body_info_module) body_op_window_pos = GUILayout.Window(++window_id, body_op_window_pos, celestial_body_info_gui, "Celestial Body Information", GUILayout.Width(420), GUILayout.Height(50)); // } // } // } // // public void Awake() // { // settings_path = AssemblyLoader.loadedAssemblies.GetPathByType(typeof(VOIDFlightMaster)) + "/"; //returns "X:/full/path/to/GameData/RBR/Plugins/PluginData/VOID" // load_icons(); // load_language(); // load_settings(); // } // // private UInt64 updateCounter = 0; // public void Update() // { // ++updateCounter; // Tools.PostDebugMessage (string.Format ("VOID: Update #{0}", updateCounter)); // // Module Startups // if (this.toggleHUDModule && this.moduleHUD == null) // { // Tools.PostDebugMessage ("VOID: Getting VOID_HUD instance."); // this.moduleHUD = (VOID_HUD)VOID_HUD.Instance; // Tools.PostDebugMessage ("VOID: Loading VOID_HUD config."); // this.moduleHUD.LoadConfig (); // Tools.PostDebugMessage ("VOID: VOID_HUD All loaded."); // this.moduleHUD.StartGUI (); // } // // Tools.PostDebugMessage (string.Format("VOID: this.moduleHUD.ColorIndex = '{0}'.", this.moduleHUD.ColorIndex)); // // //Icon relocation // if (changing_icon_pos && Input.GetMouseButtonDown(0)) // { // main_icon_pos = new Rect(Input.mousePosition.x - 15f, Screen.height - Input.mousePosition.y - 15f, 30f, 30f); // changing_icon_pos = false; // } // // if (FlightGlobals.ActiveVessel != null) // { // vessel = FlightGlobals.ActiveVessel; // // if (run_once) // { // if (debugging) Debug.Log("[VOID] running run_once..."); // all_bodies.AddRange(FlightGlobals.Bodies); // vessel_register_body_index = all_bodies.IndexOf(vessel.mainBody); // // Array va = System.Enum.GetValues(typeof(VesselType)); // all_vessel_types = va.OfType<VesselType>().ToList(); // vessel_register_vessel_type_index = all_vessel_types.IndexOf(vessel.vesselType); // // run_once = false; // } // // if (vessel == FlightGlobals.ActiveVessel) // { // // if (SimManager.Instance.Stages != null) // { // stages = SimManager.Instance.Stages; // } // // SimManager.Instance.Gravity = vessel.mainBody.gravParameter / Math.Pow(vessel.mainBody.Radius, 2); // SimManager.Instance.TryStartSimulation(); // } // // if (gui_running == false) start_GUI(); // // cfg_update_timer += 1; // if (cfg_update_timer >= 15f) // { // write_settings(); // cfg_update_timer = 0f; // } // // if (power_available) // { // main_csv(); // a function to group together all the Data Logging/csv functions // if (stopwatch1_running) stopwatch1 += Time.deltaTime; // } // } // else // { // //activevessel == null // if (gui_running) // { // Tools.PostDebugMessage ("VOID: Stopping GUI because our vessel isn't the active vessel."); // stop_GUI(); // } // } // } // // public void FixedUpdate() // { // if (power_toggle) consume_resources(); // } } } |