aboutsummaryrefslogtreecommitdiff
path: root/src/putget~.h
blob: a79665310bc3406750fb63235bd2e09ed5422647 (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
#include "m_pd.h"

/*
 typedef struct _param_inlet2
{
  t_object        x_obj;
  t_param  *p_owner;
} t_param_inlet2;

*/ 

struct putget {
	t_symbol*			name;
	t_sample 			a[64]; 
	t_sample 			b[64];
	t_sample*		w;
	t_sample* 		r; 
	int				writers;
	//int				written;
	int 			users;
	struct putget* 	next; 
    struct putget* 	previous; 
	t_clock*		clock;
	int 			armed;
    
};


struct putget* PUTGETS;

int count = 42;

// This should be triggered by the clock
static void putget_swap(struct putget* pg) {
	//post("clock");
	
	t_sample* temp = pg->r;
	pg->r = pg->w;
	pg->w = temp;
	
	int i;
	t_sample* samples = pg->w;
	for (i=0;i<64;i++) {
		*samples++ = 0;
		
	}
	
	pg->armed = 0;
	
	//if (pg == NULL) post("ouc");
	//pg->written = 0;
	
}

static struct putget* putget_register(t_symbol* name, int is_writer) {
  
  struct putget* new_putget;
  
  is_writer = is_writer ? 1 : 0;

  struct putget* pg = PUTGETS;
  
  if ( pg != NULL) {
		
	// Search for previous putget
	while( pg ) {
			if ( pg->name == name) {
				//#ifdef PARAMDEBUG
				 // post("Found put/get with same name");
				//#endif
				pg->writers = pg->writers + is_writer;
				pg->users = pg->users + 1;
				return pg;
			}
			if ( pg->next == NULL ) break;
			pg = pg->next; 
		}
	}
	
	
	//post("Appending new put/get");
	// Append new putget
    new_putget = getbytes(sizeof(*new_putget));
	new_putget->name = name;
	new_putget->writers = is_writer;
	new_putget->users = 1; 
    new_putget->armed = 0;
	
	new_putget->clock = clock_new(new_putget, (t_method)putget_swap);
	
	new_putget->r = new_putget->a;
	new_putget->w = new_putget->b;
	
	new_putget->previous = pg;
	if ( pg) {
		pg->next = new_putget;
	} else {
		PUTGETS = new_putget;
	}
	
	return new_putget;
	
}


static void putget_unregister(struct putget* pg, int is_writer) {
	
	//post("Trying to remove %s",pg->name->s_name);
	
	if ( is_writer) pg->writers = pg->writers - 1;
	pg->users = pg->users - 1;
	if ( pg->users <= 0) {
		//post("Removing last put/get of this name");
		if (pg->previous) {
				pg->previous->next = pg->next;
				if (pg->next) pg->next->previous = pg->previous;
			} else {
				PUTGETS = pg->next;
				if ( pg->next != NULL) pg->next->previous = NULL;
			}
		clock_free(pg->clock);
		freebytes(pg, sizeof *(pg) );
	}
}


static void putget_arm(struct putget* pg) {
	
	if (!pg->armed) {
		pg->armed = 1;
		clock_delay(pg->clock, 0);
	}
	
}