aboutsummaryrefslogtreecommitdiff
path: root/doc/pddp/value-help.pd
diff options
context:
space:
mode:
authorJonathan Wilkes <jancsika1@users.sourceforge.net>2010-08-25 00:31:27 +0000
committerJonathan Wilkes <jancsika1@users.sourceforge.net>2010-08-25 00:31:27 +0000
commit7d6affca746f49f5ffb2818b8a9ccf9d91388e8f (patch)
treec906633b5bb39eb9b566f5209b2b1eae28703878 /doc/pddp/value-help.pd
parent2f615ffbf13571a928856b8207d1ea215e857e3f (diff)
revised help docs that conform to the PDDP template
svn path=/trunk/; revision=13942
Diffstat (limited to 'doc/pddp/value-help.pd')
-rw-r--r--doc/pddp/value-help.pd248
1 files changed, 146 insertions, 102 deletions
diff --git a/doc/pddp/value-help.pd b/doc/pddp/value-help.pd
index 783ea5a4..5ece3f75 100644
--- a/doc/pddp/value-help.pd
+++ b/doc/pddp/value-help.pd
@@ -1,102 +1,146 @@
-#N canvas 1 1 889 657 10;
-#X text 62 10 -- nonlocal shared value (named variable);
-#X obj 21 10 value;
-#X text 17 46 [value] is a container. It holds a global variable numeric
-value and can be "polled" at any time with a "bang" message. In other
-words \, [value] is a place where numbers can be stored and then accessed
-by all active Pd windows.;
-#X text 16 109 SCOPE;
-#X text 18 127 Understanding "scope" is important while developing
-programmatic applications. In Pd there are three levels of "scope":
-;
-#X text 29 170 1 Local Scope: all objects \, subroutines \, data \,
-and variables which exist within a single patch on a single computer
-and do not communicate with other active Pd patches.;
-#X text 27 226 2 Global Scope: all objects \, subroutines \, data and
-variables which exist within single or multiple patches on a single
-computer which communicate with other active Pd patches.;
-#X text 17 354 As a general rule \, all things are considered "local"
-in Pd and if communication between Pd windows is necessary \, then
-[send]/[receive] \, or [throw]/[catch] objects are used. Likewise \,
-if communication is necessary between many computers running Pd \,
-then objects such as [netsend]/[netreceive] are used.;
-#X text 16 441 The exception to the above rule is [value]. This object
-is a container which makes its data known to all [value] objects of
-the same name in all active Pd windows on a single computer: hence
-\, GLOBAL scope.;
-#X text 28 288 3 Network (Universal) Scope: all objects \, subroutines
-\, data and variables which exist within single or multiple patches
-on two or more computers which communicate with other active Pd patches
-via a network.;
-#X text 419 15 To create a [value] object \, a name should be defined
-for the variable that it will contain. For example:;
-#X obj 422 54 value my_variable;
-#X text 419 110 To assign a numeric value to that variable \, a number
-box or message can be used \, as follows:;
-#X obj 420 190 value my_variable;
-#X msg 438 167 42;
-#X text 12 523 The [value] object can be abbreviated as follows:;
-#X obj 19 550 v;
-#X text 48 550 is the same as;
-#X obj 142 552 value;
-#X obj 384 12 bng 15 250 50 0 empty empty empty 0 -6 0 8 -262144 -1
--1;
-#X obj 384 583 bng 15 250 50 0 empty empty empty 0 -6 0 8 -262144 -1
--1;
-#X text 417 77 If no name is given \, then the object will communicate
-with all other [value] objects with no name.;
-#X floatatom 420 214 5 0 0;
-#X floatatom 420 147 5 0 0;
-#X obj 417 304 value my_variable;
-#X floatatom 417 328 5 0 0;
-#X obj 417 284 bng 15 250 50 0 empty empty empty 0 -6 0 8 -262144 -1
--1;
-#X text 464 146 play with me;
-#X text 463 166 or click me;
-#X text 416 237 Notice that the number is not outputted to the outlet
-\; it is merely stored. To retreive the number \, send a "bang" \,
-like below:;
-#X text 414 354 Now \, to show how global scope works \, click the
-sub-patch below and then "bang" the [value] object to retreive the
-current number. While you're in the sub-patch \, change the number
-and then return to this window and click the above "bang". You'll quickly
-see how this variable can be retreived or reset in any active Pd window.
-;
-#N canvas 0 0 452 302 global_values 0;
-#X obj 43 127 v my_variable;
-#X floatatom 43 149 5 0 0;
-#X obj 43 86 bng 15 250 50 0 empty empty empty 0 -6 0 8 -262144 -1
--1;
-#X floatatom 61 104 5 0 0;
-#X connect 0 0 1 0;
-#X connect 2 0 0 0;
-#X connect 3 0 0 0;
-#X restore 415 442 pd global_values;
-#X text 414 474;
-#X text 409 490 RELATED OBJECTS;
-#N canvas 73 229 452 302 related_objects_from_other_libraries 0;
-#X obj 28 37 getenv;
-#X text 18 86 These objects are offered in Pd only if you have downloaded
-and properly installed the appropriate library. These objects may or
-may not exist in a single library.;
-#X text 17 135 The best places to find information about Pd's libraries
-is:;
-#X text 14 157 www.puredata.org and click on "Downloads" then "Software"
-;
-#X text 15 173 or;
-#X text 16 187 iem.kug.ac.at/pdb/;
-#X restore 413 551 pd related_objects_from_other_libraries;
-#X obj 408 517 send;
-#X obj 441 517 receive;
-#X text 492 504 These objects are actually quite different than [value]
-but it's important to understand that difference in relation to [value].
-;
-#X text 252 603 This document was updated for Pd version 0.35 test
-26 by Dave Sabine as part of a project called pddp proposed by Krzysztof
-Czaja to build comprehensive documentation for Pd.;
-#X connect 13 0 22 0;
-#X connect 14 0 13 0;
-#X connect 19 0 20 0;
-#X connect 23 0 13 0;
-#X connect 24 0 25 0;
-#X connect 26 0 24 0;
+#N canvas 0 0 555 619 10;
+#X obj 0 595 cnv 15 552 21 empty \$0-pddp.cnv.footer empty 20 12 0
+14 -228856 -66577 0;
+#X obj 0 0 cnv 15 552 40 empty \$0-pddp.cnv.header value 3 12 0 18
+-204280 -1 0;
+#X obj 0 284 cnv 3 550 3 empty \$0-pddp.cnv.inlets inlets 8 12 0 13
+-228856 -1 0;
+#N canvas 45 219 494 391 META 0;
+#X text 12 125 PLATFORM windows macosx gnulinux;
+#X text 12 185 LIBRARY internal;
+#X text 12 225 WEBSITE http://crca.ucsd.edu/~msp/;
+#X text 12 85 LICENSE SIBSD;
+#X text 12 205 AUTHOR Miller Puckette;
+#X text 12 285 HELP_PATCH_AUTHORS This help patch was updated for Pd
+version 0.35 test 26 by Dave Sabine as part of a project called pddp
+proposed by Krzysztof Czaja to build comprehensive documentation for
+Pd. Jonathan Wilkes revised the patch to conform to the PDDP template
+for Pd version 0.42.;
+#X text 12 5 GENRE help;
+#X text 12 65 KEYWORDS control storage nonlocal;
+#X text 12 105 DESCRIPTION nonlocal shared value (named variable);
+#X text 12 25 NAME value;
+#X text 12 45 ALIAS v;
+#X text 12 145 INLET_0 float bang;
+#X text 12 165 OUTLET_0 float;
+#X text 12 245 RELEASE_DATE 1997;
+#X text 12 265 RELEASE_VERSION;
+#X restore 500 597 pd META;
+#X obj 0 379 cnv 3 550 3 empty \$0-pddp.cnv.outlets outlets 8 12 0
+13 -228856 -1 0;
+#X obj 0 421 cnv 3 550 3 empty \$0-pddp.cnv.argument arguments 8 12
+0 13 -228856 -1 0;
+#X obj 0 525 cnv 3 550 3 empty \$0-pddp.cnv.more_info more_info 8 12
+0 13 -228856 -1 0;
+#N canvas 66 452 428 139 Related_objects 0;
+#X obj 1 1 cnv 15 425 20 empty \$0-pddp.cnv.subheading empty 3 12 0
+14 -204280 -1 0;
+#X text 8 2 [value] Related Objects;
+#X obj 23 43 send;
+#X obj 56 43 receive;
+#X text 20 76 External Objects;
+#X obj 110 43 expr;
+#X obj 20 96 pddp/helplink motex/getenv;
+#X restore 102 597 pd Related_objects;
+#X obj 78 293 cnv 17 3 75 empty \$0-pddp.cnv.let.0 0 5 9 0 16 -228856
+-162280 0;
+#X text 98 322 float;
+#X text 98 352 list;
+#X text 98 387 float;
+#X obj 78 388 cnv 17 3 17 empty \$0-pddp.cnv.let.0 0 5 9 0 16 -228856
+-162280 0;
+#X obj 455 20 pddp/pddplink http://wiki.puredata.info/en/value -text
+pdpedia: value;
+#X obj 456 3 value;
+#X obj 516 3 v;
+#X text 494 3 or;
+#X text 11 23 nonlocal shared value (named variable);
+#N canvas 57 148 428 418 scope 0;
+#X obj 1 1 cnv 15 425 20 empty \$0-pddp.cnv.subheading empty 3 12 0
+14 -204280 -1 0;
+#X text 20 38 Understanding "scope" is important while developing programmatic
+applications. In Pd there are three levels of "scope":;
+#X text 31 81 1 Local Scope: all objects \, subroutines \, data \,
+and variables which exist within a single patch on a single computer
+and do not communicate with other active Pd patches.;
+#X text 29 137 2 Global Scope: all objects \, subroutines \, data and
+variables which exist within single or multiple patches on a single
+computer which communicate with other active Pd patches.;
+#X text 20 260 As a general rule \, all things are considered "local"
+in Pd and if communication between Pd windows is necessary \, then
+[send]/[receive] \, or [throw]/[catch] objects are used. Likewise \,
+if communication is necessary between many computers running Pd \,
+then objects such as [netsend]/[netreceive] are used.;
+#X text 20 347 The exception to the above rule is [value]. This object
+is a container which makes its data known to all [value] objects of
+the same name in all active Pd windows on a single computer: hence
+\, GLOBAL scope.;
+#X text 30 199 3 Network (Universal) Scope: all objects \, subroutines
+\, data and variables which exist within single or multiple patches
+on two or more computers which communicate with other active Pd patches
+via a network.;
+#X text 8 2 [value] Scope in Pd;
+#X restore 102 574 pd scope;
+#X text 98 47 [value] is a container. It holds a global variable numeric
+value and can be "polled" at any time with a "bang" message. In other
+words \, [value] is a place where numbers can be stored and then accessed
+by all active Pd windows.;
+#N canvas 73 60 428 231 global_values 0;
+#X obj 173 168 v my_variable;
+#X floatatom 173 190 5 0 0 0 - - -;
+#X obj 173 127 bng 15 250 50 0 empty empty empty 0 -6 0 8 -262144 -1
+-1;
+#X floatatom 191 145 5 0 0 0 - - -;
+#X obj 1 1 cnv 15 425 20 empty \$0-pddp.cnv.subheading empty 3 12 0
+14 -204280 -1 0;
+#X text 8 2 [value] Sub-patch to demonstrate global values;
+#X text 20 38 To show how global scope works \, "bang" the [value]
+object to retreive the current number. While you're in the sub-patch
+\, change the number and then return to the main patch window and click
+the "bang". You'll quickly see how this variable can be retreived or
+reset in any active Pd window.;
+#X connect 0 0 1 0;
+#X connect 2 0 0 0;
+#X connect 3 0 0 0;
+#X restore 101 261 pd global_values;
+#X text 16 102 To assign a numeric value to that variable \, a number
+box or message can be used \, as follows:;
+#X obj 19 179 value my_variable;
+#X msg 37 156 42;
+#X floatatom 19 203 5 0 0 0 - - -;
+#X floatatom 19 136 5 0 0 0 - - -;
+#X obj 271 188 value my_variable;
+#X floatatom 271 212 5 0 0 0 - - -;
+#X obj 271 168 bng 15 250 50 0 empty empty empty 0 -6 0 8 -262144 -1
+-1;
+#X text 63 135 play with me;
+#X text 62 155 or click me;
+#X text 186 133 Notice that the number is not outputted to the outlet
+\; it is merely stored. To retreive the number \, send a "bang" \,
+like below:;
+#X text 168 322 - a float to the inlet sets all [value] objects that
+share the same name to the incoming value.;
+#X text 168 352 - a list is truncated to the first element.;
+#X text 98 292 bang;
+#X text 168 292 - sending a bang to a particular [value] object will
+cause it to output its current value.;
+#X text 168 387 - the current value is output when a bang is received
+at the inlet.;
+#X text 168 439 - [value] takes one argument (a symbol) that is the
+name of the object. All [value] objects that share this name will have
+their values updated when I float is sent to the inlet of any of them.
+;
+#X text 98 229 All [value] objects with the same name receive the value
+(see subpatch below):;
+#X text 168 491 If no creation argument is given \, then the object
+will communicate with all other [value] objects with no name.;
+#X text 99 529 [value] variables may be used within all [expr] family
+objects. See the help patches for [expr] \, [expr~] and [fexpr~] for
+more information.;
+#X text 80 439 1) symbol atom;
+#X obj 4 597 pddp/pddplink pddp/help.pd -text help;
+#X connect 22 0 24 0;
+#X connect 23 0 22 0;
+#X connect 25 0 22 0;
+#X connect 26 0 27 0;
+#X connect 28 0 26 0;