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
|
/*
* 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 2 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 Library General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
* ShowSaver.cpp
* Writes show data to a file.
* Copyright (C) 2011 Simon Newton
*
* The data file is in the form:
* universe-number channel1,channel2,channel3
* delay-in-ms
* universe-number channel1,channel2,channel3
*/
#include <errno.h>
#include <string.h>
#include <ola/DmxBuffer.h>
#include <ola/Logging.h>
#include <fstream>
#include <iostream>
#include <string>
#include "examples/ShowSaver.h"
using std::string;
using ola::DmxBuffer;
using std::endl;
const char ShowSaver::OLA_SHOW_HEADER[] = "OLA Show";
ShowSaver::ShowSaver(const string &filename)
: m_filename(filename) {
}
ShowSaver::~ShowSaver() {
Close();
}
/**
* Open the show file for writing.
* @returns true if we could open the file, false otherwise.
*/
bool ShowSaver::Open() {
m_show_file.open(m_filename.data());
if (!m_show_file.is_open()) {
OLA_FATAL << "Can't open " << m_filename << ": " << strerror(errno);
return false;
}
m_show_file << OLA_SHOW_HEADER << endl;
return true;
}
/**
* Close the show file
*/
void ShowSaver::Close() {
if (m_show_file.is_open()) {
m_show_file.close();
}
}
/**
* Write a new frame
*/
bool ShowSaver::NewFrame(const ola::TimeStamp &arrival_time,
unsigned int universe,
const ola::DmxBuffer &data) {
// TODO(simon): add much better error handling here
if (m_last_frame.IsSet()) {
// this is not the first frame so write the delay in ms
const ola::TimeInterval delta = arrival_time - m_last_frame;
m_show_file << delta.InMilliSeconds() << endl;
}
m_last_frame = arrival_time;
m_show_file << universe << " " << data.ToString() << endl;
return true;
}
|