-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathMessagePipe.cpp
101 lines (94 loc) · 3.59 KB
/
MessagePipe.cpp
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
/*
* Copyright 2009,2010,2011 Reality Jockey, Ltd.
* http://rjdj.me/
*
* This file is part of ZenGarden.
*
* ZenGarden is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* ZenGarden 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with ZenGarden. If not, see <http://www.gnu.org/licenses/>.
*
*/
#include "MessagePipe.h"
#include "PdGraph.h"
MessageObject *MessagePipe::newObject(PdMessage *initMessage, PdGraph *graph) {
return new MessagePipe(initMessage, graph);
}
MessagePipe::MessagePipe(PdMessage *initMessage, PdGraph *graph) : MessageObject(2, 1, graph) {
delayMs = initMessage->isFloat(0) ? (double) initMessage->getFloat(0) : 0.0;
}
MessagePipe::~MessagePipe() {
// nothing to do
}
bool MessagePipe::shouldDistributeMessageToInlets() {
return false;
}
void MessagePipe::sendMessage(int outletIndex, PdMessage *message) {
// remove the scheduled message from the list before it is sent
scheduledMessagesList.remove(message);
MessageObject::sendMessage(outletIndex, message);
}
void MessagePipe::processMessage(int inletIndex, PdMessage *message) {
switch (inletIndex) {
case 0: {
switch (message->getType(0)) {
case SYMBOL: {
if (message->isSymbol(0, "flush")) {
// cancel all scheduled messages and send them immediately
for(list<PdMessage *>::iterator it = scheduledMessagesList.begin();
it != scheduledMessagesList.end(); it++) {
// send the message using the super class's sendMessage because otherwise the
// list will be changed while iterating over it. Leads to badness.
(*it)->setTimestamp(message->getTimestamp());
MessageObject::sendMessage(0, *it);
graph->cancelMessage(this, 0, *it); // cancel the scheduled message and free it from memory
}
scheduledMessagesList.clear();
break;
} else if (message->isSymbol(0, "clear")) {
// cancel all scheduled messages
for(list<PdMessage *>::iterator it = scheduledMessagesList.begin();
it != scheduledMessagesList.end(); it++) {
graph->cancelMessage(this, 0, *it);
}
scheduledMessagesList.clear();
break;
}
// allow fall-through
}
case FLOAT:
case BANG: {
// copy the message, update the timestamp, schedule it to be sent later
int numElements = message->getNumElements();
PdMessage *scheduledMessage = PD_MESSAGE_ON_STACK(numElements);
scheduledMessage->initWithTimestampAndNumElements(message->getTimestamp() + delayMs, numElements);
memcpy(scheduledMessage->getElement(0), message->getElement(0), numElements * sizeof(MessageAtom));
scheduledMessagesList.push_back(graph->scheduleMessage(this, 0, scheduledMessage));
break;
}
default: {
break;
}
}
}
case 1: {
if (message->isFloat(0)) {
delayMs = (double) message->getFloat(0);
}
break;
}
default: {
break;
}
}
}