Coder Social home page Coder Social logo

agraef / purr-data Goto Github PK

View Code? Open in Web Editor NEW
613.0 50.0 76.0 73.25 MB

Purr Data - Jonathan Wilkes' cross-platform Pd-l2ork version

Home Page: https://agraef.github.io/purr-data/

License: Other

Makefile 1.19% HTML 4.81% Shell 3.73% Python 0.54% Lua 0.01% GLSL 0.03% CSS 1.90% TeX 0.26% C 69.18% M4 0.52% C++ 8.32% Batchfile 0.01% Objective-C 0.03% Tcl 3.09% Roff 0.03% R 0.49% JavaScript 5.76% Emacs Lisp 0.02% Rich Text Format 0.07% Vim Script 0.03%
pd-l2ork purr-data pure-data dataflow-programming multimedia computer-music

purr-data's Introduction

Purr-Data

Note to Github users: Please use our GitLab Repository.

Maintainers:

Contact: DISIS mailing list

Contents:

One Paragraph Overview

Pure Data (aka Pd) is a visual programming language. That means you can use it to create software graphically by drawing diagrams instead of writing lines of code. These diagrams show how data flows through the software, displaying on the screen what text-based languages require you to piece together in your mind.

Three Paragraph Overview

Pd has been designed with an emphasis on generating sound, video, 2D/3D graphics, and connecting through sensors, input devices, and MIDI as well as OSC devices.

Pd has a special emphasis on generating audio and/or video in real time, with low latency. Much of its design focuses on receiving, manipulating, and delivering high-quality audio signals. Specifically, the software addresses the problem of how to do this efficiently and reliably on general purpose operating systems like OSX, Windows, Debian, etc.-- i.e., systems designed mainly for multi-tasking.

Pd can easily work over local and remote networks. It can be used to integrate wearable technology, motor systems, lighting rigs, and other equipment. Pd is also suitable for learning basic multimedia processing and visual programming methods, as well as for realizing complex systems for large-scale projects.

Goals

Purr-Data has the following goals:

  1. Documentation. We like documentation. It's like code, except friendly.
  2. Be reliable. Binary releases must be usable for performances and installations. The git repo must always be in a workable state that can be compiled. Regressions must be fixed quickly.
  3. Be discoverable. Undocumented features are buggy. Missing help files are bugs. Patches for new functionality that lack documentation are spam.
  4. Be consistent. Consistent interfaces are themselves a kind of documentation. We like documentation, so it follows that we like consistent interfaces.

User Guide and Weblinks

For a more in-depth look at Purr Data for new users and developers, see:

https://agraef.github.io/purr-data-intro/Purr-Data-Intro.html

For more resources see:

https://agraef.github.io/purr-data/

For Ico Bukvic's original Pd-l2ork website see:

http://l2ork.music.vt.edu/main/make-your-own-l2ork/software/

Relationship of Purr Data to Pure Data

At the time of this writing, there are four maintained distributions of Pure Data, two of which (Purr Data, Pd-l2ork) belong to the Pd-extended lineage.

  1. Purr Data. This started out as the 2.0 version of Pd-l2ork. It ships with lots of external libraries and uses a modern GUI written using HTML5.
  2. Pd-l2ork is the version used by Ivica Bukvic for his laptop orchestra. Pd-l2ork 1.0 used tcl/tk (and tkpath) for the GUI. Pd-l2ork 2.x is a fork of an earlier Purr Data version which is developed separately. You can find these here.
  3. Pure Data "Vanilla". Miller Puckette's personal version which he hosts on his website and maintains. It doesn't come with external libraries pre-installed, but it does include an interface you can use to search and install external libraries maintained and packaged by other developers.
  4. Plugdata. A new libpd-based distribution of Pure Data which can be run as a plugin. See https://plugdata.org/.

Downloads

Windows, Ubuntu, and Mac OSX:

Releases are done on Albert Gräf's GitHub mirror, which also provides a website, wiki, additional documentation, and an up-to-date mirror of the source code repository.

https://github.com/agraef/purr-data/releases

More Linux packages:

Packages for various Linux distributions (including Arch, Debian, Ubuntu, and Fedora) are available through the JGU package repositories maintained by Albert Gräf on the OBS (Open Build System). Detailed instructions can be found here.

