Skip to content
Snippets Groups Projects
Commit c8f71e16 authored by IOhannes m zmölnig's avatar IOhannes m zmölnig
Browse files

Merge tag 'upstream/0.7.3'

Upstream version 0.7.3

# gpg: Signature made Sun 24 Jan 2016 09:49:54 PM CET using RSA key ID 7F7A36F8
# gpg: Good signature from "IOhannes m zmölnig <zmoelnig@umlaeute.mur.at>" [ultimate]
# gpg:                 aka "IOhannes m zmölnig <zmoelnig@iem.at>" [ultimate]
# gpg:                 aka "[jpeg image of size 5377]" [ultimate]
# gpg:                 aka "IOhannes m zmölnig (IEM - Network Operation Center) <noc@iem.at>" [ultimate]
# gpg:                 aka "IOhannes m zmölnig (mur.at - Verein zur Förderung von Netzwerkkunst) <zmoelnig@mur.at>" [ultimate]
# gpg:                 aka "IOhannes m zmölnig (forum::für::umläute - Network Operation Center) <noc@umlaeute.mur.at>" [ultimate]
# gpg:                 aka "Johannes Zmölnig (University of Music and Performing Arts - Graz) <johannes.zmoelnig@kug.ac.at>" [ultimate]
# gpg:                 aka "IOhannes m zmölnig (forum::für::umläute) <forum@umlaeute.mur.at>" [ultimate]
# gpg:                 aka "IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org>" [ultimate]
parents 2971ce62 b532e9f8
No related branches found
No related tags found
No related merge requests found
Claude Heiland-Allen
Frank Barknecht
Martin Peach
0.6 20110314
Martin Peach changed names of externals to pdlua and pdluax and added the source to svn trunk/pd/externals/pdlua
0.6~svn 2009-09-14
Building: autoconf system uses -fPIC for amd64 compatibility
0.5 2008-06-18
Building: Makefile.static (recommended)
Building: autoconfiscated (for advanced users)
Feature: interaction with [value], see [revalue] and [lexpr]
Feature: interaction with [table], see [ltabdump] and [ltabfill]
Feature: require() looks relative to .pd_lua and .pd_luax files
Internal: support pd >= 0.41 and pd < 0.41 (pd table API change)
0.4 2008-03-26
API change: "load $1"--[lua] users must add the file name extension
Bug fix: "load $1"--[lua] works as advertised
API change: users must name files "*.pd_lua" instead of "*.lua"
API change: users must name files "*.pd_luax" instead of "*.luax"
Bug fix: help patches should be found correctly
Examples++: [lurn], [luametro], [lpipe]
Internal: Doxygenated source comments
Internal: fewer leading underscores
Internal: renamed all examples for API change and tested them
0.3 2007-12-02
clock support
receive support
send support
support static builds
0.2 2007-09-25
renumbered inlets/outlets: now follow Lua 1,2,... conventions
fixed all examples for new numbering
more and updated documentation
opening via Pd's canvas path with obj:dofile(filename)
better error reporting
lexpr example
bugfix in dispatch (in_3_foo doesn't pass "foo" as an arg any more)
0.1 2007-09-24
initial release
This diff is collapsed.
pdlua -- a Lua embedding for Pd
Copyright (C) 2007,2008,2009 Claude Heiland-Allen <claudiusmaximus@goto10.org>
Copyright (C) 2007,2008,2009 Claude Heiland-Allen <claude@mathr.co.uk>
This program is free software; you can redistribute it and/or
......
todo
- fix Pd crash when a Lua error contains '{'
- documentation
- install target for make
- audit require support thoroughly:
- make require() support compiled packages
- make require() look next to Lua source before containing Pd patch
- add access to this script's and (containing/parent) Pd patch paths
- /usr/bin/ld: lua-lua.o: relocation R_X86_64_32 against `.rodata.str1.1'
can not be used when making a shared object; recompile with -fPIC
done
- variable support (like [v foo])
- table support (like [tabread]/[tabwrite])
- send support
- add hook for object (post creation)
- receive support (preferably multiple receives)
- clock support
- audit possible bugs relating to self.f = f(self, ...) misuse
- write docs on foo.lua vs foo.luax
- change inlet/outlet numbering to start from 1 instead of 0
- add pd.dofile(file) that searches via Pd's path (actually obj:dofile(file))
- write docs implementation (eg foo._bar => internal, etc)
- add more features to lexpr
......@@ -3,7 +3,7 @@
\title{pdlua}
\author{Claude Heiland-Allen
\\
\tt{claudiusmaximus@goto10.org}}
\tt{claude@mathr.co.uk}}
\begin{document}
......
......@@ -48,7 +48,8 @@ function ListPak:in_n(i, sel, atoms)
-- insert selector
self.stored[i] = sel
else
if table.getn(atoms) > 0 then
-- if table.getn(atoms) > 0 then
if #(atoms) > 0 then
self.stored[i] = atoms[1]
end
end
......
......@@ -50,7 +50,8 @@ function ListUnpack:in_1(sel, atoms)
-- also unpack selector of anythings
table.insert(atoms, 1, sel)
end
local size = math.min(self.outlets, table.getn(atoms))
-- local size = math.min(self.outlets, table.getn(atoms))
local size = math.min(self.outlets, #(atoms))
for i=size, 1, -1 do
self:Outlet(i, atoms[i])
end
......
......@@ -14,7 +14,8 @@ function PeekBag:in_1_float(f)
if self.add then
table.insert(self.bag, f)
else
for i=table.getn(self.bag),1,-1 do
-- for i=table.getn(self.bag),1,-1 do
for i = #(self.bag), 1, -1 do
if self.bag[i]==f then
table.remove(self.bag, i)
break
......@@ -59,9 +60,11 @@ end
function PeekBag:in_1_aslist()
-- print all values of array as list
if table.getn(self.bag) == 1 then
-- if table.getn(self.bag) == 1 then
if #(self.bag) == 1 then
self:outlet(1, "float", {self.bag[1]})
elseif table.getn(self.bag) > 1 then
-- elseif table.getn(self.bag) > 1 then
elseif #(self.bag) > 1 then
self:outlet(1, "list", self.bag)
end
end
......
File moved
File moved
File moved
File moved
--[[
pdlua -- a Lua embedding for Pd
Copyright (C) 2007,2008 Claude Heiland-Allen <claudiusmaximus@goto10.org>
Copyright (C) 2007,2008 Claude Heiland-Allen <claude@mathr.co.uk>
Copyright (C) 2012 Martin Peach martin.peach@sympatico.ca
This program is free software; you can redistribute it and/or
......
File moved
......@@ -5,6 +5,6 @@
#X text 10 50 LICENSE GNU GPL;
#X text 10 70 DESCRIPTION lua loader for pd;
#X text 10 90 AUTHOR Claude Heiland-Allen \, Frank Barknecht \, Martin
Peach;
#X text 10 110 VERSION 0.6;
Peach \, IOhannes m zmölnig;
#X text 10 110 VERSION 0.7.3;
#X restore 10 20 pd META;
This diff is collapsed.
File moved
This diff is collapsed.
/* src/config.h. Generated from config.h.in by configure. */
/* src/config.h.in. Generated from configure.ac by autoheader. */
/* Define to 1 if you have the <inttypes.h> header file. */
#define HAVE_INTTYPES_H 1
/* Define to 1 if your system has a GNU libc compatible `malloc' function, and
to 0 otherwise. */
#define HAVE_MALLOC 1
/* Define to 1 if you have the <memory.h> header file. */
#define HAVE_MEMORY_H 1
/* Define to 1 if you have the <stdint.h> header file. */
#define HAVE_STDINT_H 1
/* Define to 1 if you have the <stdlib.h> header file. */
#define HAVE_STDLIB_H 1
/* Define to 1 if you have the <strings.h> header file. */
#define HAVE_STRINGS_H 1
/* Define to 1 if you have the <string.h> header file. */
#define HAVE_STRING_H 1
/* Define to 1 if you have the <sys/stat.h> header file. */
#define HAVE_SYS_STAT_H 1
/* Define to 1 if you have the <sys/types.h> header file. */
#define HAVE_SYS_TYPES_H 1
/* Define to 1 if you have the <unistd.h> header file. */
#define HAVE_UNISTD_H 1
/* Define to 1 if your C compiler doesn't accept -c and -o together. */
/* #undef NO_MINUS_C_MINUS_O */
/* Name of package */
#define PACKAGE "pdlua"
/* Define to the address where bug reports for this package should be sent. */
#define PACKAGE_BUGREPORT "martin.peach@sympatico.ca"
/* Define to the full name of this package. */
#define PACKAGE_NAME "pdlua"
/* Define to the full name and version of this package. */
#define PACKAGE_STRING "pdlua 0.1"
/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "pdlua"
/* Define to the home page for this package. */
#define PACKAGE_URL ""
/* Define to the version of this package. */
#define PACKAGE_VERSION "0.1"
/* Define to 1 if you have the ANSI C header files. */
#define STDC_HEADERS 1
/* Version number of package */
#define VERSION "0.6"
/* Define to empty if `const' does not conform to ANSI C. */
/* #undef const */
/* Define to rpl_malloc if the replacement function should be used. */
/* #undef malloc */
/* Define to `unsigned int' if <sys/types.h> does not define. */
/* #undef size_t */
/* Define to `int' if <sys/types.h> does not define. */
/* #undef ssize_t */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment