aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/flext/source/flstk.h
blob: e9f126502132eb8f5dc5ae5a78f1b294ef6a8579 (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
/* 

Copyright (c) 2002 Thomas Grill (xovo@gmx.net)
For information on usage and redistribution, and for a DISCLAIMER OF ALL
WARRANTIES, see the file, "license.txt," in this distribution.  

*/

#ifndef __FLSTK_H
#define __FLSTK_H

#include "flext.h"

#include <stk.h>

class FLEXT_SHARE flext_stk:
	public flext_dsp
{
	FLEXT_HEADER(flext_stk,flext_dsp)
 
public:
	flext_stk();

	// these have to be overridden in child classes
	virtual void NewObjs() {}
	virtual void FreeObjs() {}
	virtual void ProcessObjs() {}

protected:
	virtual bool Init();
	virtual void Exit();

	virtual void m_dsp(int n,t_sample *const *in,t_sample *const *out); 
	virtual void m_signal(int n,t_sample *const *in,t_sample *const *out); 

private:
	//! STK object for reading from inlet buffer
	class Inlet:
		public Stk
	{
	public:
		Inlet(const t_sample *b,int vecsz);

		const t_sample *lastFrame() const { return buf+index; }
		t_sample lastOut() const { return buf[index]; }

		t_sample tick();
		t_sample *tick(t_sample *vector,unsigned int vectorSize);

		void SetBuf(const t_sample *b) { buf = b; }

	private:
		const t_sample *buf;
		int vecsz,index;
	};

	//! STK object for writing to outlet buffer
	class Outlet:
		public Stk
	{
	public:
		Outlet(t_sample *b,int vecsz);

		void tick(t_sample sample);
		void tick(const t_sample *vector,unsigned int vectorSize);

		void SetBuf(t_sample *b) { buf = b; }

	private:
		t_sample *buf;
		int vecsz,index;
	};

	void ClearObjs();

	int inobjs,outobjs;
	Inlet **inobj;
	Outlet **outobj;

	float smprt;
	int blsz;
};

#endif