You can also just go to the OBS Download, pick your Linux system, and follow the instructions.

Build Guide

Purr Data is usually built by just running make in the toplevel source directory after checking out the sources from its git repository. This works across all supported platforms (Linux, Mac and Windows at this time). The Makefile also offers the customary targets to clean (make clean, or make realclean to put the sources in pristine state again) and to roll a self-contained distribution tarball (make dist), as well as some other convenience targets (please check the comments at the beginning of the Makefile for more information).

However, to make this work, you will most likely have to install some prerequisites first: build tools such as a C/C++ compiler and the make program itself, as well as dependencies, the libraries that Purr Data needs. Detailed instructions for each of the supported platforms are given below.

Linux

Time to build: 10 minutes light install, 45 minutes to 1.5 hours full install Hard drive space required: roughly 2.5 GB

  1. Remember to update your packages:

     sudo apt-get update && sudo apt-get upgrade
    
  2. Install the dependencies (please note that the packages may be named slightly differently for different Linux distributions; the given names are for Debian/Ubuntu)

     sudo apt-get install bison flex automake libasound2-dev \
          libjack-jackd2-dev libtool libbluetooth-dev libgl1-mesa-dev \
          libglu1-mesa-dev libglew-dev libmagick++-dev libftgl-dev \
          libgmerlin-dev libgmerlin-avdec-dev libavifile-0.7-dev \
          libmpeg3-dev libquicktime-dev libv4l-dev libraw1394-dev \
          libdc1394-22-dev libfftw3-dev libvorbis-dev ladspa-sdk \
          dssi-dev tap-plugins invada-studio-plugins-ladspa blepvco \
          swh-plugins mcp-plugins cmt blop slv2-jack omins rev-plugins \
          libslv2-dev dssi-utils vco-plugins wah-plugins fil-plugins \
          mda-lv2 libmp3lame-dev libspeex-dev libgsl0-dev \
          portaudio19-dev liblua5.3-dev python-dev libsmpeg0 libjpeg62-turbo \
          flite1-dev libgsm1-dev libgtk2.0-dev git libstk0-dev \
          libfluidsynth-dev fluid-soundfont-gm byacc \
          python3-markdown
    
  3. The gui toolkit may require installing the following extra dependencies

     sudo apt-get install gconf2 libnss3
    
  4. Clone the Purr-Data repository (2 to 10 minutes)

     git clone https://git.purrdata.net/jwilkes/purr-data.git
    
  5. Compile the code (5 minutes [light] to 1.5 hours [full])

    • to build only the core: make light (5 minutes)
    • to build the core and all externals: make all (20 minutes to 1.5 hours)
    • to build everything except Gem: make incremental (10 to 20 minutes)
  6. If you're using an apt-based Linux distribution and you have the necessary Debian packaging tools installed, there should now be an installer file in the main source directory, which can be installed as usual. Otherwise, run make install to install the software, and make uninstall to remove it again.

OSX 64-bit using Homebrew

Time to build: 50 minutes to 1.5 hours
Hard drive space required: roughly 2 GB

  1. Install Homebrew (15 minutes) (asks for password twice-- once for command line tools, once for homebrew)

  2. Install the dependencies (10 minutes):

     brew install wget
     brew install autoconf
     brew install automake
     brew install libtool
     brew install fftw
     brew install python
     brew install lua
     brew install fluidsynth
     brew install faac
     brew install jpeg
     brew install lame
     brew install libvorbis
     brew install speex
     brew install gsl
     brew install libquicktime
     brew install sdl2
     brew install pkg-config
    

    You'll also need to install the python markdown module to generate the platform-specific release notes (ReadMe.html, Welcome.html):

     pip3 install markdown
    

    Note: Depending on your macOS and Xcode version, the 10 minutes estimate for this step may be a overly optimistic. Some build dependencies may require recompilation which can take a long time (up to several hours, if it includes a complete build of, e.g., gcc and cmake).

  3. Clone the Purr-Data repository (10 minutes)

     git clone https://git.purrdata.net/jwilkes/purr-data.git
    
  4. Change to the source directory

     cd purr-data
    
  5. Build the OSX app and the installer disk image (.dmg file) (15 minutes)

     make
    
  6. There should now be a .dmg file in your current directory, which lets you install the app in the usual way

