From f6afae42f888d1ba6d2183e40d48dff400b9dbc6 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Wed, 12 Mar 2008 04:20:55 +0000 Subject: added first object for a new library to support Apple-specific hardware and software functions, like screen brightness svn path=/trunk/externals/apple/; revision=9569 --- Makefile | 17 ++++++++ brightness-help.pd | 11 +++++ brightness.pd | 11 +++++ iodisplay-help.pd | 13 ++++++ iodisplay.c | 124 +++++++++++++++++++++++++++++++++++++++++++++++++++++ iodisplay.libs | 1 + 6 files changed, 177 insertions(+) create mode 100644 Makefile create mode 100644 brightness-help.pd create mode 100644 brightness.pd create mode 100644 iodisplay-help.pd create mode 100644 iodisplay.c create mode 100644 iodisplay.libs diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..2b8688b --- /dev/null +++ b/Makefile @@ -0,0 +1,17 @@ +TARGET := $(shell pwd | sed 's|.*/\(.*\)$$|\1|') +EXTERNALS_ROOT := $(shell pwd | sed 's|^\(/.*externals\).*|\1|') + +default: + make -C $(EXTERNALS_ROOT) $(TARGET) + +install: + make -C $(EXTERNALS_ROOT) $(TARGET)_install + +clean: + make -C $(EXTERNALS_ROOT) $(TARGET)_clean + +test_locations: + make -C $(EXTERNALS_ROOT) test_locations + +etags: + etags *.[ch] ~/code/pure-data/trunk/pd/src/*.[ch] /usr/include/*.h /usr/include/sys/*.h diff --git a/brightness-help.pd b/brightness-help.pd new file mode 100644 index 0000000..999ba5c --- /dev/null +++ b/brightness-help.pd @@ -0,0 +1,11 @@ +#N canvas 293 113 450 300 10; +#X msg 127 72 bang; +#X floatatom 127 186 5 0 0 0 - - -; +#X obj 149 97 hsl 128 15 0 1 0 0 empty empty empty -2 -8 0 10 -262144 +-1 -1 6800 1; +#X floatatom 162 121 5 0 0 0 - - -; +#X obj 127 155 brightness; +#X connect 0 0 4 0; +#X connect 2 0 3 0; +#X connect 2 0 4 0; +#X connect 4 0 1 0; diff --git a/brightness.pd b/brightness.pd new file mode 100644 index 0000000..40d5d26 --- /dev/null +++ b/brightness.pd @@ -0,0 +1,11 @@ +#N canvas 0 22 454 304 10; +#X obj 135 113 iodisplay brightness; +#X obj 135 141 route brightness; +#X obj 131 49 inlet; +#X obj 135 184 outlet; +#X obj 132 79 route float bang; +#X connect 0 0 1 0; +#X connect 1 0 3 0; +#X connect 2 0 4 0; +#X connect 4 0 0 0; +#X connect 4 1 0 0; diff --git a/iodisplay-help.pd b/iodisplay-help.pd new file mode 100644 index 0000000..128a166 --- /dev/null +++ b/iodisplay-help.pd @@ -0,0 +1,13 @@ +#N canvas 293 113 462 312 10; +#X msg 127 72 bang; +#X obj 149 97 hsl 128 15 0 1 0 0 empty empty empty -2 -8 0 10 -262144 +-1 -1 5800 1; +#X floatatom 162 121 5 0 0 0 - - -; +#X obj 127 155 iodisplay brightness; +#X obj 132 191 route brightness; +#X floatatom 131 225 5 0 0 0 - - -; +#X connect 0 0 3 0; +#X connect 1 0 2 0; +#X connect 1 0 3 0; +#X connect 3 0 4 0; +#X connect 4 0 5 0; diff --git a/iodisplay.c b/iodisplay.c new file mode 100644 index 0000000..1882c5a --- /dev/null +++ b/iodisplay.c @@ -0,0 +1,124 @@ +/* --------------------------------------------------------------------------*/ +/* */ +/* control the iodisplay of the display on Apple Mac OS X */ +/* Written by Hans-Christoph Steiner */ +/* */ +/* Copyright (c) 2008 Free Software Foundation */ +/* */ +/* This program is free software; you can redistribute it and/or */ +/* modify it under the terms of the GNU General Public License */ +/* as published by the Free Software Foundation; either version 2 */ +/* of the License, or (at your option) any later version. */ +/* */ +/* See file LICENSE for further informations on licensing terms. */ +/* */ +/* This program is distributed in the hope that it will be useful, */ +/* but WITHOUT ANY WARRANTY; without even the implied warranty of */ +/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */ +/* GNU General Public License for more details. */ +/* */ +/* You should have received a copy of the GNU General Public License */ +/* along with this program; if not, write to the Free Software Foundation, */ +/* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA */ +/* */ +/* --------------------------------------------------------------------------*/ + +#include +#include +#include + +#define DEBUG(x) +//#define DEBUG(x) x + +/*------------------------------------------------------------------------------ + * CLASS DEF + */ + +static t_class *iodisplay_class; + +typedef struct _iodisplay { + t_object x_obj; + t_float parameter_value; + io_service_t io_service; + CGDirectDisplayID target_display; + t_symbol* parameter; +} t_iodisplay; + +/*------------------------------------------------------------------------------ + * IMPLEMENTATION + */ + +static void iodisplay_output(t_iodisplay* x) +{ + DEBUG(post("iodisplay_output");); + CFStringRef cfs_parameter; + CGDisplayErr err; + t_atom output_atom; + + cfs_parameter = CFStringCreateWithCString(kCFAllocatorDefault, + x->parameter->s_name, + kCFStringEncodingASCII); + err = IODisplayGetFloatParameter(x->io_service, kNilOptions, + cfs_parameter, &(x->parameter_value)); + if (err != kIOReturnSuccess) + pd_error(x,"[iodisplay]: couldn't get %s value", x->parameter->s_name); + + SETFLOAT(&output_atom, x->parameter_value); + outlet_anything(x->x_obj.ob_outlet, x->parameter, 1, &output_atom); +} + + +static void iodisplay_float(t_iodisplay* x, t_float f) +{ + DEBUG(post("iodisplay_float");); + CFStringRef cfs_parameter; + CGDisplayErr err; + + if (f < 0.) x->parameter_value = 0.; + else if (f > 1.) x->parameter_value = 1.; + else x->parameter_value = f; + + cfs_parameter = CFStringCreateWithCString(kCFAllocatorDefault, + x->parameter->s_name, + kCFStringEncodingASCII); + err = IODisplaySetFloatParameter(x->io_service, kNilOptions, + cfs_parameter, x->parameter_value); + if (err != kIOReturnSuccess) + pd_error(x,"[iodisplay]: couldn't set %s", x->parameter->s_name); +} + + +static void iodisplay_free(t_iodisplay* x) +{ + DEBUG(post("iodisplay_free");); +} + + +static void *iodisplay_new(t_symbol *s) +{ + DEBUG(post("iodisplay_new");); + t_iodisplay *x = (t_iodisplay *)pd_new(iodisplay_class); + + x->target_display = CGMainDisplayID(); + x->io_service = CGDisplayIOServicePort(x->target_display); + x->parameter = s; + + symbolinlet_new(&x->x_obj, &x->parameter); + outlet_new(&x->x_obj, &s_anything); + + return (x); +} + +void iodisplay_setup(void) +{ + iodisplay_class = class_new(gensym("iodisplay"), + (t_newmethod)iodisplay_new, + (t_method)iodisplay_free, + sizeof(t_iodisplay), + CLASS_DEFAULT, + A_DEFSYMBOL, 0); + + /* add inlet datatype methods */ + class_addbang(iodisplay_class,(t_method) iodisplay_output); + class_addfloat(iodisplay_class,(t_method) iodisplay_float); +} diff --git a/iodisplay.libs b/iodisplay.libs new file mode 100644 index 0000000..334d5d6 --- /dev/null +++ b/iodisplay.libs @@ -0,0 +1 @@ +-framework IOKit -- cgit v1.2.1