Search results

  1. Mythos

    API Question Surface elevation of bases

    Is it correct, that both oapiGetBaseEquPos (OBJHANDLE hBase, double *lng, double *lat, double *rad = 0) oapiGetBasePadEquPos (OBJHANDLE hBase, DWORD pad, double *lng, double *lat, double *rad = 0) will produce an output radius value, that is the mean radius of the body and do not care about...
  2. Mythos

    OHM HoverMFD 1.1.3 for Orbiter 2016

    Hover MFD is an add-on for Orbiter introducing a new multifunctional display and a universal (meant for all spacecraft) autopilot for many kinds of maneuvers that use your hover engines. The autopilot functions are inspired by autopilots built in Arrow Freighter and DGIV. I wanted these...
  3. Mythos

    Problem Update MFD to Orbiter 2016

    I tried to update my MFD to Orbiter 2016 and struggle. Orber (no mods, just D3D9Client2016-R1) just crashes when loading any scene with my module activated. Of course I used the new SDK paths to compile. My first thought was to update to newer IDE version also, but I was not in the need and...
  4. Mythos

    General Question MFD font drwaing in D3D9

    I just tried D3D9 client R12 and encountered a problem with the MFD I am developing. I use 2 different font sizes by selecting the standard fonts. It looks something like this: MyMFD2::Update (oapi::Sketchpad *skp) { HDC hDC = skp->GetDC(); SelectDefaultFont (hDC, 1); sprintf(buffer, "Some...
  5. Mythos

    transform function of distance to function of time

    Hi guys, I got stuck with some maths and maybe someone here can help me. I'm coding an AP to approach a certain target. After the main stage of linear deceleration I have defined a point for the very last much smoother approach. Here I say my aimed speed v is a linear function of the distance...
  6. Mythos

    API Question MaxThrust vs. ThrusterIsp

    I want to support various engine setups in my AP, tail sitters, thruster pads and so on. My idea was to loop through all thruster groups and then check the vectors which one would fit to my needs. So maybe I can use the main engine in fact but treat it like a hover engine for all calculations...
  7. Mythos

    Flight Question Help with deorbit, reentry and runway approach

    Hello everybody, after many interplanetary trips with IMFD (learning TransX is still on my TODO-list) I want to improve my deorbit-, reentry- and landing-skills. For that I am learning to use Aerobrake MFD. Here's what I've practised now some times: Start within XR5 in it's standard scenario...
  8. Mythos

    Advanced Question Set lon/lat position from input

    Hi folks, this is not a question, I already worked out this solution. But it made me a lot of headache, so it would be useful for others, too. Input can look like: "Brighton Beach" -> get pos of that base "Brighton Beach 1" -> get pos of base's pad 1 "12.34W 56.78N" -> lon lat (DEG) "98.76S...
  9. Mythos

    API Question Precision of oapiWriteScenario

    Does anyone know how to set the precision of oapiWriteScenario_float() and oapiWriteScenario_vec()? It only writes two digits after the decimal point, regardless of how much there is before the decimal point. I don't want to do all that by formating a string and then use...
  10. Mythos

    Question General update procedure

    Hi developers, what is the best or official way to update your addons? Is it a hard rule to have the version number in your package / ZIP like hangar says? I don't want users keeping all old versions. Do you put version numbers into GUI? What's about updating config files? Do you put them...
  11. Mythos

    General Question Atmospheric thrust topics

    I made an autopilot for maintaining vertical speed or constant altitude by hover engines (Hover MFD HoverMFD 1.0.1) My intention was to have it run in no-atmospheric flight, because I don't know about the additional atmospheric things to calculate. As a feature request from one of my users I'm...
  12. Mythos

    API Question Multi-MFD load from scenario

    Hi, I tried hard and long, but I don't get to a point. So here is a longer description of my problem, the interesting outtakes of code and some questions about API. I want to implement saving and loading from scenario file for the status od my MFD. I put some work into splitting properties to...
  13. Mythos

    OHM HoverMFD 1.1.1 for Orbiter 2010

    Hover MFD is an add-on for Orbiter introducing a new multifunctional display and a universal (meant for all spacecraft) autopilot for many kinds of maneuvers that use your hover engines. The autopilot functions are inspired by autopilots built in Arrow Freighter and DGIV. I wanted these...
  14. Mythos

    General Question Speaking "power" or "force"

    Hi folks, would anyone feel aggressed, if a MFD labels "Engine Power" and then in fact the engine's maximum possible thrust force [N] is displayed? I would speak of a "force" if it is actually working. Technical sheets always say "power" for "how amazing strong" a vessel / car is :cool: I...
  15. Mythos

    API Question Vessel deletion in multi-vessel multi-MFD AP

    Hello, I searched the forum and found some hints to this topic like deriving from template multi-vessel-class, or saying "always check vessel by name before using". Since I want not only multi-vessel but also multi-MFD (within one vessel) persistancy, I do almost standard but had do it on my...
Top