Windows 64-bit Using msys2

Time to build: roughly 1.5 hours-- 30 minutes of this is for Gem alone
Hard drive space required to build: rougly 2.5 GB

Important note: We recommend doing the build under your msys2 home directory (usually /home/username in the msys2 shell). This directory should not have any spaces in it, which would otherwise cause trouble during the build. Never try using your Windows home directory for this purpose instead, since it will usually contain spaces, making the build fail.

  1. In a browser, navigate to: https://git.purrdata.net/jwilkes/ci-runner-setup/-/raw/master/win64_install_build_deps.ps1

  2. Select all with <control-a>

  3. Right-click and choose "Copy"

  4. In the Start menu type PowerShell ISE and click the "Windows Powershell ISE" app that pops up.

  5. In the Powershell ISE window menu, choose File -> New

  6. In the area with the white background, right-click and choose "Paste"

  7. Click the Run Script arrow in the toolbar (20 minutes)

  8. If there were no errors in the script, msys2 and Inno Setup are now installed.

  9. Open the directory "C:\msys64" and click mingw64.exe

  10. Download the source code (3-6 minutes)
    In the msys terminal window, issue the following command to create a new directory "purr-data" and clone the repository to it:

    git clone https://git.purrdata.net/jwilkes/purr-data.git
    
  11. Enter the source directory (less than a minute)

     cd purr-data
    
  12. Finally, build Purr-Data (45-80 minutes)

     make
    
  13. Look in the top level source directory and double-click the setup file to start installing Purr Data on your system or run ./"setup file name" in MSYS2 shell.

Code of Conduct

  1. No sarcasm, please.
  2. Don't appear to lack empathy.
  3. You can't live here. If you're spending hours a day writing Purr Data code or-- worse-- spending hours a day writing emails about code that has yet to be written, you're doing it wrong.
  4. If working on something for the first time, ask to be mentored.
  5. If no one asked you to mentor them, don't teach.
  6. It is better to let small things go than to risk taking time away from solving bigger problems.

It is a bad idea to break this Code of Conduct even if no one complains about your behaviour.

Project Governance

  • The three maintainers listed at the top of this document are the ones in charge of this project.
  • Unanimous decisions are preferred.
  • 2 out of 3 can break a disagreement.
  • There will only ever be three maintainers of this project at any given time. If you'd like to temporarily step in as one of the three, send an inquiry to the list and we can discuss it.

Contributor Guide

Contributing is easy:

  1. Join the development list: http://disis.music.vt.edu/cgi-bin/mailman/listinfo/l2ork-dev
  2. Fork Purr Data using the gitlab UI and then try to build it from source for your own platform using the Build Guide above. If you run into problems ask on the development list for help.
  3. Once you have successfully built Purr Data, install it and make sure it runs correctly.
  4. Start making changes to the code with brief, clear commit messages. If you want some practice you can try fixing one of the bugs on the issue tracker labeled "good-first-bug"
  5. One you are done fixing the bug or adding your feature, make a merge request in the Gitlab UI so we can merge the fix for the next release.

A few guidelines:

  • There should be a short and clear commit message for each merge request.
  • Short and clear title and description are required for each merge request.
  • There should be a short branch name related to the issue, like "update-readme".
  • No prototypes, please. Purr Data's biggest strength is that users can turn an idea into working code very quickly. But a prototyping language that is itself a prototype isn't very useful. That means Purr Data's core code and libraries must be stable, consistent, well-documented, and easy to use.
  • Develop incrementally. Small, solid improvements to the software are preferable to large, disruptive ones.
  • Try not to duplicate existing functionality. For backwards compatibility Purr Data ships many legacy libraries which unfortunately duplicate the same functionality. This makes it harder to learn how to use Pd, and makes it burdensome to read patches and keep track of all the disparate implementations.
  • Keep dependencies to a minimum. Cross-platform dependency handling is unfortunately still an open research problem. In the even that you need an external library dependency, please mirror it at git.purrdata.net so that the build system doesn't depend on the availability of external infrastructure.

