summaryrefslogtreecommitdiffhomepage
path: root/opentrack-logic/tracklogger.hpp
blob: fd8620a1d8d915245cd8efc8d42325ca1e6d63d8 (plain)
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
#pragma once
#include "main-settings.hpp"
#include "opentrack-compat/options.hpp"

#include <fstream>
#include <QString>
#include <QMessageBox>
#include <QWidget>

class OPENTRACK_LOGIC_EXPORT TrackLogger
{
public:
    TrackLogger()
    {
    }

    virtual ~TrackLogger();

    virtual void write(const char *)
    {
    }

    virtual void write(const double *, int n)
    {
    }

    virtual void next_line()
    {
    }

    void write_pose(const double *p)
    {
        write(p, 6);
    }
};


class OPENTRACK_LOGIC_EXPORT TrackLoggerCSV : public TrackLogger
{
    std::ofstream out;
    bool first_col;
    inline void handle_first_col_sep();
public:
    TrackLoggerCSV(const QString &filename) : first_col(true)
    {
        out.open(filename.toStdString());
    }

    bool is_open() const { return out.is_open(); }
    void write(const char *s) override;
    void write(const double *p, int n) override;
    void next_line() override;
};