aboutsummaryrefslogtreecommitdiff
path: root/guile-ola.cpp
blob: 1f78e7add6d2cb00cb2cba65d85b92357c7ece30 (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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
/*
 * guile-ola.cpp
 *
 * A very thin Guile wrapper for OLA StreamingClient
 *
 */

#include <iostream>
#include <ola/DmxBuffer.h>
#include <ola/Logging.h>
#include <ola/client/StreamingClient.h>
#include <libguile.h>

using ola::client::StreamingClient;


static SCM dmxbuffer_type;
static SCM streamingclient_type;


static SCM make_ola_dmx_buffer()
{
	ola::DmxBuffer *buf = new ola::DmxBuffer;
	buf->Blackout();
	return scm_make_foreign_object_1(dmxbuffer_type, buf);
}


static void finalize_dmxbuffer(SCM obj)
{
	void *vp;
	scm_assert_foreign_object_type(dmxbuffer_type, obj);
	vp = scm_foreign_object_ref(obj, 0);
	ola::DmxBuffer *buf = static_cast<ola::DmxBuffer*>(vp);
	delete buf;
}


static SCM set_ola_dmx_buffer(SCM obj1, SCM obj2, SCM obj3)
{
	void *vp;
	scm_assert_foreign_object_type(dmxbuffer_type, obj1);
	vp = scm_foreign_object_ref(obj1, 0);
	ola::DmxBuffer *buf = static_cast<ola::DmxBuffer*>(vp);
	buf->SetChannel(scm_to_int(obj2), scm_to_int(obj3));
	return obj3;
}


static SCM ola_dmx_buffers_equal_p(SCM obj1, SCM obj2)
{
	void *vp1;
	void *vp2;
	scm_assert_foreign_object_type(dmxbuffer_type, obj1);
	scm_assert_foreign_object_type(dmxbuffer_type, obj2);
	vp1 = scm_foreign_object_ref(obj1, 0);
	vp2 = scm_foreign_object_ref(obj2, 0);
	ola::DmxBuffer *buf1 = static_cast<ola::DmxBuffer*>(vp1);
	ola::DmxBuffer *buf2 = static_cast<ola::DmxBuffer*>(vp2);
	return scm_from_bool(*buf1 == *buf2);
}


static SCM make_ola_streaming_client()
{
	StreamingClient *cl;
	StreamingClient::Options *opts;

	ola::InitLogging(ola::OLA_LOG_WARN, ola::OLA_LOG_STDERR);
	opts = new StreamingClient::Options;
	cl = new StreamingClient(opts);

	if ( !cl->Setup() ) {
		std::cerr << "Setup failed" << std::endl;
		return SCM_BOOL_F;
	} else {
		std::cerr << "Setup OK" << std::endl;
		return scm_make_foreign_object_1(streamingclient_type, cl);
	}
}


static void finalize_streamingclient(SCM obj)
{
	void *vp;
	scm_assert_foreign_object_type(streamingclient_type, obj);
	vp = scm_foreign_object_ref(obj, 0);
	StreamingClient *cl = static_cast<StreamingClient*>(vp);
	delete cl;
}


static SCM send_streaming_dmx_data(SCM obj1, SCM obj2, SCM obj3)
{
	void *vp1;
	void *vp3;
	scm_assert_foreign_object_type(streamingclient_type, obj1);
	scm_assert_foreign_object_type(dmxbuffer_type, obj3);
	vp1 = scm_foreign_object_ref(obj1, 0);
	vp3 = scm_foreign_object_ref(obj3, 0);
	StreamingClient *cl = static_cast<StreamingClient*>(vp1);
	ola::DmxBuffer *buf = static_cast<ola::DmxBuffer*>(vp3);
	if ( !cl->SendDmx(scm_to_int(obj2), *buf) ) {
		std::cerr << "DMX send failed" << std::endl;
	}
	return SCM_UNSPECIFIED;
}


extern "C" void init_guile_ola()
{
	SCM name, slots;

	name = scm_from_utf8_symbol("OlaDmxBuffer");
	slots = scm_list_1(scm_from_utf8_symbol("data"));
	dmxbuffer_type = scm_make_foreign_object_type(name,
	                                              slots,
	                                              finalize_dmxbuffer);
	scm_c_define_gsubr("make-ola-dmx-buffer",
	                   0, 0, 0,
	                   reinterpret_cast<scm_t_subr>(make_ola_dmx_buffer));
	scm_c_define_gsubr("set-ola-dmx-buffer!",
	                   3, 0, 0,
	                   reinterpret_cast<scm_t_subr>(set_ola_dmx_buffer));
	scm_c_define_gsubr("ola-dmx-buffers-equal?",
	                   2, 0, 0,
	                   reinterpret_cast<scm_t_subr>(ola_dmx_buffers_equal_p));

	name = scm_from_utf8_symbol("OlaStreamingClient");
	slots = scm_list_1(scm_from_utf8_symbol("data"));
	streamingclient_type = scm_make_foreign_object_type(name,
	                                                    slots,
	                                                    finalize_streamingclient);
	scm_c_define_gsubr("make-ola-streaming-client",
	                   0, 0, 0,
	                   reinterpret_cast<scm_t_subr>(make_ola_streaming_client));
	scm_c_define_gsubr("send-streaming-dmx-data!",
	                   3, 0, 0,
	                   reinterpret_cast<scm_t_subr>(send_streaming_dmx_data));

	scm_add_feature("guile-ola");
}