Here are some of the current tasks:

  • Writing small audio/visual Pd games or demos to include in the next release
    • Skills needed: Ability to write Pd programs
    • Status: I wrote a little sprite-based game that will ship with the next version of Pd-L2Ork. In it, the character walks around in an actual Pd diagram shoots at the objects to progress, and to make realtime changes to the music. What I'd like is to include a new, smallish game with each release that has a link in the Pd console. It can be a little demo or game, just something fun that shows off what can be done using Pure Data.
  • Designing/Implementing regression test template
  • Adding support for double precision to the external libraries that ship with purr-data

Human Interface Guidelines

General Look and Feel

Pd is a multi-window application that consists of three parts:

  1. A main window, called the "Pd Window" or "Console Window". This window displays informational and error messages for Pd programs.
  2. One or more "canvas" windows-- aka "patch" windows, used to display the diagrams that make up a Pd program.
  3. One or more dialog windows used to configure the various parts of Pd.

All should look simple and uncluttered. Although "canvas" windows cannot (yet) be traversed and edited using only the keyboard, all three parts of Pd should be designed so that they can be manipulated using only the keyboard.

Hooks for new users

It should also be possible to produce sound and interact when a new user runs program for the very first time. In every release, there should be a link at the bottom of the Console Window to a short game written in Pd that demonstrates one or more of the capabilities of the Pd environment. The game should be designed to be fun outside of its efficacy as a demonstration of Pd.

Fonts

Pd ships with "DejaVu Sans Mono", which is used for the text in canvas windows. Fonts are sized to fit the hard-coded constraints in Pd Vanilla. This way box sizes will match as closely as possible across distributions and OSes.

These hard-coded sizes are maximum character widths and heights. No font fits these maximums exactly, so it's currently impossible to tell when looking at a Pd canvas whether the objects will collide on a system using a different font (or even a different font-rendering engine).

Dialogs and console button labels may use variable-width fonts. There is not yet a suggested default to use for these.

The console printout area currently uses "DejaVu Sans Mono". Errors are printed as a link so that the user can click them to highlight the corresponded canvas or object that triggered the error.

Colors

Nothing set in stone yet.

Core Pd Notes

The following is adapted from Pd Vanilla's original source notes. (Found in pd/src/CHANGELOG.txt for some reason...)

Sections 2-3 below are quite old. Someone needs to check whether they even hold true for Pd Vanilla anymore.

Structure definition roadmap.

First, the containment tree of things that can be sent messages ("pure data"). (note that t_object and t_text, and t_graph and t_canvas, should be unified...)

BEFORE 0.35:

m_pd.h      t_pd                        anything with a class
                t_gobj                  "graphic object"
                    t_text              text object
g_canvas.h
                    t_glist             list of graphic objects
g_canvas.c              t_canvas        Pd "document"

AFTER 0.35:

m_pd.h      t_pd                        anything with a class
                t_gobj                  "graphic object"
                    t_text              patchable object, AKA t_object
g_canvas.h              t_glist         list of graphic objects, AKA t_canvas

Other structures:

g_canvas.h  t_selection -- linked list of gobjs
            t_editor -- editor state, allocated for visible glists
m_imp.h     t_methodentry -- method handler
            t_widgetbehavior -- class-dependent editing behavior for gobjs
            t_parentwidgetbehavior -- objects' behavior on parent window
            t_class -- method definitions, instance size, flags, etc.

1. Coding Style

1.0 C coding style. The source should pass most "warnings" of C compilers (-Wall on Linux, for instance-- see the makefile.) Some informalities are intentional, for instance the loose use of function prototypes (see below) and uncast conversions from longer to shorter numerical formats. The code doesn't respect "const" yet.

1.1. Prefixes in structure elements. The names of structure elements always have a K&R-style prefix, as in ((t_atom)x)->a_type, where the a_ prefix indicates "atom." This is intended to enhance readability (although the convention arose from a limitation of early C compilers.) Common prefixes are:

  • w_ (word)
  • a_ (atom)
  • s_ (symbol)
  • ob_ (object)
  • te_ (text object)
  • g_ (graphical object)
  • gl_ (glist, a list of graphical objects).

