File: lsend.pd_lua

package info (click to toggle)
pd-lua 0.6.0-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 656 kB
  • ctags: 265
  • sloc: ansic: 1,504; makefile: 314
file content (23 lines) | stat: -rw-r--r-- 419 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
-- test send support

local LSend = pd.Class:new():register("lsend")

function LSend:initialize(name, atoms)
  if type(atoms[1]) ~= "string" then
    pd.post("lsend needs a symbol")
    return false
  else
    self.sendto = atoms[1]
  end
  self.inlets = 2
  self.outlets = 0
  return true
end

function LSend:in_2_symbol(s)
  self.sendto = s
end

function LSend:in_1(sel, atoms)
  pd.send(self.sendto, sel, atoms)
end