aboutsummaryrefslogtreecommitdiff
path: root/externals/vanilla/print.c
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2009-11-10 01:57:09 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2009-11-10 01:57:09 +0000
commite93b6a0a5af515f4e4c4514cce09ddac7f78939d (patch)
tree81c1b645ac2a83d7d660aa4ff52defb3d0d1a497 /externals/vanilla/print.c
parentcd3057f1440298fbad894454d7c3fb85443b2e6c (diff)
made the [print] standalone useful by making it loadable, just copied x_interface.c and removed the 'static' from print_setup()
svn path=/trunk/; revision=12738
Diffstat (limited to 'externals/vanilla/print.c')
-rw-r--r--externals/vanilla/print.c77
1 files changed, 76 insertions, 1 deletions
diff --git a/externals/vanilla/print.c b/externals/vanilla/print.c
index d74d8fe8..7857454d 100644
--- a/externals/vanilla/print.c
+++ b/externals/vanilla/print.c
@@ -1 +1,76 @@
-#include "../../pd/src/x_interface.c"
+/* Copyright (c) 1997-1999 Miller Puckette.
+* For information on usage and redistribution, and for a DISCLAIMER OF ALL
+* WARRANTIES, see the file, "LICENSE.txt," in this distribution. */
+
+/* interface objects */
+
+#include "m_pd.h"
+#include <string.h>
+
+/* -------------------------- print ------------------------------ */
+static t_class *print_class;
+
+typedef struct _print
+{
+ t_object x_obj;
+ t_symbol *x_sym;
+} t_print;
+
+static void *print_new(t_symbol *sel, int argc, t_atom *argv)
+{
+ t_print *x = (t_print *)pd_new(print_class);
+ t_symbol *s = atom_getsymbolarg(0, argc, argv);
+ if (!*s->s_name)
+ x->x_sym = gensym("print");
+ else if (!strcmp(s->s_name, "-n"))
+ x->x_sym = &s_;
+ else x->x_sym = s;
+ return (x);
+}
+
+static void print_bang(t_print *x)
+{
+ post("%s%sbang", x->x_sym->s_name, (*x->x_sym->s_name ? ": " : ""));
+}
+
+static void print_pointer(t_print *x, t_gpointer *gp)
+{
+ post("%s%s(gpointer)", x->x_sym->s_name, (*x->x_sym->s_name ? ": " : ""));
+}
+
+static void print_float(t_print *x, t_float f)
+{
+ post("%s%s%g", x->x_sym->s_name, (*x->x_sym->s_name ? ": " : ""), f);
+}
+
+static void print_list(t_print *x, t_symbol *s, int argc, t_atom *argv)
+{
+ int i;
+ if (argc && argv->a_type != A_SYMBOL) startpost("%s:", x->x_sym->s_name);
+ else startpost("%s%s%s", x->x_sym->s_name,
+ (*x->x_sym->s_name ? ": " : ""),
+ (argc > 1 ? s_list.s_name : (argc == 1 ? s_symbol.s_name :
+ s_bang.s_name)));
+ postatom(argc, argv);
+ endpost();
+}
+
+static void print_anything(t_print *x, t_symbol *s, int argc, t_atom *argv)
+{
+ int i;
+ startpost("%s%s%s", x->x_sym->s_name, (*x->x_sym->s_name ? ": " : ""),
+ s->s_name);
+ postatom(argc, argv);
+ endpost();
+}
+
+void print_setup(void)
+{
+ print_class = class_new(gensym("print"), (t_newmethod)print_new, 0,
+ sizeof(t_print), 0, A_GIMME, 0);
+ class_addbang(print_class, print_bang);
+ class_addfloat(print_class, print_float);
+ class_addpointer(print_class, print_pointer);
+ class_addlist(print_class, print_list);
+ class_addanything(print_class, print_anything);
+}