Also, global symbols sometimes get prefixes, as in s_float (the symbol whose string is "float"). Typedefs are prefixed by t_. Most private structures, i.e., structures whose definitions appear in a ".c" file, are prefixed by x_.

1.2. Function arguments. Many functions take as their first argument a pointer named x, which is a pointer to a structure suggested by the function prefix; e.g., canvas_dirty(x, n) where x points to a canvas (t_canvas *x).

1.3. Function Prototypes. Functions which are used in at least two different files (besides where they originate) are prototyped in the appropriate include file. Functions which are provided in one file and used in one other are prototyped right where they are used. This is just to keep the size of the ".h" files down for readability's sake.

1.4. Whacko private terminology. Some terms are lifted from other historically relevant programs, notably "ugen" (which is just a tilde object; see d_ugen.c.)

1.5. Spacing. Tabs are 8 spaces; indentation is 4 spaces. Indenting curly brackets are by themselves on their own lines, as in:

if (x)
{
    x = 0;
}

Lines should fit within 80 spaces.

2. Compatibility with Max

2.0. Max patch-level compatibility. "Import" and "Export" functions are provided which aspire to strict compatibility with 0.26 patches (ISPW version), but which don't get anywhere close to that yet. Where possible, features appearing on the Mac will someday also be provided; for instance, the connect message on the Mac offers segmented patch cords; these will devolve into straight lines in Pd. Many, many UI objects in Opcode Max will not appear in Pd, at least at first.

3. Source-level Compatibility with Max

3.0. Compatibility with Max 0.26 "externs"-- source-level compatibility. Pd objects follow the style of 0.26 objects as closely as possible, making exceptions in cases where the 0.26 model is clearly deficient. These are:

3.1. Anything involving the MacIntosh "Handle" data type is changed to use char * or void * instead.

3.2. Pd passes true single-precision floating-point arguments to methods; Max uses double. Typedefs are provided:

t_floatarg, t_intarg for arguments passed by the message system
t_float, t_int for the "word" union (in atoms, for example.)

3.3. Badly-named entities got name changes:

w_long --> w_int (in the "union word" structure)

3.4. Many library functions are renamed and have different arguments; I hope to provide an include file to alias them when compiling Max externs.

4. Function name prefixes

4.0. Function name prefixes. Many function names have prefixes which indicate what "package" they belong to. The exceptions are:

typedmess, vmess, getfn, gensym (m_class.c)
getbytes, freebytes, resizebytes (m_memory.c)
post, error, bug (s_print.c)

which are all frequently called and which don't fit into simple categories. Important packages are:

(pd-gui:)   pdgui -- everything
(pd:)       pd -- functions common to all "pd" objects
            obj -- fuctions common to all "patchable" objects ala Max
            sys -- "system" level functions
            binbuf -- functions manipulating binbufs
            class -- functions manipulating classes
            (other) -- functions common to the named Pd class

5. Source file prefixes

5.0. Source file prefixes.

PD:

s    system interface
m    message system
g    graphics stuff
d    DSP objects
x    control objects
z    other

PD-GUI:

gui    GUI front end

