summaryrefslogtreecommitdiffstats
path: root/src/lib/netlist/devices/nld_log.cpp
blob: 501b6e862e5ae287fa6a579598b9288f162e698d (plain) (blame)
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
// license:GPL-2.0+
// copyright-holders:Couriersud
/*
 * nld_log.c
 *
 */

#include "nld_log.h"
//#include "sound/wavwrite.h"

NETLIB_NAMESPACE_DEVICES_START()

//FIXME: what to do with save states?

NETLIB_UPDATE(log)
{
	/* use pstring::sprintf, it is a LOT faster */
	m_strm->writeline(plib::pfmt("{1} {2}").e(netlist().time().as_double(),".9").e((nl_double) INPANALOG(m_I)));
}

NETLIB_NAME(log)::~NETLIB_NAME(log)()
{
	m_strm->close();
}

NETLIB_UPDATE(logD)
{
	m_strm->writeline(plib::pfmt("{1} {2}").e(netlist().time().as_double(),".9").e((nl_double) (INPANALOG(m_I) - INPANALOG(m_I2))));
}

// FIXME: Implement wav later, this must be clock triggered device where the input to be written
//        is on a subdevice ..
#if 0
NETLIB_START(wav)
{
	enregister("I", m_I);

	pstring filename = "netlist_" + name() + ".wav";
	m_file = wav_open(filename, sample_rate(), active_inputs()/2)
}

NETLIB_UPDATE(wav)
{
	fprintf(m_file, "%e %e\n", netlist().time().as_double(), INPANALOG(m_I));
}

NETLIB_NAME(log)::~NETLIB_NAME(wav)()
{
	fclose(m_file);
}
#endif

NETLIB_NAMESPACE_DEVICES_END()