It has been asked to recompile to 2016 and 2024.
from the docs:
This software is Freeware
This software may be freely modified and distributed.
I really am not the person to do this as I have never made a MFD
#define STRICT
#define ORBITER_MODULE
#include <windows.h>
#include <stdio.h>
#include <math.h>
#include <iostream>
#include <direct.h>
#include "orbitersdk.h"
//#include "MFDAPI.h"
#include "FlightDataRecMFD.h"
it had #include <iostream.h> but edited.
it has alot of this:
TextXY(hDC, 0, 16, YELLOW, BLACK, "Rate: %.3f", (1/sample_dt));
but needs to be converted to sketchup. I can do that.
but this:
void log_data(void)
{
ofstream out_file(logpath,ios::app);
if (out_file)
{
and this:
MFDUpdate(hDC, cw, ch);
from the docs:
This software is Freeware
This software may be freely modified and distributed.
I really am not the person to do this as I have never made a MFD
#define STRICT
#define ORBITER_MODULE
#include <windows.h>
#include <stdio.h>
#include <math.h>
#include <iostream>
#include <direct.h>
#include "orbitersdk.h"
//#include "MFDAPI.h"
#include "FlightDataRecMFD.h"
it had #include <iostream.h> but edited.
it has alot of this:
TextXY(hDC, 0, 16, YELLOW, BLACK, "Rate: %.3f", (1/sample_dt));
but needs to be converted to sketchup. I can do that.
but this:
void log_data(void)
{
ofstream out_file(logpath,ios::app);
if (out_file)
{
and this:
MFDUpdate(hDC, cw, ch);