6. Javascript style

  1. Brackets on the same line as declaration or expression: if (a) {.
  2. Single line comments only: //.
  3. Use double-quotes for strings.
  4. Use underscores to separate words of function names and variables.

GUI Messaging Specification

Public GUI interface

Purpose: a set of functions to communicate with the gui without putting language-specific strings (like tcl) into the C code. The new interface is a step toward separating some (but not all) of the GUI logic out from the C code. Of course the GUI can still be designed to parse and evaluate incoming messages as commands. But the idiosyncracies of the GUI toolkit can be limited to either the GUI code itself or to a small set of modular wrappers around sys_vgui.

The public interface consists of the following:

gui_vmess(const char *msg, const char *format, ...);

where const char *format consists of zero or more of the following:

  • f - floating point value (t_float)
  • i - integer (int)
  • s - c string (`char* )
  • x - hexadecimal integer value, with a precision of at least six digits. (hex value is preceded by an 'x', like x123456)

For some of Pd's internals like array visualization, the message length may vary. For these special cases, the following functions allow the developer to iteratively build up a message to send to the GUI.

gui_start_vmess(const char *msg, const char *format, ...);
gui_start_array();      // start an array
gui_f(t_float float);   // floating point array element (t_float)
gui_i(int int);         // integer array element (int)
gui_s(const char *str); // c string array element
gui_end_array();        // end an array
gui_end_vmess();        // terminate the message

The above will send a well-formed message to the GUI, where the number of array elements are limited by the amount of memory available to the GUI. Because of the complexity of this approach, it may only be used when it is necessary to send a variable length message to the GUI. (Some of the current code may violate this rule, but that can be viewed as a bug which needs to get fixed.)

The array element functions gui_f, gui_i, and gui_s may only be used inside an array. Arrays may be nested, but this adds complexity and should be avoided if possible.

Private Wrapper for Nw.js Port

The public functions above should fit any sensible message format. Unfortunately, Pd's message format (FUDI) is too simplistic to handle arbitrary c-strings and arrays, so it cannot be used here. (But if it happens to improve in the future it should be trivial to make a wrapper for the public interface above.)

The current wrapper was made with the assumption that there is a Javascript Engine at the other end of the message. Messages consist of a selector, followed by whitespace, followed by a comman-delimited list of valid Javascript primitives (numbers, strings, and arrays). For the arrays, Javascript's array notation is used. This is a highly idiosyncratic, quick-and-dirty approach. But the point is that the idiosyncracy exists in a single file of the source code, and can be easily made more modular (or replaced entirely by something else) without affecting any of the rest of the C code.

purr-data's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

purr-data's Issues

Purr Data build crashes on start (macOS Ventura 13.2.1 (22D68))

I'm trying to build and run Purr Data on macOS Ventura 13.2.1 (22D68).

The build process seems to complete with success:
image

However, when trying to run it, the app just crashes on start.
This is what Purr Data shows before the crash on the latest commit (3e2039e):
image

I've also tried building in the latest release commit a2f5df4, but the problem remains:
image
Running the already built .dmg however, everything looks okay.

If I build with make incremental, the problem remains, but building with make light the app runs correctly.

installing on Fedora

Hello! I've managed to compile it on fedora but it gives a jack error a if jack was not installed or seen though it is. I see that flatpack has the same jack limitation. Is there a reason?
I'm on 31 and everything works great with jack here.
Thanks!

Sysex message on Windows

Hey guys,

I can't use the [midiout] object to send sysex message.
I'm on Purr-Data-2.19.3 20230725-rev.e9fca4f8 (Pd-0.48.0)

But when I do the same test on Pd vanilla 0.54.1, it works.
See the thread here: pure-data/pure-data#2185

Is this a known issue or should I use another install source?
Thanks!

Gem: can't load library

Many thanks for this port of Pd-l2ork.
I get message "Gem: can't load library" on startup of purr-data on Mac OS/X. All other libraries work well. Is this due to the fact that this is a 64bit version?
In effect, GEM 0.93.3 release notes state "there are no native x86_64 (aka MacIntel 64bit) binaries available, so you must use a version of Pd that is i386 (32bit) compatible." https://puredata.info/downloads/gem/releases/0.93.3
On my 32bit version of pd-0.47-1 , GEM works.
Would you, by chance, have a 32bit build of purr-data or another solution?

[bug fix/docs] agraef - purr-data. problems in the pre-requirements for ubuntu linux 22.04 lts

[bug fix/docs] agraef/purr-data -> problems in the pre-requirements for ubuntu linux 22.04 lts #23

in the readme.md file:

the some of the following packages are outdated in ubuntu 22.04 lts

  sudo apt-get install bison flex automake libasound2-dev \
  libjack-jackd2-dev libtool libbluetooth-dev libgl1-mesa-dev \
  libglu1-mesa-dev libglew-dev libmagick++-dev libftgl-dev \
  libgmerlin-dev libgmerlin-avdec-dev libavifile-0.7-dev \
  libmpeg3-dev libquicktime-dev libv4l-dev libraw1394-dev \
  libdc1394-22-dev libfftw3-dev libvorbis-dev ladspa-sdk \
  dssi-dev tap-plugins invada-studio-plugins-ladspa blepvco \
  swh-plugins mcp-plugins cmt blop slv2-jack omins rev-plugins \
  libslv2-dev dssi-utils vco-plugins wah-plugins fil-plugins \
  mda-lv2 libmp3lame-dev libspeex-dev libgsl0-dev \
  portaudio19-dev liblua5.3-dev python-dev libsmpeg0 libjpeg62-turbo \
  flite1-dev libgsm1-dev libgtk2.0-dev git libstk0-dev \
  libfluidsynth-dev fluid-soundfont-gm byacc \
  python3-markdown

the list was made bearing ubuntu bionic and bionic beaver in mind
please feel free to fix this

looking forwards
kind regards
T.

SoundFiler's -resize flag not working

When using SoundFiler to open a sample with more than 4000000 samples with the -resize flag, soundfiler throws an error: "error: soundfiler_read: truncated to 4000000 elements". This operation works without an error on the latest versions of PD vanilla (tested on 50.0 & 50.2).

OS: MacOS Catalina 10.15.3
Purr-data: Version 2.10.1 (20200311-rev.501d8b2b)

Steps to reproduce:

  1. Create a new patch:
[bang]
|
[openpanel]
|
[read -resize $1 array1]
|
[soundfiler]

  1. Open Wav file with > 4000000 samples into an array.
  2. Observe that the array size is 4000000, and that the truncation error above is displayed in the console.

Any thoughts on the issue outlined above, and how to resolve would be appreciated!

Add release for Raspberry Pi OS? (Bookworm)

Hi,
i've struggled for a while trying to install the Raspbian 11 package on my Raspberry Pi 4 running Raspberry Pi OS (based on Debian 12 Bookworm), with no luck
Could you add a package for Raspberry Pi OS?
Thank you!
Arthur

Unable to silently/unattended install with Windows installer.

  1. Download the 2.19.3 installer from https://github.com/agraef/purr-data/releases/download/2.19.3/purr-data-2.19.3-mingw-x86_64.zip.
  2. Extract the exe file from the zip.
  3. Run the exe with the following switches:

Purr-Data-2.19.3-20230725-rev.e9fca4f8-x86_64.exe /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-

I'd expect the installer to run without an UI or prompt and install, but you get a popup saying Note: The installation will now start. with an option to click OK.

image

I've tried creating an answer file, but it didn't help. Going through the documentation at https://jrsoftware.org/ishelp/index.php?topic=setupcmdline I can't see any other useful option to suppress the prompt.

Is this intentional, a bug, or am I missing something to suppress it.

please change the flatpak icon

Purr Data is available via flatpak (great), but it's icon looks suspiciously identical to Pd's icon.

https://github.com/agraef/purr-data/blob/master/packages/linux_flatpak/net.purrdata.PurrData.svg

since Purr-Data is similar to Pd, but is not the same as Pd, I would like to ask you to fix the icon (hey: Purr has a great icon of it's own!).

this has become more of an issue since Pd(vanilla) now is also available as a flatpak application: https://flathub.org/apps/search?q=puredata

this is a reboot of flathub/net.purrdata.PurrData#1 (which was opened in 2019(!), and it seems that there was even a thread on the mailinglist about this in the same year; it seems the question of the icon has stalled since then)

PS: i would have opened this directly on https://git.purrdata.net/jwilkes/purr-data/, but it seems my account creation has not been accepted for a couple of days...

support for cyclone 0.4

There has been a recent new release of the cyclone library, now version 0.4. Version 0.3 was a major overhaul and fixed a lot of the annoying bugs that previous versions had.

Could you consider supporting version 0.4 and perhaps integrating it directly into Purr-Data instead of shipping it with an older version?

See: https://github.com/porres/pd-cyclone/releases

OBS repos only show i386 releases on Ubuntu 18.04 Bionic amd64 architecture

I followed the instructions to set up the OBS repos for xUbuntu 18.04. I only see the PurrData and
Pd-L2ork for i386 architecture showing up in the package manager. This does not change if I use deb [arch=amd64] ...
Manually downloading and installing the individual 64bit packages does work without any problems.

Adding external libraries fails with unhelpful message

I have tried to add the osc and iemnet pacakges into purr-data and although the system tries to load these are startup - all I get is an unhelpful "failed to load library..." message -- some diagnostics would be useful here.

BTW these libraries work fine with pd and replace the deprecated OSCx library which still ships with purr data -- I take it that even simple libraries need some porting effort to make them work in purr-data -- Are there plans for a nice external library installer like in Pd?

Question about libpd

Caveat: I'm very new to this universe so this might not make sense

I've just ordered a Bela board to try and bring to life this crazy loop-mixer thing in my head and I'm getting into pure-data but I'm a bit confused about to what extent purr-data is a drop-in replacement for pure-data. So, can I use libpd with purr-data and upload the patches to by Bela dev-kit?

Commas become un-escaped on save and reload

When saving a file with a message containing an escaped comma (\,), the comma becomes unescaped (,) when the file is reloaded.

System
Linux 5.4.0-152-lowlatency #169-Ubuntu x86_64
Pd-L2Ork version 2.17.0 (20210417-rev.ca592f6f)
compiled 21:12:53 Apr 17 2021

This issue does not affect puredata:
Pd-0.50.2 ("") compiled for Debian (0.50.2-3ubuntu0.1) on 2021/08/09 at 11:58:58 UTC

Steps to reproduce

  1. Save this to file (e.g. comma.pd)
    #N canvas 813 362 450 300 12;
    #X obj 0 25 print;
    #X msg 0 0 {"hello": "world"\\\, "y": 2023};
    #X connect 1 0 0 0;
    
  2. Open it with purr-data
  3. Click on the message: it gets printed correctly
  4. Switch to edit mode
  5. Edit the message (e.g. "world" -> "worlds")
  6. Switch out of edit mode
  7. Click on the message: it gets printed correctly
  8. Save the file
  9. Close the file
  10. Open the file: you should notice the comma being unescaped
  11. Click on the message: it gets printed incorrectly (two separate lines)
purr-data-issue.mp4

pd-else branch: sfont~issue (erratic pitch bends)

Pitch bends don't sound right. This is only when sfont~ is used in Purr Data, pitch bends work fine in vanilla, so there's probably an incompatibility of some internal API with vanilla at play here.

Most likely this is because of internal changes to properly map incoming pitch bend messages to values -8192..8191 instead of vanilla's (broken) 0..16383. This bug was fixed some years ago in pd-l2ork and purr-data, but never was and never will be fixed in vanilla. Thus we either need to change the internal API to make it vanilla bug-compatible again (and fix the range elsewhere, where it doesn't affect externals written for vanilla), or deploy a work-around in sfont~ itself, by checking whether the host environment is Purr Data.

Avast

purr-data is flagged with IDP.Generic by Avast anti-virus 23.8.6078 (build 23.8.8416.762) (Windows 11)

Outdated Dependencies and Incomplete Build Process.

The current build process for purr-data is encountering numerous obstacles due to outdated dependencies and incomplete documentation. This issue significantly hampers the setup process and obstructs contributors from effectively building the project. Below are the errors encountered during the attempted build:

Unable to locate package libdc1394-22-dev
Package 'slv2-jack' has no installation candidate
Package 'libslv2-dev' has no installation candidate
Package 'python-dev' has no installation candidate
Package 'libjpeg62-turbo' has no installation candidate
These errors indicate missing or deprecated packages which are crucial for the build process. As a result, users are unable to proceed with setting up purr-data successfully.

Action Required:

Update the build documentation to reflect the current dependencies and requirements accurately.
Address the missing or deprecated packages to ensure a smooth build process.
Provide clear instructions or alternatives for resolving these dependency issues.
Ensure that the build process is well-documented and accessible to all contributors.
Impact:
The current state of the build process poses significant barriers to entry for potential contributors. Resolving these issues will not only streamline the setup process but also encourage greater participation and collaboration within the project.

Proposed Solution:

Update the project's documentation repository with accurate information regarding dependencies and build instructions.
Conduct thorough testing to verify that the build process is functional and error-free.
Encourage community feedback and contributions to continuously improve the build process.
Addressing these concerns will enhance the accessibility and usability of purr-data, facilitating a more seamless experience for both developers and users.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.