1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539
|
title:: Writing Classes
summary:: Writing SuperCollider Classes
categories:: Language>OOP
related:: Reference/Classes, Classes/Class, Classes/Object
SuperCollider follows a pure object-oriented paradigm. It is not built on data types, but on objects, which respond to messages. A class is an object that holds information about how its objects (instances) respond to such messages. Writing a class gives a definition of this behavior.
This is an overview of idioms used in writing classes. It is not a tutorial on writing a system of interrelated classes. It gives an overview of some typical expressions. See also: link::Guides/Intro-to-Objects::, link::Reference/Messages::, and link::Reference/Classes::.
There is also an overview of the current full link::Overviews/ClassTree::.
note:: Class definitions are statically compiled when you launch SuperCollider or "recompile the library." This means
that class definitions must be saved into a file with the extension .sc, in a disk location where SuperCollider looks
for classes. Saving into the main class library (SCClassLibrary) is generally not recommended. It's preferable to use
either the user or system extension directories.
code::
Platform.userExtensionDir; // Extensions available only to your user account
Platform.systemExtensionDir; // Extensions available to all users on the machine
::
It is not possible to enter a class definition into an interpreter window and execute it.
::
section:: Inheriting
To avoid having to write the same code several times, classes can strong::inherit:: implementations from their strong::superclasses::.
code::
MyClass : SomeSuperclass {
}
::
Without specifying a superclass, link::Classes/Object:: is assumed as the default superclass.
code::
MyClass { // : Object is implied
}
::
This is why in the above example, the message code::new:: can be called without being explicitly defined in the class.
section:: Methods
subsection:: Instance Methods
Each object instance responds to its strong::instance methods::. Instance methods are called in the local context of the object. Within instance methods, the keyword code::this:: refers to the instance itself.
code::
MyClass {
instanceMethod { | argument |
this.anotherInstanceMethod(argument)
}
anotherInstanceMethod { | argument |
"hello instance".postln
}
}
::
This could then be used as follows:
code::
a = MyClass.new // returns a new instance
a.instanceMethod // posts "hello instance"
::
To return from the method use teletype::^:: (caret). Multiple exit points also possible. If no teletype::^:: is
specified, the method will return the instance (and in the case of Class methods, will return the class). There is no
such thing as returning void in SuperCollider.
code::
MyClass {
someMethod {
^returnObject
}
someOtherMethod { | aBoolean |
if(aBoolean) {
^someObject
} {
^someOtherObject
}
}
}
::
subsection:: Class Methods
An object's strong::class methods:: are defined alongside its instance methods. They are specified with an asterisk (teletype::*::) before the method name.
A link::Classes/Class:: is itself an object. It is what all instances of it have in common. Class methods are the instance methods of the object's class. That's why within class methods, the keyword code::this:: refers to the class.
code::
MyClass {
*classMethod { | argument |
this.anotherClassMethod(argument)
}
*anotherClassMethod { | argument |
"hello class".postln
}
}
::
This could then be used as follows:
code::
MyClass.classMethod // posts "hello class"
::
subsection::Overriding methods (overloading)
To change the behaviour inherited from the superclass, methods can be overridden. Note that an object looks always for
the method it has defined first and then looks in the superclass. Here code::MyClass.value(2):: will return 6, not 4:
code::
SomeSuperclass {
calculate { |in| ^in * 2 }
value { |in| ^this.calculate(in) }
}
MyClass : SomeSuperclass {
calculate { |in| ^in * 3 }
}
::
The keyword code::super:: can be used to call methods on the superclass
code::
SomeSuperclass {
value {
^100.rand
}
}
MyClass : SomeSuperclass {
value {
^super.value * 2
}
}
::
section:: Instances
code::Object.new:: will return a new object. When overriding the class method code::.new:: you must call the
superclass, which in turn calls its superclass, up until code::Object.new:: is called and an object is actually created
and its memory allocated.
code::
MyClass {
// this is a normal constructor method
*new { | arga, argb, argc |
^super.new.init(arga, argb, argc)
}
init { | arga, argb, argc |
// do initiation here
}
}
::
In this case note that code::super.new:: called the method new on the superclass and returned a new object. Subsequently
we are calling the code::.init:: method on that object, which is an instance method.
Warning:: If the superclass also happened to call super.new.init it will have expected to call the .init method defined
in that class (the superclass), but instead the message .init will find the implementation of the class that the object
actually is, which is our new subclass. In such cases, a unique method name like myclassInit should be used.
::
One easy way to copy the arguments passed to the instance variables when creating a class is to use link::Classes/Object#*newCopyArgs::. This
method will copy the arguments to the instance variables in the order that the variables were defined in the class,
starting from the parent classes and working it's way down to the current class.
code::
MyClass {
var a,b,c;
*new { | a, b, c |
^super.newCopyArgs(a, b, c)
}
}
MyChildClass : MyClass {
var d;
*new { | a, b, c, d |
^super.newCopyArgs(a, b, c, d)
}
}
::
Class variables are accessible within class methods and in any instance methods.
code::
MyClass {
classvar myClassvar;
instanceMethod {
^myClassvar
}
}
::
Initializations on class level (e.g. to set up code::classvar::s) can be implemented by overloading the link::Classes/Class#*initClass:: method.
code::
MyClass {
classvar myClassvar;
*initClass {
myClassvar = IdentityDictionary.new;
}
}
::
section::Alternatives to inheritance
Overreliance on inheritance is usually a design flaw. Inheritance is mainly a way to organise code, and shouldn't be mistaken for a categorisation of objects. Two objects may respond to a message in different ways (polymorphism), and objects delegate control to ther objects they hold in their instance variables (object composition).
subsection::Polymorphism
See also: link::Guides/Polymorphism::
Two completely unrelated objects can respond to the same messages and therefore be used together in the same code. For example, link::Classes/Function:: and link::Classes/Event:: have no common superclass apart from the general class link::Classes/Object::. But both respond to the message code::play::. Instead of inheriting all methods, you can simply implement some of the same methods in your class.
code::
MyClass {
var count = 0;
value {
^count = count + 1
}
}
// objects of this class will respond to the message "value", just like a function.
a = MyClass.new;
a.value; // returns 1
::
subsection::Object Composition
Often, an object passes control to one of the objects it has in its instance variables. Because these objects can be of any kind, this is a very flexible way to achieve a wide range of functionalities. For example, a link::Classes/Button:: has an code::action:: instance variable, which may hold anything that responds to the message code::value::.
code::
MyClass {
var action;
*new { |action|
^super.newCopyArgs(action)
}
value { |x|
action.value(x);
}
}
// depending on what "action" is, objects of this class will behave differently
a = MyClass({ "hello." });
b = MyClass({ |i| log2(i) * sin(i * pi) });
a.value(8);
b.value(8);
::
Often, variables like code::action:: above are filled with custom objects that belong to code::MyClass::. Thus, one will write many small classes that can be well combined in such a way. This is called "pluggable behavior".
section::Variables
subsection:: Initializing variables directly
In a variable declaration, variables can be directly initialized. Only link::Reference/Literals:: may be used to initialize variables this way. This means that it is not possible to chain assignments (e.g. code:: var x = 9; var y = x + 1::).
code::
MyClass {
classvar all = #[];
var x = 8;
var y = #[1, 2, 3];
}
::
subsection:: Variable Scope
An instance variable is accessible strong::from all instance methods:: of this class and its subclasses. A class variable, by contrast, is accessible strong::from all class and instance methods:: of this class and its subclasses. Instance variables will shadow class variables of the same name.
code::
MyClass {
classvar x = 0, y = 1;
var x = 1;
*returnX { ^x } // returns 0
returnX { ^x } // returns 1
returnXY { ^x + y } // returns 2
}
::
Subclasses can override class variable declarations (but not instance variables). Then the class variables of the superclass are not accessible in the subclass anymore.
code::
SomeSuperclass {
classvar x = 0;
returnX { ^x }
returnXHere { ^x }
}
MyClass : SomeSuperclass {
classvar x = 1;
returnXHere { ^x }
}
// SomeSuperclass.returnXHere returns 0
// MyClass.returnXHere returns 1
// MyClass.returnX returns 0
::
subsection:: Getters and Setters
SuperCollider demands that variables are not accessible outside of the class or instance. A method must be added to
explicitly give access:
code::
MyClass : SomeSuperclass {
var myVariable;
variable {
^myVariable
}
variable_ { | newValue |
myVariable = newValue;
}
}
::
These are referred to as getter and setter methods. SuperCollider allows these methods to be easily added by adding teletype::<:: or
teletype::>::.
code::
MyClass {
var <getMe, >setMe, <>getMeOrSetMe;
}
::
This provides the following methods:
code::
someObject.getMe;
someObject.setMe_(value);
::
And it also allows us to say:
code::
someObject.setMe = value;
someObject.getMeOrSetMe_(5);
someObject.getMeOrSetMe;
::
A getter or setter method created in this fashion may be overridden in a subclass by explicitly defining the method. Setter methods should take only one argument to support both ways of expression consistently. eg.
code::
MyClass {
variable_ { | newValue |
variable = newValue.clip(minval,maxval);
}
}
::
A setter method should always return the receiver. This allows us to be sure that several setters can chained up.
subsection::Constants
Constants are variables, that, well, don't vary. They can only be assigned initially.
code::
MyClass {
const <zero = 0;
}
MyClass.zero // returns 0
::
section:: External method files
Methods may be added to Classes in separate files. This is equivalent to Categories in Objective-C. By convention, the
file name starts with a lower case letter: the name of the method or feature that the methods are supporting.
code::
+ Class {
newMethod {
}
*newClassMethod {
}
}
::
section:: Slotted classes
Classes defined with code::[slot]:: can use the syntax code::myClass[...]:: which will call code::myClass.new:: and then code::this.add(each):: for each item in the square brackets.
code::
MyClass[] {
var <allOfThem;
add { |item|
allOfThem = allOfThem.add(item)
}
}
a = MyClass[1, 2, 3];
a.allOfThem; // [1, 2, 3]
::
section:: Printing to string
subsection:: Printing custom messages to post window
By default when postln is called on an class instance the name of the class is printed in a post window. When
code::postln:: or code::asString:: is called on a class instance, the class then calls code::printOn:: which by default returns just the object's class name. This should be overridden to obtain more useful information.
code::
MyTestPoint {
var <x, <y;
*new { |x, y|
^super.newCopyArgs(x, y)
}
printOn { | stream |
stream << "MyTestPoint( " << x << ", " << y << " )";
}
}
::
code::
a = MyTestPoint(2, 3)
::
subsection:: Defining custom asCompileString behaviour
A call to code::asCompileString:: should return a string which when evaluated creates the exact same instance of the
class. To define a custom behaviour one should either override code::storeOn:: or code::storeArgs::. The method
code::storeOn:: should return the string that evaluated creates the instance of the current object. The method
code::storeArgs:: should return an array with the arguments to be passed to code::TheClass.new::. In most cases this
method can be used instead of code::storeOn::.
code::
// either
MyTestPoint {
var <x, <y;
*new { |x, y|
^super.newCopyArgs(x,y)
}
storeOn { | stream |
// note that <<< stands for storeOn, and << for printOn.
// we want x and y to be completely represented
stream << "MyTestPoint.new(" <<< x << ", " <<< y << ")"
}
}
// or
MyTestPoint {
var <x, <y;
*new { |x, y|
^super.newCopyArgs(x,y)
}
storeArgs { | stream |
^[x, y]
}
}
::
code::
MyTestPoint(2, 3).asCompileString;
::
section::Private Methods
Private methods are marked by a prefix code::pr::, e.g. code::prBundleSize::. This is just a strong::naming convention::; the message can still be called from anywhere. It is recommended to stick to convention and only call private methods from within the class that defines them.
section:: Catching undefined method calls
When a message is received that is undefined, the receiver calls the method code::doesNotUnderstand::. Normally this throws an error. By overriding code::doesNotUnderstand::, it is possible to catch those calls and use them. For an example, see the class definition of code::IdentityDictionary::.
code::
MyClass {
doesNotUnderstand { | selector...args |
(this.class ++ " does not understand method " ++ selector);
if(UGen.findRespondingMethodFor(selector).notNil) {
"But UGen understands this method".postln
};
}
}
::
code::
a = MyClass();
a.someMethodThatDoesNotExist
::
|